diff --git a/grammar.js b/grammar.js index 386770c..0a2392f 100644 --- a/grammar.js +++ b/grammar.js @@ -136,6 +136,7 @@ module.exports = grammar({ _declaration_statement: $ => choice( $.const_item, $.macro_invocation, + $.macro_rules, $.macro_definition, $.empty_statement, $.attribute_item, @@ -159,7 +160,7 @@ module.exports = grammar({ // Section - Macro definitions - macro_definition: $ => { + macro_rules: $ => { const rules = seq( repeat(seq($.macro_rule, ';')), optional($.macro_rule), @@ -179,12 +180,44 @@ module.exports = grammar({ ); }, + macro_definition: $ => { + const rules = seq( + repeat(seq($.macro_rule, ',')), + optional($.macro_rule), + ); + + return seq( + optional($.visibility_modifier), + 'macro', + field('name', choice( + $.identifier, + $._reserved_identifier, + )), + choice( + seq($.macro_def_args, $.macro_def_body), + seq('{', rules, '}'), + ), + ); + }, + macro_rule: $ => seq( field('left', $.token_tree_pattern), '=>', field('right', $.token_tree), ), + macro_def_args: $ => seq( + '(', + field('left', repeat($._token_pattern)), + ')', + ), + + macro_def_body: $ => seq( + '{', + field('right', repeat($._tokens)), + '}', + ), + _token_pattern: $ => choice( $.token_tree_pattern, $.token_repetition_pattern, diff --git a/src/grammar.json b/src/grammar.json index e36731f..7792287 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -80,6 +80,10 @@ "type": "SYMBOL", "name": "macro_invocation" }, + { + "type": "SYMBOL", + "name": "macro_rules" + }, { "type": "SYMBOL", "name": "macro_definition" @@ -158,7 +162,7 @@ } ] }, - "macro_definition": { + "macro_rules": { "type": "SEQ", "members": [ { @@ -335,6 +339,108 @@ } ] }, + "macro_definition": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "visibility_modifier" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "macro" + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "SYMBOL", + "name": "_reserved_identifier" + } + ] + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "macro_def_args" + }, + { + "type": "SYMBOL", + "name": "macro_def_body" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "{" + }, + { + "type": "SEQ", + "members": [ + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "macro_rule" + }, + { + "type": "STRING", + "value": "," + } + ] + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "macro_rule" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "STRING", + "value": "}" + } + ] + } + ] + } + ] + }, "macro_rule": { "type": "SEQ", "members": [ @@ -360,6 +466,54 @@ } ] }, + "macro_def_args": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "FIELD", + "name": "left", + "content": { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_token_pattern" + } + } + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + "macro_def_body": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "{" + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_tokens" + } + } + }, + { + "type": "STRING", + "value": "}" + } + ] + }, "_token_pattern": { "type": "CHOICE", "members": [ diff --git a/src/node-types.json b/src/node-types.json index 93c3644..31b4f8c 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -59,6 +59,10 @@ "type": "macro_invocation", "named": true }, + { + "type": "macro_rules", + "named": true + }, { "type": "mod_item", "named": true @@ -2479,11 +2483,6 @@ ] } }, - { - "type": "inner_doc_comment_marker", - "named": true, - "fields": {} - }, { "type": "label", "named": true, @@ -2678,238 +2677,960 @@ } }, { - "type": "macro_definition", + "type": "macro_def_args", "named": true, "fields": { - "name": { - "multiple": false, - "required": true, + "left": { + "multiple": true, + "required": false, "types": [ { - "type": "identifier", - "named": true - } - ] - } - }, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "macro_rule", - "named": true - } - ] - } - }, - { - "type": "macro_invocation", - "named": true, - "fields": { - "macro": { - "multiple": false, - "required": true, - "types": [ + "type": "!", + "named": false + }, { - "type": "identifier", - "named": true + "type": "!=", + "named": false }, { - "type": "scoped_identifier", - "named": true - } - ] - } - }, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "token_tree", - "named": true - } - ] - } - }, - { - "type": "macro_rule", - "named": true, - "fields": { - "left": { - "multiple": false, - "required": true, - "types": [ + "type": "#", + "named": false + }, { - "type": "token_tree_pattern", - "named": true - } - ] - }, - "right": { - "multiple": false, - "required": true, - "types": [ + "type": "%", + "named": false + }, { - "type": "token_tree", - "named": true - } - ] - } - } - }, - { - "type": "match_arm", - "named": true, - "fields": { - "pattern": { - "multiple": false, - "required": true, - "types": [ + "type": "%=", + "named": false + }, { - "type": "match_pattern", - "named": true - } - ] - }, - "value": { - "multiple": false, - "required": true, - "types": [ + "type": "&", + "named": false + }, { - "type": "_expression", - "named": true - } - ] - } - }, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "attribute_item", - "named": true - }, - { - "type": "inner_attribute_item", - "named": true - } - ] - } - }, - { - "type": "match_block", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "match_arm", - "named": true - } - ] - } - }, - { - "type": "match_expression", - "named": true, - "fields": { - "body": { - "multiple": false, - "required": true, - "types": [ + "type": "&&", + "named": false + }, { - "type": "match_block", - "named": true - } - ] - }, - "value": { - "multiple": false, - "required": true, - "types": [ + "type": "&=", + "named": false + }, { - "type": "_expression", - "named": true - } - ] - } - } - }, - { - "type": "match_pattern", - "named": true, - "fields": { - "condition": { - "multiple": false, - "required": false, - "types": [ + "type": "'", + "named": false + }, { - "type": "_expression", - "named": true + "type": "*", + "named": false }, { - "type": "let_chain", - "named": true + "type": "*=", + "named": false }, { - "type": "let_condition", - "named": true - } - ] - } - }, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_pattern", - "named": true - } - ] - } - }, - { - "type": "mod_item", - "named": true, - "fields": { - "body": { - "multiple": false, - "required": false, - "types": [ + "type": "+", + "named": false + }, { - "type": "declaration_list", - "named": true - } - ] - }, - "name": { - "multiple": false, - "required": true, - "types": [ + "type": "+=", + "named": false + }, { - "type": "identifier", - "named": true - } - ] - } - }, - "children": { - "multiple": false, - "required": false, - "types": [ - { - "type": "visibility_modifier", - "named": true - } - ] - } - }, + "type": ",", + "named": false + }, + { + "type": "-", + "named": false + }, + { + "type": "-=", + "named": false + }, + { + "type": "->", + "named": false + }, + { + "type": ".", + "named": false + }, + { + "type": "..", + "named": false + }, + { + "type": "...", + "named": false + }, + { + "type": "..=", + "named": false + }, + { + "type": "/", + "named": false + }, + { + "type": "/=", + "named": false + }, + { + "type": ":", + "named": false + }, + { + "type": "::", + "named": false + }, + { + "type": ";", + "named": false + }, + { + "type": "<", + "named": false + }, + { + "type": "<<", + "named": false + }, + { + "type": "<<=", + "named": false + }, + { + "type": "<=", + "named": false + }, + { + "type": "=", + "named": false + }, + { + "type": "==", + "named": false + }, + { + "type": "=>", + "named": false + }, + { + "type": ">", + "named": false + }, + { + "type": ">=", + "named": false + }, + { + "type": ">>", + "named": false + }, + { + "type": ">>=", + "named": false + }, + { + "type": "?", + "named": false + }, + { + "type": "@", + "named": false + }, + { + "type": "^", + "named": false + }, + { + "type": "^=", + "named": false + }, + { + "type": "_", + "named": false + }, + { + "type": "_literal", + "named": true + }, + { + "type": "as", + "named": false + }, + { + "type": "async", + "named": false + }, + { + "type": "await", + "named": false + }, + { + "type": "break", + "named": false + }, + { + "type": "const", + "named": false + }, + { + "type": "continue", + "named": false + }, + { + "type": "crate", + "named": true + }, + { + "type": "default", + "named": false + }, + { + "type": "enum", + "named": false + }, + { + "type": "fn", + "named": false + }, + { + "type": "for", + "named": false + }, + { + "type": "identifier", + "named": true + }, + { + "type": "if", + "named": false + }, + { + "type": "impl", + "named": false + }, + { + "type": "let", + "named": false + }, + { + "type": "loop", + "named": false + }, + { + "type": "match", + "named": false + }, + { + "type": "metavariable", + "named": true + }, + { + "type": "mod", + "named": false + }, + { + "type": "mutable_specifier", + "named": true + }, + { + "type": "primitive_type", + "named": true + }, + { + "type": "pub", + "named": false + }, + { + "type": "return", + "named": false + }, + { + "type": "self", + "named": true + }, + { + "type": "static", + "named": false + }, + { + "type": "struct", + "named": false + }, + { + "type": "super", + "named": true + }, + { + "type": "token_binding_pattern", + "named": true + }, + { + "type": "token_repetition_pattern", + "named": true + }, + { + "type": "token_tree_pattern", + "named": true + }, + { + "type": "trait", + "named": false + }, + { + "type": "type", + "named": false + }, + { + "type": "union", + "named": false + }, + { + "type": "unsafe", + "named": false + }, + { + "type": "use", + "named": false + }, + { + "type": "where", + "named": false + }, + { + "type": "while", + "named": false + }, + { + "type": "|", + "named": false + }, + { + "type": "|=", + "named": false + }, + { + "type": "||", + "named": false + } + ] + } + } + }, + { + "type": "macro_def_body", + "named": true, + "fields": { + "right": { + "multiple": true, + "required": false, + "types": [ + { + "type": "!", + "named": false + }, + { + "type": "!=", + "named": false + }, + { + "type": "#", + "named": false + }, + { + "type": "%", + "named": false + }, + { + "type": "%=", + "named": false + }, + { + "type": "&", + "named": false + }, + { + "type": "&&", + "named": false + }, + { + "type": "&=", + "named": false + }, + { + "type": "'", + "named": false + }, + { + "type": "*", + "named": false + }, + { + "type": "*=", + "named": false + }, + { + "type": "+", + "named": false + }, + { + "type": "+=", + "named": false + }, + { + "type": ",", + "named": false + }, + { + "type": "-", + "named": false + }, + { + "type": "-=", + "named": false + }, + { + "type": "->", + "named": false + }, + { + "type": ".", + "named": false + }, + { + "type": "..", + "named": false + }, + { + "type": "...", + "named": false + }, + { + "type": "..=", + "named": false + }, + { + "type": "/", + "named": false + }, + { + "type": "/=", + "named": false + }, + { + "type": ":", + "named": false + }, + { + "type": "::", + "named": false + }, + { + "type": ";", + "named": false + }, + { + "type": "<", + "named": false + }, + { + "type": "<<", + "named": false + }, + { + "type": "<<=", + "named": false + }, + { + "type": "<=", + "named": false + }, + { + "type": "=", + "named": false + }, + { + "type": "==", + "named": false + }, + { + "type": "=>", + "named": false + }, + { + "type": ">", + "named": false + }, + { + "type": ">=", + "named": false + }, + { + "type": ">>", + "named": false + }, + { + "type": ">>=", + "named": false + }, + { + "type": "?", + "named": false + }, + { + "type": "@", + "named": false + }, + { + "type": "^", + "named": false + }, + { + "type": "^=", + "named": false + }, + { + "type": "_", + "named": false + }, + { + "type": "_literal", + "named": true + }, + { + "type": "as", + "named": false + }, + { + "type": "async", + "named": false + }, + { + "type": "await", + "named": false + }, + { + "type": "break", + "named": false + }, + { + "type": "const", + "named": false + }, + { + "type": "continue", + "named": false + }, + { + "type": "crate", + "named": true + }, + { + "type": "default", + "named": false + }, + { + "type": "enum", + "named": false + }, + { + "type": "fn", + "named": false + }, + { + "type": "for", + "named": false + }, + { + "type": "identifier", + "named": true + }, + { + "type": "if", + "named": false + }, + { + "type": "impl", + "named": false + }, + { + "type": "let", + "named": false + }, + { + "type": "loop", + "named": false + }, + { + "type": "match", + "named": false + }, + { + "type": "metavariable", + "named": true + }, + { + "type": "mod", + "named": false + }, + { + "type": "mutable_specifier", + "named": true + }, + { + "type": "primitive_type", + "named": true + }, + { + "type": "pub", + "named": false + }, + { + "type": "return", + "named": false + }, + { + "type": "self", + "named": true + }, + { + "type": "static", + "named": false + }, + { + "type": "struct", + "named": false + }, + { + "type": "super", + "named": true + }, + { + "type": "token_repetition", + "named": true + }, + { + "type": "token_tree", + "named": true + }, + { + "type": "trait", + "named": false + }, + { + "type": "type", + "named": false + }, + { + "type": "union", + "named": false + }, + { + "type": "unsafe", + "named": false + }, + { + "type": "use", + "named": false + }, + { + "type": "where", + "named": false + }, + { + "type": "while", + "named": false + }, + { + "type": "|", + "named": false + }, + { + "type": "|=", + "named": false + }, + { + "type": "||", + "named": false + } + ] + } + } + }, + { + "type": "macro_definition", + "named": true, + "fields": { + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "macro_def_args", + "named": true + }, + { + "type": "macro_def_body", + "named": true + }, + { + "type": "macro_rule", + "named": true + }, + { + "type": "visibility_modifier", + "named": true + } + ] + } + }, + { + "type": "macro_invocation", + "named": true, + "fields": { + "macro": { + "multiple": false, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + }, + { + "type": "scoped_identifier", + "named": true + } + ] + } + }, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "token_tree", + "named": true + } + ] + } + }, + { + "type": "macro_rule", + "named": true, + "fields": { + "left": { + "multiple": false, + "required": true, + "types": [ + { + "type": "token_tree_pattern", + "named": true + } + ] + }, + "right": { + "multiple": false, + "required": true, + "types": [ + { + "type": "token_tree", + "named": true + } + ] + } + } + }, + { + "type": "macro_rules", + "named": true, + "fields": { + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "macro_rule", + "named": true + } + ] + } + }, + { + "type": "match_arm", + "named": true, + "fields": { + "pattern": { + "multiple": false, + "required": true, + "types": [ + { + "type": "match_pattern", + "named": true + } + ] + }, + "value": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_expression", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "attribute_item", + "named": true + }, + { + "type": "inner_attribute_item", + "named": true + } + ] + } + }, + { + "type": "match_block", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "match_arm", + "named": true + } + ] + } + }, + { + "type": "match_expression", + "named": true, + "fields": { + "body": { + "multiple": false, + "required": true, + "types": [ + { + "type": "match_block", + "named": true + } + ] + }, + "value": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_expression", + "named": true + } + ] + } + } + }, + { + "type": "match_pattern", + "named": true, + "fields": { + "condition": { + "multiple": false, + "required": false, + "types": [ + { + "type": "_expression", + "named": true + }, + { + "type": "let_chain", + "named": true + }, + { + "type": "let_condition", + "named": true + } + ] + } + }, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_pattern", + "named": true + } + ] + } + }, + { + "type": "mod_item", + "named": true, + "fields": { + "body": { + "multiple": false, + "required": false, + "types": [ + { + "type": "declaration_list", + "named": true + } + ] + }, + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + } + ] + } + }, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "visibility_modifier", + "named": true + } + ] + } + }, { "type": "mut_pattern", "named": true, @@ -3028,11 +3749,6 @@ ] } }, - { - "type": "outer_doc_comment_marker", - "named": true, - "fields": {} - }, { "type": "parameter", "named": true, @@ -5211,6 +5927,10 @@ "type": "in", "named": false }, + { + "type": "inner_doc_comment_marker", + "named": true + }, { "type": "integer_literal", "named": true @@ -5235,6 +5955,10 @@ "type": "loop", "named": false }, + { + "type": "macro", + "named": false + }, { "type": "macro_rules!", "named": false @@ -5263,6 +5987,10 @@ "type": "mutable_specifier", "named": true }, + { + "type": "outer_doc_comment_marker", + "named": true + }, { "type": "pat", "named": false diff --git a/src/parser.c b/src/parser.c index 58e98a9..c3689d6 100644 --- a/src/parser.c +++ b/src/parser.c @@ -5,15 +5,15 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 3620 -#define LARGE_STATE_COUNT 1004 -#define SYMBOL_COUNT 343 +#define STATE_COUNT 3709 +#define LARGE_STATE_COUNT 1024 +#define SYMBOL_COUNT 346 #define ALIAS_COUNT 4 -#define TOKEN_COUNT 153 +#define TOKEN_COUNT 154 #define EXTERNAL_TOKEN_COUNT 10 #define FIELD_COUNT 31 #define MAX_ALIAS_SEQUENCE_LENGTH 10 -#define PRODUCTION_ID_COUNT 279 +#define PRODUCTION_ID_COUNT 282 enum ts_symbol_identifiers { sym_identifier = 1, @@ -25,343 +25,346 @@ enum ts_symbol_identifiers { anon_sym_RBRACK = 7, anon_sym_LBRACE = 8, anon_sym_RBRACE = 9, - anon_sym_EQ_GT = 10, - anon_sym_COLON = 11, - anon_sym_DOLLAR = 12, - aux_sym_token_repetition_pattern_token1 = 13, - anon_sym_PLUS = 14, - anon_sym_STAR = 15, - anon_sym_QMARK = 16, - anon_sym_block = 17, - anon_sym_expr = 18, - anon_sym_ident = 19, - anon_sym_item = 20, - anon_sym_lifetime = 21, - anon_sym_literal = 22, - anon_sym_meta = 23, - anon_sym_pat = 24, - anon_sym_path = 25, - anon_sym_stmt = 26, - anon_sym_tt = 27, - anon_sym_ty = 28, - anon_sym_vis = 29, - anon_sym_u8 = 30, - anon_sym_i8 = 31, - anon_sym_u16 = 32, - anon_sym_i16 = 33, - anon_sym_u32 = 34, - anon_sym_i32 = 35, - anon_sym_u64 = 36, - anon_sym_i64 = 37, - anon_sym_u128 = 38, - anon_sym_i128 = 39, - anon_sym_isize = 40, - anon_sym_usize = 41, - anon_sym_f32 = 42, - anon_sym_f64 = 43, - anon_sym_bool = 44, - anon_sym_str = 45, - anon_sym_char = 46, - anon_sym_DASH = 47, - anon_sym_SLASH = 48, - anon_sym_PERCENT = 49, - anon_sym_CARET = 50, - anon_sym_BANG = 51, - anon_sym_AMP = 52, - anon_sym_PIPE = 53, - anon_sym_AMP_AMP = 54, - anon_sym_PIPE_PIPE = 55, - anon_sym_LT_LT = 56, - anon_sym_GT_GT = 57, - anon_sym_PLUS_EQ = 58, - anon_sym_DASH_EQ = 59, - anon_sym_STAR_EQ = 60, - anon_sym_SLASH_EQ = 61, - anon_sym_PERCENT_EQ = 62, - anon_sym_CARET_EQ = 63, - anon_sym_AMP_EQ = 64, - anon_sym_PIPE_EQ = 65, - anon_sym_LT_LT_EQ = 66, - anon_sym_GT_GT_EQ = 67, - anon_sym_EQ = 68, - anon_sym_EQ_EQ = 69, - anon_sym_BANG_EQ = 70, - anon_sym_GT = 71, - anon_sym_LT = 72, - anon_sym_GT_EQ = 73, - anon_sym_LT_EQ = 74, - anon_sym_AT = 75, - anon_sym__ = 76, - anon_sym_DOT = 77, - anon_sym_DOT_DOT = 78, - anon_sym_DOT_DOT_DOT = 79, - anon_sym_DOT_DOT_EQ = 80, - anon_sym_COMMA = 81, - anon_sym_COLON_COLON = 82, - anon_sym_DASH_GT = 83, - anon_sym_POUND = 84, - anon_sym_SQUOTE = 85, - anon_sym_as = 86, - anon_sym_async = 87, - anon_sym_await = 88, - anon_sym_break = 89, - anon_sym_const = 90, - anon_sym_continue = 91, - anon_sym_default = 92, - anon_sym_enum = 93, - anon_sym_fn = 94, - anon_sym_for = 95, - anon_sym_if = 96, - anon_sym_impl = 97, - anon_sym_let = 98, - anon_sym_loop = 99, - anon_sym_match = 100, - anon_sym_mod = 101, - anon_sym_pub = 102, - anon_sym_return = 103, - anon_sym_static = 104, - anon_sym_struct = 105, - anon_sym_trait = 106, - anon_sym_type = 107, - anon_sym_union = 108, - anon_sym_unsafe = 109, - anon_sym_use = 110, - anon_sym_where = 111, - anon_sym_while = 112, - anon_sym_extern = 113, - anon_sym_ref = 114, - anon_sym_else = 115, - anon_sym_in = 116, - anon_sym_LT2 = 117, - anon_sym_dyn = 118, - sym_mutable_specifier = 119, - anon_sym_yield = 120, - anon_sym_move = 121, - anon_sym_try = 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, - anon_sym_SLASH_SLASH = 130, - aux_sym_line_comment_token1 = 131, - aux_sym_line_comment_token2 = 132, - aux_sym_line_comment_token3 = 133, - anon_sym_BANG2 = 134, - anon_sym_SLASH2 = 135, - anon_sym_SLASH_STAR = 136, - anon_sym_STAR_SLASH = 137, - sym_shebang = 138, - sym_self = 139, - sym_super = 140, - sym_crate = 141, - sym_metavariable = 142, - sym_string_content = 143, - sym__raw_string_literal_start = 144, - sym_raw_string_literal_content = 145, - sym__raw_string_literal_end = 146, - sym_float_literal = 147, - sym__outer_block_doc_comment_marker = 148, - sym__inner_block_doc_comment_marker = 149, - sym__block_comment_content = 150, - sym__line_doc_content = 151, - sym__error_sentinel = 152, - sym_source_file = 153, - sym__statement = 154, - sym_empty_statement = 155, - sym_expression_statement = 156, - sym_macro_definition = 157, - sym_macro_rule = 158, - sym__token_pattern = 159, - sym_token_tree_pattern = 160, - sym_token_binding_pattern = 161, - sym_token_repetition_pattern = 162, - sym_fragment_specifier = 163, - sym_token_tree = 164, - sym_token_repetition = 165, - sym_attribute_item = 166, - sym_inner_attribute_item = 167, - sym_attribute = 168, - sym_mod_item = 169, - sym_foreign_mod_item = 170, - sym_declaration_list = 171, - sym_struct_item = 172, - sym_union_item = 173, - sym_enum_item = 174, - sym_enum_variant_list = 175, - sym_enum_variant = 176, - sym_field_declaration_list = 177, - sym_field_declaration = 178, - sym_ordered_field_declaration_list = 179, - sym_extern_crate_declaration = 180, - sym_const_item = 181, - sym_static_item = 182, - sym_type_item = 183, - sym_function_item = 184, - sym_function_signature_item = 185, - sym_function_modifiers = 186, - sym_where_clause = 187, - sym_where_predicate = 188, - sym_impl_item = 189, - sym_trait_item = 190, - sym_associated_type = 191, - sym_trait_bounds = 192, - sym_higher_ranked_trait_bound = 193, - sym_removed_trait_bound = 194, - sym_type_parameters = 195, - sym_const_parameter = 196, - sym_constrained_type_parameter = 197, - sym_optional_type_parameter = 198, - sym_let_declaration = 199, - sym_use_declaration = 200, - sym__use_clause = 201, - sym_scoped_use_list = 202, - sym_use_list = 203, - sym_use_as_clause = 204, - sym_use_wildcard = 205, - sym_parameters = 206, - sym_self_parameter = 207, - sym_variadic_parameter = 208, - sym_parameter = 209, - sym_extern_modifier = 210, - sym_visibility_modifier = 211, - sym__type = 212, - sym_bracketed_type = 213, - sym_qualified_type = 214, - sym_lifetime = 215, - sym_array_type = 216, - sym_for_lifetimes = 217, - sym_function_type = 218, - sym_tuple_type = 219, - sym_unit_type = 220, - sym_generic_function = 221, - sym_generic_type = 222, - sym_generic_type_with_turbofish = 223, - sym_bounded_type = 224, - sym_type_arguments = 225, - sym_type_binding = 226, - sym_reference_type = 227, - sym_pointer_type = 228, - sym_never_type = 229, - sym_abstract_type = 230, - sym_dynamic_type = 231, - sym__expression_except_range = 232, - sym__expression = 233, - sym_macro_invocation = 234, - sym_delim_token_tree = 235, - sym__delim_tokens = 236, - sym__non_delim_token = 237, - sym_scoped_identifier = 238, - sym_scoped_type_identifier_in_expression_position = 239, - sym_scoped_type_identifier = 240, - sym_range_expression = 241, - sym_unary_expression = 242, - sym_try_expression = 243, - sym_reference_expression = 244, - sym_binary_expression = 245, - sym_assignment_expression = 246, - sym_compound_assignment_expr = 247, - sym_type_cast_expression = 248, - sym_return_expression = 249, - sym_yield_expression = 250, - sym_call_expression = 251, - sym_arguments = 252, - sym_array_expression = 253, - sym_parenthesized_expression = 254, - sym_tuple_expression = 255, - sym_unit_expression = 256, - sym_struct_expression = 257, - sym_field_initializer_list = 258, - sym_shorthand_field_initializer = 259, - sym_field_initializer = 260, - sym_base_field_initializer = 261, - sym_if_expression = 262, - sym_let_condition = 263, - sym__let_chain = 264, - sym__condition = 265, - sym_else_clause = 266, - sym_match_expression = 267, - sym_match_block = 268, - sym_match_arm = 269, - sym_last_match_arm = 270, - sym_match_pattern = 271, - sym_while_expression = 272, - sym_loop_expression = 273, - sym_for_expression = 274, - sym_const_block = 275, - sym_closure_expression = 276, - sym_closure_parameters = 277, - sym_label = 278, - sym_break_expression = 279, - sym_continue_expression = 280, - sym_index_expression = 281, - sym_await_expression = 282, - sym_field_expression = 283, - sym_unsafe_block = 284, - sym_async_block = 285, - sym_try_block = 286, - sym_block = 287, - sym__pattern = 288, - sym_tuple_pattern = 289, - sym_slice_pattern = 290, - sym_tuple_struct_pattern = 291, - sym_struct_pattern = 292, - sym_field_pattern = 293, - sym_remaining_field_pattern = 294, - sym_mut_pattern = 295, - sym_range_pattern = 296, - sym_ref_pattern = 297, - sym_captured_pattern = 298, - sym_reference_pattern = 299, - sym_or_pattern = 300, - sym__literal = 301, - sym__literal_pattern = 302, - sym_negative_literal = 303, - sym_string_literal = 304, - sym_raw_string_literal = 305, - sym_boolean_literal = 306, - sym_line_comment = 307, - sym__line_doc_comment_marker = 308, - sym__inner_line_doc_comment_marker = 309, - sym__outer_line_doc_comment_marker = 310, - sym_block_comment = 311, - sym__block_doc_comment_marker = 312, - aux_sym_source_file_repeat1 = 313, - aux_sym_macro_definition_repeat1 = 314, - aux_sym_token_tree_pattern_repeat1 = 315, - aux_sym_token_tree_repeat1 = 316, - aux_sym__non_special_token_repeat1 = 317, - aux_sym_declaration_list_repeat1 = 318, - aux_sym_enum_variant_list_repeat1 = 319, - aux_sym_enum_variant_list_repeat2 = 320, - aux_sym_field_declaration_list_repeat1 = 321, - aux_sym_ordered_field_declaration_list_repeat1 = 322, - aux_sym_function_modifiers_repeat1 = 323, - aux_sym_where_clause_repeat1 = 324, - aux_sym_trait_bounds_repeat1 = 325, - aux_sym_type_parameters_repeat1 = 326, - aux_sym_use_list_repeat1 = 327, - aux_sym_parameters_repeat1 = 328, - aux_sym_for_lifetimes_repeat1 = 329, - aux_sym_tuple_type_repeat1 = 330, - aux_sym_type_arguments_repeat1 = 331, - aux_sym_delim_token_tree_repeat1 = 332, - aux_sym_arguments_repeat1 = 333, - aux_sym_tuple_expression_repeat1 = 334, - aux_sym_field_initializer_list_repeat1 = 335, - aux_sym_match_block_repeat1 = 336, - aux_sym_match_arm_repeat1 = 337, - aux_sym_closure_parameters_repeat1 = 338, - aux_sym_tuple_pattern_repeat1 = 339, - aux_sym_slice_pattern_repeat1 = 340, - aux_sym_struct_pattern_repeat1 = 341, - aux_sym_string_literal_repeat1 = 342, - alias_sym_field_identifier = 343, - alias_sym_let_chain = 344, - alias_sym_shorthand_field_identifier = 345, - alias_sym_type_identifier = 346, + anon_sym_macro = 10, + anon_sym_COMMA = 11, + anon_sym_EQ_GT = 12, + anon_sym_COLON = 13, + anon_sym_DOLLAR = 14, + aux_sym_token_repetition_pattern_token1 = 15, + anon_sym_PLUS = 16, + anon_sym_STAR = 17, + anon_sym_QMARK = 18, + anon_sym_block = 19, + anon_sym_expr = 20, + anon_sym_ident = 21, + anon_sym_item = 22, + anon_sym_lifetime = 23, + anon_sym_literal = 24, + anon_sym_meta = 25, + anon_sym_pat = 26, + anon_sym_path = 27, + anon_sym_stmt = 28, + anon_sym_tt = 29, + anon_sym_ty = 30, + anon_sym_vis = 31, + anon_sym_u8 = 32, + anon_sym_i8 = 33, + anon_sym_u16 = 34, + anon_sym_i16 = 35, + anon_sym_u32 = 36, + anon_sym_i32 = 37, + anon_sym_u64 = 38, + anon_sym_i64 = 39, + anon_sym_u128 = 40, + anon_sym_i128 = 41, + anon_sym_isize = 42, + anon_sym_usize = 43, + anon_sym_f32 = 44, + anon_sym_f64 = 45, + anon_sym_bool = 46, + anon_sym_str = 47, + anon_sym_char = 48, + anon_sym_DASH = 49, + anon_sym_SLASH = 50, + anon_sym_PERCENT = 51, + anon_sym_CARET = 52, + anon_sym_BANG = 53, + anon_sym_AMP = 54, + anon_sym_PIPE = 55, + anon_sym_AMP_AMP = 56, + anon_sym_PIPE_PIPE = 57, + anon_sym_LT_LT = 58, + anon_sym_GT_GT = 59, + anon_sym_PLUS_EQ = 60, + anon_sym_DASH_EQ = 61, + anon_sym_STAR_EQ = 62, + anon_sym_SLASH_EQ = 63, + anon_sym_PERCENT_EQ = 64, + anon_sym_CARET_EQ = 65, + anon_sym_AMP_EQ = 66, + anon_sym_PIPE_EQ = 67, + anon_sym_LT_LT_EQ = 68, + anon_sym_GT_GT_EQ = 69, + anon_sym_EQ = 70, + anon_sym_EQ_EQ = 71, + anon_sym_BANG_EQ = 72, + anon_sym_GT = 73, + anon_sym_LT = 74, + anon_sym_GT_EQ = 75, + anon_sym_LT_EQ = 76, + anon_sym_AT = 77, + anon_sym__ = 78, + anon_sym_DOT = 79, + anon_sym_DOT_DOT = 80, + anon_sym_DOT_DOT_DOT = 81, + anon_sym_DOT_DOT_EQ = 82, + anon_sym_COLON_COLON = 83, + anon_sym_DASH_GT = 84, + anon_sym_POUND = 85, + anon_sym_SQUOTE = 86, + anon_sym_as = 87, + anon_sym_async = 88, + anon_sym_await = 89, + anon_sym_break = 90, + anon_sym_const = 91, + anon_sym_continue = 92, + anon_sym_default = 93, + anon_sym_enum = 94, + anon_sym_fn = 95, + anon_sym_for = 96, + anon_sym_if = 97, + anon_sym_impl = 98, + anon_sym_let = 99, + anon_sym_loop = 100, + anon_sym_match = 101, + anon_sym_mod = 102, + anon_sym_pub = 103, + anon_sym_return = 104, + anon_sym_static = 105, + anon_sym_struct = 106, + anon_sym_trait = 107, + anon_sym_type = 108, + anon_sym_union = 109, + anon_sym_unsafe = 110, + anon_sym_use = 111, + anon_sym_where = 112, + anon_sym_while = 113, + anon_sym_extern = 114, + anon_sym_ref = 115, + anon_sym_else = 116, + anon_sym_in = 117, + anon_sym_LT2 = 118, + anon_sym_dyn = 119, + sym_mutable_specifier = 120, + anon_sym_yield = 121, + anon_sym_move = 122, + anon_sym_try = 123, + sym_integer_literal = 124, + aux_sym_string_literal_token1 = 125, + anon_sym_DQUOTE = 126, + sym_char_literal = 127, + sym_escape_sequence = 128, + anon_sym_true = 129, + anon_sym_false = 130, + anon_sym_SLASH_SLASH = 131, + aux_sym_line_comment_token1 = 132, + aux_sym_line_comment_token2 = 133, + aux_sym_line_comment_token3 = 134, + sym__inner_line_doc_comment_marker = 135, + sym__outer_line_doc_comment_marker = 136, + anon_sym_SLASH_STAR = 137, + anon_sym_STAR_SLASH = 138, + sym_shebang = 139, + sym_self = 140, + sym_super = 141, + sym_crate = 142, + sym_metavariable = 143, + sym_string_content = 144, + sym__raw_string_literal_start = 145, + sym_raw_string_literal_content = 146, + sym__raw_string_literal_end = 147, + sym_float_literal = 148, + sym__outer_block_doc_comment_marker = 149, + sym__inner_block_doc_comment_marker = 150, + sym__block_comment_content = 151, + sym__line_doc_content = 152, + sym__error_sentinel = 153, + sym_source_file = 154, + sym__statement = 155, + sym_empty_statement = 156, + sym_expression_statement = 157, + sym_macro_rules = 158, + sym_macro_definition = 159, + sym_macro_rule = 160, + sym_macro_def_args = 161, + sym_macro_def_body = 162, + sym__token_pattern = 163, + sym_token_tree_pattern = 164, + sym_token_binding_pattern = 165, + sym_token_repetition_pattern = 166, + sym_fragment_specifier = 167, + sym_token_tree = 168, + sym_token_repetition = 169, + sym_attribute_item = 170, + sym_inner_attribute_item = 171, + sym_attribute = 172, + sym_mod_item = 173, + sym_foreign_mod_item = 174, + sym_declaration_list = 175, + sym_struct_item = 176, + sym_union_item = 177, + sym_enum_item = 178, + sym_enum_variant_list = 179, + sym_enum_variant = 180, + sym_field_declaration_list = 181, + sym_field_declaration = 182, + sym_ordered_field_declaration_list = 183, + sym_extern_crate_declaration = 184, + sym_const_item = 185, + sym_static_item = 186, + sym_type_item = 187, + sym_function_item = 188, + sym_function_signature_item = 189, + sym_function_modifiers = 190, + sym_where_clause = 191, + sym_where_predicate = 192, + sym_impl_item = 193, + sym_trait_item = 194, + sym_associated_type = 195, + sym_trait_bounds = 196, + sym_higher_ranked_trait_bound = 197, + sym_removed_trait_bound = 198, + sym_type_parameters = 199, + sym_const_parameter = 200, + sym_constrained_type_parameter = 201, + sym_optional_type_parameter = 202, + sym_let_declaration = 203, + sym_use_declaration = 204, + sym__use_clause = 205, + sym_scoped_use_list = 206, + sym_use_list = 207, + sym_use_as_clause = 208, + sym_use_wildcard = 209, + sym_parameters = 210, + sym_self_parameter = 211, + sym_variadic_parameter = 212, + sym_parameter = 213, + sym_extern_modifier = 214, + sym_visibility_modifier = 215, + sym__type = 216, + sym_bracketed_type = 217, + sym_qualified_type = 218, + sym_lifetime = 219, + sym_array_type = 220, + sym_for_lifetimes = 221, + sym_function_type = 222, + sym_tuple_type = 223, + sym_unit_type = 224, + sym_generic_function = 225, + sym_generic_type = 226, + sym_generic_type_with_turbofish = 227, + sym_bounded_type = 228, + sym_type_arguments = 229, + sym_type_binding = 230, + sym_reference_type = 231, + sym_pointer_type = 232, + sym_never_type = 233, + sym_abstract_type = 234, + sym_dynamic_type = 235, + sym__expression_except_range = 236, + sym__expression = 237, + sym_macro_invocation = 238, + sym_delim_token_tree = 239, + sym__delim_tokens = 240, + sym__non_delim_token = 241, + sym_scoped_identifier = 242, + sym_scoped_type_identifier_in_expression_position = 243, + sym_scoped_type_identifier = 244, + sym_range_expression = 245, + sym_unary_expression = 246, + sym_try_expression = 247, + sym_reference_expression = 248, + sym_binary_expression = 249, + sym_assignment_expression = 250, + sym_compound_assignment_expr = 251, + sym_type_cast_expression = 252, + sym_return_expression = 253, + sym_yield_expression = 254, + sym_call_expression = 255, + sym_arguments = 256, + sym_array_expression = 257, + sym_parenthesized_expression = 258, + sym_tuple_expression = 259, + sym_unit_expression = 260, + sym_struct_expression = 261, + sym_field_initializer_list = 262, + sym_shorthand_field_initializer = 263, + sym_field_initializer = 264, + sym_base_field_initializer = 265, + sym_if_expression = 266, + sym_let_condition = 267, + sym__let_chain = 268, + sym__condition = 269, + sym_else_clause = 270, + sym_match_expression = 271, + sym_match_block = 272, + sym_match_arm = 273, + sym_last_match_arm = 274, + sym_match_pattern = 275, + sym_while_expression = 276, + sym_loop_expression = 277, + sym_for_expression = 278, + sym_const_block = 279, + sym_closure_expression = 280, + sym_closure_parameters = 281, + sym_label = 282, + sym_break_expression = 283, + sym_continue_expression = 284, + sym_index_expression = 285, + sym_await_expression = 286, + sym_field_expression = 287, + sym_unsafe_block = 288, + sym_async_block = 289, + sym_try_block = 290, + sym_block = 291, + sym__pattern = 292, + sym_tuple_pattern = 293, + sym_slice_pattern = 294, + sym_tuple_struct_pattern = 295, + sym_struct_pattern = 296, + sym_field_pattern = 297, + sym_remaining_field_pattern = 298, + sym_mut_pattern = 299, + sym_range_pattern = 300, + sym_ref_pattern = 301, + sym_captured_pattern = 302, + sym_reference_pattern = 303, + sym_or_pattern = 304, + sym__literal = 305, + sym__literal_pattern = 306, + sym_negative_literal = 307, + sym_string_literal = 308, + sym_raw_string_literal = 309, + sym_boolean_literal = 310, + sym_line_comment = 311, + sym__line_doc_comment_marker = 312, + sym_block_comment = 313, + sym__block_doc_comment_marker = 314, + aux_sym_source_file_repeat1 = 315, + aux_sym_macro_rules_repeat1 = 316, + aux_sym_macro_definition_repeat1 = 317, + aux_sym_macro_def_args_repeat1 = 318, + aux_sym_macro_def_body_repeat1 = 319, + aux_sym__non_special_token_repeat1 = 320, + aux_sym_declaration_list_repeat1 = 321, + aux_sym_enum_variant_list_repeat1 = 322, + aux_sym_enum_variant_list_repeat2 = 323, + aux_sym_field_declaration_list_repeat1 = 324, + aux_sym_ordered_field_declaration_list_repeat1 = 325, + aux_sym_function_modifiers_repeat1 = 326, + aux_sym_where_clause_repeat1 = 327, + aux_sym_trait_bounds_repeat1 = 328, + aux_sym_type_parameters_repeat1 = 329, + aux_sym_use_list_repeat1 = 330, + aux_sym_parameters_repeat1 = 331, + aux_sym_for_lifetimes_repeat1 = 332, + aux_sym_tuple_type_repeat1 = 333, + aux_sym_type_arguments_repeat1 = 334, + aux_sym_delim_token_tree_repeat1 = 335, + aux_sym_arguments_repeat1 = 336, + aux_sym_tuple_expression_repeat1 = 337, + aux_sym_field_initializer_list_repeat1 = 338, + aux_sym_match_block_repeat1 = 339, + aux_sym_match_arm_repeat1 = 340, + aux_sym_closure_parameters_repeat1 = 341, + aux_sym_tuple_pattern_repeat1 = 342, + aux_sym_slice_pattern_repeat1 = 343, + aux_sym_struct_pattern_repeat1 = 344, + aux_sym_string_literal_repeat1 = 345, + alias_sym_field_identifier = 346, + alias_sym_let_chain = 347, + alias_sym_shorthand_field_identifier = 348, + alias_sym_type_identifier = 349, }; static const char * const ts_symbol_names[] = { @@ -375,6 +378,8 @@ static const char * const ts_symbol_names[] = { [anon_sym_RBRACK] = "]", [anon_sym_LBRACE] = "{", [anon_sym_RBRACE] = "}", + [anon_sym_macro] = "macro", + [anon_sym_COMMA] = ",", [anon_sym_EQ_GT] = "=>", [anon_sym_COLON] = ":", [anon_sym_DOLLAR] = "$", @@ -446,7 +451,6 @@ static const char * const ts_symbol_names[] = { [anon_sym_DOT_DOT] = "..", [anon_sym_DOT_DOT_DOT] = "...", [anon_sym_DOT_DOT_EQ] = "..=", - [anon_sym_COMMA] = ",", [anon_sym_COLON_COLON] = "::", [anon_sym_DASH_GT] = "->", [anon_sym_POUND] = "#", @@ -499,8 +503,8 @@ static const char * const ts_symbol_names[] = { [aux_sym_line_comment_token1] = "line_comment_token1", [aux_sym_line_comment_token2] = "line_comment_token2", [aux_sym_line_comment_token3] = "line_comment_token3", - [anon_sym_BANG2] = "!", - [anon_sym_SLASH2] = "/", + [sym__inner_line_doc_comment_marker] = "inner_doc_comment_marker", + [sym__outer_line_doc_comment_marker] = "outer_doc_comment_marker", [anon_sym_SLASH_STAR] = "/*", [anon_sym_STAR_SLASH] = "*/", [sym_shebang] = "shebang", @@ -522,8 +526,11 @@ static const char * const ts_symbol_names[] = { [sym__statement] = "_statement", [sym_empty_statement] = "empty_statement", [sym_expression_statement] = "expression_statement", + [sym_macro_rules] = "macro_rules", [sym_macro_definition] = "macro_definition", [sym_macro_rule] = "macro_rule", + [sym_macro_def_args] = "macro_def_args", + [sym_macro_def_body] = "macro_def_body", [sym__token_pattern] = "_token_pattern", [sym_token_tree_pattern] = "token_tree_pattern", [sym_token_binding_pattern] = "token_binding_pattern", @@ -674,14 +681,13 @@ static const char * const ts_symbol_names[] = { [sym_boolean_literal] = "boolean_literal", [sym_line_comment] = "line_comment", [sym__line_doc_comment_marker] = "_line_doc_comment_marker", - [sym__inner_line_doc_comment_marker] = "inner_doc_comment_marker", - [sym__outer_line_doc_comment_marker] = "outer_doc_comment_marker", [sym_block_comment] = "block_comment", [sym__block_doc_comment_marker] = "_block_doc_comment_marker", [aux_sym_source_file_repeat1] = "source_file_repeat1", + [aux_sym_macro_rules_repeat1] = "macro_rules_repeat1", [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_macro_def_args_repeat1] = "macro_def_args_repeat1", + [aux_sym_macro_def_body_repeat1] = "macro_def_body_repeat1", [aux_sym__non_special_token_repeat1] = "_non_special_token_repeat1", [aux_sym_declaration_list_repeat1] = "declaration_list_repeat1", [aux_sym_enum_variant_list_repeat1] = "enum_variant_list_repeat1", @@ -725,6 +731,8 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_RBRACK] = anon_sym_RBRACK, [anon_sym_LBRACE] = anon_sym_LBRACE, [anon_sym_RBRACE] = anon_sym_RBRACE, + [anon_sym_macro] = anon_sym_macro, + [anon_sym_COMMA] = anon_sym_COMMA, [anon_sym_EQ_GT] = anon_sym_EQ_GT, [anon_sym_COLON] = anon_sym_COLON, [anon_sym_DOLLAR] = anon_sym_DOLLAR, @@ -796,7 +804,6 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_DOT_DOT] = anon_sym_DOT_DOT, [anon_sym_DOT_DOT_DOT] = anon_sym_DOT_DOT_DOT, [anon_sym_DOT_DOT_EQ] = anon_sym_DOT_DOT_EQ, - [anon_sym_COMMA] = anon_sym_COMMA, [anon_sym_COLON_COLON] = anon_sym_COLON_COLON, [anon_sym_DASH_GT] = anon_sym_DASH_GT, [anon_sym_POUND] = anon_sym_POUND, @@ -849,8 +856,8 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_line_comment_token1] = aux_sym_line_comment_token1, [aux_sym_line_comment_token2] = aux_sym_line_comment_token2, [aux_sym_line_comment_token3] = aux_sym_line_comment_token3, - [anon_sym_BANG2] = anon_sym_BANG, - [anon_sym_SLASH2] = anon_sym_SLASH, + [sym__inner_line_doc_comment_marker] = sym__inner_block_doc_comment_marker, + [sym__outer_line_doc_comment_marker] = sym__outer_block_doc_comment_marker, [anon_sym_SLASH_STAR] = anon_sym_SLASH_STAR, [anon_sym_STAR_SLASH] = anon_sym_STAR_SLASH, [sym_shebang] = sym_shebang, @@ -872,8 +879,11 @@ static const TSSymbol ts_symbol_map[] = { [sym__statement] = sym__statement, [sym_empty_statement] = sym_empty_statement, [sym_expression_statement] = sym_expression_statement, + [sym_macro_rules] = sym_macro_rules, [sym_macro_definition] = sym_macro_definition, [sym_macro_rule] = sym_macro_rule, + [sym_macro_def_args] = sym_macro_def_args, + [sym_macro_def_body] = sym_macro_def_body, [sym__token_pattern] = sym__token_pattern, [sym_token_tree_pattern] = sym_token_tree_pattern, [sym_token_binding_pattern] = sym_token_binding_pattern, @@ -1024,14 +1034,13 @@ static const TSSymbol ts_symbol_map[] = { [sym_boolean_literal] = sym_boolean_literal, [sym_line_comment] = sym_line_comment, [sym__line_doc_comment_marker] = sym__line_doc_comment_marker, - [sym__inner_line_doc_comment_marker] = sym__inner_block_doc_comment_marker, - [sym__outer_line_doc_comment_marker] = sym__outer_block_doc_comment_marker, [sym_block_comment] = sym_block_comment, [sym__block_doc_comment_marker] = sym__block_doc_comment_marker, [aux_sym_source_file_repeat1] = aux_sym_source_file_repeat1, + [aux_sym_macro_rules_repeat1] = aux_sym_macro_rules_repeat1, [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_macro_def_args_repeat1] = aux_sym_macro_def_args_repeat1, + [aux_sym_macro_def_body_repeat1] = aux_sym_macro_def_body_repeat1, [aux_sym__non_special_token_repeat1] = aux_sym__non_special_token_repeat1, [aux_sym_declaration_list_repeat1] = aux_sym_declaration_list_repeat1, [aux_sym_enum_variant_list_repeat1] = aux_sym_enum_variant_list_repeat1, @@ -1105,6 +1114,14 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_macro] = { + .visible = true, + .named = false, + }, + [anon_sym_COMMA] = { + .visible = true, + .named = false, + }, [anon_sym_EQ_GT] = { .visible = true, .named = false, @@ -1389,10 +1406,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_COMMA] = { - .visible = true, - .named = false, - }, [anon_sym_COLON_COLON] = { .visible = true, .named = false, @@ -1601,13 +1614,13 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, - [anon_sym_BANG2] = { + [sym__inner_line_doc_comment_marker] = { .visible = true, - .named = false, + .named = true, }, - [anon_sym_SLASH2] = { + [sym__outer_line_doc_comment_marker] = { .visible = true, - .named = false, + .named = true, }, [anon_sym_SLASH_STAR] = { .visible = true, @@ -1693,6 +1706,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_macro_rules] = { + .visible = true, + .named = true, + }, [sym_macro_definition] = { .visible = true, .named = true, @@ -1701,6 +1718,14 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_macro_def_args] = { + .visible = true, + .named = true, + }, + [sym_macro_def_body] = { + .visible = true, + .named = true, + }, [sym__token_pattern] = { .visible = false, .named = true, @@ -2306,14 +2331,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, - [sym__inner_line_doc_comment_marker] = { - .visible = true, - .named = true, - }, - [sym__outer_line_doc_comment_marker] = { - .visible = true, - .named = true, - }, [sym_block_comment] = { .visible = true, .named = true, @@ -2326,15 +2343,19 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, + [aux_sym_macro_rules_repeat1] = { + .visible = false, + .named = false, + }, [aux_sym_macro_definition_repeat1] = { .visible = false, .named = false, }, - [aux_sym_token_tree_pattern_repeat1] = { + [aux_sym_macro_def_args_repeat1] = { .visible = false, .named = false, }, - [aux_sym_token_tree_repeat1] = { + [aux_sym_macro_def_body_repeat1] = { .visible = false, .named = false, }, @@ -2623,183 +2644,186 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [97] = {.index = 110, .length = 3}, [98] = {.index = 113, .length = 1}, [99] = {.index = 114, .length = 1}, - [100] = {.index = 115, .length = 2}, - [101] = {.index = 3, .length = 1}, - [102] = {.index = 117, .length = 1}, - [103] = {.index = 118, .length = 2}, - [104] = {.index = 120, .length = 1}, - [105] = {.index = 120, .length = 1}, - [106] = {.index = 121, .length = 3}, - [107] = {.index = 124, .length = 1}, - [108] = {.index = 121, .length = 3}, - [109] = {.index = 18, .length = 1}, - [110] = {.index = 125, .length = 2}, - [111] = {.index = 127, .length = 3}, - [112] = {.index = 130, .length = 3}, - [113] = {.index = 133, .length = 4}, - [114] = {.index = 137, .length = 3}, - [115] = {.index = 140, .length = 3}, - [116] = {.index = 143, .length = 2}, - [117] = {.index = 145, .length = 2}, - [118] = {.index = 145, .length = 2}, - [120] = {.index = 147, .length = 2}, - [121] = {.index = 149, .length = 3}, - [122] = {.index = 152, .length = 3}, - [123] = {.index = 147, .length = 2}, - [124] = {.index = 149, .length = 3}, - [125] = {.index = 155, .length = 2}, - [127] = {.index = 157, .length = 3}, - [128] = {.index = 160, .length = 3}, - [129] = {.index = 163, .length = 4}, - [130] = {.index = 125, .length = 2}, - [131] = {.index = 167, .length = 3}, - [132] = {.index = 170, .length = 2}, - [133] = {.index = 172, .length = 3}, - [134] = {.index = 175, .length = 2}, - [135] = {.index = 177, .length = 2}, - [136] = {.index = 179, .length = 3}, - [137] = {.index = 182, .length = 3}, - [138] = {.index = 185, .length = 2}, - [139] = {.index = 185, .length = 2}, - [140] = {.index = 187, .length = 2}, - [141] = {.index = 189, .length = 3}, - [142] = {.index = 192, .length = 2}, - [143] = {.index = 194, .length = 2}, - [144] = {.index = 196, .length = 1}, - [145] = {.index = 197, .length = 2}, - [146] = {.index = 199, .length = 1}, - [147] = {.index = 200, .length = 2}, - [148] = {.index = 108, .length = 1}, - [149] = {.index = 202, .length = 2}, - [150] = {.index = 204, .length = 2}, - [151] = {.index = 206, .length = 1}, - [152] = {.index = 207, .length = 2}, - [153] = {.index = 209, .length = 3}, - [154] = {.index = 209, .length = 3}, - [155] = {.index = 212, .length = 2}, - [156] = {.index = 214, .length = 4}, - [157] = {.index = 218, .length = 3}, - [158] = {.index = 221, .length = 4}, - [159] = {.index = 225, .length = 2}, - [160] = {.index = 227, .length = 3}, - [161] = {.index = 225, .length = 2}, - [162] = {.index = 227, .length = 3}, - [163] = {.index = 230, .length = 3}, - [164] = {.index = 233, .length = 3}, - [165] = {.index = 236, .length = 4}, - [166] = {.index = 233, .length = 3}, - [167] = {.index = 236, .length = 4}, - [168] = {.index = 230, .length = 3}, - [169] = {.index = 240, .length = 2}, - [170] = {.index = 242, .length = 2}, - [171] = {.index = 244, .length = 2}, - [172] = {.index = 246, .length = 2}, - [173] = {.index = 248, .length = 1}, - [174] = {.index = 249, .length = 2}, - [175] = {.index = 251, .length = 3}, - [176] = {.index = 254, .length = 2}, - [177] = {.index = 256, .length = 2}, - [178] = {.index = 200, .length = 2}, - [179] = {.index = 258, .length = 4}, - [180] = {.index = 262, .length = 3}, - [181] = {.index = 265, .length = 3}, - [182] = {.index = 268, .length = 3}, - [183] = {.index = 271, .length = 3}, - [184] = {.index = 274, .length = 4}, - [185] = {.index = 278, .length = 2}, - [186] = {.index = 280, .length = 2}, - [187] = {.index = 280, .length = 2}, - [188] = {.index = 282, .length = 3}, - [189] = {.index = 285, .length = 4}, - [190] = {.index = 289, .length = 3}, - [191] = {.index = 249, .length = 2}, - [192] = {.index = 292, .length = 2}, - [193] = {.index = 294, .length = 3}, - [194] = {.index = 297, .length = 3}, - [195] = {.index = 300, .length = 2}, - [196] = {.index = 302, .length = 3}, - [197] = {.index = 200, .length = 2}, - [198] = {.index = 305, .length = 3}, - [199] = {.index = 308, .length = 2}, - [200] = {.index = 310, .length = 2}, - [201] = {.index = 312, .length = 3}, - [202] = {.index = 315, .length = 3}, - [203] = {.index = 318, .length = 2}, - [204] = {.index = 320, .length = 4}, - [205] = {.index = 324, .length = 5}, - [206] = {.index = 329, .length = 4}, - [207] = {.index = 333, .length = 3}, - [208] = {.index = 333, .length = 3}, - [209] = {.index = 336, .length = 3}, - [210] = {.index = 339, .length = 4}, - [211] = {.index = 336, .length = 3}, - [212] = {.index = 339, .length = 4}, - [213] = {.index = 343, .length = 4}, - [214] = {.index = 343, .length = 4}, - [215] = {.index = 347, .length = 3}, - [216] = {.index = 350, .length = 3}, - [217] = {.index = 353, .length = 3}, - [218] = {.index = 356, .length = 2}, - [219] = {.index = 358, .length = 2}, - [220] = {.index = 125, .length = 2}, - [221] = {.index = 360, .length = 2}, - [222] = {.index = 362, .length = 3}, - [223] = {.index = 360, .length = 2}, - [224] = {.index = 362, .length = 3}, - [225] = {.index = 365, .length = 3}, - [226] = {.index = 368, .length = 4}, - [227] = {.index = 365, .length = 3}, - [228] = {.index = 368, .length = 4}, - [229] = {.index = 372, .length = 4}, - [230] = {.index = 376, .length = 4}, - [231] = {.index = 380, .length = 3}, - [232] = {.index = 383, .length = 4}, - [233] = {.index = 387, .length = 3}, - [234] = {.index = 390, .length = 3}, - [235] = {.index = 393, .length = 3}, - [236] = {.index = 396, .length = 4}, - [237] = {.index = 400, .length = 2}, - [238] = {.index = 402, .length = 3}, - [239] = {.index = 405, .length = 4}, - [240] = {.index = 409, .length = 3}, - [241] = {.index = 412, .length = 3}, - [242] = {.index = 415, .length = 2}, - [243] = {.index = 417, .length = 3}, - [244] = {.index = 420, .length = 5}, - [245] = {.index = 425, .length = 4}, - [246] = {.index = 425, .length = 4}, - [247] = {.index = 429, .length = 3}, - [248] = {.index = 432, .length = 3}, - [249] = {.index = 435, .length = 3}, - [250] = {.index = 438, .length = 3}, - [251] = {.index = 441, .length = 2}, - [252] = {.index = 443, .length = 3}, - [253] = {.index = 443, .length = 3}, - [254] = {.index = 446, .length = 3}, - [255] = {.index = 449, .length = 4}, - [256] = {.index = 446, .length = 3}, - [257] = {.index = 449, .length = 4}, - [258] = {.index = 453, .length = 4}, - [259] = {.index = 453, .length = 4}, - [260] = {.index = 457, .length = 4}, - [261] = {.index = 461, .length = 5}, - [262] = {.index = 466, .length = 4}, - [263] = {.index = 470, .length = 2}, - [264] = {.index = 472, .length = 4}, - [265] = {.index = 476, .length = 4}, - [266] = {.index = 480, .length = 3}, - [267] = {.index = 483, .length = 4}, - [268] = {.index = 487, .length = 4}, - [269] = {.index = 491, .length = 3}, - [270] = {.index = 494, .length = 4}, - [271] = {.index = 494, .length = 4}, - [272] = {.index = 498, .length = 5}, - [273] = {.index = 503, .length = 4}, - [274] = {.index = 507, .length = 5}, - [275] = {.index = 512, .length = 4}, - [276] = {.index = 516, .length = 4}, - [277] = {.index = 520, .length = 3}, - [278] = {.index = 523, .length = 5}, + [100] = {.index = 115, .length = 1}, + [101] = {.index = 116, .length = 2}, + [102] = {.index = 3, .length = 1}, + [103] = {.index = 118, .length = 1}, + [104] = {.index = 119, .length = 2}, + [105] = {.index = 121, .length = 1}, + [106] = {.index = 121, .length = 1}, + [107] = {.index = 122, .length = 3}, + [108] = {.index = 125, .length = 1}, + [109] = {.index = 122, .length = 3}, + [110] = {.index = 18, .length = 1}, + [111] = {.index = 126, .length = 2}, + [112] = {.index = 128, .length = 3}, + [113] = {.index = 131, .length = 3}, + [114] = {.index = 134, .length = 4}, + [115] = {.index = 138, .length = 3}, + [116] = {.index = 141, .length = 3}, + [117] = {.index = 144, .length = 2}, + [118] = {.index = 146, .length = 2}, + [119] = {.index = 146, .length = 2}, + [121] = {.index = 148, .length = 2}, + [122] = {.index = 150, .length = 3}, + [123] = {.index = 153, .length = 3}, + [124] = {.index = 148, .length = 2}, + [125] = {.index = 150, .length = 3}, + [126] = {.index = 156, .length = 2}, + [128] = {.index = 158, .length = 3}, + [129] = {.index = 161, .length = 3}, + [130] = {.index = 164, .length = 4}, + [131] = {.index = 126, .length = 2}, + [132] = {.index = 168, .length = 3}, + [133] = {.index = 171, .length = 2}, + [134] = {.index = 173, .length = 3}, + [135] = {.index = 176, .length = 2}, + [136] = {.index = 178, .length = 2}, + [137] = {.index = 180, .length = 3}, + [138] = {.index = 183, .length = 3}, + [139] = {.index = 186, .length = 2}, + [140] = {.index = 186, .length = 2}, + [141] = {.index = 188, .length = 2}, + [142] = {.index = 190, .length = 3}, + [143] = {.index = 108, .length = 1}, + [144] = {.index = 193, .length = 2}, + [145] = {.index = 195, .length = 2}, + [146] = {.index = 197, .length = 1}, + [147] = {.index = 198, .length = 2}, + [148] = {.index = 200, .length = 1}, + [149] = {.index = 201, .length = 2}, + [150] = {.index = 203, .length = 1}, + [151] = {.index = 201, .length = 2}, + [152] = {.index = 108, .length = 1}, + [153] = {.index = 204, .length = 2}, + [154] = {.index = 206, .length = 2}, + [155] = {.index = 208, .length = 1}, + [156] = {.index = 209, .length = 2}, + [157] = {.index = 211, .length = 3}, + [158] = {.index = 211, .length = 3}, + [159] = {.index = 214, .length = 2}, + [160] = {.index = 216, .length = 4}, + [161] = {.index = 220, .length = 3}, + [162] = {.index = 223, .length = 4}, + [163] = {.index = 227, .length = 2}, + [164] = {.index = 229, .length = 3}, + [165] = {.index = 227, .length = 2}, + [166] = {.index = 229, .length = 3}, + [167] = {.index = 232, .length = 3}, + [168] = {.index = 235, .length = 3}, + [169] = {.index = 238, .length = 4}, + [170] = {.index = 235, .length = 3}, + [171] = {.index = 238, .length = 4}, + [172] = {.index = 232, .length = 3}, + [173] = {.index = 242, .length = 2}, + [174] = {.index = 244, .length = 2}, + [175] = {.index = 246, .length = 2}, + [176] = {.index = 248, .length = 2}, + [177] = {.index = 250, .length = 1}, + [178] = {.index = 251, .length = 2}, + [179] = {.index = 253, .length = 3}, + [180] = {.index = 256, .length = 2}, + [181] = {.index = 258, .length = 2}, + [182] = {.index = 201, .length = 2}, + [183] = {.index = 260, .length = 4}, + [184] = {.index = 264, .length = 3}, + [185] = {.index = 267, .length = 3}, + [186] = {.index = 270, .length = 3}, + [187] = {.index = 273, .length = 3}, + [188] = {.index = 276, .length = 4}, + [189] = {.index = 280, .length = 2}, + [190] = {.index = 282, .length = 2}, + [191] = {.index = 282, .length = 2}, + [192] = {.index = 284, .length = 3}, + [193] = {.index = 287, .length = 4}, + [194] = {.index = 291, .length = 3}, + [195] = {.index = 251, .length = 2}, + [196] = {.index = 294, .length = 2}, + [197] = {.index = 296, .length = 3}, + [198] = {.index = 299, .length = 3}, + [199] = {.index = 302, .length = 2}, + [200] = {.index = 304, .length = 3}, + [201] = {.index = 307, .length = 3}, + [202] = {.index = 310, .length = 2}, + [203] = {.index = 312, .length = 2}, + [204] = {.index = 314, .length = 3}, + [205] = {.index = 317, .length = 3}, + [206] = {.index = 320, .length = 2}, + [207] = {.index = 322, .length = 4}, + [208] = {.index = 326, .length = 5}, + [209] = {.index = 331, .length = 4}, + [210] = {.index = 335, .length = 3}, + [211] = {.index = 335, .length = 3}, + [212] = {.index = 338, .length = 3}, + [213] = {.index = 341, .length = 4}, + [214] = {.index = 338, .length = 3}, + [215] = {.index = 341, .length = 4}, + [216] = {.index = 345, .length = 4}, + [217] = {.index = 345, .length = 4}, + [218] = {.index = 349, .length = 3}, + [219] = {.index = 352, .length = 3}, + [220] = {.index = 355, .length = 3}, + [221] = {.index = 358, .length = 2}, + [222] = {.index = 360, .length = 2}, + [223] = {.index = 126, .length = 2}, + [224] = {.index = 362, .length = 2}, + [225] = {.index = 364, .length = 3}, + [226] = {.index = 362, .length = 2}, + [227] = {.index = 364, .length = 3}, + [228] = {.index = 367, .length = 3}, + [229] = {.index = 370, .length = 4}, + [230] = {.index = 367, .length = 3}, + [231] = {.index = 370, .length = 4}, + [232] = {.index = 374, .length = 4}, + [233] = {.index = 378, .length = 4}, + [234] = {.index = 382, .length = 3}, + [235] = {.index = 385, .length = 4}, + [236] = {.index = 389, .length = 3}, + [237] = {.index = 392, .length = 3}, + [238] = {.index = 395, .length = 3}, + [239] = {.index = 398, .length = 4}, + [240] = {.index = 402, .length = 2}, + [241] = {.index = 404, .length = 3}, + [242] = {.index = 407, .length = 4}, + [243] = {.index = 411, .length = 3}, + [244] = {.index = 414, .length = 3}, + [245] = {.index = 417, .length = 2}, + [246] = {.index = 419, .length = 3}, + [247] = {.index = 422, .length = 5}, + [248] = {.index = 427, .length = 4}, + [249] = {.index = 427, .length = 4}, + [250] = {.index = 431, .length = 3}, + [251] = {.index = 434, .length = 3}, + [252] = {.index = 437, .length = 3}, + [253] = {.index = 440, .length = 3}, + [254] = {.index = 443, .length = 2}, + [255] = {.index = 445, .length = 3}, + [256] = {.index = 445, .length = 3}, + [257] = {.index = 448, .length = 3}, + [258] = {.index = 451, .length = 4}, + [259] = {.index = 448, .length = 3}, + [260] = {.index = 451, .length = 4}, + [261] = {.index = 455, .length = 4}, + [262] = {.index = 455, .length = 4}, + [263] = {.index = 459, .length = 4}, + [264] = {.index = 463, .length = 5}, + [265] = {.index = 468, .length = 4}, + [266] = {.index = 472, .length = 2}, + [267] = {.index = 474, .length = 4}, + [268] = {.index = 478, .length = 4}, + [269] = {.index = 482, .length = 3}, + [270] = {.index = 485, .length = 4}, + [271] = {.index = 489, .length = 4}, + [272] = {.index = 493, .length = 3}, + [273] = {.index = 496, .length = 4}, + [274] = {.index = 496, .length = 4}, + [275] = {.index = 500, .length = 5}, + [276] = {.index = 505, .length = 4}, + [277] = {.index = 509, .length = 5}, + [278] = {.index = 514, .length = 4}, + [279] = {.index = 518, .length = 4}, + [280] = {.index = 522, .length = 3}, + [281] = {.index = 525, .length = 5}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -2985,555 +3009,559 @@ static const TSFieldMapEntry ts_field_map_entries[] = { [114] = {field_length, 3}, [115] = + {field_left, 1}, + [116] = {field_pattern, 1}, {field_type, 3}, - [117] = - {field_type, 3}, [118] = + {field_type, 3}, + [119] = {field_parameters, 1}, {field_return_type, 3}, - [120] = - {field_trait, 3}, [121] = + {field_trait, 3}, + [122] = {field_parameters, 1}, {field_return_type, 3}, {field_trait, 0}, - [124] = - {field_parameters, 3}, [125] = + {field_parameters, 3}, + [126] = {field_name, 1}, {field_type, 3}, - [127] = + [128] = {field_body, 4}, {field_name, 1}, {field_type_parameters, 2}, - [130] = + [131] = {field_name, 1}, {field_parameters, 3}, {field_type_parameters, 2}, - [133] = + [134] = {field_body, 4}, {field_name, 1}, {field_parameters, 3}, {field_type_parameters, 2}, - [137] = + [138] = {field_body, 4}, {field_name, 1}, {field_parameters, 2}, - [140] = + [141] = {field_body, 4}, {field_pattern, 1}, {field_value, 3}, - [143] = + [144] = {field_pattern, 1}, {field_value, 3}, - [145] = + [146] = {field_default_type, 2}, {field_name, 0}, - [147] = + [148] = {field_trait, 1}, {field_type, 3}, - [149] = + [150] = {field_body, 4}, {field_trait, 1}, {field_type, 3}, - [152] = + [153] = {field_body, 4}, {field_type, 2}, {field_type_parameters, 1}, - [155] = + [156] = {field_alternative, 3}, {field_pattern, 1}, - [157] = + [158] = {field_body, 4}, {field_parameters, 1}, {field_return_type, 3}, - [160] = + [161] = {field_body, 4}, {field_bounds, 2}, {field_name, 1}, - [163] = + [164] = {field_body, 4}, {field_bounds, 3}, {field_name, 1}, {field_type_parameters, 2}, - [167] = + [168] = {field_bounds, 3}, {field_name, 1}, {field_type_parameters, 2}, - [170] = + [171] = {field_type, 3}, {field_type_parameters, 2}, - [172] = + [173] = {field_body, 4}, {field_type, 3}, {field_type_parameters, 2}, - [175] = + [176] = {field_body, 4}, {field_type, 2}, - [177] = + [178] = {field_body, 4}, {field_name, 2}, - [179] = + [180] = {field_body, 4}, {field_bounds, 3}, {field_name, 2}, - [182] = + [183] = {field_body, 4}, {field_name, 2}, {field_type_parameters, 3}, - [185] = + [186] = {field_field, 0}, {field_value, 2}, - [187] = + [188] = {field_name, 2}, {field_parameters, 3}, - [189] = + [190] = {field_body, 4}, {field_name, 2}, {field_parameters, 3}, - [192] = + [193] = {field_name, 2}, {field_type_parameters, 3}, - [194] = + [195] = {field_body, 4}, {field_name, 3}, - [196] = - {field_name, 3}, [197] = + {field_name, 3}, + [198] = {field_body, 4}, {field_condition, 3}, - [199] = - {field_length, 4}, [200] = + {field_length, 4}, + [201] = {field_name, 0}, {field_type, 2}, - [202] = + [203] = + {field_right, 1}, + [204] = {field_name, 0}, {field_pattern, 2}, - [204] = + [206] = {field_element, 1}, {field_length, 3}, - [206] = + [208] = {field_pattern, 0}, - [207] = + [209] = {field_parameters, 2}, {field_return_type, 4}, - [209] = + [211] = {field_parameters, 2}, {field_return_type, 4}, {field_trait, 1}, - [212] = + [214] = {field_name, 0}, {field_value, 2}, - [214] = + [216] = {field_body, 5}, {field_name, 1}, {field_parameters, 3}, {field_type_parameters, 2}, - [218] = + [220] = {field_name, 1}, {field_parameters, 2}, {field_return_type, 4}, - [221] = + [223] = {field_body, 5}, {field_name, 1}, {field_parameters, 2}, {field_return_type, 4}, - [225] = + [227] = {field_trait, 2}, {field_type, 4}, - [227] = + [229] = {field_body, 5}, {field_trait, 2}, {field_type, 4}, - [230] = + [232] = {field_body, 5}, {field_trait, 1}, {field_type, 3}, - [233] = + [235] = {field_trait, 2}, {field_type, 4}, {field_type_parameters, 1}, - [236] = + [238] = {field_body, 5}, {field_trait, 2}, {field_type, 4}, {field_type_parameters, 1}, - [240] = + [242] = {field_pattern, 2}, {field_type, 4}, - [242] = + [244] = {field_pattern, 2}, {field_value, 4}, - [244] = + [246] = {field_alternative, 4}, {field_pattern, 2}, - [246] = + [248] = {field_pattern, 0}, {field_value, 2}, - [248] = + [250] = {field_condition, 2}, - [249] = + [251] = {field_name, 2}, {field_type, 4}, - [251] = + [253] = {field_body, 5}, {field_parameters, 2}, {field_return_type, 4}, - [254] = + [256] = {field_type, 1}, {field_type, 2, .inherited = true}, - [256] = + [258] = {field_type, 0, .inherited = true}, {field_type, 1, .inherited = true}, - [258] = + [260] = {field_body, 5}, {field_bounds, 3}, {field_name, 1}, {field_type_parameters, 2}, - [262] = + [264] = {field_name, 1}, {field_type, 4}, {field_type_parameters, 2}, - [265] = + [267] = {field_body, 5}, {field_type, 3}, {field_type_parameters, 2}, - [268] = + [270] = {field_body, 5}, {field_bounds, 3}, {field_name, 2}, - [271] = + [273] = {field_body, 5}, {field_name, 2}, {field_type_parameters, 3}, - [274] = + [276] = {field_body, 5}, {field_bounds, 4}, {field_name, 2}, {field_type_parameters, 3}, - [278] = + [280] = {field_alias, 4}, {field_name, 2}, - [280] = + [282] = {field_field, 1}, {field_value, 3}, - [282] = + [284] = {field_name, 2}, {field_parameters, 4}, {field_type_parameters, 3}, - [285] = + [287] = {field_body, 5}, {field_name, 2}, {field_parameters, 4}, {field_type_parameters, 3}, - [289] = + [291] = {field_body, 5}, {field_name, 2}, {field_parameters, 3}, - [292] = + [294] = {field_body, 5}, {field_name, 3}, - [294] = + [296] = {field_body, 5}, {field_bounds, 4}, {field_name, 3}, - [297] = + [299] = {field_body, 5}, {field_name, 3}, {field_type_parameters, 4}, - [300] = + [302] = {field_name, 3}, {field_parameters, 4}, - [302] = + [304] = {field_body, 5}, {field_name, 3}, {field_parameters, 4}, - [305] = + [307] = {field_name, 0}, {field_type, 3}, {field_type_arguments, 1}, - [308] = + [310] = {field_name, 1}, {field_pattern, 3}, - [310] = + [312] = {field_parameters, 3}, {field_return_type, 5}, - [312] = + [314] = {field_name, 1}, {field_type, 3}, {field_value, 5}, - [315] = + [317] = {field_body, 1}, {field_name, 0}, {field_value, 3}, - [318] = + [320] = {field_name, 1}, {field_value, 3}, - [320] = + [322] = {field_name, 1}, {field_parameters, 3}, {field_return_type, 5}, {field_type_parameters, 2}, - [324] = + [326] = {field_body, 6}, {field_name, 1}, {field_parameters, 3}, {field_return_type, 5}, {field_type_parameters, 2}, - [329] = + [331] = {field_body, 6}, {field_name, 1}, {field_parameters, 2}, {field_return_type, 4}, - [333] = + [335] = {field_body, 6}, {field_trait, 2}, {field_type, 4}, - [336] = + [338] = {field_trait, 3}, {field_type, 5}, {field_type_parameters, 1}, - [339] = + [341] = {field_body, 6}, {field_trait, 3}, {field_type, 5}, {field_type_parameters, 1}, - [343] = + [345] = {field_body, 6}, {field_trait, 2}, {field_type, 4}, {field_type_parameters, 1}, - [347] = + [349] = {field_pattern, 1}, {field_type, 3}, {field_value, 5}, - [350] = + [352] = {field_alternative, 5}, {field_pattern, 1}, {field_type, 3}, - [353] = + [355] = {field_alternative, 5}, {field_pattern, 1}, {field_value, 3}, - [356] = + [358] = {field_name, 3}, {field_type, 5}, - [358] = + [360] = {field_type, 2}, {field_type, 3, .inherited = true}, - [360] = + [362] = {field_trait, 3}, {field_type, 5}, - [362] = + [364] = {field_body, 6}, {field_trait, 3}, {field_type, 5}, - [365] = + [367] = {field_trait, 3}, {field_type, 5}, {field_type_parameters, 2}, - [368] = + [370] = {field_body, 6}, {field_trait, 3}, {field_type, 5}, {field_type_parameters, 2}, - [372] = + [374] = {field_body, 6}, {field_bounds, 4}, {field_name, 2}, {field_type_parameters, 3}, - [376] = + [378] = {field_body, 6}, {field_name, 2}, {field_parameters, 4}, {field_type_parameters, 3}, - [380] = + [382] = {field_name, 2}, {field_parameters, 3}, {field_return_type, 5}, - [383] = + [385] = {field_body, 6}, {field_name, 2}, {field_parameters, 3}, {field_return_type, 5}, - [387] = + [389] = {field_name, 2}, {field_type, 5}, {field_type_parameters, 3}, - [390] = + [392] = {field_body, 6}, {field_bounds, 4}, {field_name, 3}, - [393] = + [395] = {field_body, 6}, {field_name, 3}, {field_type_parameters, 4}, - [396] = + [398] = {field_body, 6}, {field_bounds, 5}, {field_name, 3}, {field_type_parameters, 4}, - [400] = + [402] = {field_alias, 5}, {field_name, 3}, - [402] = + [404] = {field_name, 3}, {field_parameters, 5}, {field_type_parameters, 4}, - [405] = + [407] = {field_body, 6}, {field_name, 3}, {field_parameters, 5}, {field_type_parameters, 4}, - [409] = + [411] = {field_body, 6}, {field_name, 3}, {field_parameters, 4}, - [412] = + [414] = {field_body, 6}, {field_pattern, 3}, {field_value, 5}, - [415] = + [417] = {field_name, 2}, {field_pattern, 4}, - [417] = + [419] = {field_body, 2}, {field_name, 1}, {field_value, 4}, - [420] = + [422] = {field_body, 7}, {field_name, 1}, {field_parameters, 3}, {field_return_type, 5}, {field_type_parameters, 2}, - [425] = + [427] = {field_body, 7}, {field_trait, 3}, {field_type, 5}, {field_type_parameters, 1}, - [429] = + [431] = {field_pattern, 2}, {field_type, 4}, {field_value, 6}, - [432] = + [434] = {field_alternative, 6}, {field_pattern, 2}, {field_type, 4}, - [435] = + [437] = {field_alternative, 6}, {field_pattern, 2}, {field_value, 4}, - [438] = + [440] = {field_name, 2}, {field_type, 4}, {field_value, 6}, - [441] = + [443] = {field_type, 3}, {field_type, 4, .inherited = true}, - [443] = + [445] = {field_body, 7}, {field_trait, 3}, {field_type, 5}, - [446] = + [448] = {field_trait, 4}, {field_type, 6}, {field_type_parameters, 2}, - [449] = + [451] = {field_body, 7}, {field_trait, 4}, {field_type, 6}, {field_type_parameters, 2}, - [453] = + [455] = {field_body, 7}, {field_trait, 3}, {field_type, 5}, {field_type_parameters, 2}, - [457] = + [459] = {field_name, 2}, {field_parameters, 4}, {field_return_type, 6}, {field_type_parameters, 3}, - [461] = + [463] = {field_body, 7}, {field_name, 2}, {field_parameters, 4}, {field_return_type, 6}, {field_type_parameters, 3}, - [466] = + [468] = {field_body, 7}, {field_name, 2}, {field_parameters, 3}, {field_return_type, 5}, - [470] = + [472] = {field_name, 4}, {field_type, 6}, - [472] = + [474] = {field_body, 7}, {field_bounds, 5}, {field_name, 3}, {field_type_parameters, 4}, - [476] = + [478] = {field_body, 7}, {field_name, 3}, {field_parameters, 5}, {field_type_parameters, 4}, - [480] = + [482] = {field_name, 3}, {field_parameters, 4}, {field_return_type, 6}, - [483] = + [485] = {field_body, 7}, {field_name, 3}, {field_parameters, 4}, {field_return_type, 6}, - [487] = + [489] = {field_alternative, 7}, {field_pattern, 1}, {field_type, 3}, {field_value, 5}, - [491] = + [493] = {field_name, 3}, {field_type, 5}, {field_value, 7}, - [494] = + [496] = {field_body, 8}, {field_trait, 4}, {field_type, 6}, {field_type_parameters, 2}, - [498] = + [500] = {field_body, 8}, {field_name, 2}, {field_parameters, 4}, {field_return_type, 6}, {field_type_parameters, 3}, - [503] = + [505] = {field_name, 3}, {field_parameters, 5}, {field_return_type, 7}, {field_type_parameters, 4}, - [507] = + [509] = {field_body, 8}, {field_name, 3}, {field_parameters, 5}, {field_return_type, 7}, {field_type_parameters, 4}, - [512] = + [514] = {field_body, 8}, {field_name, 3}, {field_parameters, 4}, {field_return_type, 6}, - [516] = + [518] = {field_alternative, 8}, {field_pattern, 2}, {field_type, 4}, {field_value, 6}, - [520] = + [522] = {field_name, 4}, {field_type, 6}, {field_value, 8}, - [523] = + [525] = {field_body, 9}, {field_name, 3}, {field_parameters, 5}, @@ -3660,39 +3688,36 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [95] = { [2] = alias_sym_type_identifier, }, - [101] = { + [102] = { [1] = alias_sym_shorthand_field_identifier, }, - [104] = { + [105] = { [3] = alias_sym_type_identifier, }, - [106] = { + [107] = { [0] = alias_sym_type_identifier, }, - [109] = { + [110] = { [0] = sym_identifier, }, - [111] = { + [112] = { [1] = alias_sym_type_identifier, }, - [117] = { + [118] = { [0] = alias_sym_type_identifier, }, - [119] = { + [120] = { [2] = alias_sym_type_identifier, }, - [120] = { + [121] = { [1] = alias_sym_type_identifier, }, - [121] = { + [122] = { [1] = alias_sym_type_identifier, }, - [126] = { + [127] = { [3] = sym_identifier, }, - [128] = { - [1] = alias_sym_type_identifier, - }, [129] = { [1] = alias_sym_type_identifier, }, @@ -3702,8 +3727,8 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [131] = { [1] = alias_sym_type_identifier, }, - [135] = { - [2] = alias_sym_type_identifier, + [132] = { + [1] = alias_sym_type_identifier, }, [136] = { [2] = alias_sym_type_identifier, @@ -3711,145 +3736,151 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [137] = { [2] = alias_sym_type_identifier, }, - [139] = { + [138] = { + [2] = alias_sym_type_identifier, + }, + [140] = { [0] = alias_sym_field_identifier, }, - [142] = { + [143] = { + [2] = sym_identifier, + }, + [144] = { [2] = alias_sym_type_identifier, }, - [143] = { + [145] = { [3] = alias_sym_type_identifier, }, - [147] = { + [151] = { [0] = alias_sym_type_identifier, }, - [148] = { + [152] = { [2] = alias_sym_shorthand_field_identifier, }, - [149] = { + [153] = { [0] = alias_sym_field_identifier, }, - [153] = { + [157] = { [1] = alias_sym_type_identifier, }, - [159] = { + [163] = { [2] = alias_sym_type_identifier, }, - [160] = { + [164] = { [2] = alias_sym_type_identifier, }, - [163] = { + [167] = { [1] = alias_sym_type_identifier, }, - [164] = { + [168] = { [2] = alias_sym_type_identifier, }, - [165] = { + [169] = { [2] = alias_sym_type_identifier, }, - [178] = { + [182] = { [0] = alias_sym_field_identifier, }, - [179] = { + [183] = { [1] = alias_sym_type_identifier, }, - [180] = { + [184] = { [1] = alias_sym_type_identifier, }, - [182] = { + [186] = { [2] = alias_sym_type_identifier, }, - [183] = { + [187] = { [2] = alias_sym_type_identifier, }, - [184] = { + [188] = { [2] = alias_sym_type_identifier, }, - [187] = { + [191] = { [1] = alias_sym_field_identifier, }, - [191] = { + [195] = { [2] = alias_sym_type_identifier, }, - [192] = { + [196] = { [3] = alias_sym_type_identifier, }, - [193] = { + [197] = { [3] = alias_sym_type_identifier, }, - [194] = { + [198] = { [3] = alias_sym_type_identifier, }, - [198] = { + [201] = { [0] = alias_sym_type_identifier, }, - [199] = { + [202] = { [1] = alias_sym_field_identifier, }, - [207] = { + [210] = { [2] = alias_sym_type_identifier, }, - [209] = { + [212] = { [3] = alias_sym_type_identifier, }, - [210] = { + [213] = { [3] = alias_sym_type_identifier, }, - [213] = { + [216] = { [2] = alias_sym_type_identifier, }, - [220] = { + [223] = { [1] = alias_sym_field_identifier, }, - [221] = { - [3] = alias_sym_type_identifier, - }, - [222] = { + [224] = { [3] = alias_sym_type_identifier, }, [225] = { [3] = alias_sym_type_identifier, }, - [226] = { + [228] = { [3] = alias_sym_type_identifier, }, [229] = { + [3] = alias_sym_type_identifier, + }, + [232] = { [2] = alias_sym_type_identifier, }, - [233] = { + [236] = { [2] = alias_sym_type_identifier, }, - [234] = { + [237] = { [3] = alias_sym_type_identifier, }, - [235] = { + [238] = { [3] = alias_sym_type_identifier, }, - [236] = { + [239] = { [3] = alias_sym_type_identifier, }, - [242] = { + [245] = { [2] = alias_sym_field_identifier, }, - [245] = { + [248] = { [3] = alias_sym_type_identifier, }, - [252] = { + [255] = { [3] = alias_sym_type_identifier, }, - [254] = { + [257] = { [4] = alias_sym_type_identifier, }, - [255] = { + [258] = { [4] = alias_sym_type_identifier, }, - [258] = { + [261] = { [3] = alias_sym_type_identifier, }, - [264] = { + [267] = { [3] = alias_sym_type_identifier, }, - [270] = { + [273] = { [4] = alias_sym_type_identifier, }, }; @@ -3872,164 +3903,164 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4] = 4, [5] = 5, [6] = 6, - [7] = 7, - [8] = 8, - [9] = 3, - [10] = 2, - [11] = 5, - [12] = 6, - [13] = 8, - [14] = 3, - [15] = 2, - [16] = 5, + [7] = 3, + [8] = 3, + [9] = 9, + [10] = 6, + [11] = 3, + [12] = 12, + [13] = 2, + [14] = 12, + [15] = 6, + [16] = 2, [17] = 6, - [18] = 3, - [19] = 2, - [20] = 5, - [21] = 6, - [22] = 3, - [23] = 2, - [24] = 5, + [18] = 18, + [19] = 6, + [20] = 2, + [21] = 2, + [22] = 12, + [23] = 6, + [24] = 12, [25] = 6, [26] = 3, - [27] = 2, - [28] = 5, - [29] = 6, - [30] = 3, - [31] = 2, - [32] = 5, - [33] = 6, - [34] = 34, + [27] = 12, + [28] = 4, + [29] = 2, + [30] = 12, + [31] = 3, + [32] = 12, + [33] = 3, + [34] = 2, [35] = 35, [36] = 36, [37] = 37, - [38] = 38, - [39] = 38, - [40] = 36, + [38] = 36, + [39] = 39, + [40] = 40, [41] = 41, - [42] = 42, + [42] = 41, [43] = 35, - [44] = 35, - [45] = 42, - [46] = 37, - [47] = 41, - [48] = 38, - [49] = 36, - [50] = 38, + [44] = 39, + [45] = 37, + [46] = 40, + [47] = 35, + [48] = 36, + [49] = 41, + [50] = 35, [51] = 36, - [52] = 35, - [53] = 42, - [54] = 37, + [52] = 41, + [53] = 39, + [54] = 40, [55] = 36, - [56] = 36, - [57] = 38, - [58] = 36, - [59] = 37, - [60] = 38, - [61] = 36, - [62] = 38, - [63] = 38, + [56] = 41, + [57] = 41, + [58] = 37, + [59] = 40, + [60] = 41, + [61] = 37, + [62] = 36, + [63] = 36, [64] = 41, - [65] = 41, - [66] = 42, + [65] = 36, + [66] = 39, [67] = 67, [68] = 68, [69] = 69, - [70] = 68, - [71] = 69, + [70] = 70, + [71] = 71, [72] = 72, [73] = 73, - [74] = 74, - [75] = 75, - [76] = 75, - [77] = 72, - [78] = 73, - [79] = 74, - [80] = 80, + [74] = 72, + [75] = 69, + [76] = 76, + [77] = 77, + [78] = 78, + [79] = 68, + [80] = 76, [81] = 81, - [82] = 82, + [82] = 78, [83] = 83, - [84] = 84, + [84] = 77, [85] = 85, [86] = 86, [87] = 87, [88] = 88, [89] = 89, - [90] = 90, + [90] = 89, [91] = 91, - [92] = 92, - [93] = 93, - [94] = 84, - [95] = 89, + [92] = 91, + [93] = 89, + [94] = 89, + [95] = 88, [96] = 96, - [97] = 96, - [98] = 93, + [97] = 88, + [98] = 98, [99] = 99, - [100] = 100, - [101] = 101, - [102] = 85, - [103] = 86, - [104] = 87, + [100] = 96, + [101] = 98, + [102] = 102, + [103] = 88, + [104] = 99, [105] = 91, - [106] = 92, - [107] = 84, - [108] = 84, - [109] = 89, - [110] = 96, - [111] = 91, - [112] = 92, - [113] = 93, - [114] = 84, - [115] = 89, - [116] = 96, - [117] = 91, - [118] = 92, - [119] = 93, - [120] = 84, + [106] = 106, + [107] = 99, + [108] = 98, + [109] = 109, + [110] = 110, + [111] = 98, + [112] = 91, + [113] = 98, + [114] = 91, + [115] = 96, + [116] = 116, + [117] = 117, + [118] = 99, + [119] = 96, + [120] = 88, [121] = 89, - [122] = 96, - [123] = 91, - [124] = 92, - [125] = 91, - [126] = 92, - [127] = 93, - [128] = 89, - [129] = 96, - [130] = 99, - [131] = 100, - [132] = 101, - [133] = 93, - [134] = 134, - [135] = 135, - [136] = 136, - [137] = 137, - [138] = 138, - [139] = 139, + [122] = 106, + [123] = 86, + [124] = 110, + [125] = 125, + [126] = 126, + [127] = 96, + [128] = 117, + [129] = 91, + [130] = 98, + [131] = 99, + [132] = 99, + [133] = 116, + [134] = 126, + [135] = 96, + [136] = 87, + [137] = 88, + [138] = 109, + [139] = 89, [140] = 140, [141] = 141, [142] = 142, [143] = 143, [144] = 144, - [145] = 140, + [145] = 145, [146] = 146, [147] = 147, [148] = 148, - [149] = 149, - [150] = 134, + [149] = 147, + [150] = 150, [151] = 151, [152] = 152, - [153] = 153, + [153] = 148, [154] = 154, - [155] = 155, + [155] = 144, [156] = 156, [157] = 157, - [158] = 155, + [158] = 158, [159] = 159, [160] = 160, - [161] = 146, + [161] = 161, [162] = 162, - [163] = 151, - [164] = 164, + [163] = 140, + [164] = 154, [165] = 165, [166] = 166, [167] = 167, @@ -4037,91 +4068,91 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [169] = 169, [170] = 170, [171] = 171, - [172] = 170, - [173] = 156, + [172] = 172, + [173] = 173, [174] = 174, - [175] = 167, - [176] = 138, - [177] = 141, - [178] = 142, - [179] = 179, + [175] = 175, + [176] = 167, + [177] = 177, + [178] = 178, + [179] = 157, [180] = 180, [181] = 181, - [182] = 174, - [183] = 183, + [182] = 182, + [183] = 180, [184] = 184, [185] = 185, - [186] = 171, + [186] = 186, [187] = 187, - [188] = 188, - [189] = 169, - [190] = 179, - [191] = 188, - [192] = 192, - [193] = 193, - [194] = 192, + [188] = 182, + [189] = 180, + [190] = 187, + [191] = 191, + [192] = 185, + [193] = 177, + [194] = 186, [195] = 195, [196] = 196, - [197] = 197, - [198] = 193, - [199] = 195, - [200] = 196, - [201] = 169, - [202] = 170, - [203] = 187, - [204] = 174, - [205] = 170, - [206] = 174, - [207] = 169, - [208] = 137, - [209] = 209, - [210] = 210, - [211] = 211, - [212] = 212, - [213] = 209, - [214] = 212, + [197] = 180, + [198] = 198, + [199] = 184, + [200] = 172, + [201] = 201, + [202] = 195, + [203] = 165, + [204] = 185, + [205] = 205, + [206] = 206, + [207] = 175, + [208] = 195, + [209] = 185, + [210] = 196, + [211] = 156, + [212] = 181, + [213] = 195, + [214] = 166, [215] = 215, [216] = 216, - [217] = 217, + [217] = 215, [218] = 218, - [219] = 219, + [219] = 218, [220] = 220, - [221] = 218, + [221] = 221, [222] = 222, - [223] = 223, - [224] = 217, + [223] = 221, + [224] = 224, [225] = 225, - [226] = 223, - [227] = 219, - [228] = 217, - [229] = 229, - [230] = 220, - [231] = 217, - [232] = 225, - [233] = 220, - [234] = 220, - [235] = 225, - [236] = 225, - [237] = 220, - [238] = 215, - [239] = 217, - [240] = 216, - [241] = 225, - [242] = 229, - [243] = 243, - [244] = 244, - [245] = 243, - [246] = 243, - [247] = 243, - [248] = 248, - [249] = 249, + [226] = 226, + [227] = 227, + [228] = 221, + [229] = 222, + [230] = 221, + [231] = 231, + [232] = 232, + [233] = 233, + [234] = 231, + [235] = 233, + [236] = 236, + [237] = 236, + [238] = 227, + [239] = 227, + [240] = 227, + [241] = 232, + [242] = 225, + [243] = 221, + [244] = 232, + [245] = 227, + [246] = 246, + [247] = 232, + [248] = 226, + [249] = 232, [250] = 250, - [251] = 251, + [251] = 250, [252] = 252, [253] = 253, [254] = 254, - [255] = 255, - [256] = 256, + [255] = 250, + [256] = 250, [257] = 257, [258] = 258, [259] = 259, @@ -4130,227 +4161,227 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [262] = 262, [263] = 263, [264] = 264, - [265] = 264, + [265] = 265, [266] = 266, [267] = 267, [268] = 268, - [269] = 249, - [270] = 250, - [271] = 251, - [272] = 252, - [273] = 253, - [274] = 254, - [275] = 255, - [276] = 256, - [277] = 258, + [269] = 269, + [270] = 270, + [271] = 271, + [272] = 272, + [273] = 273, + [274] = 274, + [275] = 275, + [276] = 276, + [277] = 277, [278] = 278, [279] = 279, - [280] = 266, - [281] = 267, - [282] = 268, - [283] = 258, - [284] = 249, - [285] = 250, - [286] = 258, - [287] = 251, - [288] = 252, - [289] = 258, - [290] = 258, - [291] = 253, - [292] = 254, - [293] = 257, - [294] = 255, + [280] = 279, + [281] = 281, + [282] = 259, + [283] = 283, + [284] = 284, + [285] = 285, + [286] = 259, + [287] = 287, + [288] = 288, + [289] = 276, + [290] = 275, + [291] = 274, + [292] = 273, + [293] = 272, + [294] = 294, [295] = 295, - [296] = 296, - [297] = 256, - [298] = 298, - [299] = 299, - [300] = 258, - [301] = 301, - [302] = 302, - [303] = 266, - [304] = 267, - [305] = 268, - [306] = 249, - [307] = 295, + [296] = 271, + [297] = 297, + [298] = 270, + [299] = 269, + [300] = 268, + [301] = 266, + [302] = 265, + [303] = 303, + [304] = 263, + [305] = 178, + [306] = 265, + [307] = 260, [308] = 308, [309] = 309, - [310] = 257, - [311] = 311, - [312] = 268, + [310] = 310, + [311] = 279, + [312] = 312, [313] = 313, - [314] = 250, - [315] = 251, + [314] = 314, + [315] = 315, [316] = 316, [317] = 317, - [318] = 318, - [319] = 264, + [318] = 266, + [319] = 288, [320] = 320, - [321] = 321, - [322] = 322, + [321] = 268, + [322] = 269, [323] = 323, - [324] = 324, - [325] = 252, - [326] = 253, - [327] = 254, - [328] = 255, - [329] = 256, + [324] = 320, + [325] = 325, + [326] = 270, + [327] = 327, + [328] = 328, + [329] = 329, [330] = 330, [331] = 331, [332] = 332, - [333] = 333, - [334] = 334, - [335] = 335, + [333] = 332, + [334] = 271, + [335] = 272, [336] = 336, - [337] = 258, - [338] = 338, - [339] = 257, - [340] = 340, - [341] = 264, - [342] = 342, - [343] = 302, - [344] = 340, - [345] = 345, - [346] = 248, - [347] = 347, - [348] = 260, - [349] = 262, - [350] = 296, - [351] = 313, - [352] = 317, - [353] = 320, - [354] = 324, - [355] = 332, - [356] = 334, - [357] = 335, - [358] = 301, - [359] = 311, - [360] = 342, - [361] = 345, - [362] = 262, - [363] = 324, - [364] = 345, - [365] = 342, - [366] = 266, - [367] = 345, - [368] = 267, - [369] = 324, - [370] = 342, - [371] = 371, - [372] = 372, + [337] = 259, + [338] = 279, + [339] = 273, + [340] = 276, + [341] = 341, + [342] = 325, + [343] = 275, + [344] = 274, + [345] = 308, + [346] = 346, + [347] = 273, + [348] = 348, + [349] = 272, + [350] = 350, + [351] = 261, + [352] = 274, + [353] = 271, + [354] = 270, + [355] = 269, + [356] = 356, + [357] = 357, + [358] = 308, + [359] = 275, + [360] = 276, + [361] = 279, + [362] = 279, + [363] = 262, + [364] = 330, + [365] = 365, + [366] = 268, + [367] = 367, + [368] = 266, + [369] = 265, + [370] = 332, + [371] = 330, + [372] = 279, [373] = 373, - [374] = 181, - [375] = 180, - [376] = 376, - [377] = 377, - [378] = 371, - [379] = 379, - [380] = 380, + [374] = 284, + [375] = 278, + [376] = 336, + [377] = 279, + [378] = 264, + [379] = 330, + [380] = 277, [381] = 381, - [382] = 382, - [383] = 383, - [384] = 384, + [382] = 308, + [383] = 373, + [384] = 206, [385] = 385, - [386] = 386, + [386] = 283, [387] = 387, - [388] = 388, - [389] = 389, - [390] = 373, + [388] = 297, + [389] = 263, + [390] = 390, [391] = 391, - [392] = 392, - [393] = 393, + [392] = 332, + [393] = 261, [394] = 394, [395] = 395, - [396] = 373, - [397] = 397, - [398] = 371, + [396] = 303, + [397] = 263, + [398] = 398, [399] = 399, - [400] = 400, - [401] = 400, + [400] = 341, + [401] = 401, [402] = 402, - [403] = 402, - [404] = 395, - [405] = 405, - [406] = 405, - [407] = 400, - [408] = 405, - [409] = 402, - [410] = 410, - [411] = 411, - [412] = 410, - [413] = 410, - [414] = 414, - [415] = 415, - [416] = 414, - [417] = 414, + [403] = 401, + [404] = 401, + [405] = 402, + [406] = 402, + [407] = 407, + [408] = 408, + [409] = 409, + [410] = 408, + [411] = 408, + [412] = 409, + [413] = 407, + [414] = 409, + [415] = 407, + [416] = 416, + [417] = 416, [418] = 418, - [419] = 419, + [419] = 416, [420] = 420, [421] = 421, - [422] = 422, + [422] = 421, [423] = 421, - [424] = 422, - [425] = 419, - [426] = 421, - [427] = 420, - [428] = 420, - [429] = 429, - [430] = 429, + [424] = 424, + [425] = 425, + [426] = 426, + [427] = 427, + [428] = 427, + [429] = 426, + [430] = 425, [431] = 431, - [432] = 432, - [433] = 433, - [434] = 434, + [432] = 426, + [433] = 427, + [434] = 431, [435] = 435, - [436] = 433, - [437] = 434, - [438] = 434, - [439] = 433, - [440] = 435, - [441] = 435, - [442] = 442, - [443] = 443, - [444] = 443, - [445] = 443, - [446] = 244, - [447] = 338, - [448] = 347, - [449] = 261, - [450] = 323, - [451] = 336, - [452] = 379, - [453] = 394, - [454] = 381, - [455] = 385, - [456] = 456, - [457] = 377, + [436] = 435, + [437] = 437, + [438] = 438, + [439] = 439, + [440] = 440, + [441] = 441, + [442] = 439, + [443] = 440, + [444] = 439, + [445] = 440, + [446] = 441, + [447] = 441, + [448] = 448, + [449] = 448, + [450] = 448, + [451] = 451, + [452] = 224, + [453] = 253, + [454] = 257, + [455] = 258, + [456] = 252, + [457] = 254, [458] = 458, - [459] = 456, - [460] = 388, - [461] = 456, - [462] = 380, - [463] = 389, - [464] = 464, - [465] = 384, - [466] = 392, - [467] = 399, - [468] = 383, - [469] = 376, - [470] = 386, - [471] = 387, - [472] = 456, - [473] = 382, - [474] = 393, - [475] = 475, - [476] = 475, - [477] = 475, - [478] = 475, - [479] = 479, - [480] = 480, - [481] = 481, - [482] = 482, - [483] = 483, + [459] = 287, + [460] = 356, + [461] = 461, + [462] = 458, + [463] = 463, + [464] = 315, + [465] = 387, + [466] = 461, + [467] = 467, + [468] = 395, + [469] = 285, + [470] = 458, + [471] = 316, + [472] = 281, + [473] = 267, + [474] = 474, + [475] = 312, + [476] = 467, + [477] = 390, + [478] = 391, + [479] = 398, + [480] = 331, + [481] = 346, + [482] = 394, + [483] = 365, [484] = 484, - [485] = 485, + [485] = 458, [486] = 486, [487] = 487, [488] = 488, @@ -4461,7 +4492,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [593] = 593, [594] = 594, [595] = 595, - [596] = 596, + [596] = 252, [597] = 597, [598] = 598, [599] = 599, @@ -4469,7 +4500,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [601] = 601, [602] = 602, [603] = 603, - [604] = 604, + [604] = 258, [605] = 605, [606] = 606, [607] = 607, @@ -4484,7 +4515,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [616] = 616, [617] = 617, [618] = 618, - [619] = 619, + [619] = 254, [620] = 620, [621] = 621, [622] = 622, @@ -4514,7 +4545,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [646] = 646, [647] = 647, [648] = 648, - [649] = 649, + [649] = 633, [650] = 650, [651] = 651, [652] = 652, @@ -4528,20 +4559,20 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [660] = 660, [661] = 661, [662] = 662, - [663] = 347, + [663] = 253, [664] = 664, [665] = 665, [666] = 666, [667] = 667, [668] = 668, - [669] = 338, - [670] = 261, - [671] = 323, - [672] = 336, - [673] = 673, + [669] = 669, + [670] = 670, + [671] = 671, + [672] = 672, + [673] = 633, [674] = 674, [675] = 675, - [676] = 676, + [676] = 633, [677] = 677, [678] = 678, [679] = 679, @@ -4555,7 +4586,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [687] = 687, [688] = 688, [689] = 689, - [690] = 654, + [690] = 690, [691] = 691, [692] = 692, [693] = 693, @@ -4563,7 +4594,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [695] = 695, [696] = 696, [697] = 697, - [698] = 646, + [698] = 698, [699] = 699, [700] = 700, [701] = 701, @@ -4593,7 +4624,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [725] = 725, [726] = 726, [727] = 727, - [728] = 728, + [728] = 257, [729] = 729, [730] = 730, [731] = 731, @@ -4620,13 +4651,13 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [752] = 752, [753] = 753, [754] = 754, - [755] = 754, + [755] = 755, [756] = 756, - [757] = 756, + [757] = 757, [758] = 758, [759] = 759, [760] = 760, - [761] = 760, + [761] = 761, [762] = 762, [763] = 763, [764] = 764, @@ -4640,116 +4671,116 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [772] = 772, [773] = 773, [774] = 774, - [775] = 771, + [775] = 774, [776] = 776, [777] = 777, - [778] = 776, - [779] = 773, + [778] = 777, + [779] = 779, [780] = 780, - [781] = 781, + [781] = 779, [782] = 782, [783] = 783, [784] = 784, - [785] = 782, + [785] = 785, [786] = 786, [787] = 787, [788] = 788, [789] = 789, - [790] = 784, - [791] = 786, - [792] = 787, - [793] = 788, - [794] = 789, + [790] = 790, + [791] = 791, + [792] = 792, + [793] = 793, + [794] = 794, [795] = 795, - [796] = 796, + [796] = 793, [797] = 797, - [798] = 798, - [799] = 799, + [798] = 791, + [799] = 797, [800] = 800, [801] = 801, [802] = 802, [803] = 803, - [804] = 796, - [805] = 805, + [804] = 804, + [805] = 800, [806] = 806, - [807] = 807, + [807] = 804, [808] = 808, - [809] = 801, + [809] = 809, [810] = 810, - [811] = 811, - [812] = 812, - [813] = 802, + [811] = 803, + [812] = 802, + [813] = 801, [814] = 814, - [815] = 815, - [816] = 805, - [817] = 807, - [818] = 799, - [819] = 800, - [820] = 814, - [821] = 812, - [822] = 798, - [823] = 810, - [824] = 815, - [825] = 796, - [826] = 798, - [827] = 796, - [828] = 798, + [815] = 814, + [816] = 816, + [817] = 817, + [818] = 818, + [819] = 819, + [820] = 820, + [821] = 821, + [822] = 822, + [823] = 818, + [824] = 824, + [825] = 821, + [826] = 826, + [827] = 816, + [828] = 820, [829] = 829, [830] = 830, - [831] = 830, - [832] = 830, - [833] = 830, + [831] = 831, + [832] = 816, + [833] = 829, [834] = 834, - [835] = 835, - [836] = 836, - [837] = 837, - [838] = 837, + [835] = 831, + [836] = 820, + [837] = 816, + [838] = 838, [839] = 834, - [840] = 840, + [840] = 819, [841] = 841, - [842] = 842, - [843] = 843, + [842] = 841, + [843] = 824, [844] = 844, - [845] = 841, - [846] = 846, - [847] = 837, - [848] = 848, + [845] = 844, + [846] = 820, + [847] = 847, + [848] = 817, [849] = 849, - [850] = 837, - [851] = 834, - [852] = 836, - [853] = 848, - [854] = 835, - [855] = 835, + [850] = 850, + [851] = 850, + [852] = 850, + [853] = 850, + [854] = 854, + [855] = 855, [856] = 856, - [857] = 836, - [858] = 858, + [857] = 857, + [858] = 857, [859] = 859, [860] = 860, [861] = 861, - [862] = 862, - [863] = 863, - [864] = 864, - [865] = 859, - [866] = 860, - [867] = 861, + [862] = 859, + [863] = 854, + [864] = 854, + [865] = 856, + [866] = 856, + [867] = 859, [868] = 868, [869] = 869, [870] = 870, - [871] = 871, + [871] = 860, [872] = 872, [873] = 873, [874] = 874, - [875] = 875, - [876] = 876, - [877] = 877, + [875] = 857, + [876] = 869, + [877] = 859, [878] = 878, [879] = 879, [880] = 880, [881] = 881, [882] = 882, [883] = 883, - [884] = 884, + [884] = 882, [885] = 885, [886] = 886, [887] = 887, @@ -4758,167 +4789,167 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [890] = 890, [891] = 891, [892] = 892, - [893] = 863, + [893] = 893, [894] = 894, - [895] = 864, + [895] = 895, [896] = 896, - [897] = 859, + [897] = 897, [898] = 898, [899] = 899, - [900] = 860, + [900] = 900, [901] = 901, - [902] = 890, + [902] = 902, [903] = 903, [904] = 886, - [905] = 889, + [905] = 905, [906] = 906, - [907] = 861, - [908] = 656, + [907] = 907, + [908] = 908, [909] = 909, [910] = 910, - [911] = 863, - [912] = 859, - [913] = 898, + [911] = 911, + [912] = 912, + [913] = 913, [914] = 914, [915] = 915, - [916] = 916, - [917] = 868, - [918] = 869, - [919] = 880, - [920] = 870, + [916] = 902, + [917] = 889, + [918] = 918, + [919] = 914, + [920] = 878, [921] = 921, - [922] = 871, + [922] = 922, [923] = 923, - [924] = 896, - [925] = 886, - [926] = 868, - [927] = 869, - [928] = 870, - [929] = 929, - [930] = 896, - [931] = 931, - [932] = 932, + [924] = 890, + [925] = 918, + [926] = 881, + [927] = 927, + [928] = 928, + [929] = 885, + [930] = 895, + [931] = 915, + [932] = 880, [933] = 933, - [934] = 934, + [934] = 896, [935] = 935, [936] = 936, [937] = 937, - [938] = 938, + [938] = 907, [939] = 939, - [940] = 871, - [941] = 941, + [940] = 940, + [941] = 923, [942] = 942, [943] = 943, [944] = 944, - [945] = 901, + [945] = 913, [946] = 946, - [947] = 890, - [948] = 929, + [947] = 928, + [948] = 948, [949] = 949, - [950] = 935, - [951] = 914, + [950] = 901, + [951] = 951, [952] = 952, - [953] = 953, - [954] = 939, - [955] = 946, - [956] = 903, - [957] = 862, - [958] = 932, - [959] = 938, - [960] = 960, - [961] = 961, - [962] = 858, - [963] = 872, - [964] = 873, - [965] = 874, - [966] = 877, - [967] = 879, - [968] = 881, - [969] = 883, - [970] = 884, - [971] = 891, - [972] = 899, - [973] = 909, - [974] = 974, - [975] = 931, - [976] = 936, - [977] = 937, - [978] = 941, - [979] = 863, - [980] = 960, - [981] = 961, - [982] = 974, + [953] = 908, + [954] = 954, + [955] = 928, + [956] = 906, + [957] = 957, + [958] = 958, + [959] = 732, + [960] = 891, + [961] = 892, + [962] = 912, + [963] = 963, + [964] = 894, + [965] = 952, + [966] = 901, + [967] = 911, + [968] = 893, + [969] = 909, + [970] = 900, + [971] = 971, + [972] = 897, + [973] = 943, + [974] = 971, + [975] = 935, + [976] = 900, + [977] = 892, + [978] = 891, + [979] = 898, + [980] = 910, + [981] = 963, + [982] = 927, [983] = 983, - [984] = 984, + [984] = 958, [985] = 887, - [986] = 888, - [987] = 892, - [988] = 915, - [989] = 933, - [990] = 990, - [991] = 944, - [992] = 983, - [993] = 929, - [994] = 984, - [995] = 901, - [996] = 952, - [997] = 864, - [998] = 901, - [999] = 890, - [1000] = 880, - [1001] = 953, - [1002] = 1002, - [1003] = 1003, - [1004] = 1004, - [1005] = 1005, - [1006] = 1006, - [1007] = 656, - [1008] = 1008, - [1009] = 1009, + [986] = 899, + [987] = 882, + [988] = 903, + [989] = 905, + [990] = 951, + [991] = 991, + [992] = 992, + [993] = 880, + [994] = 943, + [995] = 886, + [996] = 996, + [997] = 997, + [998] = 894, + [999] = 948, + [1000] = 1000, + [1001] = 946, + [1002] = 944, + [1003] = 940, + [1004] = 939, + [1005] = 893, + [1006] = 887, + [1007] = 958, + [1008] = 933, + [1009] = 937, [1010] = 1010, [1011] = 1011, - [1012] = 1012, - [1013] = 1013, - [1014] = 1014, - [1015] = 336, - [1016] = 1016, - [1017] = 1017, - [1018] = 261, - [1019] = 180, - [1020] = 323, - [1021] = 1021, + [1012] = 880, + [1013] = 936, + [1014] = 921, + [1015] = 971, + [1016] = 894, + [1017] = 893, + [1018] = 922, + [1019] = 1019, + [1020] = 901, + [1021] = 952, [1022] = 1022, - [1023] = 181, + [1023] = 1023, [1024] = 1024, - [1025] = 397, - [1026] = 372, - [1027] = 347, + [1025] = 1025, + [1026] = 1026, + [1027] = 732, [1028] = 1028, [1029] = 1029, - [1030] = 338, + [1030] = 1030, [1031] = 1031, - [1032] = 1032, - [1033] = 1033, + [1032] = 328, + [1033] = 206, [1034] = 1034, - [1035] = 723, - [1036] = 1036, - [1037] = 504, - [1038] = 673, - [1039] = 562, - [1040] = 1040, - [1041] = 1041, - [1042] = 1042, - [1043] = 600, - [1044] = 1044, + [1035] = 1035, + [1036] = 178, + [1037] = 381, + [1038] = 257, + [1039] = 254, + [1040] = 253, + [1041] = 252, + [1042] = 258, + [1043] = 1043, + [1044] = 614, [1045] = 1045, - [1046] = 1046, + [1046] = 721, [1047] = 1047, [1048] = 1048, - [1049] = 1049, - [1050] = 244, - [1051] = 1051, + [1049] = 608, + [1050] = 1050, + [1051] = 530, [1052] = 1052, - [1053] = 1053, + [1053] = 612, [1054] = 1054, [1055] = 1055, [1056] = 1056, @@ -4927,1731 +4958,1731 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1059] = 1059, [1060] = 1060, [1061] = 1061, - [1062] = 1054, - [1063] = 429, - [1064] = 1064, - [1065] = 1002, - [1066] = 1066, - [1067] = 1067, - [1068] = 1068, - [1069] = 1069, - [1070] = 1070, - [1071] = 1071, - [1072] = 1072, - [1073] = 1073, - [1074] = 1068, - [1075] = 1075, - [1076] = 1076, - [1077] = 1077, - [1078] = 1078, - [1079] = 1054, - [1080] = 1008, + [1062] = 1062, + [1063] = 1063, + [1064] = 561, + [1065] = 511, + [1066] = 735, + [1067] = 745, + [1068] = 746, + [1069] = 747, + [1070] = 748, + [1071] = 750, + [1072] = 643, + [1073] = 754, + [1074] = 764, + [1075] = 767, + [1076] = 532, + [1077] = 769, + [1078] = 497, + [1079] = 534, + [1080] = 535, [1081] = 1081, - [1082] = 1082, - [1083] = 1083, - [1084] = 1068, + [1082] = 536, + [1083] = 498, + [1084] = 537, [1085] = 1085, - [1086] = 1086, - [1087] = 1087, - [1088] = 1088, - [1089] = 1089, - [1090] = 1090, - [1091] = 380, - [1092] = 553, - [1093] = 554, - [1094] = 555, - [1095] = 556, - [1096] = 557, - [1097] = 558, - [1098] = 559, - [1099] = 560, - [1100] = 561, - [1101] = 532, - [1102] = 563, - [1103] = 564, - [1104] = 565, - [1105] = 566, - [1106] = 567, - [1107] = 568, - [1108] = 569, - [1109] = 570, - [1110] = 571, - [1111] = 572, - [1112] = 573, - [1113] = 574, - [1114] = 575, - [1115] = 576, - [1116] = 577, - [1117] = 578, - [1118] = 579, - [1119] = 580, - [1120] = 581, - [1121] = 582, - [1122] = 583, + [1086] = 499, + [1087] = 517, + [1088] = 527, + [1089] = 585, + [1090] = 586, + [1091] = 594, + [1092] = 595, + [1093] = 605, + [1094] = 607, + [1095] = 611, + [1096] = 539, + [1097] = 541, + [1098] = 542, + [1099] = 556, + [1100] = 687, + [1101] = 695, + [1102] = 698, + [1103] = 718, + [1104] = 1104, + [1105] = 719, + [1106] = 563, + [1107] = 564, + [1108] = 565, + [1109] = 768, + [1110] = 573, + [1111] = 765, + [1112] = 576, + [1113] = 762, + [1114] = 761, + [1115] = 744, + [1116] = 578, + [1117] = 1117, + [1118] = 1118, + [1119] = 579, + [1120] = 582, + [1121] = 583, + [1122] = 1122, [1123] = 584, - [1124] = 585, - [1125] = 586, - [1126] = 587, - [1127] = 394, - [1128] = 533, - [1129] = 534, - [1130] = 388, - [1131] = 589, - [1132] = 590, - [1133] = 591, - [1134] = 592, - [1135] = 593, - [1136] = 594, - [1137] = 595, - [1138] = 596, - [1139] = 597, - [1140] = 598, + [1124] = 1124, + [1125] = 588, + [1126] = 1126, + [1127] = 613, + [1128] = 615, + [1129] = 621, + [1130] = 622, + [1131] = 625, + [1132] = 1132, + [1133] = 1133, + [1134] = 627, + [1135] = 629, + [1136] = 631, + [1137] = 628, + [1138] = 624, + [1139] = 632, + [1140] = 634, [1141] = 599, - [1142] = 537, - [1143] = 601, - [1144] = 602, - [1145] = 603, - [1146] = 604, - [1147] = 605, - [1148] = 606, - [1149] = 607, - [1150] = 608, - [1151] = 609, - [1152] = 610, - [1153] = 611, - [1154] = 612, - [1155] = 613, - [1156] = 614, - [1157] = 615, - [1158] = 616, - [1159] = 617, - [1160] = 618, - [1161] = 619, - [1162] = 620, - [1163] = 621, - [1164] = 622, - [1165] = 623, - [1166] = 624, - [1167] = 626, - [1168] = 627, - [1169] = 628, - [1170] = 629, - [1171] = 630, - [1172] = 753, - [1173] = 632, - [1174] = 633, - [1175] = 634, - [1176] = 635, - [1177] = 636, - [1178] = 637, - [1179] = 639, - [1180] = 640, - [1181] = 641, - [1182] = 642, - [1183] = 1183, - [1184] = 540, - [1185] = 588, + [1142] = 591, + [1143] = 500, + [1144] = 638, + [1145] = 502, + [1146] = 550, + [1147] = 640, + [1148] = 645, + [1149] = 549, + [1150] = 524, + [1151] = 513, + [1152] = 486, + [1153] = 648, + [1154] = 650, + [1155] = 652, + [1156] = 508, + [1157] = 496, + [1158] = 492, + [1159] = 489, + [1160] = 526, + [1161] = 656, + [1162] = 519, + [1163] = 733, + [1164] = 545, + [1165] = 547, + [1166] = 655, + [1167] = 521, + [1168] = 661, + [1169] = 522, + [1170] = 664, + [1171] = 559, + [1172] = 566, + [1173] = 568, + [1174] = 224, + [1175] = 665, + [1176] = 540, + [1177] = 610, + [1178] = 667, + [1179] = 543, + [1180] = 544, + [1181] = 669, + [1182] = 670, + [1183] = 671, + [1184] = 1184, + [1185] = 672, [1186] = 1186, - [1187] = 479, - [1188] = 625, - [1189] = 1189, - [1190] = 638, - [1191] = 643, - [1192] = 1192, + [1187] = 1187, + [1188] = 674, + [1189] = 675, + [1190] = 724, + [1191] = 546, + [1192] = 551, [1193] = 1193, - [1194] = 644, - [1195] = 399, - [1196] = 372, - [1197] = 645, - [1198] = 138, + [1194] = 1194, + [1195] = 679, + [1196] = 680, + [1197] = 552, + [1198] = 1124, [1199] = 1199, - [1200] = 647, - [1201] = 648, + [1200] = 553, + [1201] = 717, [1202] = 1202, - [1203] = 649, - [1204] = 650, - [1205] = 261, - [1206] = 384, + [1203] = 1028, + [1204] = 554, + [1205] = 555, + [1206] = 557, [1207] = 1207, [1208] = 1208, [1209] = 1209, - [1210] = 1210, - [1211] = 1211, + [1210] = 558, + [1211] = 560, [1212] = 1212, - [1213] = 1213, - [1214] = 1214, - [1215] = 1215, - [1216] = 1009, - [1217] = 1217, - [1218] = 392, - [1219] = 1219, - [1220] = 1220, - [1221] = 1221, - [1222] = 1222, - [1223] = 1223, - [1224] = 1224, - [1225] = 1225, + [1213] = 562, + [1214] = 686, + [1215] = 688, + [1216] = 567, + [1217] = 689, + [1218] = 690, + [1219] = 691, + [1220] = 569, + [1221] = 693, + [1222] = 694, + [1223] = 570, + [1224] = 696, + [1225] = 697, [1226] = 1226, - [1227] = 653, - [1228] = 1228, - [1229] = 1229, - [1230] = 1230, - [1231] = 180, - [1232] = 658, - [1233] = 659, - [1234] = 660, - [1235] = 661, - [1236] = 662, - [1237] = 1237, - [1238] = 1238, - [1239] = 385, - [1240] = 664, + [1227] = 704, + [1228] = 699, + [1229] = 692, + [1230] = 571, + [1231] = 572, + [1232] = 574, + [1233] = 700, + [1234] = 1234, + [1235] = 701, + [1236] = 575, + [1237] = 1022, + [1238] = 702, + [1239] = 703, + [1240] = 732, [1241] = 1241, - [1242] = 665, - [1243] = 1243, - [1244] = 656, - [1245] = 666, - [1246] = 667, - [1247] = 668, - [1248] = 387, - [1249] = 1249, + [1242] = 1242, + [1243] = 705, + [1244] = 706, + [1245] = 577, + [1246] = 707, + [1247] = 708, + [1248] = 580, + [1249] = 581, [1250] = 1250, - [1251] = 1251, - [1252] = 674, - [1253] = 675, - [1254] = 676, - [1255] = 677, - [1256] = 678, - [1257] = 1257, - [1258] = 679, - [1259] = 680, - [1260] = 1260, - [1261] = 1261, - [1262] = 1262, - [1263] = 681, - [1264] = 1264, - [1265] = 682, - [1266] = 683, - [1267] = 684, - [1268] = 685, - [1269] = 382, - [1270] = 687, - [1271] = 688, + [1251] = 711, + [1252] = 682, + [1253] = 681, + [1254] = 590, + [1255] = 593, + [1256] = 712, + [1257] = 713, + [1258] = 1258, + [1259] = 714, + [1260] = 715, + [1261] = 716, + [1262] = 722, + [1263] = 723, + [1264] = 598, + [1265] = 726, + [1266] = 730, + [1267] = 731, + [1268] = 1268, + [1269] = 1269, + [1270] = 1270, + [1271] = 737, [1272] = 1272, - [1273] = 1273, - [1274] = 1274, - [1275] = 1275, - [1276] = 689, - [1277] = 691, - [1278] = 1278, - [1279] = 693, - [1280] = 694, - [1281] = 695, - [1282] = 696, - [1283] = 697, - [1284] = 699, - [1285] = 700, - [1286] = 1286, - [1287] = 393, - [1288] = 1288, - [1289] = 701, - [1290] = 703, - [1291] = 1291, - [1292] = 1292, - [1293] = 1293, - [1294] = 1294, - [1295] = 1295, - [1296] = 1296, - [1297] = 1297, - [1298] = 1298, - [1299] = 1299, + [1273] = 738, + [1274] = 740, + [1275] = 600, + [1276] = 741, + [1277] = 742, + [1278] = 743, + [1279] = 1279, + [1280] = 1280, + [1281] = 1281, + [1282] = 749, + [1283] = 751, + [1284] = 1284, + [1285] = 752, + [1286] = 668, + [1287] = 666, + [1288] = 753, + [1289] = 755, + [1290] = 756, + [1291] = 759, + [1292] = 760, + [1293] = 766, + [1294] = 770, + [1295] = 601, + [1296] = 602, + [1297] = 662, + [1298] = 734, + [1299] = 1242, [1300] = 1300, - [1301] = 655, - [1302] = 338, - [1303] = 1010, - [1304] = 1304, - [1305] = 1305, - [1306] = 704, - [1307] = 705, - [1308] = 1308, + [1301] = 771, + [1302] = 772, + [1303] = 720, + [1304] = 683, + [1305] = 630, + [1306] = 659, + [1307] = 603, + [1308] = 606, [1309] = 1309, [1310] = 1310, - [1311] = 181, - [1312] = 706, - [1313] = 141, - [1314] = 707, - [1315] = 708, - [1316] = 709, - [1317] = 710, - [1318] = 711, - [1319] = 376, - [1320] = 1320, - [1321] = 377, - [1322] = 1322, - [1323] = 1323, - [1324] = 1324, - [1325] = 1325, - [1326] = 712, - [1327] = 1327, - [1328] = 713, - [1329] = 714, - [1330] = 715, - [1331] = 716, - [1332] = 717, - [1333] = 718, - [1334] = 719, - [1335] = 720, - [1336] = 379, - [1337] = 1337, - [1338] = 722, - [1339] = 724, - [1340] = 725, - [1341] = 726, - [1342] = 727, - [1343] = 728, - [1344] = 729, - [1345] = 730, - [1346] = 731, - [1347] = 732, - [1348] = 733, - [1349] = 734, - [1350] = 735, - [1351] = 736, - [1352] = 737, - [1353] = 1353, - [1354] = 738, - [1355] = 739, - [1356] = 740, - [1357] = 741, - [1358] = 742, - [1359] = 743, - [1360] = 744, - [1361] = 745, - [1362] = 746, - [1363] = 747, - [1364] = 748, - [1365] = 1365, - [1366] = 1366, - [1367] = 1367, - [1368] = 749, - [1369] = 1369, - [1370] = 750, - [1371] = 751, - [1372] = 752, - [1373] = 631, - [1374] = 702, - [1375] = 323, - [1376] = 383, - [1377] = 1377, - [1378] = 480, - [1379] = 481, - [1380] = 142, - [1381] = 381, + [1311] = 660, + [1312] = 533, + [1313] = 531, + [1314] = 623, + [1315] = 658, + [1316] = 435, + [1317] = 763, + [1318] = 758, + [1319] = 757, + [1320] = 529, + [1321] = 657, + [1322] = 626, + [1323] = 528, + [1324] = 525, + [1325] = 523, + [1326] = 520, + [1327] = 518, + [1328] = 739, + [1329] = 654, + [1330] = 516, + [1331] = 515, + [1332] = 616, + [1333] = 514, + [1334] = 736, + [1335] = 512, + [1336] = 1336, + [1337] = 1124, + [1338] = 510, + [1339] = 653, + [1340] = 1242, + [1341] = 509, + [1342] = 507, + [1343] = 506, + [1344] = 505, + [1345] = 504, + [1346] = 635, + [1347] = 636, + [1348] = 503, + [1349] = 501, + [1350] = 495, + [1351] = 1351, + [1352] = 494, + [1353] = 493, + [1354] = 491, + [1355] = 729, + [1356] = 727, + [1357] = 490, + [1358] = 488, + [1359] = 725, + [1360] = 538, + [1361] = 548, + [1362] = 647, + [1363] = 639, + [1364] = 646, + [1365] = 644, + [1366] = 587, + [1367] = 589, + [1368] = 592, + [1369] = 597, + [1370] = 685, + [1371] = 609, + [1372] = 641, + [1373] = 642, + [1374] = 617, + [1375] = 620, + [1376] = 487, + [1377] = 677, + [1378] = 637, + [1379] = 651, + [1380] = 678, + [1381] = 684, [1382] = 1382, - [1383] = 1383, + [1383] = 267, [1384] = 1384, [1385] = 1385, [1386] = 1386, - [1387] = 397, + [1387] = 1387, [1388] = 1388, [1389] = 1389, - [1390] = 503, - [1391] = 1391, - [1392] = 482, + [1390] = 166, + [1391] = 391, + [1392] = 1392, [1393] = 1393, - [1394] = 483, - [1395] = 484, - [1396] = 485, - [1397] = 486, - [1398] = 487, - [1399] = 488, - [1400] = 489, - [1401] = 490, - [1402] = 491, - [1403] = 492, - [1404] = 493, - [1405] = 494, - [1406] = 495, - [1407] = 496, - [1408] = 497, - [1409] = 498, - [1410] = 499, - [1411] = 500, - [1412] = 501, - [1413] = 386, - [1414] = 502, - [1415] = 505, - [1416] = 506, - [1417] = 507, - [1418] = 347, + [1394] = 398, + [1395] = 1395, + [1396] = 1396, + [1397] = 1397, + [1398] = 1398, + [1399] = 1399, + [1400] = 1400, + [1401] = 1401, + [1402] = 281, + [1403] = 1403, + [1404] = 1404, + [1405] = 1405, + [1406] = 394, + [1407] = 1407, + [1408] = 178, + [1409] = 1409, + [1410] = 1410, + [1411] = 167, + [1412] = 346, + [1413] = 1413, + [1414] = 1414, + [1415] = 1415, + [1416] = 257, + [1417] = 157, + [1418] = 206, [1419] = 1419, - [1420] = 508, - [1421] = 509, - [1422] = 510, - [1423] = 511, - [1424] = 512, - [1425] = 513, - [1426] = 514, - [1427] = 515, - [1428] = 516, - [1429] = 517, - [1430] = 518, - [1431] = 519, - [1432] = 520, - [1433] = 521, - [1434] = 522, - [1435] = 523, - [1436] = 524, - [1437] = 525, - [1438] = 526, + [1420] = 1420, + [1421] = 1421, + [1422] = 1422, + [1423] = 1423, + [1424] = 1424, + [1425] = 1425, + [1426] = 1426, + [1427] = 1427, + [1428] = 1428, + [1429] = 1429, + [1430] = 1430, + [1431] = 1431, + [1432] = 1432, + [1433] = 1433, + [1434] = 1434, + [1435] = 1435, + [1436] = 254, + [1437] = 156, + [1438] = 1438, [1439] = 1439, - [1440] = 527, - [1441] = 528, - [1442] = 529, - [1443] = 530, + [1440] = 1440, + [1441] = 1441, + [1442] = 1442, + [1443] = 1443, [1444] = 1444, - [1445] = 531, - [1446] = 336, - [1447] = 535, - [1448] = 536, + [1445] = 1445, + [1446] = 356, + [1447] = 1447, + [1448] = 365, [1449] = 1449, - [1450] = 538, - [1451] = 1451, - [1452] = 539, - [1453] = 541, - [1454] = 389, - [1455] = 542, + [1450] = 1450, + [1451] = 316, + [1452] = 315, + [1453] = 1453, + [1454] = 387, + [1455] = 1455, [1456] = 1456, - [1457] = 543, - [1458] = 544, - [1459] = 545, + [1457] = 1457, + [1458] = 1458, + [1459] = 1459, [1460] = 1460, - [1461] = 546, - [1462] = 156, - [1463] = 167, - [1464] = 547, - [1465] = 548, - [1466] = 549, - [1467] = 550, - [1468] = 551, - [1469] = 552, - [1470] = 686, + [1461] = 1461, + [1462] = 1462, + [1463] = 328, + [1464] = 287, + [1465] = 1465, + [1466] = 1466, + [1467] = 253, + [1468] = 285, + [1469] = 1030, + [1470] = 1470, [1471] = 1471, - [1472] = 656, + [1472] = 1472, [1473] = 1473, - [1474] = 704, - [1475] = 1475, - [1476] = 1003, - [1477] = 1477, + [1474] = 1474, + [1475] = 1029, + [1476] = 1476, + [1477] = 331, [1478] = 1478, - [1479] = 1479, + [1479] = 258, [1480] = 1480, [1481] = 1481, - [1482] = 1482, - [1483] = 1483, - [1484] = 1040, + [1482] = 381, + [1483] = 395, + [1484] = 312, [1485] = 1485, [1486] = 1486, [1487] = 1487, [1488] = 1488, - [1489] = 1489, + [1489] = 165, [1490] = 1490, [1491] = 1491, - [1492] = 1011, + [1492] = 252, [1493] = 1493, [1494] = 1494, [1495] = 1495, - [1496] = 1496, + [1496] = 390, [1497] = 1497, - [1498] = 1491, + [1498] = 1498, [1499] = 1499, [1500] = 1500, [1501] = 1501, [1502] = 1502, [1503] = 1503, - [1504] = 1491, + [1504] = 1504, [1505] = 1505, - [1506] = 1013, - [1507] = 1040, - [1508] = 1014, + [1506] = 732, + [1507] = 1507, + [1508] = 1508, [1509] = 1509, [1510] = 1510, - [1511] = 1040, - [1512] = 1512, - [1513] = 1012, - [1514] = 1510, - [1515] = 1512, - [1516] = 1089, + [1511] = 1511, + [1512] = 668, + [1513] = 1513, + [1514] = 1023, + [1515] = 1515, + [1516] = 1516, [1517] = 1517, - [1518] = 1089, - [1519] = 1024, - [1520] = 1021, - [1521] = 1056, - [1522] = 1056, - [1523] = 1046, - [1524] = 1069, - [1525] = 1069, - [1526] = 1028, - [1527] = 1016, + [1518] = 1518, + [1519] = 1519, + [1520] = 1520, + [1521] = 1521, + [1522] = 1522, + [1523] = 1523, + [1524] = 1524, + [1525] = 1525, + [1526] = 1526, + [1527] = 1527, [1528] = 1528, - [1529] = 1031, - [1530] = 1022, - [1531] = 1531, - [1532] = 1029, - [1533] = 1017, - [1534] = 1393, - [1535] = 1393, + [1529] = 1529, + [1530] = 1060, + [1531] = 1031, + [1532] = 1529, + [1533] = 1533, + [1534] = 1534, + [1535] = 1529, [1536] = 1536, - [1537] = 1238, - [1538] = 1046, + [1537] = 1537, + [1538] = 1538, [1539] = 1539, - [1540] = 1540, - [1541] = 1541, - [1542] = 1045, - [1543] = 1543, - [1544] = 1045, - [1545] = 1036, - [1546] = 1393, - [1547] = 1033, - [1548] = 1238, - [1549] = 1549, - [1550] = 1072, - [1551] = 1551, - [1552] = 1377, - [1553] = 1478, - [1554] = 244, - [1555] = 1549, - [1556] = 1047, - [1557] = 1058, - [1558] = 1475, - [1559] = 1059, - [1560] = 1551, - [1561] = 1042, + [1540] = 1034, + [1541] = 1043, + [1542] = 1542, + [1543] = 1542, + [1544] = 1544, + [1545] = 1060, + [1546] = 1544, + [1547] = 1060, + [1548] = 1548, + [1549] = 1035, + [1550] = 1550, + [1551] = 1269, + [1552] = 1052, + [1553] = 1553, + [1554] = 1300, + [1555] = 1055, + [1556] = 1050, + [1557] = 1269, + [1558] = 1558, + [1559] = 1104, + [1560] = 1056, + [1561] = 1048, [1562] = 1562, - [1563] = 1562, - [1564] = 1034, - [1565] = 1419, - [1566] = 1551, - [1567] = 1562, - [1568] = 1419, - [1569] = 1543, - [1570] = 1377, - [1571] = 1551, - [1572] = 1562, - [1573] = 1496, - [1574] = 1574, - [1575] = 1489, + [1563] = 1419, + [1564] = 1045, + [1565] = 1565, + [1566] = 1234, + [1567] = 1104, + [1568] = 1300, + [1569] = 1047, + [1570] = 1054, + [1571] = 1427, + [1572] = 1572, + [1573] = 1573, + [1574] = 1419, + [1575] = 1234, [1576] = 1576, - [1577] = 1499, - [1578] = 1576, - [1579] = 1482, - [1580] = 1486, - [1581] = 1048, - [1582] = 1071, - [1583] = 1075, - [1584] = 1044, - [1585] = 1505, - [1586] = 1064, - [1587] = 338, - [1588] = 1488, - [1589] = 1574, - [1590] = 1490, - [1591] = 1478, - [1592] = 1592, - [1593] = 1500, - [1594] = 1060, - [1595] = 261, - [1596] = 1076, - [1597] = 1088, - [1598] = 1085, - [1599] = 1057, - [1600] = 1051, - [1601] = 1502, - [1602] = 1087, - [1603] = 323, - [1604] = 1055, - [1605] = 1066, - [1606] = 1501, - [1607] = 1607, - [1608] = 1078, - [1609] = 336, - [1610] = 1610, - [1611] = 1053, - [1612] = 1090, - [1613] = 1592, - [1614] = 1086, - [1615] = 1494, - [1616] = 1503, - [1617] = 1081, - [1618] = 1592, - [1619] = 1497, - [1620] = 1073, - [1621] = 1052, - [1622] = 1083, - [1623] = 1049, - [1624] = 1061, - [1625] = 1483, - [1626] = 1067, - [1627] = 1493, - [1628] = 1628, - [1629] = 1495, - [1630] = 1485, - [1631] = 347, - [1632] = 1628, - [1633] = 1070, - [1634] = 1487, - [1635] = 1475, - [1636] = 1636, - [1637] = 1192, - [1638] = 1638, - [1639] = 1215, - [1640] = 1226, - [1641] = 1241, - [1642] = 1286, - [1643] = 1323, - [1644] = 1337, - [1645] = 1493, - [1646] = 1502, - [1647] = 1386, - [1648] = 1489, - [1649] = 1499, - [1650] = 1199, - [1651] = 1208, - [1652] = 1209, - [1653] = 1217, - [1654] = 1654, - [1655] = 1308, - [1656] = 1310, - [1657] = 1322, - [1658] = 1327, - [1659] = 1353, - [1660] = 1660, - [1661] = 1295, - [1662] = 1214, - [1663] = 1383, - [1664] = 1221, - [1665] = 1251, - [1666] = 1237, - [1667] = 1309, - [1668] = 1183, - [1669] = 1186, - [1670] = 1189, - [1671] = 1671, - [1672] = 1249, - [1673] = 1250, - [1674] = 1674, - [1675] = 1278, - [1676] = 1299, - [1677] = 1300, - [1678] = 1304, - [1679] = 1320, - [1680] = 1324, - [1681] = 1325, - [1682] = 1682, - [1683] = 1384, - [1684] = 1444, - [1685] = 1460, - [1686] = 1257, - [1687] = 1262, - [1688] = 1264, - [1689] = 1193, - [1690] = 1690, - [1691] = 1274, - [1692] = 1369, - [1693] = 1219, - [1694] = 1220, - [1695] = 1695, - [1696] = 1202, - [1697] = 1697, - [1698] = 1698, + [1577] = 1577, + [1578] = 1427, + [1579] = 1132, + [1580] = 1513, + [1581] = 1085, + [1582] = 1241, + [1583] = 1207, + [1584] = 1419, + [1585] = 1577, + [1586] = 1309, + [1587] = 1587, + [1588] = 1588, + [1589] = 1486, + [1590] = 1486, + [1591] = 1058, + [1592] = 1085, + [1593] = 1576, + [1594] = 1587, + [1595] = 1588, + [1596] = 1449, + [1597] = 1577, + [1598] = 1062, + [1599] = 1449, + [1600] = 1063, + [1601] = 1576, + [1602] = 1576, + [1603] = 224, + [1604] = 1059, + [1605] = 1577, + [1606] = 1511, + [1607] = 1272, + [1608] = 1526, + [1609] = 257, + [1610] = 1122, + [1611] = 253, + [1612] = 1126, + [1613] = 1527, + [1614] = 1133, + [1615] = 1521, + [1616] = 254, + [1617] = 1617, + [1618] = 1618, + [1619] = 1619, + [1620] = 1118, + [1621] = 1117, + [1622] = 1622, + [1623] = 1617, + [1624] = 1619, + [1625] = 1184, + [1626] = 1186, + [1627] = 1187, + [1628] = 1539, + [1629] = 1199, + [1630] = 1517, + [1631] = 1516, + [1632] = 1525, + [1633] = 1524, + [1634] = 1634, + [1635] = 1202, + [1636] = 1520, + [1637] = 1533, + [1638] = 1537, + [1639] = 258, + [1640] = 1536, + [1641] = 1208, + [1642] = 1522, + [1643] = 1523, + [1644] = 1209, + [1645] = 1226, + [1646] = 1194, + [1647] = 1193, + [1648] = 1534, + [1649] = 252, + [1650] = 1270, + [1651] = 1280, + [1652] = 1284, + [1653] = 1258, + [1654] = 1528, + [1655] = 1279, + [1656] = 1513, + [1657] = 1281, + [1658] = 1336, + [1659] = 1622, + [1660] = 1538, + [1661] = 1634, + [1662] = 1511, + [1663] = 1310, + [1664] = 1519, + [1665] = 1665, + [1666] = 1268, + [1667] = 1212, + [1668] = 1634, + [1669] = 1518, + [1670] = 1525, + [1671] = 1517, + [1672] = 356, + [1673] = 1673, + [1674] = 435, + [1675] = 1675, + [1676] = 1382, + [1677] = 1487, + [1678] = 1500, + [1679] = 1501, + [1680] = 1389, + [1681] = 1533, + [1682] = 1520, + [1683] = 1683, + [1684] = 1524, + [1685] = 1387, + [1686] = 1686, + [1687] = 1385, + [1688] = 1400, + [1689] = 281, + [1690] = 1518, + [1691] = 267, + [1692] = 1528, + [1693] = 1693, + [1694] = 1413, + [1695] = 1414, + [1696] = 1683, + [1697] = 1431, + [1698] = 1538, [1699] = 1699, - [1700] = 1439, - [1701] = 1451, - [1702] = 1636, - [1703] = 1496, + [1700] = 1700, + [1701] = 1701, + [1702] = 1439, + [1703] = 312, [1704] = 1704, - [1705] = 1222, - [1706] = 1225, - [1707] = 1008, - [1708] = 1293, - [1709] = 1297, - [1710] = 1483, - [1711] = 1505, - [1712] = 1495, - [1713] = 1485, - [1714] = 1486, - [1715] = 1488, - [1716] = 1490, - [1717] = 1500, - [1718] = 1501, - [1719] = 1494, - [1720] = 1503, - [1721] = 1497, - [1722] = 1482, - [1723] = 1207, - [1724] = 1211, - [1725] = 1223, - [1726] = 1224, - [1727] = 1487, - [1728] = 1291, - [1729] = 1294, - [1730] = 1296, - [1731] = 1298, - [1732] = 1305, - [1733] = 1733, - [1734] = 1382, - [1735] = 1385, - [1736] = 1388, - [1737] = 1389, - [1738] = 1391, - [1739] = 1449, - [1740] = 1740, - [1741] = 429, - [1742] = 389, - [1743] = 382, - [1744] = 384, - [1745] = 392, - [1746] = 1496, - [1747] = 1228, - [1748] = 1748, - [1749] = 1483, - [1750] = 388, - [1751] = 1505, - [1752] = 399, - [1753] = 1495, - [1754] = 1485, - [1755] = 1486, - [1756] = 1488, - [1757] = 1490, - [1758] = 1500, - [1759] = 1501, - [1760] = 1494, - [1761] = 1503, - [1762] = 1497, - [1763] = 1482, - [1764] = 1212, - [1765] = 1213, - [1766] = 385, - [1767] = 387, - [1768] = 1487, - [1769] = 393, - [1770] = 1292, - [1771] = 1210, - [1772] = 376, - [1773] = 377, - [1774] = 379, - [1775] = 383, - [1776] = 386, - [1777] = 394, - [1778] = 156, - [1779] = 167, - [1780] = 380, - [1781] = 138, + [1705] = 1705, + [1706] = 1460, + [1707] = 1465, + [1708] = 1433, + [1709] = 1457, + [1710] = 328, + [1711] = 156, + [1712] = 1675, + [1713] = 390, + [1714] = 1714, + [1715] = 391, + [1716] = 1716, + [1717] = 398, + [1718] = 1693, + [1719] = 331, + [1720] = 346, + [1721] = 394, + [1722] = 1673, + [1723] = 166, + [1724] = 1675, + [1725] = 1725, + [1726] = 1726, + [1727] = 1714, + [1728] = 167, + [1729] = 1729, + [1730] = 365, + [1731] = 1731, + [1732] = 1445, + [1733] = 1714, + [1734] = 1450, + [1735] = 1705, + [1736] = 1726, + [1737] = 1466, + [1738] = 1731, + [1739] = 1476, + [1740] = 1516, + [1741] = 1459, + [1742] = 1470, + [1743] = 1526, + [1744] = 1705, + [1745] = 1481, + [1746] = 1432, + [1747] = 1747, + [1748] = 287, + [1749] = 1429, + [1750] = 1520, + [1751] = 1462, + [1752] = 1425, + [1753] = 1415, + [1754] = 1705, + [1755] = 1405, + [1756] = 1480, + [1757] = 1456, + [1758] = 1434, + [1759] = 1441, + [1760] = 316, + [1761] = 1527, + [1762] = 1704, + [1763] = 1490, + [1764] = 1726, + [1765] = 1765, + [1766] = 315, + [1767] = 1767, + [1768] = 1497, + [1769] = 1714, + [1770] = 1770, + [1771] = 1539, + [1772] = 1731, + [1773] = 1474, + [1774] = 1726, + [1775] = 1726, + [1776] = 1538, + [1777] = 1777, + [1778] = 1778, + [1779] = 1705, + [1780] = 1770, + [1781] = 1518, [1782] = 1782, - [1783] = 1496, - [1784] = 141, - [1785] = 397, - [1786] = 1786, - [1787] = 1505, - [1788] = 142, - [1789] = 372, - [1790] = 1487, - [1791] = 180, - [1792] = 181, - [1793] = 1793, - [1794] = 1748, - [1795] = 1795, - [1796] = 1740, - [1797] = 1660, - [1798] = 1798, - [1799] = 1799, - [1800] = 1800, - [1801] = 1654, - [1802] = 1674, - [1803] = 1682, - [1804] = 1695, - [1805] = 1636, - [1806] = 1800, - [1807] = 1704, - [1808] = 1782, - [1809] = 1809, - [1810] = 1748, - [1811] = 1493, - [1812] = 1502, - [1813] = 1740, - [1814] = 1489, - [1815] = 1499, - [1816] = 1660, - [1817] = 1817, - [1818] = 1818, - [1819] = 1674, - [1820] = 1636, - [1821] = 1748, - [1822] = 1740, - [1823] = 1660, - [1824] = 1674, - [1825] = 1809, - [1826] = 1748, - [1827] = 1660, - [1828] = 1674, - [1829] = 1829, - [1830] = 1636, - [1831] = 1748, - [1832] = 1660, - [1833] = 1674, - [1834] = 1636, - [1835] = 1748, - [1836] = 1660, - [1837] = 1674, - [1838] = 1636, - [1839] = 1839, - [1840] = 1793, - [1841] = 381, - [1842] = 1842, - [1843] = 1843, - [1844] = 1844, - [1845] = 1845, + [1783] = 1528, + [1784] = 1395, + [1785] = 1447, + [1786] = 1444, + [1787] = 1443, + [1788] = 1493, + [1789] = 1526, + [1790] = 1790, + [1791] = 1392, + [1792] = 1519, + [1793] = 1714, + [1794] = 387, + [1795] = 1491, + [1796] = 1028, + [1797] = 1797, + [1798] = 1473, + [1799] = 1472, + [1800] = 1539, + [1801] = 1455, + [1802] = 1461, + [1803] = 1726, + [1804] = 1498, + [1805] = 206, + [1806] = 1478, + [1807] = 1519, + [1808] = 1499, + [1809] = 1731, + [1810] = 395, + [1811] = 1423, + [1812] = 1422, + [1813] = 1705, + [1814] = 1438, + [1815] = 1534, + [1816] = 1435, + [1817] = 1485, + [1818] = 1393, + [1819] = 178, + [1820] = 1397, + [1821] = 1726, + [1822] = 1471, + [1823] = 1528, + [1824] = 1403, + [1825] = 381, + [1826] = 1705, + [1827] = 1765, + [1828] = 1407, + [1829] = 1714, + [1830] = 1521, + [1831] = 1523, + [1832] = 157, + [1833] = 1539, + [1834] = 1522, + [1835] = 1675, + [1836] = 1440, + [1837] = 1797, + [1838] = 1536, + [1839] = 1527, + [1840] = 1426, + [1841] = 1517, + [1842] = 1516, + [1843] = 1503, + [1844] = 1525, + [1845] = 1504, [1846] = 1846, - [1847] = 1638, + [1847] = 1488, [1848] = 1848, - [1849] = 1849, - [1850] = 1850, - [1851] = 1850, - [1852] = 1852, - [1853] = 1853, + [1849] = 1524, + [1850] = 1537, + [1851] = 1521, + [1852] = 1409, + [1853] = 1410, [1854] = 1854, - [1855] = 1855, - [1856] = 1856, - [1857] = 1852, - [1858] = 1858, - [1859] = 1849, - [1860] = 1855, - [1861] = 1861, - [1862] = 1862, - [1863] = 1842, - [1864] = 1864, - [1865] = 1690, - [1866] = 1856, - [1867] = 1856, - [1868] = 1858, - [1869] = 1861, - [1870] = 1864, - [1871] = 1854, - [1872] = 1862, - [1873] = 1873, - [1874] = 1874, - [1875] = 1699, + [1855] = 1533, + [1856] = 1537, + [1857] = 1388, + [1858] = 1536, + [1859] = 1522, + [1860] = 1523, + [1861] = 1396, + [1862] = 1534, + [1863] = 285, + [1864] = 1686, + [1865] = 1527, + [1866] = 165, + [1867] = 1420, + [1868] = 1430, + [1869] = 1458, + [1870] = 1424, + [1871] = 1731, + [1872] = 1714, + [1873] = 1386, + [1874] = 1731, + [1875] = 1731, [1876] = 1876, [1877] = 1877, - [1878] = 1876, + [1878] = 1878, [1879] = 1879, [1880] = 1877, [1881] = 1881, - [1882] = 1881, + [1882] = 1878, [1883] = 1883, [1884] = 1884, [1885] = 1885, - [1886] = 1884, - [1887] = 1885, - [1888] = 1883, + [1886] = 1886, + [1887] = 1884, + [1888] = 1888, [1889] = 1889, [1890] = 1890, - [1891] = 1891, - [1892] = 1892, - [1893] = 1893, - [1894] = 1892, - [1895] = 1892, - [1896] = 1893, - [1897] = 1893, - [1898] = 1893, - [1899] = 1893, + [1891] = 1778, + [1892] = 1890, + [1893] = 1879, + [1894] = 1886, + [1895] = 1890, + [1896] = 1888, + [1897] = 1881, + [1898] = 1898, + [1899] = 1899, [1900] = 1900, - [1901] = 1900, - [1902] = 142, - [1903] = 1011, - [1904] = 138, - [1905] = 1013, - [1906] = 1016, - [1907] = 1012, - [1908] = 1024, - [1909] = 1031, + [1901] = 1901, + [1902] = 1883, + [1903] = 1903, + [1904] = 1904, + [1905] = 1905, + [1906] = 1876, + [1907] = 1782, + [1908] = 1725, + [1909] = 1900, [1910] = 1910, - [1911] = 1014, - [1912] = 1017, - [1913] = 1024, - [1914] = 1022, - [1915] = 1016, - [1916] = 1021, - [1917] = 1029, - [1918] = 1017, - [1919] = 1031, - [1920] = 1028, - [1921] = 1033, - [1922] = 1058, - [1923] = 1059, - [1924] = 1036, - [1925] = 1034, - [1926] = 1064, - [1927] = 1047, - [1928] = 1072, - [1929] = 1042, - [1930] = 1048, - [1931] = 1071, - [1932] = 1932, - [1933] = 1075, - [1934] = 1932, - [1935] = 1935, - [1936] = 1936, - [1937] = 1936, - [1938] = 1076, - [1939] = 180, - [1940] = 1070, - [1941] = 1085, - [1942] = 1942, - [1943] = 181, - [1944] = 1051, - [1945] = 1087, - [1946] = 1061, - [1947] = 1086, - [1948] = 1067, - [1949] = 1078, - [1950] = 1066, - [1951] = 1088, - [1952] = 1090, - [1953] = 1044, - [1954] = 1053, - [1955] = 1942, - [1956] = 1081, - [1957] = 397, - [1958] = 1942, - [1959] = 372, - [1960] = 1083, - [1961] = 1961, - [1962] = 1049, - [1963] = 1060, - [1964] = 1531, - [1965] = 1211, - [1966] = 1293, - [1967] = 1385, - [1968] = 1292, - [1969] = 1222, - [1970] = 1291, - [1971] = 1225, - [1972] = 1391, - [1973] = 1207, - [1974] = 1540, - [1975] = 1212, - [1976] = 1213, - [1977] = 1539, - [1978] = 1451, - [1979] = 1296, - [1980] = 1541, - [1981] = 1936, - [1982] = 1982, - [1983] = 1228, - [1984] = 1297, - [1985] = 1298, - [1986] = 1382, - [1987] = 1987, - [1988] = 1439, - [1989] = 1294, - [1990] = 1223, - [1991] = 1224, - [1992] = 1449, - [1993] = 1388, - [1994] = 1305, - [1995] = 1389, - [1996] = 1210, - [1997] = 167, - [1998] = 1998, - [1999] = 1999, - [2000] = 2000, - [2001] = 141, - [2002] = 1031, - [2003] = 1016, - [2004] = 2004, - [2005] = 2005, - [2006] = 1024, - [2007] = 1910, - [2008] = 1017, - [2009] = 1031, - [2010] = 1017, - [2011] = 2011, - [2012] = 1024, - [2013] = 1016, - [2014] = 1031, - [2015] = 1017, - [2016] = 1024, - [2017] = 1016, - [2018] = 2018, - [2019] = 2019, - [2020] = 2020, - [2021] = 2021, - [2022] = 2022, - [2023] = 2021, - [2024] = 2022, - [2025] = 2025, - [2026] = 2026, - [2027] = 2027, - [2028] = 2019, - [2029] = 2020, - [2030] = 2025, + [1911] = 1911, + [1912] = 1910, + [1913] = 1911, + [1914] = 1914, + [1915] = 1915, + [1916] = 1915, + [1917] = 1917, + [1918] = 1918, + [1919] = 1919, + [1920] = 1917, + [1921] = 1919, + [1922] = 1918, + [1923] = 1923, + [1924] = 1924, + [1925] = 1925, + [1926] = 1926, + [1927] = 1926, + [1928] = 1928, + [1929] = 1928, + [1930] = 1928, + [1931] = 1928, + [1932] = 1928, + [1933] = 1926, + [1934] = 1934, + [1935] = 1934, + [1936] = 156, + [1937] = 1031, + [1938] = 165, + [1939] = 1055, + [1940] = 1047, + [1941] = 1034, + [1942] = 1052, + [1943] = 1035, + [1944] = 1050, + [1945] = 1945, + [1946] = 1043, + [1947] = 1054, + [1948] = 1045, + [1949] = 1052, + [1950] = 1048, + [1951] = 1050, + [1952] = 1047, + [1953] = 1055, + [1954] = 1056, + [1955] = 1062, + [1956] = 1133, + [1957] = 1957, + [1958] = 1241, + [1959] = 1058, + [1960] = 1309, + [1961] = 1132, + [1962] = 1063, + [1963] = 1059, + [1964] = 1207, + [1965] = 1957, + [1966] = 1226, + [1967] = 1209, + [1968] = 1208, + [1969] = 1969, + [1970] = 1573, + [1971] = 1971, + [1972] = 1258, + [1973] = 1973, + [1974] = 1270, + [1975] = 1126, + [1976] = 1976, + [1977] = 1272, + [1978] = 1212, + [1979] = 206, + [1980] = 1980, + [1981] = 1202, + [1982] = 1971, + [1983] = 178, + [1984] = 1122, + [1985] = 1310, + [1986] = 1268, + [1987] = 1184, + [1988] = 381, + [1989] = 1199, + [1990] = 1281, + [1991] = 1572, + [1992] = 1280, + [1993] = 1187, + [1994] = 1186, + [1995] = 1118, + [1996] = 1973, + [1997] = 1997, + [1998] = 1973, + [1999] = 1562, + [2000] = 1117, + [2001] = 1565, + [2002] = 328, + [2003] = 1336, + [2004] = 1441, + [2005] = 1434, + [2006] = 1422, + [2007] = 1423, + [2008] = 1424, + [2009] = 1431, + [2010] = 1450, + [2011] = 1971, + [2012] = 1445, + [2013] = 1430, + [2014] = 1485, + [2015] = 1499, + [2016] = 1460, + [2017] = 1462, + [2018] = 1433, + [2019] = 1498, + [2020] = 1414, + [2021] = 1392, + [2022] = 1413, + [2023] = 1493, + [2024] = 1389, + [2025] = 1387, + [2026] = 1487, + [2027] = 1439, + [2028] = 1410, + [2029] = 1409, + [2030] = 1385, [2031] = 2031, - [2032] = 2027, - [2033] = 2031, + [2032] = 157, + [2033] = 167, [2034] = 2034, [2035] = 2035, [2036] = 2036, - [2037] = 2037, - [2038] = 2038, - [2039] = 338, - [2040] = 1016, - [2041] = 2041, - [2042] = 2042, - [2043] = 2043, - [2044] = 2044, - [2045] = 1024, - [2046] = 2046, - [2047] = 336, + [2037] = 1055, + [2038] = 1047, + [2039] = 1050, + [2040] = 1052, + [2041] = 1050, + [2042] = 1052, + [2043] = 1055, + [2044] = 1050, + [2045] = 1052, + [2046] = 1047, + [2047] = 1945, [2048] = 2048, - [2049] = 2042, - [2050] = 2050, + [2049] = 1047, + [2050] = 1055, [2051] = 2051, [2052] = 2052, - [2053] = 323, - [2054] = 2054, - [2055] = 2052, - [2056] = 347, - [2057] = 2051, - [2058] = 1935, - [2059] = 261, + [2053] = 2053, + [2054] = 2053, + [2055] = 2055, + [2056] = 2056, + [2057] = 2057, + [2058] = 2055, + [2059] = 2059, [2060] = 2060, [2061] = 2061, - [2062] = 2062, - [2063] = 2063, + [2062] = 2059, + [2063] = 2056, [2064] = 2064, - [2065] = 2065, - [2066] = 1031, - [2067] = 1017, - [2068] = 2064, - [2069] = 2069, - [2070] = 2034, - [2071] = 2050, - [2072] = 2065, - [2073] = 2037, - [2074] = 2044, - [2075] = 2075, + [2065] = 2061, + [2066] = 2052, + [2067] = 2060, + [2068] = 2068, + [2069] = 1047, + [2070] = 2070, + [2071] = 257, + [2072] = 2072, + [2073] = 2072, + [2074] = 2074, + [2075] = 252, [2076] = 2076, [2077] = 2077, [2078] = 2078, [2079] = 2079, - [2080] = 2080, - [2081] = 2081, + [2080] = 253, + [2081] = 258, [2082] = 2082, [2083] = 2083, - [2084] = 2084, + [2084] = 2070, [2085] = 2085, [2086] = 2086, - [2087] = 2087, + [2087] = 2074, [2088] = 2088, [2089] = 2089, [2090] = 2090, [2091] = 2091, [2092] = 2092, [2093] = 2093, - [2094] = 2094, - [2095] = 2095, - [2096] = 2096, + [2094] = 2076, + [2095] = 2078, + [2096] = 2077, [2097] = 2097, [2098] = 2098, - [2099] = 2099, - [2100] = 380, + [2099] = 2083, + [2100] = 2100, [2101] = 2101, - [2102] = 2102, - [2103] = 2103, - [2104] = 2104, + [2102] = 2097, + [2103] = 2100, + [2104] = 1969, [2105] = 2105, - [2106] = 2106, - [2107] = 2107, - [2108] = 2089, - [2109] = 2109, + [2106] = 254, + [2107] = 1055, + [2108] = 1050, + [2109] = 1052, [2110] = 2110, - [2111] = 2087, - [2112] = 2112, - [2113] = 1961, - [2114] = 2114, + [2111] = 2111, + [2112] = 1997, + [2113] = 2113, + [2114] = 2113, [2115] = 2115, - [2116] = 2090, - [2117] = 1935, + [2116] = 2116, + [2117] = 2117, [2118] = 2118, - [2119] = 2118, - [2120] = 1935, + [2119] = 2119, + [2120] = 2118, [2121] = 2121, [2122] = 2122, - [2123] = 2105, - [2124] = 2118, + [2123] = 2123, + [2124] = 2124, [2125] = 2125, [2126] = 2126, [2127] = 2127, - [2128] = 1042, + [2128] = 2128, [2129] = 2129, - [2130] = 1961, + [2130] = 2130, [2131] = 2131, [2132] = 2132, [2133] = 2133, - [2134] = 1034, + [2134] = 2134, [2135] = 2135, - [2136] = 2135, + [2136] = 2136, [2137] = 2137, - [2138] = 1036, - [2139] = 2139, + [2138] = 2121, + [2139] = 2121, [2140] = 2140, - [2141] = 2132, + [2141] = 2141, [2142] = 2142, - [2143] = 2139, + [2143] = 2143, [2144] = 2144, - [2145] = 2144, - [2146] = 2146, + [2145] = 2145, + [2146] = 2125, [2147] = 2147, [2148] = 2148, - [2149] = 1033, - [2150] = 1935, - [2151] = 2137, - [2152] = 2135, - [2153] = 2153, + [2149] = 2149, + [2150] = 2150, + [2151] = 2151, + [2152] = 2152, + [2153] = 2110, [2154] = 2154, [2155] = 2155, - [2156] = 2156, - [2157] = 1961, - [2158] = 2158, + [2156] = 1969, + [2157] = 1969, + [2158] = 365, [2159] = 2159, - [2160] = 2154, - [2161] = 2159, - [2162] = 2137, + [2160] = 2160, + [2161] = 2161, + [2162] = 2162, [2163] = 2163, [2164] = 2164, - [2165] = 2147, - [2166] = 2158, - [2167] = 2164, + [2165] = 1997, + [2166] = 2166, + [2167] = 1969, [2168] = 2168, - [2169] = 2148, - [2170] = 2140, - [2171] = 2142, - [2172] = 2131, + [2169] = 2169, + [2170] = 1997, + [2171] = 1062, + [2172] = 2172, [2173] = 2173, - [2174] = 2168, - [2175] = 2133, + [2174] = 2174, + [2175] = 2175, [2176] = 2176, - [2177] = 2177, - [2178] = 2178, - [2179] = 2179, + [2177] = 2169, + [2178] = 2176, + [2179] = 1058, [2180] = 2180, [2181] = 2181, [2182] = 2182, [2183] = 2183, [2184] = 2184, - [2185] = 2185, + [2185] = 2168, [2186] = 2186, - [2187] = 2187, - [2188] = 2181, - [2189] = 2189, - [2190] = 2185, + [2187] = 2175, + [2188] = 2188, + [2189] = 2162, + [2190] = 2190, [2191] = 2191, - [2192] = 2184, - [2193] = 2183, - [2194] = 2194, - [2195] = 2195, - [2196] = 2196, - [2197] = 2196, + [2192] = 2173, + [2193] = 2193, + [2194] = 1063, + [2195] = 2174, + [2196] = 2183, + [2197] = 2186, [2198] = 2198, - [2199] = 2176, - [2200] = 2198, - [2201] = 2201, - [2202] = 2194, - [2203] = 2203, - [2204] = 2204, - [2205] = 2205, - [2206] = 2206, - [2207] = 2207, - [2208] = 2208, - [2209] = 2209, + [2199] = 2182, + [2200] = 2200, + [2201] = 2163, + [2202] = 2175, + [2203] = 2198, + [2204] = 2172, + [2205] = 2190, + [2206] = 2173, + [2207] = 2166, + [2208] = 2200, + [2209] = 1059, [2210] = 2210, [2211] = 2211, [2212] = 2212, [2213] = 2213, [2214] = 2214, - [2215] = 2180, - [2216] = 1961, - [2217] = 2204, - [2218] = 2189, + [2215] = 2212, + [2216] = 2216, + [2217] = 2210, + [2218] = 2218, [2219] = 2219, [2220] = 2220, [2221] = 2221, - [2222] = 2211, + [2222] = 2222, [2223] = 2223, - [2224] = 2195, - [2225] = 2186, - [2226] = 2187, - [2227] = 2219, - [2228] = 2191, - [2229] = 2214, - [2230] = 2221, - [2231] = 2182, + [2224] = 2224, + [2225] = 2225, + [2226] = 2226, + [2227] = 2227, + [2228] = 2228, + [2229] = 2229, + [2230] = 2230, + [2231] = 2231, [2232] = 2232, - [2233] = 1999, + [2233] = 2223, [2234] = 2234, [2235] = 2235, - [2236] = 2236, + [2236] = 2220, [2237] = 2237, - [2238] = 2238, - [2239] = 2239, + [2238] = 2214, + [2239] = 2216, [2240] = 2240, - [2241] = 2241, + [2241] = 2211, [2242] = 2242, [2243] = 2243, - [2244] = 2244, + [2244] = 2225, [2245] = 2245, - [2246] = 2246, - [2247] = 2243, - [2248] = 2246, - [2249] = 2249, - [2250] = 2250, - [2251] = 2251, - [2252] = 2252, - [2253] = 2253, + [2246] = 2240, + [2247] = 2224, + [2248] = 2227, + [2249] = 1997, + [2250] = 2221, + [2251] = 2230, + [2252] = 2218, + [2253] = 2219, [2254] = 2254, - [2255] = 2239, - [2256] = 2256, - [2257] = 2257, - [2258] = 2252, - [2259] = 2259, - [2260] = 2251, - [2261] = 2249, - [2262] = 2250, - [2263] = 2253, - [2264] = 2235, - [2265] = 2237, + [2255] = 2255, + [2256] = 2234, + [2257] = 2242, + [2258] = 2228, + [2259] = 2222, + [2260] = 2260, + [2261] = 2261, + [2262] = 2235, + [2263] = 2263, + [2264] = 2264, + [2265] = 2265, [2266] = 2266, [2267] = 2267, [2268] = 2268, [2269] = 2269, [2270] = 2270, - [2271] = 2271, - [2272] = 2272, - [2273] = 2241, - [2274] = 2242, - [2275] = 2244, - [2276] = 2245, - [2277] = 2254, - [2278] = 2256, - [2279] = 2259, + [2271] = 2267, + [2272] = 2031, + [2273] = 2273, + [2274] = 2274, + [2275] = 2275, + [2276] = 2276, + [2277] = 2277, + [2278] = 2278, + [2279] = 2279, [2280] = 2280, [2281] = 2281, - [2282] = 2232, + [2282] = 2282, [2283] = 2283, - [2284] = 2281, - [2285] = 2232, + [2284] = 2273, + [2285] = 2283, [2286] = 2286, - [2287] = 2272, - [2288] = 2266, - [2289] = 2280, + [2287] = 2287, + [2288] = 2288, + [2289] = 2289, [2290] = 2290, - [2291] = 2291, + [2291] = 2266, [2292] = 2292, - [2293] = 2293, - [2294] = 2294, + [2293] = 2286, + [2294] = 2290, [2295] = 2295, [2296] = 2296, [2297] = 2297, - [2298] = 2298, - [2299] = 2004, + [2298] = 2277, + [2299] = 2275, [2300] = 2300, [2301] = 2301, - [2302] = 2292, - [2303] = 2303, - [2304] = 2304, + [2302] = 2302, + [2303] = 2302, + [2304] = 2289, [2305] = 2305, - [2306] = 2298, + [2306] = 2287, [2307] = 2307, [2308] = 2308, - [2309] = 2309, - [2310] = 2310, + [2309] = 2288, + [2310] = 2292, [2311] = 2311, - [2312] = 2307, - [2313] = 2293, + [2312] = 2311, + [2313] = 2313, [2314] = 2314, - [2315] = 2011, - [2316] = 2316, - [2317] = 2295, + [2315] = 2315, + [2316] = 2301, + [2317] = 2317, [2318] = 2318, - [2319] = 2319, + [2319] = 2314, [2320] = 2320, [2321] = 2321, - [2322] = 2322, - [2323] = 2323, - [2324] = 2324, - [2325] = 2325, - [2326] = 2326, - [2327] = 2310, - [2328] = 2309, - [2329] = 2296, - [2330] = 2316, - [2331] = 2318, + [2322] = 2305, + [2323] = 2315, + [2324] = 2308, + [2325] = 2321, + [2326] = 2320, + [2327] = 2327, + [2328] = 2276, + [2329] = 2327, + [2330] = 2330, + [2331] = 2330, [2332] = 2332, - [2333] = 2333, - [2334] = 2334, - [2335] = 2335, - [2336] = 2292, - [2337] = 2337, - [2338] = 2338, - [2339] = 2339, + [2333] = 2281, + [2334] = 2297, + [2335] = 2318, + [2336] = 2269, + [2337] = 2302, + [2338] = 2270, + [2339] = 2332, [2340] = 2340, [2341] = 2341, [2342] = 2342, - [2343] = 2303, - [2344] = 2311, - [2345] = 2300, - [2346] = 2301, - [2347] = 2308, - [2348] = 2305, - [2349] = 2297, - [2350] = 2321, - [2351] = 2290, - [2352] = 2300, - [2353] = 2301, - [2354] = 2305, - [2355] = 2323, - [2356] = 2311, - [2357] = 2324, - [2358] = 2338, - [2359] = 2339, - [2360] = 167, - [2361] = 138, - [2362] = 141, - [2363] = 142, - [2364] = 2364, - [2365] = 2365, - [2366] = 2332, - [2367] = 2333, - [2368] = 2322, - [2369] = 2314, - [2370] = 2334, - [2371] = 2371, - [2372] = 2304, + [2343] = 2343, + [2344] = 2344, + [2345] = 2345, + [2346] = 2346, + [2347] = 2347, + [2348] = 2348, + [2349] = 2349, + [2350] = 2350, + [2351] = 2351, + [2352] = 2352, + [2353] = 2353, + [2354] = 2354, + [2355] = 2355, + [2356] = 2051, + [2357] = 2357, + [2358] = 2358, + [2359] = 2359, + [2360] = 2340, + [2361] = 2361, + [2362] = 2348, + [2363] = 2352, + [2364] = 2346, + [2365] = 165, + [2366] = 2366, + [2367] = 2367, + [2368] = 2368, + [2369] = 2369, + [2370] = 2370, + [2371] = 2345, + [2372] = 2369, [2373] = 2373, - [2374] = 2342, - [2375] = 2364, - [2376] = 2335, - [2377] = 2305, - [2378] = 2291, + [2374] = 2358, + [2375] = 2350, + [2376] = 2341, + [2377] = 2377, + [2378] = 2378, [2379] = 2379, - [2380] = 2380, + [2380] = 2036, [2381] = 2381, - [2382] = 2341, - [2383] = 2294, - [2384] = 2379, - [2385] = 2319, - [2386] = 2380, - [2387] = 2005, - [2388] = 2325, - [2389] = 2389, + [2382] = 2382, + [2383] = 2048, + [2384] = 167, + [2385] = 2385, + [2386] = 2377, + [2387] = 2387, + [2388] = 2368, + [2389] = 2379, [2390] = 2390, - [2391] = 2391, - [2392] = 2392, + [2391] = 2377, + [2392] = 156, [2393] = 2393, [2394] = 2394, [2395] = 2395, - [2396] = 2396, - [2397] = 2397, + [2396] = 2390, + [2397] = 2341, [2398] = 2398, [2399] = 2399, [2400] = 2400, - [2401] = 2401, + [2401] = 2381, [2402] = 2402, - [2403] = 2403, - [2404] = 2404, + [2403] = 2398, + [2404] = 2395, [2405] = 2405, - [2406] = 2406, + [2406] = 2354, [2407] = 2407, - [2408] = 2408, - [2409] = 2409, - [2410] = 2410, + [2408] = 2370, + [2409] = 2399, + [2410] = 2367, [2411] = 2411, - [2412] = 2411, - [2413] = 2413, - [2414] = 2394, - [2415] = 2415, - [2416] = 1272, - [2417] = 1273, - [2418] = 1275, - [2419] = 2413, - [2420] = 2420, - [2421] = 2407, - [2422] = 2405, - [2423] = 2423, - [2424] = 2424, + [2412] = 2353, + [2413] = 2349, + [2414] = 2385, + [2415] = 2407, + [2416] = 2366, + [2417] = 157, + [2418] = 2418, + [2419] = 2387, + [2420] = 2394, + [2421] = 2355, + [2422] = 2390, + [2423] = 2400, + [2424] = 2351, [2425] = 2425, - [2426] = 2425, + [2426] = 2342, [2427] = 2427, - [2428] = 2428, - [2429] = 2429, - [2430] = 2427, - [2431] = 2389, - [2432] = 2404, - [2433] = 2433, - [2434] = 2434, - [2435] = 2435, - [2436] = 2401, - [2437] = 2398, - [2438] = 2438, + [2428] = 2387, + [2429] = 2343, + [2430] = 2344, + [2431] = 2405, + [2432] = 2351, + [2433] = 2347, + [2434] = 2361, + [2435] = 2427, + [2436] = 2351, + [2437] = 2411, + [2438] = 2402, [2439] = 2439, [2440] = 2440, - [2441] = 2425, + [2441] = 2441, [2442] = 2442, [2443] = 2443, [2444] = 2444, - [2445] = 2420, + [2445] = 2445, [2446] = 2446, - [2447] = 2390, - [2448] = 1229, - [2449] = 1230, - [2450] = 2402, - [2451] = 2415, - [2452] = 1365, - [2453] = 1366, - [2454] = 1367, - [2455] = 1260, - [2456] = 1261, - [2457] = 2408, + [2447] = 2447, + [2448] = 2448, + [2449] = 2443, + [2450] = 2448, + [2451] = 2451, + [2452] = 2452, + [2453] = 2453, + [2454] = 2454, + [2455] = 2455, + [2456] = 2456, + [2457] = 2457, [2458] = 2458, - [2459] = 2399, + [2459] = 2459, [2460] = 2460, [2461] = 2461, - [2462] = 2462, - [2463] = 1008, - [2464] = 2464, - [2465] = 2409, - [2466] = 2434, + [2462] = 2459, + [2463] = 2463, + [2464] = 1442, + [2465] = 2465, + [2466] = 2444, [2467] = 2467, - [2468] = 2433, + [2468] = 2468, [2469] = 2469, - [2470] = 2470, - [2471] = 2427, + [2470] = 2458, + [2471] = 2471, [2472] = 2472, - [2473] = 2433, - [2474] = 2410, - [2475] = 2407, + [2473] = 2465, + [2474] = 1453, + [2475] = 2475, [2476] = 2476, - [2477] = 2477, + [2477] = 2455, [2478] = 2478, [2479] = 2479, - [2480] = 2424, - [2481] = 2481, - [2482] = 2427, - [2483] = 2483, - [2484] = 2467, - [2485] = 2393, - [2486] = 2486, - [2487] = 2424, + [2480] = 2480, + [2481] = 2441, + [2482] = 2482, + [2483] = 1404, + [2484] = 1401, + [2485] = 2485, + [2486] = 2451, + [2487] = 2487, [2488] = 2488, - [2489] = 2415, - [2490] = 2486, - [2491] = 2405, - [2492] = 2397, - [2493] = 2493, - [2494] = 2494, + [2489] = 171, + [2490] = 1399, + [2491] = 2491, + [2492] = 2492, + [2493] = 2444, + [2494] = 2463, [2495] = 2495, [2496] = 2496, [2497] = 2497, - [2498] = 2498, - [2499] = 2499, + [2498] = 2482, + [2499] = 2440, [2500] = 2500, - [2501] = 2501, + [2501] = 150, [2502] = 2502, [2503] = 2503, - [2504] = 2495, + [2504] = 2504, [2505] = 2505, - [2506] = 2506, + [2506] = 2497, [2507] = 2507, [2508] = 2508, - [2509] = 2509, + [2509] = 2488, [2510] = 2510, [2511] = 2511, - [2512] = 2512, + [2512] = 2476, [2513] = 2513, - [2514] = 2514, - [2515] = 2514, - [2516] = 2516, - [2517] = 2517, + [2514] = 2446, + [2515] = 2515, + [2516] = 2460, + [2517] = 2446, [2518] = 2518, - [2519] = 2518, - [2520] = 2496, - [2521] = 2497, - [2522] = 2498, - [2523] = 2523, - [2524] = 2524, - [2525] = 2525, - [2526] = 2526, + [2519] = 2460, + [2520] = 2520, + [2521] = 2521, + [2522] = 2522, + [2523] = 2480, + [2524] = 2508, + [2525] = 2510, + [2526] = 1494, [2527] = 2527, - [2528] = 2528, - [2529] = 2527, - [2530] = 2530, - [2531] = 2531, + [2528] = 2487, + [2529] = 1495, + [2530] = 1384, + [2531] = 2521, [2532] = 2532, - [2533] = 2533, - [2534] = 2531, - [2535] = 2528, + [2533] = 2508, + [2534] = 2505, + [2535] = 2439, [2536] = 2536, - [2537] = 2527, + [2537] = 1028, [2538] = 2538, - [2539] = 2503, - [2540] = 2540, - [2541] = 2541, - [2542] = 2542, - [2543] = 2536, - [2544] = 2542, - [2545] = 2545, + [2539] = 2469, + [2540] = 2440, + [2541] = 2456, + [2542] = 2487, + [2543] = 1428, + [2544] = 1398, + [2545] = 2455, [2546] = 2546, - [2547] = 2547, + [2547] = 2455, [2548] = 2548, [2549] = 2549, [2550] = 2550, [2551] = 2551, - [2552] = 139, + [2552] = 2552, [2553] = 2553, [2554] = 2554, - [2555] = 2554, + [2555] = 2555, [2556] = 2556, [2557] = 2557, [2558] = 2558, [2559] = 2559, [2560] = 2560, - [2561] = 2561, - [2562] = 2513, + [2561] = 2553, + [2562] = 2562, [2563] = 2563, [2564] = 2564, [2565] = 2565, - [2566] = 2545, + [2566] = 2566, [2567] = 2567, [2568] = 2568, [2569] = 2569, - [2570] = 2523, - [2571] = 2530, - [2572] = 2505, - [2573] = 2547, - [2574] = 2560, + [2570] = 2570, + [2571] = 2571, + [2572] = 2572, + [2573] = 2573, + [2574] = 2574, [2575] = 2575, - [2576] = 2506, - [2577] = 2559, - [2578] = 2509, + [2576] = 2576, + [2577] = 2577, + [2578] = 2578, [2579] = 2579, - [2580] = 2580, - [2581] = 2581, - [2582] = 2567, - [2583] = 2583, - [2584] = 2563, + [2580] = 2085, + [2581] = 2092, + [2582] = 2101, + [2583] = 2093, + [2584] = 2584, [2585] = 2585, [2586] = 2586, [2587] = 2587, - [2588] = 2528, - [2589] = 2589, - [2590] = 2590, - [2591] = 2591, - [2592] = 2592, - [2593] = 2548, - [2594] = 2495, - [2595] = 2496, - [2596] = 2497, - [2597] = 2498, - [2598] = 2499, - [2599] = 2503, - [2600] = 2505, - [2601] = 2506, + [2588] = 2588, + [2589] = 2082, + [2590] = 2086, + [2591] = 2088, + [2592] = 2091, + [2593] = 2573, + [2594] = 2549, + [2595] = 2595, + [2596] = 2562, + [2597] = 2597, + [2598] = 2598, + [2599] = 2574, + [2600] = 2600, + [2601] = 2601, [2602] = 2602, - [2603] = 2509, + [2603] = 2603, [2604] = 2604, - [2605] = 2605, + [2605] = 2559, [2606] = 2606, - [2607] = 2518, + [2607] = 2607, [2608] = 2608, - [2609] = 2583, - [2610] = 2526, + [2609] = 2609, + [2610] = 2606, [2611] = 2611, - [2612] = 2547, - [2613] = 2590, - [2614] = 2554, - [2615] = 2567, - [2616] = 2583, - [2617] = 2563, - [2618] = 2585, - [2619] = 2591, - [2620] = 2592, - [2621] = 2548, + [2612] = 2612, + [2613] = 2613, + [2614] = 2614, + [2615] = 2615, + [2616] = 2551, + [2617] = 2607, + [2618] = 2618, + [2619] = 2619, + [2620] = 2620, + [2621] = 2609, [2622] = 2622, - [2623] = 2496, - [2624] = 2497, - [2625] = 2499, - [2626] = 2503, - [2627] = 2505, - [2628] = 2518, - [2629] = 2547, - [2630] = 2563, - [2631] = 2585, - [2632] = 2632, - [2633] = 2592, - [2634] = 2496, - [2635] = 2497, - [2636] = 2503, - [2637] = 2505, - [2638] = 2638, - [2639] = 2524, - [2640] = 2500, - [2641] = 2563, - [2642] = 2496, - [2643] = 2503, - [2644] = 2505, + [2623] = 2623, + [2624] = 2607, + [2625] = 2564, + [2626] = 2602, + [2627] = 2584, + [2628] = 2553, + [2629] = 2629, + [2630] = 2562, + [2631] = 2631, + [2632] = 2564, + [2633] = 2565, + [2634] = 2634, + [2635] = 2635, + [2636] = 2609, + [2637] = 2563, + [2638] = 2572, + [2639] = 2639, + [2640] = 2640, + [2641] = 2576, + [2642] = 2577, + [2643] = 2566, + [2644] = 2644, [2645] = 2645, - [2646] = 2538, - [2647] = 2511, - [2648] = 2503, - [2649] = 2505, - [2650] = 2503, - [2651] = 2505, - [2652] = 2503, - [2653] = 2505, - [2654] = 2503, - [2655] = 2505, - [2656] = 2503, - [2657] = 2505, - [2658] = 2503, - [2659] = 2505, - [2660] = 2561, - [2661] = 2661, - [2662] = 2662, - [2663] = 2494, - [2664] = 2664, - [2665] = 2517, - [2666] = 2069, - [2667] = 2551, - [2668] = 2557, - [2669] = 2611, - [2670] = 2054, - [2671] = 2671, - [2672] = 2501, - [2673] = 2673, - [2674] = 2525, - [2675] = 2675, - [2676] = 2676, + [2646] = 2646, + [2647] = 2558, + [2648] = 2648, + [2649] = 2556, + [2650] = 2578, + [2651] = 2565, + [2652] = 2557, + [2653] = 2579, + [2654] = 2567, + [2655] = 2585, + [2656] = 2656, + [2657] = 2549, + [2658] = 2597, + [2659] = 2639, + [2660] = 2648, + [2661] = 2553, + [2662] = 2603, + [2663] = 2562, + [2664] = 2564, + [2665] = 2665, + [2666] = 2603, + [2667] = 2648, + [2668] = 2571, + [2669] = 2607, + [2670] = 2565, + [2671] = 2564, + [2672] = 2567, + [2673] = 2565, + [2674] = 2611, + [2675] = 2554, + [2676] = 2550, [2677] = 2677, - [2678] = 2553, - [2679] = 2679, + [2678] = 2678, + [2679] = 2629, [2680] = 2680, [2681] = 2681, - [2682] = 2035, - [2683] = 2540, - [2684] = 2567, - [2685] = 2541, - [2686] = 2645, - [2687] = 2583, - [2688] = 2563, - [2689] = 2568, - [2690] = 2585, - [2691] = 2691, - [2692] = 143, - [2693] = 2512, - [2694] = 2673, - [2695] = 2676, - [2696] = 2036, - [2697] = 2585, - [2698] = 2698, - [2699] = 2586, - [2700] = 2602, - [2701] = 2608, + [2682] = 2572, + [2683] = 2683, + [2684] = 2648, + [2685] = 2685, + [2686] = 2686, + [2687] = 2576, + [2688] = 2688, + [2689] = 2576, + [2690] = 2579, + [2691] = 2577, + [2692] = 2573, + [2693] = 2571, + [2694] = 2683, + [2695] = 2695, + [2696] = 2686, + [2697] = 2572, + [2698] = 2574, + [2699] = 2576, + [2700] = 2585, + [2701] = 2701, [2702] = 2702, - [2703] = 2586, - [2704] = 2638, - [2705] = 2526, - [2706] = 2702, - [2707] = 2494, - [2708] = 2494, - [2709] = 2611, - [2710] = 2590, - [2711] = 2711, - [2712] = 2591, - [2713] = 2494, - [2714] = 2611, - [2715] = 2591, - [2716] = 2041, - [2717] = 2592, - [2718] = 2043, - [2719] = 2558, - [2720] = 2677, - [2721] = 2675, - [2722] = 2548, - [2723] = 2046, - [2724] = 2556, - [2725] = 2502, - [2726] = 2048, - [2727] = 2592, - [2728] = 2728, - [2729] = 2728, - [2730] = 2495, - [2731] = 2731, + [2703] = 2577, + [2704] = 2704, + [2705] = 2549, + [2706] = 2601, + [2707] = 2606, + [2708] = 2597, + [2709] = 2709, + [2710] = 2702, + [2711] = 2701, + [2712] = 2712, + [2713] = 2612, + [2714] = 2622, + [2715] = 2578, + [2716] = 2716, + [2717] = 2579, + [2718] = 2718, + [2719] = 2585, + [2720] = 2586, + [2721] = 2604, + [2722] = 2578, + [2723] = 2564, + [2724] = 2579, + [2725] = 2579, + [2726] = 2549, + [2727] = 2597, + [2728] = 2585, + [2729] = 2588, + [2730] = 2586, + [2731] = 2552, [2732] = 2732, - [2733] = 2733, - [2734] = 2734, + [2733] = 2595, + [2734] = 2575, [2735] = 2735, [2736] = 2736, - [2737] = 2737, - [2738] = 2738, - [2739] = 2739, + [2737] = 2588, + [2738] = 2597, + [2739] = 2639, [2740] = 2740, - [2741] = 2741, - [2742] = 2742, - [2743] = 2743, - [2744] = 2744, - [2745] = 2745, + [2741] = 2587, + [2742] = 2603, + [2743] = 2549, + [2744] = 2716, + [2745] = 2597, [2746] = 2746, - [2747] = 2747, + [2747] = 2549, [2748] = 2748, [2749] = 2749, - [2750] = 2750, - [2751] = 2751, - [2752] = 2752, - [2753] = 2753, - [2754] = 2754, - [2755] = 2755, - [2756] = 2102, - [2757] = 2757, - [2758] = 2758, - [2759] = 2759, - [2760] = 2760, - [2761] = 2103, - [2762] = 2762, + [2750] = 2597, + [2751] = 2549, + [2752] = 2549, + [2753] = 2746, + [2754] = 2748, + [2755] = 2597, + [2756] = 2756, + [2757] = 2597, + [2758] = 2549, + [2759] = 2598, + [2760] = 2597, + [2761] = 2549, + [2762] = 2597, [2763] = 2763, - [2764] = 2764, - [2765] = 2765, - [2766] = 2085, + [2764] = 2549, + [2765] = 2735, + [2766] = 2597, [2767] = 2767, - [2768] = 2768, - [2769] = 2769, + [2768] = 2749, + [2769] = 2598, [2770] = 2770, - [2771] = 2771, - [2772] = 2772, - [2773] = 2773, - [2774] = 2774, - [2775] = 2775, - [2776] = 2776, - [2777] = 2774, - [2778] = 2778, - [2779] = 2779, - [2780] = 2734, - [2781] = 2735, - [2782] = 2782, + [2771] = 2639, + [2772] = 2736, + [2773] = 2600, + [2774] = 2695, + [2775] = 2631, + [2776] = 2688, + [2777] = 2600, + [2778] = 2570, + [2779] = 2548, + [2780] = 2648, + [2781] = 2770, + [2782] = 2569, [2783] = 2783, - [2784] = 2753, - [2785] = 2096, - [2786] = 2773, + [2784] = 2784, + [2785] = 2785, + [2786] = 2786, [2787] = 2787, [2788] = 2788, [2789] = 2789, @@ -6659,40 +6690,40 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2791] = 2791, [2792] = 2792, [2793] = 2793, - [2794] = 2104, - [2795] = 2742, + [2794] = 2794, + [2795] = 2795, [2796] = 2796, - [2797] = 2107, - [2798] = 2751, + [2797] = 2784, + [2798] = 2798, [2799] = 2799, - [2800] = 2125, - [2801] = 2801, - [2802] = 2094, - [2803] = 2121, + [2800] = 2787, + [2801] = 2796, + [2802] = 2802, + [2803] = 2803, [2804] = 2804, [2805] = 2805, - [2806] = 2806, + [2806] = 2798, [2807] = 2807, [2808] = 2808, [2809] = 2809, [2810] = 2810, - [2811] = 2767, + [2811] = 2811, [2812] = 2812, [2813] = 2813, - [2814] = 2791, - [2815] = 2747, - [2816] = 2816, + [2814] = 2814, + [2815] = 2815, + [2816] = 2810, [2817] = 2817, [2818] = 2818, [2819] = 2819, [2820] = 2820, [2821] = 2821, - [2822] = 2809, + [2822] = 2792, [2823] = 2823, - [2824] = 2757, - [2825] = 2825, + [2824] = 2824, + [2825] = 2815, [2826] = 2826, - [2827] = 2827, + [2827] = 2799, [2828] = 2828, [2829] = 2829, [2830] = 2830, @@ -6701,790 +6732,879 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2833] = 2833, [2834] = 2834, [2835] = 2835, - [2836] = 2753, - [2837] = 2837, + [2836] = 2836, + [2837] = 2802, [2838] = 2838, [2839] = 2839, [2840] = 2840, - [2841] = 380, + [2841] = 2841, [2842] = 2842, [2843] = 2843, [2844] = 2844, - [2845] = 2126, - [2846] = 2817, + [2845] = 2845, + [2846] = 2846, [2847] = 2847, - [2848] = 2848, + [2848] = 2808, [2849] = 2849, - [2850] = 2757, - [2851] = 2770, + [2850] = 2850, + [2851] = 2851, [2852] = 2852, - [2853] = 2805, - [2854] = 2806, - [2855] = 2828, + [2853] = 2853, + [2854] = 2854, + [2855] = 2818, [2856] = 2856, - [2857] = 2839, + [2857] = 2821, [2858] = 2858, [2859] = 2859, [2860] = 2860, - [2861] = 156, - [2862] = 2793, + [2861] = 2811, + [2862] = 2862, [2863] = 2863, - [2864] = 2752, + [2864] = 2864, [2865] = 2865, - [2866] = 2764, - [2867] = 2755, + [2866] = 2866, + [2867] = 2867, [2868] = 2868, [2869] = 2869, - [2870] = 2870, - [2871] = 2077, - [2872] = 2809, + [2870] = 2864, + [2871] = 2871, + [2872] = 2872, [2873] = 2873, [2874] = 2874, - [2875] = 2826, + [2875] = 2875, [2876] = 2876, - [2877] = 2079, - [2878] = 2122, - [2879] = 2812, + [2877] = 2877, + [2878] = 2878, + [2879] = 2879, [2880] = 2880, - [2881] = 2753, - [2882] = 2098, - [2883] = 2812, - [2884] = 2771, - [2885] = 2783, + [2881] = 2881, + [2882] = 2882, + [2883] = 2883, + [2884] = 2884, + [2885] = 2885, [2886] = 2886, [2887] = 2887, [2888] = 2888, [2889] = 2889, - [2890] = 2869, - [2891] = 2873, - [2892] = 2876, + [2890] = 2890, + [2891] = 2891, + [2892] = 2892, [2893] = 2893, - [2894] = 2106, - [2895] = 2091, + [2894] = 2894, + [2895] = 2895, [2896] = 2896, - [2897] = 2115, - [2898] = 2849, - [2899] = 2088, + [2897] = 2897, + [2898] = 2898, + [2899] = 2884, [2900] = 2900, - [2901] = 2901, - [2902] = 2808, - [2903] = 2741, - [2904] = 2835, - [2905] = 2732, + [2901] = 2791, + [2902] = 2786, + [2903] = 2796, + [2904] = 2904, + [2905] = 2905, [2906] = 2906, - [2907] = 2772, - [2908] = 2908, + [2907] = 2907, + [2908] = 2785, [2909] = 2909, - [2910] = 2910, - [2911] = 2733, - [2912] = 2093, + [2910] = 2783, + [2911] = 2884, + [2912] = 2788, [2913] = 2913, - [2914] = 2914, - [2915] = 2915, - [2916] = 2901, + [2914] = 2790, + [2915] = 2835, + [2916] = 2916, [2917] = 2917, - [2918] = 2736, + [2918] = 2918, [2919] = 2919, [2920] = 2920, - [2921] = 2825, + [2921] = 2884, [2922] = 2922, - [2923] = 2097, + [2923] = 2923, [2924] = 2924, - [2925] = 2737, - [2926] = 2112, + [2925] = 2925, + [2926] = 2836, [2927] = 2927, [2928] = 2928, [2929] = 2929, - [2930] = 2930, - [2931] = 2931, + [2930] = 2795, + [2931] = 2791, [2932] = 2932, [2933] = 2933, - [2934] = 2739, - [2935] = 2834, - [2936] = 2821, - [2937] = 2738, + [2934] = 2843, + [2935] = 2935, + [2936] = 2845, + [2937] = 2937, [2938] = 2938, - [2939] = 2939, + [2939] = 2833, [2940] = 2940, [2941] = 2941, - [2942] = 2942, + [2942] = 2925, [2943] = 2943, - [2944] = 2790, + [2944] = 2944, [2945] = 2945, - [2946] = 2742, - [2947] = 2758, + [2946] = 2946, + [2947] = 2947, [2948] = 2948, - [2949] = 2101, - [2950] = 2859, - [2951] = 2747, - [2952] = 2909, - [2953] = 2078, + [2949] = 2803, + [2950] = 2950, + [2951] = 2951, + [2952] = 2924, + [2953] = 2953, [2954] = 2954, [2955] = 2955, - [2956] = 2808, + [2956] = 365, [2957] = 2957, - [2958] = 2083, - [2959] = 2778, - [2960] = 2788, - [2961] = 2817, - [2962] = 2084, - [2963] = 2832, - [2964] = 2092, - [2965] = 2965, - [2966] = 2966, - [2967] = 2886, - [2968] = 2757, - [2969] = 2910, - [2970] = 2908, - [2971] = 2080, - [2972] = 2757, - [2973] = 2095, - [2974] = 2099, + [2958] = 2929, + [2959] = 2959, + [2960] = 2960, + [2961] = 2961, + [2962] = 2962, + [2963] = 2852, + [2964] = 2953, + [2965] = 2954, + [2966] = 2880, + [2967] = 2954, + [2968] = 2953, + [2969] = 2969, + [2970] = 2947, + [2971] = 2971, + [2972] = 2943, + [2973] = 2957, + [2974] = 2935, [2975] = 2975, - [2976] = 2833, + [2976] = 2940, [2977] = 2977, - [2978] = 2081, + [2978] = 2978, [2979] = 2979, - [2980] = 2980, - [2981] = 2751, - [2982] = 2745, - [2983] = 2127, - [2984] = 2805, + [2980] = 2863, + [2981] = 2929, + [2982] = 2856, + [2983] = 2858, + [2984] = 2924, [2985] = 2985, - [2986] = 2829, - [2987] = 2987, - [2988] = 2988, - [2989] = 2810, - [2990] = 2082, - [2991] = 2806, - [2992] = 2914, - [2993] = 2943, - [2994] = 2917, - [2995] = 2076, - [2996] = 2996, - [2997] = 2734, - [2998] = 2086, - [2999] = 2743, + [2986] = 2986, + [2987] = 2892, + [2988] = 2889, + [2989] = 2858, + [2990] = 2863, + [2991] = 2991, + [2992] = 2992, + [2993] = 2941, + [2994] = 2160, + [2995] = 2134, + [2996] = 2875, + [2997] = 2874, + [2998] = 2873, + [2999] = 2999, [3000] = 3000, - [3001] = 3001, - [3002] = 2933, - [3003] = 2787, - [3004] = 2830, - [3005] = 2744, - [3006] = 3006, - [3007] = 2818, - [3008] = 3006, + [3001] = 2866, + [3002] = 2142, + [3003] = 3003, + [3004] = 3004, + [3005] = 2796, + [3006] = 2847, + [3007] = 2137, + [3008] = 2933, [3009] = 2813, - [3010] = 2980, - [3011] = 2775, - [3012] = 2762, - [3013] = 2942, - [3014] = 3014, - [3015] = 2789, - [3016] = 3016, - [3017] = 2792, - [3018] = 2932, - [3019] = 2979, - [3020] = 3020, - [3021] = 2865, - [3022] = 2870, - [3023] = 2838, - [3024] = 2840, - [3025] = 3025, - [3026] = 3026, - [3027] = 3027, - [3028] = 2782, - [3029] = 3025, - [3030] = 2856, - [3031] = 2801, - [3032] = 2110, - [3033] = 3033, + [3010] = 2839, + [3011] = 2798, + [3012] = 2136, + [3013] = 2135, + [3014] = 2143, + [3015] = 2152, + [3016] = 2826, + [3017] = 2131, + [3018] = 2117, + [3019] = 2144, + [3020] = 2154, + [3021] = 2148, + [3022] = 2132, + [3023] = 2141, + [3024] = 2126, + [3025] = 2872, + [3026] = 2115, + [3027] = 2133, + [3028] = 2804, + [3029] = 2145, + [3030] = 2877, + [3031] = 2794, + [3032] = 2124, + [3033] = 2111, [3034] = 3034, [3035] = 3035, - [3036] = 3036, - [3037] = 3037, + [3036] = 2129, + [3037] = 2140, [3038] = 3038, - [3039] = 3039, - [3040] = 3040, - [3041] = 3041, - [3042] = 3042, - [3043] = 3043, - [3044] = 3044, - [3045] = 3034, + [3039] = 2151, + [3040] = 2789, + [3041] = 2130, + [3042] = 2884, + [3043] = 2147, + [3044] = 2149, + [3045] = 3045, [3046] = 3046, [3047] = 3047, - [3048] = 1210, + [3048] = 3048, [3049] = 3049, - [3050] = 3037, + [3050] = 2803, [3051] = 3051, - [3052] = 3044, + [3052] = 3052, [3053] = 3053, - [3054] = 3054, - [3055] = 3055, - [3056] = 3056, - [3057] = 3057, - [3058] = 3058, - [3059] = 1212, - [3060] = 3060, - [3061] = 1213, - [3062] = 3062, + [3054] = 2161, + [3055] = 2159, + [3056] = 2920, + [3057] = 2155, + [3058] = 2833, + [3059] = 3004, + [3060] = 2150, + [3061] = 2854, + [3062] = 2829, [3063] = 3063, - [3064] = 3064, - [3065] = 3065, - [3066] = 3040, - [3067] = 3067, - [3068] = 3068, - [3069] = 1228, - [3070] = 3070, - [3071] = 3071, - [3072] = 3067, - [3073] = 3073, - [3074] = 3074, - [3075] = 3075, - [3076] = 3076, - [3077] = 3077, - [3078] = 3078, - [3079] = 3042, - [3080] = 3080, - [3081] = 3081, + [3064] = 2859, + [3065] = 2860, + [3066] = 2917, + [3067] = 2886, + [3068] = 2888, + [3069] = 2868, + [3070] = 2869, + [3071] = 2123, + [3072] = 2885, + [3073] = 2900, + [3074] = 2909, + [3075] = 2907, + [3076] = 2122, + [3077] = 2128, + [3078] = 2127, + [3079] = 2904, + [3080] = 2986, + [3081] = 2928, [3082] = 3082, - [3083] = 3083, - [3084] = 3084, - [3085] = 3081, - [3086] = 3051, - [3087] = 3087, - [3088] = 3088, - [3089] = 3089, - [3090] = 3046, - [3091] = 3091, - [3092] = 3042, - [3093] = 3093, - [3094] = 3044, - [3095] = 3095, - [3096] = 3040, + [3083] = 2948, + [3084] = 2950, + [3085] = 2951, + [3086] = 2955, + [3087] = 2831, + [3088] = 166, + [3089] = 2894, + [3090] = 2959, + [3091] = 2979, + [3092] = 2923, + [3093] = 2999, + [3094] = 2991, + [3095] = 2922, + [3096] = 2890, [3097] = 3097, - [3098] = 3044, - [3099] = 3099, - [3100] = 3100, - [3101] = 3071, - [3102] = 3051, + [3098] = 3098, + [3099] = 1422, + [3100] = 1498, + [3101] = 3101, + [3102] = 3102, [3103] = 3103, - [3104] = 3091, - [3105] = 3057, - [3106] = 3093, + [3104] = 3104, + [3105] = 3105, + [3106] = 3106, [3107] = 3107, [3108] = 3108, - [3109] = 3063, - [3110] = 3040, - [3111] = 3067, - [3112] = 3068, + [3109] = 3109, + [3110] = 3110, + [3111] = 1433, + [3112] = 3112, [3113] = 3113, [3114] = 3114, [3115] = 3115, - [3116] = 3116, + [3116] = 3114, [3117] = 3117, [3118] = 3118, - [3119] = 3119, - [3120] = 3120, + [3119] = 3115, + [3120] = 3107, [3121] = 3121, - [3122] = 3044, + [3122] = 3122, [3123] = 3123, - [3124] = 3037, - [3125] = 3051, - [3126] = 3040, - [3127] = 3057, + [3124] = 3124, + [3125] = 3125, + [3126] = 3126, + [3127] = 3127, [3128] = 3128, [3129] = 3129, - [3130] = 3040, + [3130] = 3114, [3131] = 3131, - [3132] = 3067, - [3133] = 3068, - [3134] = 3051, - [3135] = 3039, - [3136] = 3060, - [3137] = 3097, - [3138] = 3138, - [3139] = 3118, + [3132] = 3110, + [3133] = 3133, + [3134] = 3134, + [3135] = 3110, + [3136] = 3122, + [3137] = 3137, + [3138] = 3124, + [3139] = 3105, [3140] = 3140, - [3141] = 3141, - [3142] = 3051, - [3143] = 3033, - [3144] = 3115, - [3145] = 3040, - [3146] = 3067, - [3147] = 3068, + [3141] = 3134, + [3142] = 3131, + [3143] = 3143, + [3144] = 3144, + [3145] = 3145, + [3146] = 3146, + [3147] = 3147, [3148] = 3148, - [3149] = 3054, - [3150] = 3047, + [3149] = 3149, + [3150] = 3150, [3151] = 3151, [3152] = 3152, [3153] = 3153, [3154] = 3154, [3155] = 3155, [3156] = 3156, - [3157] = 3051, - [3158] = 3040, + [3157] = 3115, + [3158] = 3158, [3159] = 3159, - [3160] = 3067, - [3161] = 3068, - [3162] = 3162, + [3160] = 3109, + [3161] = 3161, + [3162] = 3107, [3163] = 3163, - [3164] = 3051, - [3165] = 3040, - [3166] = 1292, - [3167] = 3067, - [3168] = 3068, + [3164] = 3164, + [3165] = 3165, + [3166] = 3166, + [3167] = 3167, + [3168] = 3168, [3169] = 3169, - [3170] = 3051, - [3171] = 3057, - [3172] = 3067, - [3173] = 3068, - [3174] = 3068, - [3175] = 3051, - [3176] = 3077, - [3177] = 3067, - [3178] = 3068, - [3179] = 2823, - [3180] = 3051, - [3181] = 2887, - [3182] = 3067, - [3183] = 3068, + [3170] = 3170, + [3171] = 3171, + [3172] = 3172, + [3173] = 3173, + [3174] = 3174, + [3175] = 3175, + [3176] = 3176, + [3177] = 3177, + [3178] = 3178, + [3179] = 3179, + [3180] = 3180, + [3181] = 3181, + [3182] = 3110, + [3183] = 3183, [3184] = 3184, - [3185] = 3077, - [3186] = 3067, - [3187] = 3068, - [3188] = 3188, + [3185] = 3169, + [3186] = 3186, + [3187] = 3127, + [3188] = 3126, [3189] = 3189, - [3190] = 3119, - [3191] = 3062, - [3192] = 3053, - [3193] = 3057, + [3190] = 3118, + [3191] = 3117, + [3192] = 1423, + [3193] = 3193, [3194] = 3194, [3195] = 3195, - [3196] = 3196, - [3197] = 3197, - [3198] = 3113, + [3196] = 3121, + [3197] = 3193, + [3198] = 3152, [3199] = 3199, - [3200] = 3033, - [3201] = 3201, - [3202] = 3153, + [3200] = 3200, + [3201] = 3153, + [3202] = 3202, [3203] = 3203, - [3204] = 3062, - [3205] = 3063, - [3206] = 3064, - [3207] = 3054, + [3204] = 3105, + [3205] = 3205, + [3206] = 3206, + [3207] = 3114, [3208] = 3208, - [3209] = 3107, - [3210] = 3116, - [3211] = 3056, - [3212] = 3212, - [3213] = 3152, - [3214] = 3163, + [3209] = 3209, + [3210] = 3131, + [3211] = 3211, + [3212] = 3169, + [3213] = 3213, + [3214] = 3214, [3215] = 3215, - [3216] = 3100, - [3217] = 3217, - [3218] = 3117, - [3219] = 3099, - [3220] = 3220, - [3221] = 3221, - [3222] = 3074, - [3223] = 3141, + [3216] = 3148, + [3217] = 3137, + [3218] = 3169, + [3219] = 3219, + [3220] = 3155, + [3221] = 3159, + [3222] = 3222, + [3223] = 3223, [3224] = 3224, - [3225] = 3162, - [3226] = 3169, - [3227] = 3227, + [3225] = 3225, + [3226] = 3226, + [3227] = 3112, [3228] = 3228, - [3229] = 3159, - [3230] = 3035, + [3229] = 3229, + [3230] = 3199, [3231] = 3231, - [3232] = 3232, - [3233] = 3233, - [3234] = 3038, - [3235] = 3063, - [3236] = 3064, - [3237] = 3228, - [3238] = 3238, - [3239] = 3040, - [3240] = 3070, - [3241] = 3224, - [3242] = 3242, - [3243] = 3243, - [3244] = 3244, - [3245] = 3242, - [3246] = 3246, - [3247] = 3067, - [3248] = 3151, - [3249] = 3068, + [3232] = 3231, + [3233] = 3211, + [3234] = 3234, + [3235] = 3235, + [3236] = 3153, + [3237] = 3229, + [3238] = 3226, + [3239] = 3155, + [3240] = 3115, + [3241] = 3098, + [3242] = 3215, + [3243] = 3159, + [3244] = 2876, + [3245] = 3113, + [3246] = 3206, + [3247] = 3205, + [3248] = 3097, + [3249] = 3110, [3250] = 3250, - [3251] = 3231, - [3252] = 3252, - [3253] = 3083, - [3254] = 3033, - [3255] = 3129, + [3251] = 3171, + [3252] = 2871, + [3253] = 3131, + [3254] = 3175, + [3255] = 3172, [3256] = 3256, - [3257] = 3123, - [3258] = 3070, - [3259] = 3071, - [3260] = 3082, - [3261] = 3039, - [3262] = 3113, - [3263] = 3131, - [3264] = 3153, - [3265] = 3265, - [3266] = 3056, - [3267] = 3267, - [3268] = 3268, - [3269] = 3154, - [3270] = 3040, - [3271] = 3221, - [3272] = 3212, - [3273] = 3113, - [3274] = 3080, - [3275] = 3087, - [3276] = 3220, - [3277] = 3277, - [3278] = 3113, - [3279] = 3243, - [3280] = 3121, - [3281] = 3199, - [3282] = 3215, - [3283] = 3267, - [3284] = 3244, - [3285] = 3238, - [3286] = 3233, - [3287] = 3227, - [3288] = 3155, - [3289] = 3040, - [3290] = 3128, - [3291] = 3036, - [3292] = 3095, - [3293] = 3208, - [3294] = 3043, - [3295] = 3295, - [3296] = 3188, - [3297] = 3297, - [3298] = 3121, - [3299] = 3267, - [3300] = 3188, - [3301] = 3267, - [3302] = 3188, - [3303] = 3081, - [3304] = 3058, - [3305] = 3114, - [3306] = 3297, - [3307] = 3307, - [3308] = 3246, - [3309] = 3103, - [3310] = 3082, - [3311] = 3051, - [3312] = 3312, - [3313] = 162, - [3314] = 3314, - [3315] = 3315, - [3316] = 3316, - [3317] = 3317, + [3257] = 3168, + [3258] = 3258, + [3259] = 3171, + [3260] = 3177, + [3261] = 3153, + [3262] = 3223, + [3263] = 3144, + [3264] = 3222, + [3265] = 3133, + [3266] = 3214, + [3267] = 3171, + [3268] = 3213, + [3269] = 3123, + [3270] = 3128, + [3271] = 3178, + [3272] = 3104, + [3273] = 3110, + [3274] = 3274, + [3275] = 3184, + [3276] = 3186, + [3277] = 3178, + [3278] = 3278, + [3279] = 3151, + [3280] = 3280, + [3281] = 3281, + [3282] = 3282, + [3283] = 3179, + [3284] = 3284, + [3285] = 3101, + [3286] = 3286, + [3287] = 3287, + [3288] = 3288, + [3289] = 3289, + [3290] = 3290, + [3291] = 3291, + [3292] = 3102, + [3293] = 3177, + [3294] = 3103, + [3295] = 3150, + [3296] = 3140, + [3297] = 3178, + [3298] = 3179, + [3299] = 3131, + [3300] = 3106, + [3301] = 3301, + [3302] = 3302, + [3303] = 3281, + [3304] = 3289, + [3305] = 3305, + [3306] = 3153, + [3307] = 3146, + [3308] = 3171, + [3309] = 3282, + [3310] = 3286, + [3311] = 3108, + [3312] = 3110, + [3313] = 3121, + [3314] = 3184, + [3315] = 3186, + [3316] = 3137, + [3317] = 3288, [3318] = 3318, - [3319] = 3319, - [3320] = 3320, - [3321] = 3321, + [3319] = 3110, + [3320] = 3302, + [3321] = 3318, [3322] = 3322, [3323] = 3323, [3324] = 3324, - [3325] = 164, - [3326] = 3321, - [3327] = 3320, - [3328] = 3328, + [3325] = 3325, + [3326] = 3184, + [3327] = 3186, + [3328] = 3110, [3329] = 3329, [3330] = 3330, - [3331] = 3331, - [3332] = 3332, - [3333] = 3333, - [3334] = 3334, - [3335] = 3335, - [3336] = 3336, - [3337] = 3337, - [3338] = 3338, - [3339] = 3339, - [3340] = 3340, - [3341] = 3341, - [3342] = 3314, - [3343] = 3343, - [3344] = 3344, - [3345] = 3345, - [3346] = 3346, + [3331] = 3195, + [3332] = 3184, + [3333] = 3153, + [3334] = 3209, + [3335] = 3152, + [3336] = 3110, + [3337] = 1460, + [3338] = 3184, + [3339] = 3186, + [3340] = 3186, + [3341] = 3250, + [3342] = 3325, + [3343] = 3203, + [3344] = 3194, + [3345] = 3189, + [3346] = 3195, [3347] = 3347, - [3348] = 3328, - [3349] = 3349, - [3350] = 3350, + [3348] = 3209, + [3349] = 3129, + [3350] = 3125, [3351] = 3351, - [3352] = 3352, - [3353] = 3353, - [3354] = 3354, - [3355] = 3355, - [3356] = 3356, - [3357] = 3357, - [3358] = 3358, - [3359] = 3359, + [3352] = 3280, + [3353] = 3194, + [3354] = 3153, + [3355] = 3110, + [3356] = 3284, + [3357] = 3184, + [3358] = 3186, + [3359] = 3183, [3360] = 3360, [3361] = 3361, - [3362] = 3362, - [3363] = 3363, - [3364] = 3363, - [3365] = 3362, - [3366] = 3366, + [3362] = 3181, + [3363] = 3153, + [3364] = 3110, + [3365] = 3184, + [3366] = 3186, [3367] = 3367, - [3368] = 3368, - [3369] = 3369, - [3370] = 3330, - [3371] = 3371, - [3372] = 3372, - [3373] = 3373, - [3374] = 3350, - [3375] = 3375, - [3376] = 3376, - [3377] = 3377, - [3378] = 3378, - [3379] = 3379, - [3380] = 3380, - [3381] = 3381, - [3382] = 3382, - [3383] = 3383, - [3384] = 3384, - [3385] = 3369, - [3386] = 3386, - [3387] = 3354, - [3388] = 3388, - [3389] = 3389, - [3390] = 3390, - [3391] = 3391, - [3392] = 3321, - [3393] = 3393, + [3368] = 3153, + [3369] = 3184, + [3370] = 3186, + [3371] = 3153, + [3372] = 3184, + [3373] = 3186, + [3374] = 3174, + [3375] = 3153, + [3376] = 3170, + [3377] = 3184, + [3378] = 3186, + [3379] = 3153, + [3380] = 3184, + [3381] = 3186, + [3382] = 3203, + [3383] = 3167, + [3384] = 3351, + [3385] = 3145, + [3386] = 3360, + [3387] = 3387, + [3388] = 3361, + [3389] = 3329, + [3390] = 3164, + [3391] = 3161, + [3392] = 3158, + [3393] = 3387, [3394] = 3394, - [3395] = 3395, - [3396] = 3396, - [3397] = 3361, - [3398] = 3398, - [3399] = 3399, + [3395] = 3169, + [3396] = 3394, + [3397] = 3155, + [3398] = 3129, + [3399] = 3211, [3400] = 3400, - [3401] = 3336, + [3401] = 3401, [3402] = 3402, [3403] = 3403, - [3404] = 3329, - [3405] = 3363, - [3406] = 3339, + [3404] = 3404, + [3405] = 3405, + [3406] = 3406, [3407] = 3407, - [3408] = 3336, + [3408] = 3408, [3409] = 3409, [3410] = 3410, - [3411] = 3321, + [3411] = 3411, [3412] = 3412, [3413] = 3413, [3414] = 3414, [3415] = 3415, - [3416] = 3334, + [3416] = 3412, [3417] = 3417, [3418] = 3418, [3419] = 3419, [3420] = 3420, - [3421] = 3343, + [3421] = 3421, [3422] = 3422, [3423] = 3423, - [3424] = 3394, + [3424] = 3424, [3425] = 3425, - [3426] = 3358, - [3427] = 3338, + [3426] = 3426, + [3427] = 3427, [3428] = 3428, - [3429] = 3380, - [3430] = 3340, + [3429] = 170, + [3430] = 3430, [3431] = 3431, - [3432] = 3414, - [3433] = 3433, + [3432] = 3432, + [3433] = 3422, [3434] = 3434, [3435] = 3435, [3436] = 3436, [3437] = 3437, - [3438] = 3372, + [3438] = 3438, [3439] = 3439, - [3440] = 3312, + [3440] = 3440, [3441] = 3441, - [3442] = 3361, - [3443] = 3433, - [3444] = 3395, - [3445] = 3355, - [3446] = 3446, - [3447] = 3379, - [3448] = 3351, - [3449] = 3420, - [3450] = 3398, - [3451] = 3380, + [3442] = 3442, + [3443] = 3400, + [3444] = 3444, + [3445] = 3445, + [3446] = 3407, + [3447] = 3447, + [3448] = 3448, + [3449] = 3449, + [3450] = 3450, + [3451] = 3451, [3452] = 3452, [3453] = 3453, - [3454] = 3312, - [3455] = 3322, - [3456] = 3456, - [3457] = 3457, + [3454] = 3407, + [3455] = 3404, + [3456] = 3442, + [3457] = 3430, [3458] = 3458, - [3459] = 3349, - [3460] = 3436, - [3461] = 3376, - [3462] = 3382, + [3459] = 3420, + [3460] = 3460, + [3461] = 3461, + [3462] = 3462, [3463] = 3463, - [3464] = 3322, - [3465] = 3324, - [3466] = 3466, - [3467] = 3357, - [3468] = 3321, - [3469] = 3332, - [3470] = 3360, + [3464] = 3464, + [3465] = 3465, + [3466] = 3452, + [3467] = 3467, + [3468] = 3468, + [3469] = 3469, + [3470] = 3470, [3471] = 3471, [3472] = 3472, - [3473] = 3338, + [3473] = 3473, [3474] = 3474, - [3475] = 3340, - [3476] = 3393, - [3477] = 3363, - [3478] = 3350, - [3479] = 3441, + [3475] = 3465, + [3476] = 3468, + [3477] = 3477, + [3478] = 3478, + [3479] = 3479, [3480] = 3480, - [3481] = 3312, + [3481] = 3481, [3482] = 3482, - [3483] = 3369, - [3484] = 3330, + [3483] = 3483, + [3484] = 3422, [3485] = 3485, - [3486] = 3372, + [3486] = 3486, [3487] = 3487, - [3488] = 3463, + [3488] = 3478, [3489] = 3489, [3490] = 3490, - [3491] = 3377, - [3492] = 3492, - [3493] = 3360, - [3494] = 3376, - [3495] = 3324, - [3496] = 3379, - [3497] = 3497, - [3498] = 3324, - [3499] = 3371, - [3500] = 3413, - [3501] = 3332, - [3502] = 3502, - [3503] = 3466, - [3504] = 3340, - [3505] = 3359, - [3506] = 3471, - [3507] = 3369, - [3508] = 3372, - [3509] = 3390, + [3491] = 3491, + [3492] = 3462, + [3493] = 3419, + [3494] = 3494, + [3495] = 3441, + [3496] = 3496, + [3497] = 3440, + [3498] = 3472, + [3499] = 3439, + [3500] = 3438, + [3501] = 3501, + [3502] = 3479, + [3503] = 3471, + [3504] = 3410, + [3505] = 3490, + [3506] = 3506, + [3507] = 3409, + [3508] = 3508, + [3509] = 3437, [3510] = 3510, - [3511] = 3368, - [3512] = 3512, - [3513] = 3376, - [3514] = 3332, + [3511] = 3411, + [3512] = 3422, + [3513] = 3436, + [3514] = 3514, [3515] = 3515, - [3516] = 3340, - [3517] = 3425, - [3518] = 3372, - [3519] = 3376, - [3520] = 3332, - [3521] = 3340, - [3522] = 3372, - [3523] = 3332, - [3524] = 3340, - [3525] = 3372, - [3526] = 3332, - [3527] = 3332, - [3528] = 3332, - [3529] = 3332, - [3530] = 3332, - [3531] = 3453, + [3516] = 3516, + [3517] = 3517, + [3518] = 3518, + [3519] = 3519, + [3520] = 3520, + [3521] = 3520, + [3522] = 3522, + [3523] = 3435, + [3524] = 3524, + [3525] = 3525, + [3526] = 3462, + [3527] = 3527, + [3528] = 3528, + [3529] = 3529, + [3530] = 3530, + [3531] = 3531, [3532] = 3532, - [3533] = 3368, - [3534] = 3360, - [3535] = 3535, - [3536] = 3431, - [3537] = 3315, - [3538] = 3457, - [3539] = 3510, + [3533] = 3501, + [3534] = 3481, + [3535] = 3417, + [3536] = 3536, + [3537] = 3464, + [3538] = 3519, + [3539] = 3539, [3540] = 3540, [3541] = 3541, - [3542] = 3381, - [3543] = 3417, - [3544] = 3535, - [3545] = 3412, - [3546] = 3358, - [3547] = 3352, - [3548] = 3456, - [3549] = 3353, - [3550] = 3380, - [3551] = 3436, + [3542] = 3542, + [3543] = 3543, + [3544] = 3471, + [3545] = 3545, + [3546] = 3467, + [3547] = 3426, + [3548] = 3531, + [3549] = 3549, + [3550] = 3550, + [3551] = 3551, [3552] = 3552, - [3553] = 3380, - [3554] = 3540, + [3553] = 3424, + [3554] = 3413, [3555] = 3555, - [3556] = 3383, - [3557] = 3389, - [3558] = 3316, - [3559] = 3331, - [3560] = 3560, - [3561] = 3380, - [3562] = 3562, - [3563] = 3541, - [3564] = 3453, - [3565] = 3435, + [3556] = 3556, + [3557] = 3490, + [3558] = 3406, + [3559] = 3408, + [3560] = 3519, + [3561] = 3527, + [3562] = 3462, + [3563] = 3418, + [3564] = 3541, + [3565] = 3486, [3566] = 3566, - [3567] = 3384, - [3568] = 3358, - [3569] = 3317, - [3570] = 3373, - [3571] = 3388, - [3572] = 3472, - [3573] = 3422, - [3574] = 3574, - [3575] = 3492, - [3576] = 3375, - [3577] = 3577, - [3578] = 3378, - [3579] = 3535, - [3580] = 3431, - [3581] = 3457, - [3582] = 3510, - [3583] = 3437, - [3584] = 3391, - [3585] = 3535, - [3586] = 3510, - [3587] = 3587, - [3588] = 3577, - [3589] = 3510, - [3590] = 3510, - [3591] = 3510, - [3592] = 3555, - [3593] = 3452, + [3567] = 3424, + [3568] = 3470, + [3569] = 3426, + [3570] = 3473, + [3571] = 3536, + [3572] = 3436, + [3573] = 3529, + [3574] = 3418, + [3575] = 3407, + [3576] = 162, + [3577] = 3442, + [3578] = 3430, + [3579] = 3473, + [3580] = 3420, + [3581] = 3413, + [3582] = 3566, + [3583] = 3482, + [3584] = 3584, + [3585] = 3422, + [3586] = 3586, + [3587] = 3401, + [3588] = 3434, + [3589] = 3413, + [3590] = 3590, + [3591] = 3591, + [3592] = 3592, + [3593] = 3408, [3594] = 3594, - [3595] = 3595, - [3596] = 3458, - [3597] = 3487, - [3598] = 3400, - [3599] = 3409, - [3600] = 3407, - [3601] = 3376, - [3602] = 3367, - [3603] = 3603, - [3604] = 3497, - [3605] = 3605, - [3606] = 3428, - [3607] = 3566, - [3608] = 3552, - [3609] = 3332, - [3610] = 3347, - [3611] = 3453, - [3612] = 3482, - [3613] = 3613, - [3614] = 3614, - [3615] = 3615, - [3616] = 3616, - [3617] = 3617, - [3618] = 3618, - [3619] = 3619, + [3595] = 3449, + [3596] = 3418, + [3597] = 3444, + [3598] = 3598, + [3599] = 3426, + [3600] = 3462, + [3601] = 3452, + [3602] = 3442, + [3603] = 3420, + [3604] = 3421, + [3605] = 3529, + [3606] = 3606, + [3607] = 3506, + [3608] = 3413, + [3609] = 3418, + [3610] = 3486, + [3611] = 3426, + [3612] = 3487, + [3613] = 3420, + [3614] = 3413, + [3615] = 3418, + [3616] = 3426, + [3617] = 3420, + [3618] = 3418, + [3619] = 3426, + [3620] = 3420, + [3621] = 3418, + [3622] = 3418, + [3623] = 3418, + [3624] = 3418, + [3625] = 3418, + [3626] = 3626, + [3627] = 3403, + [3628] = 3531, + [3629] = 3629, + [3630] = 3630, + [3631] = 3631, + [3632] = 3592, + [3633] = 3633, + [3634] = 3545, + [3635] = 3543, + [3636] = 3542, + [3637] = 3637, + [3638] = 3638, + [3639] = 3415, + [3640] = 3640, + [3641] = 3524, + [3642] = 3519, + [3643] = 3643, + [3644] = 3631, + [3645] = 3432, + [3646] = 3448, + [3647] = 3510, + [3648] = 3483, + [3649] = 3485, + [3650] = 3408, + [3651] = 3651, + [3652] = 3405, + [3653] = 3653, + [3654] = 3406, + [3655] = 3655, + [3656] = 3477, + [3657] = 3462, + [3658] = 3501, + [3659] = 3659, + [3660] = 3529, + [3661] = 3471, + [3662] = 3474, + [3663] = 3663, + [3664] = 3517, + [3665] = 3665, + [3666] = 3516, + [3667] = 3665, + [3668] = 3555, + [3669] = 3552, + [3670] = 3532, + [3671] = 3514, + [3672] = 3598, + [3673] = 3663, + [3674] = 3423, + [3675] = 3659, + [3676] = 3631, + [3677] = 3592, + [3678] = 3545, + [3679] = 3543, + [3680] = 3591, + [3681] = 3590, + [3682] = 3631, + [3683] = 3543, + [3684] = 3684, + [3685] = 3685, + [3686] = 3543, + [3687] = 3543, + [3688] = 3543, + [3689] = 3428, + [3690] = 3651, + [3691] = 3427, + [3692] = 3489, + [3693] = 3528, + [3694] = 3425, + [3695] = 3490, + [3696] = 3496, + [3697] = 3494, + [3698] = 3698, + [3699] = 3414, + [3700] = 3700, + [3701] = 3515, + [3702] = 3702, + [3703] = 3703, + [3704] = 3704, + [3705] = 3705, + [3706] = 3706, + [3707] = 3707, + [3708] = 3708, }; static TSCharacterRange sym_identifier_character_set_1[] = { @@ -7547,31 +7667,29 @@ static TSCharacterRange sym_identifier_character_set_1[] = { {0x10c00, 0x10c48}, {0x10c80, 0x10cb2}, {0x10cc0, 0x10cf2}, {0x10d00, 0x10d23}, {0x10e80, 0x10ea9}, {0x10eb0, 0x10eb1}, {0x10f00, 0x10f1c}, {0x10f27, 0x10f27}, {0x10f30, 0x10f45}, {0x10f70, 0x10f81}, {0x10fb0, 0x10fc4}, {0x10fe0, 0x10ff6}, {0x11003, 0x11037}, {0x11071, 0x11072}, {0x11075, 0x11075}, {0x11083, 0x110af}, {0x110d0, 0x110e8}, {0x11103, 0x11126}, {0x11144, 0x11144}, {0x11147, 0x11147}, {0x11150, 0x11172}, {0x11176, 0x11176}, {0x11183, 0x111b2}, {0x111c1, 0x111c4}, - {0x111da, 0x111da}, {0x111dc, 0x111dc}, {0x11200, 0x11211}, {0x11213, 0x1122b}, {0x1123f, 0x11240}, {0x11280, 0x11286}, {0x11288, 0x11288}, {0x1128a, 0x1128d}, - {0x1128f, 0x1129d}, {0x1129f, 0x112a8}, {0x112b0, 0x112de}, {0x11305, 0x1130c}, {0x1130f, 0x11310}, {0x11313, 0x11328}, {0x1132a, 0x11330}, {0x11332, 0x11333}, - {0x11335, 0x11339}, {0x1133d, 0x1133d}, {0x11350, 0x11350}, {0x1135d, 0x11361}, {0x11400, 0x11434}, {0x11447, 0x1144a}, {0x1145f, 0x11461}, {0x11480, 0x114af}, - {0x114c4, 0x114c5}, {0x114c7, 0x114c7}, {0x11580, 0x115ae}, {0x115d8, 0x115db}, {0x11600, 0x1162f}, {0x11644, 0x11644}, {0x11680, 0x116aa}, {0x116b8, 0x116b8}, - {0x11700, 0x1171a}, {0x11740, 0x11746}, {0x11800, 0x1182b}, {0x118a0, 0x118df}, {0x118ff, 0x11906}, {0x11909, 0x11909}, {0x1190c, 0x11913}, {0x11915, 0x11916}, - {0x11918, 0x1192f}, {0x1193f, 0x1193f}, {0x11941, 0x11941}, {0x119a0, 0x119a7}, {0x119aa, 0x119d0}, {0x119e1, 0x119e1}, {0x119e3, 0x119e3}, {0x11a00, 0x11a00}, - {0x11a0b, 0x11a32}, {0x11a3a, 0x11a3a}, {0x11a50, 0x11a50}, {0x11a5c, 0x11a89}, {0x11a9d, 0x11a9d}, {0x11ab0, 0x11af8}, {0x11c00, 0x11c08}, {0x11c0a, 0x11c2e}, - {0x11c40, 0x11c40}, {0x11c72, 0x11c8f}, {0x11d00, 0x11d06}, {0x11d08, 0x11d09}, {0x11d0b, 0x11d30}, {0x11d46, 0x11d46}, {0x11d60, 0x11d65}, {0x11d67, 0x11d68}, - {0x11d6a, 0x11d89}, {0x11d98, 0x11d98}, {0x11ee0, 0x11ef2}, {0x11f02, 0x11f02}, {0x11f04, 0x11f10}, {0x11f12, 0x11f33}, {0x11fb0, 0x11fb0}, {0x12000, 0x12399}, - {0x12400, 0x1246e}, {0x12480, 0x12543}, {0x12f90, 0x12ff0}, {0x13000, 0x1342f}, {0x13441, 0x13446}, {0x14400, 0x14646}, {0x16800, 0x16a38}, {0x16a40, 0x16a5e}, - {0x16a70, 0x16abe}, {0x16ad0, 0x16aed}, {0x16b00, 0x16b2f}, {0x16b40, 0x16b43}, {0x16b63, 0x16b77}, {0x16b7d, 0x16b8f}, {0x16e40, 0x16e7f}, {0x16f00, 0x16f4a}, - {0x16f50, 0x16f50}, {0x16f93, 0x16f9f}, {0x16fe0, 0x16fe1}, {0x16fe3, 0x16fe3}, {0x17000, 0x187f7}, {0x18800, 0x18cd5}, {0x18d00, 0x18d08}, {0x1aff0, 0x1aff3}, - {0x1aff5, 0x1affb}, {0x1affd, 0x1affe}, {0x1b000, 0x1b122}, {0x1b132, 0x1b132}, {0x1b150, 0x1b152}, {0x1b155, 0x1b155}, {0x1b164, 0x1b167}, {0x1b170, 0x1b2fb}, - {0x1bc00, 0x1bc6a}, {0x1bc70, 0x1bc7c}, {0x1bc80, 0x1bc88}, {0x1bc90, 0x1bc99}, {0x1d400, 0x1d454}, {0x1d456, 0x1d49c}, {0x1d49e, 0x1d49f}, {0x1d4a2, 0x1d4a2}, - {0x1d4a5, 0x1d4a6}, {0x1d4a9, 0x1d4ac}, {0x1d4ae, 0x1d4b9}, {0x1d4bb, 0x1d4bb}, {0x1d4bd, 0x1d4c3}, {0x1d4c5, 0x1d505}, {0x1d507, 0x1d50a}, {0x1d50d, 0x1d514}, - {0x1d516, 0x1d51c}, {0x1d51e, 0x1d539}, {0x1d53b, 0x1d53e}, {0x1d540, 0x1d544}, {0x1d546, 0x1d546}, {0x1d54a, 0x1d550}, {0x1d552, 0x1d6a5}, {0x1d6a8, 0x1d6c0}, - {0x1d6c2, 0x1d6da}, {0x1d6dc, 0x1d6fa}, {0x1d6fc, 0x1d714}, {0x1d716, 0x1d734}, {0x1d736, 0x1d74e}, {0x1d750, 0x1d76e}, {0x1d770, 0x1d788}, {0x1d78a, 0x1d7a8}, - {0x1d7aa, 0x1d7c2}, {0x1d7c4, 0x1d7cb}, {0x1df00, 0x1df1e}, {0x1df25, 0x1df2a}, {0x1e030, 0x1e06d}, {0x1e100, 0x1e12c}, {0x1e137, 0x1e13d}, {0x1e14e, 0x1e14e}, - {0x1e290, 0x1e2ad}, {0x1e2c0, 0x1e2eb}, {0x1e4d0, 0x1e4eb}, {0x1e7e0, 0x1e7e6}, {0x1e7e8, 0x1e7eb}, {0x1e7ed, 0x1e7ee}, {0x1e7f0, 0x1e7fe}, {0x1e800, 0x1e8c4}, - {0x1e900, 0x1e943}, {0x1e94b, 0x1e94b}, {0x1ee00, 0x1ee03}, {0x1ee05, 0x1ee1f}, {0x1ee21, 0x1ee22}, {0x1ee24, 0x1ee24}, {0x1ee27, 0x1ee27}, {0x1ee29, 0x1ee32}, - {0x1ee34, 0x1ee37}, {0x1ee39, 0x1ee39}, {0x1ee3b, 0x1ee3b}, {0x1ee42, 0x1ee42}, {0x1ee47, 0x1ee47}, {0x1ee49, 0x1ee49}, {0x1ee4b, 0x1ee4b}, {0x1ee4d, 0x1ee4f}, - {0x1ee51, 0x1ee52}, {0x1ee54, 0x1ee54}, {0x1ee57, 0x1ee57}, {0x1ee59, 0x1ee59}, {0x1ee5b, 0x1ee5b}, {0x1ee5d, 0x1ee5d}, {0x1ee5f, 0x1ee5f}, {0x1ee61, 0x1ee62}, - {0x1ee64, 0x1ee64}, {0x1ee67, 0x1ee6a}, {0x1ee6c, 0x1ee72}, {0x1ee74, 0x1ee77}, {0x1ee79, 0x1ee7c}, {0x1ee7e, 0x1ee7e}, {0x1ee80, 0x1ee89}, {0x1ee8b, 0x1ee9b}, - {0x1eea1, 0x1eea3}, {0x1eea5, 0x1eea9}, {0x1eeab, 0x1eebb}, {0x20000, 0x2a6df}, {0x2a700, 0x2b739}, {0x2b740, 0x2b81d}, {0x2b820, 0x2cea1}, {0x2ceb0, 0x2ebe0}, - {0x2ebf0, 0x2ee5d}, {0x2f800, 0x2fa1d}, {0x30000, 0x3134a}, {0x31350, 0x323af}, + {0x111da, 0x111da}, {0x111dc, 0x111dc}, {0x11200, 0x11211}, {0x11213, 0x1122b}, {0x11280, 0x11286}, {0x11288, 0x11288}, {0x1128a, 0x1128d}, {0x1128f, 0x1129d}, + {0x1129f, 0x112a8}, {0x112b0, 0x112de}, {0x11305, 0x1130c}, {0x1130f, 0x11310}, {0x11313, 0x11328}, {0x1132a, 0x11330}, {0x11332, 0x11333}, {0x11335, 0x11339}, + {0x1133d, 0x1133d}, {0x11350, 0x11350}, {0x1135d, 0x11361}, {0x11400, 0x11434}, {0x11447, 0x1144a}, {0x1145f, 0x11461}, {0x11480, 0x114af}, {0x114c4, 0x114c5}, + {0x114c7, 0x114c7}, {0x11580, 0x115ae}, {0x115d8, 0x115db}, {0x11600, 0x1162f}, {0x11644, 0x11644}, {0x11680, 0x116aa}, {0x116b8, 0x116b8}, {0x11700, 0x1171a}, + {0x11740, 0x11746}, {0x11800, 0x1182b}, {0x118a0, 0x118df}, {0x118ff, 0x11906}, {0x11909, 0x11909}, {0x1190c, 0x11913}, {0x11915, 0x11916}, {0x11918, 0x1192f}, + {0x1193f, 0x1193f}, {0x11941, 0x11941}, {0x119a0, 0x119a7}, {0x119aa, 0x119d0}, {0x119e1, 0x119e1}, {0x119e3, 0x119e3}, {0x11a00, 0x11a00}, {0x11a0b, 0x11a32}, + {0x11a3a, 0x11a3a}, {0x11a50, 0x11a50}, {0x11a5c, 0x11a89}, {0x11a9d, 0x11a9d}, {0x11ab0, 0x11af8}, {0x11c00, 0x11c08}, {0x11c0a, 0x11c2e}, {0x11c40, 0x11c40}, + {0x11c72, 0x11c8f}, {0x11d00, 0x11d06}, {0x11d08, 0x11d09}, {0x11d0b, 0x11d30}, {0x11d46, 0x11d46}, {0x11d60, 0x11d65}, {0x11d67, 0x11d68}, {0x11d6a, 0x11d89}, + {0x11d98, 0x11d98}, {0x11ee0, 0x11ef2}, {0x11fb0, 0x11fb0}, {0x12000, 0x12399}, {0x12400, 0x1246e}, {0x12480, 0x12543}, {0x12f90, 0x12ff0}, {0x13000, 0x1342e}, + {0x14400, 0x14646}, {0x16800, 0x16a38}, {0x16a40, 0x16a5e}, {0x16a70, 0x16abe}, {0x16ad0, 0x16aed}, {0x16b00, 0x16b2f}, {0x16b40, 0x16b43}, {0x16b63, 0x16b77}, + {0x16b7d, 0x16b8f}, {0x16e40, 0x16e7f}, {0x16f00, 0x16f4a}, {0x16f50, 0x16f50}, {0x16f93, 0x16f9f}, {0x16fe0, 0x16fe1}, {0x16fe3, 0x16fe3}, {0x17000, 0x187f7}, + {0x18800, 0x18cd5}, {0x18d00, 0x18d08}, {0x1aff0, 0x1aff3}, {0x1aff5, 0x1affb}, {0x1affd, 0x1affe}, {0x1b000, 0x1b122}, {0x1b150, 0x1b152}, {0x1b164, 0x1b167}, + {0x1b170, 0x1b2fb}, {0x1bc00, 0x1bc6a}, {0x1bc70, 0x1bc7c}, {0x1bc80, 0x1bc88}, {0x1bc90, 0x1bc99}, {0x1d400, 0x1d454}, {0x1d456, 0x1d49c}, {0x1d49e, 0x1d49f}, + {0x1d4a2, 0x1d4a2}, {0x1d4a5, 0x1d4a6}, {0x1d4a9, 0x1d4ac}, {0x1d4ae, 0x1d4b9}, {0x1d4bb, 0x1d4bb}, {0x1d4bd, 0x1d4c3}, {0x1d4c5, 0x1d505}, {0x1d507, 0x1d50a}, + {0x1d50d, 0x1d514}, {0x1d516, 0x1d51c}, {0x1d51e, 0x1d539}, {0x1d53b, 0x1d53e}, {0x1d540, 0x1d544}, {0x1d546, 0x1d546}, {0x1d54a, 0x1d550}, {0x1d552, 0x1d6a5}, + {0x1d6a8, 0x1d6c0}, {0x1d6c2, 0x1d6da}, {0x1d6dc, 0x1d6fa}, {0x1d6fc, 0x1d714}, {0x1d716, 0x1d734}, {0x1d736, 0x1d74e}, {0x1d750, 0x1d76e}, {0x1d770, 0x1d788}, + {0x1d78a, 0x1d7a8}, {0x1d7aa, 0x1d7c2}, {0x1d7c4, 0x1d7cb}, {0x1df00, 0x1df1e}, {0x1e100, 0x1e12c}, {0x1e137, 0x1e13d}, {0x1e14e, 0x1e14e}, {0x1e290, 0x1e2ad}, + {0x1e2c0, 0x1e2eb}, {0x1e7e0, 0x1e7e6}, {0x1e7e8, 0x1e7eb}, {0x1e7ed, 0x1e7ee}, {0x1e7f0, 0x1e7fe}, {0x1e800, 0x1e8c4}, {0x1e900, 0x1e943}, {0x1e94b, 0x1e94b}, + {0x1ee00, 0x1ee03}, {0x1ee05, 0x1ee1f}, {0x1ee21, 0x1ee22}, {0x1ee24, 0x1ee24}, {0x1ee27, 0x1ee27}, {0x1ee29, 0x1ee32}, {0x1ee34, 0x1ee37}, {0x1ee39, 0x1ee39}, + {0x1ee3b, 0x1ee3b}, {0x1ee42, 0x1ee42}, {0x1ee47, 0x1ee47}, {0x1ee49, 0x1ee49}, {0x1ee4b, 0x1ee4b}, {0x1ee4d, 0x1ee4f}, {0x1ee51, 0x1ee52}, {0x1ee54, 0x1ee54}, + {0x1ee57, 0x1ee57}, {0x1ee59, 0x1ee59}, {0x1ee5b, 0x1ee5b}, {0x1ee5d, 0x1ee5d}, {0x1ee5f, 0x1ee5f}, {0x1ee61, 0x1ee62}, {0x1ee64, 0x1ee64}, {0x1ee67, 0x1ee6a}, + {0x1ee6c, 0x1ee72}, {0x1ee74, 0x1ee77}, {0x1ee79, 0x1ee7c}, {0x1ee7e, 0x1ee7e}, {0x1ee80, 0x1ee89}, {0x1ee8b, 0x1ee9b}, {0x1eea1, 0x1eea3}, {0x1eea5, 0x1eea9}, + {0x1eeab, 0x1eebb}, {0x20000, 0x2a6df}, {0x2a700, 0x2b738}, {0x2b740, 0x2b81d}, {0x2b820, 0x2cea1}, {0x2ceb0, 0x2ebe0}, {0x2f800, 0x2fa1d}, {0x30000, 0x3134a}, }; static TSCharacterRange sym_identifier_character_set_3[] = { @@ -7594,11 +7712,11 @@ static TSCharacterRange sym_identifier_character_set_3[] = { {0xbc6, 0xbc8}, {0xbca, 0xbcd}, {0xbd0, 0xbd0}, {0xbd7, 0xbd7}, {0xbe6, 0xbef}, {0xc00, 0xc0c}, {0xc0e, 0xc10}, {0xc12, 0xc28}, {0xc2a, 0xc39}, {0xc3c, 0xc44}, {0xc46, 0xc48}, {0xc4a, 0xc4d}, {0xc55, 0xc56}, {0xc58, 0xc5a}, {0xc5d, 0xc5d}, {0xc60, 0xc63}, {0xc66, 0xc6f}, {0xc80, 0xc83}, {0xc85, 0xc8c}, {0xc8e, 0xc90}, {0xc92, 0xca8}, {0xcaa, 0xcb3}, {0xcb5, 0xcb9}, {0xcbc, 0xcc4}, - {0xcc6, 0xcc8}, {0xcca, 0xccd}, {0xcd5, 0xcd6}, {0xcdd, 0xcde}, {0xce0, 0xce3}, {0xce6, 0xcef}, {0xcf1, 0xcf3}, {0xd00, 0xd0c}, + {0xcc6, 0xcc8}, {0xcca, 0xccd}, {0xcd5, 0xcd6}, {0xcdd, 0xcde}, {0xce0, 0xce3}, {0xce6, 0xcef}, {0xcf1, 0xcf2}, {0xd00, 0xd0c}, {0xd0e, 0xd10}, {0xd12, 0xd44}, {0xd46, 0xd48}, {0xd4a, 0xd4e}, {0xd54, 0xd57}, {0xd5f, 0xd63}, {0xd66, 0xd6f}, {0xd7a, 0xd7f}, {0xd81, 0xd83}, {0xd85, 0xd96}, {0xd9a, 0xdb1}, {0xdb3, 0xdbb}, {0xdbd, 0xdbd}, {0xdc0, 0xdc6}, {0xdca, 0xdca}, {0xdcf, 0xdd4}, {0xdd6, 0xdd6}, {0xdd8, 0xddf}, {0xde6, 0xdef}, {0xdf2, 0xdf3}, {0xe01, 0xe3a}, {0xe40, 0xe4e}, {0xe50, 0xe59}, {0xe81, 0xe82}, - {0xe84, 0xe84}, {0xe86, 0xe8a}, {0xe8c, 0xea3}, {0xea5, 0xea5}, {0xea7, 0xebd}, {0xec0, 0xec4}, {0xec6, 0xec6}, {0xec8, 0xece}, + {0xe84, 0xe84}, {0xe86, 0xe8a}, {0xe8c, 0xea3}, {0xea5, 0xea5}, {0xea7, 0xebd}, {0xec0, 0xec4}, {0xec6, 0xec6}, {0xec8, 0xecd}, {0xed0, 0xed9}, {0xedc, 0xedf}, {0xf00, 0xf00}, {0xf18, 0xf19}, {0xf20, 0xf29}, {0xf35, 0xf35}, {0xf37, 0xf37}, {0xf39, 0xf39}, {0xf3e, 0xf47}, {0xf49, 0xf6c}, {0xf71, 0xf84}, {0xf86, 0xf97}, {0xf99, 0xfbc}, {0xfc6, 0xfc6}, {0x1000, 0x1049}, {0x1050, 0x109d}, {0x10a0, 0x10c5}, {0x10c7, 0x10c7}, {0x10cd, 0x10cd}, {0x10d0, 0x10fa}, {0x10fc, 0x1248}, {0x124a, 0x124d}, {0x1250, 0x1256}, {0x1258, 0x1258}, @@ -7612,13 +7730,13 @@ static TSCharacterRange sym_identifier_character_set_3[] = { {0x1b80, 0x1bf3}, {0x1c00, 0x1c37}, {0x1c40, 0x1c49}, {0x1c4d, 0x1c7d}, {0x1c80, 0x1c88}, {0x1c90, 0x1cba}, {0x1cbd, 0x1cbf}, {0x1cd0, 0x1cd2}, {0x1cd4, 0x1cfa}, {0x1d00, 0x1f15}, {0x1f18, 0x1f1d}, {0x1f20, 0x1f45}, {0x1f48, 0x1f4d}, {0x1f50, 0x1f57}, {0x1f59, 0x1f59}, {0x1f5b, 0x1f5b}, {0x1f5d, 0x1f5d}, {0x1f5f, 0x1f7d}, {0x1f80, 0x1fb4}, {0x1fb6, 0x1fbc}, {0x1fbe, 0x1fbe}, {0x1fc2, 0x1fc4}, {0x1fc6, 0x1fcc}, {0x1fd0, 0x1fd3}, - {0x1fd6, 0x1fdb}, {0x1fe0, 0x1fec}, {0x1ff2, 0x1ff4}, {0x1ff6, 0x1ffc}, {0x200c, 0x200d}, {0x203f, 0x2040}, {0x2054, 0x2054}, {0x2071, 0x2071}, - {0x207f, 0x207f}, {0x2090, 0x209c}, {0x20d0, 0x20dc}, {0x20e1, 0x20e1}, {0x20e5, 0x20f0}, {0x2102, 0x2102}, {0x2107, 0x2107}, {0x210a, 0x2113}, - {0x2115, 0x2115}, {0x2118, 0x211d}, {0x2124, 0x2124}, {0x2126, 0x2126}, {0x2128, 0x2128}, {0x212a, 0x2139}, {0x213c, 0x213f}, {0x2145, 0x2149}, - {0x214e, 0x214e}, {0x2160, 0x2188}, {0x2c00, 0x2ce4}, {0x2ceb, 0x2cf3}, {0x2d00, 0x2d25}, {0x2d27, 0x2d27}, {0x2d2d, 0x2d2d}, {0x2d30, 0x2d67}, - {0x2d6f, 0x2d6f}, {0x2d7f, 0x2d96}, {0x2da0, 0x2da6}, {0x2da8, 0x2dae}, {0x2db0, 0x2db6}, {0x2db8, 0x2dbe}, {0x2dc0, 0x2dc6}, {0x2dc8, 0x2dce}, - {0x2dd0, 0x2dd6}, {0x2dd8, 0x2dde}, {0x2de0, 0x2dff}, {0x3005, 0x3007}, {0x3021, 0x302f}, {0x3031, 0x3035}, {0x3038, 0x303c}, {0x3041, 0x3096}, - {0x3099, 0x309a}, {0x309d, 0x309f}, {0x30a1, 0x30ff}, {0x3105, 0x312f}, {0x3131, 0x318e}, {0x31a0, 0x31bf}, {0x31f0, 0x31ff}, {0x3400, 0x4dbf}, + {0x1fd6, 0x1fdb}, {0x1fe0, 0x1fec}, {0x1ff2, 0x1ff4}, {0x1ff6, 0x1ffc}, {0x203f, 0x2040}, {0x2054, 0x2054}, {0x2071, 0x2071}, {0x207f, 0x207f}, + {0x2090, 0x209c}, {0x20d0, 0x20dc}, {0x20e1, 0x20e1}, {0x20e5, 0x20f0}, {0x2102, 0x2102}, {0x2107, 0x2107}, {0x210a, 0x2113}, {0x2115, 0x2115}, + {0x2118, 0x211d}, {0x2124, 0x2124}, {0x2126, 0x2126}, {0x2128, 0x2128}, {0x212a, 0x2139}, {0x213c, 0x213f}, {0x2145, 0x2149}, {0x214e, 0x214e}, + {0x2160, 0x2188}, {0x2c00, 0x2ce4}, {0x2ceb, 0x2cf3}, {0x2d00, 0x2d25}, {0x2d27, 0x2d27}, {0x2d2d, 0x2d2d}, {0x2d30, 0x2d67}, {0x2d6f, 0x2d6f}, + {0x2d7f, 0x2d96}, {0x2da0, 0x2da6}, {0x2da8, 0x2dae}, {0x2db0, 0x2db6}, {0x2db8, 0x2dbe}, {0x2dc0, 0x2dc6}, {0x2dc8, 0x2dce}, {0x2dd0, 0x2dd6}, + {0x2dd8, 0x2dde}, {0x2de0, 0x2dff}, {0x3005, 0x3007}, {0x3021, 0x302f}, {0x3031, 0x3035}, {0x3038, 0x303c}, {0x3041, 0x3096}, {0x3099, 0x309a}, + {0x309d, 0x309f}, {0x30a1, 0x30fa}, {0x30fc, 0x30ff}, {0x3105, 0x312f}, {0x3131, 0x318e}, {0x31a0, 0x31bf}, {0x31f0, 0x31ff}, {0x3400, 0x4dbf}, {0x4e00, 0xa48c}, {0xa4d0, 0xa4fd}, {0xa500, 0xa60c}, {0xa610, 0xa62b}, {0xa640, 0xa66f}, {0xa674, 0xa67d}, {0xa67f, 0xa6f1}, {0xa717, 0xa71f}, {0xa722, 0xa788}, {0xa78b, 0xa7ca}, {0xa7d0, 0xa7d1}, {0xa7d3, 0xa7d3}, {0xa7d5, 0xa7d9}, {0xa7f2, 0xa827}, {0xa82c, 0xa82c}, {0xa840, 0xa873}, {0xa880, 0xa8c5}, {0xa8d0, 0xa8d9}, {0xa8e0, 0xa8f7}, {0xa8fb, 0xa8fb}, {0xa8fd, 0xa92d}, {0xa930, 0xa953}, {0xa960, 0xa97c}, {0xa980, 0xa9c0}, @@ -7628,7 +7746,7 @@ static TSCharacterRange sym_identifier_character_set_3[] = { {0xfa70, 0xfad9}, {0xfb00, 0xfb06}, {0xfb13, 0xfb17}, {0xfb1d, 0xfb28}, {0xfb2a, 0xfb36}, {0xfb38, 0xfb3c}, {0xfb3e, 0xfb3e}, {0xfb40, 0xfb41}, {0xfb43, 0xfb44}, {0xfb46, 0xfbb1}, {0xfbd3, 0xfc5d}, {0xfc64, 0xfd3d}, {0xfd50, 0xfd8f}, {0xfd92, 0xfdc7}, {0xfdf0, 0xfdf9}, {0xfe00, 0xfe0f}, {0xfe20, 0xfe2f}, {0xfe33, 0xfe34}, {0xfe4d, 0xfe4f}, {0xfe71, 0xfe71}, {0xfe73, 0xfe73}, {0xfe77, 0xfe77}, {0xfe79, 0xfe79}, {0xfe7b, 0xfe7b}, - {0xfe7d, 0xfe7d}, {0xfe7f, 0xfefc}, {0xff10, 0xff19}, {0xff21, 0xff3a}, {0xff3f, 0xff3f}, {0xff41, 0xff5a}, {0xff65, 0xffbe}, {0xffc2, 0xffc7}, + {0xfe7d, 0xfe7d}, {0xfe7f, 0xfefc}, {0xff10, 0xff19}, {0xff21, 0xff3a}, {0xff3f, 0xff3f}, {0xff41, 0xff5a}, {0xff66, 0xffbe}, {0xffc2, 0xffc7}, {0xffca, 0xffcf}, {0xffd2, 0xffd7}, {0xffda, 0xffdc}, {0x10000, 0x1000b}, {0x1000d, 0x10026}, {0x10028, 0x1003a}, {0x1003c, 0x1003d}, {0x1003f, 0x1004d}, {0x10050, 0x1005d}, {0x10080, 0x100fa}, {0x10140, 0x10174}, {0x101fd, 0x101fd}, {0x10280, 0x1029c}, {0x102a0, 0x102d0}, {0x102e0, 0x102e0}, {0x10300, 0x1031f}, {0x1032d, 0x1034a}, {0x10350, 0x1037a}, {0x10380, 0x1039d}, {0x103a0, 0x103c3}, {0x103c8, 0x103cf}, {0x103d1, 0x103d5}, {0x10400, 0x1049d}, {0x104a0, 0x104a9}, @@ -7638,10 +7756,10 @@ static TSCharacterRange sym_identifier_character_set_3[] = { {0x10860, 0x10876}, {0x10880, 0x1089e}, {0x108e0, 0x108f2}, {0x108f4, 0x108f5}, {0x10900, 0x10915}, {0x10920, 0x10939}, {0x10980, 0x109b7}, {0x109be, 0x109bf}, {0x10a00, 0x10a03}, {0x10a05, 0x10a06}, {0x10a0c, 0x10a13}, {0x10a15, 0x10a17}, {0x10a19, 0x10a35}, {0x10a38, 0x10a3a}, {0x10a3f, 0x10a3f}, {0x10a60, 0x10a7c}, {0x10a80, 0x10a9c}, {0x10ac0, 0x10ac7}, {0x10ac9, 0x10ae6}, {0x10b00, 0x10b35}, {0x10b40, 0x10b55}, {0x10b60, 0x10b72}, {0x10b80, 0x10b91}, {0x10c00, 0x10c48}, - {0x10c80, 0x10cb2}, {0x10cc0, 0x10cf2}, {0x10d00, 0x10d27}, {0x10d30, 0x10d39}, {0x10e80, 0x10ea9}, {0x10eab, 0x10eac}, {0x10eb0, 0x10eb1}, {0x10efd, 0x10f1c}, + {0x10c80, 0x10cb2}, {0x10cc0, 0x10cf2}, {0x10d00, 0x10d27}, {0x10d30, 0x10d39}, {0x10e80, 0x10ea9}, {0x10eab, 0x10eac}, {0x10eb0, 0x10eb1}, {0x10f00, 0x10f1c}, {0x10f27, 0x10f27}, {0x10f30, 0x10f50}, {0x10f70, 0x10f85}, {0x10fb0, 0x10fc4}, {0x10fe0, 0x10ff6}, {0x11000, 0x11046}, {0x11066, 0x11075}, {0x1107f, 0x110ba}, {0x110c2, 0x110c2}, {0x110d0, 0x110e8}, {0x110f0, 0x110f9}, {0x11100, 0x11134}, {0x11136, 0x1113f}, {0x11144, 0x11147}, {0x11150, 0x11173}, {0x11176, 0x11176}, - {0x11180, 0x111c4}, {0x111c9, 0x111cc}, {0x111ce, 0x111da}, {0x111dc, 0x111dc}, {0x11200, 0x11211}, {0x11213, 0x11237}, {0x1123e, 0x11241}, {0x11280, 0x11286}, + {0x11180, 0x111c4}, {0x111c9, 0x111cc}, {0x111ce, 0x111da}, {0x111dc, 0x111dc}, {0x11200, 0x11211}, {0x11213, 0x11237}, {0x1123e, 0x1123e}, {0x11280, 0x11286}, {0x11288, 0x11288}, {0x1128a, 0x1128d}, {0x1128f, 0x1129d}, {0x1129f, 0x112a8}, {0x112b0, 0x112ea}, {0x112f0, 0x112f9}, {0x11300, 0x11303}, {0x11305, 0x1130c}, {0x1130f, 0x11310}, {0x11313, 0x11328}, {0x1132a, 0x11330}, {0x11332, 0x11333}, {0x11335, 0x11339}, {0x1133b, 0x11344}, {0x11347, 0x11348}, {0x1134b, 0x1134d}, {0x11350, 0x11350}, {0x11357, 0x11357}, {0x1135d, 0x11363}, {0x11366, 0x1136c}, {0x11370, 0x11374}, {0x11400, 0x1144a}, {0x11450, 0x11459}, {0x1145e, 0x11461}, @@ -7651,27 +7769,26 @@ static TSCharacterRange sym_identifier_character_set_3[] = { {0x11950, 0x11959}, {0x119a0, 0x119a7}, {0x119aa, 0x119d7}, {0x119da, 0x119e1}, {0x119e3, 0x119e4}, {0x11a00, 0x11a3e}, {0x11a47, 0x11a47}, {0x11a50, 0x11a99}, {0x11a9d, 0x11a9d}, {0x11ab0, 0x11af8}, {0x11c00, 0x11c08}, {0x11c0a, 0x11c36}, {0x11c38, 0x11c40}, {0x11c50, 0x11c59}, {0x11c72, 0x11c8f}, {0x11c92, 0x11ca7}, {0x11ca9, 0x11cb6}, {0x11d00, 0x11d06}, {0x11d08, 0x11d09}, {0x11d0b, 0x11d36}, {0x11d3a, 0x11d3a}, {0x11d3c, 0x11d3d}, {0x11d3f, 0x11d47}, {0x11d50, 0x11d59}, - {0x11d60, 0x11d65}, {0x11d67, 0x11d68}, {0x11d6a, 0x11d8e}, {0x11d90, 0x11d91}, {0x11d93, 0x11d98}, {0x11da0, 0x11da9}, {0x11ee0, 0x11ef6}, {0x11f00, 0x11f10}, - {0x11f12, 0x11f3a}, {0x11f3e, 0x11f42}, {0x11f50, 0x11f59}, {0x11fb0, 0x11fb0}, {0x12000, 0x12399}, {0x12400, 0x1246e}, {0x12480, 0x12543}, {0x12f90, 0x12ff0}, - {0x13000, 0x1342f}, {0x13440, 0x13455}, {0x14400, 0x14646}, {0x16800, 0x16a38}, {0x16a40, 0x16a5e}, {0x16a60, 0x16a69}, {0x16a70, 0x16abe}, {0x16ac0, 0x16ac9}, - {0x16ad0, 0x16aed}, {0x16af0, 0x16af4}, {0x16b00, 0x16b36}, {0x16b40, 0x16b43}, {0x16b50, 0x16b59}, {0x16b63, 0x16b77}, {0x16b7d, 0x16b8f}, {0x16e40, 0x16e7f}, - {0x16f00, 0x16f4a}, {0x16f4f, 0x16f87}, {0x16f8f, 0x16f9f}, {0x16fe0, 0x16fe1}, {0x16fe3, 0x16fe4}, {0x16ff0, 0x16ff1}, {0x17000, 0x187f7}, {0x18800, 0x18cd5}, - {0x18d00, 0x18d08}, {0x1aff0, 0x1aff3}, {0x1aff5, 0x1affb}, {0x1affd, 0x1affe}, {0x1b000, 0x1b122}, {0x1b132, 0x1b132}, {0x1b150, 0x1b152}, {0x1b155, 0x1b155}, - {0x1b164, 0x1b167}, {0x1b170, 0x1b2fb}, {0x1bc00, 0x1bc6a}, {0x1bc70, 0x1bc7c}, {0x1bc80, 0x1bc88}, {0x1bc90, 0x1bc99}, {0x1bc9d, 0x1bc9e}, {0x1cf00, 0x1cf2d}, - {0x1cf30, 0x1cf46}, {0x1d165, 0x1d169}, {0x1d16d, 0x1d172}, {0x1d17b, 0x1d182}, {0x1d185, 0x1d18b}, {0x1d1aa, 0x1d1ad}, {0x1d242, 0x1d244}, {0x1d400, 0x1d454}, - {0x1d456, 0x1d49c}, {0x1d49e, 0x1d49f}, {0x1d4a2, 0x1d4a2}, {0x1d4a5, 0x1d4a6}, {0x1d4a9, 0x1d4ac}, {0x1d4ae, 0x1d4b9}, {0x1d4bb, 0x1d4bb}, {0x1d4bd, 0x1d4c3}, - {0x1d4c5, 0x1d505}, {0x1d507, 0x1d50a}, {0x1d50d, 0x1d514}, {0x1d516, 0x1d51c}, {0x1d51e, 0x1d539}, {0x1d53b, 0x1d53e}, {0x1d540, 0x1d544}, {0x1d546, 0x1d546}, - {0x1d54a, 0x1d550}, {0x1d552, 0x1d6a5}, {0x1d6a8, 0x1d6c0}, {0x1d6c2, 0x1d6da}, {0x1d6dc, 0x1d6fa}, {0x1d6fc, 0x1d714}, {0x1d716, 0x1d734}, {0x1d736, 0x1d74e}, - {0x1d750, 0x1d76e}, {0x1d770, 0x1d788}, {0x1d78a, 0x1d7a8}, {0x1d7aa, 0x1d7c2}, {0x1d7c4, 0x1d7cb}, {0x1d7ce, 0x1d7ff}, {0x1da00, 0x1da36}, {0x1da3b, 0x1da6c}, - {0x1da75, 0x1da75}, {0x1da84, 0x1da84}, {0x1da9b, 0x1da9f}, {0x1daa1, 0x1daaf}, {0x1df00, 0x1df1e}, {0x1df25, 0x1df2a}, {0x1e000, 0x1e006}, {0x1e008, 0x1e018}, - {0x1e01b, 0x1e021}, {0x1e023, 0x1e024}, {0x1e026, 0x1e02a}, {0x1e030, 0x1e06d}, {0x1e08f, 0x1e08f}, {0x1e100, 0x1e12c}, {0x1e130, 0x1e13d}, {0x1e140, 0x1e149}, - {0x1e14e, 0x1e14e}, {0x1e290, 0x1e2ae}, {0x1e2c0, 0x1e2f9}, {0x1e4d0, 0x1e4f9}, {0x1e7e0, 0x1e7e6}, {0x1e7e8, 0x1e7eb}, {0x1e7ed, 0x1e7ee}, {0x1e7f0, 0x1e7fe}, - {0x1e800, 0x1e8c4}, {0x1e8d0, 0x1e8d6}, {0x1e900, 0x1e94b}, {0x1e950, 0x1e959}, {0x1ee00, 0x1ee03}, {0x1ee05, 0x1ee1f}, {0x1ee21, 0x1ee22}, {0x1ee24, 0x1ee24}, - {0x1ee27, 0x1ee27}, {0x1ee29, 0x1ee32}, {0x1ee34, 0x1ee37}, {0x1ee39, 0x1ee39}, {0x1ee3b, 0x1ee3b}, {0x1ee42, 0x1ee42}, {0x1ee47, 0x1ee47}, {0x1ee49, 0x1ee49}, - {0x1ee4b, 0x1ee4b}, {0x1ee4d, 0x1ee4f}, {0x1ee51, 0x1ee52}, {0x1ee54, 0x1ee54}, {0x1ee57, 0x1ee57}, {0x1ee59, 0x1ee59}, {0x1ee5b, 0x1ee5b}, {0x1ee5d, 0x1ee5d}, - {0x1ee5f, 0x1ee5f}, {0x1ee61, 0x1ee62}, {0x1ee64, 0x1ee64}, {0x1ee67, 0x1ee6a}, {0x1ee6c, 0x1ee72}, {0x1ee74, 0x1ee77}, {0x1ee79, 0x1ee7c}, {0x1ee7e, 0x1ee7e}, - {0x1ee80, 0x1ee89}, {0x1ee8b, 0x1ee9b}, {0x1eea1, 0x1eea3}, {0x1eea5, 0x1eea9}, {0x1eeab, 0x1eebb}, {0x1fbf0, 0x1fbf9}, {0x20000, 0x2a6df}, {0x2a700, 0x2b739}, - {0x2b740, 0x2b81d}, {0x2b820, 0x2cea1}, {0x2ceb0, 0x2ebe0}, {0x2ebf0, 0x2ee5d}, {0x2f800, 0x2fa1d}, {0x30000, 0x3134a}, {0x31350, 0x323af}, {0xe0100, 0xe01ef}, + {0x11d60, 0x11d65}, {0x11d67, 0x11d68}, {0x11d6a, 0x11d8e}, {0x11d90, 0x11d91}, {0x11d93, 0x11d98}, {0x11da0, 0x11da9}, {0x11ee0, 0x11ef6}, {0x11fb0, 0x11fb0}, + {0x12000, 0x12399}, {0x12400, 0x1246e}, {0x12480, 0x12543}, {0x12f90, 0x12ff0}, {0x13000, 0x1342e}, {0x14400, 0x14646}, {0x16800, 0x16a38}, {0x16a40, 0x16a5e}, + {0x16a60, 0x16a69}, {0x16a70, 0x16abe}, {0x16ac0, 0x16ac9}, {0x16ad0, 0x16aed}, {0x16af0, 0x16af4}, {0x16b00, 0x16b36}, {0x16b40, 0x16b43}, {0x16b50, 0x16b59}, + {0x16b63, 0x16b77}, {0x16b7d, 0x16b8f}, {0x16e40, 0x16e7f}, {0x16f00, 0x16f4a}, {0x16f4f, 0x16f87}, {0x16f8f, 0x16f9f}, {0x16fe0, 0x16fe1}, {0x16fe3, 0x16fe4}, + {0x16ff0, 0x16ff1}, {0x17000, 0x187f7}, {0x18800, 0x18cd5}, {0x18d00, 0x18d08}, {0x1aff0, 0x1aff3}, {0x1aff5, 0x1affb}, {0x1affd, 0x1affe}, {0x1b000, 0x1b122}, + {0x1b150, 0x1b152}, {0x1b164, 0x1b167}, {0x1b170, 0x1b2fb}, {0x1bc00, 0x1bc6a}, {0x1bc70, 0x1bc7c}, {0x1bc80, 0x1bc88}, {0x1bc90, 0x1bc99}, {0x1bc9d, 0x1bc9e}, + {0x1cf00, 0x1cf2d}, {0x1cf30, 0x1cf46}, {0x1d165, 0x1d169}, {0x1d16d, 0x1d172}, {0x1d17b, 0x1d182}, {0x1d185, 0x1d18b}, {0x1d1aa, 0x1d1ad}, {0x1d242, 0x1d244}, + {0x1d400, 0x1d454}, {0x1d456, 0x1d49c}, {0x1d49e, 0x1d49f}, {0x1d4a2, 0x1d4a2}, {0x1d4a5, 0x1d4a6}, {0x1d4a9, 0x1d4ac}, {0x1d4ae, 0x1d4b9}, {0x1d4bb, 0x1d4bb}, + {0x1d4bd, 0x1d4c3}, {0x1d4c5, 0x1d505}, {0x1d507, 0x1d50a}, {0x1d50d, 0x1d514}, {0x1d516, 0x1d51c}, {0x1d51e, 0x1d539}, {0x1d53b, 0x1d53e}, {0x1d540, 0x1d544}, + {0x1d546, 0x1d546}, {0x1d54a, 0x1d550}, {0x1d552, 0x1d6a5}, {0x1d6a8, 0x1d6c0}, {0x1d6c2, 0x1d6da}, {0x1d6dc, 0x1d6fa}, {0x1d6fc, 0x1d714}, {0x1d716, 0x1d734}, + {0x1d736, 0x1d74e}, {0x1d750, 0x1d76e}, {0x1d770, 0x1d788}, {0x1d78a, 0x1d7a8}, {0x1d7aa, 0x1d7c2}, {0x1d7c4, 0x1d7cb}, {0x1d7ce, 0x1d7ff}, {0x1da00, 0x1da36}, + {0x1da3b, 0x1da6c}, {0x1da75, 0x1da75}, {0x1da84, 0x1da84}, {0x1da9b, 0x1da9f}, {0x1daa1, 0x1daaf}, {0x1df00, 0x1df1e}, {0x1e000, 0x1e006}, {0x1e008, 0x1e018}, + {0x1e01b, 0x1e021}, {0x1e023, 0x1e024}, {0x1e026, 0x1e02a}, {0x1e100, 0x1e12c}, {0x1e130, 0x1e13d}, {0x1e140, 0x1e149}, {0x1e14e, 0x1e14e}, {0x1e290, 0x1e2ae}, + {0x1e2c0, 0x1e2f9}, {0x1e7e0, 0x1e7e6}, {0x1e7e8, 0x1e7eb}, {0x1e7ed, 0x1e7ee}, {0x1e7f0, 0x1e7fe}, {0x1e800, 0x1e8c4}, {0x1e8d0, 0x1e8d6}, {0x1e900, 0x1e94b}, + {0x1e950, 0x1e959}, {0x1ee00, 0x1ee03}, {0x1ee05, 0x1ee1f}, {0x1ee21, 0x1ee22}, {0x1ee24, 0x1ee24}, {0x1ee27, 0x1ee27}, {0x1ee29, 0x1ee32}, {0x1ee34, 0x1ee37}, + {0x1ee39, 0x1ee39}, {0x1ee3b, 0x1ee3b}, {0x1ee42, 0x1ee42}, {0x1ee47, 0x1ee47}, {0x1ee49, 0x1ee49}, {0x1ee4b, 0x1ee4b}, {0x1ee4d, 0x1ee4f}, {0x1ee51, 0x1ee52}, + {0x1ee54, 0x1ee54}, {0x1ee57, 0x1ee57}, {0x1ee59, 0x1ee59}, {0x1ee5b, 0x1ee5b}, {0x1ee5d, 0x1ee5d}, {0x1ee5f, 0x1ee5f}, {0x1ee61, 0x1ee62}, {0x1ee64, 0x1ee64}, + {0x1ee67, 0x1ee6a}, {0x1ee6c, 0x1ee72}, {0x1ee74, 0x1ee77}, {0x1ee79, 0x1ee7c}, {0x1ee7e, 0x1ee7e}, {0x1ee80, 0x1ee89}, {0x1ee8b, 0x1ee9b}, {0x1eea1, 0x1eea3}, + {0x1eea5, 0x1eea9}, {0x1eeab, 0x1eebb}, {0x1fbf0, 0x1fbf9}, {0x20000, 0x2a6df}, {0x2a700, 0x2b738}, {0x2b740, 0x2b81d}, {0x2b820, 0x2cea1}, {0x2ceb0, 0x2ebe0}, + {0x2f800, 0x2fa1d}, {0x30000, 0x3134a}, {0xe0100, 0xe01ef}, }; static bool ts_lex(TSLexer *lexer, TSStateId state) { @@ -7684,42 +7801,42 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '!', 171, '"', 157, '#', 143, - '$', 85, - '%', 99, - '&', 104, + '$', 86, + '%', 100, + '&', 105, '\'', 145, '(', 75, ')', 76, - '*', 92, - '+', 90, - ',', 139, - '-', 96, - '.', 133, + '*', 93, + '+', 91, + ',', 81, + '-', 97, + '.', 134, '/', 172, '0', 151, - ':', 83, + ':', 84, ';', 73, '<', 146, - '=', 123, - '>', 127, - '?', 93, - '@', 132, + '=', 124, + '>', 128, + '?', 94, + '@', 133, '[', 77, '\\', 46, ']', 78, - '^', 100, + '^', 101, 'b', 178, 'c', 179, 'm', 182, 'r', 180, '{', 79, - '|', 106, + '|', 107, '}', 80, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(68); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(154); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_1, 656, lookahead)) ADVANCE(191); END_STATE(); case 1: if (lookahead == '\n') ADVANCE(1); @@ -7730,275 +7847,275 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 2: ADVANCE_MAP( - '!', 102, + '!', 103, '"', 156, '#', 142, - '$', 85, - '%', 99, - '&', 104, + '$', 86, + '%', 100, + '&', 105, '\'', 145, '(', 75, ')', 76, - '*', 92, - '+', 90, - ',', 139, - '-', 96, - '.', 133, - '/', 98, + '*', 93, + '+', 91, + ',', 81, + '-', 97, + '.', 134, + '/', 99, '0', 151, - ':', 83, + ':', 84, ';', 73, - '<', 129, - '=', 123, - '>', 127, - '?', 93, - '@', 132, + '<', 130, + '=', 124, + '>', 128, + '?', 94, + '@', 133, '[', 77, ']', 78, - '^', 100, + '^', 101, 'b', 178, 'c', 179, 'r', 180, '{', 79, - '|', 106, + '|', 107, '}', 80, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(2); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(154); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_1, 656, lookahead)) ADVANCE(191); END_STATE(); case 3: ADVANCE_MAP( - '!', 102, + '!', 103, '"', 156, '#', 142, '$', 65, - '%', 99, - '&', 104, + '%', 100, + '&', 105, '\'', 145, '(', 75, ')', 76, - '*', 92, - '+', 90, - ',', 139, - '-', 95, - '.', 133, - '/', 98, + '*', 93, + '+', 91, + ',', 81, + '-', 96, + '.', 134, + '/', 99, '0', 151, - ':', 83, + ':', 84, ';', 73, - '<', 129, - '=', 122, - '>', 127, - '?', 93, + '<', 130, + '=', 123, + '>', 128, + '?', 94, '[', 77, ']', 78, - '^', 100, + '^', 101, 'b', 178, 'c', 179, 'r', 180, '{', 79, - '|', 106, + '|', 107, '}', 80, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(3); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(154); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_1, 656, lookahead)) ADVANCE(191); END_STATE(); case 4: ADVANCE_MAP( - '!', 102, + '!', 103, '"', 156, '#', 142, - '$', 84, - '%', 99, - '&', 104, + '$', 85, + '%', 100, + '&', 105, '\'', 145, '(', 75, ')', 76, - '*', 92, - '+', 90, - ',', 139, - '-', 96, - '.', 133, - '/', 98, + '*', 93, + '+', 91, + ',', 81, + '-', 97, + '.', 134, + '/', 99, '0', 151, - ':', 83, + ':', 84, ';', 73, - '<', 129, - '=', 123, - '>', 127, - '?', 93, - '@', 132, + '<', 130, + '=', 124, + '>', 128, + '?', 94, + '@', 133, '[', 77, ']', 78, - '^', 100, + '^', 101, 'b', 178, 'c', 179, 'r', 180, '{', 79, - '|', 106, + '|', 107, '}', 80, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(4); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(154); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_1, 656, lookahead)) ADVANCE(191); END_STATE(); case 5: ADVANCE_MAP( - '!', 102, + '!', 103, '"', 156, '$', 65, - '%', 99, - '&', 104, + '%', 100, + '&', 105, '\'', 145, '(', 75, - '*', 92, - '+', 90, - '-', 95, - '.', 133, - '/', 98, + '*', 93, + '+', 91, + '-', 96, + '.', 134, + '/', 99, '0', 151, - ':', 83, - '<', 129, - '=', 123, - '>', 127, - '?', 93, + ':', 84, + '<', 130, + '=', 124, + '>', 128, + '?', 94, '[', 77, - '^', 100, + '^', 101, 'b', 178, 'c', 179, 'r', 180, '{', 79, - '|', 106, + '|', 107, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(5); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(154); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_1, 656, lookahead)) ADVANCE(191); END_STATE(); case 6: ADVANCE_MAP( - '!', 102, - '%', 99, - '&', 104, + '!', 103, + '%', 100, + '&', 105, '\'', 144, '(', 75, ')', 76, - '*', 92, - '+', 90, - ',', 139, - '-', 95, - '.', 133, - '/', 98, - ':', 83, + '*', 93, + '+', 91, + ',', 81, + '-', 96, + '.', 134, + '/', 99, + ':', 84, ';', 73, '<', 146, - '=', 122, - '>', 127, - '?', 93, + '=', 123, + '>', 128, + '?', 94, '[', 77, ']', 78, - '^', 100, + '^', 101, 'r', 180, '{', 79, - '|', 106, + '|', 107, '}', 80, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(6); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_1, 656, lookahead)) ADVANCE(191); END_STATE(); case 7: ADVANCE_MAP( - '!', 102, - '%', 99, - '&', 104, + '!', 103, + '%', 100, + '&', 105, '\'', 144, '(', 75, ')', 76, - '*', 92, - '+', 90, - ',', 139, - '-', 95, - '.', 133, - '/', 98, + '*', 93, + '+', 91, + ',', 81, + '-', 96, + '.', 134, + '/', 99, ':', 40, ';', 73, - '<', 129, - '=', 122, - '>', 127, - '?', 93, + '<', 130, + '=', 123, + '>', 128, + '?', 94, '[', 77, ']', 78, - '^', 100, + '^', 101, 'r', 180, '{', 79, - '|', 106, + '|', 107, '}', 80, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(7); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_1, 656, lookahead)) ADVANCE(191); END_STATE(); case 8: ADVANCE_MAP( - '!', 102, - '%', 99, - '&', 104, + '!', 103, + '%', 100, + '&', 105, '\'', 144, '(', 75, - '*', 92, - '+', 90, - '-', 95, - '.', 133, - '/', 98, + '*', 93, + '+', 91, + '-', 96, + '.', 134, + '/', 99, ':', 40, - '<', 129, - '=', 123, - '>', 127, - '?', 93, + '<', 130, + '=', 124, + '>', 128, + '?', 94, '[', 77, - '^', 100, + '^', 101, 'r', 180, '{', 79, - '|', 106, + '|', 107, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(8); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_1, 656, lookahead)) ADVANCE(191); END_STATE(); case 9: ADVANCE_MAP( - '!', 102, - '%', 99, - '&', 104, + '!', 103, + '%', 100, + '&', 105, '(', 75, - '*', 92, - '+', 90, - '-', 95, - '.', 133, - '/', 98, + '*', 93, + '+', 91, + '-', 96, + '.', 134, + '/', 99, ':', 40, '<', 146, - '=', 123, - '>', 127, - '?', 93, + '=', 124, + '>', 128, + '?', 94, '[', 77, - '^', 100, + '^', 101, 'r', 180, - '|', 106, + '|', 107, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(9); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_1, 656, lookahead)) ADVANCE(191); END_STATE(); case 10: ADVANCE_MAP( - '!', 101, + '!', 102, '"', 157, '#', 142, '$', 65, @@ -8007,162 +8124,162 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '(', 75, ')', 76, '*', 33, - '+', 89, - ',', 139, + '+', 90, + ',', 81, '.', 30, '/', 28, - ':', 83, + ':', 84, ';', 73, - '<', 128, + '<', 129, '=', 43, - '>', 126, + '>', 127, '\\', 46, ']', 78, 'm', 182, 'r', 180, '{', 79, - '|', 105, + '|', 106, '}', 80, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(15); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_1, 656, lookahead)) ADVANCE(191); END_STATE(); case 11: ADVANCE_MAP( - '!', 101, + '!', 102, '"', 156, '#', 142, '$', 65, - '&', 103, + '&', 104, '\'', 145, '(', 75, ')', 76, - '*', 91, - ',', 139, - '-', 94, + '*', 92, + ',', 81, + '-', 95, '.', 31, '/', 28, '0', 151, - ':', 83, + ':', 84, ';', 73, - '<', 128, - '=', 121, - '>', 126, - '?', 93, + '<', 129, + '=', 122, + '>', 127, + '?', 94, '[', 77, ']', 78, 'b', 178, 'c', 179, 'r', 180, '{', 79, - '|', 105, + '|', 106, '}', 80, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(11); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(154); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_1, 656, lookahead)) ADVANCE(191); END_STATE(); case 12: ADVANCE_MAP( - '!', 101, + '!', 102, '"', 156, '#', 142, '$', 65, - '&', 103, + '&', 104, '\'', 145, '(', 75, ')', 76, - '*', 91, - ',', 139, - '-', 94, + '*', 92, + ',', 81, + '-', 95, '.', 32, '/', 28, '0', 151, ':', 40, - '<', 128, + '<', 129, '=', 43, - '?', 93, + '?', 94, '[', 77, 'b', 178, 'c', 179, 'r', 180, - '|', 105, + '|', 106, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(12); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(154); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_1, 656, lookahead)) ADVANCE(191); END_STATE(); case 13: ADVANCE_MAP( - '!', 101, + '!', 102, '"', 156, '$', 65, - '&', 103, + '&', 104, '\'', 145, '(', 75, - '*', 91, - '+', 89, - ',', 139, - '-', 97, + '*', 92, + '+', 90, + ',', 81, + '-', 98, '.', 31, '/', 28, '0', 151, ':', 40, ';', 73, - '<', 128, + '<', 129, '[', 77, ']', 78, 'b', 178, 'c', 179, 'r', 180, '{', 79, - '|', 105, + '|', 106, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(13); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(154); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_1, 656, lookahead)) ADVANCE(191); END_STATE(); case 14: ADVANCE_MAP( - '!', 101, + '!', 102, '#', 142, '$', 65, - '&', 103, + '&', 104, '\'', 144, '(', 75, ')', 76, - '*', 91, - '+', 89, - ',', 139, + '*', 92, + '+', 90, + ',', 81, '-', 42, '.', 30, '/', 28, '0', 151, - ':', 83, + ':', 84, ';', 73, - '<', 128, - '=', 121, - '>', 126, - '?', 93, + '<', 129, + '=', 122, + '>', 127, + '?', 94, '[', 77, ']', 78, 'r', 180, '{', 79, - '|', 105, + '|', 106, '}', 80, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(14); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(154); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_1, 656, lookahead)) ADVANCE(191); END_STATE(); case 15: ADVANCE_MAP( - '!', 101, + '!', 102, '#', 142, '$', 65, '&', 24, @@ -8170,157 +8287,157 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '(', 75, ')', 76, '*', 33, - '+', 89, - ',', 139, + '+', 90, + ',', 81, '.', 30, '/', 28, - ':', 83, + ':', 84, ';', 73, - '<', 128, + '<', 129, '=', 43, - '>', 126, + '>', 127, ']', 78, 'm', 182, 'r', 180, '{', 79, - '|', 105, + '|', 106, '}', 80, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(15); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_1, 656, lookahead)) ADVANCE(191); END_STATE(); case 16: ADVANCE_MAP( - '!', 101, + '!', 102, '\'', 144, '(', 75, ')', 76, - '+', 89, - ',', 139, + '+', 90, + ',', 81, '.', 30, '/', 28, - ':', 83, + ':', 84, ';', 73, '<', 146, - '=', 121, - '>', 126, - '@', 132, + '=', 122, + '>', 127, + '@', 133, ']', 78, 'r', 180, '{', 79, - '|', 105, + '|', 106, '}', 80, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(16); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_1, 656, lookahead)) ADVANCE(191); END_STATE(); case 17: ADVANCE_MAP( - '!', 101, + '!', 102, '(', 75, '.', 30, '/', 28, ':', 40, '<', 146, '=', 43, - '@', 132, + '@', 133, 'r', 180, '{', 79, - '|', 105, + '|', 106, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(17); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_1, 656, lookahead)) ADVANCE(191); END_STATE(); case 18: ADVANCE_MAP( '!', 41, - '%', 99, - '&', 104, + '%', 100, + '&', 105, '\'', 144, '(', 75, ')', 76, - '*', 92, - '+', 90, - ',', 139, - '-', 96, - '.', 133, - '/', 98, - ':', 82, + '*', 93, + '+', 91, + ',', 81, + '-', 97, + '.', 134, + '/', 99, + ':', 83, ';', 73, - '<', 129, - '=', 122, - '>', 127, - '?', 93, + '<', 130, + '=', 123, + '>', 128, + '?', 94, '[', 77, ']', 78, - '^', 100, + '^', 101, 'r', 180, '{', 79, - '|', 106, + '|', 107, '}', 80, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(18); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_1, 656, lookahead)) ADVANCE(191); END_STATE(); case 19: ADVANCE_MAP( '!', 41, - '%', 99, - '&', 104, + '%', 100, + '&', 105, '\'', 144, '(', 75, ')', 76, - '*', 92, - '+', 90, - ',', 139, - '-', 95, - '.', 133, - '/', 98, - ':', 82, + '*', 93, + '+', 91, + ',', 81, + '-', 96, + '.', 134, + '/', 99, + ':', 83, ';', 73, - '<', 129, - '=', 122, - '>', 127, - '?', 93, + '<', 130, + '=', 123, + '>', 128, + '?', 94, '[', 77, ']', 78, - '^', 100, + '^', 101, 'r', 180, '{', 79, - '|', 106, + '|', 107, '}', 80, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(19); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_1, 656, lookahead)) ADVANCE(191); END_STATE(); case 20: ADVANCE_MAP( '!', 41, - '%', 99, - '&', 104, + '%', 100, + '&', 105, '(', 75, - '*', 92, - '+', 90, - '-', 96, - '.', 133, - '/', 98, - '<', 129, - '=', 123, - '>', 127, - '?', 93, + '*', 93, + '+', 91, + '-', 97, + '.', 134, + '/', 99, + '<', 130, + '=', 124, + '>', 128, + '?', 94, '[', 77, - '^', 100, + '^', 101, 'r', 180, - '|', 106, + '|', 107, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(20); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_1, 656, lookahead)) ADVANCE(191); END_STATE(); case 21: if (lookahead == '"') ADVANCE(156); @@ -8332,37 +8449,37 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 'c') ADVANCE(179); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(21); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_1, 656, lookahead)) ADVANCE(191); END_STATE(); case 22: ADVANCE_MAP( '#', 142, '$', 65, - ',', 139, + ',', 81, '/', 28, ':', 40, ';', 73, - '<', 128, - '=', 121, + '<', 129, + '=', 122, 'm', 182, 'r', 180, '}', 80, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(22); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_1, 656, lookahead)) ADVANCE(191); END_STATE(); case 23: ADVANCE_MAP( '#', 142, - ',', 139, + ',', 81, '.', 31, '/', 28, '0', 151, - ':', 82, + ':', 83, ';', 73, - '<', 128, - '=', 121, + '<', 129, + '=', 122, 'r', 180, '{', 79, '}', 80, @@ -8370,10 +8487,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(23); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(154); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_1, 656, lookahead)) ADVANCE(191); END_STATE(); case 24: - if (lookahead == '&') ADVANCE(107); + if (lookahead == '&') ADVANCE(108); END_STATE(); case 25: if (lookahead == '\'') ADVANCE(158); @@ -8388,48 +8505,48 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '\'', 144, '(', 75, ')', 76, - '*', 91, - '+', 89, - ',', 139, + '*', 92, + '+', 90, + ',', 81, '-', 42, '.', 30, '/', 28, - ':', 82, + ':', 83, ';', 73, '<', 146, - '=', 121, - '>', 126, + '=', 122, + '>', 127, ']', 78, 'r', 180, '{', 79, - '|', 105, + '|', 106, '}', 80, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(27); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_1, 656, lookahead)) ADVANCE(191); END_STATE(); case 28: if (lookahead == '*') ADVANCE(174); if (lookahead == '/') ADVANCE(160); END_STATE(); case 29: - if (lookahead == '*') ADVANCE(91); - if (lookahead == '+') ADVANCE(89); - if (lookahead == '/') ADVANCE(86); - if (lookahead == '?') ADVANCE(93); + if (lookahead == '*') ADVANCE(92); + if (lookahead == '+') ADVANCE(90); + if (lookahead == '/') ADVANCE(87); + if (lookahead == '?') ADVANCE(94); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(87); - if (lookahead != 0) ADVANCE(88); + lookahead == ' ') ADVANCE(88); + if (lookahead != 0) ADVANCE(89); END_STATE(); case 30: - if (lookahead == '.') ADVANCE(136); + if (lookahead == '.') ADVANCE(137); END_STATE(); case 31: - if (lookahead == '.') ADVANCE(134); + if (lookahead == '.') ADVANCE(135); END_STATE(); case 32: - if (lookahead == '.') ADVANCE(135); + if (lookahead == '.') ADVANCE(136); END_STATE(); case 33: if (lookahead == '/') ADVANCE(176); @@ -8462,13 +8579,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ':') ADVANCE(140); END_STATE(); case 41: - if (lookahead == '=') ADVANCE(125); + if (lookahead == '=') ADVANCE(126); END_STATE(); case 42: if (lookahead == '>') ADVANCE(141); END_STATE(); case 43: - if (lookahead == '>') ADVANCE(81); + if (lookahead == '>') ADVANCE(82); END_STATE(); case 44: if (lookahead == 'e') ADVANCE(147); @@ -8580,7 +8697,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z')) ADVANCE(194); END_STATE(); case 66: - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_1, 656, lookahead)) ADVANCE(191); END_STATE(); case 67: if (lookahead != 0 && @@ -8589,107 +8706,107 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 68: if (eof) ADVANCE(72); ADVANCE_MAP( - '!', 102, + '!', 103, '"', 156, '#', 143, - '$', 85, - '%', 99, - '&', 104, + '$', 86, + '%', 100, + '&', 105, '\'', 145, '(', 75, ')', 76, - '*', 92, - '+', 90, - ',', 139, - '-', 96, - '.', 133, - '/', 98, + '*', 93, + '+', 91, + ',', 81, + '-', 97, + '.', 134, + '/', 99, '0', 151, - ':', 83, + ':', 84, ';', 73, '<', 146, - '=', 123, - '>', 127, - '?', 93, - '@', 132, + '=', 124, + '>', 128, + '?', 94, + '@', 133, '[', 77, ']', 78, - '^', 100, + '^', 101, 'b', 178, 'c', 179, 'm', 182, 'r', 180, '{', 79, - '|', 106, + '|', 107, '}', 80, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(68); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(154); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_1, 656, lookahead)) ADVANCE(191); END_STATE(); case 69: if (eof) ADVANCE(72); ADVANCE_MAP( - '!', 102, + '!', 103, '"', 156, '#', 142, '$', 65, - '%', 99, - '&', 104, + '%', 100, + '&', 105, '\'', 145, '(', 75, - '*', 92, - '+', 90, - '-', 95, - '.', 133, - '/', 98, + '*', 93, + '+', 91, + '-', 96, + '.', 134, + '/', 99, '0', 151, ':', 40, ';', 73, - '<', 129, - '=', 122, - '>', 127, - '?', 93, + '<', 130, + '=', 123, + '>', 128, + '?', 94, '[', 77, - '^', 100, + '^', 101, 'b', 178, 'c', 179, 'm', 182, 'r', 180, '{', 79, - '|', 106, + '|', 107, '}', 80, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(69); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(154); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_1, 656, lookahead)) ADVANCE(191); END_STATE(); case 70: if (eof) ADVANCE(72); ADVANCE_MAP( - '!', 101, + '!', 102, '"', 156, '#', 143, '$', 65, - '&', 103, + '&', 104, '\'', 145, '(', 75, ')', 76, - '*', 91, - '+', 89, - ',', 139, - '-', 94, + '*', 92, + '+', 90, + ',', 81, + '-', 95, '.', 31, '/', 28, '0', 151, - ':', 83, + ':', 84, ';', 73, - '<', 128, - '=', 121, - '>', 126, - '?', 93, + '<', 129, + '=', 122, + '>', 127, + '?', 94, '[', 77, ']', 78, 'b', 178, @@ -8697,32 +8814,32 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'm', 182, 'r', 180, '{', 79, - '|', 105, + '|', 106, '}', 80, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(70); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(154); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_1, 656, lookahead)) ADVANCE(191); END_STATE(); case 71: if (eof) ADVANCE(72); ADVANCE_MAP( - '!', 101, + '!', 102, '"', 156, '#', 142, '$', 65, - '&', 103, + '&', 104, '\'', 145, '(', 75, - '*', 91, - '-', 94, + '*', 92, + '-', 95, '.', 31, '/', 28, '0', 151, ':', 40, ';', 73, - '<', 128, + '<', 129, '=', 43, '[', 77, 'b', 178, @@ -8730,13 +8847,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'm', 182, 'r', 180, '{', 79, - '|', 105, + '|', 106, '}', 80, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(71); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(154); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_1, 656, lookahead)) ADVANCE(191); END_STATE(); case 72: ACCEPT_TOKEN(ts_builtin_sym_end); @@ -8766,231 +8883,231 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); case 81: - ACCEPT_TOKEN(anon_sym_EQ_GT); + ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); case 82: - ACCEPT_TOKEN(anon_sym_COLON); + ACCEPT_TOKEN(anon_sym_EQ_GT); END_STATE(); case 83: ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == ':') ADVANCE(140); END_STATE(); case 84: - ACCEPT_TOKEN(anon_sym_DOLLAR); + ACCEPT_TOKEN(anon_sym_COLON); + if (lookahead == ':') ADVANCE(140); END_STATE(); case 85: + ACCEPT_TOKEN(anon_sym_DOLLAR); + END_STATE(); + case 86: ACCEPT_TOKEN(anon_sym_DOLLAR); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(194); END_STATE(); - case 86: + case 87: ACCEPT_TOKEN(aux_sym_token_repetition_pattern_token1); if (lookahead == '*') ADVANCE(174); if (lookahead == '/') ADVANCE(161); if (lookahead != 0 && lookahead != '*' && lookahead != '+' && - lookahead != '?') ADVANCE(88); + lookahead != '?') ADVANCE(89); END_STATE(); - case 87: + case 88: ACCEPT_TOKEN(aux_sym_token_repetition_pattern_token1); - if (lookahead == '/') ADVANCE(86); + if (lookahead == '/') ADVANCE(87); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(87); + lookahead == ' ') ADVANCE(88); if (lookahead != 0 && lookahead != '*' && lookahead != '+' && - lookahead != '?') ADVANCE(88); + lookahead != '?') ADVANCE(89); END_STATE(); - case 88: + case 89: ACCEPT_TOKEN(aux_sym_token_repetition_pattern_token1); if (lookahead != 0 && lookahead != '*' && lookahead != '+' && - lookahead != '?') ADVANCE(88); - END_STATE(); - case 89: - ACCEPT_TOKEN(anon_sym_PLUS); + lookahead != '?') ADVANCE(89); END_STATE(); case 90: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '=') ADVANCE(111); END_STATE(); case 91: - ACCEPT_TOKEN(anon_sym_STAR); + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '=') ADVANCE(112); END_STATE(); case 92: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '=') ADVANCE(113); END_STATE(); case 93: - ACCEPT_TOKEN(anon_sym_QMARK); + ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '=') ADVANCE(114); END_STATE(); case 94: - ACCEPT_TOKEN(anon_sym_DASH); + ACCEPT_TOKEN(anon_sym_QMARK); END_STATE(); case 95: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '=') ADVANCE(112); END_STATE(); case 96: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '=') ADVANCE(112); - if (lookahead == '>') ADVANCE(141); + if (lookahead == '=') ADVANCE(113); END_STATE(); case 97: ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '=') ADVANCE(113); if (lookahead == '>') ADVANCE(141); END_STATE(); case 98: + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '>') ADVANCE(141); + END_STATE(); + case 99: ACCEPT_TOKEN(anon_sym_SLASH); if (lookahead == '*') ADVANCE(174); if (lookahead == '/') ADVANCE(160); - if (lookahead == '=') ADVANCE(114); - END_STATE(); - case 99: - ACCEPT_TOKEN(anon_sym_PERCENT); if (lookahead == '=') ADVANCE(115); END_STATE(); case 100: - ACCEPT_TOKEN(anon_sym_CARET); + ACCEPT_TOKEN(anon_sym_PERCENT); if (lookahead == '=') ADVANCE(116); END_STATE(); case 101: - ACCEPT_TOKEN(anon_sym_BANG); + ACCEPT_TOKEN(anon_sym_CARET); + if (lookahead == '=') ADVANCE(117); END_STATE(); case 102: ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(125); END_STATE(); case 103: - ACCEPT_TOKEN(anon_sym_AMP); + ACCEPT_TOKEN(anon_sym_BANG); + if (lookahead == '=') ADVANCE(126); END_STATE(); case 104: ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(107); - if (lookahead == '=') ADVANCE(117); END_STATE(); case 105: - ACCEPT_TOKEN(anon_sym_PIPE); + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '&') ADVANCE(108); + if (lookahead == '=') ADVANCE(118); END_STATE(); case 106: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '=') ADVANCE(118); - if (lookahead == '|') ADVANCE(108); END_STATE(); case 107: - ACCEPT_TOKEN(anon_sym_AMP_AMP); + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '=') ADVANCE(119); + if (lookahead == '|') ADVANCE(109); END_STATE(); case 108: - ACCEPT_TOKEN(anon_sym_PIPE_PIPE); + ACCEPT_TOKEN(anon_sym_AMP_AMP); END_STATE(); case 109: - ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '=') ADVANCE(119); + ACCEPT_TOKEN(anon_sym_PIPE_PIPE); END_STATE(); case 110: - ACCEPT_TOKEN(anon_sym_GT_GT); + ACCEPT_TOKEN(anon_sym_LT_LT); if (lookahead == '=') ADVANCE(120); END_STATE(); case 111: - ACCEPT_TOKEN(anon_sym_PLUS_EQ); + ACCEPT_TOKEN(anon_sym_GT_GT); + if (lookahead == '=') ADVANCE(121); END_STATE(); case 112: - ACCEPT_TOKEN(anon_sym_DASH_EQ); + ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); case 113: - ACCEPT_TOKEN(anon_sym_STAR_EQ); + ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); case 114: - ACCEPT_TOKEN(anon_sym_SLASH_EQ); + ACCEPT_TOKEN(anon_sym_STAR_EQ); END_STATE(); case 115: - ACCEPT_TOKEN(anon_sym_PERCENT_EQ); + ACCEPT_TOKEN(anon_sym_SLASH_EQ); END_STATE(); case 116: - ACCEPT_TOKEN(anon_sym_CARET_EQ); + ACCEPT_TOKEN(anon_sym_PERCENT_EQ); END_STATE(); case 117: - ACCEPT_TOKEN(anon_sym_AMP_EQ); + ACCEPT_TOKEN(anon_sym_CARET_EQ); END_STATE(); case 118: - ACCEPT_TOKEN(anon_sym_PIPE_EQ); + ACCEPT_TOKEN(anon_sym_AMP_EQ); END_STATE(); case 119: - ACCEPT_TOKEN(anon_sym_LT_LT_EQ); + ACCEPT_TOKEN(anon_sym_PIPE_EQ); END_STATE(); case 120: - ACCEPT_TOKEN(anon_sym_GT_GT_EQ); + ACCEPT_TOKEN(anon_sym_LT_LT_EQ); END_STATE(); case 121: - ACCEPT_TOKEN(anon_sym_EQ); + ACCEPT_TOKEN(anon_sym_GT_GT_EQ); END_STATE(); case 122: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(124); END_STATE(); case 123: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(124); - if (lookahead == '>') ADVANCE(81); + if (lookahead == '=') ADVANCE(125); END_STATE(); case 124: - ACCEPT_TOKEN(anon_sym_EQ_EQ); + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(125); + if (lookahead == '>') ADVANCE(82); END_STATE(); case 125: - ACCEPT_TOKEN(anon_sym_BANG_EQ); + ACCEPT_TOKEN(anon_sym_EQ_EQ); END_STATE(); case 126: - ACCEPT_TOKEN(anon_sym_GT); + ACCEPT_TOKEN(anon_sym_BANG_EQ); END_STATE(); case 127: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(130); - if (lookahead == '>') ADVANCE(110); END_STATE(); case 128: - ACCEPT_TOKEN(anon_sym_LT); + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(131); + if (lookahead == '>') ADVANCE(111); END_STATE(); case 129: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(109); - if (lookahead == '=') ADVANCE(131); END_STATE(); case 130: - ACCEPT_TOKEN(anon_sym_GT_EQ); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '<') ADVANCE(110); + if (lookahead == '=') ADVANCE(132); END_STATE(); case 131: - ACCEPT_TOKEN(anon_sym_LT_EQ); + ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); case 132: - ACCEPT_TOKEN(anon_sym_AT); + ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); case 133: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(136); + ACCEPT_TOKEN(anon_sym_AT); END_STATE(); case 134: - ACCEPT_TOKEN(anon_sym_DOT_DOT); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(137); END_STATE(); case 135: ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '.') ADVANCE(137); END_STATE(); case 136: ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '.') ADVANCE(137); - if (lookahead == '=') ADVANCE(138); + if (lookahead == '.') ADVANCE(138); END_STATE(); case 137: - ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); + ACCEPT_TOKEN(anon_sym_DOT_DOT); + if (lookahead == '.') ADVANCE(138); + if (lookahead == '=') ADVANCE(139); END_STATE(); case 138: - ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ); + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); END_STATE(); case 139: - ACCEPT_TOKEN(anon_sym_COMMA); + ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ); END_STATE(); case 140: ACCEPT_TOKEN(anon_sym_COLON_COLON); @@ -9120,7 +9237,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead != 0 && lookahead != '*' && lookahead != '+' && - lookahead != '?') ADVANCE(88); + lookahead != '?') ADVANCE(89); END_STATE(); case 162: ACCEPT_TOKEN(anon_sym_SLASH_SLASH); @@ -9183,13 +9300,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\n') ADVANCE(170); END_STATE(); case 171: - ACCEPT_TOKEN(anon_sym_BANG2); + ACCEPT_TOKEN(sym__inner_line_doc_comment_marker); END_STATE(); case 172: - ACCEPT_TOKEN(anon_sym_SLASH2); + ACCEPT_TOKEN(sym__outer_line_doc_comment_marker); END_STATE(); case 173: - ACCEPT_TOKEN(anon_sym_SLASH2); + ACCEPT_TOKEN(sym__outer_line_doc_comment_marker); if (lookahead == '/') ADVANCE(163); END_STATE(); case 174: @@ -9206,77 +9323,77 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 177: ACCEPT_TOKEN(sym_identifier); if (lookahead == '!') ADVANCE(74); - if (set_contains(sym_identifier_character_set_3, 776, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_3, 763, lookahead)) ADVANCE(191); END_STATE(); case 178: ACCEPT_TOKEN(sym_identifier); if (lookahead == '"') ADVANCE(156); if (lookahead == '\'') ADVANCE(26); - if (set_contains(sym_identifier_character_set_3, 776, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_3, 763, lookahead)) ADVANCE(191); END_STATE(); case 179: ACCEPT_TOKEN(sym_identifier); if (lookahead == '"') ADVANCE(156); - if (set_contains(sym_identifier_character_set_3, 776, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_3, 763, lookahead)) ADVANCE(191); END_STATE(); case 180: ACCEPT_TOKEN(sym_identifier); if (lookahead == '#') ADVANCE(66); - if (set_contains(sym_identifier_character_set_3, 776, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_3, 763, lookahead)) ADVANCE(191); END_STATE(); case 181: ACCEPT_TOKEN(sym_identifier); if (lookahead == '_') ADVANCE(188); - if (set_contains(sym_identifier_character_set_3, 776, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_3, 763, lookahead)) ADVANCE(191); END_STATE(); case 182: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'a') ADVANCE(183); - if (set_contains(sym_identifier_character_set_3, 776, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_3, 763, lookahead)) ADVANCE(191); END_STATE(); case 183: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'c') ADVANCE(187); - if (set_contains(sym_identifier_character_set_3, 776, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_3, 763, lookahead)) ADVANCE(191); END_STATE(); case 184: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'e') ADVANCE(189); - if (set_contains(sym_identifier_character_set_3, 776, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_3, 763, lookahead)) ADVANCE(191); END_STATE(); case 185: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'l') ADVANCE(184); - if (set_contains(sym_identifier_character_set_3, 776, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_3, 763, lookahead)) ADVANCE(191); END_STATE(); case 186: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'o') ADVANCE(181); - if (set_contains(sym_identifier_character_set_3, 776, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_3, 763, lookahead)) ADVANCE(191); END_STATE(); case 187: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'r') ADVANCE(186); - if (set_contains(sym_identifier_character_set_3, 776, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_3, 763, lookahead)) ADVANCE(191); END_STATE(); case 188: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'r') ADVANCE(190); - if (set_contains(sym_identifier_character_set_3, 776, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_3, 763, lookahead)) ADVANCE(191); END_STATE(); case 189: ACCEPT_TOKEN(sym_identifier); if (lookahead == 's') ADVANCE(177); - if (set_contains(sym_identifier_character_set_3, 776, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_3, 763, lookahead)) ADVANCE(191); END_STATE(); case 190: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'u') ADVANCE(185); - if (set_contains(sym_identifier_character_set_3, 776, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_3, 763, lookahead)) ADVANCE(191); END_STATE(); case 191: ACCEPT_TOKEN(sym_identifier); - if (set_contains(sym_identifier_character_set_3, 776, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_3, 763, lookahead)) ADVANCE(191); END_STATE(); case 192: ACCEPT_TOKEN(sym_shebang); @@ -9521,124 +9638,125 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { if (lookahead == 'o') ADVANCE(101); END_STATE(); case 50: - if (lookahead == 't') ADVANCE(102); + if (lookahead == 'c') ADVANCE(102); + if (lookahead == 't') ADVANCE(103); END_STATE(); case 51: - if (lookahead == 't') ADVANCE(103); + if (lookahead == 't') ADVANCE(104); END_STATE(); case 52: - if (lookahead == 'd') ADVANCE(104); - if (lookahead == 'v') ADVANCE(105); + if (lookahead == 'd') ADVANCE(105); + if (lookahead == 'v') ADVANCE(106); END_STATE(); case 53: - if (lookahead == 't') ADVANCE(106); + if (lookahead == 't') ADVANCE(107); END_STATE(); case 54: - if (lookahead == 't') ADVANCE(107); + if (lookahead == 't') ADVANCE(108); END_STATE(); case 55: - if (lookahead == 'b') ADVANCE(108); + if (lookahead == 'b') ADVANCE(109); END_STATE(); case 56: - if (lookahead == 'f') ADVANCE(109); - if (lookahead == 't') ADVANCE(110); + if (lookahead == 'f') ADVANCE(110); + if (lookahead == 't') ADVANCE(111); END_STATE(); case 57: - if (lookahead == 'l') ADVANCE(111); + if (lookahead == 'l') ADVANCE(112); END_STATE(); case 58: - if (lookahead == 'a') ADVANCE(112); - if (lookahead == 'm') ADVANCE(113); - if (lookahead == 'r') ADVANCE(114); + if (lookahead == 'a') ADVANCE(113); + if (lookahead == 'm') ADVANCE(114); + if (lookahead == 'r') ADVANCE(115); END_STATE(); case 59: - if (lookahead == 'p') ADVANCE(115); + if (lookahead == 'p') ADVANCE(116); END_STATE(); case 60: - if (lookahead == 'a') ADVANCE(116); - if (lookahead == 'u') ADVANCE(117); - if (lookahead == 'y') ADVANCE(118); + if (lookahead == 'a') ADVANCE(117); + if (lookahead == 'u') ADVANCE(118); + if (lookahead == 'y') ADVANCE(119); END_STATE(); case 61: ACCEPT_TOKEN(anon_sym_tt); END_STATE(); case 62: ACCEPT_TOKEN(anon_sym_ty); - if (lookahead == 'p') ADVANCE(119); + if (lookahead == 'p') ADVANCE(120); END_STATE(); case 63: - if (lookahead == '2') ADVANCE(120); - if (lookahead == '6') ADVANCE(121); + if (lookahead == '2') ADVANCE(121); + if (lookahead == '6') ADVANCE(122); END_STATE(); case 64: - if (lookahead == '2') ADVANCE(122); + if (lookahead == '2') ADVANCE(123); END_STATE(); case 65: - if (lookahead == '4') ADVANCE(123); + if (lookahead == '4') ADVANCE(124); END_STATE(); case 66: ACCEPT_TOKEN(anon_sym_u8); END_STATE(); case 67: - if (lookahead == 'i') ADVANCE(124); - if (lookahead == 's') ADVANCE(125); + if (lookahead == 'i') ADVANCE(125); + if (lookahead == 's') ADVANCE(126); END_STATE(); case 68: - if (lookahead == 'e') ADVANCE(126); - if (lookahead == 'i') ADVANCE(127); + if (lookahead == 'e') ADVANCE(127); + if (lookahead == 'i') ADVANCE(128); END_STATE(); case 69: - if (lookahead == 's') ADVANCE(128); + if (lookahead == 's') ADVANCE(129); END_STATE(); case 70: - if (lookahead == 'e') ADVANCE(129); - if (lookahead == 'i') ADVANCE(130); + if (lookahead == 'e') ADVANCE(130); + if (lookahead == 'i') ADVANCE(131); END_STATE(); case 71: - if (lookahead == 'e') ADVANCE(131); + if (lookahead == 'e') ADVANCE(132); END_STATE(); case 72: - if (lookahead == 'n') ADVANCE(132); + if (lookahead == 'n') ADVANCE(133); END_STATE(); case 73: - if (lookahead == 'i') ADVANCE(133); + if (lookahead == 'i') ADVANCE(134); END_STATE(); case 74: - if (lookahead == 'c') ADVANCE(134); + if (lookahead == 'c') ADVANCE(135); END_STATE(); case 75: - if (lookahead == 'l') ADVANCE(135); + if (lookahead == 'l') ADVANCE(136); END_STATE(); case 76: - if (lookahead == 'a') ADVANCE(136); + if (lookahead == 'a') ADVANCE(137); END_STATE(); case 77: - if (lookahead == 'r') ADVANCE(137); + if (lookahead == 'r') ADVANCE(138); END_STATE(); case 78: - if (lookahead == 's') ADVANCE(138); - if (lookahead == 't') ADVANCE(139); + if (lookahead == 's') ADVANCE(139); + if (lookahead == 't') ADVANCE(140); END_STATE(); case 79: - if (lookahead == 't') ADVANCE(140); + if (lookahead == 't') ADVANCE(141); END_STATE(); case 80: - if (lookahead == 'a') ADVANCE(141); + if (lookahead == 'a') ADVANCE(142); END_STATE(); case 81: ACCEPT_TOKEN(anon_sym_dyn); END_STATE(); case 82: - if (lookahead == 'e') ADVANCE(142); + if (lookahead == 'e') ADVANCE(143); END_STATE(); case 83: - if (lookahead == 'm') ADVANCE(143); + if (lookahead == 'm') ADVANCE(144); END_STATE(); case 84: - if (lookahead == 'r') ADVANCE(144); + if (lookahead == 'r') ADVANCE(145); END_STATE(); case 85: - if (lookahead == 'e') ADVANCE(145); + if (lookahead == 'e') ADVANCE(146); END_STATE(); case 86: ACCEPT_TOKEN(anon_sym_f32); @@ -9647,13 +9765,13 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(anon_sym_f64); END_STATE(); case 88: - if (lookahead == 's') ADVANCE(146); + if (lookahead == 's') ADVANCE(147); END_STATE(); case 89: ACCEPT_TOKEN(anon_sym_for); END_STATE(); case 90: - if (lookahead == '8') ADVANCE(147); + if (lookahead == '8') ADVANCE(148); END_STATE(); case 91: ACCEPT_TOKEN(anon_sym_i16); @@ -9665,371 +9783,380 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(anon_sym_i64); END_STATE(); case 94: - if (lookahead == 'n') ADVANCE(148); + if (lookahead == 'n') ADVANCE(149); END_STATE(); case 95: - if (lookahead == 'l') ADVANCE(149); + if (lookahead == 'l') ADVANCE(150); END_STATE(); case 96: - if (lookahead == 'z') ADVANCE(150); + if (lookahead == 'z') ADVANCE(151); END_STATE(); case 97: - if (lookahead == 'm') ADVANCE(151); + if (lookahead == 'm') ADVANCE(152); END_STATE(); case 98: ACCEPT_TOKEN(anon_sym_let); END_STATE(); case 99: - if (lookahead == 'e') ADVANCE(152); + if (lookahead == 'e') ADVANCE(153); END_STATE(); case 100: - if (lookahead == 'e') ADVANCE(153); + if (lookahead == 'e') ADVANCE(154); END_STATE(); case 101: - if (lookahead == 'p') ADVANCE(154); + if (lookahead == 'p') ADVANCE(155); END_STATE(); case 102: - if (lookahead == 'c') ADVANCE(155); + if (lookahead == 'r') ADVANCE(156); END_STATE(); case 103: - if (lookahead == 'a') ADVANCE(156); + if (lookahead == 'c') ADVANCE(157); END_STATE(); case 104: - ACCEPT_TOKEN(anon_sym_mod); + if (lookahead == 'a') ADVANCE(158); END_STATE(); case 105: - if (lookahead == 'e') ADVANCE(157); + ACCEPT_TOKEN(anon_sym_mod); END_STATE(); case 106: - ACCEPT_TOKEN(sym_mutable_specifier); + if (lookahead == 'e') ADVANCE(159); END_STATE(); case 107: - ACCEPT_TOKEN(anon_sym_pat); - if (lookahead == 'h') ADVANCE(158); + ACCEPT_TOKEN(sym_mutable_specifier); END_STATE(); case 108: - ACCEPT_TOKEN(anon_sym_pub); + ACCEPT_TOKEN(anon_sym_pat); + if (lookahead == 'h') ADVANCE(160); END_STATE(); case 109: - ACCEPT_TOKEN(anon_sym_ref); + ACCEPT_TOKEN(anon_sym_pub); END_STATE(); case 110: - if (lookahead == 'u') ADVANCE(159); + ACCEPT_TOKEN(anon_sym_ref); END_STATE(); case 111: - if (lookahead == 'f') ADVANCE(160); + if (lookahead == 'u') ADVANCE(161); END_STATE(); case 112: - if (lookahead == 't') ADVANCE(161); + if (lookahead == 'f') ADVANCE(162); END_STATE(); case 113: - if (lookahead == 't') ADVANCE(162); + if (lookahead == 't') ADVANCE(163); END_STATE(); case 114: - ACCEPT_TOKEN(anon_sym_str); - if (lookahead == 'u') ADVANCE(163); + if (lookahead == 't') ADVANCE(164); END_STATE(); case 115: - if (lookahead == 'e') ADVANCE(164); + ACCEPT_TOKEN(anon_sym_str); + if (lookahead == 'u') ADVANCE(165); END_STATE(); case 116: - if (lookahead == 'i') ADVANCE(165); + if (lookahead == 'e') ADVANCE(166); END_STATE(); case 117: - if (lookahead == 'e') ADVANCE(166); + if (lookahead == 'i') ADVANCE(167); END_STATE(); case 118: - ACCEPT_TOKEN(anon_sym_try); + if (lookahead == 'e') ADVANCE(168); END_STATE(); case 119: - if (lookahead == 'e') ADVANCE(167); + ACCEPT_TOKEN(anon_sym_try); END_STATE(); case 120: - if (lookahead == '8') ADVANCE(168); + if (lookahead == 'e') ADVANCE(169); END_STATE(); case 121: - ACCEPT_TOKEN(anon_sym_u16); + if (lookahead == '8') ADVANCE(170); END_STATE(); case 122: - ACCEPT_TOKEN(anon_sym_u32); + ACCEPT_TOKEN(anon_sym_u16); END_STATE(); case 123: - ACCEPT_TOKEN(anon_sym_u64); + ACCEPT_TOKEN(anon_sym_u32); END_STATE(); case 124: - if (lookahead == 'o') ADVANCE(169); + ACCEPT_TOKEN(anon_sym_u64); END_STATE(); case 125: - if (lookahead == 'a') ADVANCE(170); + if (lookahead == 'o') ADVANCE(171); END_STATE(); case 126: - ACCEPT_TOKEN(anon_sym_use); + if (lookahead == 'a') ADVANCE(172); END_STATE(); case 127: - if (lookahead == 'z') ADVANCE(171); + ACCEPT_TOKEN(anon_sym_use); END_STATE(); case 128: - ACCEPT_TOKEN(anon_sym_vis); + if (lookahead == 'z') ADVANCE(173); END_STATE(); case 129: - if (lookahead == 'r') ADVANCE(172); + ACCEPT_TOKEN(anon_sym_vis); END_STATE(); case 130: - if (lookahead == 'l') ADVANCE(173); + if (lookahead == 'r') ADVANCE(174); END_STATE(); case 131: - if (lookahead == 'l') ADVANCE(174); + if (lookahead == 'l') ADVANCE(175); END_STATE(); case 132: - if (lookahead == 'c') ADVANCE(175); + if (lookahead == 'l') ADVANCE(176); END_STATE(); case 133: - if (lookahead == 't') ADVANCE(176); + if (lookahead == 'c') ADVANCE(177); END_STATE(); case 134: - if (lookahead == 'k') ADVANCE(177); + if (lookahead == 't') ADVANCE(178); END_STATE(); case 135: - ACCEPT_TOKEN(anon_sym_bool); + if (lookahead == 'k') ADVANCE(179); END_STATE(); case 136: - if (lookahead == 'k') ADVANCE(178); + ACCEPT_TOKEN(anon_sym_bool); END_STATE(); case 137: - ACCEPT_TOKEN(anon_sym_char); + if (lookahead == 'k') ADVANCE(180); END_STATE(); case 138: - if (lookahead == 't') ADVANCE(179); + ACCEPT_TOKEN(anon_sym_char); END_STATE(); case 139: - if (lookahead == 'i') ADVANCE(180); + if (lookahead == 't') ADVANCE(181); END_STATE(); case 140: - if (lookahead == 'e') ADVANCE(181); + if (lookahead == 'i') ADVANCE(182); END_STATE(); case 141: - if (lookahead == 'u') ADVANCE(182); + if (lookahead == 'e') ADVANCE(183); END_STATE(); case 142: - ACCEPT_TOKEN(anon_sym_else); + if (lookahead == 'u') ADVANCE(184); END_STATE(); case 143: - ACCEPT_TOKEN(anon_sym_enum); + ACCEPT_TOKEN(anon_sym_else); END_STATE(); case 144: - ACCEPT_TOKEN(anon_sym_expr); + ACCEPT_TOKEN(anon_sym_enum); END_STATE(); case 145: - if (lookahead == 'r') ADVANCE(183); + ACCEPT_TOKEN(anon_sym_expr); END_STATE(); case 146: - if (lookahead == 'e') ADVANCE(184); + if (lookahead == 'r') ADVANCE(185); END_STATE(); case 147: - ACCEPT_TOKEN(anon_sym_i128); + if (lookahead == 'e') ADVANCE(186); END_STATE(); case 148: - if (lookahead == 't') ADVANCE(185); + ACCEPT_TOKEN(anon_sym_i128); END_STATE(); case 149: - ACCEPT_TOKEN(anon_sym_impl); + if (lookahead == 't') ADVANCE(187); END_STATE(); case 150: - if (lookahead == 'e') ADVANCE(186); + ACCEPT_TOKEN(anon_sym_impl); END_STATE(); case 151: - ACCEPT_TOKEN(anon_sym_item); + if (lookahead == 'e') ADVANCE(188); END_STATE(); case 152: - if (lookahead == 't') ADVANCE(187); + ACCEPT_TOKEN(anon_sym_item); END_STATE(); case 153: - if (lookahead == 'r') ADVANCE(188); + if (lookahead == 't') ADVANCE(189); END_STATE(); case 154: - ACCEPT_TOKEN(anon_sym_loop); + if (lookahead == 'r') ADVANCE(190); END_STATE(); case 155: - if (lookahead == 'h') ADVANCE(189); + ACCEPT_TOKEN(anon_sym_loop); END_STATE(); case 156: - ACCEPT_TOKEN(anon_sym_meta); + if (lookahead == 'o') ADVANCE(191); END_STATE(); case 157: - ACCEPT_TOKEN(anon_sym_move); + if (lookahead == 'h') ADVANCE(192); END_STATE(); case 158: - ACCEPT_TOKEN(anon_sym_path); + ACCEPT_TOKEN(anon_sym_meta); END_STATE(); case 159: - if (lookahead == 'r') ADVANCE(190); + ACCEPT_TOKEN(anon_sym_move); END_STATE(); case 160: - ACCEPT_TOKEN(sym_self); + ACCEPT_TOKEN(anon_sym_path); END_STATE(); case 161: - if (lookahead == 'i') ADVANCE(191); + if (lookahead == 'r') ADVANCE(193); END_STATE(); case 162: - ACCEPT_TOKEN(anon_sym_stmt); + ACCEPT_TOKEN(sym_self); END_STATE(); case 163: - if (lookahead == 'c') ADVANCE(192); + if (lookahead == 'i') ADVANCE(194); END_STATE(); case 164: - if (lookahead == 'r') ADVANCE(193); + ACCEPT_TOKEN(anon_sym_stmt); END_STATE(); case 165: - if (lookahead == 't') ADVANCE(194); + if (lookahead == 'c') ADVANCE(195); END_STATE(); case 166: - ACCEPT_TOKEN(anon_sym_true); + if (lookahead == 'r') ADVANCE(196); END_STATE(); case 167: - ACCEPT_TOKEN(anon_sym_type); + if (lookahead == 't') ADVANCE(197); END_STATE(); case 168: - ACCEPT_TOKEN(anon_sym_u128); + ACCEPT_TOKEN(anon_sym_true); END_STATE(); case 169: - if (lookahead == 'n') ADVANCE(195); + ACCEPT_TOKEN(anon_sym_type); END_STATE(); case 170: - if (lookahead == 'f') ADVANCE(196); + ACCEPT_TOKEN(anon_sym_u128); END_STATE(); case 171: - if (lookahead == 'e') ADVANCE(197); + if (lookahead == 'n') ADVANCE(198); END_STATE(); case 172: - if (lookahead == 'e') ADVANCE(198); + if (lookahead == 'f') ADVANCE(199); END_STATE(); case 173: - if (lookahead == 'e') ADVANCE(199); + if (lookahead == 'e') ADVANCE(200); END_STATE(); case 174: - if (lookahead == 'd') ADVANCE(200); + if (lookahead == 'e') ADVANCE(201); END_STATE(); case 175: - ACCEPT_TOKEN(anon_sym_async); + if (lookahead == 'e') ADVANCE(202); END_STATE(); case 176: - ACCEPT_TOKEN(anon_sym_await); + if (lookahead == 'd') ADVANCE(203); END_STATE(); case 177: - ACCEPT_TOKEN(anon_sym_block); + ACCEPT_TOKEN(anon_sym_async); END_STATE(); case 178: - ACCEPT_TOKEN(anon_sym_break); + ACCEPT_TOKEN(anon_sym_await); END_STATE(); case 179: - ACCEPT_TOKEN(anon_sym_const); + ACCEPT_TOKEN(anon_sym_block); END_STATE(); case 180: - if (lookahead == 'n') ADVANCE(201); + ACCEPT_TOKEN(anon_sym_break); END_STATE(); case 181: - ACCEPT_TOKEN(sym_crate); + ACCEPT_TOKEN(anon_sym_const); END_STATE(); case 182: - if (lookahead == 'l') ADVANCE(202); + if (lookahead == 'n') ADVANCE(204); END_STATE(); case 183: - if (lookahead == 'n') ADVANCE(203); + ACCEPT_TOKEN(sym_crate); END_STATE(); case 184: - ACCEPT_TOKEN(anon_sym_false); + if (lookahead == 'l') ADVANCE(205); END_STATE(); case 185: - ACCEPT_TOKEN(anon_sym_ident); + if (lookahead == 'n') ADVANCE(206); END_STATE(); case 186: - ACCEPT_TOKEN(anon_sym_isize); + ACCEPT_TOKEN(anon_sym_false); END_STATE(); case 187: - if (lookahead == 'i') ADVANCE(204); + ACCEPT_TOKEN(anon_sym_ident); END_STATE(); case 188: - if (lookahead == 'a') ADVANCE(205); + ACCEPT_TOKEN(anon_sym_isize); END_STATE(); case 189: - ACCEPT_TOKEN(anon_sym_match); + if (lookahead == 'i') ADVANCE(207); END_STATE(); case 190: - if (lookahead == 'n') ADVANCE(206); + if (lookahead == 'a') ADVANCE(208); END_STATE(); case 191: - if (lookahead == 'c') ADVANCE(207); + ACCEPT_TOKEN(anon_sym_macro); END_STATE(); case 192: - if (lookahead == 't') ADVANCE(208); + ACCEPT_TOKEN(anon_sym_match); END_STATE(); case 193: - ACCEPT_TOKEN(sym_super); + if (lookahead == 'n') ADVANCE(209); END_STATE(); case 194: - ACCEPT_TOKEN(anon_sym_trait); + if (lookahead == 'c') ADVANCE(210); END_STATE(); case 195: - ACCEPT_TOKEN(anon_sym_union); + if (lookahead == 't') ADVANCE(211); END_STATE(); case 196: - if (lookahead == 'e') ADVANCE(209); + ACCEPT_TOKEN(sym_super); END_STATE(); case 197: - ACCEPT_TOKEN(anon_sym_usize); + ACCEPT_TOKEN(anon_sym_trait); END_STATE(); case 198: - ACCEPT_TOKEN(anon_sym_where); + ACCEPT_TOKEN(anon_sym_union); END_STATE(); case 199: - ACCEPT_TOKEN(anon_sym_while); + if (lookahead == 'e') ADVANCE(212); END_STATE(); case 200: - ACCEPT_TOKEN(anon_sym_yield); + ACCEPT_TOKEN(anon_sym_usize); END_STATE(); case 201: - if (lookahead == 'u') ADVANCE(210); + ACCEPT_TOKEN(anon_sym_where); END_STATE(); case 202: - if (lookahead == 't') ADVANCE(211); + ACCEPT_TOKEN(anon_sym_while); END_STATE(); case 203: - ACCEPT_TOKEN(anon_sym_extern); + ACCEPT_TOKEN(anon_sym_yield); END_STATE(); case 204: - if (lookahead == 'm') ADVANCE(212); + if (lookahead == 'u') ADVANCE(213); END_STATE(); case 205: - if (lookahead == 'l') ADVANCE(213); + if (lookahead == 't') ADVANCE(214); END_STATE(); case 206: - ACCEPT_TOKEN(anon_sym_return); + ACCEPT_TOKEN(anon_sym_extern); END_STATE(); case 207: - ACCEPT_TOKEN(anon_sym_static); + if (lookahead == 'm') ADVANCE(215); END_STATE(); case 208: - ACCEPT_TOKEN(anon_sym_struct); + if (lookahead == 'l') ADVANCE(216); END_STATE(); case 209: - ACCEPT_TOKEN(anon_sym_unsafe); + ACCEPT_TOKEN(anon_sym_return); END_STATE(); case 210: - if (lookahead == 'e') ADVANCE(214); + ACCEPT_TOKEN(anon_sym_static); END_STATE(); case 211: - ACCEPT_TOKEN(anon_sym_default); + ACCEPT_TOKEN(anon_sym_struct); END_STATE(); case 212: - if (lookahead == 'e') ADVANCE(215); + ACCEPT_TOKEN(anon_sym_unsafe); END_STATE(); case 213: - ACCEPT_TOKEN(anon_sym_literal); + if (lookahead == 'e') ADVANCE(217); END_STATE(); case 214: - ACCEPT_TOKEN(anon_sym_continue); + ACCEPT_TOKEN(anon_sym_default); END_STATE(); case 215: + if (lookahead == 'e') ADVANCE(218); + END_STATE(); + case 216: + ACCEPT_TOKEN(anon_sym_literal); + END_STATE(); + case 217: + ACCEPT_TOKEN(anon_sym_continue); + END_STATE(); + case 218: ACCEPT_TOKEN(anon_sym_lifetime); END_STATE(); default: @@ -10082,15 +10209,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [41] = {.lex_state = 3, .external_lex_state = 2}, [42] = {.lex_state = 3, .external_lex_state = 2}, [43] = {.lex_state = 5, .external_lex_state = 2}, - [44] = {.lex_state = 3, .external_lex_state = 2}, + [44] = {.lex_state = 5, .external_lex_state = 2}, [45] = {.lex_state = 5, .external_lex_state = 2}, [46] = {.lex_state = 5, .external_lex_state = 2}, - [47] = {.lex_state = 5, .external_lex_state = 2}, + [47] = {.lex_state = 3, .external_lex_state = 2}, [48] = {.lex_state = 5, .external_lex_state = 2}, [49] = {.lex_state = 5, .external_lex_state = 2}, - [50] = {.lex_state = 5, .external_lex_state = 2}, + [50] = {.lex_state = 3, .external_lex_state = 2}, [51] = {.lex_state = 5, .external_lex_state = 2}, - [52] = {.lex_state = 3, .external_lex_state = 2}, + [52] = {.lex_state = 5, .external_lex_state = 2}, [53] = {.lex_state = 3, .external_lex_state = 2}, [54] = {.lex_state = 3, .external_lex_state = 2}, [55] = {.lex_state = 3, .external_lex_state = 2}, @@ -10122,13 +10249,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [81] = {.lex_state = 2, .external_lex_state = 2}, [82] = {.lex_state = 2, .external_lex_state = 2}, [83] = {.lex_state = 4, .external_lex_state = 2}, - [84] = {.lex_state = 4, .external_lex_state = 2}, + [84] = {.lex_state = 2, .external_lex_state = 2}, [85] = {.lex_state = 2, .external_lex_state = 2}, [86] = {.lex_state = 2, .external_lex_state = 2}, [87] = {.lex_state = 2, .external_lex_state = 2}, - [88] = {.lex_state = 2, .external_lex_state = 2}, + [88] = {.lex_state = 4, .external_lex_state = 2}, [89] = {.lex_state = 4, .external_lex_state = 2}, - [90] = {.lex_state = 2, .external_lex_state = 2}, + [90] = {.lex_state = 4, .external_lex_state = 2}, [91] = {.lex_state = 4, .external_lex_state = 2}, [92] = {.lex_state = 4, .external_lex_state = 2}, [93] = {.lex_state = 4, .external_lex_state = 2}, @@ -10137,93 +10264,93 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [96] = {.lex_state = 4, .external_lex_state = 2}, [97] = {.lex_state = 4, .external_lex_state = 2}, [98] = {.lex_state = 4, .external_lex_state = 2}, - [99] = {.lex_state = 2, .external_lex_state = 2}, - [100] = {.lex_state = 2, .external_lex_state = 2}, - [101] = {.lex_state = 2, .external_lex_state = 2}, + [99] = {.lex_state = 4, .external_lex_state = 2}, + [100] = {.lex_state = 4, .external_lex_state = 2}, + [101] = {.lex_state = 4, .external_lex_state = 2}, [102] = {.lex_state = 2, .external_lex_state = 2}, - [103] = {.lex_state = 2, .external_lex_state = 2}, - [104] = {.lex_state = 2, .external_lex_state = 2}, + [103] = {.lex_state = 4, .external_lex_state = 2}, + [104] = {.lex_state = 4, .external_lex_state = 2}, [105] = {.lex_state = 4, .external_lex_state = 2}, - [106] = {.lex_state = 4, .external_lex_state = 2}, + [106] = {.lex_state = 2, .external_lex_state = 2}, [107] = {.lex_state = 4, .external_lex_state = 2}, [108] = {.lex_state = 4, .external_lex_state = 2}, - [109] = {.lex_state = 4, .external_lex_state = 2}, - [110] = {.lex_state = 4, .external_lex_state = 2}, + [109] = {.lex_state = 2, .external_lex_state = 2}, + [110] = {.lex_state = 2, .external_lex_state = 2}, [111] = {.lex_state = 4, .external_lex_state = 2}, [112] = {.lex_state = 4, .external_lex_state = 2}, [113] = {.lex_state = 4, .external_lex_state = 2}, [114] = {.lex_state = 4, .external_lex_state = 2}, [115] = {.lex_state = 4, .external_lex_state = 2}, - [116] = {.lex_state = 4, .external_lex_state = 2}, - [117] = {.lex_state = 4, .external_lex_state = 2}, + [116] = {.lex_state = 2, .external_lex_state = 2}, + [117] = {.lex_state = 2, .external_lex_state = 2}, [118] = {.lex_state = 4, .external_lex_state = 2}, [119] = {.lex_state = 4, .external_lex_state = 2}, [120] = {.lex_state = 4, .external_lex_state = 2}, [121] = {.lex_state = 4, .external_lex_state = 2}, - [122] = {.lex_state = 4, .external_lex_state = 2}, - [123] = {.lex_state = 4, .external_lex_state = 2}, - [124] = {.lex_state = 4, .external_lex_state = 2}, - [125] = {.lex_state = 4, .external_lex_state = 2}, - [126] = {.lex_state = 4, .external_lex_state = 2}, + [122] = {.lex_state = 2, .external_lex_state = 2}, + [123] = {.lex_state = 2, .external_lex_state = 2}, + [124] = {.lex_state = 2, .external_lex_state = 2}, + [125] = {.lex_state = 2, .external_lex_state = 2}, + [126] = {.lex_state = 2, .external_lex_state = 2}, [127] = {.lex_state = 4, .external_lex_state = 2}, - [128] = {.lex_state = 4, .external_lex_state = 2}, + [128] = {.lex_state = 2, .external_lex_state = 2}, [129] = {.lex_state = 4, .external_lex_state = 2}, - [130] = {.lex_state = 2, .external_lex_state = 2}, - [131] = {.lex_state = 2, .external_lex_state = 2}, - [132] = {.lex_state = 2, .external_lex_state = 2}, - [133] = {.lex_state = 4, .external_lex_state = 2}, + [130] = {.lex_state = 4, .external_lex_state = 2}, + [131] = {.lex_state = 4, .external_lex_state = 2}, + [132] = {.lex_state = 4, .external_lex_state = 2}, + [133] = {.lex_state = 2, .external_lex_state = 2}, [134] = {.lex_state = 2, .external_lex_state = 2}, - [135] = {.lex_state = 2, .external_lex_state = 2}, + [135] = {.lex_state = 4, .external_lex_state = 2}, [136] = {.lex_state = 2, .external_lex_state = 2}, - [137] = {.lex_state = 2, .external_lex_state = 2}, + [137] = {.lex_state = 4, .external_lex_state = 2}, [138] = {.lex_state = 2, .external_lex_state = 2}, - [139] = {.lex_state = 2, .external_lex_state = 2}, - [140] = {.lex_state = 11, .external_lex_state = 2}, + [139] = {.lex_state = 4, .external_lex_state = 2}, + [140] = {.lex_state = 2, .external_lex_state = 2}, [141] = {.lex_state = 2, .external_lex_state = 2}, [142] = {.lex_state = 2, .external_lex_state = 2}, [143] = {.lex_state = 2, .external_lex_state = 2}, - [144] = {.lex_state = 2, .external_lex_state = 2}, - [145] = {.lex_state = 11, .external_lex_state = 2}, - [146] = {.lex_state = 11, .external_lex_state = 2}, - [147] = {.lex_state = 2, .external_lex_state = 2}, - [148] = {.lex_state = 2, .external_lex_state = 2}, - [149] = {.lex_state = 2, .external_lex_state = 2}, - [150] = {.lex_state = 4, .external_lex_state = 2}, - [151] = {.lex_state = 11, .external_lex_state = 2}, - [152] = {.lex_state = 2, .external_lex_state = 2}, - [153] = {.lex_state = 2, .external_lex_state = 2}, - [154] = {.lex_state = 2, .external_lex_state = 2}, + [144] = {.lex_state = 11, .external_lex_state = 2}, + [145] = {.lex_state = 2, .external_lex_state = 2}, + [146] = {.lex_state = 2, .external_lex_state = 2}, + [147] = {.lex_state = 11, .external_lex_state = 2}, + [148] = {.lex_state = 11, .external_lex_state = 2}, + [149] = {.lex_state = 11, .external_lex_state = 2}, + [150] = {.lex_state = 2, .external_lex_state = 2}, + [151] = {.lex_state = 2, .external_lex_state = 2}, + [152] = {.lex_state = 4, .external_lex_state = 2}, + [153] = {.lex_state = 11, .external_lex_state = 2}, + [154] = {.lex_state = 11, .external_lex_state = 2}, [155] = {.lex_state = 11, .external_lex_state = 2}, [156] = {.lex_state = 2, .external_lex_state = 2}, [157] = {.lex_state = 2, .external_lex_state = 2}, - [158] = {.lex_state = 11, .external_lex_state = 2}, + [158] = {.lex_state = 2, .external_lex_state = 2}, [159] = {.lex_state = 2, .external_lex_state = 2}, - [160] = {.lex_state = 4, .external_lex_state = 2}, - [161] = {.lex_state = 11, .external_lex_state = 2}, + [160] = {.lex_state = 2, .external_lex_state = 2}, + [161] = {.lex_state = 2, .external_lex_state = 2}, [162] = {.lex_state = 2, .external_lex_state = 2}, - [163] = {.lex_state = 11, .external_lex_state = 2}, - [164] = {.lex_state = 2, .external_lex_state = 2}, + [163] = {.lex_state = 4, .external_lex_state = 2}, + [164] = {.lex_state = 11, .external_lex_state = 2}, [165] = {.lex_state = 2, .external_lex_state = 2}, [166] = {.lex_state = 2, .external_lex_state = 2}, [167] = {.lex_state = 2, .external_lex_state = 2}, [168] = {.lex_state = 2, .external_lex_state = 2}, - [169] = {.lex_state = 11, .external_lex_state = 2}, - [170] = {.lex_state = 11, .external_lex_state = 2}, - [171] = {.lex_state = 11, .external_lex_state = 2}, - [172] = {.lex_state = 11, .external_lex_state = 2}, - [173] = {.lex_state = 4, .external_lex_state = 2}, - [174] = {.lex_state = 11, .external_lex_state = 2}, - [175] = {.lex_state = 4, .external_lex_state = 2}, + [169] = {.lex_state = 2, .external_lex_state = 2}, + [170] = {.lex_state = 2, .external_lex_state = 2}, + [171] = {.lex_state = 2, .external_lex_state = 2}, + [172] = {.lex_state = 2, .external_lex_state = 2}, + [173] = {.lex_state = 2, .external_lex_state = 2}, + [174] = {.lex_state = 2, .external_lex_state = 2}, + [175] = {.lex_state = 11, .external_lex_state = 2}, [176] = {.lex_state = 4, .external_lex_state = 2}, - [177] = {.lex_state = 4, .external_lex_state = 2}, + [177] = {.lex_state = 11, .external_lex_state = 2}, [178] = {.lex_state = 4, .external_lex_state = 2}, - [179] = {.lex_state = 11, .external_lex_state = 2}, - [180] = {.lex_state = 4, .external_lex_state = 2}, - [181] = {.lex_state = 4, .external_lex_state = 2}, + [179] = {.lex_state = 4, .external_lex_state = 2}, + [180] = {.lex_state = 11, .external_lex_state = 2}, + [181] = {.lex_state = 11, .external_lex_state = 2}, [182] = {.lex_state = 11, .external_lex_state = 2}, - [183] = {.lex_state = 4, .external_lex_state = 2}, - [184] = {.lex_state = 4, .external_lex_state = 2}, - [185] = {.lex_state = 4, .external_lex_state = 2}, + [183] = {.lex_state = 11, .external_lex_state = 2}, + [184] = {.lex_state = 11, .external_lex_state = 2}, + [185] = {.lex_state = 11, .external_lex_state = 2}, [186] = {.lex_state = 11, .external_lex_state = 2}, [187] = {.lex_state = 11, .external_lex_state = 2}, [188] = {.lex_state = 11, .external_lex_state = 2}, @@ -10236,76 +10363,76 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [195] = {.lex_state = 11, .external_lex_state = 2}, [196] = {.lex_state = 11, .external_lex_state = 2}, [197] = {.lex_state = 11, .external_lex_state = 2}, - [198] = {.lex_state = 11, .external_lex_state = 2}, + [198] = {.lex_state = 4, .external_lex_state = 2}, [199] = {.lex_state = 11, .external_lex_state = 2}, - [200] = {.lex_state = 11, .external_lex_state = 2}, - [201] = {.lex_state = 11, .external_lex_state = 2}, + [200] = {.lex_state = 4, .external_lex_state = 2}, + [201] = {.lex_state = 4, .external_lex_state = 2}, [202] = {.lex_state = 11, .external_lex_state = 2}, - [203] = {.lex_state = 11, .external_lex_state = 2}, + [203] = {.lex_state = 4, .external_lex_state = 2}, [204] = {.lex_state = 11, .external_lex_state = 2}, - [205] = {.lex_state = 11, .external_lex_state = 2}, - [206] = {.lex_state = 11, .external_lex_state = 2}, + [205] = {.lex_state = 4, .external_lex_state = 2}, + [206] = {.lex_state = 4, .external_lex_state = 2}, [207] = {.lex_state = 11, .external_lex_state = 2}, - [208] = {.lex_state = 4, .external_lex_state = 2}, + [208] = {.lex_state = 11, .external_lex_state = 2}, [209] = {.lex_state = 11, .external_lex_state = 2}, [210] = {.lex_state = 11, .external_lex_state = 2}, - [211] = {.lex_state = 11, .external_lex_state = 2}, + [211] = {.lex_state = 4, .external_lex_state = 2}, [212] = {.lex_state = 11, .external_lex_state = 2}, [213] = {.lex_state = 11, .external_lex_state = 2}, - [214] = {.lex_state = 11, .external_lex_state = 2}, + [214] = {.lex_state = 4, .external_lex_state = 2}, [215] = {.lex_state = 11, .external_lex_state = 2}, [216] = {.lex_state = 11, .external_lex_state = 2}, - [217] = {.lex_state = 13, .external_lex_state = 2}, + [217] = {.lex_state = 11, .external_lex_state = 2}, [218] = {.lex_state = 11, .external_lex_state = 2}, [219] = {.lex_state = 11, .external_lex_state = 2}, - [220] = {.lex_state = 13, .external_lex_state = 2}, - [221] = {.lex_state = 11, .external_lex_state = 2}, + [220] = {.lex_state = 11, .external_lex_state = 2}, + [221] = {.lex_state = 13, .external_lex_state = 2}, [222] = {.lex_state = 11, .external_lex_state = 2}, - [223] = {.lex_state = 11, .external_lex_state = 2}, - [224] = {.lex_state = 13, .external_lex_state = 2}, - [225] = {.lex_state = 13, .external_lex_state = 2}, + [223] = {.lex_state = 13, .external_lex_state = 2}, + [224] = {.lex_state = 69, .external_lex_state = 2}, + [225] = {.lex_state = 11, .external_lex_state = 2}, [226] = {.lex_state = 11, .external_lex_state = 2}, - [227] = {.lex_state = 11, .external_lex_state = 2}, + [227] = {.lex_state = 13, .external_lex_state = 2}, [228] = {.lex_state = 13, .external_lex_state = 2}, [229] = {.lex_state = 11, .external_lex_state = 2}, [230] = {.lex_state = 13, .external_lex_state = 2}, - [231] = {.lex_state = 13, .external_lex_state = 2}, + [231] = {.lex_state = 11, .external_lex_state = 2}, [232] = {.lex_state = 13, .external_lex_state = 2}, - [233] = {.lex_state = 13, .external_lex_state = 2}, - [234] = {.lex_state = 13, .external_lex_state = 2}, - [235] = {.lex_state = 13, .external_lex_state = 2}, - [236] = {.lex_state = 13, .external_lex_state = 2}, - [237] = {.lex_state = 13, .external_lex_state = 2}, - [238] = {.lex_state = 11, .external_lex_state = 2}, + [233] = {.lex_state = 11, .external_lex_state = 2}, + [234] = {.lex_state = 11, .external_lex_state = 2}, + [235] = {.lex_state = 11, .external_lex_state = 2}, + [236] = {.lex_state = 11, .external_lex_state = 2}, + [237] = {.lex_state = 11, .external_lex_state = 2}, + [238] = {.lex_state = 13, .external_lex_state = 2}, [239] = {.lex_state = 13, .external_lex_state = 2}, - [240] = {.lex_state = 11, .external_lex_state = 2}, + [240] = {.lex_state = 13, .external_lex_state = 2}, [241] = {.lex_state = 13, .external_lex_state = 2}, [242] = {.lex_state = 11, .external_lex_state = 2}, - [243] = {.lex_state = 11, .external_lex_state = 2}, - [244] = {.lex_state = 69, .external_lex_state = 2}, - [245] = {.lex_state = 11, .external_lex_state = 2}, + [243] = {.lex_state = 13, .external_lex_state = 2}, + [244] = {.lex_state = 13, .external_lex_state = 2}, + [245] = {.lex_state = 13, .external_lex_state = 2}, [246] = {.lex_state = 11, .external_lex_state = 2}, - [247] = {.lex_state = 11, .external_lex_state = 2}, + [247] = {.lex_state = 13, .external_lex_state = 2}, [248] = {.lex_state = 11, .external_lex_state = 2}, - [249] = {.lex_state = 11, .external_lex_state = 2}, + [249] = {.lex_state = 13, .external_lex_state = 2}, [250] = {.lex_state = 11, .external_lex_state = 2}, [251] = {.lex_state = 11, .external_lex_state = 2}, - [252] = {.lex_state = 11, .external_lex_state = 2}, - [253] = {.lex_state = 11, .external_lex_state = 2}, - [254] = {.lex_state = 11, .external_lex_state = 2}, + [252] = {.lex_state = 69, .external_lex_state = 2}, + [253] = {.lex_state = 69, .external_lex_state = 2}, + [254] = {.lex_state = 69, .external_lex_state = 2}, [255] = {.lex_state = 11, .external_lex_state = 2}, [256] = {.lex_state = 11, .external_lex_state = 2}, - [257] = {.lex_state = 11, .external_lex_state = 2}, - [258] = {.lex_state = 11, .external_lex_state = 2}, + [257] = {.lex_state = 69, .external_lex_state = 2}, + [258] = {.lex_state = 69, .external_lex_state = 2}, [259] = {.lex_state = 11, .external_lex_state = 2}, [260] = {.lex_state = 11, .external_lex_state = 2}, - [261] = {.lex_state = 69, .external_lex_state = 2}, + [261] = {.lex_state = 11, .external_lex_state = 2}, [262] = {.lex_state = 11, .external_lex_state = 2}, [263] = {.lex_state = 11, .external_lex_state = 2}, [264] = {.lex_state = 11, .external_lex_state = 2}, [265] = {.lex_state = 11, .external_lex_state = 2}, [266] = {.lex_state = 11, .external_lex_state = 2}, - [267] = {.lex_state = 11, .external_lex_state = 2}, + [267] = {.lex_state = 69, .external_lex_state = 2}, [268] = {.lex_state = 11, .external_lex_state = 2}, [269] = {.lex_state = 11, .external_lex_state = 2}, [270] = {.lex_state = 11, .external_lex_state = 2}, @@ -10319,13 +10446,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [278] = {.lex_state = 11, .external_lex_state = 2}, [279] = {.lex_state = 11, .external_lex_state = 2}, [280] = {.lex_state = 11, .external_lex_state = 2}, - [281] = {.lex_state = 11, .external_lex_state = 2}, + [281] = {.lex_state = 69, .external_lex_state = 2}, [282] = {.lex_state = 11, .external_lex_state = 2}, [283] = {.lex_state = 11, .external_lex_state = 2}, [284] = {.lex_state = 11, .external_lex_state = 2}, - [285] = {.lex_state = 11, .external_lex_state = 2}, + [285] = {.lex_state = 69, .external_lex_state = 2}, [286] = {.lex_state = 11, .external_lex_state = 2}, - [287] = {.lex_state = 11, .external_lex_state = 2}, + [287] = {.lex_state = 69, .external_lex_state = 2}, [288] = {.lex_state = 11, .external_lex_state = 2}, [289] = {.lex_state = 11, .external_lex_state = 2}, [290] = {.lex_state = 11, .external_lex_state = 2}, @@ -10343,50 +10470,50 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [302] = {.lex_state = 11, .external_lex_state = 2}, [303] = {.lex_state = 11, .external_lex_state = 2}, [304] = {.lex_state = 11, .external_lex_state = 2}, - [305] = {.lex_state = 11, .external_lex_state = 2}, + [305] = {.lex_state = 69, .external_lex_state = 2}, [306] = {.lex_state = 11, .external_lex_state = 2}, [307] = {.lex_state = 11, .external_lex_state = 2}, [308] = {.lex_state = 11, .external_lex_state = 2}, [309] = {.lex_state = 11, .external_lex_state = 2}, [310] = {.lex_state = 11, .external_lex_state = 2}, [311] = {.lex_state = 11, .external_lex_state = 2}, - [312] = {.lex_state = 11, .external_lex_state = 2}, + [312] = {.lex_state = 69, .external_lex_state = 2}, [313] = {.lex_state = 11, .external_lex_state = 2}, [314] = {.lex_state = 11, .external_lex_state = 2}, - [315] = {.lex_state = 11, .external_lex_state = 2}, - [316] = {.lex_state = 11, .external_lex_state = 2}, + [315] = {.lex_state = 69, .external_lex_state = 2}, + [316] = {.lex_state = 69, .external_lex_state = 2}, [317] = {.lex_state = 11, .external_lex_state = 2}, [318] = {.lex_state = 11, .external_lex_state = 2}, [319] = {.lex_state = 11, .external_lex_state = 2}, [320] = {.lex_state = 11, .external_lex_state = 2}, [321] = {.lex_state = 11, .external_lex_state = 2}, [322] = {.lex_state = 11, .external_lex_state = 2}, - [323] = {.lex_state = 69, .external_lex_state = 2}, + [323] = {.lex_state = 11, .external_lex_state = 2}, [324] = {.lex_state = 11, .external_lex_state = 2}, [325] = {.lex_state = 11, .external_lex_state = 2}, [326] = {.lex_state = 11, .external_lex_state = 2}, [327] = {.lex_state = 11, .external_lex_state = 2}, - [328] = {.lex_state = 11, .external_lex_state = 2}, + [328] = {.lex_state = 69, .external_lex_state = 2}, [329] = {.lex_state = 11, .external_lex_state = 2}, [330] = {.lex_state = 11, .external_lex_state = 2}, - [331] = {.lex_state = 11, .external_lex_state = 2}, + [331] = {.lex_state = 69, .external_lex_state = 2}, [332] = {.lex_state = 11, .external_lex_state = 2}, [333] = {.lex_state = 11, .external_lex_state = 2}, [334] = {.lex_state = 11, .external_lex_state = 2}, [335] = {.lex_state = 11, .external_lex_state = 2}, - [336] = {.lex_state = 69, .external_lex_state = 2}, + [336] = {.lex_state = 11, .external_lex_state = 2}, [337] = {.lex_state = 11, .external_lex_state = 2}, - [338] = {.lex_state = 69, .external_lex_state = 2}, + [338] = {.lex_state = 11, .external_lex_state = 2}, [339] = {.lex_state = 11, .external_lex_state = 2}, [340] = {.lex_state = 11, .external_lex_state = 2}, - [341] = {.lex_state = 11, .external_lex_state = 2}, + [341] = {.lex_state = 69, .external_lex_state = 2}, [342] = {.lex_state = 11, .external_lex_state = 2}, [343] = {.lex_state = 11, .external_lex_state = 2}, [344] = {.lex_state = 11, .external_lex_state = 2}, [345] = {.lex_state = 11, .external_lex_state = 2}, - [346] = {.lex_state = 11, .external_lex_state = 2}, - [347] = {.lex_state = 69, .external_lex_state = 2}, - [348] = {.lex_state = 11, .external_lex_state = 2}, + [346] = {.lex_state = 69, .external_lex_state = 2}, + [347] = {.lex_state = 11, .external_lex_state = 2}, + [348] = {.lex_state = 69, .external_lex_state = 2}, [349] = {.lex_state = 11, .external_lex_state = 2}, [350] = {.lex_state = 11, .external_lex_state = 2}, [351] = {.lex_state = 11, .external_lex_state = 2}, @@ -10394,7 +10521,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [353] = {.lex_state = 11, .external_lex_state = 2}, [354] = {.lex_state = 11, .external_lex_state = 2}, [355] = {.lex_state = 11, .external_lex_state = 2}, - [356] = {.lex_state = 11, .external_lex_state = 2}, + [356] = {.lex_state = 69, .external_lex_state = 2}, [357] = {.lex_state = 11, .external_lex_state = 2}, [358] = {.lex_state = 11, .external_lex_state = 2}, [359] = {.lex_state = 11, .external_lex_state = 2}, @@ -10403,80 +10530,80 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [362] = {.lex_state = 11, .external_lex_state = 2}, [363] = {.lex_state = 11, .external_lex_state = 2}, [364] = {.lex_state = 11, .external_lex_state = 2}, - [365] = {.lex_state = 11, .external_lex_state = 2}, + [365] = {.lex_state = 69, .external_lex_state = 2}, [366] = {.lex_state = 11, .external_lex_state = 2}, [367] = {.lex_state = 11, .external_lex_state = 2}, [368] = {.lex_state = 11, .external_lex_state = 2}, [369] = {.lex_state = 11, .external_lex_state = 2}, [370] = {.lex_state = 11, .external_lex_state = 2}, - [371] = {.lex_state = 12, .external_lex_state = 2}, - [372] = {.lex_state = 69, .external_lex_state = 2}, - [373] = {.lex_state = 12, .external_lex_state = 2}, - [374] = {.lex_state = 69, .external_lex_state = 2}, - [375] = {.lex_state = 69, .external_lex_state = 2}, - [376] = {.lex_state = 69, .external_lex_state = 2}, - [377] = {.lex_state = 69, .external_lex_state = 2}, - [378] = {.lex_state = 12, .external_lex_state = 2}, - [379] = {.lex_state = 69, .external_lex_state = 2}, - [380] = {.lex_state = 69, .external_lex_state = 2}, + [371] = {.lex_state = 11, .external_lex_state = 2}, + [372] = {.lex_state = 11, .external_lex_state = 2}, + [373] = {.lex_state = 11, .external_lex_state = 2}, + [374] = {.lex_state = 11, .external_lex_state = 2}, + [375] = {.lex_state = 11, .external_lex_state = 2}, + [376] = {.lex_state = 11, .external_lex_state = 2}, + [377] = {.lex_state = 11, .external_lex_state = 2}, + [378] = {.lex_state = 11, .external_lex_state = 2}, + [379] = {.lex_state = 11, .external_lex_state = 2}, + [380] = {.lex_state = 11, .external_lex_state = 2}, [381] = {.lex_state = 69, .external_lex_state = 2}, - [382] = {.lex_state = 69, .external_lex_state = 2}, - [383] = {.lex_state = 69, .external_lex_state = 2}, + [382] = {.lex_state = 11, .external_lex_state = 2}, + [383] = {.lex_state = 11, .external_lex_state = 2}, [384] = {.lex_state = 69, .external_lex_state = 2}, - [385] = {.lex_state = 69, .external_lex_state = 2}, - [386] = {.lex_state = 69, .external_lex_state = 2}, + [385] = {.lex_state = 11, .external_lex_state = 2}, + [386] = {.lex_state = 11, .external_lex_state = 2}, [387] = {.lex_state = 69, .external_lex_state = 2}, - [388] = {.lex_state = 69, .external_lex_state = 2}, - [389] = {.lex_state = 69, .external_lex_state = 2}, - [390] = {.lex_state = 12, .external_lex_state = 2}, + [388] = {.lex_state = 11, .external_lex_state = 2}, + [389] = {.lex_state = 11, .external_lex_state = 2}, + [390] = {.lex_state = 69, .external_lex_state = 2}, [391] = {.lex_state = 69, .external_lex_state = 2}, - [392] = {.lex_state = 69, .external_lex_state = 2}, - [393] = {.lex_state = 69, .external_lex_state = 2}, + [392] = {.lex_state = 11, .external_lex_state = 2}, + [393] = {.lex_state = 11, .external_lex_state = 2}, [394] = {.lex_state = 69, .external_lex_state = 2}, [395] = {.lex_state = 69, .external_lex_state = 2}, - [396] = {.lex_state = 12, .external_lex_state = 2}, - [397] = {.lex_state = 69, .external_lex_state = 2}, - [398] = {.lex_state = 12, .external_lex_state = 2}, - [399] = {.lex_state = 69, .external_lex_state = 2}, - [400] = {.lex_state = 12, .external_lex_state = 2}, + [396] = {.lex_state = 11, .external_lex_state = 2}, + [397] = {.lex_state = 11, .external_lex_state = 2}, + [398] = {.lex_state = 69, .external_lex_state = 2}, + [399] = {.lex_state = 11, .external_lex_state = 2}, + [400] = {.lex_state = 69, .external_lex_state = 2}, [401] = {.lex_state = 12, .external_lex_state = 2}, [402] = {.lex_state = 12, .external_lex_state = 2}, [403] = {.lex_state = 12, .external_lex_state = 2}, - [404] = {.lex_state = 69, .external_lex_state = 2}, + [404] = {.lex_state = 12, .external_lex_state = 2}, [405] = {.lex_state = 12, .external_lex_state = 2}, [406] = {.lex_state = 12, .external_lex_state = 2}, [407] = {.lex_state = 12, .external_lex_state = 2}, [408] = {.lex_state = 12, .external_lex_state = 2}, [409] = {.lex_state = 12, .external_lex_state = 2}, - [410] = {.lex_state = 11, .external_lex_state = 2}, + [410] = {.lex_state = 12, .external_lex_state = 2}, [411] = {.lex_state = 12, .external_lex_state = 2}, - [412] = {.lex_state = 11, .external_lex_state = 2}, - [413] = {.lex_state = 11, .external_lex_state = 2}, + [412] = {.lex_state = 12, .external_lex_state = 2}, + [413] = {.lex_state = 12, .external_lex_state = 2}, [414] = {.lex_state = 12, .external_lex_state = 2}, [415] = {.lex_state = 12, .external_lex_state = 2}, - [416] = {.lex_state = 12, .external_lex_state = 2}, - [417] = {.lex_state = 12, .external_lex_state = 2}, - [418] = {.lex_state = 11, .external_lex_state = 2}, + [416] = {.lex_state = 11, .external_lex_state = 2}, + [417] = {.lex_state = 11, .external_lex_state = 2}, + [418] = {.lex_state = 12, .external_lex_state = 2}, [419] = {.lex_state = 11, .external_lex_state = 2}, - [420] = {.lex_state = 11, .external_lex_state = 2}, - [421] = {.lex_state = 11, .external_lex_state = 2}, - [422] = {.lex_state = 11, .external_lex_state = 2}, - [423] = {.lex_state = 11, .external_lex_state = 2}, + [420] = {.lex_state = 12, .external_lex_state = 2}, + [421] = {.lex_state = 12, .external_lex_state = 2}, + [422] = {.lex_state = 12, .external_lex_state = 2}, + [423] = {.lex_state = 12, .external_lex_state = 2}, [424] = {.lex_state = 11, .external_lex_state = 2}, [425] = {.lex_state = 11, .external_lex_state = 2}, [426] = {.lex_state = 11, .external_lex_state = 2}, [427] = {.lex_state = 11, .external_lex_state = 2}, [428] = {.lex_state = 11, .external_lex_state = 2}, - [429] = {.lex_state = 3, .external_lex_state = 2}, - [430] = {.lex_state = 5, .external_lex_state = 2}, - [431] = {.lex_state = 13, .external_lex_state = 2}, - [432] = {.lex_state = 13, .external_lex_state = 2}, + [429] = {.lex_state = 11, .external_lex_state = 2}, + [430] = {.lex_state = 11, .external_lex_state = 2}, + [431] = {.lex_state = 11, .external_lex_state = 2}, + [432] = {.lex_state = 11, .external_lex_state = 2}, [433] = {.lex_state = 11, .external_lex_state = 2}, [434] = {.lex_state = 11, .external_lex_state = 2}, - [435] = {.lex_state = 11, .external_lex_state = 2}, - [436] = {.lex_state = 11, .external_lex_state = 2}, - [437] = {.lex_state = 11, .external_lex_state = 2}, - [438] = {.lex_state = 11, .external_lex_state = 2}, + [435] = {.lex_state = 3, .external_lex_state = 2}, + [436] = {.lex_state = 5, .external_lex_state = 2}, + [437] = {.lex_state = 13, .external_lex_state = 2}, + [438] = {.lex_state = 13, .external_lex_state = 2}, [439] = {.lex_state = 11, .external_lex_state = 2}, [440] = {.lex_state = 11, .external_lex_state = 2}, [441] = {.lex_state = 11, .external_lex_state = 2}, @@ -10484,46 +10611,46 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [443] = {.lex_state = 11, .external_lex_state = 2}, [444] = {.lex_state = 11, .external_lex_state = 2}, [445] = {.lex_state = 11, .external_lex_state = 2}, - [446] = {.lex_state = 3, .external_lex_state = 2}, - [447] = {.lex_state = 3, .external_lex_state = 2}, - [448] = {.lex_state = 3, .external_lex_state = 2}, - [449] = {.lex_state = 3, .external_lex_state = 2}, - [450] = {.lex_state = 3, .external_lex_state = 2}, - [451] = {.lex_state = 3, .external_lex_state = 2}, + [446] = {.lex_state = 11, .external_lex_state = 2}, + [447] = {.lex_state = 11, .external_lex_state = 2}, + [448] = {.lex_state = 11, .external_lex_state = 2}, + [449] = {.lex_state = 11, .external_lex_state = 2}, + [450] = {.lex_state = 11, .external_lex_state = 2}, + [451] = {.lex_state = 11, .external_lex_state = 2}, [452] = {.lex_state = 3, .external_lex_state = 2}, [453] = {.lex_state = 3, .external_lex_state = 2}, [454] = {.lex_state = 3, .external_lex_state = 2}, [455] = {.lex_state = 3, .external_lex_state = 2}, - [456] = {.lex_state = 11, .external_lex_state = 2}, + [456] = {.lex_state = 3, .external_lex_state = 2}, [457] = {.lex_state = 3, .external_lex_state = 2}, - [458] = {.lex_state = 3, .external_lex_state = 2}, - [459] = {.lex_state = 11, .external_lex_state = 2}, + [458] = {.lex_state = 11, .external_lex_state = 2}, + [459] = {.lex_state = 3, .external_lex_state = 2}, [460] = {.lex_state = 3, .external_lex_state = 2}, - [461] = {.lex_state = 11, .external_lex_state = 2}, - [462] = {.lex_state = 3, .external_lex_state = 2}, + [461] = {.lex_state = 10}, + [462] = {.lex_state = 11, .external_lex_state = 2}, [463] = {.lex_state = 3, .external_lex_state = 2}, [464] = {.lex_state = 3, .external_lex_state = 2}, [465] = {.lex_state = 3, .external_lex_state = 2}, - [466] = {.lex_state = 3, .external_lex_state = 2}, - [467] = {.lex_state = 3, .external_lex_state = 2}, + [466] = {.lex_state = 10}, + [467] = {.lex_state = 10}, [468] = {.lex_state = 3, .external_lex_state = 2}, [469] = {.lex_state = 3, .external_lex_state = 2}, - [470] = {.lex_state = 3, .external_lex_state = 2}, + [470] = {.lex_state = 11, .external_lex_state = 2}, [471] = {.lex_state = 3, .external_lex_state = 2}, - [472] = {.lex_state = 11, .external_lex_state = 2}, + [472] = {.lex_state = 3, .external_lex_state = 2}, [473] = {.lex_state = 3, .external_lex_state = 2}, [474] = {.lex_state = 3, .external_lex_state = 2}, - [475] = {.lex_state = 11, .external_lex_state = 2}, - [476] = {.lex_state = 11, .external_lex_state = 2}, - [477] = {.lex_state = 11, .external_lex_state = 2}, - [478] = {.lex_state = 11, .external_lex_state = 2}, - [479] = {.lex_state = 71, .external_lex_state = 2}, - [480] = {.lex_state = 71, .external_lex_state = 2}, - [481] = {.lex_state = 71, .external_lex_state = 2}, - [482] = {.lex_state = 71, .external_lex_state = 2}, - [483] = {.lex_state = 71, .external_lex_state = 2}, - [484] = {.lex_state = 71, .external_lex_state = 2}, - [485] = {.lex_state = 71, .external_lex_state = 2}, + [475] = {.lex_state = 3, .external_lex_state = 2}, + [476] = {.lex_state = 10}, + [477] = {.lex_state = 3, .external_lex_state = 2}, + [478] = {.lex_state = 3, .external_lex_state = 2}, + [479] = {.lex_state = 3, .external_lex_state = 2}, + [480] = {.lex_state = 3, .external_lex_state = 2}, + [481] = {.lex_state = 3, .external_lex_state = 2}, + [482] = {.lex_state = 3, .external_lex_state = 2}, + [483] = {.lex_state = 3, .external_lex_state = 2}, + [484] = {.lex_state = 10}, + [485] = {.lex_state = 11, .external_lex_state = 2}, [486] = {.lex_state = 71, .external_lex_state = 2}, [487] = {.lex_state = 71, .external_lex_state = 2}, [488] = {.lex_state = 71, .external_lex_state = 2}, @@ -10671,7 +10798,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [630] = {.lex_state = 71, .external_lex_state = 2}, [631] = {.lex_state = 71, .external_lex_state = 2}, [632] = {.lex_state = 71, .external_lex_state = 2}, - [633] = {.lex_state = 71, .external_lex_state = 2}, + [633] = {.lex_state = 11, .external_lex_state = 2}, [634] = {.lex_state = 71, .external_lex_state = 2}, [635] = {.lex_state = 71, .external_lex_state = 2}, [636] = {.lex_state = 71, .external_lex_state = 2}, @@ -10684,15 +10811,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [643] = {.lex_state = 71, .external_lex_state = 2}, [644] = {.lex_state = 71, .external_lex_state = 2}, [645] = {.lex_state = 71, .external_lex_state = 2}, - [646] = {.lex_state = 10}, + [646] = {.lex_state = 71, .external_lex_state = 2}, [647] = {.lex_state = 71, .external_lex_state = 2}, [648] = {.lex_state = 71, .external_lex_state = 2}, - [649] = {.lex_state = 71, .external_lex_state = 2}, + [649] = {.lex_state = 11, .external_lex_state = 2}, [650] = {.lex_state = 71, .external_lex_state = 2}, [651] = {.lex_state = 71, .external_lex_state = 2}, [652] = {.lex_state = 71, .external_lex_state = 2}, [653] = {.lex_state = 71, .external_lex_state = 2}, - [654] = {.lex_state = 10}, + [654] = {.lex_state = 71, .external_lex_state = 2}, [655] = {.lex_state = 71, .external_lex_state = 2}, [656] = {.lex_state = 71, .external_lex_state = 2}, [657] = {.lex_state = 71, .external_lex_state = 2}, @@ -10711,10 +10838,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [670] = {.lex_state = 71, .external_lex_state = 2}, [671] = {.lex_state = 71, .external_lex_state = 2}, [672] = {.lex_state = 71, .external_lex_state = 2}, - [673] = {.lex_state = 71, .external_lex_state = 2}, + [673] = {.lex_state = 11, .external_lex_state = 2}, [674] = {.lex_state = 71, .external_lex_state = 2}, [675] = {.lex_state = 71, .external_lex_state = 2}, - [676] = {.lex_state = 71, .external_lex_state = 2}, + [676] = {.lex_state = 11, .external_lex_state = 2}, [677] = {.lex_state = 71, .external_lex_state = 2}, [678] = {.lex_state = 71, .external_lex_state = 2}, [679] = {.lex_state = 71, .external_lex_state = 2}, @@ -10728,15 +10855,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [687] = {.lex_state = 71, .external_lex_state = 2}, [688] = {.lex_state = 71, .external_lex_state = 2}, [689] = {.lex_state = 71, .external_lex_state = 2}, - [690] = {.lex_state = 10}, + [690] = {.lex_state = 71, .external_lex_state = 2}, [691] = {.lex_state = 71, .external_lex_state = 2}, - [692] = {.lex_state = 10}, + [692] = {.lex_state = 71, .external_lex_state = 2}, [693] = {.lex_state = 71, .external_lex_state = 2}, [694] = {.lex_state = 71, .external_lex_state = 2}, [695] = {.lex_state = 71, .external_lex_state = 2}, [696] = {.lex_state = 71, .external_lex_state = 2}, [697] = {.lex_state = 71, .external_lex_state = 2}, - [698] = {.lex_state = 10}, + [698] = {.lex_state = 71, .external_lex_state = 2}, [699] = {.lex_state = 71, .external_lex_state = 2}, [700] = {.lex_state = 71, .external_lex_state = 2}, [701] = {.lex_state = 71, .external_lex_state = 2}, @@ -10759,7 +10886,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [718] = {.lex_state = 71, .external_lex_state = 2}, [719] = {.lex_state = 71, .external_lex_state = 2}, [720] = {.lex_state = 71, .external_lex_state = 2}, - [721] = {.lex_state = 11, .external_lex_state = 2}, + [721] = {.lex_state = 71, .external_lex_state = 2}, [722] = {.lex_state = 71, .external_lex_state = 2}, [723] = {.lex_state = 71, .external_lex_state = 2}, [724] = {.lex_state = 71, .external_lex_state = 2}, @@ -10792,48 +10919,48 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [751] = {.lex_state = 71, .external_lex_state = 2}, [752] = {.lex_state = 71, .external_lex_state = 2}, [753] = {.lex_state = 71, .external_lex_state = 2}, - [754] = {.lex_state = 11, .external_lex_state = 2}, - [755] = {.lex_state = 11, .external_lex_state = 2}, - [756] = {.lex_state = 11, .external_lex_state = 2}, - [757] = {.lex_state = 11, .external_lex_state = 2}, - [758] = {.lex_state = 11, .external_lex_state = 2}, - [759] = {.lex_state = 11, .external_lex_state = 2}, - [760] = {.lex_state = 11, .external_lex_state = 2}, - [761] = {.lex_state = 11, .external_lex_state = 2}, - [762] = {.lex_state = 11, .external_lex_state = 2}, - [763] = {.lex_state = 14}, - [764] = {.lex_state = 14}, - [765] = {.lex_state = 14}, - [766] = {.lex_state = 14}, - [767] = {.lex_state = 14}, - [768] = {.lex_state = 14}, - [769] = {.lex_state = 14}, - [770] = {.lex_state = 14}, - [771] = {.lex_state = 11, .external_lex_state = 2}, - [772] = {.lex_state = 14}, + [754] = {.lex_state = 71, .external_lex_state = 2}, + [755] = {.lex_state = 71, .external_lex_state = 2}, + [756] = {.lex_state = 71, .external_lex_state = 2}, + [757] = {.lex_state = 71, .external_lex_state = 2}, + [758] = {.lex_state = 71, .external_lex_state = 2}, + [759] = {.lex_state = 71, .external_lex_state = 2}, + [760] = {.lex_state = 71, .external_lex_state = 2}, + [761] = {.lex_state = 71, .external_lex_state = 2}, + [762] = {.lex_state = 71, .external_lex_state = 2}, + [763] = {.lex_state = 71, .external_lex_state = 2}, + [764] = {.lex_state = 71, .external_lex_state = 2}, + [765] = {.lex_state = 71, .external_lex_state = 2}, + [766] = {.lex_state = 71, .external_lex_state = 2}, + [767] = {.lex_state = 71, .external_lex_state = 2}, + [768] = {.lex_state = 71, .external_lex_state = 2}, + [769] = {.lex_state = 71, .external_lex_state = 2}, + [770] = {.lex_state = 71, .external_lex_state = 2}, + [771] = {.lex_state = 71, .external_lex_state = 2}, + [772] = {.lex_state = 71, .external_lex_state = 2}, [773] = {.lex_state = 11, .external_lex_state = 2}, - [774] = {.lex_state = 14}, + [774] = {.lex_state = 11, .external_lex_state = 2}, [775] = {.lex_state = 11, .external_lex_state = 2}, [776] = {.lex_state = 11, .external_lex_state = 2}, - [777] = {.lex_state = 14}, + [777] = {.lex_state = 11, .external_lex_state = 2}, [778] = {.lex_state = 11, .external_lex_state = 2}, [779] = {.lex_state = 11, .external_lex_state = 2}, [780] = {.lex_state = 11, .external_lex_state = 2}, - [781] = {.lex_state = 12, .external_lex_state = 2}, + [781] = {.lex_state = 11, .external_lex_state = 2}, [782] = {.lex_state = 11, .external_lex_state = 2}, - [783] = {.lex_state = 11, .external_lex_state = 2}, - [784] = {.lex_state = 11, .external_lex_state = 2}, - [785] = {.lex_state = 11, .external_lex_state = 2}, - [786] = {.lex_state = 11, .external_lex_state = 2}, - [787] = {.lex_state = 11, .external_lex_state = 2}, - [788] = {.lex_state = 11, .external_lex_state = 2}, - [789] = {.lex_state = 11, .external_lex_state = 2}, - [790] = {.lex_state = 11, .external_lex_state = 2}, + [783] = {.lex_state = 14}, + [784] = {.lex_state = 14}, + [785] = {.lex_state = 14}, + [786] = {.lex_state = 14}, + [787] = {.lex_state = 14}, + [788] = {.lex_state = 14}, + [789] = {.lex_state = 14}, + [790] = {.lex_state = 14}, [791] = {.lex_state = 11, .external_lex_state = 2}, - [792] = {.lex_state = 11, .external_lex_state = 2}, + [792] = {.lex_state = 14}, [793] = {.lex_state = 11, .external_lex_state = 2}, - [794] = {.lex_state = 11, .external_lex_state = 2}, - [795] = {.lex_state = 11, .external_lex_state = 2}, + [794] = {.lex_state = 14}, + [795] = {.lex_state = 14}, [796] = {.lex_state = 11, .external_lex_state = 2}, [797] = {.lex_state = 11, .external_lex_state = 2}, [798] = {.lex_state = 11, .external_lex_state = 2}, @@ -10844,7 +10971,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [803] = {.lex_state = 11, .external_lex_state = 2}, [804] = {.lex_state = 11, .external_lex_state = 2}, [805] = {.lex_state = 11, .external_lex_state = 2}, - [806] = {.lex_state = 11, .external_lex_state = 2}, + [806] = {.lex_state = 12, .external_lex_state = 2}, [807] = {.lex_state = 11, .external_lex_state = 2}, [808] = {.lex_state = 11, .external_lex_state = 2}, [809] = {.lex_state = 11, .external_lex_state = 2}, @@ -10867,26 +10994,26 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [826] = {.lex_state = 11, .external_lex_state = 2}, [827] = {.lex_state = 11, .external_lex_state = 2}, [828] = {.lex_state = 11, .external_lex_state = 2}, - [829] = {.lex_state = 14}, - [830] = {.lex_state = 14}, - [831] = {.lex_state = 14}, - [832] = {.lex_state = 14}, - [833] = {.lex_state = 14}, - [834] = {.lex_state = 14}, - [835] = {.lex_state = 14}, - [836] = {.lex_state = 14}, - [837] = {.lex_state = 14}, - [838] = {.lex_state = 14}, - [839] = {.lex_state = 14}, - [840] = {.lex_state = 14}, - [841] = {.lex_state = 14}, - [842] = {.lex_state = 14}, - [843] = {.lex_state = 14}, - [844] = {.lex_state = 14}, - [845] = {.lex_state = 14}, - [846] = {.lex_state = 14}, - [847] = {.lex_state = 14}, - [848] = {.lex_state = 14}, + [829] = {.lex_state = 11, .external_lex_state = 2}, + [830] = {.lex_state = 11, .external_lex_state = 2}, + [831] = {.lex_state = 11, .external_lex_state = 2}, + [832] = {.lex_state = 11, .external_lex_state = 2}, + [833] = {.lex_state = 11, .external_lex_state = 2}, + [834] = {.lex_state = 11, .external_lex_state = 2}, + [835] = {.lex_state = 11, .external_lex_state = 2}, + [836] = {.lex_state = 11, .external_lex_state = 2}, + [837] = {.lex_state = 11, .external_lex_state = 2}, + [838] = {.lex_state = 11, .external_lex_state = 2}, + [839] = {.lex_state = 11, .external_lex_state = 2}, + [840] = {.lex_state = 11, .external_lex_state = 2}, + [841] = {.lex_state = 11, .external_lex_state = 2}, + [842] = {.lex_state = 11, .external_lex_state = 2}, + [843] = {.lex_state = 11, .external_lex_state = 2}, + [844] = {.lex_state = 11, .external_lex_state = 2}, + [845] = {.lex_state = 11, .external_lex_state = 2}, + [846] = {.lex_state = 11, .external_lex_state = 2}, + [847] = {.lex_state = 11, .external_lex_state = 2}, + [848] = {.lex_state = 11, .external_lex_state = 2}, [849] = {.lex_state = 14}, [850] = {.lex_state = 14}, [851] = {.lex_state = 14}, @@ -10946,7 +11073,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [905] = {.lex_state = 14}, [906] = {.lex_state = 14}, [907] = {.lex_state = 14}, - [908] = {.lex_state = 11, .external_lex_state = 2}, + [908] = {.lex_state = 14}, [909] = {.lex_state = 14}, [910] = {.lex_state = 14}, [911] = {.lex_state = 14}, @@ -10997,7 +11124,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [956] = {.lex_state = 14}, [957] = {.lex_state = 14}, [958] = {.lex_state = 14}, - [959] = {.lex_state = 14}, + [959] = {.lex_state = 11, .external_lex_state = 2}, [960] = {.lex_state = 14}, [961] = {.lex_state = 14}, [962] = {.lex_state = 14}, @@ -11040,96 +11167,96 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [999] = {.lex_state = 14}, [1000] = {.lex_state = 14}, [1001] = {.lex_state = 14}, - [1002] = {.lex_state = 11, .external_lex_state = 2}, - [1003] = {.lex_state = 11, .external_lex_state = 2}, - [1004] = {.lex_state = 13, .external_lex_state = 2}, - [1005] = {.lex_state = 13, .external_lex_state = 2}, - [1006] = {.lex_state = 11, .external_lex_state = 2}, - [1007] = {.lex_state = 12, .external_lex_state = 2}, + [1002] = {.lex_state = 14}, + [1003] = {.lex_state = 14}, + [1004] = {.lex_state = 14}, + [1005] = {.lex_state = 14}, + [1006] = {.lex_state = 14}, + [1007] = {.lex_state = 14}, [1008] = {.lex_state = 14}, - [1009] = {.lex_state = 11, .external_lex_state = 2}, - [1010] = {.lex_state = 11, .external_lex_state = 2}, - [1011] = {.lex_state = 6}, - [1012] = {.lex_state = 6}, - [1013] = {.lex_state = 6}, - [1014] = {.lex_state = 6}, - [1015] = {.lex_state = 10}, - [1016] = {.lex_state = 6}, - [1017] = {.lex_state = 6}, - [1018] = {.lex_state = 10}, - [1019] = {.lex_state = 10}, - [1020] = {.lex_state = 10}, - [1021] = {.lex_state = 6}, - [1022] = {.lex_state = 6}, - [1023] = {.lex_state = 10}, - [1024] = {.lex_state = 6}, - [1025] = {.lex_state = 10}, - [1026] = {.lex_state = 10}, - [1027] = {.lex_state = 10}, - [1028] = {.lex_state = 6}, - [1029] = {.lex_state = 6}, - [1030] = {.lex_state = 10}, + [1009] = {.lex_state = 14}, + [1010] = {.lex_state = 14}, + [1011] = {.lex_state = 14}, + [1012] = {.lex_state = 14}, + [1013] = {.lex_state = 14}, + [1014] = {.lex_state = 14}, + [1015] = {.lex_state = 14}, + [1016] = {.lex_state = 14}, + [1017] = {.lex_state = 14}, + [1018] = {.lex_state = 14}, + [1019] = {.lex_state = 14}, + [1020] = {.lex_state = 14}, + [1021] = {.lex_state = 14}, + [1022] = {.lex_state = 11, .external_lex_state = 2}, + [1023] = {.lex_state = 11, .external_lex_state = 2}, + [1024] = {.lex_state = 13, .external_lex_state = 2}, + [1025] = {.lex_state = 13, .external_lex_state = 2}, + [1026] = {.lex_state = 11, .external_lex_state = 2}, + [1027] = {.lex_state = 12, .external_lex_state = 2}, + [1028] = {.lex_state = 14}, + [1029] = {.lex_state = 11, .external_lex_state = 2}, + [1030] = {.lex_state = 11, .external_lex_state = 2}, [1031] = {.lex_state = 6}, - [1032] = {.lex_state = 7}, - [1033] = {.lex_state = 7}, - [1034] = {.lex_state = 7}, - [1035] = {.lex_state = 22}, - [1036] = {.lex_state = 7}, - [1037] = {.lex_state = 22}, - [1038] = {.lex_state = 22}, - [1039] = {.lex_state = 22}, - [1040] = {.lex_state = 7}, - [1041] = {.lex_state = 11, .external_lex_state = 2}, - [1042] = {.lex_state = 7}, - [1043] = {.lex_state = 22}, - [1044] = {.lex_state = 18}, - [1045] = {.lex_state = 7}, - [1046] = {.lex_state = 7}, - [1047] = {.lex_state = 7}, - [1048] = {.lex_state = 7}, - [1049] = {.lex_state = 18}, - [1050] = {.lex_state = 7}, - [1051] = {.lex_state = 7}, - [1052] = {.lex_state = 7}, - [1053] = {.lex_state = 18}, - [1054] = {.lex_state = 14}, - [1055] = {.lex_state = 7}, - [1056] = {.lex_state = 7}, + [1032] = {.lex_state = 10}, + [1033] = {.lex_state = 10}, + [1034] = {.lex_state = 6}, + [1035] = {.lex_state = 6}, + [1036] = {.lex_state = 10}, + [1037] = {.lex_state = 10}, + [1038] = {.lex_state = 10}, + [1039] = {.lex_state = 10}, + [1040] = {.lex_state = 10}, + [1041] = {.lex_state = 10}, + [1042] = {.lex_state = 10}, + [1043] = {.lex_state = 6}, + [1044] = {.lex_state = 22}, + [1045] = {.lex_state = 6}, + [1046] = {.lex_state = 22}, + [1047] = {.lex_state = 6}, + [1048] = {.lex_state = 6}, + [1049] = {.lex_state = 22}, + [1050] = {.lex_state = 6}, + [1051] = {.lex_state = 22}, + [1052] = {.lex_state = 6}, + [1053] = {.lex_state = 22}, + [1054] = {.lex_state = 6}, + [1055] = {.lex_state = 6}, + [1056] = {.lex_state = 6}, [1057] = {.lex_state = 7}, [1058] = {.lex_state = 7}, [1059] = {.lex_state = 7}, - [1060] = {.lex_state = 18}, - [1061] = {.lex_state = 18}, - [1062] = {.lex_state = 14}, - [1063] = {.lex_state = 19}, - [1064] = {.lex_state = 6}, - [1065] = {.lex_state = 14}, - [1066] = {.lex_state = 18}, - [1067] = {.lex_state = 18}, - [1068] = {.lex_state = 14}, - [1069] = {.lex_state = 7}, - [1070] = {.lex_state = 7}, - [1071] = {.lex_state = 7}, - [1072] = {.lex_state = 7}, - [1073] = {.lex_state = 7}, - [1074] = {.lex_state = 14}, - [1075] = {.lex_state = 7}, - [1076] = {.lex_state = 7}, - [1077] = {.lex_state = 14}, - [1078] = {.lex_state = 7}, - [1079] = {.lex_state = 14}, - [1080] = {.lex_state = 19}, - [1081] = {.lex_state = 18}, - [1082] = {.lex_state = 14}, - [1083] = {.lex_state = 18}, - [1084] = {.lex_state = 14}, - [1085] = {.lex_state = 18}, - [1086] = {.lex_state = 18}, - [1087] = {.lex_state = 18}, - [1088] = {.lex_state = 7}, - [1089] = {.lex_state = 7}, - [1090] = {.lex_state = 7}, - [1091] = {.lex_state = 7}, + [1060] = {.lex_state = 7}, + [1061] = {.lex_state = 11, .external_lex_state = 2}, + [1062] = {.lex_state = 7}, + [1063] = {.lex_state = 7}, + [1064] = {.lex_state = 10}, + [1065] = {.lex_state = 10}, + [1066] = {.lex_state = 10}, + [1067] = {.lex_state = 10}, + [1068] = {.lex_state = 10}, + [1069] = {.lex_state = 10}, + [1070] = {.lex_state = 10}, + [1071] = {.lex_state = 10}, + [1072] = {.lex_state = 10}, + [1073] = {.lex_state = 10}, + [1074] = {.lex_state = 10}, + [1075] = {.lex_state = 10}, + [1076] = {.lex_state = 10}, + [1077] = {.lex_state = 10}, + [1078] = {.lex_state = 10}, + [1079] = {.lex_state = 10}, + [1080] = {.lex_state = 10}, + [1081] = {.lex_state = 14}, + [1082] = {.lex_state = 10}, + [1083] = {.lex_state = 10}, + [1084] = {.lex_state = 10}, + [1085] = {.lex_state = 7}, + [1086] = {.lex_state = 10}, + [1087] = {.lex_state = 10}, + [1088] = {.lex_state = 10}, + [1089] = {.lex_state = 10}, + [1090] = {.lex_state = 10}, + [1091] = {.lex_state = 10}, [1092] = {.lex_state = 10}, [1093] = {.lex_state = 10}, [1094] = {.lex_state = 10}, @@ -11142,7 +11269,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1101] = {.lex_state = 10}, [1102] = {.lex_state = 10}, [1103] = {.lex_state = 10}, - [1104] = {.lex_state = 10}, + [1104] = {.lex_state = 7}, [1105] = {.lex_state = 10}, [1106] = {.lex_state = 10}, [1107] = {.lex_state = 10}, @@ -11155,23 +11282,23 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1114] = {.lex_state = 10}, [1115] = {.lex_state = 10}, [1116] = {.lex_state = 10}, - [1117] = {.lex_state = 10}, - [1118] = {.lex_state = 10}, + [1117] = {.lex_state = 18}, + [1118] = {.lex_state = 18}, [1119] = {.lex_state = 10}, [1120] = {.lex_state = 10}, [1121] = {.lex_state = 10}, - [1122] = {.lex_state = 10}, + [1122] = {.lex_state = 18}, [1123] = {.lex_state = 10}, - [1124] = {.lex_state = 10}, + [1124] = {.lex_state = 14}, [1125] = {.lex_state = 10}, - [1126] = {.lex_state = 10}, - [1127] = {.lex_state = 7}, + [1126] = {.lex_state = 18}, + [1127] = {.lex_state = 10}, [1128] = {.lex_state = 10}, [1129] = {.lex_state = 10}, - [1130] = {.lex_state = 7}, + [1130] = {.lex_state = 10}, [1131] = {.lex_state = 10}, - [1132] = {.lex_state = 10}, - [1133] = {.lex_state = 10}, + [1132] = {.lex_state = 7}, + [1133] = {.lex_state = 6}, [1134] = {.lex_state = 10}, [1135] = {.lex_state = 10}, [1136] = {.lex_state = 10}, @@ -11212,7 +11339,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1171] = {.lex_state = 10}, [1172] = {.lex_state = 10}, [1173] = {.lex_state = 10}, - [1174] = {.lex_state = 10}, + [1174] = {.lex_state = 7}, [1175] = {.lex_state = 10}, [1176] = {.lex_state = 10}, [1177] = {.lex_state = 10}, @@ -11221,151 +11348,151 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1180] = {.lex_state = 10}, [1181] = {.lex_state = 10}, [1182] = {.lex_state = 10}, - [1183] = {.lex_state = 7}, - [1184] = {.lex_state = 10}, + [1183] = {.lex_state = 10}, + [1184] = {.lex_state = 18}, [1185] = {.lex_state = 10}, - [1186] = {.lex_state = 7}, - [1187] = {.lex_state = 10}, + [1186] = {.lex_state = 18}, + [1187] = {.lex_state = 7}, [1188] = {.lex_state = 10}, - [1189] = {.lex_state = 7}, + [1189] = {.lex_state = 10}, [1190] = {.lex_state = 10}, [1191] = {.lex_state = 10}, - [1192] = {.lex_state = 7}, + [1192] = {.lex_state = 10}, [1193] = {.lex_state = 7}, - [1194] = {.lex_state = 10}, - [1195] = {.lex_state = 7}, - [1196] = {.lex_state = 7}, + [1194] = {.lex_state = 7}, + [1195] = {.lex_state = 10}, + [1196] = {.lex_state = 10}, [1197] = {.lex_state = 10}, - [1198] = {.lex_state = 7}, + [1198] = {.lex_state = 14}, [1199] = {.lex_state = 7}, [1200] = {.lex_state = 10}, [1201] = {.lex_state = 10}, - [1202] = {.lex_state = 7}, - [1203] = {.lex_state = 10}, + [1202] = {.lex_state = 18}, + [1203] = {.lex_state = 19}, [1204] = {.lex_state = 10}, - [1205] = {.lex_state = 7}, - [1206] = {.lex_state = 7}, + [1205] = {.lex_state = 10}, + [1206] = {.lex_state = 10}, [1207] = {.lex_state = 7}, [1208] = {.lex_state = 7}, [1209] = {.lex_state = 7}, - [1210] = {.lex_state = 7}, - [1211] = {.lex_state = 7}, - [1212] = {.lex_state = 7}, - [1213] = {.lex_state = 7}, - [1214] = {.lex_state = 7}, - [1215] = {.lex_state = 7}, - [1216] = {.lex_state = 12, .external_lex_state = 2}, - [1217] = {.lex_state = 7}, - [1218] = {.lex_state = 7}, - [1219] = {.lex_state = 7}, - [1220] = {.lex_state = 7}, - [1221] = {.lex_state = 7}, - [1222] = {.lex_state = 7}, - [1223] = {.lex_state = 7}, - [1224] = {.lex_state = 7}, - [1225] = {.lex_state = 7}, + [1210] = {.lex_state = 10}, + [1211] = {.lex_state = 10}, + [1212] = {.lex_state = 18}, + [1213] = {.lex_state = 10}, + [1214] = {.lex_state = 10}, + [1215] = {.lex_state = 10}, + [1216] = {.lex_state = 10}, + [1217] = {.lex_state = 10}, + [1218] = {.lex_state = 10}, + [1219] = {.lex_state = 10}, + [1220] = {.lex_state = 10}, + [1221] = {.lex_state = 10}, + [1222] = {.lex_state = 10}, + [1223] = {.lex_state = 10}, + [1224] = {.lex_state = 10}, + [1225] = {.lex_state = 10}, [1226] = {.lex_state = 7}, [1227] = {.lex_state = 10}, - [1228] = {.lex_state = 7}, - [1229] = {.lex_state = 14}, - [1230] = {.lex_state = 14}, - [1231] = {.lex_state = 7}, + [1228] = {.lex_state = 10}, + [1229] = {.lex_state = 10}, + [1230] = {.lex_state = 10}, + [1231] = {.lex_state = 10}, [1232] = {.lex_state = 10}, [1233] = {.lex_state = 10}, - [1234] = {.lex_state = 10}, + [1234] = {.lex_state = 7}, [1235] = {.lex_state = 10}, [1236] = {.lex_state = 10}, - [1237] = {.lex_state = 7}, - [1238] = {.lex_state = 7}, - [1239] = {.lex_state = 7}, + [1237] = {.lex_state = 14}, + [1238] = {.lex_state = 10}, + [1239] = {.lex_state = 10}, [1240] = {.lex_state = 10}, [1241] = {.lex_state = 7}, - [1242] = {.lex_state = 10}, - [1243] = {.lex_state = 11, .external_lex_state = 2}, + [1242] = {.lex_state = 14}, + [1243] = {.lex_state = 10}, [1244] = {.lex_state = 10}, [1245] = {.lex_state = 10}, [1246] = {.lex_state = 10}, [1247] = {.lex_state = 10}, - [1248] = {.lex_state = 7}, - [1249] = {.lex_state = 7}, - [1250] = {.lex_state = 7}, - [1251] = {.lex_state = 7}, + [1248] = {.lex_state = 10}, + [1249] = {.lex_state = 10}, + [1250] = {.lex_state = 10}, + [1251] = {.lex_state = 10}, [1252] = {.lex_state = 10}, [1253] = {.lex_state = 10}, [1254] = {.lex_state = 10}, [1255] = {.lex_state = 10}, [1256] = {.lex_state = 10}, - [1257] = {.lex_state = 7}, - [1258] = {.lex_state = 10}, + [1257] = {.lex_state = 10}, + [1258] = {.lex_state = 18}, [1259] = {.lex_state = 10}, - [1260] = {.lex_state = 14}, - [1261] = {.lex_state = 14}, - [1262] = {.lex_state = 7}, + [1260] = {.lex_state = 10}, + [1261] = {.lex_state = 10}, + [1262] = {.lex_state = 10}, [1263] = {.lex_state = 10}, - [1264] = {.lex_state = 7}, + [1264] = {.lex_state = 10}, [1265] = {.lex_state = 10}, [1266] = {.lex_state = 10}, [1267] = {.lex_state = 10}, - [1268] = {.lex_state = 10}, + [1268] = {.lex_state = 7}, [1269] = {.lex_state = 7}, - [1270] = {.lex_state = 10}, + [1270] = {.lex_state = 7}, [1271] = {.lex_state = 10}, - [1272] = {.lex_state = 14}, - [1273] = {.lex_state = 14}, - [1274] = {.lex_state = 7}, - [1275] = {.lex_state = 14}, + [1272] = {.lex_state = 7}, + [1273] = {.lex_state = 10}, + [1274] = {.lex_state = 10}, + [1275] = {.lex_state = 10}, [1276] = {.lex_state = 10}, [1277] = {.lex_state = 10}, - [1278] = {.lex_state = 7}, - [1279] = {.lex_state = 10}, - [1280] = {.lex_state = 10}, - [1281] = {.lex_state = 10}, + [1278] = {.lex_state = 10}, + [1279] = {.lex_state = 7}, + [1280] = {.lex_state = 7}, + [1281] = {.lex_state = 18}, [1282] = {.lex_state = 10}, [1283] = {.lex_state = 10}, - [1284] = {.lex_state = 10}, + [1284] = {.lex_state = 7}, [1285] = {.lex_state = 10}, - [1286] = {.lex_state = 7}, - [1287] = {.lex_state = 7}, - [1288] = {.lex_state = 11, .external_lex_state = 2}, + [1286] = {.lex_state = 10}, + [1287] = {.lex_state = 10}, + [1288] = {.lex_state = 10}, [1289] = {.lex_state = 10}, [1290] = {.lex_state = 10}, - [1291] = {.lex_state = 7}, - [1292] = {.lex_state = 7}, - [1293] = {.lex_state = 7}, - [1294] = {.lex_state = 7}, - [1295] = {.lex_state = 7}, - [1296] = {.lex_state = 7}, - [1297] = {.lex_state = 7}, - [1298] = {.lex_state = 7}, - [1299] = {.lex_state = 7}, + [1291] = {.lex_state = 10}, + [1292] = {.lex_state = 10}, + [1293] = {.lex_state = 10}, + [1294] = {.lex_state = 10}, + [1295] = {.lex_state = 10}, + [1296] = {.lex_state = 10}, + [1297] = {.lex_state = 10}, + [1298] = {.lex_state = 10}, + [1299] = {.lex_state = 14}, [1300] = {.lex_state = 7}, [1301] = {.lex_state = 10}, - [1302] = {.lex_state = 7}, - [1303] = {.lex_state = 12, .external_lex_state = 2}, - [1304] = {.lex_state = 7}, - [1305] = {.lex_state = 7}, + [1302] = {.lex_state = 10}, + [1303] = {.lex_state = 10}, + [1304] = {.lex_state = 10}, + [1305] = {.lex_state = 10}, [1306] = {.lex_state = 10}, [1307] = {.lex_state = 10}, - [1308] = {.lex_state = 7}, + [1308] = {.lex_state = 10}, [1309] = {.lex_state = 7}, - [1310] = {.lex_state = 7}, - [1311] = {.lex_state = 7}, + [1310] = {.lex_state = 18}, + [1311] = {.lex_state = 10}, [1312] = {.lex_state = 10}, - [1313] = {.lex_state = 7}, + [1313] = {.lex_state = 10}, [1314] = {.lex_state = 10}, [1315] = {.lex_state = 10}, - [1316] = {.lex_state = 10}, + [1316] = {.lex_state = 19}, [1317] = {.lex_state = 10}, [1318] = {.lex_state = 10}, - [1319] = {.lex_state = 7}, - [1320] = {.lex_state = 7}, - [1321] = {.lex_state = 7}, - [1322] = {.lex_state = 7}, - [1323] = {.lex_state = 7}, - [1324] = {.lex_state = 7}, - [1325] = {.lex_state = 7}, + [1319] = {.lex_state = 10}, + [1320] = {.lex_state = 10}, + [1321] = {.lex_state = 10}, + [1322] = {.lex_state = 10}, + [1323] = {.lex_state = 10}, + [1324] = {.lex_state = 10}, + [1325] = {.lex_state = 10}, [1326] = {.lex_state = 10}, - [1327] = {.lex_state = 7}, + [1327] = {.lex_state = 10}, [1328] = {.lex_state = 10}, [1329] = {.lex_state = 10}, [1330] = {.lex_state = 10}, @@ -11374,11 +11501,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1333] = {.lex_state = 10}, [1334] = {.lex_state = 10}, [1335] = {.lex_state = 10}, - [1336] = {.lex_state = 7}, - [1337] = {.lex_state = 7}, + [1336] = {.lex_state = 18}, + [1337] = {.lex_state = 14}, [1338] = {.lex_state = 10}, [1339] = {.lex_state = 10}, - [1340] = {.lex_state = 10}, + [1340] = {.lex_state = 14}, [1341] = {.lex_state = 10}, [1342] = {.lex_state = 10}, [1343] = {.lex_state = 10}, @@ -11389,9 +11516,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1348] = {.lex_state = 10}, [1349] = {.lex_state = 10}, [1350] = {.lex_state = 10}, - [1351] = {.lex_state = 10}, + [1351] = {.lex_state = 14}, [1352] = {.lex_state = 10}, - [1353] = {.lex_state = 7}, + [1353] = {.lex_state = 10}, [1354] = {.lex_state = 10}, [1355] = {.lex_state = 10}, [1356] = {.lex_state = 10}, @@ -11403,123 +11530,123 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1362] = {.lex_state = 10}, [1363] = {.lex_state = 10}, [1364] = {.lex_state = 10}, - [1365] = {.lex_state = 14}, - [1366] = {.lex_state = 14}, - [1367] = {.lex_state = 14}, + [1365] = {.lex_state = 10}, + [1366] = {.lex_state = 10}, + [1367] = {.lex_state = 10}, [1368] = {.lex_state = 10}, - [1369] = {.lex_state = 7}, + [1369] = {.lex_state = 10}, [1370] = {.lex_state = 10}, [1371] = {.lex_state = 10}, [1372] = {.lex_state = 10}, [1373] = {.lex_state = 10}, [1374] = {.lex_state = 10}, - [1375] = {.lex_state = 7}, - [1376] = {.lex_state = 7}, - [1377] = {.lex_state = 7}, + [1375] = {.lex_state = 10}, + [1376] = {.lex_state = 10}, + [1377] = {.lex_state = 10}, [1378] = {.lex_state = 10}, [1379] = {.lex_state = 10}, - [1380] = {.lex_state = 7}, - [1381] = {.lex_state = 7}, + [1380] = {.lex_state = 10}, + [1381] = {.lex_state = 10}, [1382] = {.lex_state = 7}, [1383] = {.lex_state = 7}, - [1384] = {.lex_state = 7}, + [1384] = {.lex_state = 14}, [1385] = {.lex_state = 7}, [1386] = {.lex_state = 7}, [1387] = {.lex_state = 7}, [1388] = {.lex_state = 7}, [1389] = {.lex_state = 7}, - [1390] = {.lex_state = 10}, + [1390] = {.lex_state = 7}, [1391] = {.lex_state = 7}, - [1392] = {.lex_state = 10}, + [1392] = {.lex_state = 7}, [1393] = {.lex_state = 7}, - [1394] = {.lex_state = 10}, - [1395] = {.lex_state = 10}, - [1396] = {.lex_state = 10}, - [1397] = {.lex_state = 10}, - [1398] = {.lex_state = 10}, - [1399] = {.lex_state = 10}, - [1400] = {.lex_state = 10}, - [1401] = {.lex_state = 10}, - [1402] = {.lex_state = 10}, - [1403] = {.lex_state = 10}, - [1404] = {.lex_state = 10}, - [1405] = {.lex_state = 10}, - [1406] = {.lex_state = 10}, - [1407] = {.lex_state = 10}, - [1408] = {.lex_state = 10}, - [1409] = {.lex_state = 10}, - [1410] = {.lex_state = 10}, - [1411] = {.lex_state = 10}, - [1412] = {.lex_state = 10}, + [1394] = {.lex_state = 7}, + [1395] = {.lex_state = 7}, + [1396] = {.lex_state = 7}, + [1397] = {.lex_state = 7}, + [1398] = {.lex_state = 14}, + [1399] = {.lex_state = 14}, + [1400] = {.lex_state = 7}, + [1401] = {.lex_state = 14}, + [1402] = {.lex_state = 7}, + [1403] = {.lex_state = 7}, + [1404] = {.lex_state = 14}, + [1405] = {.lex_state = 7}, + [1406] = {.lex_state = 7}, + [1407] = {.lex_state = 7}, + [1408] = {.lex_state = 7}, + [1409] = {.lex_state = 7}, + [1410] = {.lex_state = 7}, + [1411] = {.lex_state = 7}, + [1412] = {.lex_state = 7}, [1413] = {.lex_state = 7}, - [1414] = {.lex_state = 10}, - [1415] = {.lex_state = 10}, - [1416] = {.lex_state = 10}, - [1417] = {.lex_state = 10}, + [1414] = {.lex_state = 7}, + [1415] = {.lex_state = 7}, + [1416] = {.lex_state = 7}, + [1417] = {.lex_state = 7}, [1418] = {.lex_state = 7}, [1419] = {.lex_state = 7}, - [1420] = {.lex_state = 10}, - [1421] = {.lex_state = 10}, - [1422] = {.lex_state = 10}, - [1423] = {.lex_state = 10}, - [1424] = {.lex_state = 10}, - [1425] = {.lex_state = 10}, - [1426] = {.lex_state = 10}, - [1427] = {.lex_state = 10}, - [1428] = {.lex_state = 10}, - [1429] = {.lex_state = 10}, - [1430] = {.lex_state = 10}, - [1431] = {.lex_state = 10}, - [1432] = {.lex_state = 10}, - [1433] = {.lex_state = 10}, - [1434] = {.lex_state = 10}, - [1435] = {.lex_state = 10}, - [1436] = {.lex_state = 10}, - [1437] = {.lex_state = 10}, - [1438] = {.lex_state = 10}, + [1420] = {.lex_state = 7}, + [1421] = {.lex_state = 11, .external_lex_state = 2}, + [1422] = {.lex_state = 7}, + [1423] = {.lex_state = 7}, + [1424] = {.lex_state = 7}, + [1425] = {.lex_state = 7}, + [1426] = {.lex_state = 7}, + [1427] = {.lex_state = 7}, + [1428] = {.lex_state = 14}, + [1429] = {.lex_state = 7}, + [1430] = {.lex_state = 7}, + [1431] = {.lex_state = 7}, + [1432] = {.lex_state = 7}, + [1433] = {.lex_state = 7}, + [1434] = {.lex_state = 7}, + [1435] = {.lex_state = 7}, + [1436] = {.lex_state = 7}, + [1437] = {.lex_state = 7}, + [1438] = {.lex_state = 7}, [1439] = {.lex_state = 7}, - [1440] = {.lex_state = 10}, - [1441] = {.lex_state = 10}, - [1442] = {.lex_state = 10}, - [1443] = {.lex_state = 10}, + [1440] = {.lex_state = 7}, + [1441] = {.lex_state = 7}, + [1442] = {.lex_state = 14}, + [1443] = {.lex_state = 7}, [1444] = {.lex_state = 7}, - [1445] = {.lex_state = 10}, + [1445] = {.lex_state = 7}, [1446] = {.lex_state = 7}, - [1447] = {.lex_state = 10}, - [1448] = {.lex_state = 10}, + [1447] = {.lex_state = 7}, + [1448] = {.lex_state = 7}, [1449] = {.lex_state = 7}, - [1450] = {.lex_state = 10}, + [1450] = {.lex_state = 7}, [1451] = {.lex_state = 7}, - [1452] = {.lex_state = 10}, - [1453] = {.lex_state = 10}, + [1452] = {.lex_state = 7}, + [1453] = {.lex_state = 14}, [1454] = {.lex_state = 7}, - [1455] = {.lex_state = 10}, - [1456] = {.lex_state = 10}, - [1457] = {.lex_state = 10}, - [1458] = {.lex_state = 10}, - [1459] = {.lex_state = 10}, + [1455] = {.lex_state = 7}, + [1456] = {.lex_state = 7}, + [1457] = {.lex_state = 7}, + [1458] = {.lex_state = 7}, + [1459] = {.lex_state = 7}, [1460] = {.lex_state = 7}, - [1461] = {.lex_state = 10}, + [1461] = {.lex_state = 7}, [1462] = {.lex_state = 7}, [1463] = {.lex_state = 7}, - [1464] = {.lex_state = 10}, - [1465] = {.lex_state = 10}, - [1466] = {.lex_state = 10}, - [1467] = {.lex_state = 10}, - [1468] = {.lex_state = 10}, - [1469] = {.lex_state = 10}, - [1470] = {.lex_state = 10}, - [1471] = {.lex_state = 11, .external_lex_state = 2}, - [1472] = {.lex_state = 14}, - [1473] = {.lex_state = 11, .external_lex_state = 2}, - [1474] = {.lex_state = 11, .external_lex_state = 2}, - [1475] = {.lex_state = 7}, - [1476] = {.lex_state = 14}, - [1477] = {.lex_state = 11, .external_lex_state = 2}, + [1464] = {.lex_state = 7}, + [1465] = {.lex_state = 7}, + [1466] = {.lex_state = 7}, + [1467] = {.lex_state = 7}, + [1468] = {.lex_state = 7}, + [1469] = {.lex_state = 12, .external_lex_state = 2}, + [1470] = {.lex_state = 7}, + [1471] = {.lex_state = 7}, + [1472] = {.lex_state = 7}, + [1473] = {.lex_state = 7}, + [1474] = {.lex_state = 7}, + [1475] = {.lex_state = 12, .external_lex_state = 2}, + [1476] = {.lex_state = 7}, + [1477] = {.lex_state = 7}, [1478] = {.lex_state = 7}, - [1479] = {.lex_state = 11, .external_lex_state = 2}, - [1480] = {.lex_state = 14}, - [1481] = {.lex_state = 14}, + [1479] = {.lex_state = 7}, + [1480] = {.lex_state = 7}, + [1481] = {.lex_state = 7}, [1482] = {.lex_state = 7}, [1483] = {.lex_state = 7}, [1484] = {.lex_state = 7}, @@ -11529,270 +11656,270 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1488] = {.lex_state = 7}, [1489] = {.lex_state = 7}, [1490] = {.lex_state = 7}, - [1491] = {.lex_state = 14}, - [1492] = {.lex_state = 9}, + [1491] = {.lex_state = 7}, + [1492] = {.lex_state = 7}, [1493] = {.lex_state = 7}, - [1494] = {.lex_state = 7}, - [1495] = {.lex_state = 7}, + [1494] = {.lex_state = 14}, + [1495] = {.lex_state = 14}, [1496] = {.lex_state = 7}, [1497] = {.lex_state = 7}, - [1498] = {.lex_state = 14}, + [1498] = {.lex_state = 7}, [1499] = {.lex_state = 7}, [1500] = {.lex_state = 7}, [1501] = {.lex_state = 7}, - [1502] = {.lex_state = 7}, + [1502] = {.lex_state = 11, .external_lex_state = 2}, [1503] = {.lex_state = 7}, - [1504] = {.lex_state = 14}, - [1505] = {.lex_state = 7}, - [1506] = {.lex_state = 9}, - [1507] = {.lex_state = 8}, - [1508] = {.lex_state = 9}, - [1509] = {.lex_state = 7}, - [1510] = {.lex_state = 11, .external_lex_state = 2}, + [1504] = {.lex_state = 7}, + [1505] = {.lex_state = 11, .external_lex_state = 2}, + [1506] = {.lex_state = 14}, + [1507] = {.lex_state = 11, .external_lex_state = 2}, + [1508] = {.lex_state = 11, .external_lex_state = 2}, + [1509] = {.lex_state = 14}, + [1510] = {.lex_state = 14}, [1511] = {.lex_state = 7}, [1512] = {.lex_state = 11, .external_lex_state = 2}, - [1513] = {.lex_state = 9}, - [1514] = {.lex_state = 11, .external_lex_state = 2}, + [1513] = {.lex_state = 7}, + [1514] = {.lex_state = 14}, [1515] = {.lex_state = 11, .external_lex_state = 2}, [1516] = {.lex_state = 7}, - [1517] = {.lex_state = 14}, - [1518] = {.lex_state = 8}, - [1519] = {.lex_state = 9}, - [1520] = {.lex_state = 9}, + [1517] = {.lex_state = 7}, + [1518] = {.lex_state = 7}, + [1519] = {.lex_state = 7}, + [1520] = {.lex_state = 7}, [1521] = {.lex_state = 7}, - [1522] = {.lex_state = 8}, + [1522] = {.lex_state = 7}, [1523] = {.lex_state = 7}, - [1524] = {.lex_state = 8}, + [1524] = {.lex_state = 7}, [1525] = {.lex_state = 7}, - [1526] = {.lex_state = 9}, - [1527] = {.lex_state = 9}, - [1528] = {.lex_state = 14}, - [1529] = {.lex_state = 9}, - [1530] = {.lex_state = 9}, - [1531] = {.lex_state = 14}, - [1532] = {.lex_state = 9}, - [1533] = {.lex_state = 9}, + [1526] = {.lex_state = 7}, + [1527] = {.lex_state = 7}, + [1528] = {.lex_state = 7}, + [1529] = {.lex_state = 14}, + [1530] = {.lex_state = 7}, + [1531] = {.lex_state = 9}, + [1532] = {.lex_state = 14}, + [1533] = {.lex_state = 7}, [1534] = {.lex_state = 7}, - [1535] = {.lex_state = 7}, - [1536] = {.lex_state = 14}, + [1535] = {.lex_state = 14}, + [1536] = {.lex_state = 7}, [1537] = {.lex_state = 7}, - [1538] = {.lex_state = 8}, - [1539] = {.lex_state = 14}, - [1540] = {.lex_state = 14}, - [1541] = {.lex_state = 14}, - [1542] = {.lex_state = 7}, - [1543] = {.lex_state = 7}, - [1544] = {.lex_state = 8}, + [1538] = {.lex_state = 7}, + [1539] = {.lex_state = 7}, + [1540] = {.lex_state = 9}, + [1541] = {.lex_state = 9}, + [1542] = {.lex_state = 11, .external_lex_state = 2}, + [1543] = {.lex_state = 11, .external_lex_state = 2}, + [1544] = {.lex_state = 11, .external_lex_state = 2}, [1545] = {.lex_state = 8}, - [1546] = {.lex_state = 8}, - [1547] = {.lex_state = 8}, - [1548] = {.lex_state = 8}, - [1549] = {.lex_state = 7}, - [1550] = {.lex_state = 8}, - [1551] = {.lex_state = 7}, - [1552] = {.lex_state = 8}, - [1553] = {.lex_state = 7}, - [1554] = {.lex_state = 8}, - [1555] = {.lex_state = 7}, - [1556] = {.lex_state = 8}, - [1557] = {.lex_state = 8}, - [1558] = {.lex_state = 7}, + [1546] = {.lex_state = 11, .external_lex_state = 2}, + [1547] = {.lex_state = 7}, + [1548] = {.lex_state = 7}, + [1549] = {.lex_state = 9}, + [1550] = {.lex_state = 14}, + [1551] = {.lex_state = 8}, + [1552] = {.lex_state = 9}, + [1553] = {.lex_state = 14}, + [1554] = {.lex_state = 7}, + [1555] = {.lex_state = 9}, + [1556] = {.lex_state = 9}, + [1557] = {.lex_state = 7}, + [1558] = {.lex_state = 14}, [1559] = {.lex_state = 8}, - [1560] = {.lex_state = 7}, - [1561] = {.lex_state = 8}, - [1562] = {.lex_state = 7}, + [1560] = {.lex_state = 9}, + [1561] = {.lex_state = 9}, + [1562] = {.lex_state = 14}, [1563] = {.lex_state = 7}, - [1564] = {.lex_state = 8}, - [1565] = {.lex_state = 7}, - [1566] = {.lex_state = 7}, + [1564] = {.lex_state = 9}, + [1565] = {.lex_state = 14}, + [1566] = {.lex_state = 8}, [1567] = {.lex_state = 7}, [1568] = {.lex_state = 8}, - [1569] = {.lex_state = 7}, - [1570] = {.lex_state = 7}, + [1569] = {.lex_state = 9}, + [1570] = {.lex_state = 9}, [1571] = {.lex_state = 7}, - [1572] = {.lex_state = 7}, - [1573] = {.lex_state = 7}, + [1572] = {.lex_state = 14}, + [1573] = {.lex_state = 14}, [1574] = {.lex_state = 7}, [1575] = {.lex_state = 7}, [1576] = {.lex_state = 7}, [1577] = {.lex_state = 7}, - [1578] = {.lex_state = 7}, - [1579] = {.lex_state = 7}, + [1578] = {.lex_state = 8}, + [1579] = {.lex_state = 8}, [1580] = {.lex_state = 7}, [1581] = {.lex_state = 8}, [1582] = {.lex_state = 8}, [1583] = {.lex_state = 8}, - [1584] = {.lex_state = 20}, + [1584] = {.lex_state = 8}, [1585] = {.lex_state = 7}, - [1586] = {.lex_state = 9}, - [1587] = {.lex_state = 8}, + [1586] = {.lex_state = 8}, + [1587] = {.lex_state = 7}, [1588] = {.lex_state = 7}, - [1589] = {.lex_state = 7}, + [1589] = {.lex_state = 8}, [1590] = {.lex_state = 7}, [1591] = {.lex_state = 8}, - [1592] = {.lex_state = 14}, + [1592] = {.lex_state = 7}, [1593] = {.lex_state = 7}, - [1594] = {.lex_state = 20}, - [1595] = {.lex_state = 8}, + [1594] = {.lex_state = 7}, + [1595] = {.lex_state = 7}, [1596] = {.lex_state = 8}, - [1597] = {.lex_state = 8}, - [1598] = {.lex_state = 20}, - [1599] = {.lex_state = 8}, + [1597] = {.lex_state = 7}, + [1598] = {.lex_state = 8}, + [1599] = {.lex_state = 7}, [1600] = {.lex_state = 8}, [1601] = {.lex_state = 7}, - [1602] = {.lex_state = 20}, + [1602] = {.lex_state = 7}, [1603] = {.lex_state = 8}, [1604] = {.lex_state = 8}, - [1605] = {.lex_state = 20}, + [1605] = {.lex_state = 7}, [1606] = {.lex_state = 7}, - [1607] = {.lex_state = 7}, - [1608] = {.lex_state = 8}, + [1607] = {.lex_state = 8}, + [1608] = {.lex_state = 7}, [1609] = {.lex_state = 8}, - [1610] = {.lex_state = 7}, - [1611] = {.lex_state = 20}, - [1612] = {.lex_state = 8}, - [1613] = {.lex_state = 14}, - [1614] = {.lex_state = 20}, + [1610] = {.lex_state = 20}, + [1611] = {.lex_state = 8}, + [1612] = {.lex_state = 20}, + [1613] = {.lex_state = 7}, + [1614] = {.lex_state = 9}, [1615] = {.lex_state = 7}, - [1616] = {.lex_state = 7}, - [1617] = {.lex_state = 20}, - [1618] = {.lex_state = 14}, + [1616] = {.lex_state = 8}, + [1617] = {.lex_state = 7}, + [1618] = {.lex_state = 7}, [1619] = {.lex_state = 7}, - [1620] = {.lex_state = 8}, - [1621] = {.lex_state = 8}, - [1622] = {.lex_state = 20}, - [1623] = {.lex_state = 20}, - [1624] = {.lex_state = 20}, - [1625] = {.lex_state = 7}, + [1620] = {.lex_state = 20}, + [1621] = {.lex_state = 20}, + [1622] = {.lex_state = 7}, + [1623] = {.lex_state = 7}, + [1624] = {.lex_state = 7}, + [1625] = {.lex_state = 20}, [1626] = {.lex_state = 20}, - [1627] = {.lex_state = 7}, + [1627] = {.lex_state = 8}, [1628] = {.lex_state = 7}, - [1629] = {.lex_state = 7}, + [1629] = {.lex_state = 8}, [1630] = {.lex_state = 7}, - [1631] = {.lex_state = 8}, + [1631] = {.lex_state = 7}, [1632] = {.lex_state = 7}, - [1633] = {.lex_state = 8}, - [1634] = {.lex_state = 7}, - [1635] = {.lex_state = 8}, + [1633] = {.lex_state = 7}, + [1634] = {.lex_state = 14}, + [1635] = {.lex_state = 20}, [1636] = {.lex_state = 7}, - [1637] = {.lex_state = 8}, + [1637] = {.lex_state = 7}, [1638] = {.lex_state = 7}, [1639] = {.lex_state = 8}, - [1640] = {.lex_state = 8}, + [1640] = {.lex_state = 7}, [1641] = {.lex_state = 8}, - [1642] = {.lex_state = 8}, - [1643] = {.lex_state = 8}, + [1642] = {.lex_state = 7}, + [1643] = {.lex_state = 7}, [1644] = {.lex_state = 8}, [1645] = {.lex_state = 8}, [1646] = {.lex_state = 8}, [1647] = {.lex_state = 8}, - [1648] = {.lex_state = 8}, + [1648] = {.lex_state = 7}, [1649] = {.lex_state = 8}, [1650] = {.lex_state = 8}, [1651] = {.lex_state = 8}, [1652] = {.lex_state = 8}, - [1653] = {.lex_state = 8}, + [1653] = {.lex_state = 20}, [1654] = {.lex_state = 7}, [1655] = {.lex_state = 8}, [1656] = {.lex_state = 8}, - [1657] = {.lex_state = 8}, - [1658] = {.lex_state = 8}, - [1659] = {.lex_state = 8}, + [1657] = {.lex_state = 20}, + [1658] = {.lex_state = 20}, + [1659] = {.lex_state = 7}, [1660] = {.lex_state = 7}, - [1661] = {.lex_state = 8}, + [1661] = {.lex_state = 14}, [1662] = {.lex_state = 8}, - [1663] = {.lex_state = 8}, - [1664] = {.lex_state = 8}, - [1665] = {.lex_state = 8}, + [1663] = {.lex_state = 20}, + [1664] = {.lex_state = 7}, + [1665] = {.lex_state = 7}, [1666] = {.lex_state = 8}, - [1667] = {.lex_state = 8}, - [1668] = {.lex_state = 8}, - [1669] = {.lex_state = 8}, + [1667] = {.lex_state = 20}, + [1668] = {.lex_state = 14}, + [1669] = {.lex_state = 7}, [1670] = {.lex_state = 8}, - [1671] = {.lex_state = 7}, + [1671] = {.lex_state = 8}, [1672] = {.lex_state = 8}, - [1673] = {.lex_state = 8}, - [1674] = {.lex_state = 7}, - [1675] = {.lex_state = 8}, + [1673] = {.lex_state = 7}, + [1674] = {.lex_state = 8}, + [1675] = {.lex_state = 7}, [1676] = {.lex_state = 8}, [1677] = {.lex_state = 8}, [1678] = {.lex_state = 8}, [1679] = {.lex_state = 8}, [1680] = {.lex_state = 8}, [1681] = {.lex_state = 8}, - [1682] = {.lex_state = 7}, - [1683] = {.lex_state = 8}, + [1682] = {.lex_state = 8}, + [1683] = {.lex_state = 7}, [1684] = {.lex_state = 8}, [1685] = {.lex_state = 8}, - [1686] = {.lex_state = 8}, + [1686] = {.lex_state = 7}, [1687] = {.lex_state = 8}, [1688] = {.lex_state = 8}, [1689] = {.lex_state = 8}, [1690] = {.lex_state = 7}, [1691] = {.lex_state = 8}, - [1692] = {.lex_state = 8}, - [1693] = {.lex_state = 8}, + [1692] = {.lex_state = 7}, + [1693] = {.lex_state = 7}, [1694] = {.lex_state = 8}, - [1695] = {.lex_state = 7}, - [1696] = {.lex_state = 8}, - [1697] = {.lex_state = 7}, + [1695] = {.lex_state = 8}, + [1696] = {.lex_state = 7}, + [1697] = {.lex_state = 8}, [1698] = {.lex_state = 7}, - [1699] = {.lex_state = 7}, - [1700] = {.lex_state = 8}, - [1701] = {.lex_state = 8}, - [1702] = {.lex_state = 7}, - [1703] = {.lex_state = 7}, + [1699] = {.lex_state = 14}, + [1700] = {.lex_state = 7}, + [1701] = {.lex_state = 7}, + [1702] = {.lex_state = 8}, + [1703] = {.lex_state = 8}, [1704] = {.lex_state = 7}, - [1705] = {.lex_state = 8}, + [1705] = {.lex_state = 7}, [1706] = {.lex_state = 8}, [1707] = {.lex_state = 8}, [1708] = {.lex_state = 8}, [1709] = {.lex_state = 8}, - [1710] = {.lex_state = 7}, - [1711] = {.lex_state = 7}, + [1710] = {.lex_state = 8}, + [1711] = {.lex_state = 8}, [1712] = {.lex_state = 7}, - [1713] = {.lex_state = 7}, + [1713] = {.lex_state = 8}, [1714] = {.lex_state = 7}, - [1715] = {.lex_state = 7}, + [1715] = {.lex_state = 8}, [1716] = {.lex_state = 7}, - [1717] = {.lex_state = 7}, + [1717] = {.lex_state = 8}, [1718] = {.lex_state = 7}, - [1719] = {.lex_state = 7}, - [1720] = {.lex_state = 7}, - [1721] = {.lex_state = 7}, + [1719] = {.lex_state = 8}, + [1720] = {.lex_state = 8}, + [1721] = {.lex_state = 8}, [1722] = {.lex_state = 7}, [1723] = {.lex_state = 8}, - [1724] = {.lex_state = 8}, - [1725] = {.lex_state = 8}, - [1726] = {.lex_state = 8}, + [1724] = {.lex_state = 7}, + [1725] = {.lex_state = 7}, + [1726] = {.lex_state = 7}, [1727] = {.lex_state = 7}, [1728] = {.lex_state = 8}, - [1729] = {.lex_state = 8}, + [1729] = {.lex_state = 7}, [1730] = {.lex_state = 8}, - [1731] = {.lex_state = 8}, + [1731] = {.lex_state = 7}, [1732] = {.lex_state = 8}, [1733] = {.lex_state = 7}, [1734] = {.lex_state = 8}, - [1735] = {.lex_state = 8}, - [1736] = {.lex_state = 8}, + [1735] = {.lex_state = 7}, + [1736] = {.lex_state = 7}, [1737] = {.lex_state = 8}, - [1738] = {.lex_state = 8}, + [1738] = {.lex_state = 7}, [1739] = {.lex_state = 8}, - [1740] = {.lex_state = 7}, + [1740] = {.lex_state = 8}, [1741] = {.lex_state = 8}, [1742] = {.lex_state = 8}, - [1743] = {.lex_state = 8}, - [1744] = {.lex_state = 8}, + [1743] = {.lex_state = 7}, + [1744] = {.lex_state = 7}, [1745] = {.lex_state = 8}, - [1746] = {.lex_state = 7}, - [1747] = {.lex_state = 8}, - [1748] = {.lex_state = 7}, + [1746] = {.lex_state = 8}, + [1747] = {.lex_state = 7}, + [1748] = {.lex_state = 8}, [1749] = {.lex_state = 8}, - [1750] = {.lex_state = 8}, - [1751] = {.lex_state = 7}, + [1750] = {.lex_state = 7}, + [1751] = {.lex_state = 8}, [1752] = {.lex_state = 8}, [1753] = {.lex_state = 8}, - [1754] = {.lex_state = 8}, + [1754] = {.lex_state = 7}, [1755] = {.lex_state = 8}, [1756] = {.lex_state = 8}, [1757] = {.lex_state = 8}, @@ -11800,171 +11927,171 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1759] = {.lex_state = 8}, [1760] = {.lex_state = 8}, [1761] = {.lex_state = 8}, - [1762] = {.lex_state = 8}, + [1762] = {.lex_state = 7}, [1763] = {.lex_state = 8}, - [1764] = {.lex_state = 8}, - [1765] = {.lex_state = 8}, + [1764] = {.lex_state = 7}, + [1765] = {.lex_state = 7}, [1766] = {.lex_state = 8}, - [1767] = {.lex_state = 8}, - [1768] = {.lex_state = 7}, - [1769] = {.lex_state = 8}, - [1770] = {.lex_state = 8}, - [1771] = {.lex_state = 8}, - [1772] = {.lex_state = 8}, + [1767] = {.lex_state = 7}, + [1768] = {.lex_state = 8}, + [1769] = {.lex_state = 7}, + [1770] = {.lex_state = 7}, + [1771] = {.lex_state = 7}, + [1772] = {.lex_state = 7}, [1773] = {.lex_state = 8}, - [1774] = {.lex_state = 8}, - [1775] = {.lex_state = 8}, + [1774] = {.lex_state = 7}, + [1775] = {.lex_state = 7}, [1776] = {.lex_state = 8}, - [1777] = {.lex_state = 8}, - [1778] = {.lex_state = 8}, - [1779] = {.lex_state = 8}, - [1780] = {.lex_state = 8}, + [1777] = {.lex_state = 7}, + [1778] = {.lex_state = 7}, + [1779] = {.lex_state = 7}, + [1780] = {.lex_state = 7}, [1781] = {.lex_state = 8}, [1782] = {.lex_state = 7}, [1783] = {.lex_state = 8}, [1784] = {.lex_state = 8}, [1785] = {.lex_state = 8}, - [1786] = {.lex_state = 7}, + [1786] = {.lex_state = 8}, [1787] = {.lex_state = 8}, [1788] = {.lex_state = 8}, [1789] = {.lex_state = 8}, - [1790] = {.lex_state = 8}, + [1790] = {.lex_state = 7}, [1791] = {.lex_state = 8}, [1792] = {.lex_state = 8}, [1793] = {.lex_state = 7}, - [1794] = {.lex_state = 7}, - [1795] = {.lex_state = 14}, - [1796] = {.lex_state = 7}, + [1794] = {.lex_state = 8}, + [1795] = {.lex_state = 8}, + [1796] = {.lex_state = 8}, [1797] = {.lex_state = 7}, - [1798] = {.lex_state = 7}, - [1799] = {.lex_state = 7}, + [1798] = {.lex_state = 8}, + [1799] = {.lex_state = 8}, [1800] = {.lex_state = 7}, - [1801] = {.lex_state = 7}, - [1802] = {.lex_state = 7}, + [1801] = {.lex_state = 8}, + [1802] = {.lex_state = 8}, [1803] = {.lex_state = 7}, - [1804] = {.lex_state = 7}, - [1805] = {.lex_state = 7}, - [1806] = {.lex_state = 7}, + [1804] = {.lex_state = 8}, + [1805] = {.lex_state = 8}, + [1806] = {.lex_state = 8}, [1807] = {.lex_state = 7}, - [1808] = {.lex_state = 7}, + [1808] = {.lex_state = 8}, [1809] = {.lex_state = 7}, - [1810] = {.lex_state = 7}, - [1811] = {.lex_state = 7}, - [1812] = {.lex_state = 7}, + [1810] = {.lex_state = 8}, + [1811] = {.lex_state = 8}, + [1812] = {.lex_state = 8}, [1813] = {.lex_state = 7}, - [1814] = {.lex_state = 7}, - [1815] = {.lex_state = 7}, - [1816] = {.lex_state = 7}, - [1817] = {.lex_state = 7}, - [1818] = {.lex_state = 7}, - [1819] = {.lex_state = 7}, - [1820] = {.lex_state = 7}, + [1814] = {.lex_state = 8}, + [1815] = {.lex_state = 8}, + [1816] = {.lex_state = 8}, + [1817] = {.lex_state = 8}, + [1818] = {.lex_state = 8}, + [1819] = {.lex_state = 8}, + [1820] = {.lex_state = 8}, [1821] = {.lex_state = 7}, - [1822] = {.lex_state = 7}, + [1822] = {.lex_state = 8}, [1823] = {.lex_state = 7}, - [1824] = {.lex_state = 7}, - [1825] = {.lex_state = 7}, + [1824] = {.lex_state = 8}, + [1825] = {.lex_state = 8}, [1826] = {.lex_state = 7}, [1827] = {.lex_state = 7}, - [1828] = {.lex_state = 7}, + [1828] = {.lex_state = 8}, [1829] = {.lex_state = 7}, [1830] = {.lex_state = 7}, - [1831] = {.lex_state = 7}, - [1832] = {.lex_state = 7}, - [1833] = {.lex_state = 7}, - [1834] = {.lex_state = 7}, + [1831] = {.lex_state = 8}, + [1832] = {.lex_state = 8}, + [1833] = {.lex_state = 8}, + [1834] = {.lex_state = 8}, [1835] = {.lex_state = 7}, - [1836] = {.lex_state = 7}, + [1836] = {.lex_state = 8}, [1837] = {.lex_state = 7}, - [1838] = {.lex_state = 7}, + [1838] = {.lex_state = 8}, [1839] = {.lex_state = 7}, - [1840] = {.lex_state = 7}, - [1841] = {.lex_state = 8}, + [1840] = {.lex_state = 8}, + [1841] = {.lex_state = 7}, [1842] = {.lex_state = 7}, - [1843] = {.lex_state = 7}, + [1843] = {.lex_state = 8}, [1844] = {.lex_state = 7}, - [1845] = {.lex_state = 7}, - [1846] = {.lex_state = 14}, + [1845] = {.lex_state = 8}, + [1846] = {.lex_state = 7}, [1847] = {.lex_state = 8}, [1848] = {.lex_state = 7}, [1849] = {.lex_state = 7}, - [1850] = {.lex_state = 7}, - [1851] = {.lex_state = 7}, - [1852] = {.lex_state = 7}, - [1853] = {.lex_state = 7}, + [1850] = {.lex_state = 8}, + [1851] = {.lex_state = 8}, + [1852] = {.lex_state = 8}, + [1853] = {.lex_state = 8}, [1854] = {.lex_state = 7}, [1855] = {.lex_state = 7}, [1856] = {.lex_state = 7}, - [1857] = {.lex_state = 7}, + [1857] = {.lex_state = 8}, [1858] = {.lex_state = 7}, [1859] = {.lex_state = 7}, [1860] = {.lex_state = 7}, - [1861] = {.lex_state = 7}, + [1861] = {.lex_state = 8}, [1862] = {.lex_state = 7}, - [1863] = {.lex_state = 7}, + [1863] = {.lex_state = 8}, [1864] = {.lex_state = 7}, - [1865] = {.lex_state = 8}, - [1866] = {.lex_state = 7}, - [1867] = {.lex_state = 7}, - [1868] = {.lex_state = 7}, - [1869] = {.lex_state = 7}, - [1870] = {.lex_state = 7}, + [1865] = {.lex_state = 7}, + [1866] = {.lex_state = 8}, + [1867] = {.lex_state = 8}, + [1868] = {.lex_state = 8}, + [1869] = {.lex_state = 8}, + [1870] = {.lex_state = 8}, [1871] = {.lex_state = 7}, [1872] = {.lex_state = 7}, - [1873] = {.lex_state = 7}, - [1874] = {.lex_state = 14}, - [1875] = {.lex_state = 8}, - [1876] = {.lex_state = 14}, - [1877] = {.lex_state = 14}, - [1878] = {.lex_state = 14}, - [1879] = {.lex_state = 14}, - [1880] = {.lex_state = 14}, - [1881] = {.lex_state = 14}, - [1882] = {.lex_state = 14}, - [1883] = {.lex_state = 14}, - [1884] = {.lex_state = 14}, + [1873] = {.lex_state = 8}, + [1874] = {.lex_state = 7}, + [1875] = {.lex_state = 7}, + [1876] = {.lex_state = 7}, + [1877] = {.lex_state = 7}, + [1878] = {.lex_state = 7}, + [1879] = {.lex_state = 7}, + [1880] = {.lex_state = 7}, + [1881] = {.lex_state = 7}, + [1882] = {.lex_state = 7}, + [1883] = {.lex_state = 7}, + [1884] = {.lex_state = 7}, [1885] = {.lex_state = 14}, - [1886] = {.lex_state = 14}, - [1887] = {.lex_state = 14}, - [1888] = {.lex_state = 14}, - [1889] = {.lex_state = 14}, - [1890] = {.lex_state = 14}, - [1891] = {.lex_state = 14}, - [1892] = {.lex_state = 14}, - [1893] = {.lex_state = 14}, - [1894] = {.lex_state = 14}, - [1895] = {.lex_state = 14}, - [1896] = {.lex_state = 14}, - [1897] = {.lex_state = 14}, - [1898] = {.lex_state = 14}, - [1899] = {.lex_state = 14}, - [1900] = {.lex_state = 14}, - [1901] = {.lex_state = 14}, - [1902] = {.lex_state = 27}, - [1903] = {.lex_state = 16}, - [1904] = {.lex_state = 27}, - [1905] = {.lex_state = 16}, - [1906] = {.lex_state = 16}, - [1907] = {.lex_state = 16}, - [1908] = {.lex_state = 16}, - [1909] = {.lex_state = 16}, - [1910] = {.lex_state = 16}, - [1911] = {.lex_state = 16}, - [1912] = {.lex_state = 16}, - [1913] = {.lex_state = 16}, - [1914] = {.lex_state = 27}, - [1915] = {.lex_state = 16}, - [1916] = {.lex_state = 27}, - [1917] = {.lex_state = 27}, - [1918] = {.lex_state = 16}, - [1919] = {.lex_state = 16}, - [1920] = {.lex_state = 27}, + [1886] = {.lex_state = 7}, + [1887] = {.lex_state = 7}, + [1888] = {.lex_state = 7}, + [1889] = {.lex_state = 7}, + [1890] = {.lex_state = 7}, + [1891] = {.lex_state = 8}, + [1892] = {.lex_state = 7}, + [1893] = {.lex_state = 7}, + [1894] = {.lex_state = 7}, + [1895] = {.lex_state = 7}, + [1896] = {.lex_state = 7}, + [1897] = {.lex_state = 7}, + [1898] = {.lex_state = 7}, + [1899] = {.lex_state = 7}, + [1900] = {.lex_state = 7}, + [1901] = {.lex_state = 7}, + [1902] = {.lex_state = 7}, + [1903] = {.lex_state = 7}, + [1904] = {.lex_state = 7}, + [1905] = {.lex_state = 14}, + [1906] = {.lex_state = 7}, + [1907] = {.lex_state = 8}, + [1908] = {.lex_state = 8}, + [1909] = {.lex_state = 7}, + [1910] = {.lex_state = 14}, + [1911] = {.lex_state = 14}, + [1912] = {.lex_state = 14}, + [1913] = {.lex_state = 14}, + [1914] = {.lex_state = 14}, + [1915] = {.lex_state = 14}, + [1916] = {.lex_state = 14}, + [1917] = {.lex_state = 14}, + [1918] = {.lex_state = 14}, + [1919] = {.lex_state = 14}, + [1920] = {.lex_state = 14}, [1921] = {.lex_state = 14}, [1922] = {.lex_state = 14}, [1923] = {.lex_state = 14}, [1924] = {.lex_state = 14}, [1925] = {.lex_state = 14}, - [1926] = {.lex_state = 27}, + [1926] = {.lex_state = 14}, [1927] = {.lex_state = 14}, [1928] = {.lex_state = 14}, [1929] = {.lex_state = 14}, @@ -11973,1302 +12100,1302 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1932] = {.lex_state = 14}, [1933] = {.lex_state = 14}, [1934] = {.lex_state = 14}, - [1935] = {.lex_state = 16}, - [1936] = {.lex_state = 16}, + [1935] = {.lex_state = 14}, + [1936] = {.lex_state = 27}, [1937] = {.lex_state = 16}, - [1938] = {.lex_state = 14}, - [1939] = {.lex_state = 27}, - [1940] = {.lex_state = 14}, - [1941] = {.lex_state = 27}, + [1938] = {.lex_state = 27}, + [1939] = {.lex_state = 16}, + [1940] = {.lex_state = 16}, + [1941] = {.lex_state = 16}, [1942] = {.lex_state = 16}, - [1943] = {.lex_state = 27}, - [1944] = {.lex_state = 14}, - [1945] = {.lex_state = 27}, - [1946] = {.lex_state = 27}, + [1943] = {.lex_state = 16}, + [1944] = {.lex_state = 16}, + [1945] = {.lex_state = 16}, + [1946] = {.lex_state = 16}, [1947] = {.lex_state = 27}, [1948] = {.lex_state = 27}, - [1949] = {.lex_state = 14}, + [1949] = {.lex_state = 16}, [1950] = {.lex_state = 27}, - [1951] = {.lex_state = 14}, - [1952] = {.lex_state = 14}, - [1953] = {.lex_state = 27}, + [1951] = {.lex_state = 16}, + [1952] = {.lex_state = 16}, + [1953] = {.lex_state = 16}, [1954] = {.lex_state = 27}, - [1955] = {.lex_state = 16}, + [1955] = {.lex_state = 14}, [1956] = {.lex_state = 27}, - [1957] = {.lex_state = 27}, - [1958] = {.lex_state = 16}, - [1959] = {.lex_state = 27}, - [1960] = {.lex_state = 27}, + [1957] = {.lex_state = 14}, + [1958] = {.lex_state = 14}, + [1959] = {.lex_state = 14}, + [1960] = {.lex_state = 14}, [1961] = {.lex_state = 14}, - [1962] = {.lex_state = 27}, - [1963] = {.lex_state = 27}, + [1962] = {.lex_state = 14}, + [1963] = {.lex_state = 14}, [1964] = {.lex_state = 14}, - [1965] = {.lex_state = 27}, - [1966] = {.lex_state = 27}, - [1967] = {.lex_state = 27}, - [1968] = {.lex_state = 27}, - [1969] = {.lex_state = 27}, - [1970] = {.lex_state = 27}, - [1971] = {.lex_state = 27}, + [1965] = {.lex_state = 14}, + [1966] = {.lex_state = 14}, + [1967] = {.lex_state = 14}, + [1968] = {.lex_state = 14}, + [1969] = {.lex_state = 16}, + [1970] = {.lex_state = 14}, + [1971] = {.lex_state = 16}, [1972] = {.lex_state = 27}, - [1973] = {.lex_state = 27}, + [1973] = {.lex_state = 16}, [1974] = {.lex_state = 14}, [1975] = {.lex_state = 27}, - [1976] = {.lex_state = 27}, + [1976] = {.lex_state = 14}, [1977] = {.lex_state = 14}, [1978] = {.lex_state = 27}, [1979] = {.lex_state = 27}, [1980] = {.lex_state = 14}, - [1981] = {.lex_state = 16}, - [1982] = {.lex_state = 14}, + [1981] = {.lex_state = 27}, + [1982] = {.lex_state = 16}, [1983] = {.lex_state = 27}, [1984] = {.lex_state = 27}, [1985] = {.lex_state = 27}, - [1986] = {.lex_state = 27}, - [1987] = {.lex_state = 14}, + [1986] = {.lex_state = 14}, + [1987] = {.lex_state = 27}, [1988] = {.lex_state = 27}, - [1989] = {.lex_state = 27}, + [1989] = {.lex_state = 14}, [1990] = {.lex_state = 27}, - [1991] = {.lex_state = 27}, - [1992] = {.lex_state = 27}, - [1993] = {.lex_state = 27}, + [1991] = {.lex_state = 14}, + [1992] = {.lex_state = 14}, + [1993] = {.lex_state = 14}, [1994] = {.lex_state = 27}, [1995] = {.lex_state = 27}, - [1996] = {.lex_state = 27}, - [1997] = {.lex_state = 27}, - [1998] = {.lex_state = 14}, + [1996] = {.lex_state = 16}, + [1997] = {.lex_state = 14}, + [1998] = {.lex_state = 16}, [1999] = {.lex_state = 14}, - [2000] = {.lex_state = 16}, - [2001] = {.lex_state = 27}, - [2002] = {.lex_state = 16}, - [2003] = {.lex_state = 16}, + [2000] = {.lex_state = 27}, + [2001] = {.lex_state = 14}, + [2002] = {.lex_state = 27}, + [2003] = {.lex_state = 27}, [2004] = {.lex_state = 27}, [2005] = {.lex_state = 27}, - [2006] = {.lex_state = 16}, - [2007] = {.lex_state = 17}, - [2008] = {.lex_state = 16}, - [2009] = {.lex_state = 16}, - [2010] = {.lex_state = 16}, - [2011] = {.lex_state = 27}, - [2012] = {.lex_state = 16}, - [2013] = {.lex_state = 16}, - [2014] = {.lex_state = 16}, - [2015] = {.lex_state = 16}, - [2016] = {.lex_state = 16}, - [2017] = {.lex_state = 16}, - [2018] = {.lex_state = 14}, - [2019] = {.lex_state = 14}, - [2020] = {.lex_state = 14}, - [2021] = {.lex_state = 14}, - [2022] = {.lex_state = 14}, - [2023] = {.lex_state = 14}, - [2024] = {.lex_state = 14}, - [2025] = {.lex_state = 14}, - [2026] = {.lex_state = 14}, - [2027] = {.lex_state = 14}, - [2028] = {.lex_state = 14}, - [2029] = {.lex_state = 14}, - [2030] = {.lex_state = 14}, + [2006] = {.lex_state = 27}, + [2007] = {.lex_state = 27}, + [2008] = {.lex_state = 27}, + [2009] = {.lex_state = 27}, + [2010] = {.lex_state = 27}, + [2011] = {.lex_state = 16}, + [2012] = {.lex_state = 27}, + [2013] = {.lex_state = 27}, + [2014] = {.lex_state = 27}, + [2015] = {.lex_state = 27}, + [2016] = {.lex_state = 27}, + [2017] = {.lex_state = 27}, + [2018] = {.lex_state = 27}, + [2019] = {.lex_state = 27}, + [2020] = {.lex_state = 27}, + [2021] = {.lex_state = 27}, + [2022] = {.lex_state = 27}, + [2023] = {.lex_state = 27}, + [2024] = {.lex_state = 27}, + [2025] = {.lex_state = 27}, + [2026] = {.lex_state = 27}, + [2027] = {.lex_state = 27}, + [2028] = {.lex_state = 27}, + [2029] = {.lex_state = 27}, + [2030] = {.lex_state = 27}, [2031] = {.lex_state = 14}, - [2032] = {.lex_state = 14}, - [2033] = {.lex_state = 14}, - [2034] = {.lex_state = 16}, - [2035] = {.lex_state = 14}, - [2036] = {.lex_state = 14}, + [2032] = {.lex_state = 27}, + [2033] = {.lex_state = 27}, + [2034] = {.lex_state = 14}, + [2035] = {.lex_state = 16}, + [2036] = {.lex_state = 27}, [2037] = {.lex_state = 16}, [2038] = {.lex_state = 16}, - [2039] = {.lex_state = 27}, - [2040] = {.lex_state = 17}, - [2041] = {.lex_state = 14}, - [2042] = {.lex_state = 23}, - [2043] = {.lex_state = 14}, + [2039] = {.lex_state = 16}, + [2040] = {.lex_state = 16}, + [2041] = {.lex_state = 16}, + [2042] = {.lex_state = 16}, + [2043] = {.lex_state = 16}, [2044] = {.lex_state = 16}, - [2045] = {.lex_state = 17}, - [2046] = {.lex_state = 14}, - [2047] = {.lex_state = 27}, - [2048] = {.lex_state = 14}, - [2049] = {.lex_state = 23}, - [2050] = {.lex_state = 21}, - [2051] = {.lex_state = 14}, + [2045] = {.lex_state = 16}, + [2046] = {.lex_state = 16}, + [2047] = {.lex_state = 17}, + [2048] = {.lex_state = 27}, + [2049] = {.lex_state = 16}, + [2050] = {.lex_state = 16}, + [2051] = {.lex_state = 27}, [2052] = {.lex_state = 14}, - [2053] = {.lex_state = 27}, + [2053] = {.lex_state = 14}, [2054] = {.lex_state = 14}, [2055] = {.lex_state = 14}, - [2056] = {.lex_state = 27}, + [2056] = {.lex_state = 14}, [2057] = {.lex_state = 14}, - [2058] = {.lex_state = 16}, - [2059] = {.lex_state = 27}, + [2058] = {.lex_state = 14}, + [2059] = {.lex_state = 14}, [2060] = {.lex_state = 14}, [2061] = {.lex_state = 14}, [2062] = {.lex_state = 14}, [2063] = {.lex_state = 14}, - [2064] = {.lex_state = 21}, - [2065] = {.lex_state = 16}, - [2066] = {.lex_state = 17}, - [2067] = {.lex_state = 17}, - [2068] = {.lex_state = 21}, - [2069] = {.lex_state = 14}, - [2070] = {.lex_state = 16}, - [2071] = {.lex_state = 21}, - [2072] = {.lex_state = 16}, - [2073] = {.lex_state = 16}, + [2064] = {.lex_state = 14}, + [2065] = {.lex_state = 14}, + [2066] = {.lex_state = 14}, + [2067] = {.lex_state = 14}, + [2068] = {.lex_state = 16}, + [2069] = {.lex_state = 17}, + [2070] = {.lex_state = 14}, + [2071] = {.lex_state = 27}, + [2072] = {.lex_state = 21}, + [2073] = {.lex_state = 21}, [2074] = {.lex_state = 16}, - [2075] = {.lex_state = 14}, - [2076] = {.lex_state = 27}, - [2077] = {.lex_state = 27}, - [2078] = {.lex_state = 27}, - [2079] = {.lex_state = 27}, + [2075] = {.lex_state = 27}, + [2076] = {.lex_state = 16}, + [2077] = {.lex_state = 16}, + [2078] = {.lex_state = 21}, + [2079] = {.lex_state = 14}, [2080] = {.lex_state = 27}, [2081] = {.lex_state = 27}, - [2082] = {.lex_state = 27}, - [2083] = {.lex_state = 27}, - [2084] = {.lex_state = 27}, - [2085] = {.lex_state = 27}, - [2086] = {.lex_state = 27}, - [2087] = {.lex_state = 23}, - [2088] = {.lex_state = 27}, + [2082] = {.lex_state = 14}, + [2083] = {.lex_state = 14}, + [2084] = {.lex_state = 14}, + [2085] = {.lex_state = 14}, + [2086] = {.lex_state = 14}, + [2087] = {.lex_state = 16}, + [2088] = {.lex_state = 14}, [2089] = {.lex_state = 14}, [2090] = {.lex_state = 14}, - [2091] = {.lex_state = 27}, - [2092] = {.lex_state = 27}, - [2093] = {.lex_state = 27}, - [2094] = {.lex_state = 27}, - [2095] = {.lex_state = 27}, - [2096] = {.lex_state = 27}, - [2097] = {.lex_state = 27}, - [2098] = {.lex_state = 27}, - [2099] = {.lex_state = 27}, - [2100] = {.lex_state = 27}, - [2101] = {.lex_state = 27}, - [2102] = {.lex_state = 27}, - [2103] = {.lex_state = 27}, - [2104] = {.lex_state = 27}, - [2105] = {.lex_state = 23}, + [2091] = {.lex_state = 14}, + [2092] = {.lex_state = 14}, + [2093] = {.lex_state = 14}, + [2094] = {.lex_state = 16}, + [2095] = {.lex_state = 21}, + [2096] = {.lex_state = 16}, + [2097] = {.lex_state = 23}, + [2098] = {.lex_state = 14}, + [2099] = {.lex_state = 14}, + [2100] = {.lex_state = 16}, + [2101] = {.lex_state = 14}, + [2102] = {.lex_state = 23}, + [2103] = {.lex_state = 16}, + [2104] = {.lex_state = 16}, + [2105] = {.lex_state = 14}, [2106] = {.lex_state = 27}, - [2107] = {.lex_state = 27}, - [2108] = {.lex_state = 14}, - [2109] = {.lex_state = 14}, - [2110] = {.lex_state = 27}, - [2111] = {.lex_state = 23}, - [2112] = {.lex_state = 27}, - [2113] = {.lex_state = 10}, - [2114] = {.lex_state = 27}, + [2107] = {.lex_state = 17}, + [2108] = {.lex_state = 17}, + [2109] = {.lex_state = 17}, + [2110] = {.lex_state = 23}, + [2111] = {.lex_state = 27}, + [2112] = {.lex_state = 10}, + [2113] = {.lex_state = 23}, + [2114] = {.lex_state = 23}, [2115] = {.lex_state = 27}, - [2116] = {.lex_state = 14}, - [2117] = {.lex_state = 17}, - [2118] = {.lex_state = 16}, - [2119] = {.lex_state = 16}, - [2120] = {.lex_state = 16}, - [2121] = {.lex_state = 27}, + [2116] = {.lex_state = 27}, + [2117] = {.lex_state = 27}, + [2118] = {.lex_state = 14}, + [2119] = {.lex_state = 14}, + [2120] = {.lex_state = 14}, + [2121] = {.lex_state = 16}, [2122] = {.lex_state = 27}, - [2123] = {.lex_state = 23}, - [2124] = {.lex_state = 16}, - [2125] = {.lex_state = 27}, + [2123] = {.lex_state = 27}, + [2124] = {.lex_state = 27}, + [2125] = {.lex_state = 14}, [2126] = {.lex_state = 27}, [2127] = {.lex_state = 27}, - [2128] = {.lex_state = 17}, - [2129] = {.lex_state = 23}, - [2130] = {.lex_state = 17}, + [2128] = {.lex_state = 27}, + [2129] = {.lex_state = 27}, + [2130] = {.lex_state = 27}, [2131] = {.lex_state = 27}, - [2132] = {.lex_state = 14}, - [2133] = {.lex_state = 14}, - [2134] = {.lex_state = 17}, - [2135] = {.lex_state = 10}, - [2136] = {.lex_state = 10}, - [2137] = {.lex_state = 6}, - [2138] = {.lex_state = 17}, - [2139] = {.lex_state = 14}, + [2132] = {.lex_state = 27}, + [2133] = {.lex_state = 27}, + [2134] = {.lex_state = 27}, + [2135] = {.lex_state = 27}, + [2136] = {.lex_state = 27}, + [2137] = {.lex_state = 27}, + [2138] = {.lex_state = 16}, + [2139] = {.lex_state = 16}, [2140] = {.lex_state = 27}, - [2141] = {.lex_state = 14}, - [2142] = {.lex_state = 14}, - [2143] = {.lex_state = 14}, - [2144] = {.lex_state = 14}, - [2145] = {.lex_state = 14}, + [2141] = {.lex_state = 27}, + [2142] = {.lex_state = 27}, + [2143] = {.lex_state = 27}, + [2144] = {.lex_state = 27}, + [2145] = {.lex_state = 27}, [2146] = {.lex_state = 14}, [2147] = {.lex_state = 27}, - [2148] = {.lex_state = 14}, - [2149] = {.lex_state = 17}, - [2150] = {.lex_state = 16}, - [2151] = {.lex_state = 6}, - [2152] = {.lex_state = 10}, - [2153] = {.lex_state = 14}, - [2154] = {.lex_state = 14}, - [2155] = {.lex_state = 70}, - [2156] = {.lex_state = 14}, - [2157] = {.lex_state = 10}, - [2158] = {.lex_state = 14}, - [2159] = {.lex_state = 14}, - [2160] = {.lex_state = 14}, - [2161] = {.lex_state = 14}, - [2162] = {.lex_state = 6}, + [2148] = {.lex_state = 27}, + [2149] = {.lex_state = 27}, + [2150] = {.lex_state = 27}, + [2151] = {.lex_state = 27}, + [2152] = {.lex_state = 27}, + [2153] = {.lex_state = 23}, + [2154] = {.lex_state = 27}, + [2155] = {.lex_state = 27}, + [2156] = {.lex_state = 17}, + [2157] = {.lex_state = 16}, + [2158] = {.lex_state = 27}, + [2159] = {.lex_state = 27}, + [2160] = {.lex_state = 27}, + [2161] = {.lex_state = 27}, + [2162] = {.lex_state = 27}, [2163] = {.lex_state = 14}, [2164] = {.lex_state = 14}, - [2165] = {.lex_state = 27}, + [2165] = {.lex_state = 17}, [2166] = {.lex_state = 14}, - [2167] = {.lex_state = 14}, - [2168] = {.lex_state = 27}, - [2169] = {.lex_state = 14}, - [2170] = {.lex_state = 27}, - [2171] = {.lex_state = 14}, - [2172] = {.lex_state = 27}, - [2173] = {.lex_state = 14}, - [2174] = {.lex_state = 27}, - [2175] = {.lex_state = 14}, - [2176] = {.lex_state = 23}, - [2177] = {.lex_state = 14}, - [2178] = {.lex_state = 14}, - [2179] = {.lex_state = 14}, + [2167] = {.lex_state = 16}, + [2168] = {.lex_state = 14}, + [2169] = {.lex_state = 27}, + [2170] = {.lex_state = 10}, + [2171] = {.lex_state = 17}, + [2172] = {.lex_state = 14}, + [2173] = {.lex_state = 10}, + [2174] = {.lex_state = 14}, + [2175] = {.lex_state = 6}, + [2176] = {.lex_state = 27}, + [2177] = {.lex_state = 27}, + [2178] = {.lex_state = 27}, + [2179] = {.lex_state = 17}, [2180] = {.lex_state = 14}, - [2181] = {.lex_state = 14}, - [2182] = {.lex_state = 23}, + [2181] = {.lex_state = 23}, + [2182] = {.lex_state = 14}, [2183] = {.lex_state = 14}, [2184] = {.lex_state = 14}, [2185] = {.lex_state = 14}, [2186] = {.lex_state = 14}, - [2187] = {.lex_state = 14}, + [2187] = {.lex_state = 6}, [2188] = {.lex_state = 14}, - [2189] = {.lex_state = 14}, + [2189] = {.lex_state = 27}, [2190] = {.lex_state = 14}, [2191] = {.lex_state = 14}, - [2192] = {.lex_state = 14}, - [2193] = {.lex_state = 14}, - [2194] = {.lex_state = 14}, + [2192] = {.lex_state = 10}, + [2193] = {.lex_state = 70}, + [2194] = {.lex_state = 17}, [2195] = {.lex_state = 14}, [2196] = {.lex_state = 14}, [2197] = {.lex_state = 14}, - [2198] = {.lex_state = 23}, - [2199] = {.lex_state = 23}, - [2200] = {.lex_state = 23}, + [2198] = {.lex_state = 27}, + [2199] = {.lex_state = 14}, + [2200] = {.lex_state = 14}, [2201] = {.lex_state = 14}, - [2202] = {.lex_state = 14}, - [2203] = {.lex_state = 14}, + [2202] = {.lex_state = 6}, + [2203] = {.lex_state = 27}, [2204] = {.lex_state = 14}, [2205] = {.lex_state = 14}, - [2206] = {.lex_state = 14}, + [2206] = {.lex_state = 10}, [2207] = {.lex_state = 14}, [2208] = {.lex_state = 14}, - [2209] = {.lex_state = 14}, + [2209] = {.lex_state = 17}, [2210] = {.lex_state = 14}, - [2211] = {.lex_state = 23}, - [2212] = {.lex_state = 14}, - [2213] = {.lex_state = 21}, + [2211] = {.lex_state = 14}, + [2212] = {.lex_state = 23}, + [2213] = {.lex_state = 14}, [2214] = {.lex_state = 23}, - [2215] = {.lex_state = 14}, - [2216] = {.lex_state = 10}, + [2215] = {.lex_state = 23}, + [2216] = {.lex_state = 23}, [2217] = {.lex_state = 14}, [2218] = {.lex_state = 14}, [2219] = {.lex_state = 14}, [2220] = {.lex_state = 14}, - [2221] = {.lex_state = 23}, - [2222] = {.lex_state = 23}, + [2221] = {.lex_state = 14}, + [2222] = {.lex_state = 14}, [2223] = {.lex_state = 14}, - [2224] = {.lex_state = 14}, + [2224] = {.lex_state = 23}, [2225] = {.lex_state = 14}, [2226] = {.lex_state = 14}, [2227] = {.lex_state = 14}, - [2228] = {.lex_state = 14}, - [2229] = {.lex_state = 23}, - [2230] = {.lex_state = 23}, - [2231] = {.lex_state = 23}, - [2232] = {.lex_state = 10}, - [2233] = {.lex_state = 17}, - [2234] = {.lex_state = 27}, + [2228] = {.lex_state = 23}, + [2229] = {.lex_state = 14}, + [2230] = {.lex_state = 14}, + [2231] = {.lex_state = 14}, + [2232] = {.lex_state = 14}, + [2233] = {.lex_state = 14}, + [2234] = {.lex_state = 14}, [2235] = {.lex_state = 23}, - [2236] = {.lex_state = 27}, - [2237] = {.lex_state = 23}, - [2238] = {.lex_state = 70}, - [2239] = {.lex_state = 14}, + [2236] = {.lex_state = 14}, + [2237] = {.lex_state = 14}, + [2238] = {.lex_state = 23}, + [2239] = {.lex_state = 23}, [2240] = {.lex_state = 14}, - [2241] = {.lex_state = 70}, - [2242] = {.lex_state = 70}, - [2243] = {.lex_state = 70}, - [2244] = {.lex_state = 70}, - [2245] = {.lex_state = 70}, - [2246] = {.lex_state = 70}, - [2247] = {.lex_state = 70}, - [2248] = {.lex_state = 70}, - [2249] = {.lex_state = 23}, - [2250] = {.lex_state = 23}, + [2241] = {.lex_state = 14}, + [2242] = {.lex_state = 14}, + [2243] = {.lex_state = 14}, + [2244] = {.lex_state = 14}, + [2245] = {.lex_state = 21}, + [2246] = {.lex_state = 14}, + [2247] = {.lex_state = 23}, + [2248] = {.lex_state = 14}, + [2249] = {.lex_state = 10}, + [2250] = {.lex_state = 14}, [2251] = {.lex_state = 14}, - [2252] = {.lex_state = 70}, - [2253] = {.lex_state = 70}, - [2254] = {.lex_state = 70}, + [2252] = {.lex_state = 14}, + [2253] = {.lex_state = 14}, + [2254] = {.lex_state = 14}, [2255] = {.lex_state = 14}, - [2256] = {.lex_state = 70}, - [2257] = {.lex_state = 3}, - [2258] = {.lex_state = 70}, - [2259] = {.lex_state = 70}, + [2256] = {.lex_state = 14}, + [2257] = {.lex_state = 14}, + [2258] = {.lex_state = 23}, + [2259] = {.lex_state = 14}, [2260] = {.lex_state = 14}, - [2261] = {.lex_state = 23}, + [2261] = {.lex_state = 14}, [2262] = {.lex_state = 23}, - [2263] = {.lex_state = 70}, - [2264] = {.lex_state = 23}, - [2265] = {.lex_state = 23}, - [2266] = {.lex_state = 14}, - [2267] = {.lex_state = 70}, + [2263] = {.lex_state = 14}, + [2264] = {.lex_state = 14}, + [2265] = {.lex_state = 14}, + [2266] = {.lex_state = 70}, + [2267] = {.lex_state = 14}, [2268] = {.lex_state = 70}, - [2269] = {.lex_state = 70}, - [2270] = {.lex_state = 70}, - [2271] = {.lex_state = 70}, - [2272] = {.lex_state = 14}, + [2269] = {.lex_state = 23}, + [2270] = {.lex_state = 23}, + [2271] = {.lex_state = 14}, + [2272] = {.lex_state = 17}, [2273] = {.lex_state = 70}, [2274] = {.lex_state = 70}, [2275] = {.lex_state = 70}, [2276] = {.lex_state = 70}, [2277] = {.lex_state = 70}, [2278] = {.lex_state = 70}, - [2279] = {.lex_state = 70}, + [2279] = {.lex_state = 14}, [2280] = {.lex_state = 70}, - [2281] = {.lex_state = 3}, - [2282] = {.lex_state = 10}, - [2283] = {.lex_state = 14}, - [2284] = {.lex_state = 3}, - [2285] = {.lex_state = 10}, - [2286] = {.lex_state = 167}, - [2287] = {.lex_state = 14}, - [2288] = {.lex_state = 14}, - [2289] = {.lex_state = 70}, - [2290] = {.lex_state = 14}, - [2291] = {.lex_state = 14}, - [2292] = {.lex_state = 27}, - [2293] = {.lex_state = 18}, - [2294] = {.lex_state = 27}, - [2295] = {.lex_state = 14}, - [2296] = {.lex_state = 14}, + [2281] = {.lex_state = 70}, + [2282] = {.lex_state = 70}, + [2283] = {.lex_state = 70}, + [2284] = {.lex_state = 70}, + [2285] = {.lex_state = 70}, + [2286] = {.lex_state = 70}, + [2287] = {.lex_state = 70}, + [2288] = {.lex_state = 70}, + [2289] = {.lex_state = 3}, + [2290] = {.lex_state = 70}, + [2291] = {.lex_state = 70}, + [2292] = {.lex_state = 70}, + [2293] = {.lex_state = 70}, + [2294] = {.lex_state = 70}, + [2295] = {.lex_state = 70}, + [2296] = {.lex_state = 3}, [2297] = {.lex_state = 14}, - [2298] = {.lex_state = 27}, - [2299] = {.lex_state = 17}, - [2300] = {.lex_state = 27}, - [2301] = {.lex_state = 27}, - [2302] = {.lex_state = 13}, - [2303] = {.lex_state = 27}, + [2298] = {.lex_state = 70}, + [2299] = {.lex_state = 70}, + [2300] = {.lex_state = 70}, + [2301] = {.lex_state = 14}, + [2302] = {.lex_state = 10}, + [2303] = {.lex_state = 10}, [2304] = {.lex_state = 3}, [2305] = {.lex_state = 14}, - [2306] = {.lex_state = 27}, + [2306] = {.lex_state = 70}, [2307] = {.lex_state = 14}, - [2308] = {.lex_state = 14}, - [2309] = {.lex_state = 14}, - [2310] = {.lex_state = 18}, - [2311] = {.lex_state = 13}, - [2312] = {.lex_state = 14}, - [2313] = {.lex_state = 18}, - [2314] = {.lex_state = 14}, - [2315] = {.lex_state = 17}, + [2308] = {.lex_state = 23}, + [2309] = {.lex_state = 70}, + [2310] = {.lex_state = 70}, + [2311] = {.lex_state = 70}, + [2312] = {.lex_state = 70}, + [2313] = {.lex_state = 27}, + [2314] = {.lex_state = 70}, + [2315] = {.lex_state = 70}, [2316] = {.lex_state = 14}, - [2317] = {.lex_state = 14}, - [2318] = {.lex_state = 14}, - [2319] = {.lex_state = 14}, - [2320] = {.lex_state = 14}, - [2321] = {.lex_state = 14}, + [2317] = {.lex_state = 27}, + [2318] = {.lex_state = 23}, + [2319] = {.lex_state = 70}, + [2320] = {.lex_state = 70}, + [2321] = {.lex_state = 70}, [2322] = {.lex_state = 14}, - [2323] = {.lex_state = 14}, - [2324] = {.lex_state = 14}, - [2325] = {.lex_state = 18}, - [2326] = {.lex_state = 27}, - [2327] = {.lex_state = 18}, - [2328] = {.lex_state = 14}, - [2329] = {.lex_state = 14}, - [2330] = {.lex_state = 14}, - [2331] = {.lex_state = 14}, - [2332] = {.lex_state = 14}, - [2333] = {.lex_state = 14}, + [2323] = {.lex_state = 70}, + [2324] = {.lex_state = 23}, + [2325] = {.lex_state = 70}, + [2326] = {.lex_state = 70}, + [2327] = {.lex_state = 70}, + [2328] = {.lex_state = 70}, + [2329] = {.lex_state = 70}, + [2330] = {.lex_state = 70}, + [2331] = {.lex_state = 70}, + [2332] = {.lex_state = 70}, + [2333] = {.lex_state = 70}, [2334] = {.lex_state = 14}, - [2335] = {.lex_state = 14}, - [2336] = {.lex_state = 27}, - [2337] = {.lex_state = 23}, - [2338] = {.lex_state = 14}, - [2339] = {.lex_state = 14}, - [2340] = {.lex_state = 70}, - [2341] = {.lex_state = 14}, - [2342] = {.lex_state = 3}, - [2343] = {.lex_state = 27}, - [2344] = {.lex_state = 27}, + [2335] = {.lex_state = 23}, + [2336] = {.lex_state = 23}, + [2337] = {.lex_state = 10}, + [2338] = {.lex_state = 23}, + [2339] = {.lex_state = 70}, + [2340] = {.lex_state = 3}, + [2341] = {.lex_state = 27}, + [2342] = {.lex_state = 14}, + [2343] = {.lex_state = 14}, + [2344] = {.lex_state = 14}, [2345] = {.lex_state = 27}, - [2346] = {.lex_state = 27}, + [2346] = {.lex_state = 14}, [2347] = {.lex_state = 14}, [2348] = {.lex_state = 14}, [2349] = {.lex_state = 14}, [2350] = {.lex_state = 14}, [2351] = {.lex_state = 14}, - [2352] = {.lex_state = 27}, - [2353] = {.lex_state = 27}, + [2352] = {.lex_state = 14}, + [2353] = {.lex_state = 14}, [2354] = {.lex_state = 14}, [2355] = {.lex_state = 14}, - [2356] = {.lex_state = 27}, - [2357] = {.lex_state = 14}, + [2356] = {.lex_state = 17}, + [2357] = {.lex_state = 70}, [2358] = {.lex_state = 14}, [2359] = {.lex_state = 14}, - [2360] = {.lex_state = 17}, - [2361] = {.lex_state = 17}, - [2362] = {.lex_state = 17}, - [2363] = {.lex_state = 17}, + [2360] = {.lex_state = 3}, + [2361] = {.lex_state = 18}, + [2362] = {.lex_state = 14}, + [2363] = {.lex_state = 14}, [2364] = {.lex_state = 14}, - [2365] = {.lex_state = 70}, + [2365] = {.lex_state = 17}, [2366] = {.lex_state = 14}, - [2367] = {.lex_state = 14}, + [2367] = {.lex_state = 27}, [2368] = {.lex_state = 14}, [2369] = {.lex_state = 14}, - [2370] = {.lex_state = 14}, - [2371] = {.lex_state = 14}, - [2372] = {.lex_state = 3}, - [2373] = {.lex_state = 27}, - [2374] = {.lex_state = 3}, + [2370] = {.lex_state = 18}, + [2371] = {.lex_state = 27}, + [2372] = {.lex_state = 14}, + [2373] = {.lex_state = 14}, + [2374] = {.lex_state = 14}, [2375] = {.lex_state = 14}, - [2376] = {.lex_state = 14}, - [2377] = {.lex_state = 14}, - [2378] = {.lex_state = 14}, - [2379] = {.lex_state = 14}, - [2380] = {.lex_state = 14}, + [2376] = {.lex_state = 27}, + [2377] = {.lex_state = 27}, + [2378] = {.lex_state = 23}, + [2379] = {.lex_state = 27}, + [2380] = {.lex_state = 17}, [2381] = {.lex_state = 14}, - [2382] = {.lex_state = 14}, - [2383] = {.lex_state = 27}, - [2384] = {.lex_state = 14}, + [2382] = {.lex_state = 27}, + [2383] = {.lex_state = 17}, + [2384] = {.lex_state = 17}, [2385] = {.lex_state = 14}, - [2386] = {.lex_state = 14}, - [2387] = {.lex_state = 17}, - [2388] = {.lex_state = 18}, - [2389] = {.lex_state = 10}, + [2386] = {.lex_state = 13}, + [2387] = {.lex_state = 27}, + [2388] = {.lex_state = 14}, + [2389] = {.lex_state = 27}, [2390] = {.lex_state = 27}, [2391] = {.lex_state = 27}, - [2392] = {.lex_state = 3}, + [2392] = {.lex_state = 17}, [2393] = {.lex_state = 27}, - [2394] = {.lex_state = 10}, + [2394] = {.lex_state = 14}, [2395] = {.lex_state = 14}, [2396] = {.lex_state = 27}, - [2397] = {.lex_state = 10}, - [2398] = {.lex_state = 10}, - [2399] = {.lex_state = 10}, + [2397] = {.lex_state = 13}, + [2398] = {.lex_state = 18}, + [2399] = {.lex_state = 14}, [2400] = {.lex_state = 14}, - [2401] = {.lex_state = 27}, - [2402] = {.lex_state = 10}, - [2403] = {.lex_state = 14}, - [2404] = {.lex_state = 10}, - [2405] = {.lex_state = 6}, - [2406] = {.lex_state = 10}, - [2407] = {.lex_state = 27}, - [2408] = {.lex_state = 10}, - [2409] = {.lex_state = 10}, - [2410] = {.lex_state = 10}, - [2411] = {.lex_state = 10}, - [2412] = {.lex_state = 10}, - [2413] = {.lex_state = 10}, - [2414] = {.lex_state = 10}, + [2401] = {.lex_state = 14}, + [2402] = {.lex_state = 14}, + [2403] = {.lex_state = 18}, + [2404] = {.lex_state = 14}, + [2405] = {.lex_state = 3}, + [2406] = {.lex_state = 14}, + [2407] = {.lex_state = 14}, + [2408] = {.lex_state = 18}, + [2409] = {.lex_state = 14}, + [2410] = {.lex_state = 27}, + [2411] = {.lex_state = 14}, + [2412] = {.lex_state = 14}, + [2413] = {.lex_state = 14}, + [2414] = {.lex_state = 14}, [2415] = {.lex_state = 14}, - [2416] = {.lex_state = 27}, - [2417] = {.lex_state = 27}, - [2418] = {.lex_state = 27}, - [2419] = {.lex_state = 10}, - [2420] = {.lex_state = 10}, - [2421] = {.lex_state = 27}, - [2422] = {.lex_state = 6}, - [2423] = {.lex_state = 6}, - [2424] = {.lex_state = 70}, - [2425] = {.lex_state = 27}, - [2426] = {.lex_state = 27}, - [2427] = {.lex_state = 27}, - [2428] = {.lex_state = 10}, - [2429] = {.lex_state = 27}, - [2430] = {.lex_state = 27}, - [2431] = {.lex_state = 10}, - [2432] = {.lex_state = 10}, - [2433] = {.lex_state = 27}, - [2434] = {.lex_state = 27}, + [2416] = {.lex_state = 14}, + [2417] = {.lex_state = 17}, + [2418] = {.lex_state = 14}, + [2419] = {.lex_state = 27}, + [2420] = {.lex_state = 14}, + [2421] = {.lex_state = 14}, + [2422] = {.lex_state = 27}, + [2423] = {.lex_state = 14}, + [2424] = {.lex_state = 14}, + [2425] = {.lex_state = 70}, + [2426] = {.lex_state = 14}, + [2427] = {.lex_state = 14}, + [2428] = {.lex_state = 27}, + [2429] = {.lex_state = 14}, + [2430] = {.lex_state = 14}, + [2431] = {.lex_state = 3}, + [2432] = {.lex_state = 14}, + [2433] = {.lex_state = 14}, + [2434] = {.lex_state = 18}, [2435] = {.lex_state = 14}, - [2436] = {.lex_state = 27}, - [2437] = {.lex_state = 10}, - [2438] = {.lex_state = 10}, - [2439] = {.lex_state = 14}, - [2440] = {.lex_state = 27}, + [2436] = {.lex_state = 14}, + [2437] = {.lex_state = 14}, + [2438] = {.lex_state = 14}, + [2439] = {.lex_state = 10}, + [2440] = {.lex_state = 6}, [2441] = {.lex_state = 27}, [2442] = {.lex_state = 14}, - [2443] = {.lex_state = 14}, - [2444] = {.lex_state = 14}, - [2445] = {.lex_state = 10}, - [2446] = {.lex_state = 14}, - [2447] = {.lex_state = 27}, - [2448] = {.lex_state = 27}, - [2449] = {.lex_state = 27}, + [2443] = {.lex_state = 10}, + [2444] = {.lex_state = 27}, + [2445] = {.lex_state = 14}, + [2446] = {.lex_state = 27}, + [2447] = {.lex_state = 14}, + [2448] = {.lex_state = 10}, + [2449] = {.lex_state = 10}, [2450] = {.lex_state = 10}, - [2451] = {.lex_state = 14}, - [2452] = {.lex_state = 27}, - [2453] = {.lex_state = 27}, - [2454] = {.lex_state = 27}, + [2451] = {.lex_state = 10}, + [2452] = {.lex_state = 14}, + [2453] = {.lex_state = 14}, + [2454] = {.lex_state = 167}, [2455] = {.lex_state = 27}, - [2456] = {.lex_state = 27}, - [2457] = {.lex_state = 10}, - [2458] = {.lex_state = 14}, + [2456] = {.lex_state = 10}, + [2457] = {.lex_state = 14}, + [2458] = {.lex_state = 10}, [2459] = {.lex_state = 10}, - [2460] = {.lex_state = 27}, + [2460] = {.lex_state = 70}, [2461] = {.lex_state = 14}, - [2462] = {.lex_state = 14}, - [2463] = {.lex_state = 27}, + [2462] = {.lex_state = 10}, + [2463] = {.lex_state = 10}, [2464] = {.lex_state = 27}, [2465] = {.lex_state = 10}, [2466] = {.lex_state = 27}, - [2467] = {.lex_state = 10}, - [2468] = {.lex_state = 27}, - [2469] = {.lex_state = 3}, - [2470] = {.lex_state = 14}, - [2471] = {.lex_state = 27}, + [2467] = {.lex_state = 27}, + [2468] = {.lex_state = 3}, + [2469] = {.lex_state = 27}, + [2470] = {.lex_state = 10}, + [2471] = {.lex_state = 14}, [2472] = {.lex_state = 14}, - [2473] = {.lex_state = 27}, - [2474] = {.lex_state = 10}, - [2475] = {.lex_state = 70}, - [2476] = {.lex_state = 14}, - [2477] = {.lex_state = 14}, + [2473] = {.lex_state = 10}, + [2474] = {.lex_state = 27}, + [2475] = {.lex_state = 14}, + [2476] = {.lex_state = 10}, + [2477] = {.lex_state = 27}, [2478] = {.lex_state = 14}, [2479] = {.lex_state = 14}, [2480] = {.lex_state = 27}, - [2481] = {.lex_state = 14}, - [2482] = {.lex_state = 27}, - [2483] = {.lex_state = 10, .external_lex_state = 3}, - [2484] = {.lex_state = 10}, + [2481] = {.lex_state = 27}, + [2482] = {.lex_state = 10}, + [2483] = {.lex_state = 27}, + [2484] = {.lex_state = 27}, [2485] = {.lex_state = 27}, [2486] = {.lex_state = 10}, [2487] = {.lex_state = 27}, - [2488] = {.lex_state = 14}, - [2489] = {.lex_state = 14}, - [2490] = {.lex_state = 10}, - [2491] = {.lex_state = 6}, - [2492] = {.lex_state = 10}, - [2493] = {.lex_state = 14}, - [2494] = {.lex_state = 3}, + [2488] = {.lex_state = 10}, + [2489] = {.lex_state = 70}, + [2490] = {.lex_state = 27}, + [2491] = {.lex_state = 70}, + [2492] = {.lex_state = 14}, + [2493] = {.lex_state = 27}, + [2494] = {.lex_state = 10}, [2495] = {.lex_state = 10}, - [2496] = {.lex_state = 10, .external_lex_state = 4}, - [2497] = {.lex_state = 70}, - [2498] = {.lex_state = 6}, + [2496] = {.lex_state = 14}, + [2497] = {.lex_state = 27}, + [2498] = {.lex_state = 10}, [2499] = {.lex_state = 6}, - [2500] = {.lex_state = 70}, + [2500] = {.lex_state = 14}, [2501] = {.lex_state = 70}, - [2502] = {.lex_state = 6}, - [2503] = {.lex_state = 6}, - [2504] = {.lex_state = 10}, - [2505] = {.lex_state = 6}, - [2506] = {.lex_state = 70}, - [2507] = {.lex_state = 27}, - [2508] = {.lex_state = 27}, - [2509] = {.lex_state = 6}, - [2510] = {.lex_state = 10, .external_lex_state = 4}, + [2502] = {.lex_state = 14}, + [2503] = {.lex_state = 14}, + [2504] = {.lex_state = 6}, + [2505] = {.lex_state = 10}, + [2506] = {.lex_state = 27}, + [2507] = {.lex_state = 10}, + [2508] = {.lex_state = 14}, + [2509] = {.lex_state = 10}, + [2510] = {.lex_state = 10}, [2511] = {.lex_state = 14}, - [2512] = {.lex_state = 70}, - [2513] = {.lex_state = 14}, - [2514] = {.lex_state = 14}, - [2515] = {.lex_state = 14}, + [2512] = {.lex_state = 10}, + [2513] = {.lex_state = 27}, + [2514] = {.lex_state = 27}, + [2515] = {.lex_state = 27}, [2516] = {.lex_state = 27}, - [2517] = {.lex_state = 70}, - [2518] = {.lex_state = 10}, - [2519] = {.lex_state = 10}, - [2520] = {.lex_state = 10, .external_lex_state = 4}, - [2521] = {.lex_state = 70}, - [2522] = {.lex_state = 6}, - [2523] = {.lex_state = 14}, - [2524] = {.lex_state = 70}, - [2525] = {.lex_state = 70}, - [2526] = {.lex_state = 70}, - [2527] = {.lex_state = 6}, - [2528] = {.lex_state = 6}, - [2529] = {.lex_state = 6}, - [2530] = {.lex_state = 14}, - [2531] = {.lex_state = 70}, - [2532] = {.lex_state = 27}, - [2533] = {.lex_state = 70}, - [2534] = {.lex_state = 70}, - [2535] = {.lex_state = 6}, + [2517] = {.lex_state = 27}, + [2518] = {.lex_state = 27}, + [2519] = {.lex_state = 27}, + [2520] = {.lex_state = 3}, + [2521] = {.lex_state = 10}, + [2522] = {.lex_state = 27}, + [2523] = {.lex_state = 27}, + [2524] = {.lex_state = 14}, + [2525] = {.lex_state = 10}, + [2526] = {.lex_state = 27}, + [2527] = {.lex_state = 10}, + [2528] = {.lex_state = 70}, + [2529] = {.lex_state = 27}, + [2530] = {.lex_state = 27}, + [2531] = {.lex_state = 10}, + [2532] = {.lex_state = 14}, + [2533] = {.lex_state = 14}, + [2534] = {.lex_state = 10}, + [2535] = {.lex_state = 10}, [2536] = {.lex_state = 14}, - [2537] = {.lex_state = 6}, + [2537] = {.lex_state = 27}, [2538] = {.lex_state = 14}, - [2539] = {.lex_state = 6}, - [2540] = {.lex_state = 14}, - [2541] = {.lex_state = 14}, - [2542] = {.lex_state = 14}, - [2543] = {.lex_state = 14}, - [2544] = {.lex_state = 14}, - [2545] = {.lex_state = 14}, - [2546] = {.lex_state = 10}, - [2547] = {.lex_state = 10}, - [2548] = {.lex_state = 10}, - [2549] = {.lex_state = 27}, - [2550] = {.lex_state = 29}, - [2551] = {.lex_state = 14}, - [2552] = {.lex_state = 70}, - [2553] = {.lex_state = 70}, - [2554] = {.lex_state = 70}, + [2539] = {.lex_state = 27}, + [2540] = {.lex_state = 6}, + [2541] = {.lex_state = 10}, + [2542] = {.lex_state = 27}, + [2543] = {.lex_state = 27}, + [2544] = {.lex_state = 27}, + [2545] = {.lex_state = 27}, + [2546] = {.lex_state = 10, .external_lex_state = 3}, + [2547] = {.lex_state = 27}, + [2548] = {.lex_state = 14}, + [2549] = {.lex_state = 6}, + [2550] = {.lex_state = 70}, + [2551] = {.lex_state = 6}, + [2552] = {.lex_state = 10}, + [2553] = {.lex_state = 10}, + [2554] = {.lex_state = 14}, [2555] = {.lex_state = 70}, - [2556] = {.lex_state = 6}, + [2556] = {.lex_state = 14}, [2557] = {.lex_state = 14}, [2558] = {.lex_state = 14}, - [2559] = {.lex_state = 14}, - [2560] = {.lex_state = 14}, - [2561] = {.lex_state = 14}, - [2562] = {.lex_state = 14}, - [2563] = {.lex_state = 10, .external_lex_state = 4}, - [2564] = {.lex_state = 27}, - [2565] = {.lex_state = 27}, + [2559] = {.lex_state = 6}, + [2560] = {.lex_state = 10}, + [2561] = {.lex_state = 10}, + [2562] = {.lex_state = 10}, + [2563] = {.lex_state = 14}, + [2564] = {.lex_state = 10, .external_lex_state = 4}, + [2565] = {.lex_state = 10}, [2566] = {.lex_state = 14}, [2567] = {.lex_state = 10}, - [2568] = {.lex_state = 70}, - [2569] = {.lex_state = 27}, + [2568] = {.lex_state = 27}, + [2569] = {.lex_state = 14}, [2570] = {.lex_state = 14}, - [2571] = {.lex_state = 14}, - [2572] = {.lex_state = 6}, - [2573] = {.lex_state = 10}, - [2574] = {.lex_state = 14}, - [2575] = {.lex_state = 27}, + [2571] = {.lex_state = 16}, + [2572] = {.lex_state = 10}, + [2573] = {.lex_state = 6}, + [2574] = {.lex_state = 6}, + [2575] = {.lex_state = 6}, [2576] = {.lex_state = 70}, - [2577] = {.lex_state = 14}, - [2578] = {.lex_state = 6}, - [2579] = {.lex_state = 70}, - [2580] = {.lex_state = 70}, - [2581] = {.lex_state = 27}, - [2582] = {.lex_state = 10}, - [2583] = {.lex_state = 10}, - [2584] = {.lex_state = 10, .external_lex_state = 4}, - [2585] = {.lex_state = 10}, - [2586] = {.lex_state = 10}, - [2587] = {.lex_state = 29}, + [2577] = {.lex_state = 10}, + [2578] = {.lex_state = 10}, + [2579] = {.lex_state = 10, .external_lex_state = 4}, + [2580] = {.lex_state = 17}, + [2581] = {.lex_state = 17}, + [2582] = {.lex_state = 17}, + [2583] = {.lex_state = 17}, + [2584] = {.lex_state = 14}, + [2585] = {.lex_state = 70}, + [2586] = {.lex_state = 6}, + [2587] = {.lex_state = 14}, [2588] = {.lex_state = 6}, - [2589] = {.lex_state = 70}, - [2590] = {.lex_state = 16}, - [2591] = {.lex_state = 10}, - [2592] = {.lex_state = 70}, - [2593] = {.lex_state = 10}, - [2594] = {.lex_state = 10}, - [2595] = {.lex_state = 10, .external_lex_state = 4}, - [2596] = {.lex_state = 70}, + [2589] = {.lex_state = 17}, + [2590] = {.lex_state = 17}, + [2591] = {.lex_state = 17}, + [2592] = {.lex_state = 17}, + [2593] = {.lex_state = 6}, + [2594] = {.lex_state = 6}, + [2595] = {.lex_state = 14}, + [2596] = {.lex_state = 10}, [2597] = {.lex_state = 6}, - [2598] = {.lex_state = 6}, + [2598] = {.lex_state = 70}, [2599] = {.lex_state = 6}, [2600] = {.lex_state = 6}, - [2601] = {.lex_state = 70}, - [2602] = {.lex_state = 10}, - [2603] = {.lex_state = 6}, - [2604] = {.lex_state = 10}, - [2605] = {.lex_state = 27}, - [2606] = {.lex_state = 10}, + [2601] = {.lex_state = 14}, + [2602] = {.lex_state = 14}, + [2603] = {.lex_state = 10}, + [2604] = {.lex_state = 70}, + [2605] = {.lex_state = 6}, + [2606] = {.lex_state = 70}, [2607] = {.lex_state = 10}, - [2608] = {.lex_state = 10}, - [2609] = {.lex_state = 10}, + [2608] = {.lex_state = 70}, + [2609] = {.lex_state = 70}, [2610] = {.lex_state = 70}, - [2611] = {.lex_state = 14}, - [2612] = {.lex_state = 10}, - [2613] = {.lex_state = 16}, + [2611] = {.lex_state = 10}, + [2612] = {.lex_state = 70}, + [2613] = {.lex_state = 29}, [2614] = {.lex_state = 70}, - [2615] = {.lex_state = 10}, - [2616] = {.lex_state = 10}, - [2617] = {.lex_state = 10, .external_lex_state = 4}, - [2618] = {.lex_state = 10}, - [2619] = {.lex_state = 10}, - [2620] = {.lex_state = 70}, - [2621] = {.lex_state = 10}, + [2615] = {.lex_state = 70}, + [2616] = {.lex_state = 6}, + [2617] = {.lex_state = 10}, + [2618] = {.lex_state = 70}, + [2619] = {.lex_state = 70}, + [2620] = {.lex_state = 27}, + [2621] = {.lex_state = 70}, [2622] = {.lex_state = 70}, - [2623] = {.lex_state = 10, .external_lex_state = 4}, - [2624] = {.lex_state = 70}, - [2625] = {.lex_state = 6}, - [2626] = {.lex_state = 6}, - [2627] = {.lex_state = 6}, + [2623] = {.lex_state = 70}, + [2624] = {.lex_state = 10}, + [2625] = {.lex_state = 10, .external_lex_state = 4}, + [2626] = {.lex_state = 14}, + [2627] = {.lex_state = 14}, [2628] = {.lex_state = 10}, [2629] = {.lex_state = 10}, - [2630] = {.lex_state = 10, .external_lex_state = 4}, - [2631] = {.lex_state = 10}, - [2632] = {.lex_state = 27}, - [2633] = {.lex_state = 70}, - [2634] = {.lex_state = 10, .external_lex_state = 4}, - [2635] = {.lex_state = 70}, - [2636] = {.lex_state = 6}, - [2637] = {.lex_state = 6}, + [2630] = {.lex_state = 10}, + [2631] = {.lex_state = 6}, + [2632] = {.lex_state = 10, .external_lex_state = 4}, + [2633] = {.lex_state = 10}, + [2634] = {.lex_state = 27}, + [2635] = {.lex_state = 27}, + [2636] = {.lex_state = 70}, + [2637] = {.lex_state = 14}, [2638] = {.lex_state = 10}, - [2639] = {.lex_state = 70}, - [2640] = {.lex_state = 70}, - [2641] = {.lex_state = 10, .external_lex_state = 4}, - [2642] = {.lex_state = 10, .external_lex_state = 4}, - [2643] = {.lex_state = 6}, - [2644] = {.lex_state = 6}, - [2645] = {.lex_state = 10}, - [2646] = {.lex_state = 14}, + [2639] = {.lex_state = 14}, + [2640] = {.lex_state = 27}, + [2641] = {.lex_state = 70}, + [2642] = {.lex_state = 10}, + [2643] = {.lex_state = 14}, + [2644] = {.lex_state = 27}, + [2645] = {.lex_state = 29}, + [2646] = {.lex_state = 29}, [2647] = {.lex_state = 14}, - [2648] = {.lex_state = 6}, - [2649] = {.lex_state = 6}, - [2650] = {.lex_state = 6}, - [2651] = {.lex_state = 6}, - [2652] = {.lex_state = 6}, - [2653] = {.lex_state = 6}, - [2654] = {.lex_state = 6}, - [2655] = {.lex_state = 6}, - [2656] = {.lex_state = 6}, + [2648] = {.lex_state = 3}, + [2649] = {.lex_state = 14}, + [2650] = {.lex_state = 10}, + [2651] = {.lex_state = 10}, + [2652] = {.lex_state = 14}, + [2653] = {.lex_state = 10, .external_lex_state = 4}, + [2654] = {.lex_state = 10}, + [2655] = {.lex_state = 70}, + [2656] = {.lex_state = 70}, [2657] = {.lex_state = 6}, [2658] = {.lex_state = 6}, - [2659] = {.lex_state = 6}, - [2660] = {.lex_state = 14}, - [2661] = {.lex_state = 29}, + [2659] = {.lex_state = 14}, + [2660] = {.lex_state = 3}, + [2661] = {.lex_state = 10}, [2662] = {.lex_state = 10}, - [2663] = {.lex_state = 3}, - [2664] = {.lex_state = 70}, - [2665] = {.lex_state = 70}, - [2666] = {.lex_state = 17}, - [2667] = {.lex_state = 14}, - [2668] = {.lex_state = 14}, - [2669] = {.lex_state = 14}, - [2670] = {.lex_state = 17}, - [2671] = {.lex_state = 70}, - [2672] = {.lex_state = 70}, + [2663] = {.lex_state = 10}, + [2664] = {.lex_state = 10, .external_lex_state = 4}, + [2665] = {.lex_state = 27}, + [2666] = {.lex_state = 10}, + [2667] = {.lex_state = 3}, + [2668] = {.lex_state = 16}, + [2669] = {.lex_state = 10}, + [2670] = {.lex_state = 10}, + [2671] = {.lex_state = 10, .external_lex_state = 4}, + [2672] = {.lex_state = 10}, [2673] = {.lex_state = 10}, - [2674] = {.lex_state = 70}, - [2675] = {.lex_state = 10}, - [2676] = {.lex_state = 10}, - [2677] = {.lex_state = 6}, - [2678] = {.lex_state = 70}, - [2679] = {.lex_state = 70}, - [2680] = {.lex_state = 70}, + [2674] = {.lex_state = 10}, + [2675] = {.lex_state = 14}, + [2676] = {.lex_state = 70}, + [2677] = {.lex_state = 70}, + [2678] = {.lex_state = 10}, + [2679] = {.lex_state = 10}, + [2680] = {.lex_state = 10}, [2681] = {.lex_state = 27}, - [2682] = {.lex_state = 17}, - [2683] = {.lex_state = 14}, - [2684] = {.lex_state = 10}, - [2685] = {.lex_state = 14}, + [2682] = {.lex_state = 10}, + [2683] = {.lex_state = 10}, + [2684] = {.lex_state = 3}, + [2685] = {.lex_state = 27}, [2686] = {.lex_state = 10}, - [2687] = {.lex_state = 10}, - [2688] = {.lex_state = 10, .external_lex_state = 4}, + [2687] = {.lex_state = 70}, + [2688] = {.lex_state = 70}, [2689] = {.lex_state = 70}, - [2690] = {.lex_state = 10}, - [2691] = {.lex_state = 29}, - [2692] = {.lex_state = 70}, - [2693] = {.lex_state = 70}, + [2690] = {.lex_state = 10, .external_lex_state = 4}, + [2691] = {.lex_state = 10}, + [2692] = {.lex_state = 6}, + [2693] = {.lex_state = 16}, [2694] = {.lex_state = 10}, - [2695] = {.lex_state = 10}, - [2696] = {.lex_state = 17}, + [2695] = {.lex_state = 14}, + [2696] = {.lex_state = 10}, [2697] = {.lex_state = 10}, - [2698] = {.lex_state = 70}, - [2699] = {.lex_state = 10}, - [2700] = {.lex_state = 10}, + [2698] = {.lex_state = 6}, + [2699] = {.lex_state = 70}, + [2700] = {.lex_state = 70}, [2701] = {.lex_state = 10}, [2702] = {.lex_state = 10}, [2703] = {.lex_state = 10}, - [2704] = {.lex_state = 10}, - [2705] = {.lex_state = 70}, - [2706] = {.lex_state = 10}, - [2707] = {.lex_state = 3}, - [2708] = {.lex_state = 3}, + [2704] = {.lex_state = 27}, + [2705] = {.lex_state = 6}, + [2706] = {.lex_state = 14}, + [2707] = {.lex_state = 70}, + [2708] = {.lex_state = 6}, [2709] = {.lex_state = 14}, - [2710] = {.lex_state = 16}, - [2711] = {.lex_state = 14}, + [2710] = {.lex_state = 10}, + [2711] = {.lex_state = 10}, [2712] = {.lex_state = 10}, - [2713] = {.lex_state = 3}, - [2714] = {.lex_state = 14}, + [2713] = {.lex_state = 70}, + [2714] = {.lex_state = 70}, [2715] = {.lex_state = 10}, - [2716] = {.lex_state = 17}, - [2717] = {.lex_state = 70}, - [2718] = {.lex_state = 17}, - [2719] = {.lex_state = 14}, + [2716] = {.lex_state = 70}, + [2717] = {.lex_state = 10, .external_lex_state = 4}, + [2718] = {.lex_state = 70}, + [2719] = {.lex_state = 70}, [2720] = {.lex_state = 6}, - [2721] = {.lex_state = 10}, + [2721] = {.lex_state = 70}, [2722] = {.lex_state = 10}, - [2723] = {.lex_state = 17}, - [2724] = {.lex_state = 6}, - [2725] = {.lex_state = 6}, - [2726] = {.lex_state = 17}, - [2727] = {.lex_state = 70}, - [2728] = {.lex_state = 6}, + [2723] = {.lex_state = 10, .external_lex_state = 4}, + [2724] = {.lex_state = 10, .external_lex_state = 4}, + [2725] = {.lex_state = 10, .external_lex_state = 4}, + [2726] = {.lex_state = 6}, + [2727] = {.lex_state = 6}, + [2728] = {.lex_state = 70}, [2729] = {.lex_state = 6}, - [2730] = {.lex_state = 10}, - [2731] = {.lex_state = 70}, - [2732] = {.lex_state = 70}, - [2733] = {.lex_state = 70}, - [2734] = {.lex_state = 70}, - [2735] = {.lex_state = 70}, - [2736] = {.lex_state = 70}, - [2737] = {.lex_state = 70}, - [2738] = {.lex_state = 70}, - [2739] = {.lex_state = 70}, - [2740] = {.lex_state = 70}, - [2741] = {.lex_state = 70}, - [2742] = {.lex_state = 70}, - [2743] = {.lex_state = 70}, + [2730] = {.lex_state = 6}, + [2731] = {.lex_state = 10}, + [2732] = {.lex_state = 10, .external_lex_state = 4}, + [2733] = {.lex_state = 14}, + [2734] = {.lex_state = 6}, + [2735] = {.lex_state = 14}, + [2736] = {.lex_state = 14}, + [2737] = {.lex_state = 6}, + [2738] = {.lex_state = 6}, + [2739] = {.lex_state = 14}, + [2740] = {.lex_state = 27}, + [2741] = {.lex_state = 14}, + [2742] = {.lex_state = 10}, + [2743] = {.lex_state = 6}, [2744] = {.lex_state = 70}, - [2745] = {.lex_state = 70}, + [2745] = {.lex_state = 6}, [2746] = {.lex_state = 70}, - [2747] = {.lex_state = 70}, - [2748] = {.lex_state = 18}, - [2749] = {.lex_state = 70}, - [2750] = {.lex_state = 70}, - [2751] = {.lex_state = 70}, - [2752] = {.lex_state = 70}, - [2753] = {.lex_state = 6}, + [2747] = {.lex_state = 6}, + [2748] = {.lex_state = 70}, + [2749] = {.lex_state = 10}, + [2750] = {.lex_state = 6}, + [2751] = {.lex_state = 6}, + [2752] = {.lex_state = 6}, + [2753] = {.lex_state = 70}, [2754] = {.lex_state = 70}, - [2755] = {.lex_state = 70}, - [2756] = {.lex_state = 17}, - [2757] = {.lex_state = 14}, - [2758] = {.lex_state = 70}, + [2755] = {.lex_state = 6}, + [2756] = {.lex_state = 27}, + [2757] = {.lex_state = 6}, + [2758] = {.lex_state = 6}, [2759] = {.lex_state = 70}, - [2760] = {.lex_state = 70}, - [2761] = {.lex_state = 17}, - [2762] = {.lex_state = 70}, - [2763] = {.lex_state = 70}, - [2764] = {.lex_state = 70}, - [2765] = {.lex_state = 18}, - [2766] = {.lex_state = 17}, - [2767] = {.lex_state = 70}, - [2768] = {.lex_state = 18}, + [2760] = {.lex_state = 6}, + [2761] = {.lex_state = 6}, + [2762] = {.lex_state = 6}, + [2763] = {.lex_state = 27}, + [2764] = {.lex_state = 6}, + [2765] = {.lex_state = 14}, + [2766] = {.lex_state = 6}, + [2767] = {.lex_state = 29}, + [2768] = {.lex_state = 10}, [2769] = {.lex_state = 70}, [2770] = {.lex_state = 70}, - [2771] = {.lex_state = 70}, - [2772] = {.lex_state = 70}, - [2773] = {.lex_state = 70}, - [2774] = {.lex_state = 70}, - [2775] = {.lex_state = 70}, + [2771] = {.lex_state = 14}, + [2772] = {.lex_state = 14}, + [2773] = {.lex_state = 6}, + [2774] = {.lex_state = 14}, + [2775] = {.lex_state = 6}, [2776] = {.lex_state = 70}, - [2777] = {.lex_state = 70}, - [2778] = {.lex_state = 70}, - [2779] = {.lex_state = 70}, - [2780] = {.lex_state = 70}, + [2777] = {.lex_state = 6}, + [2778] = {.lex_state = 14}, + [2779] = {.lex_state = 14}, + [2780] = {.lex_state = 3}, [2781] = {.lex_state = 70}, [2782] = {.lex_state = 14}, [2783] = {.lex_state = 70}, - [2784] = {.lex_state = 6}, - [2785] = {.lex_state = 17}, - [2786] = {.lex_state = 70}, + [2784] = {.lex_state = 70}, + [2785] = {.lex_state = 70}, + [2786] = {.lex_state = 6}, [2787] = {.lex_state = 70}, [2788] = {.lex_state = 70}, [2789] = {.lex_state = 70}, [2790] = {.lex_state = 70}, [2791] = {.lex_state = 70}, - [2792] = {.lex_state = 70}, - [2793] = {.lex_state = 14}, - [2794] = {.lex_state = 17}, - [2795] = {.lex_state = 70}, - [2796] = {.lex_state = 70}, - [2797] = {.lex_state = 17}, + [2792] = {.lex_state = 14}, + [2793] = {.lex_state = 70}, + [2794] = {.lex_state = 14}, + [2795] = {.lex_state = 6}, + [2796] = {.lex_state = 6}, + [2797] = {.lex_state = 70}, [2798] = {.lex_state = 70}, - [2799] = {.lex_state = 70}, - [2800] = {.lex_state = 17}, - [2801] = {.lex_state = 14}, - [2802] = {.lex_state = 17}, - [2803] = {.lex_state = 17}, + [2799] = {.lex_state = 14}, + [2800] = {.lex_state = 70}, + [2801] = {.lex_state = 6}, + [2802] = {.lex_state = 14}, + [2803] = {.lex_state = 70}, [2804] = {.lex_state = 70}, [2805] = {.lex_state = 70}, [2806] = {.lex_state = 70}, - [2807] = {.lex_state = 70}, + [2807] = {.lex_state = 18}, [2808] = {.lex_state = 70}, [2809] = {.lex_state = 70}, [2810] = {.lex_state = 70}, [2811] = {.lex_state = 70}, [2812] = {.lex_state = 70}, - [2813] = {.lex_state = 14}, + [2813] = {.lex_state = 70}, [2814] = {.lex_state = 70}, [2815] = {.lex_state = 70}, [2816] = {.lex_state = 70}, [2817] = {.lex_state = 70}, [2818] = {.lex_state = 70}, - [2819] = {.lex_state = 14}, + [2819] = {.lex_state = 70}, [2820] = {.lex_state = 70}, [2821] = {.lex_state = 70}, - [2822] = {.lex_state = 70}, - [2823] = {.lex_state = 10}, - [2824] = {.lex_state = 14}, + [2822] = {.lex_state = 14}, + [2823] = {.lex_state = 70}, + [2824] = {.lex_state = 70}, [2825] = {.lex_state = 70}, - [2826] = {.lex_state = 14}, - [2827] = {.lex_state = 18}, + [2826] = {.lex_state = 70}, + [2827] = {.lex_state = 14}, [2828] = {.lex_state = 70}, - [2829] = {.lex_state = 70}, + [2829] = {.lex_state = 6}, [2830] = {.lex_state = 70}, - [2831] = {.lex_state = 70}, + [2831] = {.lex_state = 14}, [2832] = {.lex_state = 70}, - [2833] = {.lex_state = 14}, - [2834] = {.lex_state = 14}, + [2833] = {.lex_state = 70}, + [2834] = {.lex_state = 70}, [2835] = {.lex_state = 70}, - [2836] = {.lex_state = 6}, - [2837] = {.lex_state = 70}, - [2838] = {.lex_state = 70}, + [2836] = {.lex_state = 14}, + [2837] = {.lex_state = 14}, + [2838] = {.lex_state = 10}, [2839] = {.lex_state = 70}, - [2840] = {.lex_state = 70}, - [2841] = {.lex_state = 17}, + [2840] = {.lex_state = 10, .external_lex_state = 4}, + [2841] = {.lex_state = 70}, [2842] = {.lex_state = 70}, [2843] = {.lex_state = 70}, [2844] = {.lex_state = 70}, - [2845] = {.lex_state = 17}, + [2845] = {.lex_state = 70}, [2846] = {.lex_state = 70}, [2847] = {.lex_state = 70}, [2848] = {.lex_state = 70}, [2849] = {.lex_state = 70}, - [2850] = {.lex_state = 14}, - [2851] = {.lex_state = 70}, + [2850] = {.lex_state = 70}, + [2851] = {.lex_state = 18}, [2852] = {.lex_state = 70}, - [2853] = {.lex_state = 70}, + [2853] = {.lex_state = 14}, [2854] = {.lex_state = 70}, [2855] = {.lex_state = 70}, [2856] = {.lex_state = 70}, [2857] = {.lex_state = 70}, - [2858] = {.lex_state = 10, .external_lex_state = 4}, + [2858] = {.lex_state = 70}, [2859] = {.lex_state = 70}, [2860] = {.lex_state = 70}, - [2861] = {.lex_state = 27}, - [2862] = {.lex_state = 14}, + [2861] = {.lex_state = 70}, + [2862] = {.lex_state = 70}, [2863] = {.lex_state = 70}, [2864] = {.lex_state = 70}, - [2865] = {.lex_state = 6}, + [2865] = {.lex_state = 70}, [2866] = {.lex_state = 70}, [2867] = {.lex_state = 70}, - [2868] = {.lex_state = 18}, + [2868] = {.lex_state = 70}, [2869] = {.lex_state = 70}, [2870] = {.lex_state = 70}, - [2871] = {.lex_state = 17}, + [2871] = {.lex_state = 10}, [2872] = {.lex_state = 70}, [2873] = {.lex_state = 70}, [2874] = {.lex_state = 70}, - [2875] = {.lex_state = 14}, - [2876] = {.lex_state = 70}, - [2877] = {.lex_state = 17}, - [2878] = {.lex_state = 17}, + [2875] = {.lex_state = 70}, + [2876] = {.lex_state = 10}, + [2877] = {.lex_state = 70}, + [2878] = {.lex_state = 70}, [2879] = {.lex_state = 70}, [2880] = {.lex_state = 70}, - [2881] = {.lex_state = 6}, - [2882] = {.lex_state = 17}, + [2881] = {.lex_state = 70}, + [2882] = {.lex_state = 70}, [2883] = {.lex_state = 70}, - [2884] = {.lex_state = 70}, + [2884] = {.lex_state = 14}, [2885] = {.lex_state = 70}, [2886] = {.lex_state = 70}, - [2887] = {.lex_state = 10}, + [2887] = {.lex_state = 70}, [2888] = {.lex_state = 70}, [2889] = {.lex_state = 70}, [2890] = {.lex_state = 70}, [2891] = {.lex_state = 70}, [2892] = {.lex_state = 70}, [2893] = {.lex_state = 70}, - [2894] = {.lex_state = 17}, - [2895] = {.lex_state = 17}, - [2896] = {.lex_state = 70}, - [2897] = {.lex_state = 17}, + [2894] = {.lex_state = 70}, + [2895] = {.lex_state = 70}, + [2896] = {.lex_state = 14}, + [2897] = {.lex_state = 10}, [2898] = {.lex_state = 70}, - [2899] = {.lex_state = 17}, + [2899] = {.lex_state = 14}, [2900] = {.lex_state = 70}, [2901] = {.lex_state = 70}, - [2902] = {.lex_state = 70}, - [2903] = {.lex_state = 70}, + [2902] = {.lex_state = 6}, + [2903] = {.lex_state = 6}, [2904] = {.lex_state = 70}, [2905] = {.lex_state = 70}, [2906] = {.lex_state = 70}, [2907] = {.lex_state = 70}, - [2908] = {.lex_state = 6}, - [2909] = {.lex_state = 70}, + [2908] = {.lex_state = 70}, + [2909] = {.lex_state = 14}, [2910] = {.lex_state = 70}, - [2911] = {.lex_state = 70}, - [2912] = {.lex_state = 17}, + [2911] = {.lex_state = 14}, + [2912] = {.lex_state = 70}, [2913] = {.lex_state = 70}, [2914] = {.lex_state = 70}, - [2915] = {.lex_state = 27}, + [2915] = {.lex_state = 70}, [2916] = {.lex_state = 70}, - [2917] = {.lex_state = 70}, + [2917] = {.lex_state = 14}, [2918] = {.lex_state = 70}, - [2919] = {.lex_state = 17}, + [2919] = {.lex_state = 70}, [2920] = {.lex_state = 70}, - [2921] = {.lex_state = 70}, - [2922] = {.lex_state = 70}, - [2923] = {.lex_state = 17}, + [2921] = {.lex_state = 14}, + [2922] = {.lex_state = 14}, + [2923] = {.lex_state = 14}, [2924] = {.lex_state = 70}, [2925] = {.lex_state = 70}, - [2926] = {.lex_state = 17}, + [2926] = {.lex_state = 14}, [2927] = {.lex_state = 70}, [2928] = {.lex_state = 70}, - [2929] = {.lex_state = 10}, - [2930] = {.lex_state = 70}, + [2929] = {.lex_state = 70}, + [2930] = {.lex_state = 6}, [2931] = {.lex_state = 70}, [2932] = {.lex_state = 70}, [2933] = {.lex_state = 14}, [2934] = {.lex_state = 70}, - [2935] = {.lex_state = 14}, + [2935] = {.lex_state = 70}, [2936] = {.lex_state = 70}, [2937] = {.lex_state = 70}, [2938] = {.lex_state = 70}, - [2939] = {.lex_state = 10}, + [2939] = {.lex_state = 70}, [2940] = {.lex_state = 70}, [2941] = {.lex_state = 70}, - [2942] = {.lex_state = 6}, + [2942] = {.lex_state = 70}, [2943] = {.lex_state = 70}, - [2944] = {.lex_state = 70}, + [2944] = {.lex_state = 18}, [2945] = {.lex_state = 70}, - [2946] = {.lex_state = 70}, + [2946] = {.lex_state = 14}, [2947] = {.lex_state = 70}, [2948] = {.lex_state = 70}, - [2949] = {.lex_state = 17}, + [2949] = {.lex_state = 70}, [2950] = {.lex_state = 70}, [2951] = {.lex_state = 70}, [2952] = {.lex_state = 70}, - [2953] = {.lex_state = 17}, + [2953] = {.lex_state = 70}, [2954] = {.lex_state = 70}, - [2955] = {.lex_state = 14}, - [2956] = {.lex_state = 70}, - [2957] = {.lex_state = 14}, - [2958] = {.lex_state = 17}, + [2955] = {.lex_state = 70}, + [2956] = {.lex_state = 17}, + [2957] = {.lex_state = 70}, + [2958] = {.lex_state = 70}, [2959] = {.lex_state = 70}, [2960] = {.lex_state = 70}, [2961] = {.lex_state = 70}, - [2962] = {.lex_state = 17}, + [2962] = {.lex_state = 18}, [2963] = {.lex_state = 70}, - [2964] = {.lex_state = 17}, + [2964] = {.lex_state = 70}, [2965] = {.lex_state = 70}, [2966] = {.lex_state = 70}, [2967] = {.lex_state = 70}, - [2968] = {.lex_state = 14}, + [2968] = {.lex_state = 70}, [2969] = {.lex_state = 70}, - [2970] = {.lex_state = 6}, - [2971] = {.lex_state = 17}, - [2972] = {.lex_state = 14}, - [2973] = {.lex_state = 17}, - [2974] = {.lex_state = 17}, - [2975] = {.lex_state = 70}, - [2976] = {.lex_state = 14}, + [2970] = {.lex_state = 70}, + [2971] = {.lex_state = 70}, + [2972] = {.lex_state = 70}, + [2973] = {.lex_state = 70}, + [2974] = {.lex_state = 70}, + [2975] = {.lex_state = 27}, + [2976] = {.lex_state = 70}, [2977] = {.lex_state = 70}, - [2978] = {.lex_state = 17}, + [2978] = {.lex_state = 70}, [2979] = {.lex_state = 6}, [2980] = {.lex_state = 70}, [2981] = {.lex_state = 70}, [2982] = {.lex_state = 70}, - [2983] = {.lex_state = 17}, + [2983] = {.lex_state = 70}, [2984] = {.lex_state = 70}, - [2985] = {.lex_state = 14}, + [2985] = {.lex_state = 70}, [2986] = {.lex_state = 70}, [2987] = {.lex_state = 70}, [2988] = {.lex_state = 70}, [2989] = {.lex_state = 70}, - [2990] = {.lex_state = 17}, + [2990] = {.lex_state = 70}, [2991] = {.lex_state = 70}, [2992] = {.lex_state = 70}, [2993] = {.lex_state = 70}, - [2994] = {.lex_state = 70}, + [2994] = {.lex_state = 17}, [2995] = {.lex_state = 17}, [2996] = {.lex_state = 70}, [2997] = {.lex_state = 70}, - [2998] = {.lex_state = 17}, + [2998] = {.lex_state = 70}, [2999] = {.lex_state = 70}, - [3000] = {.lex_state = 70}, + [3000] = {.lex_state = 14}, [3001] = {.lex_state = 70}, - [3002] = {.lex_state = 14}, + [3002] = {.lex_state = 17}, [3003] = {.lex_state = 70}, - [3004] = {.lex_state = 70}, - [3005] = {.lex_state = 70}, - [3006] = {.lex_state = 14}, - [3007] = {.lex_state = 70}, + [3004] = {.lex_state = 6}, + [3005] = {.lex_state = 6}, + [3006] = {.lex_state = 70}, + [3007] = {.lex_state = 17}, [3008] = {.lex_state = 14}, - [3009] = {.lex_state = 14}, + [3009] = {.lex_state = 70}, [3010] = {.lex_state = 70}, [3011] = {.lex_state = 70}, - [3012] = {.lex_state = 70}, - [3013] = {.lex_state = 6}, - [3014] = {.lex_state = 70}, - [3015] = {.lex_state = 70}, + [3012] = {.lex_state = 17}, + [3013] = {.lex_state = 17}, + [3014] = {.lex_state = 17}, + [3015] = {.lex_state = 17}, [3016] = {.lex_state = 70}, - [3017] = {.lex_state = 70}, - [3018] = {.lex_state = 70}, - [3019] = {.lex_state = 6}, - [3020] = {.lex_state = 70}, - [3021] = {.lex_state = 6}, - [3022] = {.lex_state = 70}, - [3023] = {.lex_state = 70}, - [3024] = {.lex_state = 70}, - [3025] = {.lex_state = 6}, - [3026] = {.lex_state = 70}, - [3027] = {.lex_state = 70}, - [3028] = {.lex_state = 14}, - [3029] = {.lex_state = 6}, + [3017] = {.lex_state = 17}, + [3018] = {.lex_state = 17}, + [3019] = {.lex_state = 17}, + [3020] = {.lex_state = 17}, + [3021] = {.lex_state = 17}, + [3022] = {.lex_state = 17}, + [3023] = {.lex_state = 17}, + [3024] = {.lex_state = 17}, + [3025] = {.lex_state = 70}, + [3026] = {.lex_state = 17}, + [3027] = {.lex_state = 17}, + [3028] = {.lex_state = 70}, + [3029] = {.lex_state = 17}, [3030] = {.lex_state = 70}, [3031] = {.lex_state = 14}, [3032] = {.lex_state = 17}, - [3033] = {.lex_state = 14}, - [3034] = {.lex_state = 14}, + [3033] = {.lex_state = 17}, + [3034] = {.lex_state = 70}, [3035] = {.lex_state = 70}, - [3036] = {.lex_state = 14}, - [3037] = {.lex_state = 14}, - [3038] = {.lex_state = 70}, - [3039] = {.lex_state = 14}, - [3040] = {.lex_state = 14}, - [3041] = {.lex_state = 10, .external_lex_state = 5}, + [3036] = {.lex_state = 17}, + [3037] = {.lex_state = 17}, + [3038] = {.lex_state = 18}, + [3039] = {.lex_state = 17}, + [3040] = {.lex_state = 70}, + [3041] = {.lex_state = 17}, [3042] = {.lex_state = 14}, - [3043] = {.lex_state = 14}, - [3044] = {.lex_state = 70}, - [3045] = {.lex_state = 14}, + [3043] = {.lex_state = 17}, + [3044] = {.lex_state = 17}, + [3045] = {.lex_state = 70}, [3046] = {.lex_state = 70}, [3047] = {.lex_state = 70}, - [3048] = {.lex_state = 27}, + [3048] = {.lex_state = 70}, [3049] = {.lex_state = 70}, - [3050] = {.lex_state = 14}, - [3051] = {.lex_state = 14}, + [3050] = {.lex_state = 70}, + [3051] = {.lex_state = 70}, [3052] = {.lex_state = 70}, [3053] = {.lex_state = 70}, - [3054] = {.lex_state = 70}, - [3055] = {.lex_state = 70}, + [3054] = {.lex_state = 17}, + [3055] = {.lex_state = 17}, [3056] = {.lex_state = 70}, - [3057] = {.lex_state = 70}, - [3058] = {.lex_state = 14}, - [3059] = {.lex_state = 27}, - [3060] = {.lex_state = 70}, - [3061] = {.lex_state = 27}, - [3062] = {.lex_state = 14}, - [3063] = {.lex_state = 14}, - [3064] = {.lex_state = 14}, + [3057] = {.lex_state = 17}, + [3058] = {.lex_state = 70}, + [3059] = {.lex_state = 6}, + [3060] = {.lex_state = 17}, + [3061] = {.lex_state = 70}, + [3062] = {.lex_state = 6}, + [3063] = {.lex_state = 70}, + [3064] = {.lex_state = 70}, [3065] = {.lex_state = 70}, [3066] = {.lex_state = 14}, - [3067] = {.lex_state = 14}, - [3068] = {.lex_state = 14}, - [3069] = {.lex_state = 27}, + [3067] = {.lex_state = 70}, + [3068] = {.lex_state = 70}, + [3069] = {.lex_state = 70}, [3070] = {.lex_state = 70}, - [3071] = {.lex_state = 70}, - [3072] = {.lex_state = 14}, + [3071] = {.lex_state = 17}, + [3072] = {.lex_state = 70}, [3073] = {.lex_state = 70}, - [3074] = {.lex_state = 70}, - [3075] = {.lex_state = 10}, - [3076] = {.lex_state = 10, .external_lex_state = 5}, - [3077] = {.lex_state = 14}, - [3078] = {.lex_state = 70}, - [3079] = {.lex_state = 14}, + [3074] = {.lex_state = 14}, + [3075] = {.lex_state = 70}, + [3076] = {.lex_state = 17}, + [3077] = {.lex_state = 17}, + [3078] = {.lex_state = 17}, + [3079] = {.lex_state = 70}, [3080] = {.lex_state = 70}, [3081] = {.lex_state = 70}, - [3082] = {.lex_state = 14}, + [3082] = {.lex_state = 17}, [3083] = {.lex_state = 70}, [3084] = {.lex_state = 70}, [3085] = {.lex_state = 70}, - [3086] = {.lex_state = 14}, - [3087] = {.lex_state = 70}, - [3088] = {.lex_state = 70}, + [3086] = {.lex_state = 70}, + [3087] = {.lex_state = 14}, + [3088] = {.lex_state = 27}, [3089] = {.lex_state = 70}, [3090] = {.lex_state = 70}, - [3091] = {.lex_state = 70}, + [3091] = {.lex_state = 6}, [3092] = {.lex_state = 14}, [3093] = {.lex_state = 70}, [3094] = {.lex_state = 70}, [3095] = {.lex_state = 14}, - [3096] = {.lex_state = 14}, + [3096] = {.lex_state = 70}, [3097] = {.lex_state = 70}, [3098] = {.lex_state = 70}, - [3099] = {.lex_state = 70}, - [3100] = {.lex_state = 70}, + [3099] = {.lex_state = 27}, + [3100] = {.lex_state = 27}, [3101] = {.lex_state = 70}, - [3102] = {.lex_state = 14}, + [3102] = {.lex_state = 70}, [3103] = {.lex_state = 70}, [3104] = {.lex_state = 70}, - [3105] = {.lex_state = 70}, + [3105] = {.lex_state = 14}, [3106] = {.lex_state = 70}, [3107] = {.lex_state = 70}, - [3108] = {.lex_state = 70}, + [3108] = {.lex_state = 14}, [3109] = {.lex_state = 14}, [3110] = {.lex_state = 14}, - [3111] = {.lex_state = 14}, - [3112] = {.lex_state = 14}, - [3113] = {.lex_state = 70}, - [3114] = {.lex_state = 70}, - [3115] = {.lex_state = 70}, - [3116] = {.lex_state = 70}, + [3111] = {.lex_state = 27}, + [3112] = {.lex_state = 70}, + [3113] = {.lex_state = 14}, + [3114] = {.lex_state = 14}, + [3115] = {.lex_state = 14}, + [3116] = {.lex_state = 14}, [3117] = {.lex_state = 70}, - [3118] = {.lex_state = 14}, - [3119] = {.lex_state = 70}, + [3118] = {.lex_state = 70}, + [3119] = {.lex_state = 14}, [3120] = {.lex_state = 70}, - [3121] = {.lex_state = 70}, + [3121] = {.lex_state = 14}, [3122] = {.lex_state = 70}, [3123] = {.lex_state = 70}, [3124] = {.lex_state = 14}, [3125] = {.lex_state = 14}, - [3126] = {.lex_state = 14}, + [3126] = {.lex_state = 70}, [3127] = {.lex_state = 70}, [3128] = {.lex_state = 70}, - [3129] = {.lex_state = 70}, + [3129] = {.lex_state = 14}, [3130] = {.lex_state = 14}, - [3131] = {.lex_state = 70, .external_lex_state = 6}, + [3131] = {.lex_state = 70}, [3132] = {.lex_state = 14}, - [3133] = {.lex_state = 14}, + [3133] = {.lex_state = 70}, [3134] = {.lex_state = 14}, [3135] = {.lex_state = 14}, [3136] = {.lex_state = 70}, [3137] = {.lex_state = 70}, - [3138] = {.lex_state = 70}, + [3138] = {.lex_state = 14}, [3139] = {.lex_state = 14}, [3140] = {.lex_state = 14}, - [3141] = {.lex_state = 70}, - [3142] = {.lex_state = 14}, - [3143] = {.lex_state = 14}, + [3141] = {.lex_state = 14}, + [3142] = {.lex_state = 70}, + [3143] = {.lex_state = 70}, [3144] = {.lex_state = 70}, [3145] = {.lex_state = 14}, - [3146] = {.lex_state = 14}, - [3147] = {.lex_state = 14}, + [3146] = {.lex_state = 70}, + [3147] = {.lex_state = 70}, [3148] = {.lex_state = 70}, - [3149] = {.lex_state = 70}, - [3150] = {.lex_state = 70}, + [3149] = {.lex_state = 10}, + [3150] = {.lex_state = 14}, [3151] = {.lex_state = 70}, - [3152] = {.lex_state = 6}, - [3153] = {.lex_state = 70}, - [3154] = {.lex_state = 70}, - [3155] = {.lex_state = 70}, + [3152] = {.lex_state = 14}, + [3153] = {.lex_state = 14}, + [3154] = {.lex_state = 18}, + [3155] = {.lex_state = 14}, [3156] = {.lex_state = 70}, [3157] = {.lex_state = 14}, - [3158] = {.lex_state = 14}, + [3158] = {.lex_state = 70}, [3159] = {.lex_state = 70}, [3160] = {.lex_state = 14}, - [3161] = {.lex_state = 14}, + [3161] = {.lex_state = 70}, [3162] = {.lex_state = 70}, [3163] = {.lex_state = 70}, - [3164] = {.lex_state = 14}, - [3165] = {.lex_state = 14}, - [3166] = {.lex_state = 27}, - [3167] = {.lex_state = 14}, - [3168] = {.lex_state = 14}, + [3164] = {.lex_state = 70}, + [3165] = {.lex_state = 70}, + [3166] = {.lex_state = 10, .external_lex_state = 5}, + [3167] = {.lex_state = 70}, + [3168] = {.lex_state = 70}, [3169] = {.lex_state = 70}, - [3170] = {.lex_state = 14}, + [3170] = {.lex_state = 70}, [3171] = {.lex_state = 70}, - [3172] = {.lex_state = 14}, - [3173] = {.lex_state = 14}, - [3174] = {.lex_state = 14}, - [3175] = {.lex_state = 14}, - [3176] = {.lex_state = 14}, + [3172] = {.lex_state = 70}, + [3173] = {.lex_state = 10, .external_lex_state = 5}, + [3174] = {.lex_state = 70}, + [3175] = {.lex_state = 70}, + [3176] = {.lex_state = 10, .external_lex_state = 5}, [3177] = {.lex_state = 14}, [3178] = {.lex_state = 14}, - [3179] = {.lex_state = 5}, - [3180] = {.lex_state = 14}, - [3181] = {.lex_state = 5}, + [3179] = {.lex_state = 14}, + [3180] = {.lex_state = 70}, + [3181] = {.lex_state = 70}, [3182] = {.lex_state = 14}, - [3183] = {.lex_state = 14}, - [3184] = {.lex_state = 70}, - [3185] = {.lex_state = 14}, + [3183] = {.lex_state = 70}, + [3184] = {.lex_state = 14}, + [3185] = {.lex_state = 70}, [3186] = {.lex_state = 14}, - [3187] = {.lex_state = 14}, - [3188] = {.lex_state = 14}, + [3187] = {.lex_state = 70}, + [3188] = {.lex_state = 70}, [3189] = {.lex_state = 70}, [3190] = {.lex_state = 70}, - [3191] = {.lex_state = 14}, - [3192] = {.lex_state = 70}, + [3191] = {.lex_state = 70}, + [3192] = {.lex_state = 27}, [3193] = {.lex_state = 70}, - [3194] = {.lex_state = 18}, + [3194] = {.lex_state = 70}, [3195] = {.lex_state = 70}, - [3196] = {.lex_state = 70}, + [3196] = {.lex_state = 14}, [3197] = {.lex_state = 70}, - [3198] = {.lex_state = 70}, - [3199] = {.lex_state = 14}, - [3200] = {.lex_state = 14}, - [3201] = {.lex_state = 70}, - [3202] = {.lex_state = 70}, - [3203] = {.lex_state = 70}, + [3198] = {.lex_state = 14}, + [3199] = {.lex_state = 70, .external_lex_state = 6}, + [3200] = {.lex_state = 70}, + [3201] = {.lex_state = 14}, + [3202] = {.lex_state = 27}, + [3203] = {.lex_state = 14}, [3204] = {.lex_state = 14}, - [3205] = {.lex_state = 14}, + [3205] = {.lex_state = 70}, [3206] = {.lex_state = 14}, - [3207] = {.lex_state = 70}, + [3207] = {.lex_state = 14}, [3208] = {.lex_state = 70}, [3209] = {.lex_state = 70}, [3210] = {.lex_state = 70}, [3211] = {.lex_state = 70}, [3212] = {.lex_state = 70}, - [3213] = {.lex_state = 6}, + [3213] = {.lex_state = 70}, [3214] = {.lex_state = 70}, [3215] = {.lex_state = 70}, [3216] = {.lex_state = 70}, [3217] = {.lex_state = 70}, [3218] = {.lex_state = 70}, [3219] = {.lex_state = 70}, - [3220] = {.lex_state = 70}, + [3220] = {.lex_state = 14}, [3221] = {.lex_state = 70}, [3222] = {.lex_state = 70}, [3223] = {.lex_state = 70}, [3224] = {.lex_state = 70}, [3225] = {.lex_state = 70}, [3226] = {.lex_state = 70}, - [3227] = {.lex_state = 14}, + [3227] = {.lex_state = 70}, [3228] = {.lex_state = 70}, [3229] = {.lex_state = 70}, - [3230] = {.lex_state = 70}, + [3230] = {.lex_state = 70, .external_lex_state = 6}, [3231] = {.lex_state = 70}, [3232] = {.lex_state = 70}, [3233] = {.lex_state = 70}, @@ -13276,23 +13403,23 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3235] = {.lex_state = 14}, [3236] = {.lex_state = 14}, [3237] = {.lex_state = 70}, - [3238] = {.lex_state = 14}, + [3238] = {.lex_state = 70}, [3239] = {.lex_state = 14}, - [3240] = {.lex_state = 70}, + [3240] = {.lex_state = 14}, [3241] = {.lex_state = 70}, [3242] = {.lex_state = 70}, [3243] = {.lex_state = 70}, - [3244] = {.lex_state = 70}, - [3245] = {.lex_state = 70}, + [3244] = {.lex_state = 5}, + [3245] = {.lex_state = 14}, [3246] = {.lex_state = 14}, - [3247] = {.lex_state = 14}, + [3247] = {.lex_state = 70}, [3248] = {.lex_state = 70}, [3249] = {.lex_state = 14}, [3250] = {.lex_state = 70}, [3251] = {.lex_state = 70}, - [3252] = {.lex_state = 70}, + [3252] = {.lex_state = 5}, [3253] = {.lex_state = 70}, - [3254] = {.lex_state = 14}, + [3254] = {.lex_state = 70}, [3255] = {.lex_state = 70}, [3256] = {.lex_state = 70}, [3257] = {.lex_state = 70}, @@ -13301,363 +13428,452 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3260] = {.lex_state = 14}, [3261] = {.lex_state = 14}, [3262] = {.lex_state = 70}, - [3263] = {.lex_state = 70, .external_lex_state = 6}, + [3263] = {.lex_state = 70}, [3264] = {.lex_state = 70}, - [3265] = {.lex_state = 10, .external_lex_state = 5}, + [3265] = {.lex_state = 70}, [3266] = {.lex_state = 70}, - [3267] = {.lex_state = 14}, - [3268] = {.lex_state = 27}, + [3267] = {.lex_state = 70}, + [3268] = {.lex_state = 70}, [3269] = {.lex_state = 70}, - [3270] = {.lex_state = 14}, - [3271] = {.lex_state = 70}, + [3270] = {.lex_state = 70}, + [3271] = {.lex_state = 14}, [3272] = {.lex_state = 70}, - [3273] = {.lex_state = 70}, + [3273] = {.lex_state = 14}, [3274] = {.lex_state = 70}, - [3275] = {.lex_state = 70}, - [3276] = {.lex_state = 70}, - [3277] = {.lex_state = 70}, + [3275] = {.lex_state = 14}, + [3276] = {.lex_state = 14}, + [3277] = {.lex_state = 14}, [3278] = {.lex_state = 70}, [3279] = {.lex_state = 70}, [3280] = {.lex_state = 70}, - [3281] = {.lex_state = 14}, + [3281] = {.lex_state = 70}, [3282] = {.lex_state = 70}, [3283] = {.lex_state = 14}, [3284] = {.lex_state = 70}, - [3285] = {.lex_state = 14}, + [3285] = {.lex_state = 70}, [3286] = {.lex_state = 70}, - [3287] = {.lex_state = 14}, + [3287] = {.lex_state = 70}, [3288] = {.lex_state = 70}, - [3289] = {.lex_state = 14}, + [3289] = {.lex_state = 6}, [3290] = {.lex_state = 70}, - [3291] = {.lex_state = 14}, - [3292] = {.lex_state = 14}, - [3293] = {.lex_state = 70}, - [3294] = {.lex_state = 14}, - [3295] = {.lex_state = 70}, + [3291] = {.lex_state = 70}, + [3292] = {.lex_state = 70}, + [3293] = {.lex_state = 14}, + [3294] = {.lex_state = 70}, + [3295] = {.lex_state = 14}, [3296] = {.lex_state = 14}, [3297] = {.lex_state = 14}, - [3298] = {.lex_state = 70}, - [3299] = {.lex_state = 14}, - [3300] = {.lex_state = 14}, - [3301] = {.lex_state = 14}, - [3302] = {.lex_state = 14}, + [3298] = {.lex_state = 14}, + [3299] = {.lex_state = 70}, + [3300] = {.lex_state = 70}, + [3301] = {.lex_state = 70}, + [3302] = {.lex_state = 70}, [3303] = {.lex_state = 70}, - [3304] = {.lex_state = 14}, + [3304] = {.lex_state = 6}, [3305] = {.lex_state = 70}, [3306] = {.lex_state = 14}, - [3307] = {.lex_state = 10}, - [3308] = {.lex_state = 14}, + [3307] = {.lex_state = 70}, + [3308] = {.lex_state = 70}, [3309] = {.lex_state = 70}, - [3310] = {.lex_state = 14}, + [3310] = {.lex_state = 70}, [3311] = {.lex_state = 14}, - [3312] = {.lex_state = 70}, - [3313] = {.lex_state = 71}, + [3312] = {.lex_state = 14}, + [3313] = {.lex_state = 14}, [3314] = {.lex_state = 14}, [3315] = {.lex_state = 14}, - [3316] = {.lex_state = 14}, - [3317] = {.lex_state = 14}, - [3318] = {.lex_state = 18}, - [3319] = {.lex_state = 70, .external_lex_state = 7}, + [3316] = {.lex_state = 70}, + [3317] = {.lex_state = 70}, + [3318] = {.lex_state = 70}, + [3319] = {.lex_state = 14}, [3320] = {.lex_state = 70}, [3321] = {.lex_state = 70}, [3322] = {.lex_state = 70}, [3323] = {.lex_state = 70}, [3324] = {.lex_state = 70}, - [3325] = {.lex_state = 71}, - [3326] = {.lex_state = 70}, - [3327] = {.lex_state = 70}, - [3328] = {.lex_state = 70}, + [3325] = {.lex_state = 14}, + [3326] = {.lex_state = 14}, + [3327] = {.lex_state = 14}, + [3328] = {.lex_state = 14}, [3329] = {.lex_state = 70}, - [3330] = {.lex_state = 14}, - [3331] = {.lex_state = 18}, - [3332] = {.lex_state = 70}, - [3333] = {.lex_state = 70, .external_lex_state = 7}, + [3330] = {.lex_state = 70}, + [3331] = {.lex_state = 70}, + [3332] = {.lex_state = 14}, + [3333] = {.lex_state = 14}, [3334] = {.lex_state = 70}, [3335] = {.lex_state = 14}, - [3336] = {.lex_state = 70}, - [3337] = {.lex_state = 71}, + [3336] = {.lex_state = 14}, + [3337] = {.lex_state = 27}, [3338] = {.lex_state = 14}, - [3339] = {.lex_state = 70}, - [3340] = {.lex_state = 70}, - [3341] = {.lex_state = 70, .external_lex_state = 7}, + [3339] = {.lex_state = 14}, + [3340] = {.lex_state = 14}, + [3341] = {.lex_state = 70}, [3342] = {.lex_state = 14}, - [3343] = {.lex_state = 70}, - [3344] = {.lex_state = 14}, - [3345] = {.lex_state = 71}, + [3343] = {.lex_state = 14}, + [3344] = {.lex_state = 70}, + [3345] = {.lex_state = 70}, [3346] = {.lex_state = 70}, - [3347] = {.lex_state = 70}, + [3347] = {.lex_state = 10}, [3348] = {.lex_state = 70}, [3349] = {.lex_state = 14}, - [3350] = {.lex_state = 70}, - [3351] = {.lex_state = 14}, - [3352] = {.lex_state = 14}, - [3353] = {.lex_state = 14}, + [3350] = {.lex_state = 14}, + [3351] = {.lex_state = 70}, + [3352] = {.lex_state = 70}, + [3353] = {.lex_state = 70}, [3354] = {.lex_state = 14}, [3355] = {.lex_state = 14}, - [3356] = {.lex_state = 14}, - [3357] = {.lex_state = 70}, - [3358] = {.lex_state = 70}, + [3356] = {.lex_state = 70}, + [3357] = {.lex_state = 14}, + [3358] = {.lex_state = 14}, [3359] = {.lex_state = 70}, - [3360] = {.lex_state = 14}, + [3360] = {.lex_state = 70}, [3361] = {.lex_state = 70}, [3362] = {.lex_state = 70}, - [3363] = {.lex_state = 70}, - [3364] = {.lex_state = 70}, - [3365] = {.lex_state = 70}, - [3366] = {.lex_state = 18}, - [3367] = {.lex_state = 14}, - [3368] = {.lex_state = 70}, - [3369] = {.lex_state = 70}, + [3363] = {.lex_state = 14}, + [3364] = {.lex_state = 14}, + [3365] = {.lex_state = 14}, + [3366] = {.lex_state = 14}, + [3367] = {.lex_state = 70}, + [3368] = {.lex_state = 14}, + [3369] = {.lex_state = 14}, [3370] = {.lex_state = 14}, - [3371] = {.lex_state = 70}, - [3372] = {.lex_state = 70}, - [3373] = {.lex_state = 70}, + [3371] = {.lex_state = 14}, + [3372] = {.lex_state = 14}, + [3373] = {.lex_state = 14}, [3374] = {.lex_state = 70}, - [3375] = {.lex_state = 70}, - [3376] = {.lex_state = 70, .external_lex_state = 8}, - [3377] = {.lex_state = 70}, - [3378] = {.lex_state = 70}, - [3379] = {.lex_state = 70}, - [3380] = {.lex_state = 70, .external_lex_state = 9}, - [3381] = {.lex_state = 70}, - [3382] = {.lex_state = 70}, + [3375] = {.lex_state = 14}, + [3376] = {.lex_state = 70}, + [3377] = {.lex_state = 14}, + [3378] = {.lex_state = 14}, + [3379] = {.lex_state = 14}, + [3380] = {.lex_state = 14}, + [3381] = {.lex_state = 14}, + [3382] = {.lex_state = 14}, [3383] = {.lex_state = 70}, [3384] = {.lex_state = 70}, - [3385] = {.lex_state = 70}, - [3386] = {.lex_state = 18}, - [3387] = {.lex_state = 14}, + [3385] = {.lex_state = 14}, + [3386] = {.lex_state = 70}, + [3387] = {.lex_state = 70}, [3388] = {.lex_state = 70}, - [3389] = {.lex_state = 14}, - [3390] = {.lex_state = 14}, + [3389] = {.lex_state = 70}, + [3390] = {.lex_state = 70}, [3391] = {.lex_state = 70}, [3392] = {.lex_state = 70}, [3393] = {.lex_state = 70}, [3394] = {.lex_state = 70}, - [3395] = {.lex_state = 14}, - [3396] = {.lex_state = 10}, - [3397] = {.lex_state = 70}, - [3398] = {.lex_state = 70}, - [3399] = {.lex_state = 14}, + [3395] = {.lex_state = 70}, + [3396] = {.lex_state = 70}, + [3397] = {.lex_state = 14}, + [3398] = {.lex_state = 14}, + [3399] = {.lex_state = 70}, [3400] = {.lex_state = 70}, [3401] = {.lex_state = 70}, - [3402] = {.lex_state = 165}, + [3402] = {.lex_state = 70}, [3403] = {.lex_state = 70}, [3404] = {.lex_state = 70}, - [3405] = {.lex_state = 70}, + [3405] = {.lex_state = 18}, [3406] = {.lex_state = 70}, - [3407] = {.lex_state = 14}, + [3407] = {.lex_state = 70}, [3408] = {.lex_state = 70}, - [3409] = {.lex_state = 14}, - [3410] = {.lex_state = 71}, + [3409] = {.lex_state = 70}, + [3410] = {.lex_state = 70}, [3411] = {.lex_state = 70}, - [3412] = {.lex_state = 18}, - [3413] = {.lex_state = 70}, - [3414] = {.lex_state = 70}, - [3415] = {.lex_state = 70}, + [3412] = {.lex_state = 70}, + [3413] = {.lex_state = 70, .external_lex_state = 7}, + [3414] = {.lex_state = 14}, + [3415] = {.lex_state = 14}, [3416] = {.lex_state = 70}, - [3417] = {.lex_state = 70}, + [3417] = {.lex_state = 14}, [3418] = {.lex_state = 70}, - [3419] = {.lex_state = 10}, - [3420] = {.lex_state = 14}, + [3419] = {.lex_state = 70}, + [3420] = {.lex_state = 70}, [3421] = {.lex_state = 70}, [3422] = {.lex_state = 70}, - [3423] = {.lex_state = 71}, - [3424] = {.lex_state = 70}, - [3425] = {.lex_state = 70}, + [3423] = {.lex_state = 18}, + [3424] = {.lex_state = 14}, + [3425] = {.lex_state = 14}, [3426] = {.lex_state = 70}, [3427] = {.lex_state = 14}, - [3428] = {.lex_state = 70}, - [3429] = {.lex_state = 70, .external_lex_state = 9}, - [3430] = {.lex_state = 70}, + [3428] = {.lex_state = 14}, + [3429] = {.lex_state = 71}, + [3430] = {.lex_state = 14}, [3431] = {.lex_state = 70}, [3432] = {.lex_state = 70}, [3433] = {.lex_state = 70}, - [3434] = {.lex_state = 14}, - [3435] = {.lex_state = 18}, - [3436] = {.lex_state = 14}, - [3437] = {.lex_state = 70}, - [3438] = {.lex_state = 70}, - [3439] = {.lex_state = 70}, - [3440] = {.lex_state = 70}, - [3441] = {.lex_state = 70}, + [3434] = {.lex_state = 70}, + [3435] = {.lex_state = 14}, + [3436] = {.lex_state = 70}, + [3437] = {.lex_state = 14}, + [3438] = {.lex_state = 14}, + [3439] = {.lex_state = 14}, + [3440] = {.lex_state = 14}, + [3441] = {.lex_state = 14}, [3442] = {.lex_state = 70}, [3443] = {.lex_state = 70}, - [3444] = {.lex_state = 14}, - [3445] = {.lex_state = 14}, + [3444] = {.lex_state = 70}, + [3445] = {.lex_state = 70}, [3446] = {.lex_state = 70}, [3447] = {.lex_state = 70}, - [3448] = {.lex_state = 14}, - [3449] = {.lex_state = 14}, - [3450] = {.lex_state = 70}, - [3451] = {.lex_state = 70, .external_lex_state = 9}, + [3448] = {.lex_state = 70}, + [3449] = {.lex_state = 70}, + [3450] = {.lex_state = 14}, + [3451] = {.lex_state = 14}, [3452] = {.lex_state = 14}, - [3453] = {.lex_state = 14}, + [3453] = {.lex_state = 70}, [3454] = {.lex_state = 70}, [3455] = {.lex_state = 70}, [3456] = {.lex_state = 70}, - [3457] = {.lex_state = 70}, - [3458] = {.lex_state = 14}, - [3459] = {.lex_state = 14}, - [3460] = {.lex_state = 14}, - [3461] = {.lex_state = 70, .external_lex_state = 8}, - [3462] = {.lex_state = 70}, - [3463] = {.lex_state = 70}, + [3457] = {.lex_state = 14}, + [3458] = {.lex_state = 18}, + [3459] = {.lex_state = 70}, + [3460] = {.lex_state = 70}, + [3461] = {.lex_state = 18}, + [3462] = {.lex_state = 70, .external_lex_state = 8}, + [3463] = {.lex_state = 71}, [3464] = {.lex_state = 70}, [3465] = {.lex_state = 70}, - [3466] = {.lex_state = 70}, + [3466] = {.lex_state = 14}, [3467] = {.lex_state = 70}, [3468] = {.lex_state = 70}, [3469] = {.lex_state = 70}, - [3470] = {.lex_state = 14}, + [3470] = {.lex_state = 70}, [3471] = {.lex_state = 70}, [3472] = {.lex_state = 70}, - [3473] = {.lex_state = 14}, - [3474] = {.lex_state = 70}, + [3473] = {.lex_state = 70}, + [3474] = {.lex_state = 18}, [3475] = {.lex_state = 70}, [3476] = {.lex_state = 70}, - [3477] = {.lex_state = 70}, - [3478] = {.lex_state = 70}, - [3479] = {.lex_state = 70}, - [3480] = {.lex_state = 18}, + [3477] = {.lex_state = 18}, + [3478] = {.lex_state = 14}, + [3479] = {.lex_state = 14}, + [3480] = {.lex_state = 10}, [3481] = {.lex_state = 70}, [3482] = {.lex_state = 70}, [3483] = {.lex_state = 70}, - [3484] = {.lex_state = 14}, - [3485] = {.lex_state = 18}, + [3484] = {.lex_state = 70}, + [3485] = {.lex_state = 70}, [3486] = {.lex_state = 70}, [3487] = {.lex_state = 70}, - [3488] = {.lex_state = 70}, - [3489] = {.lex_state = 70, .external_lex_state = 7}, + [3488] = {.lex_state = 14}, + [3489] = {.lex_state = 70}, [3490] = {.lex_state = 70}, [3491] = {.lex_state = 70}, - [3492] = {.lex_state = 70}, - [3493] = {.lex_state = 14}, - [3494] = {.lex_state = 70, .external_lex_state = 8}, - [3495] = {.lex_state = 70}, - [3496] = {.lex_state = 70}, + [3492] = {.lex_state = 70, .external_lex_state = 8}, + [3493] = {.lex_state = 70}, + [3494] = {.lex_state = 14}, + [3495] = {.lex_state = 14}, + [3496] = {.lex_state = 14}, [3497] = {.lex_state = 14}, [3498] = {.lex_state = 70}, - [3499] = {.lex_state = 70}, - [3500] = {.lex_state = 70}, + [3499] = {.lex_state = 14}, + [3500] = {.lex_state = 14}, [3501] = {.lex_state = 70}, - [3502] = {.lex_state = 70, .external_lex_state = 7}, + [3502] = {.lex_state = 14}, [3503] = {.lex_state = 70}, [3504] = {.lex_state = 70}, [3505] = {.lex_state = 70}, - [3506] = {.lex_state = 70}, + [3506] = {.lex_state = 14}, [3507] = {.lex_state = 70}, - [3508] = {.lex_state = 70}, + [3508] = {.lex_state = 71}, [3509] = {.lex_state = 14}, - [3510] = {.lex_state = 18}, + [3510] = {.lex_state = 14}, [3511] = {.lex_state = 70}, [3512] = {.lex_state = 70}, - [3513] = {.lex_state = 70, .external_lex_state = 8}, + [3513] = {.lex_state = 70}, [3514] = {.lex_state = 70}, [3515] = {.lex_state = 70}, [3516] = {.lex_state = 70}, [3517] = {.lex_state = 70}, - [3518] = {.lex_state = 70}, - [3519] = {.lex_state = 70, .external_lex_state = 8}, + [3518] = {.lex_state = 14}, + [3519] = {.lex_state = 14}, [3520] = {.lex_state = 70}, [3521] = {.lex_state = 70}, [3522] = {.lex_state = 70}, - [3523] = {.lex_state = 70}, - [3524] = {.lex_state = 70}, + [3523] = {.lex_state = 14}, + [3524] = {.lex_state = 18}, [3525] = {.lex_state = 70}, - [3526] = {.lex_state = 70}, + [3526] = {.lex_state = 70, .external_lex_state = 8}, [3527] = {.lex_state = 70}, - [3528] = {.lex_state = 70}, - [3529] = {.lex_state = 70}, - [3530] = {.lex_state = 70}, - [3531] = {.lex_state = 14}, + [3528] = {.lex_state = 14}, + [3529] = {.lex_state = 14}, + [3530] = {.lex_state = 14}, + [3531] = {.lex_state = 70}, [3532] = {.lex_state = 70}, [3533] = {.lex_state = 70}, - [3534] = {.lex_state = 14}, - [3535] = {.lex_state = 18}, + [3534] = {.lex_state = 70}, + [3535] = {.lex_state = 14}, [3536] = {.lex_state = 70}, - [3537] = {.lex_state = 14}, - [3538] = {.lex_state = 70}, - [3539] = {.lex_state = 18}, - [3540] = {.lex_state = 18}, + [3537] = {.lex_state = 70}, + [3538] = {.lex_state = 14}, + [3539] = {.lex_state = 71}, + [3540] = {.lex_state = 71}, [3541] = {.lex_state = 70}, - [3542] = {.lex_state = 70}, - [3543] = {.lex_state = 70}, - [3544] = {.lex_state = 18}, - [3545] = {.lex_state = 18}, + [3542] = {.lex_state = 18}, + [3543] = {.lex_state = 18}, + [3544] = {.lex_state = 70}, + [3545] = {.lex_state = 70}, [3546] = {.lex_state = 70}, - [3547] = {.lex_state = 14}, + [3547] = {.lex_state = 70}, [3548] = {.lex_state = 70}, [3549] = {.lex_state = 14}, - [3550] = {.lex_state = 70, .external_lex_state = 9}, - [3551] = {.lex_state = 14}, + [3550] = {.lex_state = 70}, + [3551] = {.lex_state = 70}, [3552] = {.lex_state = 70}, - [3553] = {.lex_state = 70, .external_lex_state = 9}, - [3554] = {.lex_state = 18}, - [3555] = {.lex_state = 18}, + [3553] = {.lex_state = 14}, + [3554] = {.lex_state = 70, .external_lex_state = 7}, + [3555] = {.lex_state = 14}, [3556] = {.lex_state = 70}, - [3557] = {.lex_state = 14}, - [3558] = {.lex_state = 14}, - [3559] = {.lex_state = 18}, + [3557] = {.lex_state = 70}, + [3558] = {.lex_state = 70}, + [3559] = {.lex_state = 70}, [3560] = {.lex_state = 14}, - [3561] = {.lex_state = 70, .external_lex_state = 9}, - [3562] = {.lex_state = 14}, + [3561] = {.lex_state = 70}, + [3562] = {.lex_state = 70, .external_lex_state = 8}, [3563] = {.lex_state = 70}, - [3564] = {.lex_state = 14}, - [3565] = {.lex_state = 18}, - [3566] = {.lex_state = 14}, - [3567] = {.lex_state = 70}, + [3564] = {.lex_state = 70}, + [3565] = {.lex_state = 70}, + [3566] = {.lex_state = 70}, + [3567] = {.lex_state = 14}, [3568] = {.lex_state = 70}, - [3569] = {.lex_state = 14}, + [3569] = {.lex_state = 70}, [3570] = {.lex_state = 70}, [3571] = {.lex_state = 70}, [3572] = {.lex_state = 70}, - [3573] = {.lex_state = 70}, + [3573] = {.lex_state = 14}, [3574] = {.lex_state = 70}, [3575] = {.lex_state = 70}, - [3576] = {.lex_state = 70}, - [3577] = {.lex_state = 18}, - [3578] = {.lex_state = 70}, - [3579] = {.lex_state = 18}, + [3576] = {.lex_state = 71}, + [3577] = {.lex_state = 70}, + [3578] = {.lex_state = 14}, + [3579] = {.lex_state = 70}, [3580] = {.lex_state = 70}, - [3581] = {.lex_state = 70}, - [3582] = {.lex_state = 18}, + [3581] = {.lex_state = 70, .external_lex_state = 7}, + [3582] = {.lex_state = 70}, [3583] = {.lex_state = 70}, - [3584] = {.lex_state = 70}, - [3585] = {.lex_state = 18}, - [3586] = {.lex_state = 18}, - [3587] = {.lex_state = 14}, - [3588] = {.lex_state = 18}, - [3589] = {.lex_state = 18}, - [3590] = {.lex_state = 18}, - [3591] = {.lex_state = 18}, - [3592] = {.lex_state = 18}, - [3593] = {.lex_state = 14}, - [3594] = {.lex_state = 71}, - [3595] = {.lex_state = 14}, - [3596] = {.lex_state = 14}, + [3584] = {.lex_state = 14}, + [3585] = {.lex_state = 70}, + [3586] = {.lex_state = 70}, + [3587] = {.lex_state = 70}, + [3588] = {.lex_state = 70}, + [3589] = {.lex_state = 70, .external_lex_state = 7}, + [3590] = {.lex_state = 70}, + [3591] = {.lex_state = 70}, + [3592] = {.lex_state = 70}, + [3593] = {.lex_state = 70}, + [3594] = {.lex_state = 70}, + [3595] = {.lex_state = 70}, + [3596] = {.lex_state = 70}, [3597] = {.lex_state = 70}, [3598] = {.lex_state = 70}, - [3599] = {.lex_state = 14}, - [3600] = {.lex_state = 14}, - [3601] = {.lex_state = 70, .external_lex_state = 8}, - [3602] = {.lex_state = 14}, - [3603] = {.lex_state = 14}, - [3604] = {.lex_state = 14}, - [3605] = {.lex_state = 71}, - [3606] = {.lex_state = 70}, + [3599] = {.lex_state = 70}, + [3600] = {.lex_state = 70, .external_lex_state = 8}, + [3601] = {.lex_state = 14}, + [3602] = {.lex_state = 70}, + [3603] = {.lex_state = 70}, + [3604] = {.lex_state = 70}, + [3605] = {.lex_state = 14}, + [3606] = {.lex_state = 10}, [3607] = {.lex_state = 14}, - [3608] = {.lex_state = 70}, + [3608] = {.lex_state = 70, .external_lex_state = 7}, [3609] = {.lex_state = 70}, [3610] = {.lex_state = 70}, - [3611] = {.lex_state = 14}, + [3611] = {.lex_state = 70}, [3612] = {.lex_state = 70}, - [3613] = {(TSStateId)(-1)}, - [3614] = {(TSStateId)(-1)}, - [3615] = {(TSStateId)(-1)}, - [3616] = {(TSStateId)(-1)}, - [3617] = {(TSStateId)(-1)}, - [3618] = {(TSStateId)(-1)}, - [3619] = {(TSStateId)(-1)}, + [3613] = {.lex_state = 70}, + [3614] = {.lex_state = 70, .external_lex_state = 7}, + [3615] = {.lex_state = 70}, + [3616] = {.lex_state = 70}, + [3617] = {.lex_state = 70}, + [3618] = {.lex_state = 70}, + [3619] = {.lex_state = 70}, + [3620] = {.lex_state = 70}, + [3621] = {.lex_state = 70}, + [3622] = {.lex_state = 70}, + [3623] = {.lex_state = 70}, + [3624] = {.lex_state = 70}, + [3625] = {.lex_state = 70}, + [3626] = {.lex_state = 14}, + [3627] = {.lex_state = 70}, + [3628] = {.lex_state = 70}, + [3629] = {.lex_state = 14}, + [3630] = {.lex_state = 70, .external_lex_state = 9}, + [3631] = {.lex_state = 18}, + [3632] = {.lex_state = 70}, + [3633] = {.lex_state = 70, .external_lex_state = 9}, + [3634] = {.lex_state = 70}, + [3635] = {.lex_state = 18}, + [3636] = {.lex_state = 18}, + [3637] = {.lex_state = 14}, + [3638] = {.lex_state = 70, .external_lex_state = 9}, + [3639] = {.lex_state = 14}, + [3640] = {.lex_state = 165}, + [3641] = {.lex_state = 18}, + [3642] = {.lex_state = 14}, + [3643] = {.lex_state = 18}, + [3644] = {.lex_state = 18}, + [3645] = {.lex_state = 70}, + [3646] = {.lex_state = 70}, + [3647] = {.lex_state = 14}, + [3648] = {.lex_state = 70}, + [3649] = {.lex_state = 70}, + [3650] = {.lex_state = 70}, + [3651] = {.lex_state = 14}, + [3652] = {.lex_state = 18}, + [3653] = {.lex_state = 70}, + [3654] = {.lex_state = 70}, + [3655] = {.lex_state = 71}, + [3656] = {.lex_state = 18}, + [3657] = {.lex_state = 70, .external_lex_state = 8}, + [3658] = {.lex_state = 70}, + [3659] = {.lex_state = 70}, + [3660] = {.lex_state = 14}, + [3661] = {.lex_state = 70}, + [3662] = {.lex_state = 18}, + [3663] = {.lex_state = 70}, + [3664] = {.lex_state = 70}, + [3665] = {.lex_state = 70}, + [3666] = {.lex_state = 70}, + [3667] = {.lex_state = 70}, + [3668] = {.lex_state = 14}, + [3669] = {.lex_state = 70}, + [3670] = {.lex_state = 70}, + [3671] = {.lex_state = 70}, + [3672] = {.lex_state = 70}, + [3673] = {.lex_state = 70}, + [3674] = {.lex_state = 18}, + [3675] = {.lex_state = 70}, + [3676] = {.lex_state = 18}, + [3677] = {.lex_state = 70}, + [3678] = {.lex_state = 70}, + [3679] = {.lex_state = 18}, + [3680] = {.lex_state = 70}, + [3681] = {.lex_state = 70}, + [3682] = {.lex_state = 18}, + [3683] = {.lex_state = 18}, + [3684] = {.lex_state = 18}, + [3685] = {.lex_state = 18}, + [3686] = {.lex_state = 18}, + [3687] = {.lex_state = 18}, + [3688] = {.lex_state = 18}, + [3689] = {.lex_state = 14}, + [3690] = {.lex_state = 14}, + [3691] = {.lex_state = 14}, + [3692] = {.lex_state = 70}, + [3693] = {.lex_state = 14}, + [3694] = {.lex_state = 14}, + [3695] = {.lex_state = 70}, + [3696] = {.lex_state = 14}, + [3697] = {.lex_state = 14}, + [3698] = {.lex_state = 14}, + [3699] = {.lex_state = 14}, + [3700] = {.lex_state = 71}, + [3701] = {.lex_state = 70}, + [3702] = {(TSStateId)(-1)}, + [3703] = {(TSStateId)(-1)}, + [3704] = {(TSStateId)(-1)}, + [3705] = {(TSStateId)(-1)}, + [3706] = {(TSStateId)(-1)}, + [3707] = {(TSStateId)(-1)}, + [3708] = {(TSStateId)(-1)}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -13674,6 +13890,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACK] = ACTIONS(1), [anon_sym_LBRACE] = ACTIONS(1), [anon_sym_RBRACE] = ACTIONS(1), + [anon_sym_macro] = ACTIONS(1), + [anon_sym_COMMA] = ACTIONS(1), [anon_sym_EQ_GT] = ACTIONS(1), [anon_sym_COLON] = ACTIONS(1), [anon_sym_DOLLAR] = ACTIONS(1), @@ -13744,7 +13962,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(1), [anon_sym_DOT_DOT_DOT] = ACTIONS(1), [anon_sym_DOT_DOT_EQ] = ACTIONS(1), - [anon_sym_COMMA] = ACTIONS(1), [anon_sym_COLON_COLON] = ACTIONS(1), [anon_sym_DASH_GT] = ACTIONS(1), [anon_sym_POUND] = ACTIONS(1), @@ -13794,8 +14011,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1), [anon_sym_false] = ACTIONS(1), [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_BANG2] = ACTIONS(1), - [anon_sym_SLASH2] = ACTIONS(1), + [sym__inner_line_doc_comment_marker] = ACTIONS(1), + [sym__outer_line_doc_comment_marker] = ACTIONS(1), [anon_sym_SLASH_STAR] = ACTIONS(5), [sym_shebang] = ACTIONS(1), [sym_self] = ACTIONS(1), @@ -13814,82 +14031,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__error_sentinel] = ACTIONS(1), }, [1] = { - [sym_source_file] = STATE(3512), - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1845), - [sym_macro_invocation] = STATE(395), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_source_file] = STATE(3653), + [sym__statement] = STATE(710), + [sym_empty_statement] = STATE(709), + [sym_expression_statement] = STATE(709), + [sym_macro_rules] = STATE(709), + [sym_macro_definition] = STATE(709), + [sym_attribute_item] = STATE(709), + [sym_inner_attribute_item] = STATE(709), + [sym_mod_item] = STATE(709), + [sym_foreign_mod_item] = STATE(709), + [sym_struct_item] = STATE(709), + [sym_union_item] = STATE(709), + [sym_enum_item] = STATE(709), + [sym_extern_crate_declaration] = STATE(709), + [sym_const_item] = STATE(709), + [sym_static_item] = STATE(709), + [sym_type_item] = STATE(709), + [sym_function_item] = STATE(709), + [sym_function_signature_item] = STATE(709), + [sym_function_modifiers] = STATE(3651), + [sym_impl_item] = STATE(709), + [sym_trait_item] = STATE(709), + [sym_associated_type] = STATE(709), + [sym_let_declaration] = STATE(709), + [sym_use_declaration] = STATE(709), + [sym_extern_modifier] = STATE(2207), + [sym_visibility_modifier] = STATE(1957), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1901), + [sym_macro_invocation] = STATE(341), + [sym_scoped_identifier] = STATE(1563), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(348), + [sym_match_expression] = STATE(348), + [sym_while_expression] = STATE(348), + [sym_loop_expression] = STATE(348), + [sym_for_expression] = STATE(348), + [sym_const_block] = STATE(348), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3644), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(348), + [sym_async_block] = STATE(348), + [sym_try_block] = STATE(348), + [sym_block] = STATE(348), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(1), [sym_block_comment] = STATE(1), - [aux_sym_source_file_repeat1] = STATE(34), - [aux_sym_function_modifiers_repeat1] = STATE(2206), + [aux_sym_source_file_repeat1] = STATE(9), + [aux_sym_function_modifiers_repeat1] = STATE(2255), [ts_builtin_sym_end] = ACTIONS(7), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), @@ -13897,71757 +14115,72236 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(35), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(39), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_fn] = ACTIONS(51), - [anon_sym_for] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_impl] = ACTIONS(57), - [anon_sym_let] = ACTIONS(59), - [anon_sym_loop] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_mod] = ACTIONS(65), - [anon_sym_pub] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_trait] = ACTIONS(75), - [anon_sym_type] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_unsafe] = ACTIONS(81), - [anon_sym_use] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_extern] = ACTIONS(87), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(93), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_shebang] = ACTIONS(105), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_macro] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_POUND] = ACTIONS(37), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_impl] = ACTIONS(59), + [anon_sym_let] = ACTIONS(61), + [anon_sym_loop] = ACTIONS(63), + [anon_sym_match] = ACTIONS(65), + [anon_sym_mod] = ACTIONS(67), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_trait] = ACTIONS(77), + [anon_sym_type] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_unsafe] = ACTIONS(83), + [anon_sym_use] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_extern] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_shebang] = ACTIONS(107), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(113), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [2] = { - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1838), - [sym_macro_invocation] = STATE(395), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym__statement] = STATE(710), + [sym_empty_statement] = STATE(709), + [sym_expression_statement] = STATE(709), + [sym_macro_rules] = STATE(709), + [sym_macro_definition] = STATE(709), + [sym_attribute_item] = STATE(709), + [sym_inner_attribute_item] = STATE(709), + [sym_mod_item] = STATE(709), + [sym_foreign_mod_item] = STATE(709), + [sym_struct_item] = STATE(709), + [sym_union_item] = STATE(709), + [sym_enum_item] = STATE(709), + [sym_extern_crate_declaration] = STATE(709), + [sym_const_item] = STATE(709), + [sym_static_item] = STATE(709), + [sym_type_item] = STATE(709), + [sym_function_item] = STATE(709), + [sym_function_signature_item] = STATE(709), + [sym_function_modifiers] = STATE(3651), + [sym_impl_item] = STATE(709), + [sym_trait_item] = STATE(709), + [sym_associated_type] = STATE(709), + [sym_let_declaration] = STATE(709), + [sym_use_declaration] = STATE(709), + [sym_extern_modifier] = STATE(2207), + [sym_visibility_modifier] = STATE(1957), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1875), + [sym_macro_invocation] = STATE(341), + [sym_scoped_identifier] = STATE(1563), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(348), + [sym_match_expression] = STATE(348), + [sym_while_expression] = STATE(348), + [sym_loop_expression] = STATE(348), + [sym_for_expression] = STATE(348), + [sym_const_block] = STATE(348), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3644), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(348), + [sym_async_block] = STATE(348), + [sym_try_block] = STATE(348), + [sym_block] = STATE(348), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(2), [sym_block_comment] = STATE(2), - [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(2206), + [aux_sym_source_file_repeat1] = STATE(28), + [aux_sym_function_modifiers_repeat1] = STATE(2255), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(117), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(119), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(39), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_fn] = ACTIONS(51), - [anon_sym_for] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_impl] = ACTIONS(57), - [anon_sym_let] = ACTIONS(59), - [anon_sym_loop] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_mod] = ACTIONS(65), - [anon_sym_pub] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_trait] = ACTIONS(75), - [anon_sym_type] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_unsafe] = ACTIONS(81), - [anon_sym_use] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_extern] = ACTIONS(87), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(93), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_RBRACE] = ACTIONS(119), + [anon_sym_macro] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_POUND] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_impl] = ACTIONS(59), + [anon_sym_let] = ACTIONS(61), + [anon_sym_loop] = ACTIONS(63), + [anon_sym_match] = ACTIONS(65), + [anon_sym_mod] = ACTIONS(67), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_trait] = ACTIONS(77), + [anon_sym_type] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_unsafe] = ACTIONS(83), + [anon_sym_use] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_extern] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(113), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [3] = { - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1837), - [sym_macro_invocation] = STATE(395), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym__statement] = STATE(710), + [sym_empty_statement] = STATE(709), + [sym_expression_statement] = STATE(709), + [sym_macro_rules] = STATE(709), + [sym_macro_definition] = STATE(709), + [sym_attribute_item] = STATE(709), + [sym_inner_attribute_item] = STATE(709), + [sym_mod_item] = STATE(709), + [sym_foreign_mod_item] = STATE(709), + [sym_struct_item] = STATE(709), + [sym_union_item] = STATE(709), + [sym_enum_item] = STATE(709), + [sym_extern_crate_declaration] = STATE(709), + [sym_const_item] = STATE(709), + [sym_static_item] = STATE(709), + [sym_type_item] = STATE(709), + [sym_function_item] = STATE(709), + [sym_function_signature_item] = STATE(709), + [sym_function_modifiers] = STATE(3651), + [sym_impl_item] = STATE(709), + [sym_trait_item] = STATE(709), + [sym_associated_type] = STATE(709), + [sym_let_declaration] = STATE(709), + [sym_use_declaration] = STATE(709), + [sym_extern_modifier] = STATE(2207), + [sym_visibility_modifier] = STATE(1957), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1769), + [sym_macro_invocation] = STATE(341), + [sym_scoped_identifier] = STATE(1563), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(348), + [sym_match_expression] = STATE(348), + [sym_while_expression] = STATE(348), + [sym_loop_expression] = STATE(348), + [sym_for_expression] = STATE(348), + [sym_const_block] = STATE(348), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3644), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(348), + [sym_async_block] = STATE(348), + [sym_try_block] = STATE(348), + [sym_block] = STATE(348), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(3), [sym_block_comment] = STATE(3), - [aux_sym_source_file_repeat1] = STATE(2), - [aux_sym_function_modifiers_repeat1] = STATE(2206), + [aux_sym_source_file_repeat1] = STATE(24), + [aux_sym_function_modifiers_repeat1] = STATE(2255), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(121), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(119), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(39), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_fn] = ACTIONS(51), - [anon_sym_for] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_impl] = ACTIONS(57), - [anon_sym_let] = ACTIONS(59), - [anon_sym_loop] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_mod] = ACTIONS(65), - [anon_sym_pub] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_trait] = ACTIONS(75), - [anon_sym_type] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_unsafe] = ACTIONS(81), - [anon_sym_use] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_extern] = ACTIONS(87), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(93), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_RBRACE] = ACTIONS(123), + [anon_sym_macro] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_POUND] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_impl] = ACTIONS(59), + [anon_sym_let] = ACTIONS(61), + [anon_sym_loop] = ACTIONS(63), + [anon_sym_match] = ACTIONS(65), + [anon_sym_mod] = ACTIONS(67), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_trait] = ACTIONS(77), + [anon_sym_type] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_unsafe] = ACTIONS(83), + [anon_sym_use] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_extern] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(113), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [4] = { - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1845), - [sym_macro_invocation] = STATE(395), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym__statement] = STATE(710), + [sym_empty_statement] = STATE(709), + [sym_expression_statement] = STATE(709), + [sym_macro_rules] = STATE(709), + [sym_macro_definition] = STATE(709), + [sym_attribute_item] = STATE(709), + [sym_inner_attribute_item] = STATE(709), + [sym_mod_item] = STATE(709), + [sym_foreign_mod_item] = STATE(709), + [sym_struct_item] = STATE(709), + [sym_union_item] = STATE(709), + [sym_enum_item] = STATE(709), + [sym_extern_crate_declaration] = STATE(709), + [sym_const_item] = STATE(709), + [sym_static_item] = STATE(709), + [sym_type_item] = STATE(709), + [sym_function_item] = STATE(709), + [sym_function_signature_item] = STATE(709), + [sym_function_modifiers] = STATE(3651), + [sym_impl_item] = STATE(709), + [sym_trait_item] = STATE(709), + [sym_associated_type] = STATE(709), + [sym_let_declaration] = STATE(709), + [sym_use_declaration] = STATE(709), + [sym_extern_modifier] = STATE(2207), + [sym_visibility_modifier] = STATE(1957), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1901), + [sym_macro_invocation] = STATE(341), + [sym_scoped_identifier] = STATE(1563), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(348), + [sym_match_expression] = STATE(348), + [sym_while_expression] = STATE(348), + [sym_loop_expression] = STATE(348), + [sym_for_expression] = STATE(348), + [sym_const_block] = STATE(348), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3644), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(348), + [sym_async_block] = STATE(348), + [sym_try_block] = STATE(348), + [sym_block] = STATE(348), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(4), [sym_block_comment] = STATE(4), - [aux_sym_source_file_repeat1] = STATE(7), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [ts_builtin_sym_end] = ACTIONS(123), - [sym_identifier] = ACTIONS(9), - [anon_sym_SEMI] = ACTIONS(11), - [anon_sym_macro_rules_BANG] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(119), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(39), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_fn] = ACTIONS(51), - [anon_sym_for] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_impl] = ACTIONS(57), - [anon_sym_let] = ACTIONS(59), - [anon_sym_loop] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_mod] = ACTIONS(65), - [anon_sym_pub] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_trait] = ACTIONS(75), - [anon_sym_type] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_unsafe] = ACTIONS(81), - [anon_sym_use] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_extern] = ACTIONS(87), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(93), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [aux_sym_source_file_repeat1] = STATE(4), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [ts_builtin_sym_end] = ACTIONS(125), + [sym_identifier] = ACTIONS(127), + [anon_sym_SEMI] = ACTIONS(130), + [anon_sym_macro_rules_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(136), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(142), + [anon_sym_macro] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(148), + [anon_sym_u8] = ACTIONS(151), + [anon_sym_i8] = ACTIONS(151), + [anon_sym_u16] = ACTIONS(151), + [anon_sym_i16] = ACTIONS(151), + [anon_sym_u32] = ACTIONS(151), + [anon_sym_i32] = ACTIONS(151), + [anon_sym_u64] = ACTIONS(151), + [anon_sym_i64] = ACTIONS(151), + [anon_sym_u128] = ACTIONS(151), + [anon_sym_i128] = ACTIONS(151), + [anon_sym_isize] = ACTIONS(151), + [anon_sym_usize] = ACTIONS(151), + [anon_sym_f32] = ACTIONS(151), + [anon_sym_f64] = ACTIONS(151), + [anon_sym_bool] = ACTIONS(151), + [anon_sym_str] = ACTIONS(151), + [anon_sym_char] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(148), + [anon_sym_BANG] = ACTIONS(148), + [anon_sym_AMP] = ACTIONS(154), + [anon_sym_PIPE] = ACTIONS(157), + [anon_sym_LT] = ACTIONS(160), + [anon_sym_DOT_DOT] = ACTIONS(163), + [anon_sym_COLON_COLON] = ACTIONS(166), + [anon_sym_POUND] = ACTIONS(169), + [anon_sym_SQUOTE] = ACTIONS(172), + [anon_sym_async] = ACTIONS(175), + [anon_sym_break] = ACTIONS(178), + [anon_sym_const] = ACTIONS(181), + [anon_sym_continue] = ACTIONS(184), + [anon_sym_default] = ACTIONS(187), + [anon_sym_enum] = ACTIONS(190), + [anon_sym_fn] = ACTIONS(193), + [anon_sym_for] = ACTIONS(196), + [anon_sym_if] = ACTIONS(199), + [anon_sym_impl] = ACTIONS(202), + [anon_sym_let] = ACTIONS(205), + [anon_sym_loop] = ACTIONS(208), + [anon_sym_match] = ACTIONS(211), + [anon_sym_mod] = ACTIONS(214), + [anon_sym_pub] = ACTIONS(217), + [anon_sym_return] = ACTIONS(220), + [anon_sym_static] = ACTIONS(223), + [anon_sym_struct] = ACTIONS(226), + [anon_sym_trait] = ACTIONS(229), + [anon_sym_type] = ACTIONS(232), + [anon_sym_union] = ACTIONS(235), + [anon_sym_unsafe] = ACTIONS(238), + [anon_sym_use] = ACTIONS(241), + [anon_sym_while] = ACTIONS(244), + [anon_sym_extern] = ACTIONS(247), + [anon_sym_yield] = ACTIONS(250), + [anon_sym_move] = ACTIONS(253), + [anon_sym_try] = ACTIONS(256), + [sym_integer_literal] = ACTIONS(259), + [aux_sym_string_literal_token1] = ACTIONS(262), + [sym_char_literal] = ACTIONS(259), + [anon_sym_true] = ACTIONS(265), + [anon_sym_false] = ACTIONS(265), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(268), + [sym_super] = ACTIONS(271), + [sym_crate] = ACTIONS(274), + [sym_metavariable] = ACTIONS(277), + [sym__raw_string_literal_start] = ACTIONS(280), + [sym_float_literal] = ACTIONS(259), }, [5] = { - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1748), - [sym_macro_invocation] = STATE(395), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym__statement] = STATE(710), + [sym_empty_statement] = STATE(709), + [sym_expression_statement] = STATE(709), + [sym_macro_rules] = STATE(709), + [sym_macro_definition] = STATE(709), + [sym_attribute_item] = STATE(709), + [sym_inner_attribute_item] = STATE(709), + [sym_mod_item] = STATE(709), + [sym_foreign_mod_item] = STATE(709), + [sym_struct_item] = STATE(709), + [sym_union_item] = STATE(709), + [sym_enum_item] = STATE(709), + [sym_extern_crate_declaration] = STATE(709), + [sym_const_item] = STATE(709), + [sym_static_item] = STATE(709), + [sym_type_item] = STATE(709), + [sym_function_item] = STATE(709), + [sym_function_signature_item] = STATE(709), + [sym_function_modifiers] = STATE(3651), + [sym_impl_item] = STATE(709), + [sym_trait_item] = STATE(709), + [sym_associated_type] = STATE(709), + [sym_let_declaration] = STATE(709), + [sym_use_declaration] = STATE(709), + [sym_extern_modifier] = STATE(2207), + [sym_visibility_modifier] = STATE(1957), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1901), + [sym_macro_invocation] = STATE(341), + [sym_scoped_identifier] = STATE(1563), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(348), + [sym_match_expression] = STATE(348), + [sym_while_expression] = STATE(348), + [sym_loop_expression] = STATE(348), + [sym_for_expression] = STATE(348), + [sym_const_block] = STATE(348), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3644), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(348), + [sym_async_block] = STATE(348), + [sym_try_block] = STATE(348), + [sym_block] = STATE(348), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(5), [sym_block_comment] = STATE(5), - [aux_sym_source_file_repeat1] = STATE(6), - [aux_sym_function_modifiers_repeat1] = STATE(2206), + [aux_sym_source_file_repeat1] = STATE(18), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [ts_builtin_sym_end] = ACTIONS(283), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(119), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(39), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_fn] = ACTIONS(51), - [anon_sym_for] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_impl] = ACTIONS(57), - [anon_sym_let] = ACTIONS(59), - [anon_sym_loop] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_mod] = ACTIONS(65), - [anon_sym_pub] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_trait] = ACTIONS(75), - [anon_sym_type] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_unsafe] = ACTIONS(81), - [anon_sym_use] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_extern] = ACTIONS(87), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(93), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_macro] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_POUND] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_impl] = ACTIONS(59), + [anon_sym_let] = ACTIONS(61), + [anon_sym_loop] = ACTIONS(63), + [anon_sym_match] = ACTIONS(65), + [anon_sym_mod] = ACTIONS(67), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_trait] = ACTIONS(77), + [anon_sym_type] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_unsafe] = ACTIONS(83), + [anon_sym_use] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_extern] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(113), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [6] = { - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1660), - [sym_macro_invocation] = STATE(395), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym__statement] = STATE(710), + [sym_empty_statement] = STATE(709), + [sym_expression_statement] = STATE(709), + [sym_macro_rules] = STATE(709), + [sym_macro_definition] = STATE(709), + [sym_attribute_item] = STATE(709), + [sym_inner_attribute_item] = STATE(709), + [sym_mod_item] = STATE(709), + [sym_foreign_mod_item] = STATE(709), + [sym_struct_item] = STATE(709), + [sym_union_item] = STATE(709), + [sym_enum_item] = STATE(709), + [sym_extern_crate_declaration] = STATE(709), + [sym_const_item] = STATE(709), + [sym_static_item] = STATE(709), + [sym_type_item] = STATE(709), + [sym_function_item] = STATE(709), + [sym_function_signature_item] = STATE(709), + [sym_function_modifiers] = STATE(3651), + [sym_impl_item] = STATE(709), + [sym_trait_item] = STATE(709), + [sym_associated_type] = STATE(709), + [sym_let_declaration] = STATE(709), + [sym_use_declaration] = STATE(709), + [sym_extern_modifier] = STATE(2207), + [sym_visibility_modifier] = STATE(1957), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1744), + [sym_macro_invocation] = STATE(341), + [sym_scoped_identifier] = STATE(1563), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(348), + [sym_match_expression] = STATE(348), + [sym_while_expression] = STATE(348), + [sym_loop_expression] = STATE(348), + [sym_for_expression] = STATE(348), + [sym_const_block] = STATE(348), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3644), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(348), + [sym_async_block] = STATE(348), + [sym_try_block] = STATE(348), + [sym_block] = STATE(348), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(6), [sym_block_comment] = STATE(6), [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(2206), + [aux_sym_function_modifiers_repeat1] = STATE(2255), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(127), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(119), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(39), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_fn] = ACTIONS(51), - [anon_sym_for] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_impl] = ACTIONS(57), - [anon_sym_let] = ACTIONS(59), - [anon_sym_loop] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_mod] = ACTIONS(65), - [anon_sym_pub] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_trait] = ACTIONS(75), - [anon_sym_type] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_unsafe] = ACTIONS(81), - [anon_sym_use] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_extern] = ACTIONS(87), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(93), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_RBRACE] = ACTIONS(285), + [anon_sym_macro] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_POUND] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_impl] = ACTIONS(59), + [anon_sym_let] = ACTIONS(61), + [anon_sym_loop] = ACTIONS(63), + [anon_sym_match] = ACTIONS(65), + [anon_sym_mod] = ACTIONS(67), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_trait] = ACTIONS(77), + [anon_sym_type] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_unsafe] = ACTIONS(83), + [anon_sym_use] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_extern] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(113), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [7] = { - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1845), - [sym_macro_invocation] = STATE(395), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym__statement] = STATE(710), + [sym_empty_statement] = STATE(709), + [sym_expression_statement] = STATE(709), + [sym_macro_rules] = STATE(709), + [sym_macro_definition] = STATE(709), + [sym_attribute_item] = STATE(709), + [sym_inner_attribute_item] = STATE(709), + [sym_mod_item] = STATE(709), + [sym_foreign_mod_item] = STATE(709), + [sym_struct_item] = STATE(709), + [sym_union_item] = STATE(709), + [sym_enum_item] = STATE(709), + [sym_extern_crate_declaration] = STATE(709), + [sym_const_item] = STATE(709), + [sym_static_item] = STATE(709), + [sym_type_item] = STATE(709), + [sym_function_item] = STATE(709), + [sym_function_signature_item] = STATE(709), + [sym_function_modifiers] = STATE(3651), + [sym_impl_item] = STATE(709), + [sym_trait_item] = STATE(709), + [sym_associated_type] = STATE(709), + [sym_let_declaration] = STATE(709), + [sym_use_declaration] = STATE(709), + [sym_extern_modifier] = STATE(2207), + [sym_visibility_modifier] = STATE(1957), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1829), + [sym_macro_invocation] = STATE(341), + [sym_scoped_identifier] = STATE(1563), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(348), + [sym_match_expression] = STATE(348), + [sym_while_expression] = STATE(348), + [sym_loop_expression] = STATE(348), + [sym_for_expression] = STATE(348), + [sym_const_block] = STATE(348), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3644), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(348), + [sym_async_block] = STATE(348), + [sym_try_block] = STATE(348), + [sym_block] = STATE(348), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(7), [sym_block_comment] = STATE(7), - [aux_sym_source_file_repeat1] = STATE(8), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [ts_builtin_sym_end] = ACTIONS(129), + [aux_sym_source_file_repeat1] = STATE(12), + [aux_sym_function_modifiers_repeat1] = STATE(2255), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(119), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(39), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_fn] = ACTIONS(51), - [anon_sym_for] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_impl] = ACTIONS(57), - [anon_sym_let] = ACTIONS(59), - [anon_sym_loop] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_mod] = ACTIONS(65), - [anon_sym_pub] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_trait] = ACTIONS(75), - [anon_sym_type] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_unsafe] = ACTIONS(81), - [anon_sym_use] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_extern] = ACTIONS(87), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(93), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_RBRACE] = ACTIONS(287), + [anon_sym_macro] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_POUND] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_impl] = ACTIONS(59), + [anon_sym_let] = ACTIONS(61), + [anon_sym_loop] = ACTIONS(63), + [anon_sym_match] = ACTIONS(65), + [anon_sym_mod] = ACTIONS(67), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_trait] = ACTIONS(77), + [anon_sym_type] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_unsafe] = ACTIONS(83), + [anon_sym_use] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_extern] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(113), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [8] = { - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1845), - [sym_macro_invocation] = STATE(395), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym__statement] = STATE(710), + [sym_empty_statement] = STATE(709), + [sym_expression_statement] = STATE(709), + [sym_macro_rules] = STATE(709), + [sym_macro_definition] = STATE(709), + [sym_attribute_item] = STATE(709), + [sym_inner_attribute_item] = STATE(709), + [sym_mod_item] = STATE(709), + [sym_foreign_mod_item] = STATE(709), + [sym_struct_item] = STATE(709), + [sym_union_item] = STATE(709), + [sym_enum_item] = STATE(709), + [sym_extern_crate_declaration] = STATE(709), + [sym_const_item] = STATE(709), + [sym_static_item] = STATE(709), + [sym_type_item] = STATE(709), + [sym_function_item] = STATE(709), + [sym_function_signature_item] = STATE(709), + [sym_function_modifiers] = STATE(3651), + [sym_impl_item] = STATE(709), + [sym_trait_item] = STATE(709), + [sym_associated_type] = STATE(709), + [sym_let_declaration] = STATE(709), + [sym_use_declaration] = STATE(709), + [sym_extern_modifier] = STATE(2207), + [sym_visibility_modifier] = STATE(1957), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1872), + [sym_macro_invocation] = STATE(341), + [sym_scoped_identifier] = STATE(1563), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(348), + [sym_match_expression] = STATE(348), + [sym_while_expression] = STATE(348), + [sym_loop_expression] = STATE(348), + [sym_for_expression] = STATE(348), + [sym_const_block] = STATE(348), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3644), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(348), + [sym_async_block] = STATE(348), + [sym_try_block] = STATE(348), + [sym_block] = STATE(348), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(8), [sym_block_comment] = STATE(8), - [aux_sym_source_file_repeat1] = STATE(8), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [ts_builtin_sym_end] = ACTIONS(131), - [sym_identifier] = ACTIONS(133), - [anon_sym_SEMI] = ACTIONS(136), - [anon_sym_macro_rules_BANG] = ACTIONS(139), - [anon_sym_LPAREN] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(148), - [anon_sym_STAR] = ACTIONS(151), - [anon_sym_u8] = ACTIONS(154), - [anon_sym_i8] = ACTIONS(154), - [anon_sym_u16] = ACTIONS(154), - [anon_sym_i16] = ACTIONS(154), - [anon_sym_u32] = ACTIONS(154), - [anon_sym_i32] = ACTIONS(154), - [anon_sym_u64] = ACTIONS(154), - [anon_sym_i64] = ACTIONS(154), - [anon_sym_u128] = ACTIONS(154), - [anon_sym_i128] = ACTIONS(154), - [anon_sym_isize] = ACTIONS(154), - [anon_sym_usize] = ACTIONS(154), - [anon_sym_f32] = ACTIONS(154), - [anon_sym_f64] = ACTIONS(154), - [anon_sym_bool] = ACTIONS(154), - [anon_sym_str] = ACTIONS(154), - [anon_sym_char] = ACTIONS(154), - [anon_sym_DASH] = ACTIONS(151), - [anon_sym_BANG] = ACTIONS(151), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_PIPE] = ACTIONS(160), - [anon_sym_LT] = ACTIONS(163), - [anon_sym_DOT_DOT] = ACTIONS(166), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_POUND] = ACTIONS(172), - [anon_sym_SQUOTE] = ACTIONS(175), - [anon_sym_async] = ACTIONS(178), - [anon_sym_break] = ACTIONS(181), - [anon_sym_const] = ACTIONS(184), - [anon_sym_continue] = ACTIONS(187), - [anon_sym_default] = ACTIONS(190), - [anon_sym_enum] = ACTIONS(193), - [anon_sym_fn] = ACTIONS(196), - [anon_sym_for] = ACTIONS(199), - [anon_sym_if] = ACTIONS(202), - [anon_sym_impl] = ACTIONS(205), - [anon_sym_let] = ACTIONS(208), - [anon_sym_loop] = ACTIONS(211), - [anon_sym_match] = ACTIONS(214), - [anon_sym_mod] = ACTIONS(217), - [anon_sym_pub] = ACTIONS(220), - [anon_sym_return] = ACTIONS(223), - [anon_sym_static] = ACTIONS(226), - [anon_sym_struct] = ACTIONS(229), - [anon_sym_trait] = ACTIONS(232), - [anon_sym_type] = ACTIONS(235), - [anon_sym_union] = ACTIONS(238), - [anon_sym_unsafe] = ACTIONS(241), - [anon_sym_use] = ACTIONS(244), - [anon_sym_while] = ACTIONS(247), - [anon_sym_extern] = ACTIONS(250), - [anon_sym_yield] = ACTIONS(253), - [anon_sym_move] = ACTIONS(256), - [anon_sym_try] = ACTIONS(259), - [sym_integer_literal] = ACTIONS(262), - [aux_sym_string_literal_token1] = ACTIONS(265), - [sym_char_literal] = ACTIONS(262), - [anon_sym_true] = ACTIONS(268), - [anon_sym_false] = ACTIONS(268), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(271), - [sym_super] = ACTIONS(274), - [sym_crate] = ACTIONS(277), - [sym_metavariable] = ACTIONS(280), - [sym__raw_string_literal_start] = ACTIONS(283), - [sym_float_literal] = ACTIONS(262), + [aux_sym_source_file_repeat1] = STATE(22), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(9), + [anon_sym_SEMI] = ACTIONS(11), + [anon_sym_macro_rules_BANG] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(19), + [anon_sym_RBRACE] = ACTIONS(289), + [anon_sym_macro] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_POUND] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_impl] = ACTIONS(59), + [anon_sym_let] = ACTIONS(61), + [anon_sym_loop] = ACTIONS(63), + [anon_sym_match] = ACTIONS(65), + [anon_sym_mod] = ACTIONS(67), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_trait] = ACTIONS(77), + [anon_sym_type] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_unsafe] = ACTIONS(83), + [anon_sym_use] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_extern] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(113), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [9] = { - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1674), - [sym_macro_invocation] = STATE(395), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym__statement] = STATE(710), + [sym_empty_statement] = STATE(709), + [sym_expression_statement] = STATE(709), + [sym_macro_rules] = STATE(709), + [sym_macro_definition] = STATE(709), + [sym_attribute_item] = STATE(709), + [sym_inner_attribute_item] = STATE(709), + [sym_mod_item] = STATE(709), + [sym_foreign_mod_item] = STATE(709), + [sym_struct_item] = STATE(709), + [sym_union_item] = STATE(709), + [sym_enum_item] = STATE(709), + [sym_extern_crate_declaration] = STATE(709), + [sym_const_item] = STATE(709), + [sym_static_item] = STATE(709), + [sym_type_item] = STATE(709), + [sym_function_item] = STATE(709), + [sym_function_signature_item] = STATE(709), + [sym_function_modifiers] = STATE(3651), + [sym_impl_item] = STATE(709), + [sym_trait_item] = STATE(709), + [sym_associated_type] = STATE(709), + [sym_let_declaration] = STATE(709), + [sym_use_declaration] = STATE(709), + [sym_extern_modifier] = STATE(2207), + [sym_visibility_modifier] = STATE(1957), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1901), + [sym_macro_invocation] = STATE(341), + [sym_scoped_identifier] = STATE(1563), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(348), + [sym_match_expression] = STATE(348), + [sym_while_expression] = STATE(348), + [sym_loop_expression] = STATE(348), + [sym_for_expression] = STATE(348), + [sym_const_block] = STATE(348), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3644), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(348), + [sym_async_block] = STATE(348), + [sym_try_block] = STATE(348), + [sym_block] = STATE(348), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(9), [sym_block_comment] = STATE(9), - [aux_sym_source_file_repeat1] = STATE(10), - [aux_sym_function_modifiers_repeat1] = STATE(2206), + [aux_sym_source_file_repeat1] = STATE(4), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [ts_builtin_sym_end] = ACTIONS(283), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(286), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(119), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(39), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_fn] = ACTIONS(51), - [anon_sym_for] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_impl] = ACTIONS(57), - [anon_sym_let] = ACTIONS(59), - [anon_sym_loop] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_mod] = ACTIONS(65), - [anon_sym_pub] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_trait] = ACTIONS(75), - [anon_sym_type] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_unsafe] = ACTIONS(81), - [anon_sym_use] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_extern] = ACTIONS(87), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(93), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_macro] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_POUND] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_impl] = ACTIONS(59), + [anon_sym_let] = ACTIONS(61), + [anon_sym_loop] = ACTIONS(63), + [anon_sym_match] = ACTIONS(65), + [anon_sym_mod] = ACTIONS(67), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_trait] = ACTIONS(77), + [anon_sym_type] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_unsafe] = ACTIONS(83), + [anon_sym_use] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_extern] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(113), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [10] = { - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1702), - [sym_macro_invocation] = STATE(395), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym__statement] = STATE(710), + [sym_empty_statement] = STATE(709), + [sym_expression_statement] = STATE(709), + [sym_macro_rules] = STATE(709), + [sym_macro_definition] = STATE(709), + [sym_attribute_item] = STATE(709), + [sym_inner_attribute_item] = STATE(709), + [sym_mod_item] = STATE(709), + [sym_foreign_mod_item] = STATE(709), + [sym_struct_item] = STATE(709), + [sym_union_item] = STATE(709), + [sym_enum_item] = STATE(709), + [sym_extern_crate_declaration] = STATE(709), + [sym_const_item] = STATE(709), + [sym_static_item] = STATE(709), + [sym_type_item] = STATE(709), + [sym_function_item] = STATE(709), + [sym_function_signature_item] = STATE(709), + [sym_function_modifiers] = STATE(3651), + [sym_impl_item] = STATE(709), + [sym_trait_item] = STATE(709), + [sym_associated_type] = STATE(709), + [sym_let_declaration] = STATE(709), + [sym_use_declaration] = STATE(709), + [sym_extern_modifier] = STATE(2207), + [sym_visibility_modifier] = STATE(1957), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1754), + [sym_macro_invocation] = STATE(341), + [sym_scoped_identifier] = STATE(1563), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(348), + [sym_match_expression] = STATE(348), + [sym_while_expression] = STATE(348), + [sym_loop_expression] = STATE(348), + [sym_for_expression] = STATE(348), + [sym_const_block] = STATE(348), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3644), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(348), + [sym_async_block] = STATE(348), + [sym_try_block] = STATE(348), + [sym_block] = STATE(348), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(10), [sym_block_comment] = STATE(10), - [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(2206), + [aux_sym_source_file_repeat1] = STATE(2), + [aux_sym_function_modifiers_repeat1] = STATE(2255), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(288), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(119), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(39), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_fn] = ACTIONS(51), - [anon_sym_for] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_impl] = ACTIONS(57), - [anon_sym_let] = ACTIONS(59), - [anon_sym_loop] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_mod] = ACTIONS(65), - [anon_sym_pub] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_trait] = ACTIONS(75), - [anon_sym_type] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_unsafe] = ACTIONS(81), - [anon_sym_use] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_extern] = ACTIONS(87), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(93), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_RBRACE] = ACTIONS(291), + [anon_sym_macro] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_POUND] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_impl] = ACTIONS(59), + [anon_sym_let] = ACTIONS(61), + [anon_sym_loop] = ACTIONS(63), + [anon_sym_match] = ACTIONS(65), + [anon_sym_mod] = ACTIONS(67), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_trait] = ACTIONS(77), + [anon_sym_type] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_unsafe] = ACTIONS(83), + [anon_sym_use] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_extern] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(113), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [11] = { - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1794), - [sym_macro_invocation] = STATE(395), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym__statement] = STATE(710), + [sym_empty_statement] = STATE(709), + [sym_expression_statement] = STATE(709), + [sym_macro_rules] = STATE(709), + [sym_macro_definition] = STATE(709), + [sym_attribute_item] = STATE(709), + [sym_inner_attribute_item] = STATE(709), + [sym_mod_item] = STATE(709), + [sym_foreign_mod_item] = STATE(709), + [sym_struct_item] = STATE(709), + [sym_union_item] = STATE(709), + [sym_enum_item] = STATE(709), + [sym_extern_crate_declaration] = STATE(709), + [sym_const_item] = STATE(709), + [sym_static_item] = STATE(709), + [sym_type_item] = STATE(709), + [sym_function_item] = STATE(709), + [sym_function_signature_item] = STATE(709), + [sym_function_modifiers] = STATE(3651), + [sym_impl_item] = STATE(709), + [sym_trait_item] = STATE(709), + [sym_associated_type] = STATE(709), + [sym_let_declaration] = STATE(709), + [sym_use_declaration] = STATE(709), + [sym_extern_modifier] = STATE(2207), + [sym_visibility_modifier] = STATE(1957), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1733), + [sym_macro_invocation] = STATE(341), + [sym_scoped_identifier] = STATE(1563), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(348), + [sym_match_expression] = STATE(348), + [sym_while_expression] = STATE(348), + [sym_loop_expression] = STATE(348), + [sym_for_expression] = STATE(348), + [sym_const_block] = STATE(348), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3644), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(348), + [sym_async_block] = STATE(348), + [sym_try_block] = STATE(348), + [sym_block] = STATE(348), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(11), [sym_block_comment] = STATE(11), - [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(2206), + [aux_sym_source_file_repeat1] = STATE(14), + [aux_sym_function_modifiers_repeat1] = STATE(2255), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(290), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(119), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(39), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_fn] = ACTIONS(51), - [anon_sym_for] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_impl] = ACTIONS(57), - [anon_sym_let] = ACTIONS(59), - [anon_sym_loop] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_mod] = ACTIONS(65), - [anon_sym_pub] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_trait] = ACTIONS(75), - [anon_sym_type] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_unsafe] = ACTIONS(81), - [anon_sym_use] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_extern] = ACTIONS(87), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(93), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_RBRACE] = ACTIONS(293), + [anon_sym_macro] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_POUND] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_impl] = ACTIONS(59), + [anon_sym_let] = ACTIONS(61), + [anon_sym_loop] = ACTIONS(63), + [anon_sym_match] = ACTIONS(65), + [anon_sym_mod] = ACTIONS(67), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_trait] = ACTIONS(77), + [anon_sym_type] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_unsafe] = ACTIONS(83), + [anon_sym_use] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_extern] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(113), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [12] = { - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1797), - [sym_macro_invocation] = STATE(395), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym__statement] = STATE(710), + [sym_empty_statement] = STATE(709), + [sym_expression_statement] = STATE(709), + [sym_macro_rules] = STATE(709), + [sym_macro_definition] = STATE(709), + [sym_attribute_item] = STATE(709), + [sym_inner_attribute_item] = STATE(709), + [sym_mod_item] = STATE(709), + [sym_foreign_mod_item] = STATE(709), + [sym_struct_item] = STATE(709), + [sym_union_item] = STATE(709), + [sym_enum_item] = STATE(709), + [sym_extern_crate_declaration] = STATE(709), + [sym_const_item] = STATE(709), + [sym_static_item] = STATE(709), + [sym_type_item] = STATE(709), + [sym_function_item] = STATE(709), + [sym_function_signature_item] = STATE(709), + [sym_function_modifiers] = STATE(3651), + [sym_impl_item] = STATE(709), + [sym_trait_item] = STATE(709), + [sym_associated_type] = STATE(709), + [sym_let_declaration] = STATE(709), + [sym_use_declaration] = STATE(709), + [sym_extern_modifier] = STATE(2207), + [sym_visibility_modifier] = STATE(1957), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1821), + [sym_macro_invocation] = STATE(341), + [sym_scoped_identifier] = STATE(1563), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(348), + [sym_match_expression] = STATE(348), + [sym_while_expression] = STATE(348), + [sym_loop_expression] = STATE(348), + [sym_for_expression] = STATE(348), + [sym_const_block] = STATE(348), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3644), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(348), + [sym_async_block] = STATE(348), + [sym_try_block] = STATE(348), + [sym_block] = STATE(348), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(12), [sym_block_comment] = STATE(12), - [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(2206), + [aux_sym_source_file_repeat1] = STATE(28), + [aux_sym_function_modifiers_repeat1] = STATE(2255), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(292), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(119), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(39), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_fn] = ACTIONS(51), - [anon_sym_for] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_impl] = ACTIONS(57), - [anon_sym_let] = ACTIONS(59), - [anon_sym_loop] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_mod] = ACTIONS(65), - [anon_sym_pub] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_trait] = ACTIONS(75), - [anon_sym_type] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_unsafe] = ACTIONS(81), - [anon_sym_use] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_extern] = ACTIONS(87), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(93), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_RBRACE] = ACTIONS(295), + [anon_sym_macro] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_POUND] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_impl] = ACTIONS(59), + [anon_sym_let] = ACTIONS(61), + [anon_sym_loop] = ACTIONS(63), + [anon_sym_match] = ACTIONS(65), + [anon_sym_mod] = ACTIONS(67), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_trait] = ACTIONS(77), + [anon_sym_type] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_unsafe] = ACTIONS(83), + [anon_sym_use] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_extern] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(113), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [13] = { - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1845), - [sym_macro_invocation] = STATE(404), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym__statement] = STATE(710), + [sym_empty_statement] = STATE(709), + [sym_expression_statement] = STATE(709), + [sym_macro_rules] = STATE(709), + [sym_macro_definition] = STATE(709), + [sym_attribute_item] = STATE(709), + [sym_inner_attribute_item] = STATE(709), + [sym_mod_item] = STATE(709), + [sym_foreign_mod_item] = STATE(709), + [sym_struct_item] = STATE(709), + [sym_union_item] = STATE(709), + [sym_enum_item] = STATE(709), + [sym_extern_crate_declaration] = STATE(709), + [sym_const_item] = STATE(709), + [sym_static_item] = STATE(709), + [sym_type_item] = STATE(709), + [sym_function_item] = STATE(709), + [sym_function_signature_item] = STATE(709), + [sym_function_modifiers] = STATE(3651), + [sym_impl_item] = STATE(709), + [sym_trait_item] = STATE(709), + [sym_associated_type] = STATE(709), + [sym_let_declaration] = STATE(709), + [sym_use_declaration] = STATE(709), + [sym_extern_modifier] = STATE(2207), + [sym_visibility_modifier] = STATE(1957), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1871), + [sym_macro_invocation] = STATE(341), + [sym_scoped_identifier] = STATE(1563), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(348), + [sym_match_expression] = STATE(348), + [sym_while_expression] = STATE(348), + [sym_loop_expression] = STATE(348), + [sym_for_expression] = STATE(348), + [sym_const_block] = STATE(348), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3644), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(348), + [sym_async_block] = STATE(348), + [sym_try_block] = STATE(348), + [sym_block] = STATE(348), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(13), [sym_block_comment] = STATE(13), - [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(133), - [anon_sym_SEMI] = ACTIONS(136), - [anon_sym_macro_rules_BANG] = ACTIONS(139), - [anon_sym_LPAREN] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(148), - [anon_sym_RBRACE] = ACTIONS(131), - [anon_sym_STAR] = ACTIONS(151), - [anon_sym_u8] = ACTIONS(154), - [anon_sym_i8] = ACTIONS(154), - [anon_sym_u16] = ACTIONS(154), - [anon_sym_i16] = ACTIONS(154), - [anon_sym_u32] = ACTIONS(154), - [anon_sym_i32] = ACTIONS(154), - [anon_sym_u64] = ACTIONS(154), - [anon_sym_i64] = ACTIONS(154), - [anon_sym_u128] = ACTIONS(154), - [anon_sym_i128] = ACTIONS(154), - [anon_sym_isize] = ACTIONS(154), - [anon_sym_usize] = ACTIONS(154), - [anon_sym_f32] = ACTIONS(154), - [anon_sym_f64] = ACTIONS(154), - [anon_sym_bool] = ACTIONS(154), - [anon_sym_str] = ACTIONS(154), - [anon_sym_char] = ACTIONS(154), - [anon_sym_DASH] = ACTIONS(151), - [anon_sym_BANG] = ACTIONS(151), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_PIPE] = ACTIONS(160), - [anon_sym_LT] = ACTIONS(163), - [anon_sym_DOT_DOT] = ACTIONS(166), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_POUND] = ACTIONS(172), - [anon_sym_SQUOTE] = ACTIONS(175), - [anon_sym_async] = ACTIONS(178), - [anon_sym_break] = ACTIONS(181), - [anon_sym_const] = ACTIONS(184), - [anon_sym_continue] = ACTIONS(187), - [anon_sym_default] = ACTIONS(190), - [anon_sym_enum] = ACTIONS(193), - [anon_sym_fn] = ACTIONS(196), - [anon_sym_for] = ACTIONS(199), - [anon_sym_if] = ACTIONS(202), - [anon_sym_impl] = ACTIONS(205), - [anon_sym_let] = ACTIONS(208), - [anon_sym_loop] = ACTIONS(211), - [anon_sym_match] = ACTIONS(214), - [anon_sym_mod] = ACTIONS(217), - [anon_sym_pub] = ACTIONS(220), - [anon_sym_return] = ACTIONS(223), - [anon_sym_static] = ACTIONS(226), - [anon_sym_struct] = ACTIONS(229), - [anon_sym_trait] = ACTIONS(232), - [anon_sym_type] = ACTIONS(235), - [anon_sym_union] = ACTIONS(238), - [anon_sym_unsafe] = ACTIONS(241), - [anon_sym_use] = ACTIONS(244), - [anon_sym_while] = ACTIONS(247), - [anon_sym_extern] = ACTIONS(250), - [anon_sym_yield] = ACTIONS(253), - [anon_sym_move] = ACTIONS(256), - [anon_sym_try] = ACTIONS(259), - [sym_integer_literal] = ACTIONS(262), - [aux_sym_string_literal_token1] = ACTIONS(265), - [sym_char_literal] = ACTIONS(262), - [anon_sym_true] = ACTIONS(268), - [anon_sym_false] = ACTIONS(268), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(271), - [sym_super] = ACTIONS(274), - [sym_crate] = ACTIONS(277), - [sym_metavariable] = ACTIONS(280), - [sym__raw_string_literal_start] = ACTIONS(283), - [sym_float_literal] = ACTIONS(262), + [aux_sym_source_file_repeat1] = STATE(28), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(9), + [anon_sym_SEMI] = ACTIONS(11), + [anon_sym_macro_rules_BANG] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(19), + [anon_sym_RBRACE] = ACTIONS(297), + [anon_sym_macro] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_POUND] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_impl] = ACTIONS(59), + [anon_sym_let] = ACTIONS(61), + [anon_sym_loop] = ACTIONS(63), + [anon_sym_match] = ACTIONS(65), + [anon_sym_mod] = ACTIONS(67), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_trait] = ACTIONS(77), + [anon_sym_type] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_unsafe] = ACTIONS(83), + [anon_sym_use] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_extern] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(113), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [14] = { - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1802), - [sym_macro_invocation] = STATE(395), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym__statement] = STATE(710), + [sym_empty_statement] = STATE(709), + [sym_expression_statement] = STATE(709), + [sym_macro_rules] = STATE(709), + [sym_macro_definition] = STATE(709), + [sym_attribute_item] = STATE(709), + [sym_inner_attribute_item] = STATE(709), + [sym_mod_item] = STATE(709), + [sym_foreign_mod_item] = STATE(709), + [sym_struct_item] = STATE(709), + [sym_union_item] = STATE(709), + [sym_enum_item] = STATE(709), + [sym_extern_crate_declaration] = STATE(709), + [sym_const_item] = STATE(709), + [sym_static_item] = STATE(709), + [sym_type_item] = STATE(709), + [sym_function_item] = STATE(709), + [sym_function_signature_item] = STATE(709), + [sym_function_modifiers] = STATE(3651), + [sym_impl_item] = STATE(709), + [sym_trait_item] = STATE(709), + [sym_associated_type] = STATE(709), + [sym_let_declaration] = STATE(709), + [sym_use_declaration] = STATE(709), + [sym_extern_modifier] = STATE(2207), + [sym_visibility_modifier] = STATE(1957), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1764), + [sym_macro_invocation] = STATE(341), + [sym_scoped_identifier] = STATE(1563), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(348), + [sym_match_expression] = STATE(348), + [sym_while_expression] = STATE(348), + [sym_loop_expression] = STATE(348), + [sym_for_expression] = STATE(348), + [sym_const_block] = STATE(348), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3644), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(348), + [sym_async_block] = STATE(348), + [sym_try_block] = STATE(348), + [sym_block] = STATE(348), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(14), [sym_block_comment] = STATE(14), - [aux_sym_source_file_repeat1] = STATE(15), - [aux_sym_function_modifiers_repeat1] = STATE(2206), + [aux_sym_source_file_repeat1] = STATE(28), + [aux_sym_function_modifiers_repeat1] = STATE(2255), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(294), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(119), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(39), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_fn] = ACTIONS(51), - [anon_sym_for] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_impl] = ACTIONS(57), - [anon_sym_let] = ACTIONS(59), - [anon_sym_loop] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_mod] = ACTIONS(65), - [anon_sym_pub] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_trait] = ACTIONS(75), - [anon_sym_type] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_unsafe] = ACTIONS(81), - [anon_sym_use] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_extern] = ACTIONS(87), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(93), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_RBRACE] = ACTIONS(299), + [anon_sym_macro] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_POUND] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_impl] = ACTIONS(59), + [anon_sym_let] = ACTIONS(61), + [anon_sym_loop] = ACTIONS(63), + [anon_sym_match] = ACTIONS(65), + [anon_sym_mod] = ACTIONS(67), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_trait] = ACTIONS(77), + [anon_sym_type] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_unsafe] = ACTIONS(83), + [anon_sym_use] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_extern] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(113), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [15] = { - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1805), - [sym_macro_invocation] = STATE(395), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym__statement] = STATE(710), + [sym_empty_statement] = STATE(709), + [sym_expression_statement] = STATE(709), + [sym_macro_rules] = STATE(709), + [sym_macro_definition] = STATE(709), + [sym_attribute_item] = STATE(709), + [sym_inner_attribute_item] = STATE(709), + [sym_mod_item] = STATE(709), + [sym_foreign_mod_item] = STATE(709), + [sym_struct_item] = STATE(709), + [sym_union_item] = STATE(709), + [sym_enum_item] = STATE(709), + [sym_extern_crate_declaration] = STATE(709), + [sym_const_item] = STATE(709), + [sym_static_item] = STATE(709), + [sym_type_item] = STATE(709), + [sym_function_item] = STATE(709), + [sym_function_signature_item] = STATE(709), + [sym_function_modifiers] = STATE(3651), + [sym_impl_item] = STATE(709), + [sym_trait_item] = STATE(709), + [sym_associated_type] = STATE(709), + [sym_let_declaration] = STATE(709), + [sym_use_declaration] = STATE(709), + [sym_extern_modifier] = STATE(2207), + [sym_visibility_modifier] = STATE(1957), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1813), + [sym_macro_invocation] = STATE(341), + [sym_scoped_identifier] = STATE(1563), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(348), + [sym_match_expression] = STATE(348), + [sym_while_expression] = STATE(348), + [sym_loop_expression] = STATE(348), + [sym_for_expression] = STATE(348), + [sym_const_block] = STATE(348), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3644), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(348), + [sym_async_block] = STATE(348), + [sym_try_block] = STATE(348), + [sym_block] = STATE(348), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(15), [sym_block_comment] = STATE(15), - [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(2206), + [aux_sym_source_file_repeat1] = STATE(20), + [aux_sym_function_modifiers_repeat1] = STATE(2255), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(296), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(119), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(39), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_fn] = ACTIONS(51), - [anon_sym_for] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_impl] = ACTIONS(57), - [anon_sym_let] = ACTIONS(59), - [anon_sym_loop] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_mod] = ACTIONS(65), - [anon_sym_pub] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_trait] = ACTIONS(75), - [anon_sym_type] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_unsafe] = ACTIONS(81), - [anon_sym_use] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_extern] = ACTIONS(87), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(93), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_RBRACE] = ACTIONS(301), + [anon_sym_macro] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_POUND] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_impl] = ACTIONS(59), + [anon_sym_let] = ACTIONS(61), + [anon_sym_loop] = ACTIONS(63), + [anon_sym_match] = ACTIONS(65), + [anon_sym_mod] = ACTIONS(67), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_trait] = ACTIONS(77), + [anon_sym_type] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_unsafe] = ACTIONS(83), + [anon_sym_use] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_extern] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(113), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [16] = { - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1810), - [sym_macro_invocation] = STATE(395), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym__statement] = STATE(710), + [sym_empty_statement] = STATE(709), + [sym_expression_statement] = STATE(709), + [sym_macro_rules] = STATE(709), + [sym_macro_definition] = STATE(709), + [sym_attribute_item] = STATE(709), + [sym_inner_attribute_item] = STATE(709), + [sym_mod_item] = STATE(709), + [sym_foreign_mod_item] = STATE(709), + [sym_struct_item] = STATE(709), + [sym_union_item] = STATE(709), + [sym_enum_item] = STATE(709), + [sym_extern_crate_declaration] = STATE(709), + [sym_const_item] = STATE(709), + [sym_static_item] = STATE(709), + [sym_type_item] = STATE(709), + [sym_function_item] = STATE(709), + [sym_function_signature_item] = STATE(709), + [sym_function_modifiers] = STATE(3651), + [sym_impl_item] = STATE(709), + [sym_trait_item] = STATE(709), + [sym_associated_type] = STATE(709), + [sym_let_declaration] = STATE(709), + [sym_use_declaration] = STATE(709), + [sym_extern_modifier] = STATE(2207), + [sym_visibility_modifier] = STATE(1957), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1772), + [sym_macro_invocation] = STATE(341), + [sym_scoped_identifier] = STATE(1563), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(348), + [sym_match_expression] = STATE(348), + [sym_while_expression] = STATE(348), + [sym_loop_expression] = STATE(348), + [sym_for_expression] = STATE(348), + [sym_const_block] = STATE(348), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3644), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(348), + [sym_async_block] = STATE(348), + [sym_try_block] = STATE(348), + [sym_block] = STATE(348), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(16), [sym_block_comment] = STATE(16), - [aux_sym_source_file_repeat1] = STATE(17), - [aux_sym_function_modifiers_repeat1] = STATE(2206), + [aux_sym_source_file_repeat1] = STATE(28), + [aux_sym_function_modifiers_repeat1] = STATE(2255), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(298), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(119), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(39), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_fn] = ACTIONS(51), - [anon_sym_for] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_impl] = ACTIONS(57), - [anon_sym_let] = ACTIONS(59), - [anon_sym_loop] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_mod] = ACTIONS(65), - [anon_sym_pub] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_trait] = ACTIONS(75), - [anon_sym_type] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_unsafe] = ACTIONS(81), - [anon_sym_use] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_extern] = ACTIONS(87), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(93), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_RBRACE] = ACTIONS(303), + [anon_sym_macro] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_POUND] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_impl] = ACTIONS(59), + [anon_sym_let] = ACTIONS(61), + [anon_sym_loop] = ACTIONS(63), + [anon_sym_match] = ACTIONS(65), + [anon_sym_mod] = ACTIONS(67), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_trait] = ACTIONS(77), + [anon_sym_type] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_unsafe] = ACTIONS(83), + [anon_sym_use] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_extern] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(113), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [17] = { - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1816), - [sym_macro_invocation] = STATE(395), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym__statement] = STATE(710), + [sym_empty_statement] = STATE(709), + [sym_expression_statement] = STATE(709), + [sym_macro_rules] = STATE(709), + [sym_macro_definition] = STATE(709), + [sym_attribute_item] = STATE(709), + [sym_inner_attribute_item] = STATE(709), + [sym_mod_item] = STATE(709), + [sym_foreign_mod_item] = STATE(709), + [sym_struct_item] = STATE(709), + [sym_union_item] = STATE(709), + [sym_enum_item] = STATE(709), + [sym_extern_crate_declaration] = STATE(709), + [sym_const_item] = STATE(709), + [sym_static_item] = STATE(709), + [sym_type_item] = STATE(709), + [sym_function_item] = STATE(709), + [sym_function_signature_item] = STATE(709), + [sym_function_modifiers] = STATE(3651), + [sym_impl_item] = STATE(709), + [sym_trait_item] = STATE(709), + [sym_associated_type] = STATE(709), + [sym_let_declaration] = STATE(709), + [sym_use_declaration] = STATE(709), + [sym_extern_modifier] = STATE(2207), + [sym_visibility_modifier] = STATE(1957), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1779), + [sym_macro_invocation] = STATE(341), + [sym_scoped_identifier] = STATE(1563), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(348), + [sym_match_expression] = STATE(348), + [sym_while_expression] = STATE(348), + [sym_loop_expression] = STATE(348), + [sym_for_expression] = STATE(348), + [sym_const_block] = STATE(348), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3644), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(348), + [sym_async_block] = STATE(348), + [sym_try_block] = STATE(348), + [sym_block] = STATE(348), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(17), [sym_block_comment] = STATE(17), - [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(2206), + [aux_sym_source_file_repeat1] = STATE(16), + [aux_sym_function_modifiers_repeat1] = STATE(2255), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(300), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(119), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(39), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_fn] = ACTIONS(51), - [anon_sym_for] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_impl] = ACTIONS(57), - [anon_sym_let] = ACTIONS(59), - [anon_sym_loop] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_mod] = ACTIONS(65), - [anon_sym_pub] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_trait] = ACTIONS(75), - [anon_sym_type] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_unsafe] = ACTIONS(81), - [anon_sym_use] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_extern] = ACTIONS(87), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(93), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_RBRACE] = ACTIONS(305), + [anon_sym_macro] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_POUND] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_impl] = ACTIONS(59), + [anon_sym_let] = ACTIONS(61), + [anon_sym_loop] = ACTIONS(63), + [anon_sym_match] = ACTIONS(65), + [anon_sym_mod] = ACTIONS(67), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_trait] = ACTIONS(77), + [anon_sym_type] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_unsafe] = ACTIONS(83), + [anon_sym_use] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_extern] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(113), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [18] = { - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1819), - [sym_macro_invocation] = STATE(395), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym__statement] = STATE(710), + [sym_empty_statement] = STATE(709), + [sym_expression_statement] = STATE(709), + [sym_macro_rules] = STATE(709), + [sym_macro_definition] = STATE(709), + [sym_attribute_item] = STATE(709), + [sym_inner_attribute_item] = STATE(709), + [sym_mod_item] = STATE(709), + [sym_foreign_mod_item] = STATE(709), + [sym_struct_item] = STATE(709), + [sym_union_item] = STATE(709), + [sym_enum_item] = STATE(709), + [sym_extern_crate_declaration] = STATE(709), + [sym_const_item] = STATE(709), + [sym_static_item] = STATE(709), + [sym_type_item] = STATE(709), + [sym_function_item] = STATE(709), + [sym_function_signature_item] = STATE(709), + [sym_function_modifiers] = STATE(3651), + [sym_impl_item] = STATE(709), + [sym_trait_item] = STATE(709), + [sym_associated_type] = STATE(709), + [sym_let_declaration] = STATE(709), + [sym_use_declaration] = STATE(709), + [sym_extern_modifier] = STATE(2207), + [sym_visibility_modifier] = STATE(1957), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1901), + [sym_macro_invocation] = STATE(341), + [sym_scoped_identifier] = STATE(1563), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(348), + [sym_match_expression] = STATE(348), + [sym_while_expression] = STATE(348), + [sym_loop_expression] = STATE(348), + [sym_for_expression] = STATE(348), + [sym_const_block] = STATE(348), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3644), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(348), + [sym_async_block] = STATE(348), + [sym_try_block] = STATE(348), + [sym_block] = STATE(348), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(18), [sym_block_comment] = STATE(18), - [aux_sym_source_file_repeat1] = STATE(19), - [aux_sym_function_modifiers_repeat1] = STATE(2206), + [aux_sym_source_file_repeat1] = STATE(4), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [ts_builtin_sym_end] = ACTIONS(307), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(302), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(119), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(39), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_fn] = ACTIONS(51), - [anon_sym_for] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_impl] = ACTIONS(57), - [anon_sym_let] = ACTIONS(59), - [anon_sym_loop] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_mod] = ACTIONS(65), - [anon_sym_pub] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_trait] = ACTIONS(75), - [anon_sym_type] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_unsafe] = ACTIONS(81), - [anon_sym_use] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_extern] = ACTIONS(87), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(93), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_macro] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_POUND] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_impl] = ACTIONS(59), + [anon_sym_let] = ACTIONS(61), + [anon_sym_loop] = ACTIONS(63), + [anon_sym_match] = ACTIONS(65), + [anon_sym_mod] = ACTIONS(67), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_trait] = ACTIONS(77), + [anon_sym_type] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_unsafe] = ACTIONS(83), + [anon_sym_use] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_extern] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(113), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [19] = { - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1820), - [sym_macro_invocation] = STATE(395), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym__statement] = STATE(710), + [sym_empty_statement] = STATE(709), + [sym_expression_statement] = STATE(709), + [sym_macro_rules] = STATE(709), + [sym_macro_definition] = STATE(709), + [sym_attribute_item] = STATE(709), + [sym_inner_attribute_item] = STATE(709), + [sym_mod_item] = STATE(709), + [sym_foreign_mod_item] = STATE(709), + [sym_struct_item] = STATE(709), + [sym_union_item] = STATE(709), + [sym_enum_item] = STATE(709), + [sym_extern_crate_declaration] = STATE(709), + [sym_const_item] = STATE(709), + [sym_static_item] = STATE(709), + [sym_type_item] = STATE(709), + [sym_function_item] = STATE(709), + [sym_function_signature_item] = STATE(709), + [sym_function_modifiers] = STATE(3651), + [sym_impl_item] = STATE(709), + [sym_trait_item] = STATE(709), + [sym_associated_type] = STATE(709), + [sym_let_declaration] = STATE(709), + [sym_use_declaration] = STATE(709), + [sym_extern_modifier] = STATE(2207), + [sym_visibility_modifier] = STATE(1957), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1735), + [sym_macro_invocation] = STATE(341), + [sym_scoped_identifier] = STATE(1563), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(348), + [sym_match_expression] = STATE(348), + [sym_while_expression] = STATE(348), + [sym_loop_expression] = STATE(348), + [sym_for_expression] = STATE(348), + [sym_const_block] = STATE(348), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3644), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(348), + [sym_async_block] = STATE(348), + [sym_try_block] = STATE(348), + [sym_block] = STATE(348), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(19), [sym_block_comment] = STATE(19), - [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(2206), + [aux_sym_source_file_repeat1] = STATE(34), + [aux_sym_function_modifiers_repeat1] = STATE(2255), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(304), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(119), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(39), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_fn] = ACTIONS(51), - [anon_sym_for] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_impl] = ACTIONS(57), - [anon_sym_let] = ACTIONS(59), - [anon_sym_loop] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_mod] = ACTIONS(65), - [anon_sym_pub] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_trait] = ACTIONS(75), - [anon_sym_type] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_unsafe] = ACTIONS(81), - [anon_sym_use] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_extern] = ACTIONS(87), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(93), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_RBRACE] = ACTIONS(309), + [anon_sym_macro] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_POUND] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_impl] = ACTIONS(59), + [anon_sym_let] = ACTIONS(61), + [anon_sym_loop] = ACTIONS(63), + [anon_sym_match] = ACTIONS(65), + [anon_sym_mod] = ACTIONS(67), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_trait] = ACTIONS(77), + [anon_sym_type] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_unsafe] = ACTIONS(83), + [anon_sym_use] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_extern] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(113), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [20] = { - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1821), - [sym_macro_invocation] = STATE(395), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym__statement] = STATE(710), + [sym_empty_statement] = STATE(709), + [sym_expression_statement] = STATE(709), + [sym_macro_rules] = STATE(709), + [sym_macro_definition] = STATE(709), + [sym_attribute_item] = STATE(709), + [sym_inner_attribute_item] = STATE(709), + [sym_mod_item] = STATE(709), + [sym_foreign_mod_item] = STATE(709), + [sym_struct_item] = STATE(709), + [sym_union_item] = STATE(709), + [sym_enum_item] = STATE(709), + [sym_extern_crate_declaration] = STATE(709), + [sym_const_item] = STATE(709), + [sym_static_item] = STATE(709), + [sym_type_item] = STATE(709), + [sym_function_item] = STATE(709), + [sym_function_signature_item] = STATE(709), + [sym_function_modifiers] = STATE(3651), + [sym_impl_item] = STATE(709), + [sym_trait_item] = STATE(709), + [sym_associated_type] = STATE(709), + [sym_let_declaration] = STATE(709), + [sym_use_declaration] = STATE(709), + [sym_extern_modifier] = STATE(2207), + [sym_visibility_modifier] = STATE(1957), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1809), + [sym_macro_invocation] = STATE(341), + [sym_scoped_identifier] = STATE(1563), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(348), + [sym_match_expression] = STATE(348), + [sym_while_expression] = STATE(348), + [sym_loop_expression] = STATE(348), + [sym_for_expression] = STATE(348), + [sym_const_block] = STATE(348), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3644), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(348), + [sym_async_block] = STATE(348), + [sym_try_block] = STATE(348), + [sym_block] = STATE(348), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(20), [sym_block_comment] = STATE(20), - [aux_sym_source_file_repeat1] = STATE(21), - [aux_sym_function_modifiers_repeat1] = STATE(2206), + [aux_sym_source_file_repeat1] = STATE(28), + [aux_sym_function_modifiers_repeat1] = STATE(2255), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(306), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(119), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(39), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_fn] = ACTIONS(51), - [anon_sym_for] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_impl] = ACTIONS(57), - [anon_sym_let] = ACTIONS(59), - [anon_sym_loop] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_mod] = ACTIONS(65), - [anon_sym_pub] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_trait] = ACTIONS(75), - [anon_sym_type] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_unsafe] = ACTIONS(81), - [anon_sym_use] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_extern] = ACTIONS(87), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(93), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_RBRACE] = ACTIONS(311), + [anon_sym_macro] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_POUND] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_impl] = ACTIONS(59), + [anon_sym_let] = ACTIONS(61), + [anon_sym_loop] = ACTIONS(63), + [anon_sym_match] = ACTIONS(65), + [anon_sym_mod] = ACTIONS(67), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_trait] = ACTIONS(77), + [anon_sym_type] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_unsafe] = ACTIONS(83), + [anon_sym_use] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_extern] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(113), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [21] = { - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1823), - [sym_macro_invocation] = STATE(395), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym__statement] = STATE(710), + [sym_empty_statement] = STATE(709), + [sym_expression_statement] = STATE(709), + [sym_macro_rules] = STATE(709), + [sym_macro_definition] = STATE(709), + [sym_attribute_item] = STATE(709), + [sym_inner_attribute_item] = STATE(709), + [sym_mod_item] = STATE(709), + [sym_foreign_mod_item] = STATE(709), + [sym_struct_item] = STATE(709), + [sym_union_item] = STATE(709), + [sym_enum_item] = STATE(709), + [sym_extern_crate_declaration] = STATE(709), + [sym_const_item] = STATE(709), + [sym_static_item] = STATE(709), + [sym_type_item] = STATE(709), + [sym_function_item] = STATE(709), + [sym_function_signature_item] = STATE(709), + [sym_function_modifiers] = STATE(3651), + [sym_impl_item] = STATE(709), + [sym_trait_item] = STATE(709), + [sym_associated_type] = STATE(709), + [sym_let_declaration] = STATE(709), + [sym_use_declaration] = STATE(709), + [sym_extern_modifier] = STATE(2207), + [sym_visibility_modifier] = STATE(1957), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1874), + [sym_macro_invocation] = STATE(341), + [sym_scoped_identifier] = STATE(1563), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(348), + [sym_match_expression] = STATE(348), + [sym_while_expression] = STATE(348), + [sym_loop_expression] = STATE(348), + [sym_for_expression] = STATE(348), + [sym_const_block] = STATE(348), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3644), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(348), + [sym_async_block] = STATE(348), + [sym_try_block] = STATE(348), + [sym_block] = STATE(348), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(21), [sym_block_comment] = STATE(21), - [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(2206), + [aux_sym_source_file_repeat1] = STATE(28), + [aux_sym_function_modifiers_repeat1] = STATE(2255), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(308), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(119), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(39), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_fn] = ACTIONS(51), - [anon_sym_for] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_impl] = ACTIONS(57), - [anon_sym_let] = ACTIONS(59), - [anon_sym_loop] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_mod] = ACTIONS(65), - [anon_sym_pub] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_trait] = ACTIONS(75), - [anon_sym_type] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_unsafe] = ACTIONS(81), - [anon_sym_use] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_extern] = ACTIONS(87), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(93), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_RBRACE] = ACTIONS(313), + [anon_sym_macro] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_POUND] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_impl] = ACTIONS(59), + [anon_sym_let] = ACTIONS(61), + [anon_sym_loop] = ACTIONS(63), + [anon_sym_match] = ACTIONS(65), + [anon_sym_mod] = ACTIONS(67), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_trait] = ACTIONS(77), + [anon_sym_type] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_unsafe] = ACTIONS(83), + [anon_sym_use] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_extern] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(113), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [22] = { - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1824), - [sym_macro_invocation] = STATE(395), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym__statement] = STATE(710), + [sym_empty_statement] = STATE(709), + [sym_expression_statement] = STATE(709), + [sym_macro_rules] = STATE(709), + [sym_macro_definition] = STATE(709), + [sym_attribute_item] = STATE(709), + [sym_inner_attribute_item] = STATE(709), + [sym_mod_item] = STATE(709), + [sym_foreign_mod_item] = STATE(709), + [sym_struct_item] = STATE(709), + [sym_union_item] = STATE(709), + [sym_enum_item] = STATE(709), + [sym_extern_crate_declaration] = STATE(709), + [sym_const_item] = STATE(709), + [sym_static_item] = STATE(709), + [sym_type_item] = STATE(709), + [sym_function_item] = STATE(709), + [sym_function_signature_item] = STATE(709), + [sym_function_modifiers] = STATE(3651), + [sym_impl_item] = STATE(709), + [sym_trait_item] = STATE(709), + [sym_associated_type] = STATE(709), + [sym_let_declaration] = STATE(709), + [sym_use_declaration] = STATE(709), + [sym_extern_modifier] = STATE(2207), + [sym_visibility_modifier] = STATE(1957), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1775), + [sym_macro_invocation] = STATE(341), + [sym_scoped_identifier] = STATE(1563), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(348), + [sym_match_expression] = STATE(348), + [sym_while_expression] = STATE(348), + [sym_loop_expression] = STATE(348), + [sym_for_expression] = STATE(348), + [sym_const_block] = STATE(348), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3644), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(348), + [sym_async_block] = STATE(348), + [sym_try_block] = STATE(348), + [sym_block] = STATE(348), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(22), [sym_block_comment] = STATE(22), - [aux_sym_source_file_repeat1] = STATE(23), - [aux_sym_function_modifiers_repeat1] = STATE(2206), + [aux_sym_source_file_repeat1] = STATE(28), + [aux_sym_function_modifiers_repeat1] = STATE(2255), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(310), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(119), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(39), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_fn] = ACTIONS(51), - [anon_sym_for] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_impl] = ACTIONS(57), - [anon_sym_let] = ACTIONS(59), - [anon_sym_loop] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_mod] = ACTIONS(65), - [anon_sym_pub] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_trait] = ACTIONS(75), - [anon_sym_type] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_unsafe] = ACTIONS(81), - [anon_sym_use] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_extern] = ACTIONS(87), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(93), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_RBRACE] = ACTIONS(315), + [anon_sym_macro] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_POUND] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_impl] = ACTIONS(59), + [anon_sym_let] = ACTIONS(61), + [anon_sym_loop] = ACTIONS(63), + [anon_sym_match] = ACTIONS(65), + [anon_sym_mod] = ACTIONS(67), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_trait] = ACTIONS(77), + [anon_sym_type] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_unsafe] = ACTIONS(83), + [anon_sym_use] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_extern] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(113), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [23] = { - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1636), - [sym_macro_invocation] = STATE(395), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym__statement] = STATE(710), + [sym_empty_statement] = STATE(709), + [sym_expression_statement] = STATE(709), + [sym_macro_rules] = STATE(709), + [sym_macro_definition] = STATE(709), + [sym_attribute_item] = STATE(709), + [sym_inner_attribute_item] = STATE(709), + [sym_mod_item] = STATE(709), + [sym_foreign_mod_item] = STATE(709), + [sym_struct_item] = STATE(709), + [sym_union_item] = STATE(709), + [sym_enum_item] = STATE(709), + [sym_extern_crate_declaration] = STATE(709), + [sym_const_item] = STATE(709), + [sym_static_item] = STATE(709), + [sym_type_item] = STATE(709), + [sym_function_item] = STATE(709), + [sym_function_signature_item] = STATE(709), + [sym_function_modifiers] = STATE(3651), + [sym_impl_item] = STATE(709), + [sym_trait_item] = STATE(709), + [sym_associated_type] = STATE(709), + [sym_let_declaration] = STATE(709), + [sym_use_declaration] = STATE(709), + [sym_extern_modifier] = STATE(2207), + [sym_visibility_modifier] = STATE(1957), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1826), + [sym_macro_invocation] = STATE(341), + [sym_scoped_identifier] = STATE(1563), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(348), + [sym_match_expression] = STATE(348), + [sym_while_expression] = STATE(348), + [sym_loop_expression] = STATE(348), + [sym_for_expression] = STATE(348), + [sym_const_block] = STATE(348), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3644), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(348), + [sym_async_block] = STATE(348), + [sym_try_block] = STATE(348), + [sym_block] = STATE(348), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(23), [sym_block_comment] = STATE(23), - [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(2206), + [aux_sym_source_file_repeat1] = STATE(21), + [aux_sym_function_modifiers_repeat1] = STATE(2255), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(312), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(119), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(39), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_fn] = ACTIONS(51), - [anon_sym_for] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_impl] = ACTIONS(57), - [anon_sym_let] = ACTIONS(59), - [anon_sym_loop] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_mod] = ACTIONS(65), - [anon_sym_pub] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_trait] = ACTIONS(75), - [anon_sym_type] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_unsafe] = ACTIONS(81), - [anon_sym_use] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_extern] = ACTIONS(87), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(93), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_RBRACE] = ACTIONS(317), + [anon_sym_macro] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_POUND] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_impl] = ACTIONS(59), + [anon_sym_let] = ACTIONS(61), + [anon_sym_loop] = ACTIONS(63), + [anon_sym_match] = ACTIONS(65), + [anon_sym_mod] = ACTIONS(67), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_trait] = ACTIONS(77), + [anon_sym_type] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_unsafe] = ACTIONS(83), + [anon_sym_use] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_extern] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(113), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [24] = { - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1826), - [sym_macro_invocation] = STATE(395), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym__statement] = STATE(710), + [sym_empty_statement] = STATE(709), + [sym_expression_statement] = STATE(709), + [sym_macro_rules] = STATE(709), + [sym_macro_definition] = STATE(709), + [sym_attribute_item] = STATE(709), + [sym_inner_attribute_item] = STATE(709), + [sym_mod_item] = STATE(709), + [sym_foreign_mod_item] = STATE(709), + [sym_struct_item] = STATE(709), + [sym_union_item] = STATE(709), + [sym_enum_item] = STATE(709), + [sym_extern_crate_declaration] = STATE(709), + [sym_const_item] = STATE(709), + [sym_static_item] = STATE(709), + [sym_type_item] = STATE(709), + [sym_function_item] = STATE(709), + [sym_function_signature_item] = STATE(709), + [sym_function_modifiers] = STATE(3651), + [sym_impl_item] = STATE(709), + [sym_trait_item] = STATE(709), + [sym_associated_type] = STATE(709), + [sym_let_declaration] = STATE(709), + [sym_use_declaration] = STATE(709), + [sym_extern_modifier] = STATE(2207), + [sym_visibility_modifier] = STATE(1957), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1736), + [sym_macro_invocation] = STATE(341), + [sym_scoped_identifier] = STATE(1563), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(348), + [sym_match_expression] = STATE(348), + [sym_while_expression] = STATE(348), + [sym_loop_expression] = STATE(348), + [sym_for_expression] = STATE(348), + [sym_const_block] = STATE(348), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3644), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(348), + [sym_async_block] = STATE(348), + [sym_try_block] = STATE(348), + [sym_block] = STATE(348), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(24), [sym_block_comment] = STATE(24), - [aux_sym_source_file_repeat1] = STATE(25), - [aux_sym_function_modifiers_repeat1] = STATE(2206), + [aux_sym_source_file_repeat1] = STATE(28), + [aux_sym_function_modifiers_repeat1] = STATE(2255), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(314), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(119), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(39), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_fn] = ACTIONS(51), - [anon_sym_for] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_impl] = ACTIONS(57), - [anon_sym_let] = ACTIONS(59), - [anon_sym_loop] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_mod] = ACTIONS(65), - [anon_sym_pub] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_trait] = ACTIONS(75), - [anon_sym_type] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_unsafe] = ACTIONS(81), - [anon_sym_use] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_extern] = ACTIONS(87), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(93), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_RBRACE] = ACTIONS(319), + [anon_sym_macro] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_POUND] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_impl] = ACTIONS(59), + [anon_sym_let] = ACTIONS(61), + [anon_sym_loop] = ACTIONS(63), + [anon_sym_match] = ACTIONS(65), + [anon_sym_mod] = ACTIONS(67), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_trait] = ACTIONS(77), + [anon_sym_type] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_unsafe] = ACTIONS(83), + [anon_sym_use] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_extern] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(113), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [25] = { - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1827), - [sym_macro_invocation] = STATE(395), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym__statement] = STATE(710), + [sym_empty_statement] = STATE(709), + [sym_expression_statement] = STATE(709), + [sym_macro_rules] = STATE(709), + [sym_macro_definition] = STATE(709), + [sym_attribute_item] = STATE(709), + [sym_inner_attribute_item] = STATE(709), + [sym_mod_item] = STATE(709), + [sym_foreign_mod_item] = STATE(709), + [sym_struct_item] = STATE(709), + [sym_union_item] = STATE(709), + [sym_enum_item] = STATE(709), + [sym_extern_crate_declaration] = STATE(709), + [sym_const_item] = STATE(709), + [sym_static_item] = STATE(709), + [sym_type_item] = STATE(709), + [sym_function_item] = STATE(709), + [sym_function_signature_item] = STATE(709), + [sym_function_modifiers] = STATE(3651), + [sym_impl_item] = STATE(709), + [sym_trait_item] = STATE(709), + [sym_associated_type] = STATE(709), + [sym_let_declaration] = STATE(709), + [sym_use_declaration] = STATE(709), + [sym_extern_modifier] = STATE(2207), + [sym_visibility_modifier] = STATE(1957), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1705), + [sym_macro_invocation] = STATE(341), + [sym_scoped_identifier] = STATE(1563), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(348), + [sym_match_expression] = STATE(348), + [sym_while_expression] = STATE(348), + [sym_loop_expression] = STATE(348), + [sym_for_expression] = STATE(348), + [sym_const_block] = STATE(348), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3644), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(348), + [sym_async_block] = STATE(348), + [sym_try_block] = STATE(348), + [sym_block] = STATE(348), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(25), [sym_block_comment] = STATE(25), - [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(2206), + [aux_sym_source_file_repeat1] = STATE(29), + [aux_sym_function_modifiers_repeat1] = STATE(2255), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(316), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(119), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(39), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_fn] = ACTIONS(51), - [anon_sym_for] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_impl] = ACTIONS(57), - [anon_sym_let] = ACTIONS(59), - [anon_sym_loop] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_mod] = ACTIONS(65), - [anon_sym_pub] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_trait] = ACTIONS(75), - [anon_sym_type] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_unsafe] = ACTIONS(81), - [anon_sym_use] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_extern] = ACTIONS(87), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(93), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_RBRACE] = ACTIONS(321), + [anon_sym_macro] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_POUND] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_impl] = ACTIONS(59), + [anon_sym_let] = ACTIONS(61), + [anon_sym_loop] = ACTIONS(63), + [anon_sym_match] = ACTIONS(65), + [anon_sym_mod] = ACTIONS(67), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_trait] = ACTIONS(77), + [anon_sym_type] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_unsafe] = ACTIONS(83), + [anon_sym_use] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_extern] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(113), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [26] = { - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1828), - [sym_macro_invocation] = STATE(395), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym__statement] = STATE(710), + [sym_empty_statement] = STATE(709), + [sym_expression_statement] = STATE(709), + [sym_macro_rules] = STATE(709), + [sym_macro_definition] = STATE(709), + [sym_attribute_item] = STATE(709), + [sym_inner_attribute_item] = STATE(709), + [sym_mod_item] = STATE(709), + [sym_foreign_mod_item] = STATE(709), + [sym_struct_item] = STATE(709), + [sym_union_item] = STATE(709), + [sym_enum_item] = STATE(709), + [sym_extern_crate_declaration] = STATE(709), + [sym_const_item] = STATE(709), + [sym_static_item] = STATE(709), + [sym_type_item] = STATE(709), + [sym_function_item] = STATE(709), + [sym_function_signature_item] = STATE(709), + [sym_function_modifiers] = STATE(3651), + [sym_impl_item] = STATE(709), + [sym_trait_item] = STATE(709), + [sym_associated_type] = STATE(709), + [sym_let_declaration] = STATE(709), + [sym_use_declaration] = STATE(709), + [sym_extern_modifier] = STATE(2207), + [sym_visibility_modifier] = STATE(1957), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1714), + [sym_macro_invocation] = STATE(341), + [sym_scoped_identifier] = STATE(1563), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(348), + [sym_match_expression] = STATE(348), + [sym_while_expression] = STATE(348), + [sym_loop_expression] = STATE(348), + [sym_for_expression] = STATE(348), + [sym_const_block] = STATE(348), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3644), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(348), + [sym_async_block] = STATE(348), + [sym_try_block] = STATE(348), + [sym_block] = STATE(348), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(26), [sym_block_comment] = STATE(26), - [aux_sym_source_file_repeat1] = STATE(27), - [aux_sym_function_modifiers_repeat1] = STATE(2206), + [aux_sym_source_file_repeat1] = STATE(32), + [aux_sym_function_modifiers_repeat1] = STATE(2255), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(318), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(119), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(39), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_fn] = ACTIONS(51), - [anon_sym_for] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_impl] = ACTIONS(57), - [anon_sym_let] = ACTIONS(59), - [anon_sym_loop] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_mod] = ACTIONS(65), - [anon_sym_pub] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_trait] = ACTIONS(75), - [anon_sym_type] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_unsafe] = ACTIONS(81), - [anon_sym_use] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_extern] = ACTIONS(87), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(93), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_RBRACE] = ACTIONS(323), + [anon_sym_macro] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_POUND] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_impl] = ACTIONS(59), + [anon_sym_let] = ACTIONS(61), + [anon_sym_loop] = ACTIONS(63), + [anon_sym_match] = ACTIONS(65), + [anon_sym_mod] = ACTIONS(67), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_trait] = ACTIONS(77), + [anon_sym_type] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_unsafe] = ACTIONS(83), + [anon_sym_use] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_extern] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(113), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [27] = { - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1830), - [sym_macro_invocation] = STATE(395), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym__statement] = STATE(710), + [sym_empty_statement] = STATE(709), + [sym_expression_statement] = STATE(709), + [sym_macro_rules] = STATE(709), + [sym_macro_definition] = STATE(709), + [sym_attribute_item] = STATE(709), + [sym_inner_attribute_item] = STATE(709), + [sym_mod_item] = STATE(709), + [sym_foreign_mod_item] = STATE(709), + [sym_struct_item] = STATE(709), + [sym_union_item] = STATE(709), + [sym_enum_item] = STATE(709), + [sym_extern_crate_declaration] = STATE(709), + [sym_const_item] = STATE(709), + [sym_static_item] = STATE(709), + [sym_type_item] = STATE(709), + [sym_function_item] = STATE(709), + [sym_function_signature_item] = STATE(709), + [sym_function_modifiers] = STATE(3651), + [sym_impl_item] = STATE(709), + [sym_trait_item] = STATE(709), + [sym_associated_type] = STATE(709), + [sym_let_declaration] = STATE(709), + [sym_use_declaration] = STATE(709), + [sym_extern_modifier] = STATE(2207), + [sym_visibility_modifier] = STATE(1957), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1774), + [sym_macro_invocation] = STATE(341), + [sym_scoped_identifier] = STATE(1563), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(348), + [sym_match_expression] = STATE(348), + [sym_while_expression] = STATE(348), + [sym_loop_expression] = STATE(348), + [sym_for_expression] = STATE(348), + [sym_const_block] = STATE(348), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3644), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(348), + [sym_async_block] = STATE(348), + [sym_try_block] = STATE(348), + [sym_block] = STATE(348), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(27), [sym_block_comment] = STATE(27), - [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(2206), + [aux_sym_source_file_repeat1] = STATE(28), + [aux_sym_function_modifiers_repeat1] = STATE(2255), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(320), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(119), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(39), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_fn] = ACTIONS(51), - [anon_sym_for] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_impl] = ACTIONS(57), - [anon_sym_let] = ACTIONS(59), - [anon_sym_loop] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_mod] = ACTIONS(65), - [anon_sym_pub] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_trait] = ACTIONS(75), - [anon_sym_type] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_unsafe] = ACTIONS(81), - [anon_sym_use] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_extern] = ACTIONS(87), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(93), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_RBRACE] = ACTIONS(325), + [anon_sym_macro] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_POUND] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_impl] = ACTIONS(59), + [anon_sym_let] = ACTIONS(61), + [anon_sym_loop] = ACTIONS(63), + [anon_sym_match] = ACTIONS(65), + [anon_sym_mod] = ACTIONS(67), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_trait] = ACTIONS(77), + [anon_sym_type] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_unsafe] = ACTIONS(83), + [anon_sym_use] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_extern] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(113), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [28] = { - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1831), - [sym_macro_invocation] = STATE(395), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym__statement] = STATE(710), + [sym_empty_statement] = STATE(709), + [sym_expression_statement] = STATE(709), + [sym_macro_rules] = STATE(709), + [sym_macro_definition] = STATE(709), + [sym_attribute_item] = STATE(709), + [sym_inner_attribute_item] = STATE(709), + [sym_mod_item] = STATE(709), + [sym_foreign_mod_item] = STATE(709), + [sym_struct_item] = STATE(709), + [sym_union_item] = STATE(709), + [sym_enum_item] = STATE(709), + [sym_extern_crate_declaration] = STATE(709), + [sym_const_item] = STATE(709), + [sym_static_item] = STATE(709), + [sym_type_item] = STATE(709), + [sym_function_item] = STATE(709), + [sym_function_signature_item] = STATE(709), + [sym_function_modifiers] = STATE(3651), + [sym_impl_item] = STATE(709), + [sym_trait_item] = STATE(709), + [sym_associated_type] = STATE(709), + [sym_let_declaration] = STATE(709), + [sym_use_declaration] = STATE(709), + [sym_extern_modifier] = STATE(2207), + [sym_visibility_modifier] = STATE(1957), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1901), + [sym_macro_invocation] = STATE(400), + [sym_scoped_identifier] = STATE(1563), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(348), + [sym_match_expression] = STATE(348), + [sym_while_expression] = STATE(348), + [sym_loop_expression] = STATE(348), + [sym_for_expression] = STATE(348), + [sym_const_block] = STATE(348), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3644), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(348), + [sym_async_block] = STATE(348), + [sym_try_block] = STATE(348), + [sym_block] = STATE(348), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(28), [sym_block_comment] = STATE(28), - [aux_sym_source_file_repeat1] = STATE(29), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(9), - [anon_sym_SEMI] = ACTIONS(11), - [anon_sym_macro_rules_BANG] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(322), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(119), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(39), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_fn] = ACTIONS(51), - [anon_sym_for] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_impl] = ACTIONS(57), - [anon_sym_let] = ACTIONS(59), - [anon_sym_loop] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_mod] = ACTIONS(65), - [anon_sym_pub] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_trait] = ACTIONS(75), - [anon_sym_type] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_unsafe] = ACTIONS(81), - [anon_sym_use] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_extern] = ACTIONS(87), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(93), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [aux_sym_source_file_repeat1] = STATE(28), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(127), + [anon_sym_SEMI] = ACTIONS(130), + [anon_sym_macro_rules_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(136), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(142), + [anon_sym_RBRACE] = ACTIONS(125), + [anon_sym_macro] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(148), + [anon_sym_u8] = ACTIONS(151), + [anon_sym_i8] = ACTIONS(151), + [anon_sym_u16] = ACTIONS(151), + [anon_sym_i16] = ACTIONS(151), + [anon_sym_u32] = ACTIONS(151), + [anon_sym_i32] = ACTIONS(151), + [anon_sym_u64] = ACTIONS(151), + [anon_sym_i64] = ACTIONS(151), + [anon_sym_u128] = ACTIONS(151), + [anon_sym_i128] = ACTIONS(151), + [anon_sym_isize] = ACTIONS(151), + [anon_sym_usize] = ACTIONS(151), + [anon_sym_f32] = ACTIONS(151), + [anon_sym_f64] = ACTIONS(151), + [anon_sym_bool] = ACTIONS(151), + [anon_sym_str] = ACTIONS(151), + [anon_sym_char] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(148), + [anon_sym_BANG] = ACTIONS(148), + [anon_sym_AMP] = ACTIONS(154), + [anon_sym_PIPE] = ACTIONS(157), + [anon_sym_LT] = ACTIONS(160), + [anon_sym_DOT_DOT] = ACTIONS(163), + [anon_sym_COLON_COLON] = ACTIONS(166), + [anon_sym_POUND] = ACTIONS(169), + [anon_sym_SQUOTE] = ACTIONS(172), + [anon_sym_async] = ACTIONS(175), + [anon_sym_break] = ACTIONS(178), + [anon_sym_const] = ACTIONS(181), + [anon_sym_continue] = ACTIONS(184), + [anon_sym_default] = ACTIONS(187), + [anon_sym_enum] = ACTIONS(190), + [anon_sym_fn] = ACTIONS(193), + [anon_sym_for] = ACTIONS(196), + [anon_sym_if] = ACTIONS(199), + [anon_sym_impl] = ACTIONS(202), + [anon_sym_let] = ACTIONS(205), + [anon_sym_loop] = ACTIONS(208), + [anon_sym_match] = ACTIONS(211), + [anon_sym_mod] = ACTIONS(214), + [anon_sym_pub] = ACTIONS(217), + [anon_sym_return] = ACTIONS(220), + [anon_sym_static] = ACTIONS(223), + [anon_sym_struct] = ACTIONS(226), + [anon_sym_trait] = ACTIONS(229), + [anon_sym_type] = ACTIONS(232), + [anon_sym_union] = ACTIONS(235), + [anon_sym_unsafe] = ACTIONS(238), + [anon_sym_use] = ACTIONS(241), + [anon_sym_while] = ACTIONS(244), + [anon_sym_extern] = ACTIONS(247), + [anon_sym_yield] = ACTIONS(250), + [anon_sym_move] = ACTIONS(253), + [anon_sym_try] = ACTIONS(256), + [sym_integer_literal] = ACTIONS(259), + [aux_sym_string_literal_token1] = ACTIONS(262), + [sym_char_literal] = ACTIONS(259), + [anon_sym_true] = ACTIONS(265), + [anon_sym_false] = ACTIONS(265), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(268), + [sym_super] = ACTIONS(271), + [sym_crate] = ACTIONS(274), + [sym_metavariable] = ACTIONS(277), + [sym__raw_string_literal_start] = ACTIONS(280), + [sym_float_literal] = ACTIONS(259), }, [29] = { - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1832), - [sym_macro_invocation] = STATE(395), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym__statement] = STATE(710), + [sym_empty_statement] = STATE(709), + [sym_expression_statement] = STATE(709), + [sym_macro_rules] = STATE(709), + [sym_macro_definition] = STATE(709), + [sym_attribute_item] = STATE(709), + [sym_inner_attribute_item] = STATE(709), + [sym_mod_item] = STATE(709), + [sym_foreign_mod_item] = STATE(709), + [sym_struct_item] = STATE(709), + [sym_union_item] = STATE(709), + [sym_enum_item] = STATE(709), + [sym_extern_crate_declaration] = STATE(709), + [sym_const_item] = STATE(709), + [sym_static_item] = STATE(709), + [sym_type_item] = STATE(709), + [sym_function_item] = STATE(709), + [sym_function_signature_item] = STATE(709), + [sym_function_modifiers] = STATE(3651), + [sym_impl_item] = STATE(709), + [sym_trait_item] = STATE(709), + [sym_associated_type] = STATE(709), + [sym_let_declaration] = STATE(709), + [sym_use_declaration] = STATE(709), + [sym_extern_modifier] = STATE(2207), + [sym_visibility_modifier] = STATE(1957), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1738), + [sym_macro_invocation] = STATE(341), + [sym_scoped_identifier] = STATE(1563), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(348), + [sym_match_expression] = STATE(348), + [sym_while_expression] = STATE(348), + [sym_loop_expression] = STATE(348), + [sym_for_expression] = STATE(348), + [sym_const_block] = STATE(348), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3644), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(348), + [sym_async_block] = STATE(348), + [sym_try_block] = STATE(348), + [sym_block] = STATE(348), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(29), [sym_block_comment] = STATE(29), - [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(2206), + [aux_sym_source_file_repeat1] = STATE(28), + [aux_sym_function_modifiers_repeat1] = STATE(2255), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(324), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(119), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(39), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_fn] = ACTIONS(51), - [anon_sym_for] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_impl] = ACTIONS(57), - [anon_sym_let] = ACTIONS(59), - [anon_sym_loop] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_mod] = ACTIONS(65), - [anon_sym_pub] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_trait] = ACTIONS(75), - [anon_sym_type] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_unsafe] = ACTIONS(81), - [anon_sym_use] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_extern] = ACTIONS(87), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(93), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_RBRACE] = ACTIONS(327), + [anon_sym_macro] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_POUND] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_impl] = ACTIONS(59), + [anon_sym_let] = ACTIONS(61), + [anon_sym_loop] = ACTIONS(63), + [anon_sym_match] = ACTIONS(65), + [anon_sym_mod] = ACTIONS(67), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_trait] = ACTIONS(77), + [anon_sym_type] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_unsafe] = ACTIONS(83), + [anon_sym_use] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_extern] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(113), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [30] = { - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1833), - [sym_macro_invocation] = STATE(395), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym__statement] = STATE(710), + [sym_empty_statement] = STATE(709), + [sym_expression_statement] = STATE(709), + [sym_macro_rules] = STATE(709), + [sym_macro_definition] = STATE(709), + [sym_attribute_item] = STATE(709), + [sym_inner_attribute_item] = STATE(709), + [sym_mod_item] = STATE(709), + [sym_foreign_mod_item] = STATE(709), + [sym_struct_item] = STATE(709), + [sym_union_item] = STATE(709), + [sym_enum_item] = STATE(709), + [sym_extern_crate_declaration] = STATE(709), + [sym_const_item] = STATE(709), + [sym_static_item] = STATE(709), + [sym_type_item] = STATE(709), + [sym_function_item] = STATE(709), + [sym_function_signature_item] = STATE(709), + [sym_function_modifiers] = STATE(3651), + [sym_impl_item] = STATE(709), + [sym_trait_item] = STATE(709), + [sym_associated_type] = STATE(709), + [sym_let_declaration] = STATE(709), + [sym_use_declaration] = STATE(709), + [sym_extern_modifier] = STATE(2207), + [sym_visibility_modifier] = STATE(1957), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1726), + [sym_macro_invocation] = STATE(341), + [sym_scoped_identifier] = STATE(1563), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(348), + [sym_match_expression] = STATE(348), + [sym_while_expression] = STATE(348), + [sym_loop_expression] = STATE(348), + [sym_for_expression] = STATE(348), + [sym_const_block] = STATE(348), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3644), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(348), + [sym_async_block] = STATE(348), + [sym_try_block] = STATE(348), + [sym_block] = STATE(348), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(30), [sym_block_comment] = STATE(30), - [aux_sym_source_file_repeat1] = STATE(31), - [aux_sym_function_modifiers_repeat1] = STATE(2206), + [aux_sym_source_file_repeat1] = STATE(28), + [aux_sym_function_modifiers_repeat1] = STATE(2255), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(326), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(119), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(39), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_fn] = ACTIONS(51), - [anon_sym_for] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_impl] = ACTIONS(57), - [anon_sym_let] = ACTIONS(59), - [anon_sym_loop] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_mod] = ACTIONS(65), - [anon_sym_pub] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_trait] = ACTIONS(75), - [anon_sym_type] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_unsafe] = ACTIONS(81), - [anon_sym_use] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_extern] = ACTIONS(87), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(93), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_RBRACE] = ACTIONS(329), + [anon_sym_macro] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_POUND] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_impl] = ACTIONS(59), + [anon_sym_let] = ACTIONS(61), + [anon_sym_loop] = ACTIONS(63), + [anon_sym_match] = ACTIONS(65), + [anon_sym_mod] = ACTIONS(67), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_trait] = ACTIONS(77), + [anon_sym_type] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_unsafe] = ACTIONS(83), + [anon_sym_use] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_extern] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(113), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [31] = { - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1834), - [sym_macro_invocation] = STATE(395), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym__statement] = STATE(710), + [sym_empty_statement] = STATE(709), + [sym_expression_statement] = STATE(709), + [sym_macro_rules] = STATE(709), + [sym_macro_definition] = STATE(709), + [sym_attribute_item] = STATE(709), + [sym_inner_attribute_item] = STATE(709), + [sym_mod_item] = STATE(709), + [sym_foreign_mod_item] = STATE(709), + [sym_struct_item] = STATE(709), + [sym_union_item] = STATE(709), + [sym_enum_item] = STATE(709), + [sym_extern_crate_declaration] = STATE(709), + [sym_const_item] = STATE(709), + [sym_static_item] = STATE(709), + [sym_type_item] = STATE(709), + [sym_function_item] = STATE(709), + [sym_function_signature_item] = STATE(709), + [sym_function_modifiers] = STATE(3651), + [sym_impl_item] = STATE(709), + [sym_trait_item] = STATE(709), + [sym_associated_type] = STATE(709), + [sym_let_declaration] = STATE(709), + [sym_use_declaration] = STATE(709), + [sym_extern_modifier] = STATE(2207), + [sym_visibility_modifier] = STATE(1957), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1727), + [sym_macro_invocation] = STATE(341), + [sym_scoped_identifier] = STATE(1563), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(348), + [sym_match_expression] = STATE(348), + [sym_while_expression] = STATE(348), + [sym_loop_expression] = STATE(348), + [sym_for_expression] = STATE(348), + [sym_const_block] = STATE(348), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3644), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(348), + [sym_async_block] = STATE(348), + [sym_try_block] = STATE(348), + [sym_block] = STATE(348), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(31), [sym_block_comment] = STATE(31), - [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(2206), + [aux_sym_source_file_repeat1] = STATE(30), + [aux_sym_function_modifiers_repeat1] = STATE(2255), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(328), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(119), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(39), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_fn] = ACTIONS(51), - [anon_sym_for] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_impl] = ACTIONS(57), - [anon_sym_let] = ACTIONS(59), - [anon_sym_loop] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_mod] = ACTIONS(65), - [anon_sym_pub] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_trait] = ACTIONS(75), - [anon_sym_type] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_unsafe] = ACTIONS(81), - [anon_sym_use] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_extern] = ACTIONS(87), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(93), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_RBRACE] = ACTIONS(331), + [anon_sym_macro] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_POUND] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_impl] = ACTIONS(59), + [anon_sym_let] = ACTIONS(61), + [anon_sym_loop] = ACTIONS(63), + [anon_sym_match] = ACTIONS(65), + [anon_sym_mod] = ACTIONS(67), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_trait] = ACTIONS(77), + [anon_sym_type] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_unsafe] = ACTIONS(83), + [anon_sym_use] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_extern] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(113), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [32] = { - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1835), - [sym_macro_invocation] = STATE(395), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym__statement] = STATE(710), + [sym_empty_statement] = STATE(709), + [sym_expression_statement] = STATE(709), + [sym_macro_rules] = STATE(709), + [sym_macro_definition] = STATE(709), + [sym_attribute_item] = STATE(709), + [sym_inner_attribute_item] = STATE(709), + [sym_mod_item] = STATE(709), + [sym_foreign_mod_item] = STATE(709), + [sym_struct_item] = STATE(709), + [sym_union_item] = STATE(709), + [sym_enum_item] = STATE(709), + [sym_extern_crate_declaration] = STATE(709), + [sym_const_item] = STATE(709), + [sym_static_item] = STATE(709), + [sym_type_item] = STATE(709), + [sym_function_item] = STATE(709), + [sym_function_signature_item] = STATE(709), + [sym_function_modifiers] = STATE(3651), + [sym_impl_item] = STATE(709), + [sym_trait_item] = STATE(709), + [sym_associated_type] = STATE(709), + [sym_let_declaration] = STATE(709), + [sym_use_declaration] = STATE(709), + [sym_extern_modifier] = STATE(2207), + [sym_visibility_modifier] = STATE(1957), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1803), + [sym_macro_invocation] = STATE(341), + [sym_scoped_identifier] = STATE(1563), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(348), + [sym_match_expression] = STATE(348), + [sym_while_expression] = STATE(348), + [sym_loop_expression] = STATE(348), + [sym_for_expression] = STATE(348), + [sym_const_block] = STATE(348), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3644), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(348), + [sym_async_block] = STATE(348), + [sym_try_block] = STATE(348), + [sym_block] = STATE(348), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(32), [sym_block_comment] = STATE(32), - [aux_sym_source_file_repeat1] = STATE(33), - [aux_sym_function_modifiers_repeat1] = STATE(2206), + [aux_sym_source_file_repeat1] = STATE(28), + [aux_sym_function_modifiers_repeat1] = STATE(2255), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(330), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(119), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(39), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_fn] = ACTIONS(51), - [anon_sym_for] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_impl] = ACTIONS(57), - [anon_sym_let] = ACTIONS(59), - [anon_sym_loop] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_mod] = ACTIONS(65), - [anon_sym_pub] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_trait] = ACTIONS(75), - [anon_sym_type] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_unsafe] = ACTIONS(81), - [anon_sym_use] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_extern] = ACTIONS(87), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(93), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_RBRACE] = ACTIONS(333), + [anon_sym_macro] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_POUND] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_impl] = ACTIONS(59), + [anon_sym_let] = ACTIONS(61), + [anon_sym_loop] = ACTIONS(63), + [anon_sym_match] = ACTIONS(65), + [anon_sym_mod] = ACTIONS(67), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_trait] = ACTIONS(77), + [anon_sym_type] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_unsafe] = ACTIONS(83), + [anon_sym_use] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_extern] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(113), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [33] = { - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1836), - [sym_macro_invocation] = STATE(395), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym__statement] = STATE(710), + [sym_empty_statement] = STATE(709), + [sym_expression_statement] = STATE(709), + [sym_macro_rules] = STATE(709), + [sym_macro_definition] = STATE(709), + [sym_attribute_item] = STATE(709), + [sym_inner_attribute_item] = STATE(709), + [sym_mod_item] = STATE(709), + [sym_foreign_mod_item] = STATE(709), + [sym_struct_item] = STATE(709), + [sym_union_item] = STATE(709), + [sym_enum_item] = STATE(709), + [sym_extern_crate_declaration] = STATE(709), + [sym_const_item] = STATE(709), + [sym_static_item] = STATE(709), + [sym_type_item] = STATE(709), + [sym_function_item] = STATE(709), + [sym_function_signature_item] = STATE(709), + [sym_function_modifiers] = STATE(3651), + [sym_impl_item] = STATE(709), + [sym_trait_item] = STATE(709), + [sym_associated_type] = STATE(709), + [sym_let_declaration] = STATE(709), + [sym_use_declaration] = STATE(709), + [sym_extern_modifier] = STATE(2207), + [sym_visibility_modifier] = STATE(1957), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1793), + [sym_macro_invocation] = STATE(341), + [sym_scoped_identifier] = STATE(1563), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(348), + [sym_match_expression] = STATE(348), + [sym_while_expression] = STATE(348), + [sym_loop_expression] = STATE(348), + [sym_for_expression] = STATE(348), + [sym_const_block] = STATE(348), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3644), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(348), + [sym_async_block] = STATE(348), + [sym_try_block] = STATE(348), + [sym_block] = STATE(348), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(33), [sym_block_comment] = STATE(33), - [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(2206), + [aux_sym_source_file_repeat1] = STATE(27), + [aux_sym_function_modifiers_repeat1] = STATE(2255), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(332), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(119), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(39), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_fn] = ACTIONS(51), - [anon_sym_for] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_impl] = ACTIONS(57), - [anon_sym_let] = ACTIONS(59), - [anon_sym_loop] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_mod] = ACTIONS(65), - [anon_sym_pub] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_trait] = ACTIONS(75), - [anon_sym_type] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_unsafe] = ACTIONS(81), - [anon_sym_use] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_extern] = ACTIONS(87), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(93), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_RBRACE] = ACTIONS(335), + [anon_sym_macro] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_POUND] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_impl] = ACTIONS(59), + [anon_sym_let] = ACTIONS(61), + [anon_sym_loop] = ACTIONS(63), + [anon_sym_match] = ACTIONS(65), + [anon_sym_mod] = ACTIONS(67), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_trait] = ACTIONS(77), + [anon_sym_type] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_unsafe] = ACTIONS(83), + [anon_sym_use] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_extern] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(113), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [34] = { - [sym__statement] = STATE(651), - [sym_empty_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_macro_definition] = STATE(652), - [sym_attribute_item] = STATE(652), - [sym_inner_attribute_item] = STATE(652), - [sym_mod_item] = STATE(652), - [sym_foreign_mod_item] = STATE(652), - [sym_struct_item] = STATE(652), - [sym_union_item] = STATE(652), - [sym_enum_item] = STATE(652), - [sym_extern_crate_declaration] = STATE(652), - [sym_const_item] = STATE(652), - [sym_static_item] = STATE(652), - [sym_type_item] = STATE(652), - [sym_function_item] = STATE(652), - [sym_function_signature_item] = STATE(652), - [sym_function_modifiers] = STATE(3452), - [sym_impl_item] = STATE(652), - [sym_trait_item] = STATE(652), - [sym_associated_type] = STATE(652), - [sym_let_declaration] = STATE(652), - [sym_use_declaration] = STATE(652), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1845), - [sym_macro_invocation] = STATE(395), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(391), - [sym_match_expression] = STATE(391), - [sym_while_expression] = STATE(391), - [sym_loop_expression] = STATE(391), - [sym_for_expression] = STATE(391), - [sym_const_block] = STATE(391), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3544), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(391), - [sym_async_block] = STATE(391), - [sym_try_block] = STATE(391), - [sym_block] = STATE(391), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym__statement] = STATE(710), + [sym_empty_statement] = STATE(709), + [sym_expression_statement] = STATE(709), + [sym_macro_rules] = STATE(709), + [sym_macro_definition] = STATE(709), + [sym_attribute_item] = STATE(709), + [sym_inner_attribute_item] = STATE(709), + [sym_mod_item] = STATE(709), + [sym_foreign_mod_item] = STATE(709), + [sym_struct_item] = STATE(709), + [sym_union_item] = STATE(709), + [sym_enum_item] = STATE(709), + [sym_extern_crate_declaration] = STATE(709), + [sym_const_item] = STATE(709), + [sym_static_item] = STATE(709), + [sym_type_item] = STATE(709), + [sym_function_item] = STATE(709), + [sym_function_signature_item] = STATE(709), + [sym_function_modifiers] = STATE(3651), + [sym_impl_item] = STATE(709), + [sym_trait_item] = STATE(709), + [sym_associated_type] = STATE(709), + [sym_let_declaration] = STATE(709), + [sym_use_declaration] = STATE(709), + [sym_extern_modifier] = STATE(2207), + [sym_visibility_modifier] = STATE(1957), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1731), + [sym_macro_invocation] = STATE(341), + [sym_scoped_identifier] = STATE(1563), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(348), + [sym_match_expression] = STATE(348), + [sym_while_expression] = STATE(348), + [sym_loop_expression] = STATE(348), + [sym_for_expression] = STATE(348), + [sym_const_block] = STATE(348), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3644), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(348), + [sym_async_block] = STATE(348), + [sym_try_block] = STATE(348), + [sym_block] = STATE(348), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(34), [sym_block_comment] = STATE(34), - [aux_sym_source_file_repeat1] = STATE(8), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [ts_builtin_sym_end] = ACTIONS(123), + [aux_sym_source_file_repeat1] = STATE(28), + [aux_sym_function_modifiers_repeat1] = STATE(2255), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(119), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(39), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_fn] = ACTIONS(51), - [anon_sym_for] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_impl] = ACTIONS(57), - [anon_sym_let] = ACTIONS(59), - [anon_sym_loop] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_mod] = ACTIONS(65), - [anon_sym_pub] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_trait] = ACTIONS(75), - [anon_sym_type] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_unsafe] = ACTIONS(81), - [anon_sym_use] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_extern] = ACTIONS(87), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(93), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_RBRACE] = ACTIONS(337), + [anon_sym_macro] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_POUND] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_impl] = ACTIONS(59), + [anon_sym_let] = ACTIONS(61), + [anon_sym_loop] = ACTIONS(63), + [anon_sym_match] = ACTIONS(65), + [anon_sym_mod] = ACTIONS(67), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_trait] = ACTIONS(77), + [anon_sym_type] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_unsafe] = ACTIONS(83), + [anon_sym_use] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_extern] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(113), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [35] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1483), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1521), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1419), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(35), [sym_block_comment] = STATE(35), - [sym_identifier] = ACTIONS(334), - [anon_sym_SEMI] = ACTIONS(336), - [anon_sym_LPAREN] = ACTIONS(336), - [anon_sym_RPAREN] = ACTIONS(336), - [anon_sym_LBRACK] = ACTIONS(336), - [anon_sym_RBRACK] = ACTIONS(336), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_RBRACE] = ACTIONS(336), - [anon_sym_COLON] = ACTIONS(340), - [anon_sym_PLUS] = ACTIONS(342), - [anon_sym_STAR] = ACTIONS(342), - [anon_sym_QMARK] = ACTIONS(336), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(342), - [anon_sym_SLASH] = ACTIONS(342), - [anon_sym_PERCENT] = ACTIONS(342), - [anon_sym_CARET] = ACTIONS(342), - [anon_sym_BANG] = ACTIONS(344), - [anon_sym_AMP] = ACTIONS(342), - [anon_sym_PIPE] = ACTIONS(342), - [anon_sym_AMP_AMP] = ACTIONS(336), - [anon_sym_PIPE_PIPE] = ACTIONS(336), - [anon_sym_LT_LT] = ACTIONS(342), - [anon_sym_GT_GT] = ACTIONS(342), - [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_CARET_EQ] = ACTIONS(336), - [anon_sym_AMP_EQ] = ACTIONS(336), - [anon_sym_PIPE_EQ] = ACTIONS(336), - [anon_sym_LT_LT_EQ] = ACTIONS(336), - [anon_sym_GT_GT_EQ] = ACTIONS(336), - [anon_sym_EQ] = ACTIONS(342), - [anon_sym_EQ_EQ] = ACTIONS(336), - [anon_sym_BANG_EQ] = ACTIONS(336), - [anon_sym_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(342), - [anon_sym_GT_EQ] = ACTIONS(336), - [anon_sym_LT_EQ] = ACTIONS(336), - [anon_sym_DOT] = ACTIONS(342), - [anon_sym_DOT_DOT] = ACTIONS(342), - [anon_sym_DOT_DOT_DOT] = ACTIONS(336), - [anon_sym_DOT_DOT_EQ] = ACTIONS(336), - [anon_sym_COMMA] = ACTIONS(336), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(342), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_else] = ACTIONS(342), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [sym_identifier] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(341), + [anon_sym_RPAREN] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_RBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_RBRACE] = ACTIONS(341), + [anon_sym_COMMA] = ACTIONS(341), + [anon_sym_COLON] = ACTIONS(345), + [anon_sym_PLUS] = ACTIONS(347), + [anon_sym_STAR] = ACTIONS(347), + [anon_sym_QMARK] = ACTIONS(341), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(347), + [anon_sym_SLASH] = ACTIONS(347), + [anon_sym_PERCENT] = ACTIONS(347), + [anon_sym_CARET] = ACTIONS(347), + [anon_sym_BANG] = ACTIONS(349), + [anon_sym_AMP] = ACTIONS(347), + [anon_sym_PIPE] = ACTIONS(347), + [anon_sym_AMP_AMP] = ACTIONS(341), + [anon_sym_PIPE_PIPE] = ACTIONS(341), + [anon_sym_LT_LT] = ACTIONS(347), + [anon_sym_GT_GT] = ACTIONS(347), + [anon_sym_PLUS_EQ] = ACTIONS(341), + [anon_sym_DASH_EQ] = ACTIONS(341), + [anon_sym_STAR_EQ] = ACTIONS(341), + [anon_sym_SLASH_EQ] = ACTIONS(341), + [anon_sym_PERCENT_EQ] = ACTIONS(341), + [anon_sym_CARET_EQ] = ACTIONS(341), + [anon_sym_AMP_EQ] = ACTIONS(341), + [anon_sym_PIPE_EQ] = ACTIONS(341), + [anon_sym_LT_LT_EQ] = ACTIONS(341), + [anon_sym_GT_GT_EQ] = ACTIONS(341), + [anon_sym_EQ] = ACTIONS(347), + [anon_sym_EQ_EQ] = ACTIONS(341), + [anon_sym_BANG_EQ] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(347), + [anon_sym_LT] = ACTIONS(347), + [anon_sym_GT_EQ] = ACTIONS(341), + [anon_sym_LT_EQ] = ACTIONS(341), + [anon_sym_DOT] = ACTIONS(347), + [anon_sym_DOT_DOT] = ACTIONS(347), + [anon_sym_DOT_DOT_DOT] = ACTIONS(341), + [anon_sym_DOT_DOT_EQ] = ACTIONS(341), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_as] = ACTIONS(347), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(365), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_else] = ACTIONS(347), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [36] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1482), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1534), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1419), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(36), [sym_block_comment] = STATE(36), - [sym_identifier] = ACTIONS(334), - [anon_sym_SEMI] = ACTIONS(368), - [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_RPAREN] = ACTIONS(368), - [anon_sym_LBRACK] = ACTIONS(368), - [anon_sym_RBRACK] = ACTIONS(368), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_RBRACE] = ACTIONS(368), - [anon_sym_PLUS] = ACTIONS(370), - [anon_sym_STAR] = ACTIONS(370), - [anon_sym_QMARK] = ACTIONS(368), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(370), - [anon_sym_SLASH] = ACTIONS(370), - [anon_sym_PERCENT] = ACTIONS(370), - [anon_sym_CARET] = ACTIONS(370), - [anon_sym_BANG] = ACTIONS(344), - [anon_sym_AMP] = ACTIONS(370), - [anon_sym_PIPE] = ACTIONS(370), - [anon_sym_AMP_AMP] = ACTIONS(368), - [anon_sym_PIPE_PIPE] = ACTIONS(368), - [anon_sym_LT_LT] = ACTIONS(370), - [anon_sym_GT_GT] = ACTIONS(370), - [anon_sym_PLUS_EQ] = ACTIONS(368), - [anon_sym_DASH_EQ] = ACTIONS(368), - [anon_sym_STAR_EQ] = ACTIONS(368), - [anon_sym_SLASH_EQ] = ACTIONS(368), - [anon_sym_PERCENT_EQ] = ACTIONS(368), - [anon_sym_CARET_EQ] = ACTIONS(368), - [anon_sym_AMP_EQ] = ACTIONS(368), - [anon_sym_PIPE_EQ] = ACTIONS(368), - [anon_sym_LT_LT_EQ] = ACTIONS(368), - [anon_sym_GT_GT_EQ] = ACTIONS(368), - [anon_sym_EQ] = ACTIONS(370), - [anon_sym_EQ_EQ] = ACTIONS(368), - [anon_sym_BANG_EQ] = ACTIONS(368), - [anon_sym_GT] = ACTIONS(370), - [anon_sym_LT] = ACTIONS(370), - [anon_sym_GT_EQ] = ACTIONS(368), - [anon_sym_LT_EQ] = ACTIONS(368), - [anon_sym_DOT] = ACTIONS(370), - [anon_sym_DOT_DOT] = ACTIONS(370), - [anon_sym_DOT_DOT_DOT] = ACTIONS(368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(368), - [anon_sym_COMMA] = ACTIONS(368), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(370), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_else] = ACTIONS(370), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [sym_identifier] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(373), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(373), + [anon_sym_RBRACK] = ACTIONS(373), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_RBRACE] = ACTIONS(373), + [anon_sym_COMMA] = ACTIONS(373), + [anon_sym_PLUS] = ACTIONS(375), + [anon_sym_STAR] = ACTIONS(375), + [anon_sym_QMARK] = ACTIONS(373), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(375), + [anon_sym_SLASH] = ACTIONS(375), + [anon_sym_PERCENT] = ACTIONS(375), + [anon_sym_CARET] = ACTIONS(375), + [anon_sym_BANG] = ACTIONS(349), + [anon_sym_AMP] = ACTIONS(375), + [anon_sym_PIPE] = ACTIONS(375), + [anon_sym_AMP_AMP] = ACTIONS(373), + [anon_sym_PIPE_PIPE] = ACTIONS(373), + [anon_sym_LT_LT] = ACTIONS(375), + [anon_sym_GT_GT] = ACTIONS(375), + [anon_sym_PLUS_EQ] = ACTIONS(373), + [anon_sym_DASH_EQ] = ACTIONS(373), + [anon_sym_STAR_EQ] = ACTIONS(373), + [anon_sym_SLASH_EQ] = ACTIONS(373), + [anon_sym_PERCENT_EQ] = ACTIONS(373), + [anon_sym_CARET_EQ] = ACTIONS(373), + [anon_sym_AMP_EQ] = ACTIONS(373), + [anon_sym_PIPE_EQ] = ACTIONS(373), + [anon_sym_LT_LT_EQ] = ACTIONS(373), + [anon_sym_GT_GT_EQ] = ACTIONS(373), + [anon_sym_EQ] = ACTIONS(375), + [anon_sym_EQ_EQ] = ACTIONS(373), + [anon_sym_BANG_EQ] = ACTIONS(373), + [anon_sym_GT] = ACTIONS(375), + [anon_sym_LT] = ACTIONS(375), + [anon_sym_GT_EQ] = ACTIONS(373), + [anon_sym_LT_EQ] = ACTIONS(373), + [anon_sym_DOT] = ACTIONS(375), + [anon_sym_DOT_DOT] = ACTIONS(375), + [anon_sym_DOT_DOT_DOT] = ACTIONS(373), + [anon_sym_DOT_DOT_EQ] = ACTIONS(373), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_as] = ACTIONS(375), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(365), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_else] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [37] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1499), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1526), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1419), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(37), [sym_block_comment] = STATE(37), - [sym_identifier] = ACTIONS(334), - [anon_sym_SEMI] = ACTIONS(372), + [sym_identifier] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(377), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(372), + [anon_sym_RPAREN] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(372), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_RBRACE] = ACTIONS(372), - [anon_sym_PLUS] = ACTIONS(374), - [anon_sym_STAR] = ACTIONS(344), - [anon_sym_QMARK] = ACTIONS(372), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(344), - [anon_sym_SLASH] = ACTIONS(374), - [anon_sym_PERCENT] = ACTIONS(374), - [anon_sym_CARET] = ACTIONS(374), - [anon_sym_BANG] = ACTIONS(344), - [anon_sym_AMP] = ACTIONS(376), - [anon_sym_PIPE] = ACTIONS(378), - [anon_sym_AMP_AMP] = ACTIONS(372), - [anon_sym_PIPE_PIPE] = ACTIONS(372), - [anon_sym_LT_LT] = ACTIONS(374), - [anon_sym_GT_GT] = ACTIONS(374), - [anon_sym_PLUS_EQ] = ACTIONS(372), - [anon_sym_DASH_EQ] = ACTIONS(372), - [anon_sym_STAR_EQ] = ACTIONS(372), - [anon_sym_SLASH_EQ] = ACTIONS(372), - [anon_sym_PERCENT_EQ] = ACTIONS(372), - [anon_sym_CARET_EQ] = ACTIONS(372), - [anon_sym_AMP_EQ] = ACTIONS(372), - [anon_sym_PIPE_EQ] = ACTIONS(372), - [anon_sym_LT_LT_EQ] = ACTIONS(372), - [anon_sym_GT_GT_EQ] = ACTIONS(372), - [anon_sym_EQ] = ACTIONS(374), - [anon_sym_EQ_EQ] = ACTIONS(372), - [anon_sym_BANG_EQ] = ACTIONS(372), - [anon_sym_GT] = ACTIONS(374), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_GT_EQ] = ACTIONS(372), - [anon_sym_LT_EQ] = ACTIONS(372), - [anon_sym_DOT] = ACTIONS(374), - [anon_sym_DOT_DOT] = ACTIONS(382), - [anon_sym_DOT_DOT_DOT] = ACTIONS(372), - [anon_sym_DOT_DOT_EQ] = ACTIONS(372), - [anon_sym_COMMA] = ACTIONS(372), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(374), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_else] = ACTIONS(374), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_RBRACK] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_RBRACE] = ACTIONS(377), + [anon_sym_COMMA] = ACTIONS(377), + [anon_sym_PLUS] = ACTIONS(379), + [anon_sym_STAR] = ACTIONS(349), + [anon_sym_QMARK] = ACTIONS(377), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(349), + [anon_sym_SLASH] = ACTIONS(379), + [anon_sym_PERCENT] = ACTIONS(379), + [anon_sym_CARET] = ACTIONS(379), + [anon_sym_BANG] = ACTIONS(349), + [anon_sym_AMP] = ACTIONS(381), + [anon_sym_PIPE] = ACTIONS(383), + [anon_sym_AMP_AMP] = ACTIONS(377), + [anon_sym_PIPE_PIPE] = ACTIONS(377), + [anon_sym_LT_LT] = ACTIONS(379), + [anon_sym_GT_GT] = ACTIONS(379), + [anon_sym_PLUS_EQ] = ACTIONS(377), + [anon_sym_DASH_EQ] = ACTIONS(377), + [anon_sym_STAR_EQ] = ACTIONS(377), + [anon_sym_SLASH_EQ] = ACTIONS(377), + [anon_sym_PERCENT_EQ] = ACTIONS(377), + [anon_sym_CARET_EQ] = ACTIONS(377), + [anon_sym_AMP_EQ] = ACTIONS(377), + [anon_sym_PIPE_EQ] = ACTIONS(377), + [anon_sym_LT_LT_EQ] = ACTIONS(377), + [anon_sym_GT_GT_EQ] = ACTIONS(377), + [anon_sym_EQ] = ACTIONS(379), + [anon_sym_EQ_EQ] = ACTIONS(377), + [anon_sym_BANG_EQ] = ACTIONS(377), + [anon_sym_GT] = ACTIONS(379), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_GT_EQ] = ACTIONS(377), + [anon_sym_LT_EQ] = ACTIONS(377), + [anon_sym_DOT] = ACTIONS(379), + [anon_sym_DOT_DOT] = ACTIONS(387), + [anon_sym_DOT_DOT_DOT] = ACTIONS(377), + [anon_sym_DOT_DOT_EQ] = ACTIONS(377), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_as] = ACTIONS(379), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(365), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_else] = ACTIONS(379), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [38] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1493), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1534), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1419), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(38), [sym_block_comment] = STATE(38), - [sym_identifier] = ACTIONS(334), - [anon_sym_SEMI] = ACTIONS(384), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(384), - [anon_sym_RBRACK] = ACTIONS(384), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_RBRACE] = ACTIONS(384), - [anon_sym_PLUS] = ACTIONS(386), - [anon_sym_STAR] = ACTIONS(386), - [anon_sym_QMARK] = ACTIONS(384), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(386), - [anon_sym_SLASH] = ACTIONS(386), - [anon_sym_PERCENT] = ACTIONS(386), - [anon_sym_CARET] = ACTIONS(386), - [anon_sym_BANG] = ACTIONS(344), - [anon_sym_AMP] = ACTIONS(386), - [anon_sym_PIPE] = ACTIONS(386), - [anon_sym_AMP_AMP] = ACTIONS(384), - [anon_sym_PIPE_PIPE] = ACTIONS(384), - [anon_sym_LT_LT] = ACTIONS(386), - [anon_sym_GT_GT] = ACTIONS(386), - [anon_sym_PLUS_EQ] = ACTIONS(384), - [anon_sym_DASH_EQ] = ACTIONS(384), - [anon_sym_STAR_EQ] = ACTIONS(384), - [anon_sym_SLASH_EQ] = ACTIONS(384), - [anon_sym_PERCENT_EQ] = ACTIONS(384), - [anon_sym_CARET_EQ] = ACTIONS(384), - [anon_sym_AMP_EQ] = ACTIONS(384), - [anon_sym_PIPE_EQ] = ACTIONS(384), - [anon_sym_LT_LT_EQ] = ACTIONS(384), - [anon_sym_GT_GT_EQ] = ACTIONS(384), - [anon_sym_EQ] = ACTIONS(386), - [anon_sym_EQ_EQ] = ACTIONS(384), - [anon_sym_BANG_EQ] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(386), - [anon_sym_LT] = ACTIONS(386), - [anon_sym_GT_EQ] = ACTIONS(384), - [anon_sym_LT_EQ] = ACTIONS(384), - [anon_sym_DOT] = ACTIONS(386), - [anon_sym_DOT_DOT] = ACTIONS(386), - [anon_sym_DOT_DOT_DOT] = ACTIONS(384), - [anon_sym_DOT_DOT_EQ] = ACTIONS(384), - [anon_sym_COMMA] = ACTIONS(384), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(386), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_else] = ACTIONS(386), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [sym_identifier] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(373), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_RPAREN] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(373), + [anon_sym_RBRACK] = ACTIONS(373), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_RBRACE] = ACTIONS(373), + [anon_sym_COMMA] = ACTIONS(373), + [anon_sym_PLUS] = ACTIONS(375), + [anon_sym_STAR] = ACTIONS(375), + [anon_sym_QMARK] = ACTIONS(373), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(375), + [anon_sym_SLASH] = ACTIONS(375), + [anon_sym_PERCENT] = ACTIONS(375), + [anon_sym_CARET] = ACTIONS(375), + [anon_sym_BANG] = ACTIONS(349), + [anon_sym_AMP] = ACTIONS(375), + [anon_sym_PIPE] = ACTIONS(375), + [anon_sym_AMP_AMP] = ACTIONS(373), + [anon_sym_PIPE_PIPE] = ACTIONS(373), + [anon_sym_LT_LT] = ACTIONS(375), + [anon_sym_GT_GT] = ACTIONS(375), + [anon_sym_PLUS_EQ] = ACTIONS(373), + [anon_sym_DASH_EQ] = ACTIONS(373), + [anon_sym_STAR_EQ] = ACTIONS(373), + [anon_sym_SLASH_EQ] = ACTIONS(373), + [anon_sym_PERCENT_EQ] = ACTIONS(373), + [anon_sym_CARET_EQ] = ACTIONS(373), + [anon_sym_AMP_EQ] = ACTIONS(373), + [anon_sym_PIPE_EQ] = ACTIONS(373), + [anon_sym_LT_LT_EQ] = ACTIONS(373), + [anon_sym_GT_GT_EQ] = ACTIONS(373), + [anon_sym_EQ] = ACTIONS(375), + [anon_sym_EQ_EQ] = ACTIONS(373), + [anon_sym_BANG_EQ] = ACTIONS(373), + [anon_sym_GT] = ACTIONS(375), + [anon_sym_LT] = ACTIONS(375), + [anon_sym_GT_EQ] = ACTIONS(373), + [anon_sym_LT_EQ] = ACTIONS(373), + [anon_sym_DOT] = ACTIONS(375), + [anon_sym_DOT_DOT] = ACTIONS(375), + [anon_sym_DOT_DOT_DOT] = ACTIONS(373), + [anon_sym_DOT_DOT_EQ] = ACTIONS(373), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_as] = ACTIONS(375), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(365), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_else] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [39] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1493), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1519), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1419), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(39), [sym_block_comment] = STATE(39), - [sym_identifier] = ACTIONS(334), - [anon_sym_SEMI] = ACTIONS(384), - [anon_sym_LPAREN] = ACTIONS(384), - [anon_sym_RPAREN] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(384), - [anon_sym_RBRACK] = ACTIONS(384), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_RBRACE] = ACTIONS(384), - [anon_sym_PLUS] = ACTIONS(386), - [anon_sym_STAR] = ACTIONS(386), - [anon_sym_QMARK] = ACTIONS(384), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(386), - [anon_sym_SLASH] = ACTIONS(386), - [anon_sym_PERCENT] = ACTIONS(386), - [anon_sym_CARET] = ACTIONS(386), - [anon_sym_BANG] = ACTIONS(344), - [anon_sym_AMP] = ACTIONS(386), - [anon_sym_PIPE] = ACTIONS(386), - [anon_sym_AMP_AMP] = ACTIONS(384), - [anon_sym_PIPE_PIPE] = ACTIONS(384), - [anon_sym_LT_LT] = ACTIONS(386), - [anon_sym_GT_GT] = ACTIONS(386), - [anon_sym_PLUS_EQ] = ACTIONS(384), - [anon_sym_DASH_EQ] = ACTIONS(384), - [anon_sym_STAR_EQ] = ACTIONS(384), - [anon_sym_SLASH_EQ] = ACTIONS(384), - [anon_sym_PERCENT_EQ] = ACTIONS(384), - [anon_sym_CARET_EQ] = ACTIONS(384), - [anon_sym_AMP_EQ] = ACTIONS(384), - [anon_sym_PIPE_EQ] = ACTIONS(384), - [anon_sym_LT_LT_EQ] = ACTIONS(384), - [anon_sym_GT_GT_EQ] = ACTIONS(384), - [anon_sym_EQ] = ACTIONS(386), - [anon_sym_EQ_EQ] = ACTIONS(384), - [anon_sym_BANG_EQ] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(386), - [anon_sym_LT] = ACTIONS(386), - [anon_sym_GT_EQ] = ACTIONS(384), - [anon_sym_LT_EQ] = ACTIONS(384), - [anon_sym_DOT] = ACTIONS(386), - [anon_sym_DOT_DOT] = ACTIONS(386), - [anon_sym_DOT_DOT_DOT] = ACTIONS(384), - [anon_sym_DOT_DOT_EQ] = ACTIONS(384), - [anon_sym_COMMA] = ACTIONS(384), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(386), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_else] = ACTIONS(386), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [sym_identifier] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_RBRACE] = ACTIONS(389), + [anon_sym_COMMA] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(391), + [anon_sym_STAR] = ACTIONS(349), + [anon_sym_QMARK] = ACTIONS(389), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(349), + [anon_sym_SLASH] = ACTIONS(391), + [anon_sym_PERCENT] = ACTIONS(391), + [anon_sym_CARET] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(349), + [anon_sym_AMP] = ACTIONS(381), + [anon_sym_PIPE] = ACTIONS(383), + [anon_sym_AMP_AMP] = ACTIONS(389), + [anon_sym_PIPE_PIPE] = ACTIONS(389), + [anon_sym_LT_LT] = ACTIONS(391), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_PLUS_EQ] = ACTIONS(389), + [anon_sym_DASH_EQ] = ACTIONS(389), + [anon_sym_STAR_EQ] = ACTIONS(389), + [anon_sym_SLASH_EQ] = ACTIONS(389), + [anon_sym_PERCENT_EQ] = ACTIONS(389), + [anon_sym_CARET_EQ] = ACTIONS(389), + [anon_sym_AMP_EQ] = ACTIONS(389), + [anon_sym_PIPE_EQ] = ACTIONS(389), + [anon_sym_LT_LT_EQ] = ACTIONS(389), + [anon_sym_GT_GT_EQ] = ACTIONS(389), + [anon_sym_EQ] = ACTIONS(391), + [anon_sym_EQ_EQ] = ACTIONS(389), + [anon_sym_BANG_EQ] = ACTIONS(389), + [anon_sym_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_GT_EQ] = ACTIONS(389), + [anon_sym_LT_EQ] = ACTIONS(389), + [anon_sym_DOT] = ACTIONS(391), + [anon_sym_DOT_DOT] = ACTIONS(387), + [anon_sym_DOT_DOT_DOT] = ACTIONS(389), + [anon_sym_DOT_DOT_EQ] = ACTIONS(389), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_as] = ACTIONS(391), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(365), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_else] = ACTIONS(391), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [40] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1482), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1518), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1419), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(35), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(40), [sym_block_comment] = STATE(40), - [sym_identifier] = ACTIONS(334), - [anon_sym_SEMI] = ACTIONS(368), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(368), - [anon_sym_LBRACK] = ACTIONS(368), - [anon_sym_RBRACK] = ACTIONS(368), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_RBRACE] = ACTIONS(368), - [anon_sym_PLUS] = ACTIONS(370), - [anon_sym_STAR] = ACTIONS(370), - [anon_sym_QMARK] = ACTIONS(368), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(370), - [anon_sym_SLASH] = ACTIONS(370), - [anon_sym_PERCENT] = ACTIONS(370), - [anon_sym_CARET] = ACTIONS(370), - [anon_sym_BANG] = ACTIONS(344), - [anon_sym_AMP] = ACTIONS(370), - [anon_sym_PIPE] = ACTIONS(370), - [anon_sym_AMP_AMP] = ACTIONS(368), - [anon_sym_PIPE_PIPE] = ACTIONS(368), - [anon_sym_LT_LT] = ACTIONS(370), - [anon_sym_GT_GT] = ACTIONS(370), - [anon_sym_PLUS_EQ] = ACTIONS(368), - [anon_sym_DASH_EQ] = ACTIONS(368), - [anon_sym_STAR_EQ] = ACTIONS(368), - [anon_sym_SLASH_EQ] = ACTIONS(368), - [anon_sym_PERCENT_EQ] = ACTIONS(368), - [anon_sym_CARET_EQ] = ACTIONS(368), - [anon_sym_AMP_EQ] = ACTIONS(368), - [anon_sym_PIPE_EQ] = ACTIONS(368), - [anon_sym_LT_LT_EQ] = ACTIONS(368), - [anon_sym_GT_GT_EQ] = ACTIONS(368), - [anon_sym_EQ] = ACTIONS(370), - [anon_sym_EQ_EQ] = ACTIONS(368), - [anon_sym_BANG_EQ] = ACTIONS(368), - [anon_sym_GT] = ACTIONS(370), - [anon_sym_LT] = ACTIONS(370), - [anon_sym_GT_EQ] = ACTIONS(368), - [anon_sym_LT_EQ] = ACTIONS(368), - [anon_sym_DOT] = ACTIONS(370), - [anon_sym_DOT_DOT] = ACTIONS(370), - [anon_sym_DOT_DOT_DOT] = ACTIONS(368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(368), - [anon_sym_COMMA] = ACTIONS(368), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(370), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_else] = ACTIONS(370), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [sym_identifier] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(393), + [anon_sym_RPAREN] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(393), + [anon_sym_RBRACK] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_RBRACE] = ACTIONS(393), + [anon_sym_COMMA] = ACTIONS(393), + [anon_sym_PLUS] = ACTIONS(395), + [anon_sym_STAR] = ACTIONS(395), + [anon_sym_QMARK] = ACTIONS(393), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(395), + [anon_sym_SLASH] = ACTIONS(395), + [anon_sym_PERCENT] = ACTIONS(395), + [anon_sym_CARET] = ACTIONS(395), + [anon_sym_BANG] = ACTIONS(349), + [anon_sym_AMP] = ACTIONS(395), + [anon_sym_PIPE] = ACTIONS(395), + [anon_sym_AMP_AMP] = ACTIONS(393), + [anon_sym_PIPE_PIPE] = ACTIONS(393), + [anon_sym_LT_LT] = ACTIONS(395), + [anon_sym_GT_GT] = ACTIONS(395), + [anon_sym_PLUS_EQ] = ACTIONS(393), + [anon_sym_DASH_EQ] = ACTIONS(393), + [anon_sym_STAR_EQ] = ACTIONS(393), + [anon_sym_SLASH_EQ] = ACTIONS(393), + [anon_sym_PERCENT_EQ] = ACTIONS(393), + [anon_sym_CARET_EQ] = ACTIONS(393), + [anon_sym_AMP_EQ] = ACTIONS(393), + [anon_sym_PIPE_EQ] = ACTIONS(393), + [anon_sym_LT_LT_EQ] = ACTIONS(393), + [anon_sym_GT_GT_EQ] = ACTIONS(393), + [anon_sym_EQ] = ACTIONS(395), + [anon_sym_EQ_EQ] = ACTIONS(393), + [anon_sym_BANG_EQ] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(395), + [anon_sym_LT] = ACTIONS(395), + [anon_sym_GT_EQ] = ACTIONS(393), + [anon_sym_LT_EQ] = ACTIONS(393), + [anon_sym_DOT] = ACTIONS(395), + [anon_sym_DOT_DOT] = ACTIONS(395), + [anon_sym_DOT_DOT_DOT] = ACTIONS(393), + [anon_sym_DOT_DOT_EQ] = ACTIONS(393), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(397), + [anon_sym_as] = ACTIONS(395), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(365), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_else] = ACTIONS(395), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [41] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1502), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(35), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1538), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1419), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(41), [sym_block_comment] = STATE(41), - [sym_identifier] = ACTIONS(334), - [anon_sym_SEMI] = ACTIONS(388), - [anon_sym_LPAREN] = ACTIONS(388), - [anon_sym_RPAREN] = ACTIONS(388), - [anon_sym_LBRACK] = ACTIONS(388), - [anon_sym_RBRACK] = ACTIONS(388), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_RBRACE] = ACTIONS(388), - [anon_sym_PLUS] = ACTIONS(390), - [anon_sym_STAR] = ACTIONS(390), - [anon_sym_QMARK] = ACTIONS(388), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(390), - [anon_sym_SLASH] = ACTIONS(390), - [anon_sym_PERCENT] = ACTIONS(390), - [anon_sym_CARET] = ACTIONS(390), - [anon_sym_BANG] = ACTIONS(344), - [anon_sym_AMP] = ACTIONS(390), - [anon_sym_PIPE] = ACTIONS(390), - [anon_sym_AMP_AMP] = ACTIONS(388), - [anon_sym_PIPE_PIPE] = ACTIONS(388), - [anon_sym_LT_LT] = ACTIONS(390), - [anon_sym_GT_GT] = ACTIONS(390), - [anon_sym_PLUS_EQ] = ACTIONS(388), - [anon_sym_DASH_EQ] = ACTIONS(388), - [anon_sym_STAR_EQ] = ACTIONS(388), - [anon_sym_SLASH_EQ] = ACTIONS(388), - [anon_sym_PERCENT_EQ] = ACTIONS(388), - [anon_sym_CARET_EQ] = ACTIONS(388), - [anon_sym_AMP_EQ] = ACTIONS(388), - [anon_sym_PIPE_EQ] = ACTIONS(388), - [anon_sym_LT_LT_EQ] = ACTIONS(388), - [anon_sym_GT_GT_EQ] = ACTIONS(388), - [anon_sym_EQ] = ACTIONS(390), - [anon_sym_EQ_EQ] = ACTIONS(388), - [anon_sym_BANG_EQ] = ACTIONS(388), - [anon_sym_GT] = ACTIONS(390), - [anon_sym_LT] = ACTIONS(390), - [anon_sym_GT_EQ] = ACTIONS(388), - [anon_sym_LT_EQ] = ACTIONS(388), - [anon_sym_DOT] = ACTIONS(390), - [anon_sym_DOT_DOT] = ACTIONS(390), - [anon_sym_DOT_DOT_DOT] = ACTIONS(388), - [anon_sym_DOT_DOT_EQ] = ACTIONS(388), - [anon_sym_COMMA] = ACTIONS(388), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(392), - [anon_sym_as] = ACTIONS(390), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_else] = ACTIONS(390), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [sym_identifier] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(399), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(399), + [anon_sym_LBRACK] = ACTIONS(399), + [anon_sym_RBRACK] = ACTIONS(399), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_RBRACE] = ACTIONS(399), + [anon_sym_COMMA] = ACTIONS(399), + [anon_sym_PLUS] = ACTIONS(401), + [anon_sym_STAR] = ACTIONS(401), + [anon_sym_QMARK] = ACTIONS(399), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_PERCENT] = ACTIONS(401), + [anon_sym_CARET] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(349), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_PIPE] = ACTIONS(401), + [anon_sym_AMP_AMP] = ACTIONS(399), + [anon_sym_PIPE_PIPE] = ACTIONS(399), + [anon_sym_LT_LT] = ACTIONS(401), + [anon_sym_GT_GT] = ACTIONS(401), + [anon_sym_PLUS_EQ] = ACTIONS(399), + [anon_sym_DASH_EQ] = ACTIONS(399), + [anon_sym_STAR_EQ] = ACTIONS(399), + [anon_sym_SLASH_EQ] = ACTIONS(399), + [anon_sym_PERCENT_EQ] = ACTIONS(399), + [anon_sym_CARET_EQ] = ACTIONS(399), + [anon_sym_AMP_EQ] = ACTIONS(399), + [anon_sym_PIPE_EQ] = ACTIONS(399), + [anon_sym_LT_LT_EQ] = ACTIONS(399), + [anon_sym_GT_GT_EQ] = ACTIONS(399), + [anon_sym_EQ] = ACTIONS(401), + [anon_sym_EQ_EQ] = ACTIONS(399), + [anon_sym_BANG_EQ] = ACTIONS(399), + [anon_sym_GT] = ACTIONS(401), + [anon_sym_LT] = ACTIONS(401), + [anon_sym_GT_EQ] = ACTIONS(399), + [anon_sym_LT_EQ] = ACTIONS(399), + [anon_sym_DOT] = ACTIONS(401), + [anon_sym_DOT_DOT] = ACTIONS(401), + [anon_sym_DOT_DOT_DOT] = ACTIONS(399), + [anon_sym_DOT_DOT_EQ] = ACTIONS(399), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_as] = ACTIONS(401), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(365), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_else] = ACTIONS(401), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [42] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1489), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1538), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1419), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(42), [sym_block_comment] = STATE(42), - [sym_identifier] = ACTIONS(334), - [anon_sym_SEMI] = ACTIONS(394), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(394), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(394), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_RBRACE] = ACTIONS(394), - [anon_sym_PLUS] = ACTIONS(396), - [anon_sym_STAR] = ACTIONS(344), - [anon_sym_QMARK] = ACTIONS(394), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(344), - [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_PERCENT] = ACTIONS(396), - [anon_sym_CARET] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(344), - [anon_sym_AMP] = ACTIONS(376), - [anon_sym_PIPE] = ACTIONS(378), - [anon_sym_AMP_AMP] = ACTIONS(394), - [anon_sym_PIPE_PIPE] = ACTIONS(394), - [anon_sym_LT_LT] = ACTIONS(396), - [anon_sym_GT_GT] = 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_CARET_EQ] = ACTIONS(394), - [anon_sym_AMP_EQ] = ACTIONS(394), - [anon_sym_PIPE_EQ] = ACTIONS(394), - [anon_sym_LT_LT_EQ] = ACTIONS(394), - [anon_sym_GT_GT_EQ] = ACTIONS(394), - [anon_sym_EQ] = ACTIONS(396), - [anon_sym_EQ_EQ] = ACTIONS(394), - [anon_sym_BANG_EQ] = ACTIONS(394), - [anon_sym_GT] = ACTIONS(396), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_GT_EQ] = ACTIONS(394), - [anon_sym_LT_EQ] = ACTIONS(394), - [anon_sym_DOT] = ACTIONS(396), - [anon_sym_DOT_DOT] = ACTIONS(382), - [anon_sym_DOT_DOT_DOT] = ACTIONS(394), - [anon_sym_DOT_DOT_EQ] = ACTIONS(394), - [anon_sym_COMMA] = ACTIONS(394), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(396), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_else] = ACTIONS(396), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [sym_identifier] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(399), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_RPAREN] = ACTIONS(399), + [anon_sym_LBRACK] = ACTIONS(399), + [anon_sym_RBRACK] = ACTIONS(399), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_RBRACE] = ACTIONS(399), + [anon_sym_COMMA] = ACTIONS(399), + [anon_sym_PLUS] = ACTIONS(401), + [anon_sym_STAR] = ACTIONS(401), + [anon_sym_QMARK] = ACTIONS(399), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_PERCENT] = ACTIONS(401), + [anon_sym_CARET] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(349), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_PIPE] = ACTIONS(401), + [anon_sym_AMP_AMP] = ACTIONS(399), + [anon_sym_PIPE_PIPE] = ACTIONS(399), + [anon_sym_LT_LT] = ACTIONS(401), + [anon_sym_GT_GT] = ACTIONS(401), + [anon_sym_PLUS_EQ] = ACTIONS(399), + [anon_sym_DASH_EQ] = ACTIONS(399), + [anon_sym_STAR_EQ] = ACTIONS(399), + [anon_sym_SLASH_EQ] = ACTIONS(399), + [anon_sym_PERCENT_EQ] = ACTIONS(399), + [anon_sym_CARET_EQ] = ACTIONS(399), + [anon_sym_AMP_EQ] = ACTIONS(399), + [anon_sym_PIPE_EQ] = ACTIONS(399), + [anon_sym_LT_LT_EQ] = ACTIONS(399), + [anon_sym_GT_GT_EQ] = ACTIONS(399), + [anon_sym_EQ] = ACTIONS(401), + [anon_sym_EQ_EQ] = ACTIONS(399), + [anon_sym_BANG_EQ] = ACTIONS(399), + [anon_sym_GT] = ACTIONS(401), + [anon_sym_LT] = ACTIONS(401), + [anon_sym_GT_EQ] = ACTIONS(399), + [anon_sym_LT_EQ] = ACTIONS(399), + [anon_sym_DOT] = ACTIONS(401), + [anon_sym_DOT_DOT] = ACTIONS(401), + [anon_sym_DOT_DOT_DOT] = ACTIONS(399), + [anon_sym_DOT_DOT_EQ] = ACTIONS(399), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_as] = ACTIONS(401), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(365), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_else] = ACTIONS(401), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [43] = { - [sym_bracketed_type] = STATE(3498), - [sym_generic_function] = STATE(1637), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1604), - [sym__expression] = STATE(1749), - [sym_macro_invocation] = STATE(1641), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3100), - [sym_range_expression] = STATE(1639), - [sym_unary_expression] = STATE(1637), - [sym_try_expression] = STATE(1637), - [sym_reference_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_assignment_expression] = STATE(1637), - [sym_compound_assignment_expr] = STATE(1637), - [sym_type_cast_expression] = STATE(1637), - [sym_return_expression] = STATE(1637), - [sym_yield_expression] = STATE(1637), - [sym_call_expression] = STATE(1637), - [sym_array_expression] = STATE(1637), - [sym_parenthesized_expression] = STATE(1637), - [sym_tuple_expression] = STATE(1637), - [sym_unit_expression] = STATE(1637), - [sym_struct_expression] = STATE(1637), - [sym_if_expression] = STATE(1637), - [sym_match_expression] = STATE(1637), - [sym_while_expression] = STATE(1637), - [sym_loop_expression] = STATE(1637), - [sym_for_expression] = STATE(1637), - [sym_const_block] = STATE(1637), - [sym_closure_expression] = STATE(1637), - [sym_closure_parameters] = STATE(237), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1637), - [sym_continue_expression] = STATE(1637), - [sym_index_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_field_expression] = STATE(1620), - [sym_unsafe_block] = STATE(1637), - [sym_async_block] = STATE(1637), - [sym_try_block] = STATE(1637), - [sym_block] = STATE(1637), - [sym__literal] = STATE(1637), - [sym_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_boolean_literal] = STATE(1778), + [sym_bracketed_type] = STATE(3593), + [sym_generic_function] = STATE(1742), + [sym_generic_type_with_turbofish] = STATE(2901), + [sym__expression_except_range] = STATE(1655), + [sym__expression] = STATE(1851), + [sym_macro_invocation] = STATE(1752), + [sym_scoped_identifier] = STATE(1584), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1746), + [sym_unary_expression] = STATE(1742), + [sym_try_expression] = STATE(1742), + [sym_reference_expression] = STATE(1742), + [sym_binary_expression] = STATE(1742), + [sym_assignment_expression] = STATE(1742), + [sym_compound_assignment_expr] = STATE(1742), + [sym_type_cast_expression] = STATE(1742), + [sym_return_expression] = STATE(1742), + [sym_yield_expression] = STATE(1742), + [sym_call_expression] = STATE(1742), + [sym_array_expression] = STATE(1742), + [sym_parenthesized_expression] = STATE(1742), + [sym_tuple_expression] = STATE(1742), + [sym_unit_expression] = STATE(1742), + [sym_struct_expression] = STATE(1742), + [sym_if_expression] = STATE(1742), + [sym_match_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_loop_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_const_block] = STATE(1742), + [sym_closure_expression] = STATE(1742), + [sym_closure_parameters] = STATE(244), + [sym_label] = STATE(3682), + [sym_break_expression] = STATE(1742), + [sym_continue_expression] = STATE(1742), + [sym_index_expression] = STATE(1742), + [sym_await_expression] = STATE(1742), + [sym_field_expression] = STATE(1652), + [sym_unsafe_block] = STATE(1742), + [sym_async_block] = STATE(1742), + [sym_try_block] = STATE(1742), + [sym_block] = STATE(1742), + [sym__literal] = STATE(1742), + [sym_string_literal] = STATE(1723), + [sym_raw_string_literal] = STATE(1723), + [sym_boolean_literal] = STATE(1723), [sym_line_comment] = STATE(43), [sym_block_comment] = STATE(43), - [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(336), - [anon_sym_LBRACK] = ACTIONS(336), - [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_EQ_GT] = ACTIONS(336), - [anon_sym_COLON] = ACTIONS(402), - [anon_sym_PLUS] = ACTIONS(342), - [anon_sym_STAR] = ACTIONS(342), - [anon_sym_QMARK] = ACTIONS(336), - [anon_sym_u8] = ACTIONS(404), - [anon_sym_i8] = ACTIONS(404), - [anon_sym_u16] = ACTIONS(404), - [anon_sym_i16] = ACTIONS(404), - [anon_sym_u32] = ACTIONS(404), - [anon_sym_i32] = ACTIONS(404), - [anon_sym_u64] = ACTIONS(404), - [anon_sym_i64] = ACTIONS(404), - [anon_sym_u128] = ACTIONS(404), - [anon_sym_i128] = ACTIONS(404), - [anon_sym_isize] = ACTIONS(404), - [anon_sym_usize] = ACTIONS(404), - [anon_sym_f32] = ACTIONS(404), - [anon_sym_f64] = ACTIONS(404), - [anon_sym_bool] = ACTIONS(404), - [anon_sym_str] = ACTIONS(404), - [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(342), - [anon_sym_SLASH] = ACTIONS(342), - [anon_sym_PERCENT] = ACTIONS(342), - [anon_sym_CARET] = ACTIONS(342), - [anon_sym_BANG] = ACTIONS(406), - [anon_sym_AMP] = ACTIONS(342), - [anon_sym_PIPE] = ACTIONS(342), - [anon_sym_AMP_AMP] = ACTIONS(336), - [anon_sym_PIPE_PIPE] = ACTIONS(336), - [anon_sym_LT_LT] = ACTIONS(342), - [anon_sym_GT_GT] = ACTIONS(342), - [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_CARET_EQ] = ACTIONS(336), - [anon_sym_AMP_EQ] = ACTIONS(336), - [anon_sym_PIPE_EQ] = ACTIONS(336), - [anon_sym_LT_LT_EQ] = ACTIONS(336), - [anon_sym_GT_GT_EQ] = ACTIONS(336), - [anon_sym_EQ] = ACTIONS(342), - [anon_sym_EQ_EQ] = ACTIONS(336), - [anon_sym_BANG_EQ] = ACTIONS(336), - [anon_sym_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(342), - [anon_sym_GT_EQ] = ACTIONS(336), - [anon_sym_LT_EQ] = ACTIONS(336), - [anon_sym_DOT] = ACTIONS(342), - [anon_sym_DOT_DOT] = ACTIONS(342), - [anon_sym_DOT_DOT_DOT] = ACTIONS(336), - [anon_sym_DOT_DOT_EQ] = ACTIONS(336), - [anon_sym_COLON_COLON] = ACTIONS(408), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(342), - [anon_sym_async] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_const] = ACTIONS(414), - [anon_sym_continue] = ACTIONS(416), - [anon_sym_default] = ACTIONS(418), - [anon_sym_for] = ACTIONS(420), - [anon_sym_if] = ACTIONS(422), - [anon_sym_loop] = ACTIONS(424), - [anon_sym_match] = ACTIONS(426), - [anon_sym_return] = ACTIONS(428), - [anon_sym_static] = ACTIONS(430), - [anon_sym_union] = ACTIONS(418), - [anon_sym_unsafe] = ACTIONS(432), - [anon_sym_while] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_move] = ACTIONS(438), - [anon_sym_try] = ACTIONS(440), - [sym_integer_literal] = ACTIONS(442), - [aux_sym_string_literal_token1] = ACTIONS(444), - [sym_char_literal] = ACTIONS(442), - [anon_sym_true] = ACTIONS(446), - [anon_sym_false] = ACTIONS(446), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(448), - [sym_super] = ACTIONS(450), - [sym_crate] = ACTIONS(450), - [sym_metavariable] = ACTIONS(452), - [sym__raw_string_literal_start] = ACTIONS(454), - [sym_float_literal] = ACTIONS(442), + [sym_identifier] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(405), + [anon_sym_EQ_GT] = ACTIONS(341), + [anon_sym_COLON] = ACTIONS(407), + [anon_sym_PLUS] = ACTIONS(347), + [anon_sym_STAR] = ACTIONS(347), + [anon_sym_QMARK] = ACTIONS(341), + [anon_sym_u8] = ACTIONS(409), + [anon_sym_i8] = ACTIONS(409), + [anon_sym_u16] = ACTIONS(409), + [anon_sym_i16] = ACTIONS(409), + [anon_sym_u32] = ACTIONS(409), + [anon_sym_i32] = ACTIONS(409), + [anon_sym_u64] = ACTIONS(409), + [anon_sym_i64] = ACTIONS(409), + [anon_sym_u128] = ACTIONS(409), + [anon_sym_i128] = ACTIONS(409), + [anon_sym_isize] = ACTIONS(409), + [anon_sym_usize] = ACTIONS(409), + [anon_sym_f32] = ACTIONS(409), + [anon_sym_f64] = ACTIONS(409), + [anon_sym_bool] = ACTIONS(409), + [anon_sym_str] = ACTIONS(409), + [anon_sym_char] = ACTIONS(409), + [anon_sym_DASH] = ACTIONS(347), + [anon_sym_SLASH] = ACTIONS(347), + [anon_sym_PERCENT] = ACTIONS(347), + [anon_sym_CARET] = ACTIONS(347), + [anon_sym_BANG] = ACTIONS(411), + [anon_sym_AMP] = ACTIONS(347), + [anon_sym_PIPE] = ACTIONS(347), + [anon_sym_AMP_AMP] = ACTIONS(341), + [anon_sym_PIPE_PIPE] = ACTIONS(341), + [anon_sym_LT_LT] = ACTIONS(347), + [anon_sym_GT_GT] = ACTIONS(347), + [anon_sym_PLUS_EQ] = ACTIONS(341), + [anon_sym_DASH_EQ] = ACTIONS(341), + [anon_sym_STAR_EQ] = ACTIONS(341), + [anon_sym_SLASH_EQ] = ACTIONS(341), + [anon_sym_PERCENT_EQ] = ACTIONS(341), + [anon_sym_CARET_EQ] = ACTIONS(341), + [anon_sym_AMP_EQ] = ACTIONS(341), + [anon_sym_PIPE_EQ] = ACTIONS(341), + [anon_sym_LT_LT_EQ] = ACTIONS(341), + [anon_sym_GT_GT_EQ] = ACTIONS(341), + [anon_sym_EQ] = ACTIONS(347), + [anon_sym_EQ_EQ] = ACTIONS(341), + [anon_sym_BANG_EQ] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(347), + [anon_sym_LT] = ACTIONS(347), + [anon_sym_GT_EQ] = ACTIONS(341), + [anon_sym_LT_EQ] = ACTIONS(341), + [anon_sym_DOT] = ACTIONS(347), + [anon_sym_DOT_DOT] = ACTIONS(347), + [anon_sym_DOT_DOT_DOT] = ACTIONS(341), + [anon_sym_DOT_DOT_EQ] = ACTIONS(341), + [anon_sym_COLON_COLON] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_as] = ACTIONS(347), + [anon_sym_async] = ACTIONS(415), + [anon_sym_break] = ACTIONS(417), + [anon_sym_const] = ACTIONS(419), + [anon_sym_continue] = ACTIONS(421), + [anon_sym_default] = ACTIONS(423), + [anon_sym_for] = ACTIONS(425), + [anon_sym_if] = ACTIONS(427), + [anon_sym_loop] = ACTIONS(429), + [anon_sym_match] = ACTIONS(431), + [anon_sym_return] = ACTIONS(433), + [anon_sym_static] = ACTIONS(435), + [anon_sym_union] = ACTIONS(423), + [anon_sym_unsafe] = ACTIONS(437), + [anon_sym_while] = ACTIONS(439), + [anon_sym_yield] = ACTIONS(441), + [anon_sym_move] = ACTIONS(443), + [anon_sym_try] = ACTIONS(445), + [sym_integer_literal] = ACTIONS(447), + [aux_sym_string_literal_token1] = ACTIONS(449), + [sym_char_literal] = ACTIONS(447), + [anon_sym_true] = ACTIONS(451), + [anon_sym_false] = ACTIONS(451), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(453), + [sym_super] = ACTIONS(455), + [sym_crate] = ACTIONS(455), + [sym_metavariable] = ACTIONS(457), + [sym__raw_string_literal_start] = ACTIONS(459), + [sym_float_literal] = ACTIONS(447), }, [44] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1710), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), + [sym_bracketed_type] = STATE(3593), + [sym_generic_function] = STATE(1742), + [sym_generic_type_with_turbofish] = STATE(2901), + [sym__expression_except_range] = STATE(1655), + [sym__expression] = STATE(1792), + [sym_macro_invocation] = STATE(1752), + [sym_scoped_identifier] = STATE(1584), [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_range_expression] = STATE(1746), + [sym_unary_expression] = STATE(1742), + [sym_try_expression] = STATE(1742), + [sym_reference_expression] = STATE(1742), + [sym_binary_expression] = STATE(1742), + [sym_assignment_expression] = STATE(1742), + [sym_compound_assignment_expr] = STATE(1742), + [sym_type_cast_expression] = STATE(1742), + [sym_return_expression] = STATE(1742), + [sym_yield_expression] = STATE(1742), + [sym_call_expression] = STATE(1742), + [sym_array_expression] = STATE(1742), + [sym_parenthesized_expression] = STATE(1742), + [sym_tuple_expression] = STATE(1742), + [sym_unit_expression] = STATE(1742), + [sym_struct_expression] = STATE(1742), + [sym_if_expression] = STATE(1742), + [sym_match_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_loop_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_const_block] = STATE(1742), + [sym_closure_expression] = STATE(1742), + [sym_closure_parameters] = STATE(244), + [sym_label] = STATE(3682), + [sym_break_expression] = STATE(1742), + [sym_continue_expression] = STATE(1742), + [sym_index_expression] = STATE(1742), + [sym_await_expression] = STATE(1742), + [sym_field_expression] = STATE(1652), + [sym_unsafe_block] = STATE(1742), + [sym_async_block] = STATE(1742), + [sym_try_block] = STATE(1742), + [sym_block] = STATE(1742), + [sym__literal] = STATE(1742), + [sym_string_literal] = STATE(1723), + [sym_raw_string_literal] = STATE(1723), + [sym_boolean_literal] = STATE(1723), [sym_line_comment] = STATE(44), [sym_block_comment] = STATE(44), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(336), - [anon_sym_LBRACK] = ACTIONS(336), - [anon_sym_LBRACE] = ACTIONS(336), - [anon_sym_COLON] = ACTIONS(340), - [anon_sym_PLUS] = ACTIONS(342), - [anon_sym_STAR] = ACTIONS(342), - [anon_sym_QMARK] = ACTIONS(336), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(342), - [anon_sym_SLASH] = ACTIONS(342), - [anon_sym_PERCENT] = ACTIONS(342), - [anon_sym_CARET] = ACTIONS(342), - [anon_sym_BANG] = ACTIONS(460), - [anon_sym_AMP] = ACTIONS(342), - [anon_sym_PIPE] = ACTIONS(342), - [anon_sym_AMP_AMP] = ACTIONS(336), - [anon_sym_PIPE_PIPE] = ACTIONS(336), - [anon_sym_LT_LT] = ACTIONS(342), - [anon_sym_GT_GT] = ACTIONS(342), - [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_CARET_EQ] = ACTIONS(336), - [anon_sym_AMP_EQ] = ACTIONS(336), - [anon_sym_PIPE_EQ] = ACTIONS(336), - [anon_sym_LT_LT_EQ] = ACTIONS(336), - [anon_sym_GT_GT_EQ] = ACTIONS(336), - [anon_sym_EQ] = ACTIONS(342), - [anon_sym_EQ_EQ] = ACTIONS(336), - [anon_sym_BANG_EQ] = ACTIONS(336), - [anon_sym_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(342), - [anon_sym_GT_EQ] = ACTIONS(336), - [anon_sym_LT_EQ] = ACTIONS(336), - [anon_sym_DOT] = ACTIONS(342), - [anon_sym_DOT_DOT] = ACTIONS(342), - [anon_sym_DOT_DOT_DOT] = ACTIONS(336), - [anon_sym_DOT_DOT_EQ] = ACTIONS(336), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(342), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(464), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(468), - [anon_sym_static] = ACTIONS(470), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(472), - [anon_sym_move] = ACTIONS(474), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [sym_identifier] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(461), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LBRACE] = ACTIONS(405), + [anon_sym_EQ_GT] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(391), + [anon_sym_STAR] = ACTIONS(411), + [anon_sym_QMARK] = ACTIONS(389), + [anon_sym_u8] = ACTIONS(409), + [anon_sym_i8] = ACTIONS(409), + [anon_sym_u16] = ACTIONS(409), + [anon_sym_i16] = ACTIONS(409), + [anon_sym_u32] = ACTIONS(409), + [anon_sym_i32] = ACTIONS(409), + [anon_sym_u64] = ACTIONS(409), + [anon_sym_i64] = ACTIONS(409), + [anon_sym_u128] = ACTIONS(409), + [anon_sym_i128] = ACTIONS(409), + [anon_sym_isize] = ACTIONS(409), + [anon_sym_usize] = ACTIONS(409), + [anon_sym_f32] = ACTIONS(409), + [anon_sym_f64] = ACTIONS(409), + [anon_sym_bool] = ACTIONS(409), + [anon_sym_str] = ACTIONS(409), + [anon_sym_char] = ACTIONS(409), + [anon_sym_DASH] = ACTIONS(411), + [anon_sym_SLASH] = ACTIONS(391), + [anon_sym_PERCENT] = ACTIONS(391), + [anon_sym_CARET] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(411), + [anon_sym_AMP] = ACTIONS(465), + [anon_sym_PIPE] = ACTIONS(383), + [anon_sym_AMP_AMP] = ACTIONS(389), + [anon_sym_PIPE_PIPE] = ACTIONS(389), + [anon_sym_LT_LT] = ACTIONS(391), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_PLUS_EQ] = ACTIONS(389), + [anon_sym_DASH_EQ] = ACTIONS(389), + [anon_sym_STAR_EQ] = ACTIONS(389), + [anon_sym_SLASH_EQ] = ACTIONS(389), + [anon_sym_PERCENT_EQ] = ACTIONS(389), + [anon_sym_CARET_EQ] = ACTIONS(389), + [anon_sym_AMP_EQ] = ACTIONS(389), + [anon_sym_PIPE_EQ] = ACTIONS(389), + [anon_sym_LT_LT_EQ] = ACTIONS(389), + [anon_sym_GT_GT_EQ] = ACTIONS(389), + [anon_sym_EQ] = ACTIONS(391), + [anon_sym_EQ_EQ] = ACTIONS(389), + [anon_sym_BANG_EQ] = ACTIONS(389), + [anon_sym_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_GT_EQ] = ACTIONS(389), + [anon_sym_LT_EQ] = ACTIONS(389), + [anon_sym_DOT] = ACTIONS(391), + [anon_sym_DOT_DOT] = ACTIONS(467), + [anon_sym_DOT_DOT_DOT] = ACTIONS(389), + [anon_sym_DOT_DOT_EQ] = ACTIONS(389), + [anon_sym_COLON_COLON] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_as] = ACTIONS(391), + [anon_sym_async] = ACTIONS(415), + [anon_sym_break] = ACTIONS(417), + [anon_sym_const] = ACTIONS(419), + [anon_sym_continue] = ACTIONS(421), + [anon_sym_default] = ACTIONS(423), + [anon_sym_for] = ACTIONS(425), + [anon_sym_if] = ACTIONS(427), + [anon_sym_loop] = ACTIONS(429), + [anon_sym_match] = ACTIONS(431), + [anon_sym_return] = ACTIONS(433), + [anon_sym_static] = ACTIONS(435), + [anon_sym_union] = ACTIONS(423), + [anon_sym_unsafe] = ACTIONS(437), + [anon_sym_while] = ACTIONS(439), + [anon_sym_yield] = ACTIONS(441), + [anon_sym_move] = ACTIONS(443), + [anon_sym_try] = ACTIONS(445), + [sym_integer_literal] = ACTIONS(447), + [aux_sym_string_literal_token1] = ACTIONS(449), + [sym_char_literal] = ACTIONS(447), + [anon_sym_true] = ACTIONS(451), + [anon_sym_false] = ACTIONS(451), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(453), + [sym_super] = ACTIONS(455), + [sym_crate] = ACTIONS(455), + [sym_metavariable] = ACTIONS(457), + [sym__raw_string_literal_start] = ACTIONS(459), + [sym_float_literal] = ACTIONS(447), }, [45] = { - [sym_bracketed_type] = STATE(3498), - [sym_generic_function] = STATE(1637), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1604), - [sym__expression] = STATE(1648), - [sym_macro_invocation] = STATE(1641), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3100), - [sym_range_expression] = STATE(1639), - [sym_unary_expression] = STATE(1637), - [sym_try_expression] = STATE(1637), - [sym_reference_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_assignment_expression] = STATE(1637), - [sym_compound_assignment_expr] = STATE(1637), - [sym_type_cast_expression] = STATE(1637), - [sym_return_expression] = STATE(1637), - [sym_yield_expression] = STATE(1637), - [sym_call_expression] = STATE(1637), - [sym_array_expression] = STATE(1637), - [sym_parenthesized_expression] = STATE(1637), - [sym_tuple_expression] = STATE(1637), - [sym_unit_expression] = STATE(1637), - [sym_struct_expression] = STATE(1637), - [sym_if_expression] = STATE(1637), - [sym_match_expression] = STATE(1637), - [sym_while_expression] = STATE(1637), - [sym_loop_expression] = STATE(1637), - [sym_for_expression] = STATE(1637), - [sym_const_block] = STATE(1637), - [sym_closure_expression] = STATE(1637), - [sym_closure_parameters] = STATE(237), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1637), - [sym_continue_expression] = STATE(1637), - [sym_index_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_field_expression] = STATE(1620), - [sym_unsafe_block] = STATE(1637), - [sym_async_block] = STATE(1637), - [sym_try_block] = STATE(1637), - [sym_block] = STATE(1637), - [sym__literal] = STATE(1637), - [sym_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_boolean_literal] = STATE(1778), + [sym_bracketed_type] = STATE(3593), + [sym_generic_function] = STATE(1742), + [sym_generic_type_with_turbofish] = STATE(2901), + [sym__expression_except_range] = STATE(1655), + [sym__expression] = STATE(1789), + [sym_macro_invocation] = STATE(1752), + [sym_scoped_identifier] = STATE(1584), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1746), + [sym_unary_expression] = STATE(1742), + [sym_try_expression] = STATE(1742), + [sym_reference_expression] = STATE(1742), + [sym_binary_expression] = STATE(1742), + [sym_assignment_expression] = STATE(1742), + [sym_compound_assignment_expr] = STATE(1742), + [sym_type_cast_expression] = STATE(1742), + [sym_return_expression] = STATE(1742), + [sym_yield_expression] = STATE(1742), + [sym_call_expression] = STATE(1742), + [sym_array_expression] = STATE(1742), + [sym_parenthesized_expression] = STATE(1742), + [sym_tuple_expression] = STATE(1742), + [sym_unit_expression] = STATE(1742), + [sym_struct_expression] = STATE(1742), + [sym_if_expression] = STATE(1742), + [sym_match_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_loop_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_const_block] = STATE(1742), + [sym_closure_expression] = STATE(1742), + [sym_closure_parameters] = STATE(244), + [sym_label] = STATE(3682), + [sym_break_expression] = STATE(1742), + [sym_continue_expression] = STATE(1742), + [sym_index_expression] = STATE(1742), + [sym_await_expression] = STATE(1742), + [sym_field_expression] = STATE(1652), + [sym_unsafe_block] = STATE(1742), + [sym_async_block] = STATE(1742), + [sym_try_block] = STATE(1742), + [sym_block] = STATE(1742), + [sym__literal] = STATE(1742), + [sym_string_literal] = STATE(1723), + [sym_raw_string_literal] = STATE(1723), + [sym_boolean_literal] = STATE(1723), [sym_line_comment] = STATE(45), [sym_block_comment] = STATE(45), - [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_EQ_GT] = ACTIONS(394), - [anon_sym_PLUS] = ACTIONS(396), - [anon_sym_STAR] = ACTIONS(406), - [anon_sym_QMARK] = ACTIONS(394), - [anon_sym_u8] = ACTIONS(404), - [anon_sym_i8] = ACTIONS(404), - [anon_sym_u16] = ACTIONS(404), - [anon_sym_i16] = ACTIONS(404), - [anon_sym_u32] = ACTIONS(404), - [anon_sym_i32] = ACTIONS(404), - [anon_sym_u64] = ACTIONS(404), - [anon_sym_i64] = ACTIONS(404), - [anon_sym_u128] = ACTIONS(404), - [anon_sym_i128] = ACTIONS(404), - [anon_sym_isize] = ACTIONS(404), - [anon_sym_usize] = ACTIONS(404), - [anon_sym_f32] = ACTIONS(404), - [anon_sym_f64] = ACTIONS(404), - [anon_sym_bool] = ACTIONS(404), - [anon_sym_str] = ACTIONS(404), - [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(406), - [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_PERCENT] = ACTIONS(396), - [anon_sym_CARET] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(406), - [anon_sym_AMP] = ACTIONS(486), - [anon_sym_PIPE] = ACTIONS(378), - [anon_sym_AMP_AMP] = ACTIONS(394), - [anon_sym_PIPE_PIPE] = ACTIONS(394), - [anon_sym_LT_LT] = ACTIONS(396), - [anon_sym_GT_GT] = 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_CARET_EQ] = ACTIONS(394), - [anon_sym_AMP_EQ] = ACTIONS(394), - [anon_sym_PIPE_EQ] = ACTIONS(394), - [anon_sym_LT_LT_EQ] = ACTIONS(394), - [anon_sym_GT_GT_EQ] = ACTIONS(394), - [anon_sym_EQ] = ACTIONS(396), - [anon_sym_EQ_EQ] = ACTIONS(394), - [anon_sym_BANG_EQ] = ACTIONS(394), - [anon_sym_GT] = ACTIONS(396), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_GT_EQ] = ACTIONS(394), - [anon_sym_LT_EQ] = ACTIONS(394), - [anon_sym_DOT] = ACTIONS(396), - [anon_sym_DOT_DOT] = ACTIONS(488), - [anon_sym_DOT_DOT_DOT] = ACTIONS(394), - [anon_sym_DOT_DOT_EQ] = ACTIONS(394), - [anon_sym_COLON_COLON] = ACTIONS(408), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(396), - [anon_sym_async] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_const] = ACTIONS(414), - [anon_sym_continue] = ACTIONS(416), - [anon_sym_default] = ACTIONS(418), - [anon_sym_for] = ACTIONS(420), - [anon_sym_if] = ACTIONS(422), - [anon_sym_loop] = ACTIONS(424), - [anon_sym_match] = ACTIONS(426), - [anon_sym_return] = ACTIONS(428), - [anon_sym_static] = ACTIONS(430), - [anon_sym_union] = ACTIONS(418), - [anon_sym_unsafe] = ACTIONS(432), - [anon_sym_while] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_move] = ACTIONS(438), - [anon_sym_try] = ACTIONS(440), - [sym_integer_literal] = ACTIONS(442), - [aux_sym_string_literal_token1] = ACTIONS(444), - [sym_char_literal] = ACTIONS(442), - [anon_sym_true] = ACTIONS(446), - [anon_sym_false] = ACTIONS(446), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(448), - [sym_super] = ACTIONS(450), - [sym_crate] = ACTIONS(450), - [sym_metavariable] = ACTIONS(452), - [sym__raw_string_literal_start] = ACTIONS(454), - [sym_float_literal] = ACTIONS(442), + [sym_identifier] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(461), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LBRACE] = ACTIONS(405), + [anon_sym_EQ_GT] = ACTIONS(377), + [anon_sym_PLUS] = ACTIONS(379), + [anon_sym_STAR] = ACTIONS(411), + [anon_sym_QMARK] = ACTIONS(377), + [anon_sym_u8] = ACTIONS(409), + [anon_sym_i8] = ACTIONS(409), + [anon_sym_u16] = ACTIONS(409), + [anon_sym_i16] = ACTIONS(409), + [anon_sym_u32] = ACTIONS(409), + [anon_sym_i32] = ACTIONS(409), + [anon_sym_u64] = ACTIONS(409), + [anon_sym_i64] = ACTIONS(409), + [anon_sym_u128] = ACTIONS(409), + [anon_sym_i128] = ACTIONS(409), + [anon_sym_isize] = ACTIONS(409), + [anon_sym_usize] = ACTIONS(409), + [anon_sym_f32] = ACTIONS(409), + [anon_sym_f64] = ACTIONS(409), + [anon_sym_bool] = ACTIONS(409), + [anon_sym_str] = ACTIONS(409), + [anon_sym_char] = ACTIONS(409), + [anon_sym_DASH] = ACTIONS(411), + [anon_sym_SLASH] = ACTIONS(379), + [anon_sym_PERCENT] = ACTIONS(379), + [anon_sym_CARET] = ACTIONS(379), + [anon_sym_BANG] = ACTIONS(411), + [anon_sym_AMP] = ACTIONS(465), + [anon_sym_PIPE] = ACTIONS(383), + [anon_sym_AMP_AMP] = ACTIONS(377), + [anon_sym_PIPE_PIPE] = ACTIONS(377), + [anon_sym_LT_LT] = ACTIONS(379), + [anon_sym_GT_GT] = ACTIONS(379), + [anon_sym_PLUS_EQ] = ACTIONS(377), + [anon_sym_DASH_EQ] = ACTIONS(377), + [anon_sym_STAR_EQ] = ACTIONS(377), + [anon_sym_SLASH_EQ] = ACTIONS(377), + [anon_sym_PERCENT_EQ] = ACTIONS(377), + [anon_sym_CARET_EQ] = ACTIONS(377), + [anon_sym_AMP_EQ] = ACTIONS(377), + [anon_sym_PIPE_EQ] = ACTIONS(377), + [anon_sym_LT_LT_EQ] = ACTIONS(377), + [anon_sym_GT_GT_EQ] = ACTIONS(377), + [anon_sym_EQ] = ACTIONS(379), + [anon_sym_EQ_EQ] = ACTIONS(377), + [anon_sym_BANG_EQ] = ACTIONS(377), + [anon_sym_GT] = ACTIONS(379), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_GT_EQ] = ACTIONS(377), + [anon_sym_LT_EQ] = ACTIONS(377), + [anon_sym_DOT] = ACTIONS(379), + [anon_sym_DOT_DOT] = ACTIONS(467), + [anon_sym_DOT_DOT_DOT] = ACTIONS(377), + [anon_sym_DOT_DOT_EQ] = ACTIONS(377), + [anon_sym_COLON_COLON] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_as] = ACTIONS(379), + [anon_sym_async] = ACTIONS(415), + [anon_sym_break] = ACTIONS(417), + [anon_sym_const] = ACTIONS(419), + [anon_sym_continue] = ACTIONS(421), + [anon_sym_default] = ACTIONS(423), + [anon_sym_for] = ACTIONS(425), + [anon_sym_if] = ACTIONS(427), + [anon_sym_loop] = ACTIONS(429), + [anon_sym_match] = ACTIONS(431), + [anon_sym_return] = ACTIONS(433), + [anon_sym_static] = ACTIONS(435), + [anon_sym_union] = ACTIONS(423), + [anon_sym_unsafe] = ACTIONS(437), + [anon_sym_while] = ACTIONS(439), + [anon_sym_yield] = ACTIONS(441), + [anon_sym_move] = ACTIONS(443), + [anon_sym_try] = ACTIONS(445), + [sym_integer_literal] = ACTIONS(447), + [aux_sym_string_literal_token1] = ACTIONS(449), + [sym_char_literal] = ACTIONS(447), + [anon_sym_true] = ACTIONS(451), + [anon_sym_false] = ACTIONS(451), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(453), + [sym_super] = ACTIONS(455), + [sym_crate] = ACTIONS(455), + [sym_metavariable] = ACTIONS(457), + [sym__raw_string_literal_start] = ACTIONS(459), + [sym_float_literal] = ACTIONS(447), }, [46] = { - [sym_bracketed_type] = STATE(3498), - [sym_generic_function] = STATE(1637), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1604), - [sym__expression] = STATE(1649), - [sym_macro_invocation] = STATE(1641), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3100), - [sym_range_expression] = STATE(1639), - [sym_unary_expression] = STATE(1637), - [sym_try_expression] = STATE(1637), - [sym_reference_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_assignment_expression] = STATE(1637), - [sym_compound_assignment_expr] = STATE(1637), - [sym_type_cast_expression] = STATE(1637), - [sym_return_expression] = STATE(1637), - [sym_yield_expression] = STATE(1637), - [sym_call_expression] = STATE(1637), - [sym_array_expression] = STATE(1637), - [sym_parenthesized_expression] = STATE(1637), - [sym_tuple_expression] = STATE(1637), - [sym_unit_expression] = STATE(1637), - [sym_struct_expression] = STATE(1637), - [sym_if_expression] = STATE(1637), - [sym_match_expression] = STATE(1637), - [sym_while_expression] = STATE(1637), - [sym_loop_expression] = STATE(1637), - [sym_for_expression] = STATE(1637), - [sym_const_block] = STATE(1637), - [sym_closure_expression] = STATE(1637), - [sym_closure_parameters] = STATE(237), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1637), - [sym_continue_expression] = STATE(1637), - [sym_index_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_field_expression] = STATE(1620), - [sym_unsafe_block] = STATE(1637), - [sym_async_block] = STATE(1637), - [sym_try_block] = STATE(1637), - [sym_block] = STATE(1637), - [sym__literal] = STATE(1637), - [sym_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_boolean_literal] = STATE(1778), + [sym_bracketed_type] = STATE(3593), + [sym_generic_function] = STATE(1742), + [sym_generic_type_with_turbofish] = STATE(2901), + [sym__expression_except_range] = STATE(1655), + [sym__expression] = STATE(1781), + [sym_macro_invocation] = STATE(1752), + [sym_scoped_identifier] = STATE(1584), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1746), + [sym_unary_expression] = STATE(1742), + [sym_try_expression] = STATE(1742), + [sym_reference_expression] = STATE(1742), + [sym_binary_expression] = STATE(1742), + [sym_assignment_expression] = STATE(1742), + [sym_compound_assignment_expr] = STATE(1742), + [sym_type_cast_expression] = STATE(1742), + [sym_return_expression] = STATE(1742), + [sym_yield_expression] = STATE(1742), + [sym_call_expression] = STATE(1742), + [sym_array_expression] = STATE(1742), + [sym_parenthesized_expression] = STATE(1742), + [sym_tuple_expression] = STATE(1742), + [sym_unit_expression] = STATE(1742), + [sym_struct_expression] = STATE(1742), + [sym_if_expression] = STATE(1742), + [sym_match_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_loop_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_const_block] = STATE(1742), + [sym_closure_expression] = STATE(1742), + [sym_closure_parameters] = STATE(244), + [sym_label] = STATE(43), + [sym_break_expression] = STATE(1742), + [sym_continue_expression] = STATE(1742), + [sym_index_expression] = STATE(1742), + [sym_await_expression] = STATE(1742), + [sym_field_expression] = STATE(1652), + [sym_unsafe_block] = STATE(1742), + [sym_async_block] = STATE(1742), + [sym_try_block] = STATE(1742), + [sym_block] = STATE(1742), + [sym__literal] = STATE(1742), + [sym_string_literal] = STATE(1723), + [sym_raw_string_literal] = STATE(1723), + [sym_boolean_literal] = STATE(1723), [sym_line_comment] = STATE(46), [sym_block_comment] = STATE(46), - [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_EQ_GT] = ACTIONS(372), - [anon_sym_PLUS] = ACTIONS(374), - [anon_sym_STAR] = ACTIONS(406), - [anon_sym_QMARK] = ACTIONS(372), - [anon_sym_u8] = ACTIONS(404), - [anon_sym_i8] = ACTIONS(404), - [anon_sym_u16] = ACTIONS(404), - [anon_sym_i16] = ACTIONS(404), - [anon_sym_u32] = ACTIONS(404), - [anon_sym_i32] = ACTIONS(404), - [anon_sym_u64] = ACTIONS(404), - [anon_sym_i64] = ACTIONS(404), - [anon_sym_u128] = ACTIONS(404), - [anon_sym_i128] = ACTIONS(404), - [anon_sym_isize] = ACTIONS(404), - [anon_sym_usize] = ACTIONS(404), - [anon_sym_f32] = ACTIONS(404), - [anon_sym_f64] = ACTIONS(404), - [anon_sym_bool] = ACTIONS(404), - [anon_sym_str] = ACTIONS(404), - [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(406), - [anon_sym_SLASH] = ACTIONS(374), - [anon_sym_PERCENT] = ACTIONS(374), - [anon_sym_CARET] = ACTIONS(374), - [anon_sym_BANG] = ACTIONS(406), - [anon_sym_AMP] = ACTIONS(486), - [anon_sym_PIPE] = ACTIONS(378), - [anon_sym_AMP_AMP] = ACTIONS(372), - [anon_sym_PIPE_PIPE] = ACTIONS(372), - [anon_sym_LT_LT] = ACTIONS(374), - [anon_sym_GT_GT] = ACTIONS(374), - [anon_sym_PLUS_EQ] = ACTIONS(372), - [anon_sym_DASH_EQ] = ACTIONS(372), - [anon_sym_STAR_EQ] = ACTIONS(372), - [anon_sym_SLASH_EQ] = ACTIONS(372), - [anon_sym_PERCENT_EQ] = ACTIONS(372), - [anon_sym_CARET_EQ] = ACTIONS(372), - [anon_sym_AMP_EQ] = ACTIONS(372), - [anon_sym_PIPE_EQ] = ACTIONS(372), - [anon_sym_LT_LT_EQ] = ACTIONS(372), - [anon_sym_GT_GT_EQ] = ACTIONS(372), - [anon_sym_EQ] = ACTIONS(374), - [anon_sym_EQ_EQ] = ACTIONS(372), - [anon_sym_BANG_EQ] = ACTIONS(372), - [anon_sym_GT] = ACTIONS(374), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_GT_EQ] = ACTIONS(372), - [anon_sym_LT_EQ] = ACTIONS(372), - [anon_sym_DOT] = ACTIONS(374), - [anon_sym_DOT_DOT] = ACTIONS(488), - [anon_sym_DOT_DOT_DOT] = ACTIONS(372), - [anon_sym_DOT_DOT_EQ] = ACTIONS(372), - [anon_sym_COLON_COLON] = ACTIONS(408), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(374), - [anon_sym_async] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_const] = ACTIONS(414), - [anon_sym_continue] = ACTIONS(416), - [anon_sym_default] = ACTIONS(418), - [anon_sym_for] = ACTIONS(420), - [anon_sym_if] = ACTIONS(422), - [anon_sym_loop] = ACTIONS(424), - [anon_sym_match] = ACTIONS(426), - [anon_sym_return] = ACTIONS(428), - [anon_sym_static] = ACTIONS(430), - [anon_sym_union] = ACTIONS(418), - [anon_sym_unsafe] = ACTIONS(432), - [anon_sym_while] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_move] = ACTIONS(438), - [anon_sym_try] = ACTIONS(440), - [sym_integer_literal] = ACTIONS(442), - [aux_sym_string_literal_token1] = ACTIONS(444), - [sym_char_literal] = ACTIONS(442), - [anon_sym_true] = ACTIONS(446), - [anon_sym_false] = ACTIONS(446), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(448), - [sym_super] = ACTIONS(450), - [sym_crate] = ACTIONS(450), - [sym_metavariable] = ACTIONS(452), - [sym__raw_string_literal_start] = ACTIONS(454), - [sym_float_literal] = ACTIONS(442), + [sym_identifier] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(405), + [anon_sym_EQ_GT] = ACTIONS(393), + [anon_sym_PLUS] = ACTIONS(395), + [anon_sym_STAR] = ACTIONS(395), + [anon_sym_QMARK] = ACTIONS(393), + [anon_sym_u8] = ACTIONS(409), + [anon_sym_i8] = ACTIONS(409), + [anon_sym_u16] = ACTIONS(409), + [anon_sym_i16] = ACTIONS(409), + [anon_sym_u32] = ACTIONS(409), + [anon_sym_i32] = ACTIONS(409), + [anon_sym_u64] = ACTIONS(409), + [anon_sym_i64] = ACTIONS(409), + [anon_sym_u128] = ACTIONS(409), + [anon_sym_i128] = ACTIONS(409), + [anon_sym_isize] = ACTIONS(409), + [anon_sym_usize] = ACTIONS(409), + [anon_sym_f32] = ACTIONS(409), + [anon_sym_f64] = ACTIONS(409), + [anon_sym_bool] = ACTIONS(409), + [anon_sym_str] = ACTIONS(409), + [anon_sym_char] = ACTIONS(409), + [anon_sym_DASH] = ACTIONS(395), + [anon_sym_SLASH] = ACTIONS(395), + [anon_sym_PERCENT] = ACTIONS(395), + [anon_sym_CARET] = ACTIONS(395), + [anon_sym_BANG] = ACTIONS(411), + [anon_sym_AMP] = ACTIONS(395), + [anon_sym_PIPE] = ACTIONS(395), + [anon_sym_AMP_AMP] = ACTIONS(393), + [anon_sym_PIPE_PIPE] = ACTIONS(393), + [anon_sym_LT_LT] = ACTIONS(395), + [anon_sym_GT_GT] = ACTIONS(395), + [anon_sym_PLUS_EQ] = ACTIONS(393), + [anon_sym_DASH_EQ] = ACTIONS(393), + [anon_sym_STAR_EQ] = ACTIONS(393), + [anon_sym_SLASH_EQ] = ACTIONS(393), + [anon_sym_PERCENT_EQ] = ACTIONS(393), + [anon_sym_CARET_EQ] = ACTIONS(393), + [anon_sym_AMP_EQ] = ACTIONS(393), + [anon_sym_PIPE_EQ] = ACTIONS(393), + [anon_sym_LT_LT_EQ] = ACTIONS(393), + [anon_sym_GT_GT_EQ] = ACTIONS(393), + [anon_sym_EQ] = ACTIONS(395), + [anon_sym_EQ_EQ] = ACTIONS(393), + [anon_sym_BANG_EQ] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(395), + [anon_sym_LT] = ACTIONS(395), + [anon_sym_GT_EQ] = ACTIONS(393), + [anon_sym_LT_EQ] = ACTIONS(393), + [anon_sym_DOT] = ACTIONS(395), + [anon_sym_DOT_DOT] = ACTIONS(395), + [anon_sym_DOT_DOT_DOT] = ACTIONS(393), + [anon_sym_DOT_DOT_EQ] = ACTIONS(393), + [anon_sym_COLON_COLON] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(469), + [anon_sym_as] = ACTIONS(395), + [anon_sym_async] = ACTIONS(415), + [anon_sym_break] = ACTIONS(417), + [anon_sym_const] = ACTIONS(419), + [anon_sym_continue] = ACTIONS(421), + [anon_sym_default] = ACTIONS(423), + [anon_sym_for] = ACTIONS(425), + [anon_sym_if] = ACTIONS(427), + [anon_sym_loop] = ACTIONS(429), + [anon_sym_match] = ACTIONS(431), + [anon_sym_return] = ACTIONS(433), + [anon_sym_static] = ACTIONS(435), + [anon_sym_union] = ACTIONS(423), + [anon_sym_unsafe] = ACTIONS(437), + [anon_sym_while] = ACTIONS(439), + [anon_sym_yield] = ACTIONS(441), + [anon_sym_move] = ACTIONS(443), + [anon_sym_try] = ACTIONS(445), + [sym_integer_literal] = ACTIONS(447), + [aux_sym_string_literal_token1] = ACTIONS(449), + [sym_char_literal] = ACTIONS(447), + [anon_sym_true] = ACTIONS(451), + [anon_sym_false] = ACTIONS(451), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(453), + [sym_super] = ACTIONS(455), + [sym_crate] = ACTIONS(455), + [sym_metavariable] = ACTIONS(457), + [sym__raw_string_literal_start] = ACTIONS(459), + [sym_float_literal] = ACTIONS(447), }, [47] = { - [sym_bracketed_type] = STATE(3498), - [sym_generic_function] = STATE(1637), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1604), - [sym__expression] = STATE(1646), - [sym_macro_invocation] = STATE(1641), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3100), - [sym_range_expression] = STATE(1639), - [sym_unary_expression] = STATE(1637), - [sym_try_expression] = STATE(1637), - [sym_reference_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_assignment_expression] = STATE(1637), - [sym_compound_assignment_expr] = STATE(1637), - [sym_type_cast_expression] = STATE(1637), - [sym_return_expression] = STATE(1637), - [sym_yield_expression] = STATE(1637), - [sym_call_expression] = STATE(1637), - [sym_array_expression] = STATE(1637), - [sym_parenthesized_expression] = STATE(1637), - [sym_tuple_expression] = STATE(1637), - [sym_unit_expression] = STATE(1637), - [sym_struct_expression] = STATE(1637), - [sym_if_expression] = STATE(1637), - [sym_match_expression] = STATE(1637), - [sym_while_expression] = STATE(1637), - [sym_loop_expression] = STATE(1637), - [sym_for_expression] = STATE(1637), - [sym_const_block] = STATE(1637), - [sym_closure_expression] = STATE(1637), - [sym_closure_parameters] = STATE(237), - [sym_label] = STATE(43), - [sym_break_expression] = STATE(1637), - [sym_continue_expression] = STATE(1637), - [sym_index_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_field_expression] = STATE(1620), - [sym_unsafe_block] = STATE(1637), - [sym_async_block] = STATE(1637), - [sym_try_block] = STATE(1637), - [sym_block] = STATE(1637), - [sym__literal] = STATE(1637), - [sym_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_boolean_literal] = STATE(1778), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2791), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1830), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1574), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(241), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(47), [sym_block_comment] = STATE(47), - [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(388), - [anon_sym_LBRACK] = ACTIONS(388), - [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_EQ_GT] = ACTIONS(388), - [anon_sym_PLUS] = ACTIONS(390), - [anon_sym_STAR] = ACTIONS(390), - [anon_sym_QMARK] = ACTIONS(388), - [anon_sym_u8] = ACTIONS(404), - [anon_sym_i8] = ACTIONS(404), - [anon_sym_u16] = ACTIONS(404), - [anon_sym_i16] = ACTIONS(404), - [anon_sym_u32] = ACTIONS(404), - [anon_sym_i32] = ACTIONS(404), - [anon_sym_u64] = ACTIONS(404), - [anon_sym_i64] = ACTIONS(404), - [anon_sym_u128] = ACTIONS(404), - [anon_sym_i128] = ACTIONS(404), - [anon_sym_isize] = ACTIONS(404), - [anon_sym_usize] = ACTIONS(404), - [anon_sym_f32] = ACTIONS(404), - [anon_sym_f64] = ACTIONS(404), - [anon_sym_bool] = ACTIONS(404), - [anon_sym_str] = ACTIONS(404), - [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(390), - [anon_sym_SLASH] = ACTIONS(390), - [anon_sym_PERCENT] = ACTIONS(390), - [anon_sym_CARET] = ACTIONS(390), - [anon_sym_BANG] = ACTIONS(406), - [anon_sym_AMP] = ACTIONS(390), - [anon_sym_PIPE] = ACTIONS(390), - [anon_sym_AMP_AMP] = ACTIONS(388), - [anon_sym_PIPE_PIPE] = ACTIONS(388), - [anon_sym_LT_LT] = ACTIONS(390), - [anon_sym_GT_GT] = ACTIONS(390), - [anon_sym_PLUS_EQ] = ACTIONS(388), - [anon_sym_DASH_EQ] = ACTIONS(388), - [anon_sym_STAR_EQ] = ACTIONS(388), - [anon_sym_SLASH_EQ] = ACTIONS(388), - [anon_sym_PERCENT_EQ] = ACTIONS(388), - [anon_sym_CARET_EQ] = ACTIONS(388), - [anon_sym_AMP_EQ] = ACTIONS(388), - [anon_sym_PIPE_EQ] = ACTIONS(388), - [anon_sym_LT_LT_EQ] = ACTIONS(388), - [anon_sym_GT_GT_EQ] = ACTIONS(388), - [anon_sym_EQ] = ACTIONS(390), - [anon_sym_EQ_EQ] = ACTIONS(388), - [anon_sym_BANG_EQ] = ACTIONS(388), - [anon_sym_GT] = ACTIONS(390), - [anon_sym_LT] = ACTIONS(390), - [anon_sym_GT_EQ] = ACTIONS(388), - [anon_sym_LT_EQ] = ACTIONS(388), - [anon_sym_DOT] = ACTIONS(390), - [anon_sym_DOT_DOT] = ACTIONS(390), - [anon_sym_DOT_DOT_DOT] = ACTIONS(388), - [anon_sym_DOT_DOT_EQ] = ACTIONS(388), - [anon_sym_COLON_COLON] = ACTIONS(408), - [anon_sym_SQUOTE] = ACTIONS(490), - [anon_sym_as] = ACTIONS(390), - [anon_sym_async] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_const] = ACTIONS(414), - [anon_sym_continue] = ACTIONS(416), - [anon_sym_default] = ACTIONS(418), - [anon_sym_for] = ACTIONS(420), - [anon_sym_if] = ACTIONS(422), - [anon_sym_loop] = ACTIONS(424), - [anon_sym_match] = ACTIONS(426), - [anon_sym_return] = ACTIONS(428), - [anon_sym_static] = ACTIONS(430), - [anon_sym_union] = ACTIONS(418), - [anon_sym_unsafe] = ACTIONS(432), - [anon_sym_while] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_move] = ACTIONS(438), - [anon_sym_try] = ACTIONS(440), - [sym_integer_literal] = ACTIONS(442), - [aux_sym_string_literal_token1] = ACTIONS(444), - [sym_char_literal] = ACTIONS(442), - [anon_sym_true] = ACTIONS(446), - [anon_sym_false] = ACTIONS(446), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(448), - [sym_super] = ACTIONS(450), - [sym_crate] = ACTIONS(450), - [sym_metavariable] = ACTIONS(452), - [sym__raw_string_literal_start] = ACTIONS(454), - [sym_float_literal] = ACTIONS(442), + [sym_identifier] = ACTIONS(471), + [anon_sym_LPAREN] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(341), + [anon_sym_COLON] = ACTIONS(345), + [anon_sym_PLUS] = ACTIONS(347), + [anon_sym_STAR] = ACTIONS(347), + [anon_sym_QMARK] = ACTIONS(341), + [anon_sym_u8] = ACTIONS(473), + [anon_sym_i8] = ACTIONS(473), + [anon_sym_u16] = ACTIONS(473), + [anon_sym_i16] = ACTIONS(473), + [anon_sym_u32] = ACTIONS(473), + [anon_sym_i32] = ACTIONS(473), + [anon_sym_u64] = ACTIONS(473), + [anon_sym_i64] = ACTIONS(473), + [anon_sym_u128] = ACTIONS(473), + [anon_sym_i128] = ACTIONS(473), + [anon_sym_isize] = ACTIONS(473), + [anon_sym_usize] = ACTIONS(473), + [anon_sym_f32] = ACTIONS(473), + [anon_sym_f64] = ACTIONS(473), + [anon_sym_bool] = ACTIONS(473), + [anon_sym_str] = ACTIONS(473), + [anon_sym_char] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(347), + [anon_sym_SLASH] = ACTIONS(347), + [anon_sym_PERCENT] = ACTIONS(347), + [anon_sym_CARET] = ACTIONS(347), + [anon_sym_BANG] = ACTIONS(475), + [anon_sym_AMP] = ACTIONS(347), + [anon_sym_PIPE] = ACTIONS(347), + [anon_sym_AMP_AMP] = ACTIONS(341), + [anon_sym_PIPE_PIPE] = ACTIONS(341), + [anon_sym_LT_LT] = ACTIONS(347), + [anon_sym_GT_GT] = ACTIONS(347), + [anon_sym_PLUS_EQ] = ACTIONS(341), + [anon_sym_DASH_EQ] = ACTIONS(341), + [anon_sym_STAR_EQ] = ACTIONS(341), + [anon_sym_SLASH_EQ] = ACTIONS(341), + [anon_sym_PERCENT_EQ] = ACTIONS(341), + [anon_sym_CARET_EQ] = ACTIONS(341), + [anon_sym_AMP_EQ] = ACTIONS(341), + [anon_sym_PIPE_EQ] = ACTIONS(341), + [anon_sym_LT_LT_EQ] = ACTIONS(341), + [anon_sym_GT_GT_EQ] = ACTIONS(341), + [anon_sym_EQ] = ACTIONS(347), + [anon_sym_EQ_EQ] = ACTIONS(341), + [anon_sym_BANG_EQ] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(347), + [anon_sym_LT] = ACTIONS(347), + [anon_sym_GT_EQ] = ACTIONS(341), + [anon_sym_LT_EQ] = ACTIONS(341), + [anon_sym_DOT] = ACTIONS(347), + [anon_sym_DOT_DOT] = ACTIONS(347), + [anon_sym_DOT_DOT_DOT] = ACTIONS(341), + [anon_sym_DOT_DOT_EQ] = ACTIONS(341), + [anon_sym_COLON_COLON] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_as] = ACTIONS(347), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(479), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(481), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(483), + [anon_sym_static] = ACTIONS(485), + [anon_sym_union] = ACTIONS(481), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(487), + [anon_sym_move] = ACTIONS(489), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [48] = { - [sym_bracketed_type] = STATE(3498), - [sym_generic_function] = STATE(1637), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1604), - [sym__expression] = STATE(1645), - [sym_macro_invocation] = STATE(1641), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3100), - [sym_range_expression] = STATE(1639), - [sym_unary_expression] = STATE(1637), - [sym_try_expression] = STATE(1637), - [sym_reference_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_assignment_expression] = STATE(1637), - [sym_compound_assignment_expr] = STATE(1637), - [sym_type_cast_expression] = STATE(1637), - [sym_return_expression] = STATE(1637), - [sym_yield_expression] = STATE(1637), - [sym_call_expression] = STATE(1637), - [sym_array_expression] = STATE(1637), - [sym_parenthesized_expression] = STATE(1637), - [sym_tuple_expression] = STATE(1637), - [sym_unit_expression] = STATE(1637), - [sym_struct_expression] = STATE(1637), - [sym_if_expression] = STATE(1637), - [sym_match_expression] = STATE(1637), - [sym_while_expression] = STATE(1637), - [sym_loop_expression] = STATE(1637), - [sym_for_expression] = STATE(1637), - [sym_const_block] = STATE(1637), - [sym_closure_expression] = STATE(1637), - [sym_closure_parameters] = STATE(237), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1637), - [sym_continue_expression] = STATE(1637), - [sym_index_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_field_expression] = STATE(1620), - [sym_unsafe_block] = STATE(1637), - [sym_async_block] = STATE(1637), - [sym_try_block] = STATE(1637), - [sym_block] = STATE(1637), - [sym__literal] = STATE(1637), - [sym_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_boolean_literal] = STATE(1778), + [sym_bracketed_type] = STATE(3593), + [sym_generic_function] = STATE(1742), + [sym_generic_type_with_turbofish] = STATE(2901), + [sym__expression_except_range] = STATE(1655), + [sym__expression] = STATE(1815), + [sym_macro_invocation] = STATE(1752), + [sym_scoped_identifier] = STATE(1584), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1746), + [sym_unary_expression] = STATE(1742), + [sym_try_expression] = STATE(1742), + [sym_reference_expression] = STATE(1742), + [sym_binary_expression] = STATE(1742), + [sym_assignment_expression] = STATE(1742), + [sym_compound_assignment_expr] = STATE(1742), + [sym_type_cast_expression] = STATE(1742), + [sym_return_expression] = STATE(1742), + [sym_yield_expression] = STATE(1742), + [sym_call_expression] = STATE(1742), + [sym_array_expression] = STATE(1742), + [sym_parenthesized_expression] = STATE(1742), + [sym_tuple_expression] = STATE(1742), + [sym_unit_expression] = STATE(1742), + [sym_struct_expression] = STATE(1742), + [sym_if_expression] = STATE(1742), + [sym_match_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_loop_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_const_block] = STATE(1742), + [sym_closure_expression] = STATE(1742), + [sym_closure_parameters] = STATE(244), + [sym_label] = STATE(3682), + [sym_break_expression] = STATE(1742), + [sym_continue_expression] = STATE(1742), + [sym_index_expression] = STATE(1742), + [sym_await_expression] = STATE(1742), + [sym_field_expression] = STATE(1652), + [sym_unsafe_block] = STATE(1742), + [sym_async_block] = STATE(1742), + [sym_try_block] = STATE(1742), + [sym_block] = STATE(1742), + [sym__literal] = STATE(1742), + [sym_string_literal] = STATE(1723), + [sym_raw_string_literal] = STATE(1723), + [sym_boolean_literal] = STATE(1723), [sym_line_comment] = STATE(48), [sym_block_comment] = STATE(48), - [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(384), - [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_EQ_GT] = ACTIONS(384), - [anon_sym_PLUS] = ACTIONS(386), - [anon_sym_STAR] = ACTIONS(386), - [anon_sym_QMARK] = ACTIONS(384), - [anon_sym_u8] = ACTIONS(404), - [anon_sym_i8] = ACTIONS(404), - [anon_sym_u16] = ACTIONS(404), - [anon_sym_i16] = ACTIONS(404), - [anon_sym_u32] = ACTIONS(404), - [anon_sym_i32] = ACTIONS(404), - [anon_sym_u64] = ACTIONS(404), - [anon_sym_i64] = ACTIONS(404), - [anon_sym_u128] = ACTIONS(404), - [anon_sym_i128] = ACTIONS(404), - [anon_sym_isize] = ACTIONS(404), - [anon_sym_usize] = ACTIONS(404), - [anon_sym_f32] = ACTIONS(404), - [anon_sym_f64] = ACTIONS(404), - [anon_sym_bool] = ACTIONS(404), - [anon_sym_str] = ACTIONS(404), - [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(386), - [anon_sym_SLASH] = ACTIONS(386), - [anon_sym_PERCENT] = ACTIONS(386), - [anon_sym_CARET] = ACTIONS(386), - [anon_sym_BANG] = ACTIONS(406), - [anon_sym_AMP] = ACTIONS(386), - [anon_sym_PIPE] = ACTIONS(386), - [anon_sym_AMP_AMP] = ACTIONS(384), - [anon_sym_PIPE_PIPE] = ACTIONS(384), - [anon_sym_LT_LT] = ACTIONS(386), - [anon_sym_GT_GT] = ACTIONS(386), - [anon_sym_PLUS_EQ] = ACTIONS(384), - [anon_sym_DASH_EQ] = ACTIONS(384), - [anon_sym_STAR_EQ] = ACTIONS(384), - [anon_sym_SLASH_EQ] = ACTIONS(384), - [anon_sym_PERCENT_EQ] = ACTIONS(384), - [anon_sym_CARET_EQ] = ACTIONS(384), - [anon_sym_AMP_EQ] = ACTIONS(384), - [anon_sym_PIPE_EQ] = ACTIONS(384), - [anon_sym_LT_LT_EQ] = ACTIONS(384), - [anon_sym_GT_GT_EQ] = ACTIONS(384), - [anon_sym_EQ] = ACTIONS(386), - [anon_sym_EQ_EQ] = ACTIONS(384), - [anon_sym_BANG_EQ] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(386), - [anon_sym_LT] = ACTIONS(386), - [anon_sym_GT_EQ] = ACTIONS(384), - [anon_sym_LT_EQ] = ACTIONS(384), - [anon_sym_DOT] = ACTIONS(386), - [anon_sym_DOT_DOT] = ACTIONS(386), - [anon_sym_DOT_DOT_DOT] = ACTIONS(384), - [anon_sym_DOT_DOT_EQ] = ACTIONS(384), - [anon_sym_COLON_COLON] = ACTIONS(408), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(386), - [anon_sym_async] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_const] = ACTIONS(414), - [anon_sym_continue] = ACTIONS(416), - [anon_sym_default] = ACTIONS(418), - [anon_sym_for] = ACTIONS(420), - [anon_sym_if] = ACTIONS(422), - [anon_sym_loop] = ACTIONS(424), - [anon_sym_match] = ACTIONS(426), - [anon_sym_return] = ACTIONS(428), - [anon_sym_static] = ACTIONS(430), - [anon_sym_union] = ACTIONS(418), - [anon_sym_unsafe] = ACTIONS(432), - [anon_sym_while] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_move] = ACTIONS(438), - [anon_sym_try] = ACTIONS(440), - [sym_integer_literal] = ACTIONS(442), - [aux_sym_string_literal_token1] = ACTIONS(444), - [sym_char_literal] = ACTIONS(442), - [anon_sym_true] = ACTIONS(446), - [anon_sym_false] = ACTIONS(446), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(448), - [sym_super] = ACTIONS(450), - [sym_crate] = ACTIONS(450), - [sym_metavariable] = ACTIONS(452), - [sym__raw_string_literal_start] = ACTIONS(454), - [sym_float_literal] = ACTIONS(442), + [sym_identifier] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(373), + [anon_sym_LBRACE] = ACTIONS(405), + [anon_sym_EQ_GT] = ACTIONS(373), + [anon_sym_PLUS] = ACTIONS(375), + [anon_sym_STAR] = ACTIONS(375), + [anon_sym_QMARK] = ACTIONS(373), + [anon_sym_u8] = ACTIONS(409), + [anon_sym_i8] = ACTIONS(409), + [anon_sym_u16] = ACTIONS(409), + [anon_sym_i16] = ACTIONS(409), + [anon_sym_u32] = ACTIONS(409), + [anon_sym_i32] = ACTIONS(409), + [anon_sym_u64] = ACTIONS(409), + [anon_sym_i64] = ACTIONS(409), + [anon_sym_u128] = ACTIONS(409), + [anon_sym_i128] = ACTIONS(409), + [anon_sym_isize] = ACTIONS(409), + [anon_sym_usize] = ACTIONS(409), + [anon_sym_f32] = ACTIONS(409), + [anon_sym_f64] = ACTIONS(409), + [anon_sym_bool] = ACTIONS(409), + [anon_sym_str] = ACTIONS(409), + [anon_sym_char] = ACTIONS(409), + [anon_sym_DASH] = ACTIONS(375), + [anon_sym_SLASH] = ACTIONS(375), + [anon_sym_PERCENT] = ACTIONS(375), + [anon_sym_CARET] = ACTIONS(375), + [anon_sym_BANG] = ACTIONS(411), + [anon_sym_AMP] = ACTIONS(375), + [anon_sym_PIPE] = ACTIONS(375), + [anon_sym_AMP_AMP] = ACTIONS(373), + [anon_sym_PIPE_PIPE] = ACTIONS(373), + [anon_sym_LT_LT] = ACTIONS(375), + [anon_sym_GT_GT] = ACTIONS(375), + [anon_sym_PLUS_EQ] = ACTIONS(373), + [anon_sym_DASH_EQ] = ACTIONS(373), + [anon_sym_STAR_EQ] = ACTIONS(373), + [anon_sym_SLASH_EQ] = ACTIONS(373), + [anon_sym_PERCENT_EQ] = ACTIONS(373), + [anon_sym_CARET_EQ] = ACTIONS(373), + [anon_sym_AMP_EQ] = ACTIONS(373), + [anon_sym_PIPE_EQ] = ACTIONS(373), + [anon_sym_LT_LT_EQ] = ACTIONS(373), + [anon_sym_GT_GT_EQ] = ACTIONS(373), + [anon_sym_EQ] = ACTIONS(375), + [anon_sym_EQ_EQ] = ACTIONS(373), + [anon_sym_BANG_EQ] = ACTIONS(373), + [anon_sym_GT] = ACTIONS(375), + [anon_sym_LT] = ACTIONS(375), + [anon_sym_GT_EQ] = ACTIONS(373), + [anon_sym_LT_EQ] = ACTIONS(373), + [anon_sym_DOT] = ACTIONS(375), + [anon_sym_DOT_DOT] = ACTIONS(375), + [anon_sym_DOT_DOT_DOT] = ACTIONS(373), + [anon_sym_DOT_DOT_EQ] = ACTIONS(373), + [anon_sym_COLON_COLON] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_as] = ACTIONS(375), + [anon_sym_async] = ACTIONS(415), + [anon_sym_break] = ACTIONS(417), + [anon_sym_const] = ACTIONS(419), + [anon_sym_continue] = ACTIONS(421), + [anon_sym_default] = ACTIONS(423), + [anon_sym_for] = ACTIONS(425), + [anon_sym_if] = ACTIONS(427), + [anon_sym_loop] = ACTIONS(429), + [anon_sym_match] = ACTIONS(431), + [anon_sym_return] = ACTIONS(433), + [anon_sym_static] = ACTIONS(435), + [anon_sym_union] = ACTIONS(423), + [anon_sym_unsafe] = ACTIONS(437), + [anon_sym_while] = ACTIONS(439), + [anon_sym_yield] = ACTIONS(441), + [anon_sym_move] = ACTIONS(443), + [anon_sym_try] = ACTIONS(445), + [sym_integer_literal] = ACTIONS(447), + [aux_sym_string_literal_token1] = ACTIONS(449), + [sym_char_literal] = ACTIONS(447), + [anon_sym_true] = ACTIONS(451), + [anon_sym_false] = ACTIONS(451), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(453), + [sym_super] = ACTIONS(455), + [sym_crate] = ACTIONS(455), + [sym_metavariable] = ACTIONS(457), + [sym__raw_string_literal_start] = ACTIONS(459), + [sym_float_literal] = ACTIONS(447), }, [49] = { - [sym_bracketed_type] = STATE(3498), - [sym_generic_function] = STATE(1637), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1604), - [sym__expression] = STATE(1763), - [sym_macro_invocation] = STATE(1641), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3100), - [sym_range_expression] = STATE(1639), - [sym_unary_expression] = STATE(1637), - [sym_try_expression] = STATE(1637), - [sym_reference_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_assignment_expression] = STATE(1637), - [sym_compound_assignment_expr] = STATE(1637), - [sym_type_cast_expression] = STATE(1637), - [sym_return_expression] = STATE(1637), - [sym_yield_expression] = STATE(1637), - [sym_call_expression] = STATE(1637), - [sym_array_expression] = STATE(1637), - [sym_parenthesized_expression] = STATE(1637), - [sym_tuple_expression] = STATE(1637), - [sym_unit_expression] = STATE(1637), - [sym_struct_expression] = STATE(1637), - [sym_if_expression] = STATE(1637), - [sym_match_expression] = STATE(1637), - [sym_while_expression] = STATE(1637), - [sym_loop_expression] = STATE(1637), - [sym_for_expression] = STATE(1637), - [sym_const_block] = STATE(1637), - [sym_closure_expression] = STATE(1637), - [sym_closure_parameters] = STATE(237), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1637), - [sym_continue_expression] = STATE(1637), - [sym_index_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_field_expression] = STATE(1620), - [sym_unsafe_block] = STATE(1637), - [sym_async_block] = STATE(1637), - [sym_try_block] = STATE(1637), - [sym_block] = STATE(1637), - [sym__literal] = STATE(1637), - [sym_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_boolean_literal] = STATE(1778), + [sym_bracketed_type] = STATE(3593), + [sym_generic_function] = STATE(1742), + [sym_generic_type_with_turbofish] = STATE(2901), + [sym__expression_except_range] = STATE(1655), + [sym__expression] = STATE(1776), + [sym_macro_invocation] = STATE(1752), + [sym_scoped_identifier] = STATE(1584), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1746), + [sym_unary_expression] = STATE(1742), + [sym_try_expression] = STATE(1742), + [sym_reference_expression] = STATE(1742), + [sym_binary_expression] = STATE(1742), + [sym_assignment_expression] = STATE(1742), + [sym_compound_assignment_expr] = STATE(1742), + [sym_type_cast_expression] = STATE(1742), + [sym_return_expression] = STATE(1742), + [sym_yield_expression] = STATE(1742), + [sym_call_expression] = STATE(1742), + [sym_array_expression] = STATE(1742), + [sym_parenthesized_expression] = STATE(1742), + [sym_tuple_expression] = STATE(1742), + [sym_unit_expression] = STATE(1742), + [sym_struct_expression] = STATE(1742), + [sym_if_expression] = STATE(1742), + [sym_match_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_loop_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_const_block] = STATE(1742), + [sym_closure_expression] = STATE(1742), + [sym_closure_parameters] = STATE(244), + [sym_label] = STATE(3682), + [sym_break_expression] = STATE(1742), + [sym_continue_expression] = STATE(1742), + [sym_index_expression] = STATE(1742), + [sym_await_expression] = STATE(1742), + [sym_field_expression] = STATE(1652), + [sym_unsafe_block] = STATE(1742), + [sym_async_block] = STATE(1742), + [sym_try_block] = STATE(1742), + [sym_block] = STATE(1742), + [sym__literal] = STATE(1742), + [sym_string_literal] = STATE(1723), + [sym_raw_string_literal] = STATE(1723), + [sym_boolean_literal] = STATE(1723), [sym_line_comment] = STATE(49), [sym_block_comment] = STATE(49), - [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(368), - [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_EQ_GT] = ACTIONS(368), - [anon_sym_PLUS] = ACTIONS(370), - [anon_sym_STAR] = ACTIONS(370), - [anon_sym_QMARK] = ACTIONS(368), - [anon_sym_u8] = ACTIONS(404), - [anon_sym_i8] = ACTIONS(404), - [anon_sym_u16] = ACTIONS(404), - [anon_sym_i16] = ACTIONS(404), - [anon_sym_u32] = ACTIONS(404), - [anon_sym_i32] = ACTIONS(404), - [anon_sym_u64] = ACTIONS(404), - [anon_sym_i64] = ACTIONS(404), - [anon_sym_u128] = ACTIONS(404), - [anon_sym_i128] = ACTIONS(404), - [anon_sym_isize] = ACTIONS(404), - [anon_sym_usize] = ACTIONS(404), - [anon_sym_f32] = ACTIONS(404), - [anon_sym_f64] = ACTIONS(404), - [anon_sym_bool] = ACTIONS(404), - [anon_sym_str] = ACTIONS(404), - [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(370), - [anon_sym_SLASH] = ACTIONS(370), - [anon_sym_PERCENT] = ACTIONS(370), - [anon_sym_CARET] = ACTIONS(370), - [anon_sym_BANG] = ACTIONS(406), - [anon_sym_AMP] = ACTIONS(370), - [anon_sym_PIPE] = ACTIONS(370), - [anon_sym_AMP_AMP] = ACTIONS(368), - [anon_sym_PIPE_PIPE] = ACTIONS(368), - [anon_sym_LT_LT] = ACTIONS(370), - [anon_sym_GT_GT] = ACTIONS(370), - [anon_sym_PLUS_EQ] = ACTIONS(368), - [anon_sym_DASH_EQ] = ACTIONS(368), - [anon_sym_STAR_EQ] = ACTIONS(368), - [anon_sym_SLASH_EQ] = ACTIONS(368), - [anon_sym_PERCENT_EQ] = ACTIONS(368), - [anon_sym_CARET_EQ] = ACTIONS(368), - [anon_sym_AMP_EQ] = ACTIONS(368), - [anon_sym_PIPE_EQ] = ACTIONS(368), - [anon_sym_LT_LT_EQ] = ACTIONS(368), - [anon_sym_GT_GT_EQ] = ACTIONS(368), - [anon_sym_EQ] = ACTIONS(370), - [anon_sym_EQ_EQ] = ACTIONS(368), - [anon_sym_BANG_EQ] = ACTIONS(368), - [anon_sym_GT] = ACTIONS(370), - [anon_sym_LT] = ACTIONS(370), - [anon_sym_GT_EQ] = ACTIONS(368), - [anon_sym_LT_EQ] = ACTIONS(368), - [anon_sym_DOT] = ACTIONS(370), - [anon_sym_DOT_DOT] = ACTIONS(370), - [anon_sym_DOT_DOT_DOT] = ACTIONS(368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(368), - [anon_sym_COLON_COLON] = ACTIONS(408), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(370), - [anon_sym_async] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_const] = ACTIONS(414), - [anon_sym_continue] = ACTIONS(416), - [anon_sym_default] = ACTIONS(418), - [anon_sym_for] = ACTIONS(420), - [anon_sym_if] = ACTIONS(422), - [anon_sym_loop] = ACTIONS(424), - [anon_sym_match] = ACTIONS(426), - [anon_sym_return] = ACTIONS(428), - [anon_sym_static] = ACTIONS(430), - [anon_sym_union] = ACTIONS(418), - [anon_sym_unsafe] = ACTIONS(432), - [anon_sym_while] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_move] = ACTIONS(438), - [anon_sym_try] = ACTIONS(440), - [sym_integer_literal] = ACTIONS(442), - [aux_sym_string_literal_token1] = ACTIONS(444), - [sym_char_literal] = ACTIONS(442), - [anon_sym_true] = ACTIONS(446), - [anon_sym_false] = ACTIONS(446), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(448), - [sym_super] = ACTIONS(450), - [sym_crate] = ACTIONS(450), - [sym_metavariable] = ACTIONS(452), - [sym__raw_string_literal_start] = ACTIONS(454), - [sym_float_literal] = ACTIONS(442), + [sym_identifier] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_LBRACK] = ACTIONS(399), + [anon_sym_LBRACE] = ACTIONS(405), + [anon_sym_EQ_GT] = ACTIONS(399), + [anon_sym_PLUS] = ACTIONS(401), + [anon_sym_STAR] = ACTIONS(401), + [anon_sym_QMARK] = ACTIONS(399), + [anon_sym_u8] = ACTIONS(409), + [anon_sym_i8] = ACTIONS(409), + [anon_sym_u16] = ACTIONS(409), + [anon_sym_i16] = ACTIONS(409), + [anon_sym_u32] = ACTIONS(409), + [anon_sym_i32] = ACTIONS(409), + [anon_sym_u64] = ACTIONS(409), + [anon_sym_i64] = ACTIONS(409), + [anon_sym_u128] = ACTIONS(409), + [anon_sym_i128] = ACTIONS(409), + [anon_sym_isize] = ACTIONS(409), + [anon_sym_usize] = ACTIONS(409), + [anon_sym_f32] = ACTIONS(409), + [anon_sym_f64] = ACTIONS(409), + [anon_sym_bool] = ACTIONS(409), + [anon_sym_str] = ACTIONS(409), + [anon_sym_char] = ACTIONS(409), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_PERCENT] = ACTIONS(401), + [anon_sym_CARET] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(411), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_PIPE] = ACTIONS(401), + [anon_sym_AMP_AMP] = ACTIONS(399), + [anon_sym_PIPE_PIPE] = ACTIONS(399), + [anon_sym_LT_LT] = ACTIONS(401), + [anon_sym_GT_GT] = ACTIONS(401), + [anon_sym_PLUS_EQ] = ACTIONS(399), + [anon_sym_DASH_EQ] = ACTIONS(399), + [anon_sym_STAR_EQ] = ACTIONS(399), + [anon_sym_SLASH_EQ] = ACTIONS(399), + [anon_sym_PERCENT_EQ] = ACTIONS(399), + [anon_sym_CARET_EQ] = ACTIONS(399), + [anon_sym_AMP_EQ] = ACTIONS(399), + [anon_sym_PIPE_EQ] = ACTIONS(399), + [anon_sym_LT_LT_EQ] = ACTIONS(399), + [anon_sym_GT_GT_EQ] = ACTIONS(399), + [anon_sym_EQ] = ACTIONS(401), + [anon_sym_EQ_EQ] = ACTIONS(399), + [anon_sym_BANG_EQ] = ACTIONS(399), + [anon_sym_GT] = ACTIONS(401), + [anon_sym_LT] = ACTIONS(401), + [anon_sym_GT_EQ] = ACTIONS(399), + [anon_sym_LT_EQ] = ACTIONS(399), + [anon_sym_DOT] = ACTIONS(401), + [anon_sym_DOT_DOT] = ACTIONS(401), + [anon_sym_DOT_DOT_DOT] = ACTIONS(399), + [anon_sym_DOT_DOT_EQ] = ACTIONS(399), + [anon_sym_COLON_COLON] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_as] = ACTIONS(401), + [anon_sym_async] = ACTIONS(415), + [anon_sym_break] = ACTIONS(417), + [anon_sym_const] = ACTIONS(419), + [anon_sym_continue] = ACTIONS(421), + [anon_sym_default] = ACTIONS(423), + [anon_sym_for] = ACTIONS(425), + [anon_sym_if] = ACTIONS(427), + [anon_sym_loop] = ACTIONS(429), + [anon_sym_match] = ACTIONS(431), + [anon_sym_return] = ACTIONS(433), + [anon_sym_static] = ACTIONS(435), + [anon_sym_union] = ACTIONS(423), + [anon_sym_unsafe] = ACTIONS(437), + [anon_sym_while] = ACTIONS(439), + [anon_sym_yield] = ACTIONS(441), + [anon_sym_move] = ACTIONS(443), + [anon_sym_try] = ACTIONS(445), + [sym_integer_literal] = ACTIONS(447), + [aux_sym_string_literal_token1] = ACTIONS(449), + [sym_char_literal] = ACTIONS(447), + [anon_sym_true] = ACTIONS(451), + [anon_sym_false] = ACTIONS(451), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(453), + [sym_super] = ACTIONS(455), + [sym_crate] = ACTIONS(455), + [sym_metavariable] = ACTIONS(457), + [sym__raw_string_literal_start] = ACTIONS(459), + [sym_float_literal] = ACTIONS(447), }, [50] = { - [sym_bracketed_type] = STATE(3498), - [sym_generic_function] = STATE(1637), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1604), - [sym__expression] = STATE(1645), - [sym_macro_invocation] = STATE(1641), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3100), - [sym_range_expression] = STATE(1639), - [sym_unary_expression] = STATE(1637), - [sym_try_expression] = STATE(1637), - [sym_reference_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_assignment_expression] = STATE(1637), - [sym_compound_assignment_expr] = STATE(1637), - [sym_type_cast_expression] = STATE(1637), - [sym_return_expression] = STATE(1637), - [sym_yield_expression] = STATE(1637), - [sym_call_expression] = STATE(1637), - [sym_array_expression] = STATE(1637), - [sym_parenthesized_expression] = STATE(1637), - [sym_tuple_expression] = STATE(1637), - [sym_unit_expression] = STATE(1637), - [sym_struct_expression] = STATE(1637), - [sym_if_expression] = STATE(1637), - [sym_match_expression] = STATE(1637), - [sym_while_expression] = STATE(1637), - [sym_loop_expression] = STATE(1637), - [sym_for_expression] = STATE(1637), - [sym_const_block] = STATE(1637), - [sym_closure_expression] = STATE(1637), - [sym_closure_parameters] = STATE(237), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1637), - [sym_continue_expression] = STATE(1637), - [sym_index_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_field_expression] = STATE(1620), - [sym_unsafe_block] = STATE(1637), - [sym_async_block] = STATE(1637), - [sym_try_block] = STATE(1637), - [sym_block] = STATE(1637), - [sym__literal] = STATE(1637), - [sym_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_boolean_literal] = STATE(1778), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2791), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1615), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1574), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(249), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(50), [sym_block_comment] = STATE(50), - [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(384), - [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_EQ_GT] = ACTIONS(384), - [anon_sym_PLUS] = ACTIONS(386), - [anon_sym_STAR] = ACTIONS(386), - [anon_sym_QMARK] = ACTIONS(384), - [anon_sym_u8] = ACTIONS(404), - [anon_sym_i8] = ACTIONS(404), - [anon_sym_u16] = ACTIONS(404), - [anon_sym_i16] = ACTIONS(404), - [anon_sym_u32] = ACTIONS(404), - [anon_sym_i32] = ACTIONS(404), - [anon_sym_u64] = ACTIONS(404), - [anon_sym_i64] = ACTIONS(404), - [anon_sym_u128] = ACTIONS(404), - [anon_sym_i128] = ACTIONS(404), - [anon_sym_isize] = ACTIONS(404), - [anon_sym_usize] = ACTIONS(404), - [anon_sym_f32] = ACTIONS(404), - [anon_sym_f64] = ACTIONS(404), - [anon_sym_bool] = ACTIONS(404), - [anon_sym_str] = ACTIONS(404), - [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(386), - [anon_sym_SLASH] = ACTIONS(386), - [anon_sym_PERCENT] = ACTIONS(386), - [anon_sym_CARET] = ACTIONS(386), - [anon_sym_BANG] = ACTIONS(406), - [anon_sym_AMP] = ACTIONS(386), - [anon_sym_PIPE] = ACTIONS(386), - [anon_sym_AMP_AMP] = ACTIONS(384), - [anon_sym_PIPE_PIPE] = ACTIONS(384), - [anon_sym_LT_LT] = ACTIONS(386), - [anon_sym_GT_GT] = ACTIONS(386), - [anon_sym_PLUS_EQ] = ACTIONS(384), - [anon_sym_DASH_EQ] = ACTIONS(384), - [anon_sym_STAR_EQ] = ACTIONS(384), - [anon_sym_SLASH_EQ] = ACTIONS(384), - [anon_sym_PERCENT_EQ] = ACTIONS(384), - [anon_sym_CARET_EQ] = ACTIONS(384), - [anon_sym_AMP_EQ] = ACTIONS(384), - [anon_sym_PIPE_EQ] = ACTIONS(384), - [anon_sym_LT_LT_EQ] = ACTIONS(384), - [anon_sym_GT_GT_EQ] = ACTIONS(384), - [anon_sym_EQ] = ACTIONS(386), - [anon_sym_EQ_EQ] = ACTIONS(384), - [anon_sym_BANG_EQ] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(386), - [anon_sym_LT] = ACTIONS(386), - [anon_sym_GT_EQ] = ACTIONS(384), - [anon_sym_LT_EQ] = ACTIONS(384), - [anon_sym_DOT] = ACTIONS(386), - [anon_sym_DOT_DOT] = ACTIONS(386), - [anon_sym_DOT_DOT_DOT] = ACTIONS(384), - [anon_sym_DOT_DOT_EQ] = ACTIONS(384), - [anon_sym_COLON_COLON] = ACTIONS(408), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(386), - [anon_sym_async] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_const] = ACTIONS(414), - [anon_sym_continue] = ACTIONS(416), - [anon_sym_default] = ACTIONS(418), - [anon_sym_for] = ACTIONS(420), - [anon_sym_if] = ACTIONS(422), - [anon_sym_loop] = ACTIONS(424), - [anon_sym_match] = ACTIONS(426), - [anon_sym_return] = ACTIONS(428), - [anon_sym_static] = ACTIONS(430), - [anon_sym_union] = ACTIONS(418), - [anon_sym_unsafe] = ACTIONS(432), - [anon_sym_while] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_move] = ACTIONS(438), - [anon_sym_try] = ACTIONS(440), - [sym_integer_literal] = ACTIONS(442), - [aux_sym_string_literal_token1] = ACTIONS(444), - [sym_char_literal] = ACTIONS(442), - [anon_sym_true] = ACTIONS(446), - [anon_sym_false] = ACTIONS(446), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(448), - [sym_super] = ACTIONS(450), - [sym_crate] = ACTIONS(450), - [sym_metavariable] = ACTIONS(452), - [sym__raw_string_literal_start] = ACTIONS(454), - [sym_float_literal] = ACTIONS(442), + [sym_identifier] = ACTIONS(471), + [anon_sym_LPAREN] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(341), + [anon_sym_COLON] = ACTIONS(345), + [anon_sym_PLUS] = ACTIONS(347), + [anon_sym_STAR] = ACTIONS(347), + [anon_sym_QMARK] = ACTIONS(341), + [anon_sym_u8] = ACTIONS(473), + [anon_sym_i8] = ACTIONS(473), + [anon_sym_u16] = ACTIONS(473), + [anon_sym_i16] = ACTIONS(473), + [anon_sym_u32] = ACTIONS(473), + [anon_sym_i32] = ACTIONS(473), + [anon_sym_u64] = ACTIONS(473), + [anon_sym_i64] = ACTIONS(473), + [anon_sym_u128] = ACTIONS(473), + [anon_sym_i128] = ACTIONS(473), + [anon_sym_isize] = ACTIONS(473), + [anon_sym_usize] = ACTIONS(473), + [anon_sym_f32] = ACTIONS(473), + [anon_sym_f64] = ACTIONS(473), + [anon_sym_bool] = ACTIONS(473), + [anon_sym_str] = ACTIONS(473), + [anon_sym_char] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(347), + [anon_sym_SLASH] = ACTIONS(347), + [anon_sym_PERCENT] = ACTIONS(347), + [anon_sym_CARET] = ACTIONS(347), + [anon_sym_BANG] = ACTIONS(497), + [anon_sym_AMP] = ACTIONS(347), + [anon_sym_PIPE] = ACTIONS(347), + [anon_sym_AMP_AMP] = ACTIONS(341), + [anon_sym_PIPE_PIPE] = ACTIONS(341), + [anon_sym_LT_LT] = ACTIONS(347), + [anon_sym_GT_GT] = ACTIONS(347), + [anon_sym_PLUS_EQ] = ACTIONS(341), + [anon_sym_DASH_EQ] = ACTIONS(341), + [anon_sym_STAR_EQ] = ACTIONS(341), + [anon_sym_SLASH_EQ] = ACTIONS(341), + [anon_sym_PERCENT_EQ] = ACTIONS(341), + [anon_sym_CARET_EQ] = ACTIONS(341), + [anon_sym_AMP_EQ] = ACTIONS(341), + [anon_sym_PIPE_EQ] = ACTIONS(341), + [anon_sym_LT_LT_EQ] = ACTIONS(341), + [anon_sym_GT_GT_EQ] = ACTIONS(341), + [anon_sym_EQ] = ACTIONS(347), + [anon_sym_EQ_EQ] = ACTIONS(341), + [anon_sym_BANG_EQ] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(347), + [anon_sym_LT] = ACTIONS(347), + [anon_sym_GT_EQ] = ACTIONS(341), + [anon_sym_LT_EQ] = ACTIONS(341), + [anon_sym_DOT] = ACTIONS(347), + [anon_sym_DOT_DOT] = ACTIONS(347), + [anon_sym_DOT_DOT_DOT] = ACTIONS(341), + [anon_sym_DOT_DOT_EQ] = ACTIONS(341), + [anon_sym_COLON_COLON] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(347), + [anon_sym_as] = ACTIONS(347), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(499), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_default] = ACTIONS(481), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(503), + [anon_sym_static] = ACTIONS(505), + [anon_sym_union] = ACTIONS(481), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(507), + [anon_sym_move] = ACTIONS(509), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [51] = { - [sym_bracketed_type] = STATE(3498), - [sym_generic_function] = STATE(1637), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1604), - [sym__expression] = STATE(1763), - [sym_macro_invocation] = STATE(1641), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3100), - [sym_range_expression] = STATE(1639), - [sym_unary_expression] = STATE(1637), - [sym_try_expression] = STATE(1637), - [sym_reference_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_assignment_expression] = STATE(1637), - [sym_compound_assignment_expr] = STATE(1637), - [sym_type_cast_expression] = STATE(1637), - [sym_return_expression] = STATE(1637), - [sym_yield_expression] = STATE(1637), - [sym_call_expression] = STATE(1637), - [sym_array_expression] = STATE(1637), - [sym_parenthesized_expression] = STATE(1637), - [sym_tuple_expression] = STATE(1637), - [sym_unit_expression] = STATE(1637), - [sym_struct_expression] = STATE(1637), - [sym_if_expression] = STATE(1637), - [sym_match_expression] = STATE(1637), - [sym_while_expression] = STATE(1637), - [sym_loop_expression] = STATE(1637), - [sym_for_expression] = STATE(1637), - [sym_const_block] = STATE(1637), - [sym_closure_expression] = STATE(1637), - [sym_closure_parameters] = STATE(237), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1637), - [sym_continue_expression] = STATE(1637), - [sym_index_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_field_expression] = STATE(1620), - [sym_unsafe_block] = STATE(1637), - [sym_async_block] = STATE(1637), - [sym_try_block] = STATE(1637), - [sym_block] = STATE(1637), - [sym__literal] = STATE(1637), - [sym_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_boolean_literal] = STATE(1778), + [sym_bracketed_type] = STATE(3593), + [sym_generic_function] = STATE(1742), + [sym_generic_type_with_turbofish] = STATE(2901), + [sym__expression_except_range] = STATE(1655), + [sym__expression] = STATE(1815), + [sym_macro_invocation] = STATE(1752), + [sym_scoped_identifier] = STATE(1584), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1746), + [sym_unary_expression] = STATE(1742), + [sym_try_expression] = STATE(1742), + [sym_reference_expression] = STATE(1742), + [sym_binary_expression] = STATE(1742), + [sym_assignment_expression] = STATE(1742), + [sym_compound_assignment_expr] = STATE(1742), + [sym_type_cast_expression] = STATE(1742), + [sym_return_expression] = STATE(1742), + [sym_yield_expression] = STATE(1742), + [sym_call_expression] = STATE(1742), + [sym_array_expression] = STATE(1742), + [sym_parenthesized_expression] = STATE(1742), + [sym_tuple_expression] = STATE(1742), + [sym_unit_expression] = STATE(1742), + [sym_struct_expression] = STATE(1742), + [sym_if_expression] = STATE(1742), + [sym_match_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_loop_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_const_block] = STATE(1742), + [sym_closure_expression] = STATE(1742), + [sym_closure_parameters] = STATE(244), + [sym_label] = STATE(3682), + [sym_break_expression] = STATE(1742), + [sym_continue_expression] = STATE(1742), + [sym_index_expression] = STATE(1742), + [sym_await_expression] = STATE(1742), + [sym_field_expression] = STATE(1652), + [sym_unsafe_block] = STATE(1742), + [sym_async_block] = STATE(1742), + [sym_try_block] = STATE(1742), + [sym_block] = STATE(1742), + [sym__literal] = STATE(1742), + [sym_string_literal] = STATE(1723), + [sym_raw_string_literal] = STATE(1723), + [sym_boolean_literal] = STATE(1723), [sym_line_comment] = STATE(51), [sym_block_comment] = STATE(51), - [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_LBRACK] = ACTIONS(368), - [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_EQ_GT] = ACTIONS(368), - [anon_sym_PLUS] = ACTIONS(370), - [anon_sym_STAR] = ACTIONS(370), - [anon_sym_QMARK] = ACTIONS(368), - [anon_sym_u8] = ACTIONS(404), - [anon_sym_i8] = ACTIONS(404), - [anon_sym_u16] = ACTIONS(404), - [anon_sym_i16] = ACTIONS(404), - [anon_sym_u32] = ACTIONS(404), - [anon_sym_i32] = ACTIONS(404), - [anon_sym_u64] = ACTIONS(404), - [anon_sym_i64] = ACTIONS(404), - [anon_sym_u128] = ACTIONS(404), - [anon_sym_i128] = ACTIONS(404), - [anon_sym_isize] = ACTIONS(404), - [anon_sym_usize] = ACTIONS(404), - [anon_sym_f32] = ACTIONS(404), - [anon_sym_f64] = ACTIONS(404), - [anon_sym_bool] = ACTIONS(404), - [anon_sym_str] = ACTIONS(404), - [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(370), - [anon_sym_SLASH] = ACTIONS(370), - [anon_sym_PERCENT] = ACTIONS(370), - [anon_sym_CARET] = ACTIONS(370), - [anon_sym_BANG] = ACTIONS(406), - [anon_sym_AMP] = ACTIONS(370), - [anon_sym_PIPE] = ACTIONS(370), - [anon_sym_AMP_AMP] = ACTIONS(368), - [anon_sym_PIPE_PIPE] = ACTIONS(368), - [anon_sym_LT_LT] = ACTIONS(370), - [anon_sym_GT_GT] = ACTIONS(370), - [anon_sym_PLUS_EQ] = ACTIONS(368), - [anon_sym_DASH_EQ] = ACTIONS(368), - [anon_sym_STAR_EQ] = ACTIONS(368), - [anon_sym_SLASH_EQ] = ACTIONS(368), - [anon_sym_PERCENT_EQ] = ACTIONS(368), - [anon_sym_CARET_EQ] = ACTIONS(368), - [anon_sym_AMP_EQ] = ACTIONS(368), - [anon_sym_PIPE_EQ] = ACTIONS(368), - [anon_sym_LT_LT_EQ] = ACTIONS(368), - [anon_sym_GT_GT_EQ] = ACTIONS(368), - [anon_sym_EQ] = ACTIONS(370), - [anon_sym_EQ_EQ] = ACTIONS(368), - [anon_sym_BANG_EQ] = ACTIONS(368), - [anon_sym_GT] = ACTIONS(370), - [anon_sym_LT] = ACTIONS(370), - [anon_sym_GT_EQ] = ACTIONS(368), - [anon_sym_LT_EQ] = ACTIONS(368), - [anon_sym_DOT] = ACTIONS(370), - [anon_sym_DOT_DOT] = ACTIONS(370), - [anon_sym_DOT_DOT_DOT] = ACTIONS(368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(368), - [anon_sym_COLON_COLON] = ACTIONS(408), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(370), - [anon_sym_async] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_const] = ACTIONS(414), - [anon_sym_continue] = ACTIONS(416), - [anon_sym_default] = ACTIONS(418), - [anon_sym_for] = ACTIONS(420), - [anon_sym_if] = ACTIONS(422), - [anon_sym_loop] = ACTIONS(424), - [anon_sym_match] = ACTIONS(426), - [anon_sym_return] = ACTIONS(428), - [anon_sym_static] = ACTIONS(430), - [anon_sym_union] = ACTIONS(418), - [anon_sym_unsafe] = ACTIONS(432), - [anon_sym_while] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_move] = ACTIONS(438), - [anon_sym_try] = ACTIONS(440), - [sym_integer_literal] = ACTIONS(442), - [aux_sym_string_literal_token1] = ACTIONS(444), - [sym_char_literal] = ACTIONS(442), - [anon_sym_true] = ACTIONS(446), - [anon_sym_false] = ACTIONS(446), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(448), - [sym_super] = ACTIONS(450), - [sym_crate] = ACTIONS(450), - [sym_metavariable] = ACTIONS(452), - [sym__raw_string_literal_start] = ACTIONS(454), - [sym_float_literal] = ACTIONS(442), + [sym_identifier] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(461), + [anon_sym_LBRACK] = ACTIONS(373), + [anon_sym_LBRACE] = ACTIONS(405), + [anon_sym_EQ_GT] = ACTIONS(373), + [anon_sym_PLUS] = ACTIONS(375), + [anon_sym_STAR] = ACTIONS(375), + [anon_sym_QMARK] = ACTIONS(373), + [anon_sym_u8] = ACTIONS(409), + [anon_sym_i8] = ACTIONS(409), + [anon_sym_u16] = ACTIONS(409), + [anon_sym_i16] = ACTIONS(409), + [anon_sym_u32] = ACTIONS(409), + [anon_sym_i32] = ACTIONS(409), + [anon_sym_u64] = ACTIONS(409), + [anon_sym_i64] = ACTIONS(409), + [anon_sym_u128] = ACTIONS(409), + [anon_sym_i128] = ACTIONS(409), + [anon_sym_isize] = ACTIONS(409), + [anon_sym_usize] = ACTIONS(409), + [anon_sym_f32] = ACTIONS(409), + [anon_sym_f64] = ACTIONS(409), + [anon_sym_bool] = ACTIONS(409), + [anon_sym_str] = ACTIONS(409), + [anon_sym_char] = ACTIONS(409), + [anon_sym_DASH] = ACTIONS(375), + [anon_sym_SLASH] = ACTIONS(375), + [anon_sym_PERCENT] = ACTIONS(375), + [anon_sym_CARET] = ACTIONS(375), + [anon_sym_BANG] = ACTIONS(411), + [anon_sym_AMP] = ACTIONS(375), + [anon_sym_PIPE] = ACTIONS(375), + [anon_sym_AMP_AMP] = ACTIONS(373), + [anon_sym_PIPE_PIPE] = ACTIONS(373), + [anon_sym_LT_LT] = ACTIONS(375), + [anon_sym_GT_GT] = ACTIONS(375), + [anon_sym_PLUS_EQ] = ACTIONS(373), + [anon_sym_DASH_EQ] = ACTIONS(373), + [anon_sym_STAR_EQ] = ACTIONS(373), + [anon_sym_SLASH_EQ] = ACTIONS(373), + [anon_sym_PERCENT_EQ] = ACTIONS(373), + [anon_sym_CARET_EQ] = ACTIONS(373), + [anon_sym_AMP_EQ] = ACTIONS(373), + [anon_sym_PIPE_EQ] = ACTIONS(373), + [anon_sym_LT_LT_EQ] = ACTIONS(373), + [anon_sym_GT_GT_EQ] = ACTIONS(373), + [anon_sym_EQ] = ACTIONS(375), + [anon_sym_EQ_EQ] = ACTIONS(373), + [anon_sym_BANG_EQ] = ACTIONS(373), + [anon_sym_GT] = ACTIONS(375), + [anon_sym_LT] = ACTIONS(375), + [anon_sym_GT_EQ] = ACTIONS(373), + [anon_sym_LT_EQ] = ACTIONS(373), + [anon_sym_DOT] = ACTIONS(375), + [anon_sym_DOT_DOT] = ACTIONS(375), + [anon_sym_DOT_DOT_DOT] = ACTIONS(373), + [anon_sym_DOT_DOT_EQ] = ACTIONS(373), + [anon_sym_COLON_COLON] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_as] = ACTIONS(375), + [anon_sym_async] = ACTIONS(415), + [anon_sym_break] = ACTIONS(417), + [anon_sym_const] = ACTIONS(419), + [anon_sym_continue] = ACTIONS(421), + [anon_sym_default] = ACTIONS(423), + [anon_sym_for] = ACTIONS(425), + [anon_sym_if] = ACTIONS(427), + [anon_sym_loop] = ACTIONS(429), + [anon_sym_match] = ACTIONS(431), + [anon_sym_return] = ACTIONS(433), + [anon_sym_static] = ACTIONS(435), + [anon_sym_union] = ACTIONS(423), + [anon_sym_unsafe] = ACTIONS(437), + [anon_sym_while] = ACTIONS(439), + [anon_sym_yield] = ACTIONS(441), + [anon_sym_move] = ACTIONS(443), + [anon_sym_try] = ACTIONS(445), + [sym_integer_literal] = ACTIONS(447), + [aux_sym_string_literal_token1] = ACTIONS(449), + [sym_char_literal] = ACTIONS(447), + [anon_sym_true] = ACTIONS(451), + [anon_sym_false] = ACTIONS(451), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(453), + [sym_super] = ACTIONS(455), + [sym_crate] = ACTIONS(455), + [sym_metavariable] = ACTIONS(457), + [sym__raw_string_literal_start] = ACTIONS(459), + [sym_float_literal] = ACTIONS(447), }, [52] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1625), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), + [sym_bracketed_type] = STATE(3593), + [sym_generic_function] = STATE(1742), + [sym_generic_type_with_turbofish] = STATE(2901), + [sym__expression_except_range] = STATE(1655), + [sym__expression] = STATE(1776), + [sym_macro_invocation] = STATE(1752), + [sym_scoped_identifier] = STATE(1584), [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_range_expression] = STATE(1746), + [sym_unary_expression] = STATE(1742), + [sym_try_expression] = STATE(1742), + [sym_reference_expression] = STATE(1742), + [sym_binary_expression] = STATE(1742), + [sym_assignment_expression] = STATE(1742), + [sym_compound_assignment_expr] = STATE(1742), + [sym_type_cast_expression] = STATE(1742), + [sym_return_expression] = STATE(1742), + [sym_yield_expression] = STATE(1742), + [sym_call_expression] = STATE(1742), + [sym_array_expression] = STATE(1742), + [sym_parenthesized_expression] = STATE(1742), + [sym_tuple_expression] = STATE(1742), + [sym_unit_expression] = STATE(1742), + [sym_struct_expression] = STATE(1742), + [sym_if_expression] = STATE(1742), + [sym_match_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_loop_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_const_block] = STATE(1742), + [sym_closure_expression] = STATE(1742), + [sym_closure_parameters] = STATE(244), + [sym_label] = STATE(3682), + [sym_break_expression] = STATE(1742), + [sym_continue_expression] = STATE(1742), + [sym_index_expression] = STATE(1742), + [sym_await_expression] = STATE(1742), + [sym_field_expression] = STATE(1652), + [sym_unsafe_block] = STATE(1742), + [sym_async_block] = STATE(1742), + [sym_try_block] = STATE(1742), + [sym_block] = STATE(1742), + [sym__literal] = STATE(1742), + [sym_string_literal] = STATE(1723), + [sym_raw_string_literal] = STATE(1723), + [sym_boolean_literal] = STATE(1723), [sym_line_comment] = STATE(52), [sym_block_comment] = STATE(52), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(336), - [anon_sym_LBRACK] = ACTIONS(336), - [anon_sym_LBRACE] = ACTIONS(336), - [anon_sym_COLON] = ACTIONS(340), - [anon_sym_PLUS] = ACTIONS(342), - [anon_sym_STAR] = ACTIONS(342), - [anon_sym_QMARK] = ACTIONS(336), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(342), - [anon_sym_SLASH] = ACTIONS(342), - [anon_sym_PERCENT] = ACTIONS(342), - [anon_sym_CARET] = ACTIONS(342), - [anon_sym_BANG] = ACTIONS(492), - [anon_sym_AMP] = ACTIONS(342), - [anon_sym_PIPE] = ACTIONS(342), - [anon_sym_AMP_AMP] = ACTIONS(336), - [anon_sym_PIPE_PIPE] = ACTIONS(336), - [anon_sym_LT_LT] = ACTIONS(342), - [anon_sym_GT_GT] = ACTIONS(342), - [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_CARET_EQ] = ACTIONS(336), - [anon_sym_AMP_EQ] = ACTIONS(336), - [anon_sym_PIPE_EQ] = ACTIONS(336), - [anon_sym_LT_LT_EQ] = ACTIONS(336), - [anon_sym_GT_GT_EQ] = ACTIONS(336), - [anon_sym_EQ] = ACTIONS(342), - [anon_sym_EQ_EQ] = ACTIONS(336), - [anon_sym_BANG_EQ] = ACTIONS(336), - [anon_sym_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(342), - [anon_sym_GT_EQ] = ACTIONS(336), - [anon_sym_LT_EQ] = ACTIONS(336), - [anon_sym_DOT] = ACTIONS(342), - [anon_sym_DOT_DOT] = ACTIONS(342), - [anon_sym_DOT_DOT_DOT] = ACTIONS(336), - [anon_sym_DOT_DOT_EQ] = ACTIONS(336), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(342), - [anon_sym_as] = ACTIONS(342), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [sym_identifier] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(461), + [anon_sym_LBRACK] = ACTIONS(399), + [anon_sym_LBRACE] = ACTIONS(405), + [anon_sym_EQ_GT] = ACTIONS(399), + [anon_sym_PLUS] = ACTIONS(401), + [anon_sym_STAR] = ACTIONS(401), + [anon_sym_QMARK] = ACTIONS(399), + [anon_sym_u8] = ACTIONS(409), + [anon_sym_i8] = ACTIONS(409), + [anon_sym_u16] = ACTIONS(409), + [anon_sym_i16] = ACTIONS(409), + [anon_sym_u32] = ACTIONS(409), + [anon_sym_i32] = ACTIONS(409), + [anon_sym_u64] = ACTIONS(409), + [anon_sym_i64] = ACTIONS(409), + [anon_sym_u128] = ACTIONS(409), + [anon_sym_i128] = ACTIONS(409), + [anon_sym_isize] = ACTIONS(409), + [anon_sym_usize] = ACTIONS(409), + [anon_sym_f32] = ACTIONS(409), + [anon_sym_f64] = ACTIONS(409), + [anon_sym_bool] = ACTIONS(409), + [anon_sym_str] = ACTIONS(409), + [anon_sym_char] = ACTIONS(409), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_PERCENT] = ACTIONS(401), + [anon_sym_CARET] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(411), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_PIPE] = ACTIONS(401), + [anon_sym_AMP_AMP] = ACTIONS(399), + [anon_sym_PIPE_PIPE] = ACTIONS(399), + [anon_sym_LT_LT] = ACTIONS(401), + [anon_sym_GT_GT] = ACTIONS(401), + [anon_sym_PLUS_EQ] = ACTIONS(399), + [anon_sym_DASH_EQ] = ACTIONS(399), + [anon_sym_STAR_EQ] = ACTIONS(399), + [anon_sym_SLASH_EQ] = ACTIONS(399), + [anon_sym_PERCENT_EQ] = ACTIONS(399), + [anon_sym_CARET_EQ] = ACTIONS(399), + [anon_sym_AMP_EQ] = ACTIONS(399), + [anon_sym_PIPE_EQ] = ACTIONS(399), + [anon_sym_LT_LT_EQ] = ACTIONS(399), + [anon_sym_GT_GT_EQ] = ACTIONS(399), + [anon_sym_EQ] = ACTIONS(401), + [anon_sym_EQ_EQ] = ACTIONS(399), + [anon_sym_BANG_EQ] = ACTIONS(399), + [anon_sym_GT] = ACTIONS(401), + [anon_sym_LT] = ACTIONS(401), + [anon_sym_GT_EQ] = ACTIONS(399), + [anon_sym_LT_EQ] = ACTIONS(399), + [anon_sym_DOT] = ACTIONS(401), + [anon_sym_DOT_DOT] = ACTIONS(401), + [anon_sym_DOT_DOT_DOT] = ACTIONS(399), + [anon_sym_DOT_DOT_EQ] = ACTIONS(399), + [anon_sym_COLON_COLON] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_as] = ACTIONS(401), + [anon_sym_async] = ACTIONS(415), + [anon_sym_break] = ACTIONS(417), + [anon_sym_const] = ACTIONS(419), + [anon_sym_continue] = ACTIONS(421), + [anon_sym_default] = ACTIONS(423), + [anon_sym_for] = ACTIONS(425), + [anon_sym_if] = ACTIONS(427), + [anon_sym_loop] = ACTIONS(429), + [anon_sym_match] = ACTIONS(431), + [anon_sym_return] = ACTIONS(433), + [anon_sym_static] = ACTIONS(435), + [anon_sym_union] = ACTIONS(423), + [anon_sym_unsafe] = ACTIONS(437), + [anon_sym_while] = ACTIONS(439), + [anon_sym_yield] = ACTIONS(441), + [anon_sym_move] = ACTIONS(443), + [anon_sym_try] = ACTIONS(445), + [sym_integer_literal] = ACTIONS(447), + [aux_sym_string_literal_token1] = ACTIONS(449), + [sym_char_literal] = ACTIONS(447), + [anon_sym_true] = ACTIONS(451), + [anon_sym_false] = ACTIONS(451), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(453), + [sym_super] = ACTIONS(455), + [sym_crate] = ACTIONS(455), + [sym_metavariable] = ACTIONS(457), + [sym__raw_string_literal_start] = ACTIONS(459), + [sym_float_literal] = ACTIONS(447), }, [53] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1575), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2791), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1807), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1574), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(241), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(53), [sym_block_comment] = STATE(53), - [sym_identifier] = ACTIONS(456), + [sym_identifier] = ACTIONS(471), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_PLUS] = ACTIONS(396), - [anon_sym_STAR] = ACTIONS(492), - [anon_sym_QMARK] = ACTIONS(394), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(492), - [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_PERCENT] = ACTIONS(396), - [anon_sym_CARET] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(492), - [anon_sym_AMP] = ACTIONS(506), - [anon_sym_PIPE] = ACTIONS(378), - [anon_sym_AMP_AMP] = ACTIONS(394), - [anon_sym_PIPE_PIPE] = ACTIONS(394), - [anon_sym_LT_LT] = ACTIONS(396), - [anon_sym_GT_GT] = 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_CARET_EQ] = ACTIONS(394), - [anon_sym_AMP_EQ] = ACTIONS(394), - [anon_sym_PIPE_EQ] = ACTIONS(394), - [anon_sym_LT_LT_EQ] = ACTIONS(394), - [anon_sym_GT_GT_EQ] = ACTIONS(394), - [anon_sym_EQ] = ACTIONS(396), - [anon_sym_EQ_EQ] = ACTIONS(394), - [anon_sym_BANG_EQ] = ACTIONS(394), - [anon_sym_GT] = ACTIONS(396), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_GT_EQ] = ACTIONS(394), - [anon_sym_LT_EQ] = ACTIONS(394), - [anon_sym_DOT] = ACTIONS(396), - [anon_sym_DOT_DOT] = ACTIONS(508), - [anon_sym_DOT_DOT_DOT] = ACTIONS(394), - [anon_sym_DOT_DOT_EQ] = ACTIONS(394), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(396), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_PLUS] = ACTIONS(391), + [anon_sym_STAR] = ACTIONS(475), + [anon_sym_QMARK] = ACTIONS(389), + [anon_sym_u8] = ACTIONS(473), + [anon_sym_i8] = ACTIONS(473), + [anon_sym_u16] = ACTIONS(473), + [anon_sym_i16] = ACTIONS(473), + [anon_sym_u32] = ACTIONS(473), + [anon_sym_i32] = ACTIONS(473), + [anon_sym_u64] = ACTIONS(473), + [anon_sym_i64] = ACTIONS(473), + [anon_sym_u128] = ACTIONS(473), + [anon_sym_i128] = ACTIONS(473), + [anon_sym_isize] = ACTIONS(473), + [anon_sym_usize] = ACTIONS(473), + [anon_sym_f32] = ACTIONS(473), + [anon_sym_f64] = ACTIONS(473), + [anon_sym_bool] = ACTIONS(473), + [anon_sym_str] = ACTIONS(473), + [anon_sym_char] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(391), + [anon_sym_PERCENT] = ACTIONS(391), + [anon_sym_CARET] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(475), + [anon_sym_AMP] = ACTIONS(511), + [anon_sym_PIPE] = ACTIONS(383), + [anon_sym_AMP_AMP] = ACTIONS(389), + [anon_sym_PIPE_PIPE] = ACTIONS(389), + [anon_sym_LT_LT] = ACTIONS(391), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_PLUS_EQ] = ACTIONS(389), + [anon_sym_DASH_EQ] = ACTIONS(389), + [anon_sym_STAR_EQ] = ACTIONS(389), + [anon_sym_SLASH_EQ] = ACTIONS(389), + [anon_sym_PERCENT_EQ] = ACTIONS(389), + [anon_sym_CARET_EQ] = ACTIONS(389), + [anon_sym_AMP_EQ] = ACTIONS(389), + [anon_sym_PIPE_EQ] = ACTIONS(389), + [anon_sym_LT_LT_EQ] = ACTIONS(389), + [anon_sym_GT_GT_EQ] = ACTIONS(389), + [anon_sym_EQ] = ACTIONS(391), + [anon_sym_EQ_EQ] = ACTIONS(389), + [anon_sym_BANG_EQ] = ACTIONS(389), + [anon_sym_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_GT_EQ] = ACTIONS(389), + [anon_sym_LT_EQ] = ACTIONS(389), + [anon_sym_DOT] = ACTIONS(391), + [anon_sym_DOT_DOT] = ACTIONS(513), + [anon_sym_DOT_DOT_DOT] = ACTIONS(389), + [anon_sym_DOT_DOT_EQ] = ACTIONS(389), + [anon_sym_COLON_COLON] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_as] = ACTIONS(391), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(479), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(481), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(483), + [anon_sym_static] = ACTIONS(485), + [anon_sym_union] = ACTIONS(481), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(487), + [anon_sym_move] = ACTIONS(489), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [54] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1815), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2791), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1669), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1574), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(249), + [sym_label] = STATE(50), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(54), [sym_block_comment] = STATE(54), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_PLUS] = ACTIONS(374), - [anon_sym_STAR] = ACTIONS(460), - [anon_sym_QMARK] = ACTIONS(372), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(460), - [anon_sym_SLASH] = ACTIONS(374), - [anon_sym_PERCENT] = ACTIONS(374), - [anon_sym_CARET] = ACTIONS(374), - [anon_sym_BANG] = ACTIONS(460), - [anon_sym_AMP] = ACTIONS(510), - [anon_sym_PIPE] = ACTIONS(378), - [anon_sym_AMP_AMP] = ACTIONS(372), - [anon_sym_PIPE_PIPE] = ACTIONS(372), - [anon_sym_LT_LT] = ACTIONS(374), - [anon_sym_GT_GT] = ACTIONS(374), - [anon_sym_PLUS_EQ] = ACTIONS(372), - [anon_sym_DASH_EQ] = ACTIONS(372), - [anon_sym_STAR_EQ] = ACTIONS(372), - [anon_sym_SLASH_EQ] = ACTIONS(372), - [anon_sym_PERCENT_EQ] = ACTIONS(372), - [anon_sym_CARET_EQ] = ACTIONS(372), - [anon_sym_AMP_EQ] = ACTIONS(372), - [anon_sym_PIPE_EQ] = ACTIONS(372), - [anon_sym_LT_LT_EQ] = ACTIONS(372), - [anon_sym_GT_GT_EQ] = ACTIONS(372), - [anon_sym_EQ] = ACTIONS(374), - [anon_sym_EQ_EQ] = ACTIONS(372), - [anon_sym_BANG_EQ] = ACTIONS(372), - [anon_sym_GT] = ACTIONS(374), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_GT_EQ] = ACTIONS(372), - [anon_sym_LT_EQ] = ACTIONS(372), - [anon_sym_DOT] = ACTIONS(374), - [anon_sym_DOT_DOT] = ACTIONS(512), - [anon_sym_DOT_DOT_DOT] = ACTIONS(372), - [anon_sym_DOT_DOT_EQ] = ACTIONS(372), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(374), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(464), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(468), - [anon_sym_static] = ACTIONS(470), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(472), - [anon_sym_move] = ACTIONS(474), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [sym_identifier] = ACTIONS(471), + [anon_sym_LPAREN] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(393), + [anon_sym_PLUS] = ACTIONS(395), + [anon_sym_STAR] = ACTIONS(395), + [anon_sym_QMARK] = ACTIONS(393), + [anon_sym_u8] = ACTIONS(473), + [anon_sym_i8] = ACTIONS(473), + [anon_sym_u16] = ACTIONS(473), + [anon_sym_i16] = ACTIONS(473), + [anon_sym_u32] = ACTIONS(473), + [anon_sym_i32] = ACTIONS(473), + [anon_sym_u64] = ACTIONS(473), + [anon_sym_i64] = ACTIONS(473), + [anon_sym_u128] = ACTIONS(473), + [anon_sym_i128] = ACTIONS(473), + [anon_sym_isize] = ACTIONS(473), + [anon_sym_usize] = ACTIONS(473), + [anon_sym_f32] = ACTIONS(473), + [anon_sym_f64] = ACTIONS(473), + [anon_sym_bool] = ACTIONS(473), + [anon_sym_str] = ACTIONS(473), + [anon_sym_char] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(395), + [anon_sym_SLASH] = ACTIONS(395), + [anon_sym_PERCENT] = ACTIONS(395), + [anon_sym_CARET] = ACTIONS(395), + [anon_sym_BANG] = ACTIONS(497), + [anon_sym_AMP] = ACTIONS(395), + [anon_sym_PIPE] = ACTIONS(395), + [anon_sym_AMP_AMP] = ACTIONS(393), + [anon_sym_PIPE_PIPE] = ACTIONS(393), + [anon_sym_LT_LT] = ACTIONS(395), + [anon_sym_GT_GT] = ACTIONS(395), + [anon_sym_PLUS_EQ] = ACTIONS(393), + [anon_sym_DASH_EQ] = ACTIONS(393), + [anon_sym_STAR_EQ] = ACTIONS(393), + [anon_sym_SLASH_EQ] = ACTIONS(393), + [anon_sym_PERCENT_EQ] = ACTIONS(393), + [anon_sym_CARET_EQ] = ACTIONS(393), + [anon_sym_AMP_EQ] = ACTIONS(393), + [anon_sym_PIPE_EQ] = ACTIONS(393), + [anon_sym_LT_LT_EQ] = ACTIONS(393), + [anon_sym_GT_GT_EQ] = ACTIONS(393), + [anon_sym_EQ] = ACTIONS(395), + [anon_sym_EQ_EQ] = ACTIONS(393), + [anon_sym_BANG_EQ] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(395), + [anon_sym_LT] = ACTIONS(395), + [anon_sym_GT_EQ] = ACTIONS(393), + [anon_sym_LT_EQ] = ACTIONS(393), + [anon_sym_DOT] = ACTIONS(395), + [anon_sym_DOT_DOT] = ACTIONS(395), + [anon_sym_DOT_DOT_DOT] = ACTIONS(393), + [anon_sym_DOT_DOT_EQ] = ACTIONS(393), + [anon_sym_COLON_COLON] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(395), + [anon_sym_as] = ACTIONS(395), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(499), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_default] = ACTIONS(481), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(503), + [anon_sym_static] = ACTIONS(505), + [anon_sym_union] = ACTIONS(481), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(507), + [anon_sym_move] = ACTIONS(509), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [55] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1722), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2791), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1862), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1574), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(241), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(55), [sym_block_comment] = STATE(55), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_LBRACK] = ACTIONS(368), - [anon_sym_LBRACE] = ACTIONS(368), - [anon_sym_PLUS] = ACTIONS(370), - [anon_sym_STAR] = ACTIONS(370), - [anon_sym_QMARK] = ACTIONS(368), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(370), - [anon_sym_SLASH] = ACTIONS(370), - [anon_sym_PERCENT] = ACTIONS(370), - [anon_sym_CARET] = ACTIONS(370), - [anon_sym_BANG] = ACTIONS(460), - [anon_sym_AMP] = ACTIONS(370), - [anon_sym_PIPE] = ACTIONS(370), - [anon_sym_AMP_AMP] = ACTIONS(368), - [anon_sym_PIPE_PIPE] = ACTIONS(368), - [anon_sym_LT_LT] = ACTIONS(370), - [anon_sym_GT_GT] = ACTIONS(370), - [anon_sym_PLUS_EQ] = ACTIONS(368), - [anon_sym_DASH_EQ] = ACTIONS(368), - [anon_sym_STAR_EQ] = ACTIONS(368), - [anon_sym_SLASH_EQ] = ACTIONS(368), - [anon_sym_PERCENT_EQ] = ACTIONS(368), - [anon_sym_CARET_EQ] = ACTIONS(368), - [anon_sym_AMP_EQ] = ACTIONS(368), - [anon_sym_PIPE_EQ] = ACTIONS(368), - [anon_sym_LT_LT_EQ] = ACTIONS(368), - [anon_sym_GT_GT_EQ] = ACTIONS(368), - [anon_sym_EQ] = ACTIONS(370), - [anon_sym_EQ_EQ] = ACTIONS(368), - [anon_sym_BANG_EQ] = ACTIONS(368), - [anon_sym_GT] = ACTIONS(370), - [anon_sym_LT] = ACTIONS(370), - [anon_sym_GT_EQ] = ACTIONS(368), - [anon_sym_LT_EQ] = ACTIONS(368), - [anon_sym_DOT] = ACTIONS(370), - [anon_sym_DOT_DOT] = ACTIONS(370), - [anon_sym_DOT_DOT_DOT] = ACTIONS(368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(368), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(370), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(464), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(468), - [anon_sym_static] = ACTIONS(470), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(472), - [anon_sym_move] = ACTIONS(474), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [sym_identifier] = ACTIONS(471), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(373), + [anon_sym_LBRACE] = ACTIONS(373), + [anon_sym_PLUS] = ACTIONS(375), + [anon_sym_STAR] = ACTIONS(375), + [anon_sym_QMARK] = ACTIONS(373), + [anon_sym_u8] = ACTIONS(473), + [anon_sym_i8] = ACTIONS(473), + [anon_sym_u16] = ACTIONS(473), + [anon_sym_i16] = ACTIONS(473), + [anon_sym_u32] = ACTIONS(473), + [anon_sym_i32] = ACTIONS(473), + [anon_sym_u64] = ACTIONS(473), + [anon_sym_i64] = ACTIONS(473), + [anon_sym_u128] = ACTIONS(473), + [anon_sym_i128] = ACTIONS(473), + [anon_sym_isize] = ACTIONS(473), + [anon_sym_usize] = ACTIONS(473), + [anon_sym_f32] = ACTIONS(473), + [anon_sym_f64] = ACTIONS(473), + [anon_sym_bool] = ACTIONS(473), + [anon_sym_str] = ACTIONS(473), + [anon_sym_char] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(375), + [anon_sym_SLASH] = ACTIONS(375), + [anon_sym_PERCENT] = ACTIONS(375), + [anon_sym_CARET] = ACTIONS(375), + [anon_sym_BANG] = ACTIONS(475), + [anon_sym_AMP] = ACTIONS(375), + [anon_sym_PIPE] = ACTIONS(375), + [anon_sym_AMP_AMP] = ACTIONS(373), + [anon_sym_PIPE_PIPE] = ACTIONS(373), + [anon_sym_LT_LT] = ACTIONS(375), + [anon_sym_GT_GT] = ACTIONS(375), + [anon_sym_PLUS_EQ] = ACTIONS(373), + [anon_sym_DASH_EQ] = ACTIONS(373), + [anon_sym_STAR_EQ] = ACTIONS(373), + [anon_sym_SLASH_EQ] = ACTIONS(373), + [anon_sym_PERCENT_EQ] = ACTIONS(373), + [anon_sym_CARET_EQ] = ACTIONS(373), + [anon_sym_AMP_EQ] = ACTIONS(373), + [anon_sym_PIPE_EQ] = ACTIONS(373), + [anon_sym_LT_LT_EQ] = ACTIONS(373), + [anon_sym_GT_GT_EQ] = ACTIONS(373), + [anon_sym_EQ] = ACTIONS(375), + [anon_sym_EQ_EQ] = ACTIONS(373), + [anon_sym_BANG_EQ] = ACTIONS(373), + [anon_sym_GT] = ACTIONS(375), + [anon_sym_LT] = ACTIONS(375), + [anon_sym_GT_EQ] = ACTIONS(373), + [anon_sym_LT_EQ] = ACTIONS(373), + [anon_sym_DOT] = ACTIONS(375), + [anon_sym_DOT_DOT] = ACTIONS(375), + [anon_sym_DOT_DOT_DOT] = ACTIONS(373), + [anon_sym_DOT_DOT_EQ] = ACTIONS(373), + [anon_sym_COLON_COLON] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_as] = ACTIONS(375), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(479), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(481), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(483), + [anon_sym_static] = ACTIONS(485), + [anon_sym_union] = ACTIONS(481), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(487), + [anon_sym_move] = ACTIONS(489), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [56] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1579), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2791), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1698), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1574), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(241), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(56), [sym_block_comment] = STATE(56), - [sym_identifier] = ACTIONS(456), + [sym_identifier] = ACTIONS(471), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(368), - [anon_sym_LBRACE] = ACTIONS(368), - [anon_sym_PLUS] = ACTIONS(370), - [anon_sym_STAR] = ACTIONS(370), - [anon_sym_QMARK] = ACTIONS(368), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(370), - [anon_sym_SLASH] = ACTIONS(370), - [anon_sym_PERCENT] = ACTIONS(370), - [anon_sym_CARET] = ACTIONS(370), - [anon_sym_BANG] = ACTIONS(492), - [anon_sym_AMP] = ACTIONS(370), - [anon_sym_PIPE] = ACTIONS(370), - [anon_sym_AMP_AMP] = ACTIONS(368), - [anon_sym_PIPE_PIPE] = ACTIONS(368), - [anon_sym_LT_LT] = ACTIONS(370), - [anon_sym_GT_GT] = ACTIONS(370), - [anon_sym_PLUS_EQ] = ACTIONS(368), - [anon_sym_DASH_EQ] = ACTIONS(368), - [anon_sym_STAR_EQ] = ACTIONS(368), - [anon_sym_SLASH_EQ] = ACTIONS(368), - [anon_sym_PERCENT_EQ] = ACTIONS(368), - [anon_sym_CARET_EQ] = ACTIONS(368), - [anon_sym_AMP_EQ] = ACTIONS(368), - [anon_sym_PIPE_EQ] = ACTIONS(368), - [anon_sym_LT_LT_EQ] = ACTIONS(368), - [anon_sym_GT_GT_EQ] = ACTIONS(368), - [anon_sym_EQ] = ACTIONS(370), - [anon_sym_EQ_EQ] = ACTIONS(368), - [anon_sym_BANG_EQ] = ACTIONS(368), - [anon_sym_GT] = ACTIONS(370), - [anon_sym_LT] = ACTIONS(370), - [anon_sym_GT_EQ] = ACTIONS(368), - [anon_sym_LT_EQ] = ACTIONS(368), - [anon_sym_DOT] = ACTIONS(370), - [anon_sym_DOT_DOT] = ACTIONS(370), - [anon_sym_DOT_DOT_DOT] = ACTIONS(368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(368), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(370), - [anon_sym_as] = ACTIONS(370), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_LBRACK] = ACTIONS(399), + [anon_sym_LBRACE] = ACTIONS(399), + [anon_sym_PLUS] = ACTIONS(401), + [anon_sym_STAR] = ACTIONS(401), + [anon_sym_QMARK] = ACTIONS(399), + [anon_sym_u8] = ACTIONS(473), + [anon_sym_i8] = ACTIONS(473), + [anon_sym_u16] = ACTIONS(473), + [anon_sym_i16] = ACTIONS(473), + [anon_sym_u32] = ACTIONS(473), + [anon_sym_i32] = ACTIONS(473), + [anon_sym_u64] = ACTIONS(473), + [anon_sym_i64] = ACTIONS(473), + [anon_sym_u128] = ACTIONS(473), + [anon_sym_i128] = ACTIONS(473), + [anon_sym_isize] = ACTIONS(473), + [anon_sym_usize] = ACTIONS(473), + [anon_sym_f32] = ACTIONS(473), + [anon_sym_f64] = ACTIONS(473), + [anon_sym_bool] = ACTIONS(473), + [anon_sym_str] = ACTIONS(473), + [anon_sym_char] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_PERCENT] = ACTIONS(401), + [anon_sym_CARET] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(475), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_PIPE] = ACTIONS(401), + [anon_sym_AMP_AMP] = ACTIONS(399), + [anon_sym_PIPE_PIPE] = ACTIONS(399), + [anon_sym_LT_LT] = ACTIONS(401), + [anon_sym_GT_GT] = ACTIONS(401), + [anon_sym_PLUS_EQ] = ACTIONS(399), + [anon_sym_DASH_EQ] = ACTIONS(399), + [anon_sym_STAR_EQ] = ACTIONS(399), + [anon_sym_SLASH_EQ] = ACTIONS(399), + [anon_sym_PERCENT_EQ] = ACTIONS(399), + [anon_sym_CARET_EQ] = ACTIONS(399), + [anon_sym_AMP_EQ] = ACTIONS(399), + [anon_sym_PIPE_EQ] = ACTIONS(399), + [anon_sym_LT_LT_EQ] = ACTIONS(399), + [anon_sym_GT_GT_EQ] = ACTIONS(399), + [anon_sym_EQ] = ACTIONS(401), + [anon_sym_EQ_EQ] = ACTIONS(399), + [anon_sym_BANG_EQ] = ACTIONS(399), + [anon_sym_GT] = ACTIONS(401), + [anon_sym_LT] = ACTIONS(401), + [anon_sym_GT_EQ] = ACTIONS(399), + [anon_sym_LT_EQ] = ACTIONS(399), + [anon_sym_DOT] = ACTIONS(401), + [anon_sym_DOT_DOT] = ACTIONS(401), + [anon_sym_DOT_DOT_DOT] = ACTIONS(399), + [anon_sym_DOT_DOT_EQ] = ACTIONS(399), + [anon_sym_COLON_COLON] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_as] = ACTIONS(401), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(479), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(481), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(483), + [anon_sym_static] = ACTIONS(485), + [anon_sym_union] = ACTIONS(481), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(487), + [anon_sym_move] = ACTIONS(489), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [57] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1627), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2791), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1698), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1574), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(241), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(57), [sym_block_comment] = STATE(57), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(384), - [anon_sym_LBRACE] = ACTIONS(384), - [anon_sym_PLUS] = ACTIONS(386), - [anon_sym_STAR] = ACTIONS(386), - [anon_sym_QMARK] = ACTIONS(384), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(386), - [anon_sym_SLASH] = ACTIONS(386), - [anon_sym_PERCENT] = ACTIONS(386), - [anon_sym_CARET] = ACTIONS(386), - [anon_sym_BANG] = ACTIONS(492), - [anon_sym_AMP] = ACTIONS(386), - [anon_sym_PIPE] = ACTIONS(386), - [anon_sym_AMP_AMP] = ACTIONS(384), - [anon_sym_PIPE_PIPE] = ACTIONS(384), - [anon_sym_LT_LT] = ACTIONS(386), - [anon_sym_GT_GT] = ACTIONS(386), - [anon_sym_PLUS_EQ] = ACTIONS(384), - [anon_sym_DASH_EQ] = ACTIONS(384), - [anon_sym_STAR_EQ] = ACTIONS(384), - [anon_sym_SLASH_EQ] = ACTIONS(384), - [anon_sym_PERCENT_EQ] = ACTIONS(384), - [anon_sym_CARET_EQ] = ACTIONS(384), - [anon_sym_AMP_EQ] = ACTIONS(384), - [anon_sym_PIPE_EQ] = ACTIONS(384), - [anon_sym_LT_LT_EQ] = ACTIONS(384), - [anon_sym_GT_GT_EQ] = ACTIONS(384), - [anon_sym_EQ] = ACTIONS(386), - [anon_sym_EQ_EQ] = ACTIONS(384), - [anon_sym_BANG_EQ] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(386), - [anon_sym_LT] = ACTIONS(386), - [anon_sym_GT_EQ] = ACTIONS(384), - [anon_sym_LT_EQ] = ACTIONS(384), - [anon_sym_DOT] = ACTIONS(386), - [anon_sym_DOT_DOT] = ACTIONS(386), - [anon_sym_DOT_DOT_DOT] = ACTIONS(384), - [anon_sym_DOT_DOT_EQ] = ACTIONS(384), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(386), - [anon_sym_as] = ACTIONS(386), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [sym_identifier] = ACTIONS(471), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_LBRACK] = ACTIONS(399), + [anon_sym_LBRACE] = ACTIONS(399), + [anon_sym_PLUS] = ACTIONS(401), + [anon_sym_STAR] = ACTIONS(401), + [anon_sym_QMARK] = ACTIONS(399), + [anon_sym_u8] = ACTIONS(473), + [anon_sym_i8] = ACTIONS(473), + [anon_sym_u16] = ACTIONS(473), + [anon_sym_i16] = ACTIONS(473), + [anon_sym_u32] = ACTIONS(473), + [anon_sym_i32] = ACTIONS(473), + [anon_sym_u64] = ACTIONS(473), + [anon_sym_i64] = ACTIONS(473), + [anon_sym_u128] = ACTIONS(473), + [anon_sym_i128] = ACTIONS(473), + [anon_sym_isize] = ACTIONS(473), + [anon_sym_usize] = ACTIONS(473), + [anon_sym_f32] = ACTIONS(473), + [anon_sym_f64] = ACTIONS(473), + [anon_sym_bool] = ACTIONS(473), + [anon_sym_str] = ACTIONS(473), + [anon_sym_char] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_PERCENT] = ACTIONS(401), + [anon_sym_CARET] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(475), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_PIPE] = ACTIONS(401), + [anon_sym_AMP_AMP] = ACTIONS(399), + [anon_sym_PIPE_PIPE] = ACTIONS(399), + [anon_sym_LT_LT] = ACTIONS(401), + [anon_sym_GT_GT] = ACTIONS(401), + [anon_sym_PLUS_EQ] = ACTIONS(399), + [anon_sym_DASH_EQ] = ACTIONS(399), + [anon_sym_STAR_EQ] = ACTIONS(399), + [anon_sym_SLASH_EQ] = ACTIONS(399), + [anon_sym_PERCENT_EQ] = ACTIONS(399), + [anon_sym_CARET_EQ] = ACTIONS(399), + [anon_sym_AMP_EQ] = ACTIONS(399), + [anon_sym_PIPE_EQ] = ACTIONS(399), + [anon_sym_LT_LT_EQ] = ACTIONS(399), + [anon_sym_GT_GT_EQ] = ACTIONS(399), + [anon_sym_EQ] = ACTIONS(401), + [anon_sym_EQ_EQ] = ACTIONS(399), + [anon_sym_BANG_EQ] = ACTIONS(399), + [anon_sym_GT] = ACTIONS(401), + [anon_sym_LT] = ACTIONS(401), + [anon_sym_GT_EQ] = ACTIONS(399), + [anon_sym_LT_EQ] = ACTIONS(399), + [anon_sym_DOT] = ACTIONS(401), + [anon_sym_DOT_DOT] = ACTIONS(401), + [anon_sym_DOT_DOT_DOT] = ACTIONS(399), + [anon_sym_DOT_DOT_EQ] = ACTIONS(399), + [anon_sym_COLON_COLON] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_as] = ACTIONS(401), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(479), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(481), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(483), + [anon_sym_static] = ACTIONS(485), + [anon_sym_union] = ACTIONS(481), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(487), + [anon_sym_move] = ACTIONS(489), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [58] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1579), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2791), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1743), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1574), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(241), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(58), [sym_block_comment] = STATE(58), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_LBRACK] = ACTIONS(368), - [anon_sym_LBRACE] = ACTIONS(368), - [anon_sym_PLUS] = ACTIONS(370), - [anon_sym_STAR] = ACTIONS(370), - [anon_sym_QMARK] = ACTIONS(368), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(370), - [anon_sym_SLASH] = ACTIONS(370), - [anon_sym_PERCENT] = ACTIONS(370), - [anon_sym_CARET] = ACTIONS(370), - [anon_sym_BANG] = ACTIONS(492), - [anon_sym_AMP] = ACTIONS(370), - [anon_sym_PIPE] = ACTIONS(370), - [anon_sym_AMP_AMP] = ACTIONS(368), - [anon_sym_PIPE_PIPE] = ACTIONS(368), - [anon_sym_LT_LT] = ACTIONS(370), - [anon_sym_GT_GT] = ACTIONS(370), - [anon_sym_PLUS_EQ] = ACTIONS(368), - [anon_sym_DASH_EQ] = ACTIONS(368), - [anon_sym_STAR_EQ] = ACTIONS(368), - [anon_sym_SLASH_EQ] = ACTIONS(368), - [anon_sym_PERCENT_EQ] = ACTIONS(368), - [anon_sym_CARET_EQ] = ACTIONS(368), - [anon_sym_AMP_EQ] = ACTIONS(368), - [anon_sym_PIPE_EQ] = ACTIONS(368), - [anon_sym_LT_LT_EQ] = ACTIONS(368), - [anon_sym_GT_GT_EQ] = ACTIONS(368), - [anon_sym_EQ] = ACTIONS(370), - [anon_sym_EQ_EQ] = ACTIONS(368), - [anon_sym_BANG_EQ] = ACTIONS(368), - [anon_sym_GT] = ACTIONS(370), - [anon_sym_LT] = ACTIONS(370), - [anon_sym_GT_EQ] = ACTIONS(368), - [anon_sym_LT_EQ] = ACTIONS(368), - [anon_sym_DOT] = ACTIONS(370), - [anon_sym_DOT_DOT] = ACTIONS(370), - [anon_sym_DOT_DOT_DOT] = ACTIONS(368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(368), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(370), - [anon_sym_as] = ACTIONS(370), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [sym_identifier] = ACTIONS(471), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_PLUS] = ACTIONS(379), + [anon_sym_STAR] = ACTIONS(475), + [anon_sym_QMARK] = ACTIONS(377), + [anon_sym_u8] = ACTIONS(473), + [anon_sym_i8] = ACTIONS(473), + [anon_sym_u16] = ACTIONS(473), + [anon_sym_i16] = ACTIONS(473), + [anon_sym_u32] = ACTIONS(473), + [anon_sym_i32] = ACTIONS(473), + [anon_sym_u64] = ACTIONS(473), + [anon_sym_i64] = ACTIONS(473), + [anon_sym_u128] = ACTIONS(473), + [anon_sym_i128] = ACTIONS(473), + [anon_sym_isize] = ACTIONS(473), + [anon_sym_usize] = ACTIONS(473), + [anon_sym_f32] = ACTIONS(473), + [anon_sym_f64] = ACTIONS(473), + [anon_sym_bool] = ACTIONS(473), + [anon_sym_str] = ACTIONS(473), + [anon_sym_char] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(379), + [anon_sym_PERCENT] = ACTIONS(379), + [anon_sym_CARET] = ACTIONS(379), + [anon_sym_BANG] = ACTIONS(475), + [anon_sym_AMP] = ACTIONS(511), + [anon_sym_PIPE] = ACTIONS(383), + [anon_sym_AMP_AMP] = ACTIONS(377), + [anon_sym_PIPE_PIPE] = ACTIONS(377), + [anon_sym_LT_LT] = ACTIONS(379), + [anon_sym_GT_GT] = ACTIONS(379), + [anon_sym_PLUS_EQ] = ACTIONS(377), + [anon_sym_DASH_EQ] = ACTIONS(377), + [anon_sym_STAR_EQ] = ACTIONS(377), + [anon_sym_SLASH_EQ] = ACTIONS(377), + [anon_sym_PERCENT_EQ] = ACTIONS(377), + [anon_sym_CARET_EQ] = ACTIONS(377), + [anon_sym_AMP_EQ] = ACTIONS(377), + [anon_sym_PIPE_EQ] = ACTIONS(377), + [anon_sym_LT_LT_EQ] = ACTIONS(377), + [anon_sym_GT_GT_EQ] = ACTIONS(377), + [anon_sym_EQ] = ACTIONS(379), + [anon_sym_EQ_EQ] = ACTIONS(377), + [anon_sym_BANG_EQ] = ACTIONS(377), + [anon_sym_GT] = ACTIONS(379), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_GT_EQ] = ACTIONS(377), + [anon_sym_LT_EQ] = ACTIONS(377), + [anon_sym_DOT] = ACTIONS(379), + [anon_sym_DOT_DOT] = ACTIONS(513), + [anon_sym_DOT_DOT_DOT] = ACTIONS(377), + [anon_sym_DOT_DOT_EQ] = ACTIONS(377), + [anon_sym_COLON_COLON] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_as] = ACTIONS(379), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(479), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(481), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(483), + [anon_sym_static] = ACTIONS(485), + [anon_sym_union] = ACTIONS(481), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(487), + [anon_sym_move] = ACTIONS(489), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [59] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1577), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2791), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1690), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1574), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(241), + [sym_label] = STATE(47), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(59), [sym_block_comment] = STATE(59), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_PLUS] = ACTIONS(374), - [anon_sym_STAR] = ACTIONS(492), - [anon_sym_QMARK] = ACTIONS(372), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(492), - [anon_sym_SLASH] = ACTIONS(374), - [anon_sym_PERCENT] = ACTIONS(374), - [anon_sym_CARET] = ACTIONS(374), - [anon_sym_BANG] = ACTIONS(492), - [anon_sym_AMP] = ACTIONS(506), - [anon_sym_PIPE] = ACTIONS(378), - [anon_sym_AMP_AMP] = ACTIONS(372), - [anon_sym_PIPE_PIPE] = ACTIONS(372), - [anon_sym_LT_LT] = ACTIONS(374), - [anon_sym_GT_GT] = ACTIONS(374), - [anon_sym_PLUS_EQ] = ACTIONS(372), - [anon_sym_DASH_EQ] = ACTIONS(372), - [anon_sym_STAR_EQ] = ACTIONS(372), - [anon_sym_SLASH_EQ] = ACTIONS(372), - [anon_sym_PERCENT_EQ] = ACTIONS(372), - [anon_sym_CARET_EQ] = ACTIONS(372), - [anon_sym_AMP_EQ] = ACTIONS(372), - [anon_sym_PIPE_EQ] = ACTIONS(372), - [anon_sym_LT_LT_EQ] = ACTIONS(372), - [anon_sym_GT_GT_EQ] = ACTIONS(372), - [anon_sym_EQ] = ACTIONS(374), - [anon_sym_EQ_EQ] = ACTIONS(372), - [anon_sym_BANG_EQ] = ACTIONS(372), - [anon_sym_GT] = ACTIONS(374), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_GT_EQ] = ACTIONS(372), - [anon_sym_LT_EQ] = ACTIONS(372), - [anon_sym_DOT] = ACTIONS(374), - [anon_sym_DOT_DOT] = ACTIONS(508), - [anon_sym_DOT_DOT_DOT] = ACTIONS(372), - [anon_sym_DOT_DOT_EQ] = ACTIONS(372), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(374), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [sym_identifier] = ACTIONS(471), + [anon_sym_LPAREN] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(393), + [anon_sym_PLUS] = ACTIONS(395), + [anon_sym_STAR] = ACTIONS(395), + [anon_sym_QMARK] = ACTIONS(393), + [anon_sym_u8] = ACTIONS(473), + [anon_sym_i8] = ACTIONS(473), + [anon_sym_u16] = ACTIONS(473), + [anon_sym_i16] = ACTIONS(473), + [anon_sym_u32] = ACTIONS(473), + [anon_sym_i32] = ACTIONS(473), + [anon_sym_u64] = ACTIONS(473), + [anon_sym_i64] = ACTIONS(473), + [anon_sym_u128] = ACTIONS(473), + [anon_sym_i128] = ACTIONS(473), + [anon_sym_isize] = ACTIONS(473), + [anon_sym_usize] = ACTIONS(473), + [anon_sym_f32] = ACTIONS(473), + [anon_sym_f64] = ACTIONS(473), + [anon_sym_bool] = ACTIONS(473), + [anon_sym_str] = ACTIONS(473), + [anon_sym_char] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(395), + [anon_sym_SLASH] = ACTIONS(395), + [anon_sym_PERCENT] = ACTIONS(395), + [anon_sym_CARET] = ACTIONS(395), + [anon_sym_BANG] = ACTIONS(475), + [anon_sym_AMP] = ACTIONS(395), + [anon_sym_PIPE] = ACTIONS(395), + [anon_sym_AMP_AMP] = ACTIONS(393), + [anon_sym_PIPE_PIPE] = ACTIONS(393), + [anon_sym_LT_LT] = ACTIONS(395), + [anon_sym_GT_GT] = ACTIONS(395), + [anon_sym_PLUS_EQ] = ACTIONS(393), + [anon_sym_DASH_EQ] = ACTIONS(393), + [anon_sym_STAR_EQ] = ACTIONS(393), + [anon_sym_SLASH_EQ] = ACTIONS(393), + [anon_sym_PERCENT_EQ] = ACTIONS(393), + [anon_sym_CARET_EQ] = ACTIONS(393), + [anon_sym_AMP_EQ] = ACTIONS(393), + [anon_sym_PIPE_EQ] = ACTIONS(393), + [anon_sym_LT_LT_EQ] = ACTIONS(393), + [anon_sym_GT_GT_EQ] = ACTIONS(393), + [anon_sym_EQ] = ACTIONS(395), + [anon_sym_EQ_EQ] = ACTIONS(393), + [anon_sym_BANG_EQ] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(395), + [anon_sym_LT] = ACTIONS(395), + [anon_sym_GT_EQ] = ACTIONS(393), + [anon_sym_LT_EQ] = ACTIONS(393), + [anon_sym_DOT] = ACTIONS(395), + [anon_sym_DOT_DOT] = ACTIONS(395), + [anon_sym_DOT_DOT_DOT] = ACTIONS(393), + [anon_sym_DOT_DOT_EQ] = ACTIONS(393), + [anon_sym_COLON_COLON] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(397), + [anon_sym_as] = ACTIONS(395), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(479), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(481), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(483), + [anon_sym_static] = ACTIONS(485), + [anon_sym_union] = ACTIONS(481), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(487), + [anon_sym_move] = ACTIONS(489), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [60] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1811), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2791), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1660), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1574), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(249), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(60), [sym_block_comment] = STATE(60), - [sym_identifier] = ACTIONS(456), + [sym_identifier] = ACTIONS(471), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(384), - [anon_sym_LBRACE] = ACTIONS(384), - [anon_sym_PLUS] = ACTIONS(386), - [anon_sym_STAR] = ACTIONS(386), - [anon_sym_QMARK] = ACTIONS(384), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(386), - [anon_sym_SLASH] = ACTIONS(386), - [anon_sym_PERCENT] = ACTIONS(386), - [anon_sym_CARET] = ACTIONS(386), - [anon_sym_BANG] = ACTIONS(460), - [anon_sym_AMP] = ACTIONS(386), - [anon_sym_PIPE] = ACTIONS(386), - [anon_sym_AMP_AMP] = ACTIONS(384), - [anon_sym_PIPE_PIPE] = ACTIONS(384), - [anon_sym_LT_LT] = ACTIONS(386), - [anon_sym_GT_GT] = ACTIONS(386), - [anon_sym_PLUS_EQ] = ACTIONS(384), - [anon_sym_DASH_EQ] = ACTIONS(384), - [anon_sym_STAR_EQ] = ACTIONS(384), - [anon_sym_SLASH_EQ] = ACTIONS(384), - [anon_sym_PERCENT_EQ] = ACTIONS(384), - [anon_sym_CARET_EQ] = ACTIONS(384), - [anon_sym_AMP_EQ] = ACTIONS(384), - [anon_sym_PIPE_EQ] = ACTIONS(384), - [anon_sym_LT_LT_EQ] = ACTIONS(384), - [anon_sym_GT_GT_EQ] = ACTIONS(384), - [anon_sym_EQ] = ACTIONS(386), - [anon_sym_EQ_EQ] = ACTIONS(384), - [anon_sym_BANG_EQ] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(386), - [anon_sym_LT] = ACTIONS(386), - [anon_sym_GT_EQ] = ACTIONS(384), - [anon_sym_LT_EQ] = ACTIONS(384), - [anon_sym_DOT] = ACTIONS(386), - [anon_sym_DOT_DOT] = ACTIONS(386), - [anon_sym_DOT_DOT_DOT] = ACTIONS(384), - [anon_sym_DOT_DOT_EQ] = ACTIONS(384), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(386), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(464), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(468), - [anon_sym_static] = ACTIONS(470), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(472), - [anon_sym_move] = ACTIONS(474), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_LBRACK] = ACTIONS(399), + [anon_sym_LBRACE] = ACTIONS(399), + [anon_sym_PLUS] = ACTIONS(401), + [anon_sym_STAR] = ACTIONS(401), + [anon_sym_QMARK] = ACTIONS(399), + [anon_sym_u8] = ACTIONS(473), + [anon_sym_i8] = ACTIONS(473), + [anon_sym_u16] = ACTIONS(473), + [anon_sym_i16] = ACTIONS(473), + [anon_sym_u32] = ACTIONS(473), + [anon_sym_i32] = ACTIONS(473), + [anon_sym_u64] = ACTIONS(473), + [anon_sym_i64] = ACTIONS(473), + [anon_sym_u128] = ACTIONS(473), + [anon_sym_i128] = ACTIONS(473), + [anon_sym_isize] = ACTIONS(473), + [anon_sym_usize] = ACTIONS(473), + [anon_sym_f32] = ACTIONS(473), + [anon_sym_f64] = ACTIONS(473), + [anon_sym_bool] = ACTIONS(473), + [anon_sym_str] = ACTIONS(473), + [anon_sym_char] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_PERCENT] = ACTIONS(401), + [anon_sym_CARET] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(497), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_PIPE] = ACTIONS(401), + [anon_sym_AMP_AMP] = ACTIONS(399), + [anon_sym_PIPE_PIPE] = ACTIONS(399), + [anon_sym_LT_LT] = ACTIONS(401), + [anon_sym_GT_GT] = ACTIONS(401), + [anon_sym_PLUS_EQ] = ACTIONS(399), + [anon_sym_DASH_EQ] = ACTIONS(399), + [anon_sym_STAR_EQ] = ACTIONS(399), + [anon_sym_SLASH_EQ] = ACTIONS(399), + [anon_sym_PERCENT_EQ] = ACTIONS(399), + [anon_sym_CARET_EQ] = ACTIONS(399), + [anon_sym_AMP_EQ] = ACTIONS(399), + [anon_sym_PIPE_EQ] = ACTIONS(399), + [anon_sym_LT_LT_EQ] = ACTIONS(399), + [anon_sym_GT_GT_EQ] = ACTIONS(399), + [anon_sym_EQ] = ACTIONS(401), + [anon_sym_EQ_EQ] = ACTIONS(399), + [anon_sym_BANG_EQ] = ACTIONS(399), + [anon_sym_GT] = ACTIONS(401), + [anon_sym_LT] = ACTIONS(401), + [anon_sym_GT_EQ] = ACTIONS(399), + [anon_sym_LT_EQ] = ACTIONS(399), + [anon_sym_DOT] = ACTIONS(401), + [anon_sym_DOT_DOT] = ACTIONS(401), + [anon_sym_DOT_DOT_DOT] = ACTIONS(399), + [anon_sym_DOT_DOT_EQ] = ACTIONS(399), + [anon_sym_COLON_COLON] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(401), + [anon_sym_as] = ACTIONS(401), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(499), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_default] = ACTIONS(481), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(503), + [anon_sym_static] = ACTIONS(505), + [anon_sym_union] = ACTIONS(481), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(507), + [anon_sym_move] = ACTIONS(509), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [61] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1722), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2791), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1608), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1574), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(249), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(61), [sym_block_comment] = STATE(61), - [sym_identifier] = ACTIONS(456), + [sym_identifier] = ACTIONS(471), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(368), - [anon_sym_LBRACE] = ACTIONS(368), - [anon_sym_PLUS] = ACTIONS(370), - [anon_sym_STAR] = ACTIONS(370), - [anon_sym_QMARK] = ACTIONS(368), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(370), - [anon_sym_SLASH] = ACTIONS(370), - [anon_sym_PERCENT] = ACTIONS(370), - [anon_sym_CARET] = ACTIONS(370), - [anon_sym_BANG] = ACTIONS(460), - [anon_sym_AMP] = ACTIONS(370), - [anon_sym_PIPE] = ACTIONS(370), - [anon_sym_AMP_AMP] = ACTIONS(368), - [anon_sym_PIPE_PIPE] = ACTIONS(368), - [anon_sym_LT_LT] = ACTIONS(370), - [anon_sym_GT_GT] = ACTIONS(370), - [anon_sym_PLUS_EQ] = ACTIONS(368), - [anon_sym_DASH_EQ] = ACTIONS(368), - [anon_sym_STAR_EQ] = ACTIONS(368), - [anon_sym_SLASH_EQ] = ACTIONS(368), - [anon_sym_PERCENT_EQ] = ACTIONS(368), - [anon_sym_CARET_EQ] = ACTIONS(368), - [anon_sym_AMP_EQ] = ACTIONS(368), - [anon_sym_PIPE_EQ] = ACTIONS(368), - [anon_sym_LT_LT_EQ] = ACTIONS(368), - [anon_sym_GT_GT_EQ] = ACTIONS(368), - [anon_sym_EQ] = ACTIONS(370), - [anon_sym_EQ_EQ] = ACTIONS(368), - [anon_sym_BANG_EQ] = ACTIONS(368), - [anon_sym_GT] = ACTIONS(370), - [anon_sym_LT] = ACTIONS(370), - [anon_sym_GT_EQ] = ACTIONS(368), - [anon_sym_LT_EQ] = ACTIONS(368), - [anon_sym_DOT] = ACTIONS(370), - [anon_sym_DOT_DOT] = ACTIONS(370), - [anon_sym_DOT_DOT_DOT] = ACTIONS(368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(368), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(370), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(464), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(468), - [anon_sym_static] = ACTIONS(470), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(472), - [anon_sym_move] = ACTIONS(474), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_PLUS] = ACTIONS(379), + [anon_sym_STAR] = ACTIONS(497), + [anon_sym_QMARK] = ACTIONS(377), + [anon_sym_u8] = ACTIONS(473), + [anon_sym_i8] = ACTIONS(473), + [anon_sym_u16] = ACTIONS(473), + [anon_sym_i16] = ACTIONS(473), + [anon_sym_u32] = ACTIONS(473), + [anon_sym_i32] = ACTIONS(473), + [anon_sym_u64] = ACTIONS(473), + [anon_sym_i64] = ACTIONS(473), + [anon_sym_u128] = ACTIONS(473), + [anon_sym_i128] = ACTIONS(473), + [anon_sym_isize] = ACTIONS(473), + [anon_sym_usize] = ACTIONS(473), + [anon_sym_f32] = ACTIONS(473), + [anon_sym_f64] = ACTIONS(473), + [anon_sym_bool] = ACTIONS(473), + [anon_sym_str] = ACTIONS(473), + [anon_sym_char] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_SLASH] = ACTIONS(379), + [anon_sym_PERCENT] = ACTIONS(379), + [anon_sym_CARET] = ACTIONS(379), + [anon_sym_BANG] = ACTIONS(497), + [anon_sym_AMP] = ACTIONS(515), + [anon_sym_PIPE] = ACTIONS(383), + [anon_sym_AMP_AMP] = ACTIONS(377), + [anon_sym_PIPE_PIPE] = ACTIONS(377), + [anon_sym_LT_LT] = ACTIONS(379), + [anon_sym_GT_GT] = ACTIONS(379), + [anon_sym_PLUS_EQ] = ACTIONS(377), + [anon_sym_DASH_EQ] = ACTIONS(377), + [anon_sym_STAR_EQ] = ACTIONS(377), + [anon_sym_SLASH_EQ] = ACTIONS(377), + [anon_sym_PERCENT_EQ] = ACTIONS(377), + [anon_sym_CARET_EQ] = ACTIONS(377), + [anon_sym_AMP_EQ] = ACTIONS(377), + [anon_sym_PIPE_EQ] = ACTIONS(377), + [anon_sym_LT_LT_EQ] = ACTIONS(377), + [anon_sym_GT_GT_EQ] = ACTIONS(377), + [anon_sym_EQ] = ACTIONS(379), + [anon_sym_EQ_EQ] = ACTIONS(377), + [anon_sym_BANG_EQ] = ACTIONS(377), + [anon_sym_GT] = ACTIONS(379), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_GT_EQ] = ACTIONS(377), + [anon_sym_LT_EQ] = ACTIONS(377), + [anon_sym_DOT] = ACTIONS(379), + [anon_sym_DOT_DOT] = ACTIONS(517), + [anon_sym_DOT_DOT_DOT] = ACTIONS(377), + [anon_sym_DOT_DOT_EQ] = ACTIONS(377), + [anon_sym_COLON_COLON] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_as] = ACTIONS(379), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(499), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_default] = ACTIONS(481), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(503), + [anon_sym_static] = ACTIONS(505), + [anon_sym_union] = ACTIONS(481), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(507), + [anon_sym_move] = ACTIONS(509), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [62] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1811), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2791), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1862), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1574), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(241), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(62), [sym_block_comment] = STATE(62), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(384), - [anon_sym_LBRACE] = ACTIONS(384), - [anon_sym_PLUS] = ACTIONS(386), - [anon_sym_STAR] = ACTIONS(386), - [anon_sym_QMARK] = ACTIONS(384), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(386), - [anon_sym_SLASH] = ACTIONS(386), - [anon_sym_PERCENT] = ACTIONS(386), - [anon_sym_CARET] = ACTIONS(386), - [anon_sym_BANG] = ACTIONS(460), - [anon_sym_AMP] = ACTIONS(386), - [anon_sym_PIPE] = ACTIONS(386), - [anon_sym_AMP_AMP] = ACTIONS(384), - [anon_sym_PIPE_PIPE] = ACTIONS(384), - [anon_sym_LT_LT] = ACTIONS(386), - [anon_sym_GT_GT] = ACTIONS(386), - [anon_sym_PLUS_EQ] = ACTIONS(384), - [anon_sym_DASH_EQ] = ACTIONS(384), - [anon_sym_STAR_EQ] = ACTIONS(384), - [anon_sym_SLASH_EQ] = ACTIONS(384), - [anon_sym_PERCENT_EQ] = ACTIONS(384), - [anon_sym_CARET_EQ] = ACTIONS(384), - [anon_sym_AMP_EQ] = ACTIONS(384), - [anon_sym_PIPE_EQ] = ACTIONS(384), - [anon_sym_LT_LT_EQ] = ACTIONS(384), - [anon_sym_GT_GT_EQ] = ACTIONS(384), - [anon_sym_EQ] = ACTIONS(386), - [anon_sym_EQ_EQ] = ACTIONS(384), - [anon_sym_BANG_EQ] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(386), - [anon_sym_LT] = ACTIONS(386), - [anon_sym_GT_EQ] = ACTIONS(384), - [anon_sym_LT_EQ] = ACTIONS(384), - [anon_sym_DOT] = ACTIONS(386), - [anon_sym_DOT_DOT] = ACTIONS(386), - [anon_sym_DOT_DOT_DOT] = ACTIONS(384), - [anon_sym_DOT_DOT_EQ] = ACTIONS(384), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(386), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(464), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(468), - [anon_sym_static] = ACTIONS(470), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(472), - [anon_sym_move] = ACTIONS(474), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [sym_identifier] = ACTIONS(471), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(373), + [anon_sym_LBRACE] = ACTIONS(373), + [anon_sym_PLUS] = ACTIONS(375), + [anon_sym_STAR] = ACTIONS(375), + [anon_sym_QMARK] = ACTIONS(373), + [anon_sym_u8] = ACTIONS(473), + [anon_sym_i8] = ACTIONS(473), + [anon_sym_u16] = ACTIONS(473), + [anon_sym_i16] = ACTIONS(473), + [anon_sym_u32] = ACTIONS(473), + [anon_sym_i32] = ACTIONS(473), + [anon_sym_u64] = ACTIONS(473), + [anon_sym_i64] = ACTIONS(473), + [anon_sym_u128] = ACTIONS(473), + [anon_sym_i128] = ACTIONS(473), + [anon_sym_isize] = ACTIONS(473), + [anon_sym_usize] = ACTIONS(473), + [anon_sym_f32] = ACTIONS(473), + [anon_sym_f64] = ACTIONS(473), + [anon_sym_bool] = ACTIONS(473), + [anon_sym_str] = ACTIONS(473), + [anon_sym_char] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(375), + [anon_sym_SLASH] = ACTIONS(375), + [anon_sym_PERCENT] = ACTIONS(375), + [anon_sym_CARET] = ACTIONS(375), + [anon_sym_BANG] = ACTIONS(475), + [anon_sym_AMP] = ACTIONS(375), + [anon_sym_PIPE] = ACTIONS(375), + [anon_sym_AMP_AMP] = ACTIONS(373), + [anon_sym_PIPE_PIPE] = ACTIONS(373), + [anon_sym_LT_LT] = ACTIONS(375), + [anon_sym_GT_GT] = ACTIONS(375), + [anon_sym_PLUS_EQ] = ACTIONS(373), + [anon_sym_DASH_EQ] = ACTIONS(373), + [anon_sym_STAR_EQ] = ACTIONS(373), + [anon_sym_SLASH_EQ] = ACTIONS(373), + [anon_sym_PERCENT_EQ] = ACTIONS(373), + [anon_sym_CARET_EQ] = ACTIONS(373), + [anon_sym_AMP_EQ] = ACTIONS(373), + [anon_sym_PIPE_EQ] = ACTIONS(373), + [anon_sym_LT_LT_EQ] = ACTIONS(373), + [anon_sym_GT_GT_EQ] = ACTIONS(373), + [anon_sym_EQ] = ACTIONS(375), + [anon_sym_EQ_EQ] = ACTIONS(373), + [anon_sym_BANG_EQ] = ACTIONS(373), + [anon_sym_GT] = ACTIONS(375), + [anon_sym_LT] = ACTIONS(375), + [anon_sym_GT_EQ] = ACTIONS(373), + [anon_sym_LT_EQ] = ACTIONS(373), + [anon_sym_DOT] = ACTIONS(375), + [anon_sym_DOT_DOT] = ACTIONS(375), + [anon_sym_DOT_DOT_DOT] = ACTIONS(373), + [anon_sym_DOT_DOT_EQ] = ACTIONS(373), + [anon_sym_COLON_COLON] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_as] = ACTIONS(375), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(479), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(481), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(483), + [anon_sym_static] = ACTIONS(485), + [anon_sym_union] = ACTIONS(481), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(487), + [anon_sym_move] = ACTIONS(489), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [63] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1627), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2791), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1648), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1574), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(249), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(63), [sym_block_comment] = STATE(63), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(384), - [anon_sym_LBRACE] = ACTIONS(384), - [anon_sym_PLUS] = ACTIONS(386), - [anon_sym_STAR] = ACTIONS(386), - [anon_sym_QMARK] = ACTIONS(384), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(386), - [anon_sym_SLASH] = ACTIONS(386), - [anon_sym_PERCENT] = ACTIONS(386), - [anon_sym_CARET] = ACTIONS(386), - [anon_sym_BANG] = ACTIONS(492), - [anon_sym_AMP] = ACTIONS(386), - [anon_sym_PIPE] = ACTIONS(386), - [anon_sym_AMP_AMP] = ACTIONS(384), - [anon_sym_PIPE_PIPE] = ACTIONS(384), - [anon_sym_LT_LT] = ACTIONS(386), - [anon_sym_GT_GT] = ACTIONS(386), - [anon_sym_PLUS_EQ] = ACTIONS(384), - [anon_sym_DASH_EQ] = ACTIONS(384), - [anon_sym_STAR_EQ] = ACTIONS(384), - [anon_sym_SLASH_EQ] = ACTIONS(384), - [anon_sym_PERCENT_EQ] = ACTIONS(384), - [anon_sym_CARET_EQ] = ACTIONS(384), - [anon_sym_AMP_EQ] = ACTIONS(384), - [anon_sym_PIPE_EQ] = ACTIONS(384), - [anon_sym_LT_LT_EQ] = ACTIONS(384), - [anon_sym_GT_GT_EQ] = ACTIONS(384), - [anon_sym_EQ] = ACTIONS(386), - [anon_sym_EQ_EQ] = ACTIONS(384), - [anon_sym_BANG_EQ] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(386), - [anon_sym_LT] = ACTIONS(386), - [anon_sym_GT_EQ] = ACTIONS(384), - [anon_sym_LT_EQ] = ACTIONS(384), - [anon_sym_DOT] = ACTIONS(386), - [anon_sym_DOT_DOT] = ACTIONS(386), - [anon_sym_DOT_DOT_DOT] = ACTIONS(384), - [anon_sym_DOT_DOT_EQ] = ACTIONS(384), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(386), - [anon_sym_as] = ACTIONS(386), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [sym_identifier] = ACTIONS(471), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(373), + [anon_sym_LBRACE] = ACTIONS(373), + [anon_sym_PLUS] = ACTIONS(375), + [anon_sym_STAR] = ACTIONS(375), + [anon_sym_QMARK] = ACTIONS(373), + [anon_sym_u8] = ACTIONS(473), + [anon_sym_i8] = ACTIONS(473), + [anon_sym_u16] = ACTIONS(473), + [anon_sym_i16] = ACTIONS(473), + [anon_sym_u32] = ACTIONS(473), + [anon_sym_i32] = ACTIONS(473), + [anon_sym_u64] = ACTIONS(473), + [anon_sym_i64] = ACTIONS(473), + [anon_sym_u128] = ACTIONS(473), + [anon_sym_i128] = ACTIONS(473), + [anon_sym_isize] = ACTIONS(473), + [anon_sym_usize] = ACTIONS(473), + [anon_sym_f32] = ACTIONS(473), + [anon_sym_f64] = ACTIONS(473), + [anon_sym_bool] = ACTIONS(473), + [anon_sym_str] = ACTIONS(473), + [anon_sym_char] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(375), + [anon_sym_SLASH] = ACTIONS(375), + [anon_sym_PERCENT] = ACTIONS(375), + [anon_sym_CARET] = ACTIONS(375), + [anon_sym_BANG] = ACTIONS(497), + [anon_sym_AMP] = ACTIONS(375), + [anon_sym_PIPE] = ACTIONS(375), + [anon_sym_AMP_AMP] = ACTIONS(373), + [anon_sym_PIPE_PIPE] = ACTIONS(373), + [anon_sym_LT_LT] = ACTIONS(375), + [anon_sym_GT_GT] = ACTIONS(375), + [anon_sym_PLUS_EQ] = ACTIONS(373), + [anon_sym_DASH_EQ] = ACTIONS(373), + [anon_sym_STAR_EQ] = ACTIONS(373), + [anon_sym_SLASH_EQ] = ACTIONS(373), + [anon_sym_PERCENT_EQ] = ACTIONS(373), + [anon_sym_CARET_EQ] = ACTIONS(373), + [anon_sym_AMP_EQ] = ACTIONS(373), + [anon_sym_PIPE_EQ] = ACTIONS(373), + [anon_sym_LT_LT_EQ] = ACTIONS(373), + [anon_sym_GT_GT_EQ] = ACTIONS(373), + [anon_sym_EQ] = ACTIONS(375), + [anon_sym_EQ_EQ] = ACTIONS(373), + [anon_sym_BANG_EQ] = ACTIONS(373), + [anon_sym_GT] = ACTIONS(375), + [anon_sym_LT] = ACTIONS(375), + [anon_sym_GT_EQ] = ACTIONS(373), + [anon_sym_LT_EQ] = ACTIONS(373), + [anon_sym_DOT] = ACTIONS(375), + [anon_sym_DOT_DOT] = ACTIONS(375), + [anon_sym_DOT_DOT_DOT] = ACTIONS(373), + [anon_sym_DOT_DOT_EQ] = ACTIONS(373), + [anon_sym_COLON_COLON] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(375), + [anon_sym_as] = ACTIONS(375), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(499), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_default] = ACTIONS(481), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(503), + [anon_sym_static] = ACTIONS(505), + [anon_sym_union] = ACTIONS(481), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(507), + [anon_sym_move] = ACTIONS(509), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [64] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1601), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(52), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2791), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1660), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1574), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(249), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(64), [sym_block_comment] = STATE(64), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(388), - [anon_sym_LBRACK] = ACTIONS(388), - [anon_sym_LBRACE] = ACTIONS(388), - [anon_sym_PLUS] = ACTIONS(390), - [anon_sym_STAR] = ACTIONS(390), - [anon_sym_QMARK] = ACTIONS(388), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(390), - [anon_sym_SLASH] = ACTIONS(390), - [anon_sym_PERCENT] = ACTIONS(390), - [anon_sym_CARET] = ACTIONS(390), - [anon_sym_BANG] = ACTIONS(492), - [anon_sym_AMP] = ACTIONS(390), - [anon_sym_PIPE] = ACTIONS(390), - [anon_sym_AMP_AMP] = ACTIONS(388), - [anon_sym_PIPE_PIPE] = ACTIONS(388), - [anon_sym_LT_LT] = ACTIONS(390), - [anon_sym_GT_GT] = ACTIONS(390), - [anon_sym_PLUS_EQ] = ACTIONS(388), - [anon_sym_DASH_EQ] = ACTIONS(388), - [anon_sym_STAR_EQ] = ACTIONS(388), - [anon_sym_SLASH_EQ] = ACTIONS(388), - [anon_sym_PERCENT_EQ] = ACTIONS(388), - [anon_sym_CARET_EQ] = ACTIONS(388), - [anon_sym_AMP_EQ] = ACTIONS(388), - [anon_sym_PIPE_EQ] = ACTIONS(388), - [anon_sym_LT_LT_EQ] = ACTIONS(388), - [anon_sym_GT_GT_EQ] = ACTIONS(388), - [anon_sym_EQ] = ACTIONS(390), - [anon_sym_EQ_EQ] = ACTIONS(388), - [anon_sym_BANG_EQ] = ACTIONS(388), - [anon_sym_GT] = ACTIONS(390), - [anon_sym_LT] = ACTIONS(390), - [anon_sym_GT_EQ] = ACTIONS(388), - [anon_sym_LT_EQ] = ACTIONS(388), - [anon_sym_DOT] = ACTIONS(390), - [anon_sym_DOT_DOT] = ACTIONS(390), - [anon_sym_DOT_DOT_DOT] = ACTIONS(388), - [anon_sym_DOT_DOT_EQ] = ACTIONS(388), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(390), - [anon_sym_as] = ACTIONS(390), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [sym_identifier] = ACTIONS(471), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_LBRACK] = ACTIONS(399), + [anon_sym_LBRACE] = ACTIONS(399), + [anon_sym_PLUS] = ACTIONS(401), + [anon_sym_STAR] = ACTIONS(401), + [anon_sym_QMARK] = ACTIONS(399), + [anon_sym_u8] = ACTIONS(473), + [anon_sym_i8] = ACTIONS(473), + [anon_sym_u16] = ACTIONS(473), + [anon_sym_i16] = ACTIONS(473), + [anon_sym_u32] = ACTIONS(473), + [anon_sym_i32] = ACTIONS(473), + [anon_sym_u64] = ACTIONS(473), + [anon_sym_i64] = ACTIONS(473), + [anon_sym_u128] = ACTIONS(473), + [anon_sym_i128] = ACTIONS(473), + [anon_sym_isize] = ACTIONS(473), + [anon_sym_usize] = ACTIONS(473), + [anon_sym_f32] = ACTIONS(473), + [anon_sym_f64] = ACTIONS(473), + [anon_sym_bool] = ACTIONS(473), + [anon_sym_str] = ACTIONS(473), + [anon_sym_char] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_PERCENT] = ACTIONS(401), + [anon_sym_CARET] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(497), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_PIPE] = ACTIONS(401), + [anon_sym_AMP_AMP] = ACTIONS(399), + [anon_sym_PIPE_PIPE] = ACTIONS(399), + [anon_sym_LT_LT] = ACTIONS(401), + [anon_sym_GT_GT] = ACTIONS(401), + [anon_sym_PLUS_EQ] = ACTIONS(399), + [anon_sym_DASH_EQ] = ACTIONS(399), + [anon_sym_STAR_EQ] = ACTIONS(399), + [anon_sym_SLASH_EQ] = ACTIONS(399), + [anon_sym_PERCENT_EQ] = ACTIONS(399), + [anon_sym_CARET_EQ] = ACTIONS(399), + [anon_sym_AMP_EQ] = ACTIONS(399), + [anon_sym_PIPE_EQ] = ACTIONS(399), + [anon_sym_LT_LT_EQ] = ACTIONS(399), + [anon_sym_GT_GT_EQ] = ACTIONS(399), + [anon_sym_EQ] = ACTIONS(401), + [anon_sym_EQ_EQ] = ACTIONS(399), + [anon_sym_BANG_EQ] = ACTIONS(399), + [anon_sym_GT] = ACTIONS(401), + [anon_sym_LT] = ACTIONS(401), + [anon_sym_GT_EQ] = ACTIONS(399), + [anon_sym_LT_EQ] = ACTIONS(399), + [anon_sym_DOT] = ACTIONS(401), + [anon_sym_DOT_DOT] = ACTIONS(401), + [anon_sym_DOT_DOT_DOT] = ACTIONS(399), + [anon_sym_DOT_DOT_EQ] = ACTIONS(399), + [anon_sym_COLON_COLON] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(401), + [anon_sym_as] = ACTIONS(401), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(499), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_default] = ACTIONS(481), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(503), + [anon_sym_static] = ACTIONS(505), + [anon_sym_union] = ACTIONS(481), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(507), + [anon_sym_move] = ACTIONS(509), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [65] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1812), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(44), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2791), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1648), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1574), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(249), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(65), [sym_block_comment] = STATE(65), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(388), - [anon_sym_LBRACK] = ACTIONS(388), - [anon_sym_LBRACE] = ACTIONS(388), - [anon_sym_PLUS] = ACTIONS(390), - [anon_sym_STAR] = ACTIONS(390), - [anon_sym_QMARK] = ACTIONS(388), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(390), - [anon_sym_SLASH] = ACTIONS(390), - [anon_sym_PERCENT] = ACTIONS(390), - [anon_sym_CARET] = ACTIONS(390), - [anon_sym_BANG] = ACTIONS(460), - [anon_sym_AMP] = ACTIONS(390), - [anon_sym_PIPE] = ACTIONS(390), - [anon_sym_AMP_AMP] = ACTIONS(388), - [anon_sym_PIPE_PIPE] = ACTIONS(388), - [anon_sym_LT_LT] = ACTIONS(390), - [anon_sym_GT_GT] = ACTIONS(390), - [anon_sym_PLUS_EQ] = ACTIONS(388), - [anon_sym_DASH_EQ] = ACTIONS(388), - [anon_sym_STAR_EQ] = ACTIONS(388), - [anon_sym_SLASH_EQ] = ACTIONS(388), - [anon_sym_PERCENT_EQ] = ACTIONS(388), - [anon_sym_CARET_EQ] = ACTIONS(388), - [anon_sym_AMP_EQ] = ACTIONS(388), - [anon_sym_PIPE_EQ] = ACTIONS(388), - [anon_sym_LT_LT_EQ] = ACTIONS(388), - [anon_sym_GT_GT_EQ] = ACTIONS(388), - [anon_sym_EQ] = ACTIONS(390), - [anon_sym_EQ_EQ] = ACTIONS(388), - [anon_sym_BANG_EQ] = ACTIONS(388), - [anon_sym_GT] = ACTIONS(390), - [anon_sym_LT] = ACTIONS(390), - [anon_sym_GT_EQ] = ACTIONS(388), - [anon_sym_LT_EQ] = ACTIONS(388), - [anon_sym_DOT] = ACTIONS(390), - [anon_sym_DOT_DOT] = ACTIONS(390), - [anon_sym_DOT_DOT_DOT] = ACTIONS(388), - [anon_sym_DOT_DOT_EQ] = ACTIONS(388), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(392), - [anon_sym_as] = ACTIONS(390), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(464), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(468), - [anon_sym_static] = ACTIONS(470), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(472), - [anon_sym_move] = ACTIONS(474), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [sym_identifier] = ACTIONS(471), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(373), + [anon_sym_LBRACE] = ACTIONS(373), + [anon_sym_PLUS] = ACTIONS(375), + [anon_sym_STAR] = ACTIONS(375), + [anon_sym_QMARK] = ACTIONS(373), + [anon_sym_u8] = ACTIONS(473), + [anon_sym_i8] = ACTIONS(473), + [anon_sym_u16] = ACTIONS(473), + [anon_sym_i16] = ACTIONS(473), + [anon_sym_u32] = ACTIONS(473), + [anon_sym_i32] = ACTIONS(473), + [anon_sym_u64] = ACTIONS(473), + [anon_sym_i64] = ACTIONS(473), + [anon_sym_u128] = ACTIONS(473), + [anon_sym_i128] = ACTIONS(473), + [anon_sym_isize] = ACTIONS(473), + [anon_sym_usize] = ACTIONS(473), + [anon_sym_f32] = ACTIONS(473), + [anon_sym_f64] = ACTIONS(473), + [anon_sym_bool] = ACTIONS(473), + [anon_sym_str] = ACTIONS(473), + [anon_sym_char] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(375), + [anon_sym_SLASH] = ACTIONS(375), + [anon_sym_PERCENT] = ACTIONS(375), + [anon_sym_CARET] = ACTIONS(375), + [anon_sym_BANG] = ACTIONS(497), + [anon_sym_AMP] = ACTIONS(375), + [anon_sym_PIPE] = ACTIONS(375), + [anon_sym_AMP_AMP] = ACTIONS(373), + [anon_sym_PIPE_PIPE] = ACTIONS(373), + [anon_sym_LT_LT] = ACTIONS(375), + [anon_sym_GT_GT] = ACTIONS(375), + [anon_sym_PLUS_EQ] = ACTIONS(373), + [anon_sym_DASH_EQ] = ACTIONS(373), + [anon_sym_STAR_EQ] = ACTIONS(373), + [anon_sym_SLASH_EQ] = ACTIONS(373), + [anon_sym_PERCENT_EQ] = ACTIONS(373), + [anon_sym_CARET_EQ] = ACTIONS(373), + [anon_sym_AMP_EQ] = ACTIONS(373), + [anon_sym_PIPE_EQ] = ACTIONS(373), + [anon_sym_LT_LT_EQ] = ACTIONS(373), + [anon_sym_GT_GT_EQ] = ACTIONS(373), + [anon_sym_EQ] = ACTIONS(375), + [anon_sym_EQ_EQ] = ACTIONS(373), + [anon_sym_BANG_EQ] = ACTIONS(373), + [anon_sym_GT] = ACTIONS(375), + [anon_sym_LT] = ACTIONS(375), + [anon_sym_GT_EQ] = ACTIONS(373), + [anon_sym_LT_EQ] = ACTIONS(373), + [anon_sym_DOT] = ACTIONS(375), + [anon_sym_DOT_DOT] = ACTIONS(375), + [anon_sym_DOT_DOT_DOT] = ACTIONS(373), + [anon_sym_DOT_DOT_EQ] = ACTIONS(373), + [anon_sym_COLON_COLON] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(375), + [anon_sym_as] = ACTIONS(375), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(499), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_default] = ACTIONS(481), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(503), + [anon_sym_static] = ACTIONS(505), + [anon_sym_union] = ACTIONS(481), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(507), + [anon_sym_move] = ACTIONS(509), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [66] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1814), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2791), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1664), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1574), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(249), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(66), [sym_block_comment] = STATE(66), - [sym_identifier] = ACTIONS(456), + [sym_identifier] = ACTIONS(471), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_PLUS] = ACTIONS(396), - [anon_sym_STAR] = ACTIONS(460), - [anon_sym_QMARK] = ACTIONS(394), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(460), - [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_PERCENT] = ACTIONS(396), - [anon_sym_CARET] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(460), - [anon_sym_AMP] = ACTIONS(510), - [anon_sym_PIPE] = ACTIONS(378), - [anon_sym_AMP_AMP] = ACTIONS(394), - [anon_sym_PIPE_PIPE] = ACTIONS(394), - [anon_sym_LT_LT] = ACTIONS(396), - [anon_sym_GT_GT] = 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_CARET_EQ] = ACTIONS(394), - [anon_sym_AMP_EQ] = ACTIONS(394), - [anon_sym_PIPE_EQ] = ACTIONS(394), - [anon_sym_LT_LT_EQ] = ACTIONS(394), - [anon_sym_GT_GT_EQ] = ACTIONS(394), - [anon_sym_EQ] = ACTIONS(396), - [anon_sym_EQ_EQ] = ACTIONS(394), - [anon_sym_BANG_EQ] = ACTIONS(394), - [anon_sym_GT] = ACTIONS(396), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_GT_EQ] = ACTIONS(394), - [anon_sym_LT_EQ] = ACTIONS(394), - [anon_sym_DOT] = ACTIONS(396), - [anon_sym_DOT_DOT] = ACTIONS(512), - [anon_sym_DOT_DOT_DOT] = ACTIONS(394), - [anon_sym_DOT_DOT_EQ] = ACTIONS(394), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(396), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(464), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(468), - [anon_sym_static] = ACTIONS(470), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(472), - [anon_sym_move] = ACTIONS(474), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_PLUS] = ACTIONS(391), + [anon_sym_STAR] = ACTIONS(497), + [anon_sym_QMARK] = ACTIONS(389), + [anon_sym_u8] = ACTIONS(473), + [anon_sym_i8] = ACTIONS(473), + [anon_sym_u16] = ACTIONS(473), + [anon_sym_i16] = ACTIONS(473), + [anon_sym_u32] = ACTIONS(473), + [anon_sym_i32] = ACTIONS(473), + [anon_sym_u64] = ACTIONS(473), + [anon_sym_i64] = ACTIONS(473), + [anon_sym_u128] = ACTIONS(473), + [anon_sym_i128] = ACTIONS(473), + [anon_sym_isize] = ACTIONS(473), + [anon_sym_usize] = ACTIONS(473), + [anon_sym_f32] = ACTIONS(473), + [anon_sym_f64] = ACTIONS(473), + [anon_sym_bool] = ACTIONS(473), + [anon_sym_str] = ACTIONS(473), + [anon_sym_char] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_SLASH] = ACTIONS(391), + [anon_sym_PERCENT] = ACTIONS(391), + [anon_sym_CARET] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(497), + [anon_sym_AMP] = ACTIONS(515), + [anon_sym_PIPE] = ACTIONS(383), + [anon_sym_AMP_AMP] = ACTIONS(389), + [anon_sym_PIPE_PIPE] = ACTIONS(389), + [anon_sym_LT_LT] = ACTIONS(391), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_PLUS_EQ] = ACTIONS(389), + [anon_sym_DASH_EQ] = ACTIONS(389), + [anon_sym_STAR_EQ] = ACTIONS(389), + [anon_sym_SLASH_EQ] = ACTIONS(389), + [anon_sym_PERCENT_EQ] = ACTIONS(389), + [anon_sym_CARET_EQ] = ACTIONS(389), + [anon_sym_AMP_EQ] = ACTIONS(389), + [anon_sym_PIPE_EQ] = ACTIONS(389), + [anon_sym_LT_LT_EQ] = ACTIONS(389), + [anon_sym_GT_GT_EQ] = ACTIONS(389), + [anon_sym_EQ] = ACTIONS(391), + [anon_sym_EQ_EQ] = ACTIONS(389), + [anon_sym_BANG_EQ] = ACTIONS(389), + [anon_sym_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_GT_EQ] = ACTIONS(389), + [anon_sym_LT_EQ] = ACTIONS(389), + [anon_sym_DOT] = ACTIONS(391), + [anon_sym_DOT_DOT] = ACTIONS(517), + [anon_sym_DOT_DOT_DOT] = ACTIONS(389), + [anon_sym_DOT_DOT_EQ] = ACTIONS(389), + [anon_sym_COLON_COLON] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_as] = ACTIONS(391), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(499), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_default] = ACTIONS(481), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(503), + [anon_sym_static] = ACTIONS(505), + [anon_sym_union] = ACTIONS(481), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(507), + [anon_sym_move] = ACTIONS(509), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [67] = { - [sym__token_pattern] = STATE(149), - [sym_token_tree_pattern] = STATE(166), - [sym_token_binding_pattern] = STATE(166), - [sym_token_repetition_pattern] = STATE(166), - [sym__literal] = STATE(166), - [sym_string_literal] = STATE(156), - [sym_raw_string_literal] = STATE(156), - [sym_boolean_literal] = STATE(156), + [sym__token_pattern] = STATE(160), + [sym_token_tree_pattern] = STATE(173), + [sym_token_binding_pattern] = STATE(173), + [sym_token_repetition_pattern] = STATE(173), + [sym__literal] = STATE(173), + [sym_string_literal] = STATE(166), + [sym_raw_string_literal] = STATE(166), + [sym_boolean_literal] = STATE(166), [sym_line_comment] = STATE(67), [sym_block_comment] = STATE(67), - [aux_sym_token_tree_pattern_repeat1] = STATE(67), - [aux_sym__non_special_token_repeat1] = STATE(135), - [sym_identifier] = ACTIONS(514), - [anon_sym_SEMI] = ACTIONS(517), - [anon_sym_LPAREN] = ACTIONS(520), - [anon_sym_RPAREN] = ACTIONS(523), - [anon_sym_LBRACK] = ACTIONS(525), - [anon_sym_RBRACK] = ACTIONS(523), - [anon_sym_LBRACE] = ACTIONS(528), - [anon_sym_RBRACE] = ACTIONS(523), - [anon_sym_EQ_GT] = ACTIONS(517), - [anon_sym_COLON] = ACTIONS(531), - [anon_sym_DOLLAR] = ACTIONS(534), - [anon_sym_PLUS] = ACTIONS(531), - [anon_sym_STAR] = ACTIONS(531), - [anon_sym_QMARK] = ACTIONS(517), - [anon_sym_u8] = ACTIONS(514), - [anon_sym_i8] = ACTIONS(514), - [anon_sym_u16] = ACTIONS(514), - [anon_sym_i16] = ACTIONS(514), - [anon_sym_u32] = ACTIONS(514), - [anon_sym_i32] = ACTIONS(514), - [anon_sym_u64] = ACTIONS(514), - [anon_sym_i64] = ACTIONS(514), - [anon_sym_u128] = ACTIONS(514), - [anon_sym_i128] = ACTIONS(514), - [anon_sym_isize] = ACTIONS(514), - [anon_sym_usize] = ACTIONS(514), - [anon_sym_f32] = ACTIONS(514), - [anon_sym_f64] = ACTIONS(514), - [anon_sym_bool] = ACTIONS(514), - [anon_sym_str] = ACTIONS(514), - [anon_sym_char] = ACTIONS(514), - [anon_sym_DASH] = ACTIONS(531), - [anon_sym_SLASH] = ACTIONS(531), - [anon_sym_PERCENT] = ACTIONS(531), - [anon_sym_CARET] = ACTIONS(531), - [anon_sym_BANG] = ACTIONS(531), - [anon_sym_AMP] = ACTIONS(531), - [anon_sym_PIPE] = ACTIONS(531), - [anon_sym_AMP_AMP] = ACTIONS(517), - [anon_sym_PIPE_PIPE] = ACTIONS(517), - [anon_sym_LT_LT] = ACTIONS(531), - [anon_sym_GT_GT] = ACTIONS(531), - [anon_sym_PLUS_EQ] = ACTIONS(517), - [anon_sym_DASH_EQ] = ACTIONS(517), - [anon_sym_STAR_EQ] = ACTIONS(517), - [anon_sym_SLASH_EQ] = ACTIONS(517), - [anon_sym_PERCENT_EQ] = ACTIONS(517), - [anon_sym_CARET_EQ] = ACTIONS(517), - [anon_sym_AMP_EQ] = ACTIONS(517), - [anon_sym_PIPE_EQ] = ACTIONS(517), - [anon_sym_LT_LT_EQ] = ACTIONS(517), - [anon_sym_GT_GT_EQ] = ACTIONS(517), - [anon_sym_EQ] = ACTIONS(531), - [anon_sym_EQ_EQ] = ACTIONS(517), - [anon_sym_BANG_EQ] = ACTIONS(517), - [anon_sym_GT] = ACTIONS(531), - [anon_sym_LT] = ACTIONS(531), - [anon_sym_GT_EQ] = ACTIONS(517), - [anon_sym_LT_EQ] = ACTIONS(517), - [anon_sym_AT] = ACTIONS(517), - [anon_sym__] = ACTIONS(531), - [anon_sym_DOT] = ACTIONS(531), - [anon_sym_DOT_DOT] = ACTIONS(531), - [anon_sym_DOT_DOT_DOT] = ACTIONS(517), - [anon_sym_DOT_DOT_EQ] = ACTIONS(517), - [anon_sym_COMMA] = ACTIONS(517), - [anon_sym_COLON_COLON] = ACTIONS(517), - [anon_sym_DASH_GT] = ACTIONS(517), - [anon_sym_POUND] = ACTIONS(517), - [anon_sym_SQUOTE] = ACTIONS(514), - [anon_sym_as] = ACTIONS(514), - [anon_sym_async] = ACTIONS(514), - [anon_sym_await] = ACTIONS(514), - [anon_sym_break] = ACTIONS(514), - [anon_sym_const] = ACTIONS(514), - [anon_sym_continue] = ACTIONS(514), - [anon_sym_default] = ACTIONS(514), - [anon_sym_enum] = ACTIONS(514), - [anon_sym_fn] = ACTIONS(514), - [anon_sym_for] = ACTIONS(514), - [anon_sym_if] = ACTIONS(514), - [anon_sym_impl] = ACTIONS(514), - [anon_sym_let] = ACTIONS(514), - [anon_sym_loop] = ACTIONS(514), - [anon_sym_match] = ACTIONS(514), - [anon_sym_mod] = ACTIONS(514), - [anon_sym_pub] = ACTIONS(514), - [anon_sym_return] = ACTIONS(514), - [anon_sym_static] = ACTIONS(514), - [anon_sym_struct] = ACTIONS(514), - [anon_sym_trait] = ACTIONS(514), - [anon_sym_type] = ACTIONS(514), - [anon_sym_union] = ACTIONS(514), - [anon_sym_unsafe] = ACTIONS(514), - [anon_sym_use] = ACTIONS(514), - [anon_sym_where] = ACTIONS(514), - [anon_sym_while] = ACTIONS(514), - [sym_mutable_specifier] = ACTIONS(514), - [sym_integer_literal] = ACTIONS(537), - [aux_sym_string_literal_token1] = ACTIONS(540), - [sym_char_literal] = ACTIONS(537), - [anon_sym_true] = ACTIONS(543), - [anon_sym_false] = ACTIONS(543), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(514), - [sym_super] = ACTIONS(514), - [sym_crate] = ACTIONS(514), - [sym_metavariable] = ACTIONS(546), - [sym__raw_string_literal_start] = ACTIONS(549), - [sym_float_literal] = ACTIONS(537), + [aux_sym_macro_def_args_repeat1] = STATE(67), + [aux_sym__non_special_token_repeat1] = STATE(142), + [sym_identifier] = ACTIONS(519), + [anon_sym_SEMI] = ACTIONS(522), + [anon_sym_LPAREN] = ACTIONS(525), + [anon_sym_RPAREN] = ACTIONS(528), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_RBRACK] = ACTIONS(528), + [anon_sym_LBRACE] = ACTIONS(533), + [anon_sym_RBRACE] = ACTIONS(528), + [anon_sym_COMMA] = ACTIONS(522), + [anon_sym_EQ_GT] = ACTIONS(522), + [anon_sym_COLON] = ACTIONS(536), + [anon_sym_DOLLAR] = ACTIONS(539), + [anon_sym_PLUS] = ACTIONS(536), + [anon_sym_STAR] = ACTIONS(536), + [anon_sym_QMARK] = ACTIONS(522), + [anon_sym_u8] = ACTIONS(519), + [anon_sym_i8] = ACTIONS(519), + [anon_sym_u16] = ACTIONS(519), + [anon_sym_i16] = ACTIONS(519), + [anon_sym_u32] = ACTIONS(519), + [anon_sym_i32] = ACTIONS(519), + [anon_sym_u64] = ACTIONS(519), + [anon_sym_i64] = ACTIONS(519), + [anon_sym_u128] = ACTIONS(519), + [anon_sym_i128] = ACTIONS(519), + [anon_sym_isize] = ACTIONS(519), + [anon_sym_usize] = ACTIONS(519), + [anon_sym_f32] = ACTIONS(519), + [anon_sym_f64] = ACTIONS(519), + [anon_sym_bool] = ACTIONS(519), + [anon_sym_str] = ACTIONS(519), + [anon_sym_char] = ACTIONS(519), + [anon_sym_DASH] = ACTIONS(536), + [anon_sym_SLASH] = ACTIONS(536), + [anon_sym_PERCENT] = ACTIONS(536), + [anon_sym_CARET] = ACTIONS(536), + [anon_sym_BANG] = ACTIONS(536), + [anon_sym_AMP] = ACTIONS(536), + [anon_sym_PIPE] = ACTIONS(536), + [anon_sym_AMP_AMP] = ACTIONS(522), + [anon_sym_PIPE_PIPE] = ACTIONS(522), + [anon_sym_LT_LT] = ACTIONS(536), + [anon_sym_GT_GT] = ACTIONS(536), + [anon_sym_PLUS_EQ] = ACTIONS(522), + [anon_sym_DASH_EQ] = ACTIONS(522), + [anon_sym_STAR_EQ] = ACTIONS(522), + [anon_sym_SLASH_EQ] = ACTIONS(522), + [anon_sym_PERCENT_EQ] = ACTIONS(522), + [anon_sym_CARET_EQ] = ACTIONS(522), + [anon_sym_AMP_EQ] = ACTIONS(522), + [anon_sym_PIPE_EQ] = ACTIONS(522), + [anon_sym_LT_LT_EQ] = ACTIONS(522), + [anon_sym_GT_GT_EQ] = ACTIONS(522), + [anon_sym_EQ] = ACTIONS(536), + [anon_sym_EQ_EQ] = ACTIONS(522), + [anon_sym_BANG_EQ] = ACTIONS(522), + [anon_sym_GT] = ACTIONS(536), + [anon_sym_LT] = ACTIONS(536), + [anon_sym_GT_EQ] = ACTIONS(522), + [anon_sym_LT_EQ] = ACTIONS(522), + [anon_sym_AT] = ACTIONS(522), + [anon_sym__] = ACTIONS(536), + [anon_sym_DOT] = ACTIONS(536), + [anon_sym_DOT_DOT] = ACTIONS(536), + [anon_sym_DOT_DOT_DOT] = ACTIONS(522), + [anon_sym_DOT_DOT_EQ] = ACTIONS(522), + [anon_sym_COLON_COLON] = ACTIONS(522), + [anon_sym_DASH_GT] = ACTIONS(522), + [anon_sym_POUND] = ACTIONS(522), + [anon_sym_SQUOTE] = ACTIONS(519), + [anon_sym_as] = ACTIONS(519), + [anon_sym_async] = ACTIONS(519), + [anon_sym_await] = ACTIONS(519), + [anon_sym_break] = ACTIONS(519), + [anon_sym_const] = ACTIONS(519), + [anon_sym_continue] = ACTIONS(519), + [anon_sym_default] = ACTIONS(519), + [anon_sym_enum] = ACTIONS(519), + [anon_sym_fn] = ACTIONS(519), + [anon_sym_for] = ACTIONS(519), + [anon_sym_if] = ACTIONS(519), + [anon_sym_impl] = ACTIONS(519), + [anon_sym_let] = ACTIONS(519), + [anon_sym_loop] = ACTIONS(519), + [anon_sym_match] = ACTIONS(519), + [anon_sym_mod] = ACTIONS(519), + [anon_sym_pub] = ACTIONS(519), + [anon_sym_return] = ACTIONS(519), + [anon_sym_static] = ACTIONS(519), + [anon_sym_struct] = ACTIONS(519), + [anon_sym_trait] = ACTIONS(519), + [anon_sym_type] = ACTIONS(519), + [anon_sym_union] = ACTIONS(519), + [anon_sym_unsafe] = ACTIONS(519), + [anon_sym_use] = ACTIONS(519), + [anon_sym_where] = ACTIONS(519), + [anon_sym_while] = ACTIONS(519), + [sym_mutable_specifier] = ACTIONS(519), + [sym_integer_literal] = ACTIONS(542), + [aux_sym_string_literal_token1] = ACTIONS(545), + [sym_char_literal] = ACTIONS(542), + [anon_sym_true] = ACTIONS(548), + [anon_sym_false] = ACTIONS(548), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(519), + [sym_super] = ACTIONS(519), + [sym_crate] = ACTIONS(519), + [sym_metavariable] = ACTIONS(551), + [sym__raw_string_literal_start] = ACTIONS(554), + [sym_float_literal] = ACTIONS(542), }, [68] = { - [sym__token_pattern] = STATE(149), - [sym_token_tree_pattern] = STATE(166), - [sym_token_binding_pattern] = STATE(166), - [sym_token_repetition_pattern] = STATE(166), - [sym__literal] = STATE(166), - [sym_string_literal] = STATE(156), - [sym_raw_string_literal] = STATE(156), - [sym_boolean_literal] = STATE(156), + [sym__token_pattern] = STATE(160), + [sym_token_tree_pattern] = STATE(173), + [sym_token_binding_pattern] = STATE(173), + [sym_token_repetition_pattern] = STATE(173), + [sym__literal] = STATE(173), + [sym_string_literal] = STATE(166), + [sym_raw_string_literal] = STATE(166), + [sym_boolean_literal] = STATE(166), [sym_line_comment] = STATE(68), [sym_block_comment] = STATE(68), - [aux_sym_token_tree_pattern_repeat1] = STATE(72), - [aux_sym__non_special_token_repeat1] = STATE(135), - [sym_identifier] = ACTIONS(552), - [anon_sym_SEMI] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(556), - [anon_sym_RPAREN] = ACTIONS(558), - [anon_sym_LBRACK] = ACTIONS(560), - [anon_sym_LBRACE] = ACTIONS(562), - [anon_sym_EQ_GT] = ACTIONS(554), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_QMARK] = ACTIONS(554), - [anon_sym_u8] = ACTIONS(552), - [anon_sym_i8] = ACTIONS(552), - [anon_sym_u16] = ACTIONS(552), - [anon_sym_i16] = ACTIONS(552), - [anon_sym_u32] = ACTIONS(552), - [anon_sym_i32] = ACTIONS(552), - [anon_sym_u64] = ACTIONS(552), - [anon_sym_i64] = ACTIONS(552), - [anon_sym_u128] = ACTIONS(552), - [anon_sym_i128] = ACTIONS(552), - [anon_sym_isize] = ACTIONS(552), - [anon_sym_usize] = ACTIONS(552), - [anon_sym_f32] = ACTIONS(552), - [anon_sym_f64] = ACTIONS(552), - [anon_sym_bool] = ACTIONS(552), - [anon_sym_str] = ACTIONS(552), - [anon_sym_char] = ACTIONS(552), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_AMP] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_AMP_AMP] = ACTIONS(554), - [anon_sym_PIPE_PIPE] = ACTIONS(554), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_GT_GT] = ACTIONS(564), - [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_CARET_EQ] = ACTIONS(554), - [anon_sym_AMP_EQ] = ACTIONS(554), - [anon_sym_PIPE_EQ] = ACTIONS(554), - [anon_sym_LT_LT_EQ] = ACTIONS(554), - [anon_sym_GT_GT_EQ] = ACTIONS(554), - [anon_sym_EQ] = ACTIONS(564), - [anon_sym_EQ_EQ] = ACTIONS(554), - [anon_sym_BANG_EQ] = ACTIONS(554), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT_EQ] = ACTIONS(554), - [anon_sym_LT_EQ] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(554), - [anon_sym__] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(554), - [anon_sym_DOT_DOT_EQ] = ACTIONS(554), - [anon_sym_COMMA] = ACTIONS(554), - [anon_sym_COLON_COLON] = ACTIONS(554), - [anon_sym_DASH_GT] = ACTIONS(554), - [anon_sym_POUND] = ACTIONS(554), - [anon_sym_SQUOTE] = ACTIONS(552), - [anon_sym_as] = ACTIONS(552), - [anon_sym_async] = ACTIONS(552), - [anon_sym_await] = ACTIONS(552), - [anon_sym_break] = ACTIONS(552), - [anon_sym_const] = ACTIONS(552), - [anon_sym_continue] = ACTIONS(552), - [anon_sym_default] = ACTIONS(552), - [anon_sym_enum] = ACTIONS(552), - [anon_sym_fn] = ACTIONS(552), - [anon_sym_for] = ACTIONS(552), - [anon_sym_if] = ACTIONS(552), - [anon_sym_impl] = ACTIONS(552), - [anon_sym_let] = ACTIONS(552), - [anon_sym_loop] = ACTIONS(552), - [anon_sym_match] = ACTIONS(552), - [anon_sym_mod] = ACTIONS(552), - [anon_sym_pub] = ACTIONS(552), - [anon_sym_return] = ACTIONS(552), - [anon_sym_static] = ACTIONS(552), - [anon_sym_struct] = ACTIONS(552), - [anon_sym_trait] = ACTIONS(552), - [anon_sym_type] = ACTIONS(552), - [anon_sym_union] = ACTIONS(552), - [anon_sym_unsafe] = ACTIONS(552), - [anon_sym_use] = ACTIONS(552), - [anon_sym_where] = ACTIONS(552), - [anon_sym_while] = ACTIONS(552), - [sym_mutable_specifier] = ACTIONS(552), - [sym_integer_literal] = ACTIONS(568), - [aux_sym_string_literal_token1] = ACTIONS(570), - [sym_char_literal] = ACTIONS(568), - [anon_sym_true] = ACTIONS(572), - [anon_sym_false] = ACTIONS(572), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(552), - [sym_super] = ACTIONS(552), - [sym_crate] = ACTIONS(552), - [sym_metavariable] = ACTIONS(574), - [sym__raw_string_literal_start] = ACTIONS(576), - [sym_float_literal] = ACTIONS(568), + [aux_sym_macro_def_args_repeat1] = STATE(80), + [aux_sym__non_special_token_repeat1] = STATE(142), + [sym_identifier] = ACTIONS(557), + [anon_sym_SEMI] = ACTIONS(559), + [anon_sym_LPAREN] = ACTIONS(561), + [anon_sym_RPAREN] = ACTIONS(563), + [anon_sym_LBRACK] = ACTIONS(565), + [anon_sym_LBRACE] = ACTIONS(567), + [anon_sym_COMMA] = ACTIONS(559), + [anon_sym_EQ_GT] = ACTIONS(559), + [anon_sym_COLON] = ACTIONS(569), + [anon_sym_DOLLAR] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(569), + [anon_sym_QMARK] = ACTIONS(559), + [anon_sym_u8] = ACTIONS(557), + [anon_sym_i8] = ACTIONS(557), + [anon_sym_u16] = ACTIONS(557), + [anon_sym_i16] = ACTIONS(557), + [anon_sym_u32] = ACTIONS(557), + [anon_sym_i32] = ACTIONS(557), + [anon_sym_u64] = ACTIONS(557), + [anon_sym_i64] = ACTIONS(557), + [anon_sym_u128] = ACTIONS(557), + [anon_sym_i128] = ACTIONS(557), + [anon_sym_isize] = ACTIONS(557), + [anon_sym_usize] = ACTIONS(557), + [anon_sym_f32] = ACTIONS(557), + [anon_sym_f64] = ACTIONS(557), + [anon_sym_bool] = ACTIONS(557), + [anon_sym_str] = ACTIONS(557), + [anon_sym_char] = ACTIONS(557), + [anon_sym_DASH] = ACTIONS(569), + [anon_sym_SLASH] = ACTIONS(569), + [anon_sym_PERCENT] = ACTIONS(569), + [anon_sym_CARET] = ACTIONS(569), + [anon_sym_BANG] = ACTIONS(569), + [anon_sym_AMP] = ACTIONS(569), + [anon_sym_PIPE] = ACTIONS(569), + [anon_sym_AMP_AMP] = ACTIONS(559), + [anon_sym_PIPE_PIPE] = ACTIONS(559), + [anon_sym_LT_LT] = ACTIONS(569), + [anon_sym_GT_GT] = ACTIONS(569), + [anon_sym_PLUS_EQ] = ACTIONS(559), + [anon_sym_DASH_EQ] = ACTIONS(559), + [anon_sym_STAR_EQ] = ACTIONS(559), + [anon_sym_SLASH_EQ] = ACTIONS(559), + [anon_sym_PERCENT_EQ] = ACTIONS(559), + [anon_sym_CARET_EQ] = ACTIONS(559), + [anon_sym_AMP_EQ] = ACTIONS(559), + [anon_sym_PIPE_EQ] = ACTIONS(559), + [anon_sym_LT_LT_EQ] = ACTIONS(559), + [anon_sym_GT_GT_EQ] = ACTIONS(559), + [anon_sym_EQ] = ACTIONS(569), + [anon_sym_EQ_EQ] = ACTIONS(559), + [anon_sym_BANG_EQ] = ACTIONS(559), + [anon_sym_GT] = ACTIONS(569), + [anon_sym_LT] = ACTIONS(569), + [anon_sym_GT_EQ] = ACTIONS(559), + [anon_sym_LT_EQ] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(559), + [anon_sym__] = ACTIONS(569), + [anon_sym_DOT] = ACTIONS(569), + [anon_sym_DOT_DOT] = ACTIONS(569), + [anon_sym_DOT_DOT_DOT] = ACTIONS(559), + [anon_sym_DOT_DOT_EQ] = ACTIONS(559), + [anon_sym_COLON_COLON] = ACTIONS(559), + [anon_sym_DASH_GT] = ACTIONS(559), + [anon_sym_POUND] = ACTIONS(559), + [anon_sym_SQUOTE] = ACTIONS(557), + [anon_sym_as] = ACTIONS(557), + [anon_sym_async] = ACTIONS(557), + [anon_sym_await] = ACTIONS(557), + [anon_sym_break] = ACTIONS(557), + [anon_sym_const] = ACTIONS(557), + [anon_sym_continue] = ACTIONS(557), + [anon_sym_default] = ACTIONS(557), + [anon_sym_enum] = ACTIONS(557), + [anon_sym_fn] = ACTIONS(557), + [anon_sym_for] = ACTIONS(557), + [anon_sym_if] = ACTIONS(557), + [anon_sym_impl] = ACTIONS(557), + [anon_sym_let] = ACTIONS(557), + [anon_sym_loop] = ACTIONS(557), + [anon_sym_match] = ACTIONS(557), + [anon_sym_mod] = ACTIONS(557), + [anon_sym_pub] = ACTIONS(557), + [anon_sym_return] = ACTIONS(557), + [anon_sym_static] = ACTIONS(557), + [anon_sym_struct] = ACTIONS(557), + [anon_sym_trait] = ACTIONS(557), + [anon_sym_type] = ACTIONS(557), + [anon_sym_union] = ACTIONS(557), + [anon_sym_unsafe] = ACTIONS(557), + [anon_sym_use] = ACTIONS(557), + [anon_sym_where] = ACTIONS(557), + [anon_sym_while] = ACTIONS(557), + [sym_mutable_specifier] = ACTIONS(557), + [sym_integer_literal] = ACTIONS(573), + [aux_sym_string_literal_token1] = ACTIONS(575), + [sym_char_literal] = ACTIONS(573), + [anon_sym_true] = ACTIONS(577), + [anon_sym_false] = ACTIONS(577), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(557), + [sym_super] = ACTIONS(557), + [sym_crate] = ACTIONS(557), + [sym_metavariable] = ACTIONS(579), + [sym__raw_string_literal_start] = ACTIONS(581), + [sym_float_literal] = ACTIONS(573), }, [69] = { - [sym__token_pattern] = STATE(149), - [sym_token_tree_pattern] = STATE(166), - [sym_token_binding_pattern] = STATE(166), - [sym_token_repetition_pattern] = STATE(166), - [sym__literal] = STATE(166), - [sym_string_literal] = STATE(156), - [sym_raw_string_literal] = STATE(156), - [sym_boolean_literal] = STATE(156), + [sym__token_pattern] = STATE(160), + [sym_token_tree_pattern] = STATE(173), + [sym_token_binding_pattern] = STATE(173), + [sym_token_repetition_pattern] = STATE(173), + [sym__literal] = STATE(173), + [sym_string_literal] = STATE(166), + [sym_raw_string_literal] = STATE(166), + [sym_boolean_literal] = STATE(166), [sym_line_comment] = STATE(69), [sym_block_comment] = STATE(69), - [aux_sym_token_tree_pattern_repeat1] = STATE(73), - [aux_sym__non_special_token_repeat1] = STATE(135), - [sym_identifier] = ACTIONS(552), - [anon_sym_SEMI] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(556), - [anon_sym_LBRACK] = ACTIONS(560), - [anon_sym_RBRACK] = ACTIONS(558), - [anon_sym_LBRACE] = ACTIONS(562), - [anon_sym_EQ_GT] = ACTIONS(554), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_QMARK] = ACTIONS(554), - [anon_sym_u8] = ACTIONS(552), - [anon_sym_i8] = ACTIONS(552), - [anon_sym_u16] = ACTIONS(552), - [anon_sym_i16] = ACTIONS(552), - [anon_sym_u32] = ACTIONS(552), - [anon_sym_i32] = ACTIONS(552), - [anon_sym_u64] = ACTIONS(552), - [anon_sym_i64] = ACTIONS(552), - [anon_sym_u128] = ACTIONS(552), - [anon_sym_i128] = ACTIONS(552), - [anon_sym_isize] = ACTIONS(552), - [anon_sym_usize] = ACTIONS(552), - [anon_sym_f32] = ACTIONS(552), - [anon_sym_f64] = ACTIONS(552), - [anon_sym_bool] = ACTIONS(552), - [anon_sym_str] = ACTIONS(552), - [anon_sym_char] = ACTIONS(552), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_AMP] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_AMP_AMP] = ACTIONS(554), - [anon_sym_PIPE_PIPE] = ACTIONS(554), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_GT_GT] = ACTIONS(564), - [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_CARET_EQ] = ACTIONS(554), - [anon_sym_AMP_EQ] = ACTIONS(554), - [anon_sym_PIPE_EQ] = ACTIONS(554), - [anon_sym_LT_LT_EQ] = ACTIONS(554), - [anon_sym_GT_GT_EQ] = ACTIONS(554), - [anon_sym_EQ] = ACTIONS(564), - [anon_sym_EQ_EQ] = ACTIONS(554), - [anon_sym_BANG_EQ] = ACTIONS(554), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT_EQ] = ACTIONS(554), - [anon_sym_LT_EQ] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(554), - [anon_sym__] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(554), - [anon_sym_DOT_DOT_EQ] = ACTIONS(554), - [anon_sym_COMMA] = ACTIONS(554), - [anon_sym_COLON_COLON] = ACTIONS(554), - [anon_sym_DASH_GT] = ACTIONS(554), - [anon_sym_POUND] = ACTIONS(554), - [anon_sym_SQUOTE] = ACTIONS(552), - [anon_sym_as] = ACTIONS(552), - [anon_sym_async] = ACTIONS(552), - [anon_sym_await] = ACTIONS(552), - [anon_sym_break] = ACTIONS(552), - [anon_sym_const] = ACTIONS(552), - [anon_sym_continue] = ACTIONS(552), - [anon_sym_default] = ACTIONS(552), - [anon_sym_enum] = ACTIONS(552), - [anon_sym_fn] = ACTIONS(552), - [anon_sym_for] = ACTIONS(552), - [anon_sym_if] = ACTIONS(552), - [anon_sym_impl] = ACTIONS(552), - [anon_sym_let] = ACTIONS(552), - [anon_sym_loop] = ACTIONS(552), - [anon_sym_match] = ACTIONS(552), - [anon_sym_mod] = ACTIONS(552), - [anon_sym_pub] = ACTIONS(552), - [anon_sym_return] = ACTIONS(552), - [anon_sym_static] = ACTIONS(552), - [anon_sym_struct] = ACTIONS(552), - [anon_sym_trait] = ACTIONS(552), - [anon_sym_type] = ACTIONS(552), - [anon_sym_union] = ACTIONS(552), - [anon_sym_unsafe] = ACTIONS(552), - [anon_sym_use] = ACTIONS(552), - [anon_sym_where] = ACTIONS(552), - [anon_sym_while] = ACTIONS(552), - [sym_mutable_specifier] = ACTIONS(552), - [sym_integer_literal] = ACTIONS(568), - [aux_sym_string_literal_token1] = ACTIONS(570), - [sym_char_literal] = ACTIONS(568), - [anon_sym_true] = ACTIONS(572), - [anon_sym_false] = ACTIONS(572), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(552), - [sym_super] = ACTIONS(552), - [sym_crate] = ACTIONS(552), - [sym_metavariable] = ACTIONS(574), - [sym__raw_string_literal_start] = ACTIONS(576), - [sym_float_literal] = ACTIONS(568), + [aux_sym_macro_def_args_repeat1] = STATE(78), + [aux_sym__non_special_token_repeat1] = STATE(142), + [sym_identifier] = ACTIONS(557), + [anon_sym_SEMI] = ACTIONS(559), + [anon_sym_LPAREN] = ACTIONS(561), + [anon_sym_LBRACK] = ACTIONS(565), + [anon_sym_RBRACK] = ACTIONS(563), + [anon_sym_LBRACE] = ACTIONS(567), + [anon_sym_COMMA] = ACTIONS(559), + [anon_sym_EQ_GT] = ACTIONS(559), + [anon_sym_COLON] = ACTIONS(569), + [anon_sym_DOLLAR] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(569), + [anon_sym_QMARK] = ACTIONS(559), + [anon_sym_u8] = ACTIONS(557), + [anon_sym_i8] = ACTIONS(557), + [anon_sym_u16] = ACTIONS(557), + [anon_sym_i16] = ACTIONS(557), + [anon_sym_u32] = ACTIONS(557), + [anon_sym_i32] = ACTIONS(557), + [anon_sym_u64] = ACTIONS(557), + [anon_sym_i64] = ACTIONS(557), + [anon_sym_u128] = ACTIONS(557), + [anon_sym_i128] = ACTIONS(557), + [anon_sym_isize] = ACTIONS(557), + [anon_sym_usize] = ACTIONS(557), + [anon_sym_f32] = ACTIONS(557), + [anon_sym_f64] = ACTIONS(557), + [anon_sym_bool] = ACTIONS(557), + [anon_sym_str] = ACTIONS(557), + [anon_sym_char] = ACTIONS(557), + [anon_sym_DASH] = ACTIONS(569), + [anon_sym_SLASH] = ACTIONS(569), + [anon_sym_PERCENT] = ACTIONS(569), + [anon_sym_CARET] = ACTIONS(569), + [anon_sym_BANG] = ACTIONS(569), + [anon_sym_AMP] = ACTIONS(569), + [anon_sym_PIPE] = ACTIONS(569), + [anon_sym_AMP_AMP] = ACTIONS(559), + [anon_sym_PIPE_PIPE] = ACTIONS(559), + [anon_sym_LT_LT] = ACTIONS(569), + [anon_sym_GT_GT] = ACTIONS(569), + [anon_sym_PLUS_EQ] = ACTIONS(559), + [anon_sym_DASH_EQ] = ACTIONS(559), + [anon_sym_STAR_EQ] = ACTIONS(559), + [anon_sym_SLASH_EQ] = ACTIONS(559), + [anon_sym_PERCENT_EQ] = ACTIONS(559), + [anon_sym_CARET_EQ] = ACTIONS(559), + [anon_sym_AMP_EQ] = ACTIONS(559), + [anon_sym_PIPE_EQ] = ACTIONS(559), + [anon_sym_LT_LT_EQ] = ACTIONS(559), + [anon_sym_GT_GT_EQ] = ACTIONS(559), + [anon_sym_EQ] = ACTIONS(569), + [anon_sym_EQ_EQ] = ACTIONS(559), + [anon_sym_BANG_EQ] = ACTIONS(559), + [anon_sym_GT] = ACTIONS(569), + [anon_sym_LT] = ACTIONS(569), + [anon_sym_GT_EQ] = ACTIONS(559), + [anon_sym_LT_EQ] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(559), + [anon_sym__] = ACTIONS(569), + [anon_sym_DOT] = ACTIONS(569), + [anon_sym_DOT_DOT] = ACTIONS(569), + [anon_sym_DOT_DOT_DOT] = ACTIONS(559), + [anon_sym_DOT_DOT_EQ] = ACTIONS(559), + [anon_sym_COLON_COLON] = ACTIONS(559), + [anon_sym_DASH_GT] = ACTIONS(559), + [anon_sym_POUND] = ACTIONS(559), + [anon_sym_SQUOTE] = ACTIONS(557), + [anon_sym_as] = ACTIONS(557), + [anon_sym_async] = ACTIONS(557), + [anon_sym_await] = ACTIONS(557), + [anon_sym_break] = ACTIONS(557), + [anon_sym_const] = ACTIONS(557), + [anon_sym_continue] = ACTIONS(557), + [anon_sym_default] = ACTIONS(557), + [anon_sym_enum] = ACTIONS(557), + [anon_sym_fn] = ACTIONS(557), + [anon_sym_for] = ACTIONS(557), + [anon_sym_if] = ACTIONS(557), + [anon_sym_impl] = ACTIONS(557), + [anon_sym_let] = ACTIONS(557), + [anon_sym_loop] = ACTIONS(557), + [anon_sym_match] = ACTIONS(557), + [anon_sym_mod] = ACTIONS(557), + [anon_sym_pub] = ACTIONS(557), + [anon_sym_return] = ACTIONS(557), + [anon_sym_static] = ACTIONS(557), + [anon_sym_struct] = ACTIONS(557), + [anon_sym_trait] = ACTIONS(557), + [anon_sym_type] = ACTIONS(557), + [anon_sym_union] = ACTIONS(557), + [anon_sym_unsafe] = ACTIONS(557), + [anon_sym_use] = ACTIONS(557), + [anon_sym_where] = ACTIONS(557), + [anon_sym_while] = ACTIONS(557), + [sym_mutable_specifier] = ACTIONS(557), + [sym_integer_literal] = ACTIONS(573), + [aux_sym_string_literal_token1] = ACTIONS(575), + [sym_char_literal] = ACTIONS(573), + [anon_sym_true] = ACTIONS(577), + [anon_sym_false] = ACTIONS(577), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(557), + [sym_super] = ACTIONS(557), + [sym_crate] = ACTIONS(557), + [sym_metavariable] = ACTIONS(579), + [sym__raw_string_literal_start] = ACTIONS(581), + [sym_float_literal] = ACTIONS(573), }, [70] = { - [sym__token_pattern] = STATE(149), - [sym_token_tree_pattern] = STATE(166), - [sym_token_binding_pattern] = STATE(166), - [sym_token_repetition_pattern] = STATE(166), - [sym__literal] = STATE(166), - [sym_string_literal] = STATE(156), - [sym_raw_string_literal] = STATE(156), - [sym_boolean_literal] = STATE(156), + [sym__token_pattern] = STATE(160), + [sym_token_tree_pattern] = STATE(173), + [sym_token_binding_pattern] = STATE(173), + [sym_token_repetition_pattern] = STATE(173), + [sym__literal] = STATE(173), + [sym_string_literal] = STATE(166), + [sym_raw_string_literal] = STATE(166), + [sym_boolean_literal] = STATE(166), [sym_line_comment] = STATE(70), [sym_block_comment] = STATE(70), - [aux_sym_token_tree_pattern_repeat1] = STATE(77), - [aux_sym__non_special_token_repeat1] = STATE(135), - [sym_identifier] = ACTIONS(552), - [anon_sym_SEMI] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(556), - [anon_sym_RPAREN] = ACTIONS(578), - [anon_sym_LBRACK] = ACTIONS(560), - [anon_sym_LBRACE] = ACTIONS(562), - [anon_sym_EQ_GT] = ACTIONS(554), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_QMARK] = ACTIONS(554), - [anon_sym_u8] = ACTIONS(552), - [anon_sym_i8] = ACTIONS(552), - [anon_sym_u16] = ACTIONS(552), - [anon_sym_i16] = ACTIONS(552), - [anon_sym_u32] = ACTIONS(552), - [anon_sym_i32] = ACTIONS(552), - [anon_sym_u64] = ACTIONS(552), - [anon_sym_i64] = ACTIONS(552), - [anon_sym_u128] = ACTIONS(552), - [anon_sym_i128] = ACTIONS(552), - [anon_sym_isize] = ACTIONS(552), - [anon_sym_usize] = ACTIONS(552), - [anon_sym_f32] = ACTIONS(552), - [anon_sym_f64] = ACTIONS(552), - [anon_sym_bool] = ACTIONS(552), - [anon_sym_str] = ACTIONS(552), - [anon_sym_char] = ACTIONS(552), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_AMP] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_AMP_AMP] = ACTIONS(554), - [anon_sym_PIPE_PIPE] = ACTIONS(554), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_GT_GT] = ACTIONS(564), - [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_CARET_EQ] = ACTIONS(554), - [anon_sym_AMP_EQ] = ACTIONS(554), - [anon_sym_PIPE_EQ] = ACTIONS(554), - [anon_sym_LT_LT_EQ] = ACTIONS(554), - [anon_sym_GT_GT_EQ] = ACTIONS(554), - [anon_sym_EQ] = ACTIONS(564), - [anon_sym_EQ_EQ] = ACTIONS(554), - [anon_sym_BANG_EQ] = ACTIONS(554), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT_EQ] = ACTIONS(554), - [anon_sym_LT_EQ] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(554), - [anon_sym__] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(554), - [anon_sym_DOT_DOT_EQ] = ACTIONS(554), - [anon_sym_COMMA] = ACTIONS(554), - [anon_sym_COLON_COLON] = ACTIONS(554), - [anon_sym_DASH_GT] = ACTIONS(554), - [anon_sym_POUND] = ACTIONS(554), - [anon_sym_SQUOTE] = ACTIONS(552), - [anon_sym_as] = ACTIONS(552), - [anon_sym_async] = ACTIONS(552), - [anon_sym_await] = ACTIONS(552), - [anon_sym_break] = ACTIONS(552), - [anon_sym_const] = ACTIONS(552), - [anon_sym_continue] = ACTIONS(552), - [anon_sym_default] = ACTIONS(552), - [anon_sym_enum] = ACTIONS(552), - [anon_sym_fn] = ACTIONS(552), - [anon_sym_for] = ACTIONS(552), - [anon_sym_if] = ACTIONS(552), - [anon_sym_impl] = ACTIONS(552), - [anon_sym_let] = ACTIONS(552), - [anon_sym_loop] = ACTIONS(552), - [anon_sym_match] = ACTIONS(552), - [anon_sym_mod] = ACTIONS(552), - [anon_sym_pub] = ACTIONS(552), - [anon_sym_return] = ACTIONS(552), - [anon_sym_static] = ACTIONS(552), - [anon_sym_struct] = ACTIONS(552), - [anon_sym_trait] = ACTIONS(552), - [anon_sym_type] = ACTIONS(552), - [anon_sym_union] = ACTIONS(552), - [anon_sym_unsafe] = ACTIONS(552), - [anon_sym_use] = ACTIONS(552), - [anon_sym_where] = ACTIONS(552), - [anon_sym_while] = ACTIONS(552), - [sym_mutable_specifier] = ACTIONS(552), - [sym_integer_literal] = ACTIONS(568), - [aux_sym_string_literal_token1] = ACTIONS(570), - [sym_char_literal] = ACTIONS(568), - [anon_sym_true] = ACTIONS(572), - [anon_sym_false] = ACTIONS(572), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(552), - [sym_super] = ACTIONS(552), - [sym_crate] = ACTIONS(552), - [sym_metavariable] = ACTIONS(574), - [sym__raw_string_literal_start] = ACTIONS(576), - [sym_float_literal] = ACTIONS(568), + [aux_sym_macro_def_args_repeat1] = STATE(81), + [aux_sym__non_special_token_repeat1] = STATE(142), + [sym_identifier] = ACTIONS(557), + [anon_sym_SEMI] = ACTIONS(559), + [anon_sym_LPAREN] = ACTIONS(561), + [anon_sym_RPAREN] = ACTIONS(583), + [anon_sym_LBRACK] = ACTIONS(565), + [anon_sym_LBRACE] = ACTIONS(567), + [anon_sym_COMMA] = ACTIONS(559), + [anon_sym_EQ_GT] = ACTIONS(559), + [anon_sym_COLON] = ACTIONS(569), + [anon_sym_DOLLAR] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(569), + [anon_sym_QMARK] = ACTIONS(559), + [anon_sym_u8] = ACTIONS(557), + [anon_sym_i8] = ACTIONS(557), + [anon_sym_u16] = ACTIONS(557), + [anon_sym_i16] = ACTIONS(557), + [anon_sym_u32] = ACTIONS(557), + [anon_sym_i32] = ACTIONS(557), + [anon_sym_u64] = ACTIONS(557), + [anon_sym_i64] = ACTIONS(557), + [anon_sym_u128] = ACTIONS(557), + [anon_sym_i128] = ACTIONS(557), + [anon_sym_isize] = ACTIONS(557), + [anon_sym_usize] = ACTIONS(557), + [anon_sym_f32] = ACTIONS(557), + [anon_sym_f64] = ACTIONS(557), + [anon_sym_bool] = ACTIONS(557), + [anon_sym_str] = ACTIONS(557), + [anon_sym_char] = ACTIONS(557), + [anon_sym_DASH] = ACTIONS(569), + [anon_sym_SLASH] = ACTIONS(569), + [anon_sym_PERCENT] = ACTIONS(569), + [anon_sym_CARET] = ACTIONS(569), + [anon_sym_BANG] = ACTIONS(569), + [anon_sym_AMP] = ACTIONS(569), + [anon_sym_PIPE] = ACTIONS(569), + [anon_sym_AMP_AMP] = ACTIONS(559), + [anon_sym_PIPE_PIPE] = ACTIONS(559), + [anon_sym_LT_LT] = ACTIONS(569), + [anon_sym_GT_GT] = ACTIONS(569), + [anon_sym_PLUS_EQ] = ACTIONS(559), + [anon_sym_DASH_EQ] = ACTIONS(559), + [anon_sym_STAR_EQ] = ACTIONS(559), + [anon_sym_SLASH_EQ] = ACTIONS(559), + [anon_sym_PERCENT_EQ] = ACTIONS(559), + [anon_sym_CARET_EQ] = ACTIONS(559), + [anon_sym_AMP_EQ] = ACTIONS(559), + [anon_sym_PIPE_EQ] = ACTIONS(559), + [anon_sym_LT_LT_EQ] = ACTIONS(559), + [anon_sym_GT_GT_EQ] = ACTIONS(559), + [anon_sym_EQ] = ACTIONS(569), + [anon_sym_EQ_EQ] = ACTIONS(559), + [anon_sym_BANG_EQ] = ACTIONS(559), + [anon_sym_GT] = ACTIONS(569), + [anon_sym_LT] = ACTIONS(569), + [anon_sym_GT_EQ] = ACTIONS(559), + [anon_sym_LT_EQ] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(559), + [anon_sym__] = ACTIONS(569), + [anon_sym_DOT] = ACTIONS(569), + [anon_sym_DOT_DOT] = ACTIONS(569), + [anon_sym_DOT_DOT_DOT] = ACTIONS(559), + [anon_sym_DOT_DOT_EQ] = ACTIONS(559), + [anon_sym_COLON_COLON] = ACTIONS(559), + [anon_sym_DASH_GT] = ACTIONS(559), + [anon_sym_POUND] = ACTIONS(559), + [anon_sym_SQUOTE] = ACTIONS(557), + [anon_sym_as] = ACTIONS(557), + [anon_sym_async] = ACTIONS(557), + [anon_sym_await] = ACTIONS(557), + [anon_sym_break] = ACTIONS(557), + [anon_sym_const] = ACTIONS(557), + [anon_sym_continue] = ACTIONS(557), + [anon_sym_default] = ACTIONS(557), + [anon_sym_enum] = ACTIONS(557), + [anon_sym_fn] = ACTIONS(557), + [anon_sym_for] = ACTIONS(557), + [anon_sym_if] = ACTIONS(557), + [anon_sym_impl] = ACTIONS(557), + [anon_sym_let] = ACTIONS(557), + [anon_sym_loop] = ACTIONS(557), + [anon_sym_match] = ACTIONS(557), + [anon_sym_mod] = ACTIONS(557), + [anon_sym_pub] = ACTIONS(557), + [anon_sym_return] = ACTIONS(557), + [anon_sym_static] = ACTIONS(557), + [anon_sym_struct] = ACTIONS(557), + [anon_sym_trait] = ACTIONS(557), + [anon_sym_type] = ACTIONS(557), + [anon_sym_union] = ACTIONS(557), + [anon_sym_unsafe] = ACTIONS(557), + [anon_sym_use] = ACTIONS(557), + [anon_sym_where] = ACTIONS(557), + [anon_sym_while] = ACTIONS(557), + [sym_mutable_specifier] = ACTIONS(557), + [sym_integer_literal] = ACTIONS(573), + [aux_sym_string_literal_token1] = ACTIONS(575), + [sym_char_literal] = ACTIONS(573), + [anon_sym_true] = ACTIONS(577), + [anon_sym_false] = ACTIONS(577), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(557), + [sym_super] = ACTIONS(557), + [sym_crate] = ACTIONS(557), + [sym_metavariable] = ACTIONS(579), + [sym__raw_string_literal_start] = ACTIONS(581), + [sym_float_literal] = ACTIONS(573), }, [71] = { - [sym__token_pattern] = STATE(149), - [sym_token_tree_pattern] = STATE(166), - [sym_token_binding_pattern] = STATE(166), - [sym_token_repetition_pattern] = STATE(166), - [sym__literal] = STATE(166), - [sym_string_literal] = STATE(156), - [sym_raw_string_literal] = STATE(156), - [sym_boolean_literal] = STATE(156), + [sym__token_pattern] = STATE(160), + [sym_token_tree_pattern] = STATE(173), + [sym_token_binding_pattern] = STATE(173), + [sym_token_repetition_pattern] = STATE(173), + [sym__literal] = STATE(173), + [sym_string_literal] = STATE(166), + [sym_raw_string_literal] = STATE(166), + [sym_boolean_literal] = STATE(166), [sym_line_comment] = STATE(71), [sym_block_comment] = STATE(71), - [aux_sym_token_tree_pattern_repeat1] = STATE(78), - [aux_sym__non_special_token_repeat1] = STATE(135), - [sym_identifier] = ACTIONS(552), - [anon_sym_SEMI] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(556), - [anon_sym_LBRACK] = ACTIONS(560), - [anon_sym_RBRACK] = ACTIONS(578), - [anon_sym_LBRACE] = ACTIONS(562), - [anon_sym_EQ_GT] = ACTIONS(554), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_QMARK] = ACTIONS(554), - [anon_sym_u8] = ACTIONS(552), - [anon_sym_i8] = ACTIONS(552), - [anon_sym_u16] = ACTIONS(552), - [anon_sym_i16] = ACTIONS(552), - [anon_sym_u32] = ACTIONS(552), - [anon_sym_i32] = ACTIONS(552), - [anon_sym_u64] = ACTIONS(552), - [anon_sym_i64] = ACTIONS(552), - [anon_sym_u128] = ACTIONS(552), - [anon_sym_i128] = ACTIONS(552), - [anon_sym_isize] = ACTIONS(552), - [anon_sym_usize] = ACTIONS(552), - [anon_sym_f32] = ACTIONS(552), - [anon_sym_f64] = ACTIONS(552), - [anon_sym_bool] = ACTIONS(552), - [anon_sym_str] = ACTIONS(552), - [anon_sym_char] = ACTIONS(552), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_AMP] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_AMP_AMP] = ACTIONS(554), - [anon_sym_PIPE_PIPE] = ACTIONS(554), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_GT_GT] = ACTIONS(564), - [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_CARET_EQ] = ACTIONS(554), - [anon_sym_AMP_EQ] = ACTIONS(554), - [anon_sym_PIPE_EQ] = ACTIONS(554), - [anon_sym_LT_LT_EQ] = ACTIONS(554), - [anon_sym_GT_GT_EQ] = ACTIONS(554), - [anon_sym_EQ] = ACTIONS(564), - [anon_sym_EQ_EQ] = ACTIONS(554), - [anon_sym_BANG_EQ] = ACTIONS(554), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT_EQ] = ACTIONS(554), - [anon_sym_LT_EQ] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(554), - [anon_sym__] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(554), - [anon_sym_DOT_DOT_EQ] = ACTIONS(554), - [anon_sym_COMMA] = ACTIONS(554), - [anon_sym_COLON_COLON] = ACTIONS(554), - [anon_sym_DASH_GT] = ACTIONS(554), - [anon_sym_POUND] = ACTIONS(554), - [anon_sym_SQUOTE] = ACTIONS(552), - [anon_sym_as] = ACTIONS(552), - [anon_sym_async] = ACTIONS(552), - [anon_sym_await] = ACTIONS(552), - [anon_sym_break] = ACTIONS(552), - [anon_sym_const] = ACTIONS(552), - [anon_sym_continue] = ACTIONS(552), - [anon_sym_default] = ACTIONS(552), - [anon_sym_enum] = ACTIONS(552), - [anon_sym_fn] = ACTIONS(552), - [anon_sym_for] = ACTIONS(552), - [anon_sym_if] = ACTIONS(552), - [anon_sym_impl] = ACTIONS(552), - [anon_sym_let] = ACTIONS(552), - [anon_sym_loop] = ACTIONS(552), - [anon_sym_match] = ACTIONS(552), - [anon_sym_mod] = ACTIONS(552), - [anon_sym_pub] = ACTIONS(552), - [anon_sym_return] = ACTIONS(552), - [anon_sym_static] = ACTIONS(552), - [anon_sym_struct] = ACTIONS(552), - [anon_sym_trait] = ACTIONS(552), - [anon_sym_type] = ACTIONS(552), - [anon_sym_union] = ACTIONS(552), - [anon_sym_unsafe] = ACTIONS(552), - [anon_sym_use] = ACTIONS(552), - [anon_sym_where] = ACTIONS(552), - [anon_sym_while] = ACTIONS(552), - [sym_mutable_specifier] = ACTIONS(552), - [sym_integer_literal] = ACTIONS(568), - [aux_sym_string_literal_token1] = ACTIONS(570), - [sym_char_literal] = ACTIONS(568), - [anon_sym_true] = ACTIONS(572), - [anon_sym_false] = ACTIONS(572), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(552), - [sym_super] = ACTIONS(552), - [sym_crate] = ACTIONS(552), - [sym_metavariable] = ACTIONS(574), - [sym__raw_string_literal_start] = ACTIONS(576), - [sym_float_literal] = ACTIONS(568), + [aux_sym_macro_def_args_repeat1] = STATE(67), + [aux_sym__non_special_token_repeat1] = STATE(142), + [sym_identifier] = ACTIONS(557), + [anon_sym_SEMI] = ACTIONS(559), + [anon_sym_LPAREN] = ACTIONS(561), + [anon_sym_RPAREN] = ACTIONS(585), + [anon_sym_LBRACK] = ACTIONS(565), + [anon_sym_LBRACE] = ACTIONS(567), + [anon_sym_COMMA] = ACTIONS(559), + [anon_sym_EQ_GT] = ACTIONS(559), + [anon_sym_COLON] = ACTIONS(569), + [anon_sym_DOLLAR] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(569), + [anon_sym_QMARK] = ACTIONS(559), + [anon_sym_u8] = ACTIONS(557), + [anon_sym_i8] = ACTIONS(557), + [anon_sym_u16] = ACTIONS(557), + [anon_sym_i16] = ACTIONS(557), + [anon_sym_u32] = ACTIONS(557), + [anon_sym_i32] = ACTIONS(557), + [anon_sym_u64] = ACTIONS(557), + [anon_sym_i64] = ACTIONS(557), + [anon_sym_u128] = ACTIONS(557), + [anon_sym_i128] = ACTIONS(557), + [anon_sym_isize] = ACTIONS(557), + [anon_sym_usize] = ACTIONS(557), + [anon_sym_f32] = ACTIONS(557), + [anon_sym_f64] = ACTIONS(557), + [anon_sym_bool] = ACTIONS(557), + [anon_sym_str] = ACTIONS(557), + [anon_sym_char] = ACTIONS(557), + [anon_sym_DASH] = ACTIONS(569), + [anon_sym_SLASH] = ACTIONS(569), + [anon_sym_PERCENT] = ACTIONS(569), + [anon_sym_CARET] = ACTIONS(569), + [anon_sym_BANG] = ACTIONS(569), + [anon_sym_AMP] = ACTIONS(569), + [anon_sym_PIPE] = ACTIONS(569), + [anon_sym_AMP_AMP] = ACTIONS(559), + [anon_sym_PIPE_PIPE] = ACTIONS(559), + [anon_sym_LT_LT] = ACTIONS(569), + [anon_sym_GT_GT] = ACTIONS(569), + [anon_sym_PLUS_EQ] = ACTIONS(559), + [anon_sym_DASH_EQ] = ACTIONS(559), + [anon_sym_STAR_EQ] = ACTIONS(559), + [anon_sym_SLASH_EQ] = ACTIONS(559), + [anon_sym_PERCENT_EQ] = ACTIONS(559), + [anon_sym_CARET_EQ] = ACTIONS(559), + [anon_sym_AMP_EQ] = ACTIONS(559), + [anon_sym_PIPE_EQ] = ACTIONS(559), + [anon_sym_LT_LT_EQ] = ACTIONS(559), + [anon_sym_GT_GT_EQ] = ACTIONS(559), + [anon_sym_EQ] = ACTIONS(569), + [anon_sym_EQ_EQ] = ACTIONS(559), + [anon_sym_BANG_EQ] = ACTIONS(559), + [anon_sym_GT] = ACTIONS(569), + [anon_sym_LT] = ACTIONS(569), + [anon_sym_GT_EQ] = ACTIONS(559), + [anon_sym_LT_EQ] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(559), + [anon_sym__] = ACTIONS(569), + [anon_sym_DOT] = ACTIONS(569), + [anon_sym_DOT_DOT] = ACTIONS(569), + [anon_sym_DOT_DOT_DOT] = ACTIONS(559), + [anon_sym_DOT_DOT_EQ] = ACTIONS(559), + [anon_sym_COLON_COLON] = ACTIONS(559), + [anon_sym_DASH_GT] = ACTIONS(559), + [anon_sym_POUND] = ACTIONS(559), + [anon_sym_SQUOTE] = ACTIONS(557), + [anon_sym_as] = ACTIONS(557), + [anon_sym_async] = ACTIONS(557), + [anon_sym_await] = ACTIONS(557), + [anon_sym_break] = ACTIONS(557), + [anon_sym_const] = ACTIONS(557), + [anon_sym_continue] = ACTIONS(557), + [anon_sym_default] = ACTIONS(557), + [anon_sym_enum] = ACTIONS(557), + [anon_sym_fn] = ACTIONS(557), + [anon_sym_for] = ACTIONS(557), + [anon_sym_if] = ACTIONS(557), + [anon_sym_impl] = ACTIONS(557), + [anon_sym_let] = ACTIONS(557), + [anon_sym_loop] = ACTIONS(557), + [anon_sym_match] = ACTIONS(557), + [anon_sym_mod] = ACTIONS(557), + [anon_sym_pub] = ACTIONS(557), + [anon_sym_return] = ACTIONS(557), + [anon_sym_static] = ACTIONS(557), + [anon_sym_struct] = ACTIONS(557), + [anon_sym_trait] = ACTIONS(557), + [anon_sym_type] = ACTIONS(557), + [anon_sym_union] = ACTIONS(557), + [anon_sym_unsafe] = ACTIONS(557), + [anon_sym_use] = ACTIONS(557), + [anon_sym_where] = ACTIONS(557), + [anon_sym_while] = ACTIONS(557), + [sym_mutable_specifier] = ACTIONS(557), + [sym_integer_literal] = ACTIONS(573), + [aux_sym_string_literal_token1] = ACTIONS(575), + [sym_char_literal] = ACTIONS(573), + [anon_sym_true] = ACTIONS(577), + [anon_sym_false] = ACTIONS(577), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(557), + [sym_super] = ACTIONS(557), + [sym_crate] = ACTIONS(557), + [sym_metavariable] = ACTIONS(579), + [sym__raw_string_literal_start] = ACTIONS(581), + [sym_float_literal] = ACTIONS(573), }, [72] = { - [sym__token_pattern] = STATE(149), - [sym_token_tree_pattern] = STATE(166), - [sym_token_binding_pattern] = STATE(166), - [sym_token_repetition_pattern] = STATE(166), - [sym__literal] = STATE(166), - [sym_string_literal] = STATE(156), - [sym_raw_string_literal] = STATE(156), - [sym_boolean_literal] = STATE(156), + [sym__token_pattern] = STATE(160), + [sym_token_tree_pattern] = STATE(173), + [sym_token_binding_pattern] = STATE(173), + [sym_token_repetition_pattern] = STATE(173), + [sym__literal] = STATE(173), + [sym_string_literal] = STATE(166), + [sym_raw_string_literal] = STATE(166), + [sym_boolean_literal] = STATE(166), [sym_line_comment] = STATE(72), [sym_block_comment] = STATE(72), - [aux_sym_token_tree_pattern_repeat1] = STATE(67), - [aux_sym__non_special_token_repeat1] = STATE(135), - [sym_identifier] = ACTIONS(552), - [anon_sym_SEMI] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(556), - [anon_sym_RPAREN] = ACTIONS(580), - [anon_sym_LBRACK] = ACTIONS(560), - [anon_sym_LBRACE] = ACTIONS(562), - [anon_sym_EQ_GT] = ACTIONS(554), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_QMARK] = ACTIONS(554), - [anon_sym_u8] = ACTIONS(552), - [anon_sym_i8] = ACTIONS(552), - [anon_sym_u16] = ACTIONS(552), - [anon_sym_i16] = ACTIONS(552), - [anon_sym_u32] = ACTIONS(552), - [anon_sym_i32] = ACTIONS(552), - [anon_sym_u64] = ACTIONS(552), - [anon_sym_i64] = ACTIONS(552), - [anon_sym_u128] = ACTIONS(552), - [anon_sym_i128] = ACTIONS(552), - [anon_sym_isize] = ACTIONS(552), - [anon_sym_usize] = ACTIONS(552), - [anon_sym_f32] = ACTIONS(552), - [anon_sym_f64] = ACTIONS(552), - [anon_sym_bool] = ACTIONS(552), - [anon_sym_str] = ACTIONS(552), - [anon_sym_char] = ACTIONS(552), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_AMP] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_AMP_AMP] = ACTIONS(554), - [anon_sym_PIPE_PIPE] = ACTIONS(554), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_GT_GT] = ACTIONS(564), - [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_CARET_EQ] = ACTIONS(554), - [anon_sym_AMP_EQ] = ACTIONS(554), - [anon_sym_PIPE_EQ] = ACTIONS(554), - [anon_sym_LT_LT_EQ] = ACTIONS(554), - [anon_sym_GT_GT_EQ] = ACTIONS(554), - [anon_sym_EQ] = ACTIONS(564), - [anon_sym_EQ_EQ] = ACTIONS(554), - [anon_sym_BANG_EQ] = ACTIONS(554), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT_EQ] = ACTIONS(554), - [anon_sym_LT_EQ] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(554), - [anon_sym__] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(554), - [anon_sym_DOT_DOT_EQ] = ACTIONS(554), - [anon_sym_COMMA] = ACTIONS(554), - [anon_sym_COLON_COLON] = ACTIONS(554), - [anon_sym_DASH_GT] = ACTIONS(554), - [anon_sym_POUND] = ACTIONS(554), - [anon_sym_SQUOTE] = ACTIONS(552), - [anon_sym_as] = ACTIONS(552), - [anon_sym_async] = ACTIONS(552), - [anon_sym_await] = ACTIONS(552), - [anon_sym_break] = ACTIONS(552), - [anon_sym_const] = ACTIONS(552), - [anon_sym_continue] = ACTIONS(552), - [anon_sym_default] = ACTIONS(552), - [anon_sym_enum] = ACTIONS(552), - [anon_sym_fn] = ACTIONS(552), - [anon_sym_for] = ACTIONS(552), - [anon_sym_if] = ACTIONS(552), - [anon_sym_impl] = ACTIONS(552), - [anon_sym_let] = ACTIONS(552), - [anon_sym_loop] = ACTIONS(552), - [anon_sym_match] = ACTIONS(552), - [anon_sym_mod] = ACTIONS(552), - [anon_sym_pub] = ACTIONS(552), - [anon_sym_return] = ACTIONS(552), - [anon_sym_static] = ACTIONS(552), - [anon_sym_struct] = ACTIONS(552), - [anon_sym_trait] = ACTIONS(552), - [anon_sym_type] = ACTIONS(552), - [anon_sym_union] = ACTIONS(552), - [anon_sym_unsafe] = ACTIONS(552), - [anon_sym_use] = ACTIONS(552), - [anon_sym_where] = ACTIONS(552), - [anon_sym_while] = ACTIONS(552), - [sym_mutable_specifier] = ACTIONS(552), - [sym_integer_literal] = ACTIONS(568), - [aux_sym_string_literal_token1] = ACTIONS(570), - [sym_char_literal] = ACTIONS(568), - [anon_sym_true] = ACTIONS(572), - [anon_sym_false] = ACTIONS(572), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(552), - [sym_super] = ACTIONS(552), - [sym_crate] = ACTIONS(552), - [sym_metavariable] = ACTIONS(574), - [sym__raw_string_literal_start] = ACTIONS(576), - [sym_float_literal] = ACTIONS(568), + [aux_sym_macro_def_args_repeat1] = STATE(84), + [aux_sym__non_special_token_repeat1] = STATE(142), + [sym_identifier] = ACTIONS(557), + [anon_sym_SEMI] = ACTIONS(559), + [anon_sym_LPAREN] = ACTIONS(561), + [anon_sym_LBRACK] = ACTIONS(565), + [anon_sym_LBRACE] = ACTIONS(567), + [anon_sym_RBRACE] = ACTIONS(587), + [anon_sym_COMMA] = ACTIONS(559), + [anon_sym_EQ_GT] = ACTIONS(559), + [anon_sym_COLON] = ACTIONS(569), + [anon_sym_DOLLAR] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(569), + [anon_sym_QMARK] = ACTIONS(559), + [anon_sym_u8] = ACTIONS(557), + [anon_sym_i8] = ACTIONS(557), + [anon_sym_u16] = ACTIONS(557), + [anon_sym_i16] = ACTIONS(557), + [anon_sym_u32] = ACTIONS(557), + [anon_sym_i32] = ACTIONS(557), + [anon_sym_u64] = ACTIONS(557), + [anon_sym_i64] = ACTIONS(557), + [anon_sym_u128] = ACTIONS(557), + [anon_sym_i128] = ACTIONS(557), + [anon_sym_isize] = ACTIONS(557), + [anon_sym_usize] = ACTIONS(557), + [anon_sym_f32] = ACTIONS(557), + [anon_sym_f64] = ACTIONS(557), + [anon_sym_bool] = ACTIONS(557), + [anon_sym_str] = ACTIONS(557), + [anon_sym_char] = ACTIONS(557), + [anon_sym_DASH] = ACTIONS(569), + [anon_sym_SLASH] = ACTIONS(569), + [anon_sym_PERCENT] = ACTIONS(569), + [anon_sym_CARET] = ACTIONS(569), + [anon_sym_BANG] = ACTIONS(569), + [anon_sym_AMP] = ACTIONS(569), + [anon_sym_PIPE] = ACTIONS(569), + [anon_sym_AMP_AMP] = ACTIONS(559), + [anon_sym_PIPE_PIPE] = ACTIONS(559), + [anon_sym_LT_LT] = ACTIONS(569), + [anon_sym_GT_GT] = ACTIONS(569), + [anon_sym_PLUS_EQ] = ACTIONS(559), + [anon_sym_DASH_EQ] = ACTIONS(559), + [anon_sym_STAR_EQ] = ACTIONS(559), + [anon_sym_SLASH_EQ] = ACTIONS(559), + [anon_sym_PERCENT_EQ] = ACTIONS(559), + [anon_sym_CARET_EQ] = ACTIONS(559), + [anon_sym_AMP_EQ] = ACTIONS(559), + [anon_sym_PIPE_EQ] = ACTIONS(559), + [anon_sym_LT_LT_EQ] = ACTIONS(559), + [anon_sym_GT_GT_EQ] = ACTIONS(559), + [anon_sym_EQ] = ACTIONS(569), + [anon_sym_EQ_EQ] = ACTIONS(559), + [anon_sym_BANG_EQ] = ACTIONS(559), + [anon_sym_GT] = ACTIONS(569), + [anon_sym_LT] = ACTIONS(569), + [anon_sym_GT_EQ] = ACTIONS(559), + [anon_sym_LT_EQ] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(559), + [anon_sym__] = ACTIONS(569), + [anon_sym_DOT] = ACTIONS(569), + [anon_sym_DOT_DOT] = ACTIONS(569), + [anon_sym_DOT_DOT_DOT] = ACTIONS(559), + [anon_sym_DOT_DOT_EQ] = ACTIONS(559), + [anon_sym_COLON_COLON] = ACTIONS(559), + [anon_sym_DASH_GT] = ACTIONS(559), + [anon_sym_POUND] = ACTIONS(559), + [anon_sym_SQUOTE] = ACTIONS(557), + [anon_sym_as] = ACTIONS(557), + [anon_sym_async] = ACTIONS(557), + [anon_sym_await] = ACTIONS(557), + [anon_sym_break] = ACTIONS(557), + [anon_sym_const] = ACTIONS(557), + [anon_sym_continue] = ACTIONS(557), + [anon_sym_default] = ACTIONS(557), + [anon_sym_enum] = ACTIONS(557), + [anon_sym_fn] = ACTIONS(557), + [anon_sym_for] = ACTIONS(557), + [anon_sym_if] = ACTIONS(557), + [anon_sym_impl] = ACTIONS(557), + [anon_sym_let] = ACTIONS(557), + [anon_sym_loop] = ACTIONS(557), + [anon_sym_match] = ACTIONS(557), + [anon_sym_mod] = ACTIONS(557), + [anon_sym_pub] = ACTIONS(557), + [anon_sym_return] = ACTIONS(557), + [anon_sym_static] = ACTIONS(557), + [anon_sym_struct] = ACTIONS(557), + [anon_sym_trait] = ACTIONS(557), + [anon_sym_type] = ACTIONS(557), + [anon_sym_union] = ACTIONS(557), + [anon_sym_unsafe] = ACTIONS(557), + [anon_sym_use] = ACTIONS(557), + [anon_sym_where] = ACTIONS(557), + [anon_sym_while] = ACTIONS(557), + [sym_mutable_specifier] = ACTIONS(557), + [sym_integer_literal] = ACTIONS(573), + [aux_sym_string_literal_token1] = ACTIONS(575), + [sym_char_literal] = ACTIONS(573), + [anon_sym_true] = ACTIONS(577), + [anon_sym_false] = ACTIONS(577), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(557), + [sym_super] = ACTIONS(557), + [sym_crate] = ACTIONS(557), + [sym_metavariable] = ACTIONS(579), + [sym__raw_string_literal_start] = ACTIONS(581), + [sym_float_literal] = ACTIONS(573), }, [73] = { - [sym__token_pattern] = STATE(149), - [sym_token_tree_pattern] = STATE(166), - [sym_token_binding_pattern] = STATE(166), - [sym_token_repetition_pattern] = STATE(166), - [sym__literal] = STATE(166), - [sym_string_literal] = STATE(156), - [sym_raw_string_literal] = STATE(156), - [sym_boolean_literal] = STATE(156), + [sym__token_pattern] = STATE(160), + [sym_token_tree_pattern] = STATE(173), + [sym_token_binding_pattern] = STATE(173), + [sym_token_repetition_pattern] = STATE(173), + [sym__literal] = STATE(173), + [sym_string_literal] = STATE(166), + [sym_raw_string_literal] = STATE(166), + [sym_boolean_literal] = STATE(166), [sym_line_comment] = STATE(73), [sym_block_comment] = STATE(73), - [aux_sym_token_tree_pattern_repeat1] = STATE(67), - [aux_sym__non_special_token_repeat1] = STATE(135), - [sym_identifier] = ACTIONS(552), - [anon_sym_SEMI] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(556), - [anon_sym_LBRACK] = ACTIONS(560), - [anon_sym_RBRACK] = ACTIONS(580), - [anon_sym_LBRACE] = ACTIONS(562), - [anon_sym_EQ_GT] = ACTIONS(554), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_QMARK] = ACTIONS(554), - [anon_sym_u8] = ACTIONS(552), - [anon_sym_i8] = ACTIONS(552), - [anon_sym_u16] = ACTIONS(552), - [anon_sym_i16] = ACTIONS(552), - [anon_sym_u32] = ACTIONS(552), - [anon_sym_i32] = ACTIONS(552), - [anon_sym_u64] = ACTIONS(552), - [anon_sym_i64] = ACTIONS(552), - [anon_sym_u128] = ACTIONS(552), - [anon_sym_i128] = ACTIONS(552), - [anon_sym_isize] = ACTIONS(552), - [anon_sym_usize] = ACTIONS(552), - [anon_sym_f32] = ACTIONS(552), - [anon_sym_f64] = ACTIONS(552), - [anon_sym_bool] = ACTIONS(552), - [anon_sym_str] = ACTIONS(552), - [anon_sym_char] = ACTIONS(552), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_AMP] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_AMP_AMP] = ACTIONS(554), - [anon_sym_PIPE_PIPE] = ACTIONS(554), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_GT_GT] = ACTIONS(564), - [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_CARET_EQ] = ACTIONS(554), - [anon_sym_AMP_EQ] = ACTIONS(554), - [anon_sym_PIPE_EQ] = ACTIONS(554), - [anon_sym_LT_LT_EQ] = ACTIONS(554), - [anon_sym_GT_GT_EQ] = ACTIONS(554), - [anon_sym_EQ] = ACTIONS(564), - [anon_sym_EQ_EQ] = ACTIONS(554), - [anon_sym_BANG_EQ] = ACTIONS(554), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT_EQ] = ACTIONS(554), - [anon_sym_LT_EQ] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(554), - [anon_sym__] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(554), - [anon_sym_DOT_DOT_EQ] = ACTIONS(554), - [anon_sym_COMMA] = ACTIONS(554), - [anon_sym_COLON_COLON] = ACTIONS(554), - [anon_sym_DASH_GT] = ACTIONS(554), - [anon_sym_POUND] = ACTIONS(554), - [anon_sym_SQUOTE] = ACTIONS(552), - [anon_sym_as] = ACTIONS(552), - [anon_sym_async] = ACTIONS(552), - [anon_sym_await] = ACTIONS(552), - [anon_sym_break] = ACTIONS(552), - [anon_sym_const] = ACTIONS(552), - [anon_sym_continue] = ACTIONS(552), - [anon_sym_default] = ACTIONS(552), - [anon_sym_enum] = ACTIONS(552), - [anon_sym_fn] = ACTIONS(552), - [anon_sym_for] = ACTIONS(552), - [anon_sym_if] = ACTIONS(552), - [anon_sym_impl] = ACTIONS(552), - [anon_sym_let] = ACTIONS(552), - [anon_sym_loop] = ACTIONS(552), - [anon_sym_match] = ACTIONS(552), - [anon_sym_mod] = ACTIONS(552), - [anon_sym_pub] = ACTIONS(552), - [anon_sym_return] = ACTIONS(552), - [anon_sym_static] = ACTIONS(552), - [anon_sym_struct] = ACTIONS(552), - [anon_sym_trait] = ACTIONS(552), - [anon_sym_type] = ACTIONS(552), - [anon_sym_union] = ACTIONS(552), - [anon_sym_unsafe] = ACTIONS(552), - [anon_sym_use] = ACTIONS(552), - [anon_sym_where] = ACTIONS(552), - [anon_sym_while] = ACTIONS(552), - [sym_mutable_specifier] = ACTIONS(552), - [sym_integer_literal] = ACTIONS(568), - [aux_sym_string_literal_token1] = ACTIONS(570), - [sym_char_literal] = ACTIONS(568), - [anon_sym_true] = ACTIONS(572), - [anon_sym_false] = ACTIONS(572), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(552), - [sym_super] = ACTIONS(552), - [sym_crate] = ACTIONS(552), - [sym_metavariable] = ACTIONS(574), - [sym__raw_string_literal_start] = ACTIONS(576), - [sym_float_literal] = ACTIONS(568), + [aux_sym_macro_def_args_repeat1] = STATE(71), + [aux_sym__non_special_token_repeat1] = STATE(142), + [sym_identifier] = ACTIONS(557), + [anon_sym_SEMI] = ACTIONS(559), + [anon_sym_LPAREN] = ACTIONS(561), + [anon_sym_RPAREN] = ACTIONS(589), + [anon_sym_LBRACK] = ACTIONS(565), + [anon_sym_LBRACE] = ACTIONS(567), + [anon_sym_COMMA] = ACTIONS(559), + [anon_sym_EQ_GT] = ACTIONS(559), + [anon_sym_COLON] = ACTIONS(569), + [anon_sym_DOLLAR] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(569), + [anon_sym_QMARK] = ACTIONS(559), + [anon_sym_u8] = ACTIONS(557), + [anon_sym_i8] = ACTIONS(557), + [anon_sym_u16] = ACTIONS(557), + [anon_sym_i16] = ACTIONS(557), + [anon_sym_u32] = ACTIONS(557), + [anon_sym_i32] = ACTIONS(557), + [anon_sym_u64] = ACTIONS(557), + [anon_sym_i64] = ACTIONS(557), + [anon_sym_u128] = ACTIONS(557), + [anon_sym_i128] = ACTIONS(557), + [anon_sym_isize] = ACTIONS(557), + [anon_sym_usize] = ACTIONS(557), + [anon_sym_f32] = ACTIONS(557), + [anon_sym_f64] = ACTIONS(557), + [anon_sym_bool] = ACTIONS(557), + [anon_sym_str] = ACTIONS(557), + [anon_sym_char] = ACTIONS(557), + [anon_sym_DASH] = ACTIONS(569), + [anon_sym_SLASH] = ACTIONS(569), + [anon_sym_PERCENT] = ACTIONS(569), + [anon_sym_CARET] = ACTIONS(569), + [anon_sym_BANG] = ACTIONS(569), + [anon_sym_AMP] = ACTIONS(569), + [anon_sym_PIPE] = ACTIONS(569), + [anon_sym_AMP_AMP] = ACTIONS(559), + [anon_sym_PIPE_PIPE] = ACTIONS(559), + [anon_sym_LT_LT] = ACTIONS(569), + [anon_sym_GT_GT] = ACTIONS(569), + [anon_sym_PLUS_EQ] = ACTIONS(559), + [anon_sym_DASH_EQ] = ACTIONS(559), + [anon_sym_STAR_EQ] = ACTIONS(559), + [anon_sym_SLASH_EQ] = ACTIONS(559), + [anon_sym_PERCENT_EQ] = ACTIONS(559), + [anon_sym_CARET_EQ] = ACTIONS(559), + [anon_sym_AMP_EQ] = ACTIONS(559), + [anon_sym_PIPE_EQ] = ACTIONS(559), + [anon_sym_LT_LT_EQ] = ACTIONS(559), + [anon_sym_GT_GT_EQ] = ACTIONS(559), + [anon_sym_EQ] = ACTIONS(569), + [anon_sym_EQ_EQ] = ACTIONS(559), + [anon_sym_BANG_EQ] = ACTIONS(559), + [anon_sym_GT] = ACTIONS(569), + [anon_sym_LT] = ACTIONS(569), + [anon_sym_GT_EQ] = ACTIONS(559), + [anon_sym_LT_EQ] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(559), + [anon_sym__] = ACTIONS(569), + [anon_sym_DOT] = ACTIONS(569), + [anon_sym_DOT_DOT] = ACTIONS(569), + [anon_sym_DOT_DOT_DOT] = ACTIONS(559), + [anon_sym_DOT_DOT_EQ] = ACTIONS(559), + [anon_sym_COLON_COLON] = ACTIONS(559), + [anon_sym_DASH_GT] = ACTIONS(559), + [anon_sym_POUND] = ACTIONS(559), + [anon_sym_SQUOTE] = ACTIONS(557), + [anon_sym_as] = ACTIONS(557), + [anon_sym_async] = ACTIONS(557), + [anon_sym_await] = ACTIONS(557), + [anon_sym_break] = ACTIONS(557), + [anon_sym_const] = ACTIONS(557), + [anon_sym_continue] = ACTIONS(557), + [anon_sym_default] = ACTIONS(557), + [anon_sym_enum] = ACTIONS(557), + [anon_sym_fn] = ACTIONS(557), + [anon_sym_for] = ACTIONS(557), + [anon_sym_if] = ACTIONS(557), + [anon_sym_impl] = ACTIONS(557), + [anon_sym_let] = ACTIONS(557), + [anon_sym_loop] = ACTIONS(557), + [anon_sym_match] = ACTIONS(557), + [anon_sym_mod] = ACTIONS(557), + [anon_sym_pub] = ACTIONS(557), + [anon_sym_return] = ACTIONS(557), + [anon_sym_static] = ACTIONS(557), + [anon_sym_struct] = ACTIONS(557), + [anon_sym_trait] = ACTIONS(557), + [anon_sym_type] = ACTIONS(557), + [anon_sym_union] = ACTIONS(557), + [anon_sym_unsafe] = ACTIONS(557), + [anon_sym_use] = ACTIONS(557), + [anon_sym_where] = ACTIONS(557), + [anon_sym_while] = ACTIONS(557), + [sym_mutable_specifier] = ACTIONS(557), + [sym_integer_literal] = ACTIONS(573), + [aux_sym_string_literal_token1] = ACTIONS(575), + [sym_char_literal] = ACTIONS(573), + [anon_sym_true] = ACTIONS(577), + [anon_sym_false] = ACTIONS(577), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(557), + [sym_super] = ACTIONS(557), + [sym_crate] = ACTIONS(557), + [sym_metavariable] = ACTIONS(579), + [sym__raw_string_literal_start] = ACTIONS(581), + [sym_float_literal] = ACTIONS(573), }, [74] = { - [sym__token_pattern] = STATE(149), - [sym_token_tree_pattern] = STATE(166), - [sym_token_binding_pattern] = STATE(166), - [sym_token_repetition_pattern] = STATE(166), - [sym__literal] = STATE(166), - [sym_string_literal] = STATE(156), - [sym_raw_string_literal] = STATE(156), - [sym_boolean_literal] = STATE(156), + [sym__token_pattern] = STATE(160), + [sym_token_tree_pattern] = STATE(173), + [sym_token_binding_pattern] = STATE(173), + [sym_token_repetition_pattern] = STATE(173), + [sym__literal] = STATE(173), + [sym_string_literal] = STATE(166), + [sym_raw_string_literal] = STATE(166), + [sym_boolean_literal] = STATE(166), [sym_line_comment] = STATE(74), [sym_block_comment] = STATE(74), - [aux_sym_token_tree_pattern_repeat1] = STATE(67), - [aux_sym__non_special_token_repeat1] = STATE(135), - [sym_identifier] = ACTIONS(552), - [anon_sym_SEMI] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(556), - [anon_sym_LBRACK] = ACTIONS(560), - [anon_sym_LBRACE] = ACTIONS(562), - [anon_sym_RBRACE] = ACTIONS(580), - [anon_sym_EQ_GT] = ACTIONS(554), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_QMARK] = ACTIONS(554), - [anon_sym_u8] = ACTIONS(552), - [anon_sym_i8] = ACTIONS(552), - [anon_sym_u16] = ACTIONS(552), - [anon_sym_i16] = ACTIONS(552), - [anon_sym_u32] = ACTIONS(552), - [anon_sym_i32] = ACTIONS(552), - [anon_sym_u64] = ACTIONS(552), - [anon_sym_i64] = ACTIONS(552), - [anon_sym_u128] = ACTIONS(552), - [anon_sym_i128] = ACTIONS(552), - [anon_sym_isize] = ACTIONS(552), - [anon_sym_usize] = ACTIONS(552), - [anon_sym_f32] = ACTIONS(552), - [anon_sym_f64] = ACTIONS(552), - [anon_sym_bool] = ACTIONS(552), - [anon_sym_str] = ACTIONS(552), - [anon_sym_char] = ACTIONS(552), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_AMP] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_AMP_AMP] = ACTIONS(554), - [anon_sym_PIPE_PIPE] = ACTIONS(554), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_GT_GT] = ACTIONS(564), - [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_CARET_EQ] = ACTIONS(554), - [anon_sym_AMP_EQ] = ACTIONS(554), - [anon_sym_PIPE_EQ] = ACTIONS(554), - [anon_sym_LT_LT_EQ] = ACTIONS(554), - [anon_sym_GT_GT_EQ] = ACTIONS(554), - [anon_sym_EQ] = ACTIONS(564), - [anon_sym_EQ_EQ] = ACTIONS(554), - [anon_sym_BANG_EQ] = ACTIONS(554), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT_EQ] = ACTIONS(554), - [anon_sym_LT_EQ] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(554), - [anon_sym__] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(554), - [anon_sym_DOT_DOT_EQ] = ACTIONS(554), - [anon_sym_COMMA] = ACTIONS(554), - [anon_sym_COLON_COLON] = ACTIONS(554), - [anon_sym_DASH_GT] = ACTIONS(554), - [anon_sym_POUND] = ACTIONS(554), - [anon_sym_SQUOTE] = ACTIONS(552), - [anon_sym_as] = ACTIONS(552), - [anon_sym_async] = ACTIONS(552), - [anon_sym_await] = ACTIONS(552), - [anon_sym_break] = ACTIONS(552), - [anon_sym_const] = ACTIONS(552), - [anon_sym_continue] = ACTIONS(552), - [anon_sym_default] = ACTIONS(552), - [anon_sym_enum] = ACTIONS(552), - [anon_sym_fn] = ACTIONS(552), - [anon_sym_for] = ACTIONS(552), - [anon_sym_if] = ACTIONS(552), - [anon_sym_impl] = ACTIONS(552), - [anon_sym_let] = ACTIONS(552), - [anon_sym_loop] = ACTIONS(552), - [anon_sym_match] = ACTIONS(552), - [anon_sym_mod] = ACTIONS(552), - [anon_sym_pub] = ACTIONS(552), - [anon_sym_return] = ACTIONS(552), - [anon_sym_static] = ACTIONS(552), - [anon_sym_struct] = ACTIONS(552), - [anon_sym_trait] = ACTIONS(552), - [anon_sym_type] = ACTIONS(552), - [anon_sym_union] = ACTIONS(552), - [anon_sym_unsafe] = ACTIONS(552), - [anon_sym_use] = ACTIONS(552), - [anon_sym_where] = ACTIONS(552), - [anon_sym_while] = ACTIONS(552), - [sym_mutable_specifier] = ACTIONS(552), - [sym_integer_literal] = ACTIONS(568), - [aux_sym_string_literal_token1] = ACTIONS(570), - [sym_char_literal] = ACTIONS(568), - [anon_sym_true] = ACTIONS(572), - [anon_sym_false] = ACTIONS(572), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(552), - [sym_super] = ACTIONS(552), - [sym_crate] = ACTIONS(552), - [sym_metavariable] = ACTIONS(574), - [sym__raw_string_literal_start] = ACTIONS(576), - [sym_float_literal] = ACTIONS(568), + [aux_sym_macro_def_args_repeat1] = STATE(77), + [aux_sym__non_special_token_repeat1] = STATE(142), + [sym_identifier] = ACTIONS(557), + [anon_sym_SEMI] = ACTIONS(559), + [anon_sym_LPAREN] = ACTIONS(561), + [anon_sym_LBRACK] = ACTIONS(565), + [anon_sym_LBRACE] = ACTIONS(567), + [anon_sym_RBRACE] = ACTIONS(563), + [anon_sym_COMMA] = ACTIONS(559), + [anon_sym_EQ_GT] = ACTIONS(559), + [anon_sym_COLON] = ACTIONS(569), + [anon_sym_DOLLAR] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(569), + [anon_sym_QMARK] = ACTIONS(559), + [anon_sym_u8] = ACTIONS(557), + [anon_sym_i8] = ACTIONS(557), + [anon_sym_u16] = ACTIONS(557), + [anon_sym_i16] = ACTIONS(557), + [anon_sym_u32] = ACTIONS(557), + [anon_sym_i32] = ACTIONS(557), + [anon_sym_u64] = ACTIONS(557), + [anon_sym_i64] = ACTIONS(557), + [anon_sym_u128] = ACTIONS(557), + [anon_sym_i128] = ACTIONS(557), + [anon_sym_isize] = ACTIONS(557), + [anon_sym_usize] = ACTIONS(557), + [anon_sym_f32] = ACTIONS(557), + [anon_sym_f64] = ACTIONS(557), + [anon_sym_bool] = ACTIONS(557), + [anon_sym_str] = ACTIONS(557), + [anon_sym_char] = ACTIONS(557), + [anon_sym_DASH] = ACTIONS(569), + [anon_sym_SLASH] = ACTIONS(569), + [anon_sym_PERCENT] = ACTIONS(569), + [anon_sym_CARET] = ACTIONS(569), + [anon_sym_BANG] = ACTIONS(569), + [anon_sym_AMP] = ACTIONS(569), + [anon_sym_PIPE] = ACTIONS(569), + [anon_sym_AMP_AMP] = ACTIONS(559), + [anon_sym_PIPE_PIPE] = ACTIONS(559), + [anon_sym_LT_LT] = ACTIONS(569), + [anon_sym_GT_GT] = ACTIONS(569), + [anon_sym_PLUS_EQ] = ACTIONS(559), + [anon_sym_DASH_EQ] = ACTIONS(559), + [anon_sym_STAR_EQ] = ACTIONS(559), + [anon_sym_SLASH_EQ] = ACTIONS(559), + [anon_sym_PERCENT_EQ] = ACTIONS(559), + [anon_sym_CARET_EQ] = ACTIONS(559), + [anon_sym_AMP_EQ] = ACTIONS(559), + [anon_sym_PIPE_EQ] = ACTIONS(559), + [anon_sym_LT_LT_EQ] = ACTIONS(559), + [anon_sym_GT_GT_EQ] = ACTIONS(559), + [anon_sym_EQ] = ACTIONS(569), + [anon_sym_EQ_EQ] = ACTIONS(559), + [anon_sym_BANG_EQ] = ACTIONS(559), + [anon_sym_GT] = ACTIONS(569), + [anon_sym_LT] = ACTIONS(569), + [anon_sym_GT_EQ] = ACTIONS(559), + [anon_sym_LT_EQ] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(559), + [anon_sym__] = ACTIONS(569), + [anon_sym_DOT] = ACTIONS(569), + [anon_sym_DOT_DOT] = ACTIONS(569), + [anon_sym_DOT_DOT_DOT] = ACTIONS(559), + [anon_sym_DOT_DOT_EQ] = ACTIONS(559), + [anon_sym_COLON_COLON] = ACTIONS(559), + [anon_sym_DASH_GT] = ACTIONS(559), + [anon_sym_POUND] = ACTIONS(559), + [anon_sym_SQUOTE] = ACTIONS(557), + [anon_sym_as] = ACTIONS(557), + [anon_sym_async] = ACTIONS(557), + [anon_sym_await] = ACTIONS(557), + [anon_sym_break] = ACTIONS(557), + [anon_sym_const] = ACTIONS(557), + [anon_sym_continue] = ACTIONS(557), + [anon_sym_default] = ACTIONS(557), + [anon_sym_enum] = ACTIONS(557), + [anon_sym_fn] = ACTIONS(557), + [anon_sym_for] = ACTIONS(557), + [anon_sym_if] = ACTIONS(557), + [anon_sym_impl] = ACTIONS(557), + [anon_sym_let] = ACTIONS(557), + [anon_sym_loop] = ACTIONS(557), + [anon_sym_match] = ACTIONS(557), + [anon_sym_mod] = ACTIONS(557), + [anon_sym_pub] = ACTIONS(557), + [anon_sym_return] = ACTIONS(557), + [anon_sym_static] = ACTIONS(557), + [anon_sym_struct] = ACTIONS(557), + [anon_sym_trait] = ACTIONS(557), + [anon_sym_type] = ACTIONS(557), + [anon_sym_union] = ACTIONS(557), + [anon_sym_unsafe] = ACTIONS(557), + [anon_sym_use] = ACTIONS(557), + [anon_sym_where] = ACTIONS(557), + [anon_sym_while] = ACTIONS(557), + [sym_mutable_specifier] = ACTIONS(557), + [sym_integer_literal] = ACTIONS(573), + [aux_sym_string_literal_token1] = ACTIONS(575), + [sym_char_literal] = ACTIONS(573), + [anon_sym_true] = ACTIONS(577), + [anon_sym_false] = ACTIONS(577), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(557), + [sym_super] = ACTIONS(557), + [sym_crate] = ACTIONS(557), + [sym_metavariable] = ACTIONS(579), + [sym__raw_string_literal_start] = ACTIONS(581), + [sym_float_literal] = ACTIONS(573), }, [75] = { - [sym__token_pattern] = STATE(149), - [sym_token_tree_pattern] = STATE(166), - [sym_token_binding_pattern] = STATE(166), - [sym_token_repetition_pattern] = STATE(166), - [sym__literal] = STATE(166), - [sym_string_literal] = STATE(156), - [sym_raw_string_literal] = STATE(156), - [sym_boolean_literal] = STATE(156), + [sym__token_pattern] = STATE(160), + [sym_token_tree_pattern] = STATE(173), + [sym_token_binding_pattern] = STATE(173), + [sym_token_repetition_pattern] = STATE(173), + [sym__literal] = STATE(173), + [sym_string_literal] = STATE(166), + [sym_raw_string_literal] = STATE(166), + [sym_boolean_literal] = STATE(166), [sym_line_comment] = STATE(75), [sym_block_comment] = STATE(75), - [aux_sym_token_tree_pattern_repeat1] = STATE(79), - [aux_sym__non_special_token_repeat1] = STATE(135), - [sym_identifier] = ACTIONS(552), - [anon_sym_SEMI] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(556), - [anon_sym_LBRACK] = ACTIONS(560), - [anon_sym_LBRACE] = ACTIONS(562), - [anon_sym_RBRACE] = ACTIONS(578), - [anon_sym_EQ_GT] = ACTIONS(554), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_QMARK] = ACTIONS(554), - [anon_sym_u8] = ACTIONS(552), - [anon_sym_i8] = ACTIONS(552), - [anon_sym_u16] = ACTIONS(552), - [anon_sym_i16] = ACTIONS(552), - [anon_sym_u32] = ACTIONS(552), - [anon_sym_i32] = ACTIONS(552), - [anon_sym_u64] = ACTIONS(552), - [anon_sym_i64] = ACTIONS(552), - [anon_sym_u128] = ACTIONS(552), - [anon_sym_i128] = ACTIONS(552), - [anon_sym_isize] = ACTIONS(552), - [anon_sym_usize] = ACTIONS(552), - [anon_sym_f32] = ACTIONS(552), - [anon_sym_f64] = ACTIONS(552), - [anon_sym_bool] = ACTIONS(552), - [anon_sym_str] = ACTIONS(552), - [anon_sym_char] = ACTIONS(552), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_AMP] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_AMP_AMP] = ACTIONS(554), - [anon_sym_PIPE_PIPE] = ACTIONS(554), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_GT_GT] = ACTIONS(564), - [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_CARET_EQ] = ACTIONS(554), - [anon_sym_AMP_EQ] = ACTIONS(554), - [anon_sym_PIPE_EQ] = ACTIONS(554), - [anon_sym_LT_LT_EQ] = ACTIONS(554), - [anon_sym_GT_GT_EQ] = ACTIONS(554), - [anon_sym_EQ] = ACTIONS(564), - [anon_sym_EQ_EQ] = ACTIONS(554), - [anon_sym_BANG_EQ] = ACTIONS(554), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT_EQ] = ACTIONS(554), - [anon_sym_LT_EQ] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(554), - [anon_sym__] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(554), - [anon_sym_DOT_DOT_EQ] = ACTIONS(554), - [anon_sym_COMMA] = ACTIONS(554), - [anon_sym_COLON_COLON] = ACTIONS(554), - [anon_sym_DASH_GT] = ACTIONS(554), - [anon_sym_POUND] = ACTIONS(554), - [anon_sym_SQUOTE] = ACTIONS(552), - [anon_sym_as] = ACTIONS(552), - [anon_sym_async] = ACTIONS(552), - [anon_sym_await] = ACTIONS(552), - [anon_sym_break] = ACTIONS(552), - [anon_sym_const] = ACTIONS(552), - [anon_sym_continue] = ACTIONS(552), - [anon_sym_default] = ACTIONS(552), - [anon_sym_enum] = ACTIONS(552), - [anon_sym_fn] = ACTIONS(552), - [anon_sym_for] = ACTIONS(552), - [anon_sym_if] = ACTIONS(552), - [anon_sym_impl] = ACTIONS(552), - [anon_sym_let] = ACTIONS(552), - [anon_sym_loop] = ACTIONS(552), - [anon_sym_match] = ACTIONS(552), - [anon_sym_mod] = ACTIONS(552), - [anon_sym_pub] = ACTIONS(552), - [anon_sym_return] = ACTIONS(552), - [anon_sym_static] = ACTIONS(552), - [anon_sym_struct] = ACTIONS(552), - [anon_sym_trait] = ACTIONS(552), - [anon_sym_type] = ACTIONS(552), - [anon_sym_union] = ACTIONS(552), - [anon_sym_unsafe] = ACTIONS(552), - [anon_sym_use] = ACTIONS(552), - [anon_sym_where] = ACTIONS(552), - [anon_sym_while] = ACTIONS(552), - [sym_mutable_specifier] = ACTIONS(552), - [sym_integer_literal] = ACTIONS(568), - [aux_sym_string_literal_token1] = ACTIONS(570), - [sym_char_literal] = ACTIONS(568), - [anon_sym_true] = ACTIONS(572), - [anon_sym_false] = ACTIONS(572), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(552), - [sym_super] = ACTIONS(552), - [sym_crate] = ACTIONS(552), - [sym_metavariable] = ACTIONS(574), - [sym__raw_string_literal_start] = ACTIONS(576), - [sym_float_literal] = ACTIONS(568), + [aux_sym_macro_def_args_repeat1] = STATE(82), + [aux_sym__non_special_token_repeat1] = STATE(142), + [sym_identifier] = ACTIONS(557), + [anon_sym_SEMI] = ACTIONS(559), + [anon_sym_LPAREN] = ACTIONS(561), + [anon_sym_LBRACK] = ACTIONS(565), + [anon_sym_RBRACK] = ACTIONS(587), + [anon_sym_LBRACE] = ACTIONS(567), + [anon_sym_COMMA] = ACTIONS(559), + [anon_sym_EQ_GT] = ACTIONS(559), + [anon_sym_COLON] = ACTIONS(569), + [anon_sym_DOLLAR] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(569), + [anon_sym_QMARK] = ACTIONS(559), + [anon_sym_u8] = ACTIONS(557), + [anon_sym_i8] = ACTIONS(557), + [anon_sym_u16] = ACTIONS(557), + [anon_sym_i16] = ACTIONS(557), + [anon_sym_u32] = ACTIONS(557), + [anon_sym_i32] = ACTIONS(557), + [anon_sym_u64] = ACTIONS(557), + [anon_sym_i64] = ACTIONS(557), + [anon_sym_u128] = ACTIONS(557), + [anon_sym_i128] = ACTIONS(557), + [anon_sym_isize] = ACTIONS(557), + [anon_sym_usize] = ACTIONS(557), + [anon_sym_f32] = ACTIONS(557), + [anon_sym_f64] = ACTIONS(557), + [anon_sym_bool] = ACTIONS(557), + [anon_sym_str] = ACTIONS(557), + [anon_sym_char] = ACTIONS(557), + [anon_sym_DASH] = ACTIONS(569), + [anon_sym_SLASH] = ACTIONS(569), + [anon_sym_PERCENT] = ACTIONS(569), + [anon_sym_CARET] = ACTIONS(569), + [anon_sym_BANG] = ACTIONS(569), + [anon_sym_AMP] = ACTIONS(569), + [anon_sym_PIPE] = ACTIONS(569), + [anon_sym_AMP_AMP] = ACTIONS(559), + [anon_sym_PIPE_PIPE] = ACTIONS(559), + [anon_sym_LT_LT] = ACTIONS(569), + [anon_sym_GT_GT] = ACTIONS(569), + [anon_sym_PLUS_EQ] = ACTIONS(559), + [anon_sym_DASH_EQ] = ACTIONS(559), + [anon_sym_STAR_EQ] = ACTIONS(559), + [anon_sym_SLASH_EQ] = ACTIONS(559), + [anon_sym_PERCENT_EQ] = ACTIONS(559), + [anon_sym_CARET_EQ] = ACTIONS(559), + [anon_sym_AMP_EQ] = ACTIONS(559), + [anon_sym_PIPE_EQ] = ACTIONS(559), + [anon_sym_LT_LT_EQ] = ACTIONS(559), + [anon_sym_GT_GT_EQ] = ACTIONS(559), + [anon_sym_EQ] = ACTIONS(569), + [anon_sym_EQ_EQ] = ACTIONS(559), + [anon_sym_BANG_EQ] = ACTIONS(559), + [anon_sym_GT] = ACTIONS(569), + [anon_sym_LT] = ACTIONS(569), + [anon_sym_GT_EQ] = ACTIONS(559), + [anon_sym_LT_EQ] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(559), + [anon_sym__] = ACTIONS(569), + [anon_sym_DOT] = ACTIONS(569), + [anon_sym_DOT_DOT] = ACTIONS(569), + [anon_sym_DOT_DOT_DOT] = ACTIONS(559), + [anon_sym_DOT_DOT_EQ] = ACTIONS(559), + [anon_sym_COLON_COLON] = ACTIONS(559), + [anon_sym_DASH_GT] = ACTIONS(559), + [anon_sym_POUND] = ACTIONS(559), + [anon_sym_SQUOTE] = ACTIONS(557), + [anon_sym_as] = ACTIONS(557), + [anon_sym_async] = ACTIONS(557), + [anon_sym_await] = ACTIONS(557), + [anon_sym_break] = ACTIONS(557), + [anon_sym_const] = ACTIONS(557), + [anon_sym_continue] = ACTIONS(557), + [anon_sym_default] = ACTIONS(557), + [anon_sym_enum] = ACTIONS(557), + [anon_sym_fn] = ACTIONS(557), + [anon_sym_for] = ACTIONS(557), + [anon_sym_if] = ACTIONS(557), + [anon_sym_impl] = ACTIONS(557), + [anon_sym_let] = ACTIONS(557), + [anon_sym_loop] = ACTIONS(557), + [anon_sym_match] = ACTIONS(557), + [anon_sym_mod] = ACTIONS(557), + [anon_sym_pub] = ACTIONS(557), + [anon_sym_return] = ACTIONS(557), + [anon_sym_static] = ACTIONS(557), + [anon_sym_struct] = ACTIONS(557), + [anon_sym_trait] = ACTIONS(557), + [anon_sym_type] = ACTIONS(557), + [anon_sym_union] = ACTIONS(557), + [anon_sym_unsafe] = ACTIONS(557), + [anon_sym_use] = ACTIONS(557), + [anon_sym_where] = ACTIONS(557), + [anon_sym_while] = ACTIONS(557), + [sym_mutable_specifier] = ACTIONS(557), + [sym_integer_literal] = ACTIONS(573), + [aux_sym_string_literal_token1] = ACTIONS(575), + [sym_char_literal] = ACTIONS(573), + [anon_sym_true] = ACTIONS(577), + [anon_sym_false] = ACTIONS(577), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(557), + [sym_super] = ACTIONS(557), + [sym_crate] = ACTIONS(557), + [sym_metavariable] = ACTIONS(579), + [sym__raw_string_literal_start] = ACTIONS(581), + [sym_float_literal] = ACTIONS(573), }, [76] = { - [sym__token_pattern] = STATE(149), - [sym_token_tree_pattern] = STATE(166), - [sym_token_binding_pattern] = STATE(166), - [sym_token_repetition_pattern] = STATE(166), - [sym__literal] = STATE(166), - [sym_string_literal] = STATE(156), - [sym_raw_string_literal] = STATE(156), - [sym_boolean_literal] = STATE(156), + [sym__token_pattern] = STATE(160), + [sym_token_tree_pattern] = STATE(173), + [sym_token_binding_pattern] = STATE(173), + [sym_token_repetition_pattern] = STATE(173), + [sym__literal] = STATE(173), + [sym_string_literal] = STATE(166), + [sym_raw_string_literal] = STATE(166), + [sym_boolean_literal] = STATE(166), [sym_line_comment] = STATE(76), [sym_block_comment] = STATE(76), - [aux_sym_token_tree_pattern_repeat1] = STATE(74), - [aux_sym__non_special_token_repeat1] = STATE(135), - [sym_identifier] = ACTIONS(552), - [anon_sym_SEMI] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(556), - [anon_sym_LBRACK] = ACTIONS(560), - [anon_sym_LBRACE] = ACTIONS(562), - [anon_sym_RBRACE] = ACTIONS(558), - [anon_sym_EQ_GT] = ACTIONS(554), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_QMARK] = ACTIONS(554), - [anon_sym_u8] = ACTIONS(552), - [anon_sym_i8] = ACTIONS(552), - [anon_sym_u16] = ACTIONS(552), - [anon_sym_i16] = ACTIONS(552), - [anon_sym_u32] = ACTIONS(552), - [anon_sym_i32] = ACTIONS(552), - [anon_sym_u64] = ACTIONS(552), - [anon_sym_i64] = ACTIONS(552), - [anon_sym_u128] = ACTIONS(552), - [anon_sym_i128] = ACTIONS(552), - [anon_sym_isize] = ACTIONS(552), - [anon_sym_usize] = ACTIONS(552), - [anon_sym_f32] = ACTIONS(552), - [anon_sym_f64] = ACTIONS(552), - [anon_sym_bool] = ACTIONS(552), - [anon_sym_str] = ACTIONS(552), - [anon_sym_char] = ACTIONS(552), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_AMP] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_AMP_AMP] = ACTIONS(554), - [anon_sym_PIPE_PIPE] = ACTIONS(554), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_GT_GT] = ACTIONS(564), - [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_CARET_EQ] = ACTIONS(554), - [anon_sym_AMP_EQ] = ACTIONS(554), - [anon_sym_PIPE_EQ] = ACTIONS(554), - [anon_sym_LT_LT_EQ] = ACTIONS(554), - [anon_sym_GT_GT_EQ] = ACTIONS(554), - [anon_sym_EQ] = ACTIONS(564), - [anon_sym_EQ_EQ] = ACTIONS(554), - [anon_sym_BANG_EQ] = ACTIONS(554), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT_EQ] = ACTIONS(554), - [anon_sym_LT_EQ] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(554), - [anon_sym__] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(554), - [anon_sym_DOT_DOT_EQ] = ACTIONS(554), - [anon_sym_COMMA] = ACTIONS(554), - [anon_sym_COLON_COLON] = ACTIONS(554), - [anon_sym_DASH_GT] = ACTIONS(554), - [anon_sym_POUND] = ACTIONS(554), - [anon_sym_SQUOTE] = ACTIONS(552), - [anon_sym_as] = ACTIONS(552), - [anon_sym_async] = ACTIONS(552), - [anon_sym_await] = ACTIONS(552), - [anon_sym_break] = ACTIONS(552), - [anon_sym_const] = ACTIONS(552), - [anon_sym_continue] = ACTIONS(552), - [anon_sym_default] = ACTIONS(552), - [anon_sym_enum] = ACTIONS(552), - [anon_sym_fn] = ACTIONS(552), - [anon_sym_for] = ACTIONS(552), - [anon_sym_if] = ACTIONS(552), - [anon_sym_impl] = ACTIONS(552), - [anon_sym_let] = ACTIONS(552), - [anon_sym_loop] = ACTIONS(552), - [anon_sym_match] = ACTIONS(552), - [anon_sym_mod] = ACTIONS(552), - [anon_sym_pub] = ACTIONS(552), - [anon_sym_return] = ACTIONS(552), - [anon_sym_static] = ACTIONS(552), - [anon_sym_struct] = ACTIONS(552), - [anon_sym_trait] = ACTIONS(552), - [anon_sym_type] = ACTIONS(552), - [anon_sym_union] = ACTIONS(552), - [anon_sym_unsafe] = ACTIONS(552), - [anon_sym_use] = ACTIONS(552), - [anon_sym_where] = ACTIONS(552), - [anon_sym_while] = ACTIONS(552), - [sym_mutable_specifier] = ACTIONS(552), - [sym_integer_literal] = ACTIONS(568), - [aux_sym_string_literal_token1] = ACTIONS(570), - [sym_char_literal] = ACTIONS(568), - [anon_sym_true] = ACTIONS(572), - [anon_sym_false] = ACTIONS(572), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(552), - [sym_super] = ACTIONS(552), - [sym_crate] = ACTIONS(552), - [sym_metavariable] = ACTIONS(574), - [sym__raw_string_literal_start] = ACTIONS(576), - [sym_float_literal] = ACTIONS(568), + [aux_sym_macro_def_args_repeat1] = STATE(67), + [aux_sym__non_special_token_repeat1] = STATE(142), + [sym_identifier] = ACTIONS(557), + [anon_sym_SEMI] = ACTIONS(559), + [anon_sym_LPAREN] = ACTIONS(561), + [anon_sym_RPAREN] = ACTIONS(591), + [anon_sym_LBRACK] = ACTIONS(565), + [anon_sym_LBRACE] = ACTIONS(567), + [anon_sym_COMMA] = ACTIONS(559), + [anon_sym_EQ_GT] = ACTIONS(559), + [anon_sym_COLON] = ACTIONS(569), + [anon_sym_DOLLAR] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(569), + [anon_sym_QMARK] = ACTIONS(559), + [anon_sym_u8] = ACTIONS(557), + [anon_sym_i8] = ACTIONS(557), + [anon_sym_u16] = ACTIONS(557), + [anon_sym_i16] = ACTIONS(557), + [anon_sym_u32] = ACTIONS(557), + [anon_sym_i32] = ACTIONS(557), + [anon_sym_u64] = ACTIONS(557), + [anon_sym_i64] = ACTIONS(557), + [anon_sym_u128] = ACTIONS(557), + [anon_sym_i128] = ACTIONS(557), + [anon_sym_isize] = ACTIONS(557), + [anon_sym_usize] = ACTIONS(557), + [anon_sym_f32] = ACTIONS(557), + [anon_sym_f64] = ACTIONS(557), + [anon_sym_bool] = ACTIONS(557), + [anon_sym_str] = ACTIONS(557), + [anon_sym_char] = ACTIONS(557), + [anon_sym_DASH] = ACTIONS(569), + [anon_sym_SLASH] = ACTIONS(569), + [anon_sym_PERCENT] = ACTIONS(569), + [anon_sym_CARET] = ACTIONS(569), + [anon_sym_BANG] = ACTIONS(569), + [anon_sym_AMP] = ACTIONS(569), + [anon_sym_PIPE] = ACTIONS(569), + [anon_sym_AMP_AMP] = ACTIONS(559), + [anon_sym_PIPE_PIPE] = ACTIONS(559), + [anon_sym_LT_LT] = ACTIONS(569), + [anon_sym_GT_GT] = ACTIONS(569), + [anon_sym_PLUS_EQ] = ACTIONS(559), + [anon_sym_DASH_EQ] = ACTIONS(559), + [anon_sym_STAR_EQ] = ACTIONS(559), + [anon_sym_SLASH_EQ] = ACTIONS(559), + [anon_sym_PERCENT_EQ] = ACTIONS(559), + [anon_sym_CARET_EQ] = ACTIONS(559), + [anon_sym_AMP_EQ] = ACTIONS(559), + [anon_sym_PIPE_EQ] = ACTIONS(559), + [anon_sym_LT_LT_EQ] = ACTIONS(559), + [anon_sym_GT_GT_EQ] = ACTIONS(559), + [anon_sym_EQ] = ACTIONS(569), + [anon_sym_EQ_EQ] = ACTIONS(559), + [anon_sym_BANG_EQ] = ACTIONS(559), + [anon_sym_GT] = ACTIONS(569), + [anon_sym_LT] = ACTIONS(569), + [anon_sym_GT_EQ] = ACTIONS(559), + [anon_sym_LT_EQ] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(559), + [anon_sym__] = ACTIONS(569), + [anon_sym_DOT] = ACTIONS(569), + [anon_sym_DOT_DOT] = ACTIONS(569), + [anon_sym_DOT_DOT_DOT] = ACTIONS(559), + [anon_sym_DOT_DOT_EQ] = ACTIONS(559), + [anon_sym_COLON_COLON] = ACTIONS(559), + [anon_sym_DASH_GT] = ACTIONS(559), + [anon_sym_POUND] = ACTIONS(559), + [anon_sym_SQUOTE] = ACTIONS(557), + [anon_sym_as] = ACTIONS(557), + [anon_sym_async] = ACTIONS(557), + [anon_sym_await] = ACTIONS(557), + [anon_sym_break] = ACTIONS(557), + [anon_sym_const] = ACTIONS(557), + [anon_sym_continue] = ACTIONS(557), + [anon_sym_default] = ACTIONS(557), + [anon_sym_enum] = ACTIONS(557), + [anon_sym_fn] = ACTIONS(557), + [anon_sym_for] = ACTIONS(557), + [anon_sym_if] = ACTIONS(557), + [anon_sym_impl] = ACTIONS(557), + [anon_sym_let] = ACTIONS(557), + [anon_sym_loop] = ACTIONS(557), + [anon_sym_match] = ACTIONS(557), + [anon_sym_mod] = ACTIONS(557), + [anon_sym_pub] = ACTIONS(557), + [anon_sym_return] = ACTIONS(557), + [anon_sym_static] = ACTIONS(557), + [anon_sym_struct] = ACTIONS(557), + [anon_sym_trait] = ACTIONS(557), + [anon_sym_type] = ACTIONS(557), + [anon_sym_union] = ACTIONS(557), + [anon_sym_unsafe] = ACTIONS(557), + [anon_sym_use] = ACTIONS(557), + [anon_sym_where] = ACTIONS(557), + [anon_sym_while] = ACTIONS(557), + [sym_mutable_specifier] = ACTIONS(557), + [sym_integer_literal] = ACTIONS(573), + [aux_sym_string_literal_token1] = ACTIONS(575), + [sym_char_literal] = ACTIONS(573), + [anon_sym_true] = ACTIONS(577), + [anon_sym_false] = ACTIONS(577), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(557), + [sym_super] = ACTIONS(557), + [sym_crate] = ACTIONS(557), + [sym_metavariable] = ACTIONS(579), + [sym__raw_string_literal_start] = ACTIONS(581), + [sym_float_literal] = ACTIONS(573), }, [77] = { - [sym__token_pattern] = STATE(149), - [sym_token_tree_pattern] = STATE(166), - [sym_token_binding_pattern] = STATE(166), - [sym_token_repetition_pattern] = STATE(166), - [sym__literal] = STATE(166), - [sym_string_literal] = STATE(156), - [sym_raw_string_literal] = STATE(156), - [sym_boolean_literal] = STATE(156), + [sym__token_pattern] = STATE(160), + [sym_token_tree_pattern] = STATE(173), + [sym_token_binding_pattern] = STATE(173), + [sym_token_repetition_pattern] = STATE(173), + [sym__literal] = STATE(173), + [sym_string_literal] = STATE(166), + [sym_raw_string_literal] = STATE(166), + [sym_boolean_literal] = STATE(166), [sym_line_comment] = STATE(77), [sym_block_comment] = STATE(77), - [aux_sym_token_tree_pattern_repeat1] = STATE(67), - [aux_sym__non_special_token_repeat1] = STATE(135), - [sym_identifier] = ACTIONS(552), - [anon_sym_SEMI] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(556), - [anon_sym_RPAREN] = ACTIONS(582), - [anon_sym_LBRACK] = ACTIONS(560), - [anon_sym_LBRACE] = ACTIONS(562), - [anon_sym_EQ_GT] = ACTIONS(554), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_QMARK] = ACTIONS(554), - [anon_sym_u8] = ACTIONS(552), - [anon_sym_i8] = ACTIONS(552), - [anon_sym_u16] = ACTIONS(552), - [anon_sym_i16] = ACTIONS(552), - [anon_sym_u32] = ACTIONS(552), - [anon_sym_i32] = ACTIONS(552), - [anon_sym_u64] = ACTIONS(552), - [anon_sym_i64] = ACTIONS(552), - [anon_sym_u128] = ACTIONS(552), - [anon_sym_i128] = ACTIONS(552), - [anon_sym_isize] = ACTIONS(552), - [anon_sym_usize] = ACTIONS(552), - [anon_sym_f32] = ACTIONS(552), - [anon_sym_f64] = ACTIONS(552), - [anon_sym_bool] = ACTIONS(552), - [anon_sym_str] = ACTIONS(552), - [anon_sym_char] = ACTIONS(552), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_AMP] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_AMP_AMP] = ACTIONS(554), - [anon_sym_PIPE_PIPE] = ACTIONS(554), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_GT_GT] = ACTIONS(564), - [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_CARET_EQ] = ACTIONS(554), - [anon_sym_AMP_EQ] = ACTIONS(554), - [anon_sym_PIPE_EQ] = ACTIONS(554), - [anon_sym_LT_LT_EQ] = ACTIONS(554), - [anon_sym_GT_GT_EQ] = ACTIONS(554), - [anon_sym_EQ] = ACTIONS(564), - [anon_sym_EQ_EQ] = ACTIONS(554), - [anon_sym_BANG_EQ] = ACTIONS(554), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT_EQ] = ACTIONS(554), - [anon_sym_LT_EQ] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(554), - [anon_sym__] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(554), - [anon_sym_DOT_DOT_EQ] = ACTIONS(554), - [anon_sym_COMMA] = ACTIONS(554), - [anon_sym_COLON_COLON] = ACTIONS(554), - [anon_sym_DASH_GT] = ACTIONS(554), - [anon_sym_POUND] = ACTIONS(554), - [anon_sym_SQUOTE] = ACTIONS(552), - [anon_sym_as] = ACTIONS(552), - [anon_sym_async] = ACTIONS(552), - [anon_sym_await] = ACTIONS(552), - [anon_sym_break] = ACTIONS(552), - [anon_sym_const] = ACTIONS(552), - [anon_sym_continue] = ACTIONS(552), - [anon_sym_default] = ACTIONS(552), - [anon_sym_enum] = ACTIONS(552), - [anon_sym_fn] = ACTIONS(552), - [anon_sym_for] = ACTIONS(552), - [anon_sym_if] = ACTIONS(552), - [anon_sym_impl] = ACTIONS(552), - [anon_sym_let] = ACTIONS(552), - [anon_sym_loop] = ACTIONS(552), - [anon_sym_match] = ACTIONS(552), - [anon_sym_mod] = ACTIONS(552), - [anon_sym_pub] = ACTIONS(552), - [anon_sym_return] = ACTIONS(552), - [anon_sym_static] = ACTIONS(552), - [anon_sym_struct] = ACTIONS(552), - [anon_sym_trait] = ACTIONS(552), - [anon_sym_type] = ACTIONS(552), - [anon_sym_union] = ACTIONS(552), - [anon_sym_unsafe] = ACTIONS(552), - [anon_sym_use] = ACTIONS(552), - [anon_sym_where] = ACTIONS(552), - [anon_sym_while] = ACTIONS(552), - [sym_mutable_specifier] = ACTIONS(552), - [sym_integer_literal] = ACTIONS(568), - [aux_sym_string_literal_token1] = ACTIONS(570), - [sym_char_literal] = ACTIONS(568), - [anon_sym_true] = ACTIONS(572), - [anon_sym_false] = ACTIONS(572), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(552), - [sym_super] = ACTIONS(552), - [sym_crate] = ACTIONS(552), - [sym_metavariable] = ACTIONS(574), - [sym__raw_string_literal_start] = ACTIONS(576), - [sym_float_literal] = ACTIONS(568), + [aux_sym_macro_def_args_repeat1] = STATE(67), + [aux_sym__non_special_token_repeat1] = STATE(142), + [sym_identifier] = ACTIONS(557), + [anon_sym_SEMI] = ACTIONS(559), + [anon_sym_LPAREN] = ACTIONS(561), + [anon_sym_LBRACK] = ACTIONS(565), + [anon_sym_LBRACE] = ACTIONS(567), + [anon_sym_RBRACE] = ACTIONS(593), + [anon_sym_COMMA] = ACTIONS(559), + [anon_sym_EQ_GT] = ACTIONS(559), + [anon_sym_COLON] = ACTIONS(569), + [anon_sym_DOLLAR] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(569), + [anon_sym_QMARK] = ACTIONS(559), + [anon_sym_u8] = ACTIONS(557), + [anon_sym_i8] = ACTIONS(557), + [anon_sym_u16] = ACTIONS(557), + [anon_sym_i16] = ACTIONS(557), + [anon_sym_u32] = ACTIONS(557), + [anon_sym_i32] = ACTIONS(557), + [anon_sym_u64] = ACTIONS(557), + [anon_sym_i64] = ACTIONS(557), + [anon_sym_u128] = ACTIONS(557), + [anon_sym_i128] = ACTIONS(557), + [anon_sym_isize] = ACTIONS(557), + [anon_sym_usize] = ACTIONS(557), + [anon_sym_f32] = ACTIONS(557), + [anon_sym_f64] = ACTIONS(557), + [anon_sym_bool] = ACTIONS(557), + [anon_sym_str] = ACTIONS(557), + [anon_sym_char] = ACTIONS(557), + [anon_sym_DASH] = ACTIONS(569), + [anon_sym_SLASH] = ACTIONS(569), + [anon_sym_PERCENT] = ACTIONS(569), + [anon_sym_CARET] = ACTIONS(569), + [anon_sym_BANG] = ACTIONS(569), + [anon_sym_AMP] = ACTIONS(569), + [anon_sym_PIPE] = ACTIONS(569), + [anon_sym_AMP_AMP] = ACTIONS(559), + [anon_sym_PIPE_PIPE] = ACTIONS(559), + [anon_sym_LT_LT] = ACTIONS(569), + [anon_sym_GT_GT] = ACTIONS(569), + [anon_sym_PLUS_EQ] = ACTIONS(559), + [anon_sym_DASH_EQ] = ACTIONS(559), + [anon_sym_STAR_EQ] = ACTIONS(559), + [anon_sym_SLASH_EQ] = ACTIONS(559), + [anon_sym_PERCENT_EQ] = ACTIONS(559), + [anon_sym_CARET_EQ] = ACTIONS(559), + [anon_sym_AMP_EQ] = ACTIONS(559), + [anon_sym_PIPE_EQ] = ACTIONS(559), + [anon_sym_LT_LT_EQ] = ACTIONS(559), + [anon_sym_GT_GT_EQ] = ACTIONS(559), + [anon_sym_EQ] = ACTIONS(569), + [anon_sym_EQ_EQ] = ACTIONS(559), + [anon_sym_BANG_EQ] = ACTIONS(559), + [anon_sym_GT] = ACTIONS(569), + [anon_sym_LT] = ACTIONS(569), + [anon_sym_GT_EQ] = ACTIONS(559), + [anon_sym_LT_EQ] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(559), + [anon_sym__] = ACTIONS(569), + [anon_sym_DOT] = ACTIONS(569), + [anon_sym_DOT_DOT] = ACTIONS(569), + [anon_sym_DOT_DOT_DOT] = ACTIONS(559), + [anon_sym_DOT_DOT_EQ] = ACTIONS(559), + [anon_sym_COLON_COLON] = ACTIONS(559), + [anon_sym_DASH_GT] = ACTIONS(559), + [anon_sym_POUND] = ACTIONS(559), + [anon_sym_SQUOTE] = ACTIONS(557), + [anon_sym_as] = ACTIONS(557), + [anon_sym_async] = ACTIONS(557), + [anon_sym_await] = ACTIONS(557), + [anon_sym_break] = ACTIONS(557), + [anon_sym_const] = ACTIONS(557), + [anon_sym_continue] = ACTIONS(557), + [anon_sym_default] = ACTIONS(557), + [anon_sym_enum] = ACTIONS(557), + [anon_sym_fn] = ACTIONS(557), + [anon_sym_for] = ACTIONS(557), + [anon_sym_if] = ACTIONS(557), + [anon_sym_impl] = ACTIONS(557), + [anon_sym_let] = ACTIONS(557), + [anon_sym_loop] = ACTIONS(557), + [anon_sym_match] = ACTIONS(557), + [anon_sym_mod] = ACTIONS(557), + [anon_sym_pub] = ACTIONS(557), + [anon_sym_return] = ACTIONS(557), + [anon_sym_static] = ACTIONS(557), + [anon_sym_struct] = ACTIONS(557), + [anon_sym_trait] = ACTIONS(557), + [anon_sym_type] = ACTIONS(557), + [anon_sym_union] = ACTIONS(557), + [anon_sym_unsafe] = ACTIONS(557), + [anon_sym_use] = ACTIONS(557), + [anon_sym_where] = ACTIONS(557), + [anon_sym_while] = ACTIONS(557), + [sym_mutable_specifier] = ACTIONS(557), + [sym_integer_literal] = ACTIONS(573), + [aux_sym_string_literal_token1] = ACTIONS(575), + [sym_char_literal] = ACTIONS(573), + [anon_sym_true] = ACTIONS(577), + [anon_sym_false] = ACTIONS(577), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(557), + [sym_super] = ACTIONS(557), + [sym_crate] = ACTIONS(557), + [sym_metavariable] = ACTIONS(579), + [sym__raw_string_literal_start] = ACTIONS(581), + [sym_float_literal] = ACTIONS(573), }, [78] = { - [sym__token_pattern] = STATE(149), - [sym_token_tree_pattern] = STATE(166), - [sym_token_binding_pattern] = STATE(166), - [sym_token_repetition_pattern] = STATE(166), - [sym__literal] = STATE(166), - [sym_string_literal] = STATE(156), - [sym_raw_string_literal] = STATE(156), - [sym_boolean_literal] = STATE(156), + [sym__token_pattern] = STATE(160), + [sym_token_tree_pattern] = STATE(173), + [sym_token_binding_pattern] = STATE(173), + [sym_token_repetition_pattern] = STATE(173), + [sym__literal] = STATE(173), + [sym_string_literal] = STATE(166), + [sym_raw_string_literal] = STATE(166), + [sym_boolean_literal] = STATE(166), [sym_line_comment] = STATE(78), [sym_block_comment] = STATE(78), - [aux_sym_token_tree_pattern_repeat1] = STATE(67), - [aux_sym__non_special_token_repeat1] = STATE(135), - [sym_identifier] = ACTIONS(552), - [anon_sym_SEMI] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(556), - [anon_sym_LBRACK] = ACTIONS(560), - [anon_sym_RBRACK] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(562), - [anon_sym_EQ_GT] = ACTIONS(554), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_QMARK] = ACTIONS(554), - [anon_sym_u8] = ACTIONS(552), - [anon_sym_i8] = ACTIONS(552), - [anon_sym_u16] = ACTIONS(552), - [anon_sym_i16] = ACTIONS(552), - [anon_sym_u32] = ACTIONS(552), - [anon_sym_i32] = ACTIONS(552), - [anon_sym_u64] = ACTIONS(552), - [anon_sym_i64] = ACTIONS(552), - [anon_sym_u128] = ACTIONS(552), - [anon_sym_i128] = ACTIONS(552), - [anon_sym_isize] = ACTIONS(552), - [anon_sym_usize] = ACTIONS(552), - [anon_sym_f32] = ACTIONS(552), - [anon_sym_f64] = ACTIONS(552), - [anon_sym_bool] = ACTIONS(552), - [anon_sym_str] = ACTIONS(552), - [anon_sym_char] = ACTIONS(552), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_AMP] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_AMP_AMP] = ACTIONS(554), - [anon_sym_PIPE_PIPE] = ACTIONS(554), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_GT_GT] = ACTIONS(564), - [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_CARET_EQ] = ACTIONS(554), - [anon_sym_AMP_EQ] = ACTIONS(554), - [anon_sym_PIPE_EQ] = ACTIONS(554), - [anon_sym_LT_LT_EQ] = ACTIONS(554), - [anon_sym_GT_GT_EQ] = ACTIONS(554), - [anon_sym_EQ] = ACTIONS(564), - [anon_sym_EQ_EQ] = ACTIONS(554), - [anon_sym_BANG_EQ] = ACTIONS(554), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT_EQ] = ACTIONS(554), - [anon_sym_LT_EQ] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(554), - [anon_sym__] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(554), - [anon_sym_DOT_DOT_EQ] = ACTIONS(554), - [anon_sym_COMMA] = ACTIONS(554), - [anon_sym_COLON_COLON] = ACTIONS(554), - [anon_sym_DASH_GT] = ACTIONS(554), - [anon_sym_POUND] = ACTIONS(554), - [anon_sym_SQUOTE] = ACTIONS(552), - [anon_sym_as] = ACTIONS(552), - [anon_sym_async] = ACTIONS(552), - [anon_sym_await] = ACTIONS(552), - [anon_sym_break] = ACTIONS(552), - [anon_sym_const] = ACTIONS(552), - [anon_sym_continue] = ACTIONS(552), - [anon_sym_default] = ACTIONS(552), - [anon_sym_enum] = ACTIONS(552), - [anon_sym_fn] = ACTIONS(552), - [anon_sym_for] = ACTIONS(552), - [anon_sym_if] = ACTIONS(552), - [anon_sym_impl] = ACTIONS(552), - [anon_sym_let] = ACTIONS(552), - [anon_sym_loop] = ACTIONS(552), - [anon_sym_match] = ACTIONS(552), - [anon_sym_mod] = ACTIONS(552), - [anon_sym_pub] = ACTIONS(552), - [anon_sym_return] = ACTIONS(552), - [anon_sym_static] = ACTIONS(552), - [anon_sym_struct] = ACTIONS(552), - [anon_sym_trait] = ACTIONS(552), - [anon_sym_type] = ACTIONS(552), - [anon_sym_union] = ACTIONS(552), - [anon_sym_unsafe] = ACTIONS(552), - [anon_sym_use] = ACTIONS(552), - [anon_sym_where] = ACTIONS(552), - [anon_sym_while] = ACTIONS(552), - [sym_mutable_specifier] = ACTIONS(552), - [sym_integer_literal] = ACTIONS(568), - [aux_sym_string_literal_token1] = ACTIONS(570), - [sym_char_literal] = ACTIONS(568), - [anon_sym_true] = ACTIONS(572), - [anon_sym_false] = ACTIONS(572), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(552), - [sym_super] = ACTIONS(552), - [sym_crate] = ACTIONS(552), - [sym_metavariable] = ACTIONS(574), - [sym__raw_string_literal_start] = ACTIONS(576), - [sym_float_literal] = ACTIONS(568), + [aux_sym_macro_def_args_repeat1] = STATE(67), + [aux_sym__non_special_token_repeat1] = STATE(142), + [sym_identifier] = ACTIONS(557), + [anon_sym_SEMI] = ACTIONS(559), + [anon_sym_LPAREN] = ACTIONS(561), + [anon_sym_LBRACK] = ACTIONS(565), + [anon_sym_RBRACK] = ACTIONS(593), + [anon_sym_LBRACE] = ACTIONS(567), + [anon_sym_COMMA] = ACTIONS(559), + [anon_sym_EQ_GT] = ACTIONS(559), + [anon_sym_COLON] = ACTIONS(569), + [anon_sym_DOLLAR] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(569), + [anon_sym_QMARK] = ACTIONS(559), + [anon_sym_u8] = ACTIONS(557), + [anon_sym_i8] = ACTIONS(557), + [anon_sym_u16] = ACTIONS(557), + [anon_sym_i16] = ACTIONS(557), + [anon_sym_u32] = ACTIONS(557), + [anon_sym_i32] = ACTIONS(557), + [anon_sym_u64] = ACTIONS(557), + [anon_sym_i64] = ACTIONS(557), + [anon_sym_u128] = ACTIONS(557), + [anon_sym_i128] = ACTIONS(557), + [anon_sym_isize] = ACTIONS(557), + [anon_sym_usize] = ACTIONS(557), + [anon_sym_f32] = ACTIONS(557), + [anon_sym_f64] = ACTIONS(557), + [anon_sym_bool] = ACTIONS(557), + [anon_sym_str] = ACTIONS(557), + [anon_sym_char] = ACTIONS(557), + [anon_sym_DASH] = ACTIONS(569), + [anon_sym_SLASH] = ACTIONS(569), + [anon_sym_PERCENT] = ACTIONS(569), + [anon_sym_CARET] = ACTIONS(569), + [anon_sym_BANG] = ACTIONS(569), + [anon_sym_AMP] = ACTIONS(569), + [anon_sym_PIPE] = ACTIONS(569), + [anon_sym_AMP_AMP] = ACTIONS(559), + [anon_sym_PIPE_PIPE] = ACTIONS(559), + [anon_sym_LT_LT] = ACTIONS(569), + [anon_sym_GT_GT] = ACTIONS(569), + [anon_sym_PLUS_EQ] = ACTIONS(559), + [anon_sym_DASH_EQ] = ACTIONS(559), + [anon_sym_STAR_EQ] = ACTIONS(559), + [anon_sym_SLASH_EQ] = ACTIONS(559), + [anon_sym_PERCENT_EQ] = ACTIONS(559), + [anon_sym_CARET_EQ] = ACTIONS(559), + [anon_sym_AMP_EQ] = ACTIONS(559), + [anon_sym_PIPE_EQ] = ACTIONS(559), + [anon_sym_LT_LT_EQ] = ACTIONS(559), + [anon_sym_GT_GT_EQ] = ACTIONS(559), + [anon_sym_EQ] = ACTIONS(569), + [anon_sym_EQ_EQ] = ACTIONS(559), + [anon_sym_BANG_EQ] = ACTIONS(559), + [anon_sym_GT] = ACTIONS(569), + [anon_sym_LT] = ACTIONS(569), + [anon_sym_GT_EQ] = ACTIONS(559), + [anon_sym_LT_EQ] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(559), + [anon_sym__] = ACTIONS(569), + [anon_sym_DOT] = ACTIONS(569), + [anon_sym_DOT_DOT] = ACTIONS(569), + [anon_sym_DOT_DOT_DOT] = ACTIONS(559), + [anon_sym_DOT_DOT_EQ] = ACTIONS(559), + [anon_sym_COLON_COLON] = ACTIONS(559), + [anon_sym_DASH_GT] = ACTIONS(559), + [anon_sym_POUND] = ACTIONS(559), + [anon_sym_SQUOTE] = ACTIONS(557), + [anon_sym_as] = ACTIONS(557), + [anon_sym_async] = ACTIONS(557), + [anon_sym_await] = ACTIONS(557), + [anon_sym_break] = ACTIONS(557), + [anon_sym_const] = ACTIONS(557), + [anon_sym_continue] = ACTIONS(557), + [anon_sym_default] = ACTIONS(557), + [anon_sym_enum] = ACTIONS(557), + [anon_sym_fn] = ACTIONS(557), + [anon_sym_for] = ACTIONS(557), + [anon_sym_if] = ACTIONS(557), + [anon_sym_impl] = ACTIONS(557), + [anon_sym_let] = ACTIONS(557), + [anon_sym_loop] = ACTIONS(557), + [anon_sym_match] = ACTIONS(557), + [anon_sym_mod] = ACTIONS(557), + [anon_sym_pub] = ACTIONS(557), + [anon_sym_return] = ACTIONS(557), + [anon_sym_static] = ACTIONS(557), + [anon_sym_struct] = ACTIONS(557), + [anon_sym_trait] = ACTIONS(557), + [anon_sym_type] = ACTIONS(557), + [anon_sym_union] = ACTIONS(557), + [anon_sym_unsafe] = ACTIONS(557), + [anon_sym_use] = ACTIONS(557), + [anon_sym_where] = ACTIONS(557), + [anon_sym_while] = ACTIONS(557), + [sym_mutable_specifier] = ACTIONS(557), + [sym_integer_literal] = ACTIONS(573), + [aux_sym_string_literal_token1] = ACTIONS(575), + [sym_char_literal] = ACTIONS(573), + [anon_sym_true] = ACTIONS(577), + [anon_sym_false] = ACTIONS(577), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(557), + [sym_super] = ACTIONS(557), + [sym_crate] = ACTIONS(557), + [sym_metavariable] = ACTIONS(579), + [sym__raw_string_literal_start] = ACTIONS(581), + [sym_float_literal] = ACTIONS(573), }, [79] = { - [sym__token_pattern] = STATE(149), - [sym_token_tree_pattern] = STATE(166), - [sym_token_binding_pattern] = STATE(166), - [sym_token_repetition_pattern] = STATE(166), - [sym__literal] = STATE(166), - [sym_string_literal] = STATE(156), - [sym_raw_string_literal] = STATE(156), - [sym_boolean_literal] = STATE(156), + [sym__token_pattern] = STATE(160), + [sym_token_tree_pattern] = STATE(173), + [sym_token_binding_pattern] = STATE(173), + [sym_token_repetition_pattern] = STATE(173), + [sym__literal] = STATE(173), + [sym_string_literal] = STATE(166), + [sym_raw_string_literal] = STATE(166), + [sym_boolean_literal] = STATE(166), [sym_line_comment] = STATE(79), [sym_block_comment] = STATE(79), - [aux_sym_token_tree_pattern_repeat1] = STATE(67), - [aux_sym__non_special_token_repeat1] = STATE(135), - [sym_identifier] = ACTIONS(552), - [anon_sym_SEMI] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(556), - [anon_sym_LBRACK] = ACTIONS(560), - [anon_sym_LBRACE] = ACTIONS(562), - [anon_sym_RBRACE] = ACTIONS(582), - [anon_sym_EQ_GT] = ACTIONS(554), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_QMARK] = ACTIONS(554), - [anon_sym_u8] = ACTIONS(552), - [anon_sym_i8] = ACTIONS(552), - [anon_sym_u16] = ACTIONS(552), - [anon_sym_i16] = ACTIONS(552), - [anon_sym_u32] = ACTIONS(552), - [anon_sym_i32] = ACTIONS(552), - [anon_sym_u64] = ACTIONS(552), - [anon_sym_i64] = ACTIONS(552), - [anon_sym_u128] = ACTIONS(552), - [anon_sym_i128] = ACTIONS(552), - [anon_sym_isize] = ACTIONS(552), - [anon_sym_usize] = ACTIONS(552), - [anon_sym_f32] = ACTIONS(552), - [anon_sym_f64] = ACTIONS(552), - [anon_sym_bool] = ACTIONS(552), - [anon_sym_str] = ACTIONS(552), - [anon_sym_char] = ACTIONS(552), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_AMP] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_AMP_AMP] = ACTIONS(554), - [anon_sym_PIPE_PIPE] = ACTIONS(554), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_GT_GT] = ACTIONS(564), - [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_CARET_EQ] = ACTIONS(554), - [anon_sym_AMP_EQ] = ACTIONS(554), - [anon_sym_PIPE_EQ] = ACTIONS(554), - [anon_sym_LT_LT_EQ] = ACTIONS(554), - [anon_sym_GT_GT_EQ] = ACTIONS(554), - [anon_sym_EQ] = ACTIONS(564), - [anon_sym_EQ_EQ] = ACTIONS(554), - [anon_sym_BANG_EQ] = ACTIONS(554), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT_EQ] = ACTIONS(554), - [anon_sym_LT_EQ] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(554), - [anon_sym__] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(554), - [anon_sym_DOT_DOT_EQ] = ACTIONS(554), - [anon_sym_COMMA] = ACTIONS(554), - [anon_sym_COLON_COLON] = ACTIONS(554), - [anon_sym_DASH_GT] = ACTIONS(554), - [anon_sym_POUND] = ACTIONS(554), - [anon_sym_SQUOTE] = ACTIONS(552), - [anon_sym_as] = ACTIONS(552), - [anon_sym_async] = ACTIONS(552), - [anon_sym_await] = ACTIONS(552), - [anon_sym_break] = ACTIONS(552), - [anon_sym_const] = ACTIONS(552), - [anon_sym_continue] = ACTIONS(552), - [anon_sym_default] = ACTIONS(552), - [anon_sym_enum] = ACTIONS(552), - [anon_sym_fn] = ACTIONS(552), - [anon_sym_for] = ACTIONS(552), - [anon_sym_if] = ACTIONS(552), - [anon_sym_impl] = ACTIONS(552), - [anon_sym_let] = ACTIONS(552), - [anon_sym_loop] = ACTIONS(552), - [anon_sym_match] = ACTIONS(552), - [anon_sym_mod] = ACTIONS(552), - [anon_sym_pub] = ACTIONS(552), - [anon_sym_return] = ACTIONS(552), - [anon_sym_static] = ACTIONS(552), - [anon_sym_struct] = ACTIONS(552), - [anon_sym_trait] = ACTIONS(552), - [anon_sym_type] = ACTIONS(552), - [anon_sym_union] = ACTIONS(552), - [anon_sym_unsafe] = ACTIONS(552), - [anon_sym_use] = ACTIONS(552), - [anon_sym_where] = ACTIONS(552), - [anon_sym_while] = ACTIONS(552), - [sym_mutable_specifier] = ACTIONS(552), - [sym_integer_literal] = ACTIONS(568), - [aux_sym_string_literal_token1] = ACTIONS(570), - [sym_char_literal] = ACTIONS(568), - [anon_sym_true] = ACTIONS(572), - [anon_sym_false] = ACTIONS(572), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(552), - [sym_super] = ACTIONS(552), - [sym_crate] = ACTIONS(552), - [sym_metavariable] = ACTIONS(574), - [sym__raw_string_literal_start] = ACTIONS(576), - [sym_float_literal] = ACTIONS(568), + [aux_sym_macro_def_args_repeat1] = STATE(76), + [aux_sym__non_special_token_repeat1] = STATE(142), + [sym_identifier] = ACTIONS(557), + [anon_sym_SEMI] = ACTIONS(559), + [anon_sym_LPAREN] = ACTIONS(561), + [anon_sym_RPAREN] = ACTIONS(587), + [anon_sym_LBRACK] = ACTIONS(565), + [anon_sym_LBRACE] = ACTIONS(567), + [anon_sym_COMMA] = ACTIONS(559), + [anon_sym_EQ_GT] = ACTIONS(559), + [anon_sym_COLON] = ACTIONS(569), + [anon_sym_DOLLAR] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(569), + [anon_sym_QMARK] = ACTIONS(559), + [anon_sym_u8] = ACTIONS(557), + [anon_sym_i8] = ACTIONS(557), + [anon_sym_u16] = ACTIONS(557), + [anon_sym_i16] = ACTIONS(557), + [anon_sym_u32] = ACTIONS(557), + [anon_sym_i32] = ACTIONS(557), + [anon_sym_u64] = ACTIONS(557), + [anon_sym_i64] = ACTIONS(557), + [anon_sym_u128] = ACTIONS(557), + [anon_sym_i128] = ACTIONS(557), + [anon_sym_isize] = ACTIONS(557), + [anon_sym_usize] = ACTIONS(557), + [anon_sym_f32] = ACTIONS(557), + [anon_sym_f64] = ACTIONS(557), + [anon_sym_bool] = ACTIONS(557), + [anon_sym_str] = ACTIONS(557), + [anon_sym_char] = ACTIONS(557), + [anon_sym_DASH] = ACTIONS(569), + [anon_sym_SLASH] = ACTIONS(569), + [anon_sym_PERCENT] = ACTIONS(569), + [anon_sym_CARET] = ACTIONS(569), + [anon_sym_BANG] = ACTIONS(569), + [anon_sym_AMP] = ACTIONS(569), + [anon_sym_PIPE] = ACTIONS(569), + [anon_sym_AMP_AMP] = ACTIONS(559), + [anon_sym_PIPE_PIPE] = ACTIONS(559), + [anon_sym_LT_LT] = ACTIONS(569), + [anon_sym_GT_GT] = ACTIONS(569), + [anon_sym_PLUS_EQ] = ACTIONS(559), + [anon_sym_DASH_EQ] = ACTIONS(559), + [anon_sym_STAR_EQ] = ACTIONS(559), + [anon_sym_SLASH_EQ] = ACTIONS(559), + [anon_sym_PERCENT_EQ] = ACTIONS(559), + [anon_sym_CARET_EQ] = ACTIONS(559), + [anon_sym_AMP_EQ] = ACTIONS(559), + [anon_sym_PIPE_EQ] = ACTIONS(559), + [anon_sym_LT_LT_EQ] = ACTIONS(559), + [anon_sym_GT_GT_EQ] = ACTIONS(559), + [anon_sym_EQ] = ACTIONS(569), + [anon_sym_EQ_EQ] = ACTIONS(559), + [anon_sym_BANG_EQ] = ACTIONS(559), + [anon_sym_GT] = ACTIONS(569), + [anon_sym_LT] = ACTIONS(569), + [anon_sym_GT_EQ] = ACTIONS(559), + [anon_sym_LT_EQ] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(559), + [anon_sym__] = ACTIONS(569), + [anon_sym_DOT] = ACTIONS(569), + [anon_sym_DOT_DOT] = ACTIONS(569), + [anon_sym_DOT_DOT_DOT] = ACTIONS(559), + [anon_sym_DOT_DOT_EQ] = ACTIONS(559), + [anon_sym_COLON_COLON] = ACTIONS(559), + [anon_sym_DASH_GT] = ACTIONS(559), + [anon_sym_POUND] = ACTIONS(559), + [anon_sym_SQUOTE] = ACTIONS(557), + [anon_sym_as] = ACTIONS(557), + [anon_sym_async] = ACTIONS(557), + [anon_sym_await] = ACTIONS(557), + [anon_sym_break] = ACTIONS(557), + [anon_sym_const] = ACTIONS(557), + [anon_sym_continue] = ACTIONS(557), + [anon_sym_default] = ACTIONS(557), + [anon_sym_enum] = ACTIONS(557), + [anon_sym_fn] = ACTIONS(557), + [anon_sym_for] = ACTIONS(557), + [anon_sym_if] = ACTIONS(557), + [anon_sym_impl] = ACTIONS(557), + [anon_sym_let] = ACTIONS(557), + [anon_sym_loop] = ACTIONS(557), + [anon_sym_match] = ACTIONS(557), + [anon_sym_mod] = ACTIONS(557), + [anon_sym_pub] = ACTIONS(557), + [anon_sym_return] = ACTIONS(557), + [anon_sym_static] = ACTIONS(557), + [anon_sym_struct] = ACTIONS(557), + [anon_sym_trait] = ACTIONS(557), + [anon_sym_type] = ACTIONS(557), + [anon_sym_union] = ACTIONS(557), + [anon_sym_unsafe] = ACTIONS(557), + [anon_sym_use] = ACTIONS(557), + [anon_sym_where] = ACTIONS(557), + [anon_sym_while] = ACTIONS(557), + [sym_mutable_specifier] = ACTIONS(557), + [sym_integer_literal] = ACTIONS(573), + [aux_sym_string_literal_token1] = ACTIONS(575), + [sym_char_literal] = ACTIONS(573), + [anon_sym_true] = ACTIONS(577), + [anon_sym_false] = ACTIONS(577), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(557), + [sym_super] = ACTIONS(557), + [sym_crate] = ACTIONS(557), + [sym_metavariable] = ACTIONS(579), + [sym__raw_string_literal_start] = ACTIONS(581), + [sym_float_literal] = ACTIONS(573), }, [80] = { - [sym__token_pattern] = STATE(149), - [sym_token_tree_pattern] = STATE(166), - [sym_token_binding_pattern] = STATE(166), - [sym_token_repetition_pattern] = STATE(166), - [sym__literal] = STATE(166), - [sym_string_literal] = STATE(156), - [sym_raw_string_literal] = STATE(156), - [sym_boolean_literal] = STATE(156), + [sym__token_pattern] = STATE(160), + [sym_token_tree_pattern] = STATE(173), + [sym_token_binding_pattern] = STATE(173), + [sym_token_repetition_pattern] = STATE(173), + [sym__literal] = STATE(173), + [sym_string_literal] = STATE(166), + [sym_raw_string_literal] = STATE(166), + [sym_boolean_literal] = STATE(166), [sym_line_comment] = STATE(80), [sym_block_comment] = STATE(80), - [aux_sym_token_tree_pattern_repeat1] = STATE(67), - [aux_sym__non_special_token_repeat1] = STATE(135), - [sym_identifier] = ACTIONS(552), - [anon_sym_SEMI] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(556), - [anon_sym_RPAREN] = ACTIONS(584), - [anon_sym_LBRACK] = ACTIONS(560), - [anon_sym_LBRACE] = ACTIONS(562), - [anon_sym_EQ_GT] = ACTIONS(554), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_QMARK] = ACTIONS(554), - [anon_sym_u8] = ACTIONS(552), - [anon_sym_i8] = ACTIONS(552), - [anon_sym_u16] = ACTIONS(552), - [anon_sym_i16] = ACTIONS(552), - [anon_sym_u32] = ACTIONS(552), - [anon_sym_i32] = ACTIONS(552), - [anon_sym_u64] = ACTIONS(552), - [anon_sym_i64] = ACTIONS(552), - [anon_sym_u128] = ACTIONS(552), - [anon_sym_i128] = ACTIONS(552), - [anon_sym_isize] = ACTIONS(552), - [anon_sym_usize] = ACTIONS(552), - [anon_sym_f32] = ACTIONS(552), - [anon_sym_f64] = ACTIONS(552), - [anon_sym_bool] = ACTIONS(552), - [anon_sym_str] = ACTIONS(552), - [anon_sym_char] = ACTIONS(552), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_AMP] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_AMP_AMP] = ACTIONS(554), - [anon_sym_PIPE_PIPE] = ACTIONS(554), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_GT_GT] = ACTIONS(564), - [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_CARET_EQ] = ACTIONS(554), - [anon_sym_AMP_EQ] = ACTIONS(554), - [anon_sym_PIPE_EQ] = ACTIONS(554), - [anon_sym_LT_LT_EQ] = ACTIONS(554), - [anon_sym_GT_GT_EQ] = ACTIONS(554), - [anon_sym_EQ] = ACTIONS(564), - [anon_sym_EQ_EQ] = ACTIONS(554), - [anon_sym_BANG_EQ] = ACTIONS(554), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT_EQ] = ACTIONS(554), - [anon_sym_LT_EQ] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(554), - [anon_sym__] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(554), - [anon_sym_DOT_DOT_EQ] = ACTIONS(554), - [anon_sym_COMMA] = ACTIONS(554), - [anon_sym_COLON_COLON] = ACTIONS(554), - [anon_sym_DASH_GT] = ACTIONS(554), - [anon_sym_POUND] = ACTIONS(554), - [anon_sym_SQUOTE] = ACTIONS(552), - [anon_sym_as] = ACTIONS(552), - [anon_sym_async] = ACTIONS(552), - [anon_sym_await] = ACTIONS(552), - [anon_sym_break] = ACTIONS(552), - [anon_sym_const] = ACTIONS(552), - [anon_sym_continue] = ACTIONS(552), - [anon_sym_default] = ACTIONS(552), - [anon_sym_enum] = ACTIONS(552), - [anon_sym_fn] = ACTIONS(552), - [anon_sym_for] = ACTIONS(552), - [anon_sym_if] = ACTIONS(552), - [anon_sym_impl] = ACTIONS(552), - [anon_sym_let] = ACTIONS(552), - [anon_sym_loop] = ACTIONS(552), - [anon_sym_match] = ACTIONS(552), - [anon_sym_mod] = ACTIONS(552), - [anon_sym_pub] = ACTIONS(552), - [anon_sym_return] = ACTIONS(552), - [anon_sym_static] = ACTIONS(552), - [anon_sym_struct] = ACTIONS(552), - [anon_sym_trait] = ACTIONS(552), - [anon_sym_type] = ACTIONS(552), - [anon_sym_union] = ACTIONS(552), - [anon_sym_unsafe] = ACTIONS(552), - [anon_sym_use] = ACTIONS(552), - [anon_sym_where] = ACTIONS(552), - [anon_sym_while] = ACTIONS(552), - [sym_mutable_specifier] = ACTIONS(552), - [sym_integer_literal] = ACTIONS(568), - [aux_sym_string_literal_token1] = ACTIONS(570), - [sym_char_literal] = ACTIONS(568), - [anon_sym_true] = ACTIONS(572), - [anon_sym_false] = ACTIONS(572), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(552), - [sym_super] = ACTIONS(552), - [sym_crate] = ACTIONS(552), - [sym_metavariable] = ACTIONS(574), - [sym__raw_string_literal_start] = ACTIONS(576), - [sym_float_literal] = ACTIONS(568), + [aux_sym_macro_def_args_repeat1] = STATE(67), + [aux_sym__non_special_token_repeat1] = STATE(142), + [sym_identifier] = ACTIONS(557), + [anon_sym_SEMI] = ACTIONS(559), + [anon_sym_LPAREN] = ACTIONS(561), + [anon_sym_RPAREN] = ACTIONS(593), + [anon_sym_LBRACK] = ACTIONS(565), + [anon_sym_LBRACE] = ACTIONS(567), + [anon_sym_COMMA] = ACTIONS(559), + [anon_sym_EQ_GT] = ACTIONS(559), + [anon_sym_COLON] = ACTIONS(569), + [anon_sym_DOLLAR] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(569), + [anon_sym_QMARK] = ACTIONS(559), + [anon_sym_u8] = ACTIONS(557), + [anon_sym_i8] = ACTIONS(557), + [anon_sym_u16] = ACTIONS(557), + [anon_sym_i16] = ACTIONS(557), + [anon_sym_u32] = ACTIONS(557), + [anon_sym_i32] = ACTIONS(557), + [anon_sym_u64] = ACTIONS(557), + [anon_sym_i64] = ACTIONS(557), + [anon_sym_u128] = ACTIONS(557), + [anon_sym_i128] = ACTIONS(557), + [anon_sym_isize] = ACTIONS(557), + [anon_sym_usize] = ACTIONS(557), + [anon_sym_f32] = ACTIONS(557), + [anon_sym_f64] = ACTIONS(557), + [anon_sym_bool] = ACTIONS(557), + [anon_sym_str] = ACTIONS(557), + [anon_sym_char] = ACTIONS(557), + [anon_sym_DASH] = ACTIONS(569), + [anon_sym_SLASH] = ACTIONS(569), + [anon_sym_PERCENT] = ACTIONS(569), + [anon_sym_CARET] = ACTIONS(569), + [anon_sym_BANG] = ACTIONS(569), + [anon_sym_AMP] = ACTIONS(569), + [anon_sym_PIPE] = ACTIONS(569), + [anon_sym_AMP_AMP] = ACTIONS(559), + [anon_sym_PIPE_PIPE] = ACTIONS(559), + [anon_sym_LT_LT] = ACTIONS(569), + [anon_sym_GT_GT] = ACTIONS(569), + [anon_sym_PLUS_EQ] = ACTIONS(559), + [anon_sym_DASH_EQ] = ACTIONS(559), + [anon_sym_STAR_EQ] = ACTIONS(559), + [anon_sym_SLASH_EQ] = ACTIONS(559), + [anon_sym_PERCENT_EQ] = ACTIONS(559), + [anon_sym_CARET_EQ] = ACTIONS(559), + [anon_sym_AMP_EQ] = ACTIONS(559), + [anon_sym_PIPE_EQ] = ACTIONS(559), + [anon_sym_LT_LT_EQ] = ACTIONS(559), + [anon_sym_GT_GT_EQ] = ACTIONS(559), + [anon_sym_EQ] = ACTIONS(569), + [anon_sym_EQ_EQ] = ACTIONS(559), + [anon_sym_BANG_EQ] = ACTIONS(559), + [anon_sym_GT] = ACTIONS(569), + [anon_sym_LT] = ACTIONS(569), + [anon_sym_GT_EQ] = ACTIONS(559), + [anon_sym_LT_EQ] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(559), + [anon_sym__] = ACTIONS(569), + [anon_sym_DOT] = ACTIONS(569), + [anon_sym_DOT_DOT] = ACTIONS(569), + [anon_sym_DOT_DOT_DOT] = ACTIONS(559), + [anon_sym_DOT_DOT_EQ] = ACTIONS(559), + [anon_sym_COLON_COLON] = ACTIONS(559), + [anon_sym_DASH_GT] = ACTIONS(559), + [anon_sym_POUND] = ACTIONS(559), + [anon_sym_SQUOTE] = ACTIONS(557), + [anon_sym_as] = ACTIONS(557), + [anon_sym_async] = ACTIONS(557), + [anon_sym_await] = ACTIONS(557), + [anon_sym_break] = ACTIONS(557), + [anon_sym_const] = ACTIONS(557), + [anon_sym_continue] = ACTIONS(557), + [anon_sym_default] = ACTIONS(557), + [anon_sym_enum] = ACTIONS(557), + [anon_sym_fn] = ACTIONS(557), + [anon_sym_for] = ACTIONS(557), + [anon_sym_if] = ACTIONS(557), + [anon_sym_impl] = ACTIONS(557), + [anon_sym_let] = ACTIONS(557), + [anon_sym_loop] = ACTIONS(557), + [anon_sym_match] = ACTIONS(557), + [anon_sym_mod] = ACTIONS(557), + [anon_sym_pub] = ACTIONS(557), + [anon_sym_return] = ACTIONS(557), + [anon_sym_static] = ACTIONS(557), + [anon_sym_struct] = ACTIONS(557), + [anon_sym_trait] = ACTIONS(557), + [anon_sym_type] = ACTIONS(557), + [anon_sym_union] = ACTIONS(557), + [anon_sym_unsafe] = ACTIONS(557), + [anon_sym_use] = ACTIONS(557), + [anon_sym_where] = ACTIONS(557), + [anon_sym_while] = ACTIONS(557), + [sym_mutable_specifier] = ACTIONS(557), + [sym_integer_literal] = ACTIONS(573), + [aux_sym_string_literal_token1] = ACTIONS(575), + [sym_char_literal] = ACTIONS(573), + [anon_sym_true] = ACTIONS(577), + [anon_sym_false] = ACTIONS(577), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(557), + [sym_super] = ACTIONS(557), + [sym_crate] = ACTIONS(557), + [sym_metavariable] = ACTIONS(579), + [sym__raw_string_literal_start] = ACTIONS(581), + [sym_float_literal] = ACTIONS(573), }, [81] = { - [sym__token_pattern] = STATE(149), - [sym_token_tree_pattern] = STATE(166), - [sym_token_binding_pattern] = STATE(166), - [sym_token_repetition_pattern] = STATE(166), - [sym__literal] = STATE(166), - [sym_string_literal] = STATE(156), - [sym_raw_string_literal] = STATE(156), - [sym_boolean_literal] = STATE(156), + [sym__token_pattern] = STATE(160), + [sym_token_tree_pattern] = STATE(173), + [sym_token_binding_pattern] = STATE(173), + [sym_token_repetition_pattern] = STATE(173), + [sym__literal] = STATE(173), + [sym_string_literal] = STATE(166), + [sym_raw_string_literal] = STATE(166), + [sym_boolean_literal] = STATE(166), [sym_line_comment] = STATE(81), [sym_block_comment] = STATE(81), - [aux_sym_token_tree_pattern_repeat1] = STATE(80), - [aux_sym__non_special_token_repeat1] = STATE(135), - [sym_identifier] = ACTIONS(552), - [anon_sym_SEMI] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(556), - [anon_sym_RPAREN] = ACTIONS(586), - [anon_sym_LBRACK] = ACTIONS(560), - [anon_sym_LBRACE] = ACTIONS(562), - [anon_sym_EQ_GT] = ACTIONS(554), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_QMARK] = ACTIONS(554), - [anon_sym_u8] = ACTIONS(552), - [anon_sym_i8] = ACTIONS(552), - [anon_sym_u16] = ACTIONS(552), - [anon_sym_i16] = ACTIONS(552), - [anon_sym_u32] = ACTIONS(552), - [anon_sym_i32] = ACTIONS(552), - [anon_sym_u64] = ACTIONS(552), - [anon_sym_i64] = ACTIONS(552), - [anon_sym_u128] = ACTIONS(552), - [anon_sym_i128] = ACTIONS(552), - [anon_sym_isize] = ACTIONS(552), - [anon_sym_usize] = ACTIONS(552), - [anon_sym_f32] = ACTIONS(552), - [anon_sym_f64] = ACTIONS(552), - [anon_sym_bool] = ACTIONS(552), - [anon_sym_str] = ACTIONS(552), - [anon_sym_char] = ACTIONS(552), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_AMP] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_AMP_AMP] = ACTIONS(554), - [anon_sym_PIPE_PIPE] = ACTIONS(554), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_GT_GT] = ACTIONS(564), - [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_CARET_EQ] = ACTIONS(554), - [anon_sym_AMP_EQ] = ACTIONS(554), - [anon_sym_PIPE_EQ] = ACTIONS(554), - [anon_sym_LT_LT_EQ] = ACTIONS(554), - [anon_sym_GT_GT_EQ] = ACTIONS(554), - [anon_sym_EQ] = ACTIONS(564), - [anon_sym_EQ_EQ] = ACTIONS(554), - [anon_sym_BANG_EQ] = ACTIONS(554), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT_EQ] = ACTIONS(554), - [anon_sym_LT_EQ] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(554), - [anon_sym__] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(554), - [anon_sym_DOT_DOT_EQ] = ACTIONS(554), - [anon_sym_COMMA] = ACTIONS(554), - [anon_sym_COLON_COLON] = ACTIONS(554), - [anon_sym_DASH_GT] = ACTIONS(554), - [anon_sym_POUND] = ACTIONS(554), - [anon_sym_SQUOTE] = ACTIONS(552), - [anon_sym_as] = ACTIONS(552), - [anon_sym_async] = ACTIONS(552), - [anon_sym_await] = ACTIONS(552), - [anon_sym_break] = ACTIONS(552), - [anon_sym_const] = ACTIONS(552), - [anon_sym_continue] = ACTIONS(552), - [anon_sym_default] = ACTIONS(552), - [anon_sym_enum] = ACTIONS(552), - [anon_sym_fn] = ACTIONS(552), - [anon_sym_for] = ACTIONS(552), - [anon_sym_if] = ACTIONS(552), - [anon_sym_impl] = ACTIONS(552), - [anon_sym_let] = ACTIONS(552), - [anon_sym_loop] = ACTIONS(552), - [anon_sym_match] = ACTIONS(552), - [anon_sym_mod] = ACTIONS(552), - [anon_sym_pub] = ACTIONS(552), - [anon_sym_return] = ACTIONS(552), - [anon_sym_static] = ACTIONS(552), - [anon_sym_struct] = ACTIONS(552), - [anon_sym_trait] = ACTIONS(552), - [anon_sym_type] = ACTIONS(552), - [anon_sym_union] = ACTIONS(552), - [anon_sym_unsafe] = ACTIONS(552), - [anon_sym_use] = ACTIONS(552), - [anon_sym_where] = ACTIONS(552), - [anon_sym_while] = ACTIONS(552), - [sym_mutable_specifier] = ACTIONS(552), - [sym_integer_literal] = ACTIONS(568), - [aux_sym_string_literal_token1] = ACTIONS(570), - [sym_char_literal] = ACTIONS(568), - [anon_sym_true] = ACTIONS(572), - [anon_sym_false] = ACTIONS(572), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(552), - [sym_super] = ACTIONS(552), - [sym_crate] = ACTIONS(552), - [sym_metavariable] = ACTIONS(574), - [sym__raw_string_literal_start] = ACTIONS(576), - [sym_float_literal] = ACTIONS(568), + [aux_sym_macro_def_args_repeat1] = STATE(67), + [aux_sym__non_special_token_repeat1] = STATE(142), + [sym_identifier] = ACTIONS(557), + [anon_sym_SEMI] = ACTIONS(559), + [anon_sym_LPAREN] = ACTIONS(561), + [anon_sym_RPAREN] = ACTIONS(595), + [anon_sym_LBRACK] = ACTIONS(565), + [anon_sym_LBRACE] = ACTIONS(567), + [anon_sym_COMMA] = ACTIONS(559), + [anon_sym_EQ_GT] = ACTIONS(559), + [anon_sym_COLON] = ACTIONS(569), + [anon_sym_DOLLAR] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(569), + [anon_sym_QMARK] = ACTIONS(559), + [anon_sym_u8] = ACTIONS(557), + [anon_sym_i8] = ACTIONS(557), + [anon_sym_u16] = ACTIONS(557), + [anon_sym_i16] = ACTIONS(557), + [anon_sym_u32] = ACTIONS(557), + [anon_sym_i32] = ACTIONS(557), + [anon_sym_u64] = ACTIONS(557), + [anon_sym_i64] = ACTIONS(557), + [anon_sym_u128] = ACTIONS(557), + [anon_sym_i128] = ACTIONS(557), + [anon_sym_isize] = ACTIONS(557), + [anon_sym_usize] = ACTIONS(557), + [anon_sym_f32] = ACTIONS(557), + [anon_sym_f64] = ACTIONS(557), + [anon_sym_bool] = ACTIONS(557), + [anon_sym_str] = ACTIONS(557), + [anon_sym_char] = ACTIONS(557), + [anon_sym_DASH] = ACTIONS(569), + [anon_sym_SLASH] = ACTIONS(569), + [anon_sym_PERCENT] = ACTIONS(569), + [anon_sym_CARET] = ACTIONS(569), + [anon_sym_BANG] = ACTIONS(569), + [anon_sym_AMP] = ACTIONS(569), + [anon_sym_PIPE] = ACTIONS(569), + [anon_sym_AMP_AMP] = ACTIONS(559), + [anon_sym_PIPE_PIPE] = ACTIONS(559), + [anon_sym_LT_LT] = ACTIONS(569), + [anon_sym_GT_GT] = ACTIONS(569), + [anon_sym_PLUS_EQ] = ACTIONS(559), + [anon_sym_DASH_EQ] = ACTIONS(559), + [anon_sym_STAR_EQ] = ACTIONS(559), + [anon_sym_SLASH_EQ] = ACTIONS(559), + [anon_sym_PERCENT_EQ] = ACTIONS(559), + [anon_sym_CARET_EQ] = ACTIONS(559), + [anon_sym_AMP_EQ] = ACTIONS(559), + [anon_sym_PIPE_EQ] = ACTIONS(559), + [anon_sym_LT_LT_EQ] = ACTIONS(559), + [anon_sym_GT_GT_EQ] = ACTIONS(559), + [anon_sym_EQ] = ACTIONS(569), + [anon_sym_EQ_EQ] = ACTIONS(559), + [anon_sym_BANG_EQ] = ACTIONS(559), + [anon_sym_GT] = ACTIONS(569), + [anon_sym_LT] = ACTIONS(569), + [anon_sym_GT_EQ] = ACTIONS(559), + [anon_sym_LT_EQ] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(559), + [anon_sym__] = ACTIONS(569), + [anon_sym_DOT] = ACTIONS(569), + [anon_sym_DOT_DOT] = ACTIONS(569), + [anon_sym_DOT_DOT_DOT] = ACTIONS(559), + [anon_sym_DOT_DOT_EQ] = ACTIONS(559), + [anon_sym_COLON_COLON] = ACTIONS(559), + [anon_sym_DASH_GT] = ACTIONS(559), + [anon_sym_POUND] = ACTIONS(559), + [anon_sym_SQUOTE] = ACTIONS(557), + [anon_sym_as] = ACTIONS(557), + [anon_sym_async] = ACTIONS(557), + [anon_sym_await] = ACTIONS(557), + [anon_sym_break] = ACTIONS(557), + [anon_sym_const] = ACTIONS(557), + [anon_sym_continue] = ACTIONS(557), + [anon_sym_default] = ACTIONS(557), + [anon_sym_enum] = ACTIONS(557), + [anon_sym_fn] = ACTIONS(557), + [anon_sym_for] = ACTIONS(557), + [anon_sym_if] = ACTIONS(557), + [anon_sym_impl] = ACTIONS(557), + [anon_sym_let] = ACTIONS(557), + [anon_sym_loop] = ACTIONS(557), + [anon_sym_match] = ACTIONS(557), + [anon_sym_mod] = ACTIONS(557), + [anon_sym_pub] = ACTIONS(557), + [anon_sym_return] = ACTIONS(557), + [anon_sym_static] = ACTIONS(557), + [anon_sym_struct] = ACTIONS(557), + [anon_sym_trait] = ACTIONS(557), + [anon_sym_type] = ACTIONS(557), + [anon_sym_union] = ACTIONS(557), + [anon_sym_unsafe] = ACTIONS(557), + [anon_sym_use] = ACTIONS(557), + [anon_sym_where] = ACTIONS(557), + [anon_sym_while] = ACTIONS(557), + [sym_mutable_specifier] = ACTIONS(557), + [sym_integer_literal] = ACTIONS(573), + [aux_sym_string_literal_token1] = ACTIONS(575), + [sym_char_literal] = ACTIONS(573), + [anon_sym_true] = ACTIONS(577), + [anon_sym_false] = ACTIONS(577), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(557), + [sym_super] = ACTIONS(557), + [sym_crate] = ACTIONS(557), + [sym_metavariable] = ACTIONS(579), + [sym__raw_string_literal_start] = ACTIONS(581), + [sym_float_literal] = ACTIONS(573), }, [82] = { - [sym_token_tree] = STATE(157), - [sym_token_repetition] = STATE(157), - [sym__literal] = STATE(157), - [sym_string_literal] = STATE(156), - [sym_raw_string_literal] = STATE(156), - [sym_boolean_literal] = STATE(156), + [sym__token_pattern] = STATE(160), + [sym_token_tree_pattern] = STATE(173), + [sym_token_binding_pattern] = STATE(173), + [sym_token_repetition_pattern] = STATE(173), + [sym__literal] = STATE(173), + [sym_string_literal] = STATE(166), + [sym_raw_string_literal] = STATE(166), + [sym_boolean_literal] = STATE(166), [sym_line_comment] = STATE(82), [sym_block_comment] = STATE(82), - [aux_sym_token_tree_repeat1] = STATE(82), - [aux_sym__non_special_token_repeat1] = STATE(136), - [sym_identifier] = ACTIONS(588), - [anon_sym_SEMI] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_RPAREN] = ACTIONS(597), - [anon_sym_LBRACK] = ACTIONS(599), - [anon_sym_RBRACK] = ACTIONS(597), - [anon_sym_LBRACE] = ACTIONS(602), - [anon_sym_RBRACE] = ACTIONS(597), - [anon_sym_EQ_GT] = ACTIONS(591), - [anon_sym_COLON] = ACTIONS(605), - [anon_sym_DOLLAR] = ACTIONS(608), - [anon_sym_PLUS] = ACTIONS(605), - [anon_sym_STAR] = ACTIONS(605), - [anon_sym_QMARK] = ACTIONS(591), - [anon_sym_u8] = ACTIONS(588), - [anon_sym_i8] = ACTIONS(588), - [anon_sym_u16] = ACTIONS(588), - [anon_sym_i16] = ACTIONS(588), - [anon_sym_u32] = ACTIONS(588), - [anon_sym_i32] = ACTIONS(588), - [anon_sym_u64] = ACTIONS(588), - [anon_sym_i64] = ACTIONS(588), - [anon_sym_u128] = ACTIONS(588), - [anon_sym_i128] = ACTIONS(588), - [anon_sym_isize] = ACTIONS(588), - [anon_sym_usize] = ACTIONS(588), - [anon_sym_f32] = ACTIONS(588), - [anon_sym_f64] = ACTIONS(588), - [anon_sym_bool] = ACTIONS(588), - [anon_sym_str] = ACTIONS(588), - [anon_sym_char] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(605), - [anon_sym_SLASH] = ACTIONS(605), - [anon_sym_PERCENT] = ACTIONS(605), - [anon_sym_CARET] = ACTIONS(605), - [anon_sym_BANG] = ACTIONS(605), - [anon_sym_AMP] = ACTIONS(605), - [anon_sym_PIPE] = ACTIONS(605), - [anon_sym_AMP_AMP] = ACTIONS(591), - [anon_sym_PIPE_PIPE] = ACTIONS(591), - [anon_sym_LT_LT] = ACTIONS(605), - [anon_sym_GT_GT] = ACTIONS(605), - [anon_sym_PLUS_EQ] = ACTIONS(591), - [anon_sym_DASH_EQ] = ACTIONS(591), - [anon_sym_STAR_EQ] = ACTIONS(591), - [anon_sym_SLASH_EQ] = ACTIONS(591), - [anon_sym_PERCENT_EQ] = ACTIONS(591), - [anon_sym_CARET_EQ] = ACTIONS(591), - [anon_sym_AMP_EQ] = ACTIONS(591), - [anon_sym_PIPE_EQ] = ACTIONS(591), - [anon_sym_LT_LT_EQ] = ACTIONS(591), - [anon_sym_GT_GT_EQ] = ACTIONS(591), - [anon_sym_EQ] = ACTIONS(605), - [anon_sym_EQ_EQ] = ACTIONS(591), - [anon_sym_BANG_EQ] = ACTIONS(591), - [anon_sym_GT] = ACTIONS(605), - [anon_sym_LT] = ACTIONS(605), - [anon_sym_GT_EQ] = ACTIONS(591), - [anon_sym_LT_EQ] = ACTIONS(591), - [anon_sym_AT] = ACTIONS(591), - [anon_sym__] = ACTIONS(605), - [anon_sym_DOT] = ACTIONS(605), - [anon_sym_DOT_DOT] = ACTIONS(605), - [anon_sym_DOT_DOT_DOT] = ACTIONS(591), - [anon_sym_DOT_DOT_EQ] = ACTIONS(591), - [anon_sym_COMMA] = ACTIONS(591), - [anon_sym_COLON_COLON] = ACTIONS(591), - [anon_sym_DASH_GT] = ACTIONS(591), - [anon_sym_POUND] = ACTIONS(591), - [anon_sym_SQUOTE] = ACTIONS(588), - [anon_sym_as] = ACTIONS(588), - [anon_sym_async] = ACTIONS(588), - [anon_sym_await] = ACTIONS(588), - [anon_sym_break] = ACTIONS(588), - [anon_sym_const] = ACTIONS(588), - [anon_sym_continue] = ACTIONS(588), - [anon_sym_default] = ACTIONS(588), - [anon_sym_enum] = ACTIONS(588), - [anon_sym_fn] = ACTIONS(588), - [anon_sym_for] = ACTIONS(588), - [anon_sym_if] = ACTIONS(588), - [anon_sym_impl] = ACTIONS(588), - [anon_sym_let] = ACTIONS(588), - [anon_sym_loop] = ACTIONS(588), - [anon_sym_match] = ACTIONS(588), - [anon_sym_mod] = ACTIONS(588), - [anon_sym_pub] = ACTIONS(588), - [anon_sym_return] = ACTIONS(588), - [anon_sym_static] = ACTIONS(588), - [anon_sym_struct] = ACTIONS(588), - [anon_sym_trait] = ACTIONS(588), - [anon_sym_type] = ACTIONS(588), - [anon_sym_union] = ACTIONS(588), - [anon_sym_unsafe] = ACTIONS(588), - [anon_sym_use] = ACTIONS(588), - [anon_sym_where] = ACTIONS(588), - [anon_sym_while] = ACTIONS(588), - [sym_mutable_specifier] = ACTIONS(588), - [sym_integer_literal] = ACTIONS(611), - [aux_sym_string_literal_token1] = ACTIONS(614), - [sym_char_literal] = ACTIONS(611), - [anon_sym_true] = ACTIONS(617), - [anon_sym_false] = ACTIONS(617), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(588), - [sym_super] = ACTIONS(588), - [sym_crate] = ACTIONS(588), - [sym_metavariable] = ACTIONS(620), - [sym__raw_string_literal_start] = ACTIONS(623), - [sym_float_literal] = ACTIONS(611), + [aux_sym_macro_def_args_repeat1] = STATE(67), + [aux_sym__non_special_token_repeat1] = STATE(142), + [sym_identifier] = ACTIONS(557), + [anon_sym_SEMI] = ACTIONS(559), + [anon_sym_LPAREN] = ACTIONS(561), + [anon_sym_LBRACK] = ACTIONS(565), + [anon_sym_RBRACK] = ACTIONS(591), + [anon_sym_LBRACE] = ACTIONS(567), + [anon_sym_COMMA] = ACTIONS(559), + [anon_sym_EQ_GT] = ACTIONS(559), + [anon_sym_COLON] = ACTIONS(569), + [anon_sym_DOLLAR] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(569), + [anon_sym_QMARK] = ACTIONS(559), + [anon_sym_u8] = ACTIONS(557), + [anon_sym_i8] = ACTIONS(557), + [anon_sym_u16] = ACTIONS(557), + [anon_sym_i16] = ACTIONS(557), + [anon_sym_u32] = ACTIONS(557), + [anon_sym_i32] = ACTIONS(557), + [anon_sym_u64] = ACTIONS(557), + [anon_sym_i64] = ACTIONS(557), + [anon_sym_u128] = ACTIONS(557), + [anon_sym_i128] = ACTIONS(557), + [anon_sym_isize] = ACTIONS(557), + [anon_sym_usize] = ACTIONS(557), + [anon_sym_f32] = ACTIONS(557), + [anon_sym_f64] = ACTIONS(557), + [anon_sym_bool] = ACTIONS(557), + [anon_sym_str] = ACTIONS(557), + [anon_sym_char] = ACTIONS(557), + [anon_sym_DASH] = ACTIONS(569), + [anon_sym_SLASH] = ACTIONS(569), + [anon_sym_PERCENT] = ACTIONS(569), + [anon_sym_CARET] = ACTIONS(569), + [anon_sym_BANG] = ACTIONS(569), + [anon_sym_AMP] = ACTIONS(569), + [anon_sym_PIPE] = ACTIONS(569), + [anon_sym_AMP_AMP] = ACTIONS(559), + [anon_sym_PIPE_PIPE] = ACTIONS(559), + [anon_sym_LT_LT] = ACTIONS(569), + [anon_sym_GT_GT] = ACTIONS(569), + [anon_sym_PLUS_EQ] = ACTIONS(559), + [anon_sym_DASH_EQ] = ACTIONS(559), + [anon_sym_STAR_EQ] = ACTIONS(559), + [anon_sym_SLASH_EQ] = ACTIONS(559), + [anon_sym_PERCENT_EQ] = ACTIONS(559), + [anon_sym_CARET_EQ] = ACTIONS(559), + [anon_sym_AMP_EQ] = ACTIONS(559), + [anon_sym_PIPE_EQ] = ACTIONS(559), + [anon_sym_LT_LT_EQ] = ACTIONS(559), + [anon_sym_GT_GT_EQ] = ACTIONS(559), + [anon_sym_EQ] = ACTIONS(569), + [anon_sym_EQ_EQ] = ACTIONS(559), + [anon_sym_BANG_EQ] = ACTIONS(559), + [anon_sym_GT] = ACTIONS(569), + [anon_sym_LT] = ACTIONS(569), + [anon_sym_GT_EQ] = ACTIONS(559), + [anon_sym_LT_EQ] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(559), + [anon_sym__] = ACTIONS(569), + [anon_sym_DOT] = ACTIONS(569), + [anon_sym_DOT_DOT] = ACTIONS(569), + [anon_sym_DOT_DOT_DOT] = ACTIONS(559), + [anon_sym_DOT_DOT_EQ] = ACTIONS(559), + [anon_sym_COLON_COLON] = ACTIONS(559), + [anon_sym_DASH_GT] = ACTIONS(559), + [anon_sym_POUND] = ACTIONS(559), + [anon_sym_SQUOTE] = ACTIONS(557), + [anon_sym_as] = ACTIONS(557), + [anon_sym_async] = ACTIONS(557), + [anon_sym_await] = ACTIONS(557), + [anon_sym_break] = ACTIONS(557), + [anon_sym_const] = ACTIONS(557), + [anon_sym_continue] = ACTIONS(557), + [anon_sym_default] = ACTIONS(557), + [anon_sym_enum] = ACTIONS(557), + [anon_sym_fn] = ACTIONS(557), + [anon_sym_for] = ACTIONS(557), + [anon_sym_if] = ACTIONS(557), + [anon_sym_impl] = ACTIONS(557), + [anon_sym_let] = ACTIONS(557), + [anon_sym_loop] = ACTIONS(557), + [anon_sym_match] = ACTIONS(557), + [anon_sym_mod] = ACTIONS(557), + [anon_sym_pub] = ACTIONS(557), + [anon_sym_return] = ACTIONS(557), + [anon_sym_static] = ACTIONS(557), + [anon_sym_struct] = ACTIONS(557), + [anon_sym_trait] = ACTIONS(557), + [anon_sym_type] = ACTIONS(557), + [anon_sym_union] = ACTIONS(557), + [anon_sym_unsafe] = ACTIONS(557), + [anon_sym_use] = ACTIONS(557), + [anon_sym_where] = ACTIONS(557), + [anon_sym_while] = ACTIONS(557), + [sym_mutable_specifier] = ACTIONS(557), + [sym_integer_literal] = ACTIONS(573), + [aux_sym_string_literal_token1] = ACTIONS(575), + [sym_char_literal] = ACTIONS(573), + [anon_sym_true] = ACTIONS(577), + [anon_sym_false] = ACTIONS(577), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(557), + [sym_super] = ACTIONS(557), + [sym_crate] = ACTIONS(557), + [sym_metavariable] = ACTIONS(579), + [sym__raw_string_literal_start] = ACTIONS(581), + [sym_float_literal] = ACTIONS(573), }, [83] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), + [sym_delim_token_tree] = STATE(201), + [sym__delim_tokens] = STATE(198), + [sym__non_delim_token] = STATE(201), + [sym__literal] = STATE(205), + [sym_string_literal] = STATE(214), + [sym_raw_string_literal] = STATE(214), + [sym_boolean_literal] = STATE(214), [sym_line_comment] = STATE(83), [sym_block_comment] = STATE(83), - [aux_sym__non_special_token_repeat1] = STATE(160), + [aux_sym__non_special_token_repeat1] = STATE(152), [aux_sym_delim_token_tree_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(626), - [anon_sym_SEMI] = ACTIONS(629), - [anon_sym_LPAREN] = ACTIONS(632), - [anon_sym_RPAREN] = ACTIONS(635), - [anon_sym_LBRACK] = ACTIONS(637), - [anon_sym_RBRACK] = ACTIONS(635), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_RBRACE] = ACTIONS(635), - [anon_sym_EQ_GT] = ACTIONS(629), - [anon_sym_COLON] = ACTIONS(643), - [anon_sym_DOLLAR] = ACTIONS(646), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_STAR] = ACTIONS(643), - [anon_sym_QMARK] = ACTIONS(629), - [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_DASH] = ACTIONS(643), - [anon_sym_SLASH] = ACTIONS(643), - [anon_sym_PERCENT] = ACTIONS(643), - [anon_sym_CARET] = ACTIONS(643), - [anon_sym_BANG] = ACTIONS(643), - [anon_sym_AMP] = ACTIONS(643), - [anon_sym_PIPE] = ACTIONS(643), - [anon_sym_AMP_AMP] = ACTIONS(629), - [anon_sym_PIPE_PIPE] = ACTIONS(629), - [anon_sym_LT_LT] = ACTIONS(643), - [anon_sym_GT_GT] = ACTIONS(643), - [anon_sym_PLUS_EQ] = ACTIONS(629), - [anon_sym_DASH_EQ] = ACTIONS(629), - [anon_sym_STAR_EQ] = ACTIONS(629), - [anon_sym_SLASH_EQ] = ACTIONS(629), - [anon_sym_PERCENT_EQ] = ACTIONS(629), - [anon_sym_CARET_EQ] = ACTIONS(629), - [anon_sym_AMP_EQ] = ACTIONS(629), - [anon_sym_PIPE_EQ] = ACTIONS(629), - [anon_sym_LT_LT_EQ] = ACTIONS(629), - [anon_sym_GT_GT_EQ] = ACTIONS(629), - [anon_sym_EQ] = ACTIONS(643), - [anon_sym_EQ_EQ] = ACTIONS(629), - [anon_sym_BANG_EQ] = ACTIONS(629), - [anon_sym_GT] = ACTIONS(643), - [anon_sym_LT] = ACTIONS(643), - [anon_sym_GT_EQ] = ACTIONS(629), - [anon_sym_LT_EQ] = ACTIONS(629), - [anon_sym_AT] = ACTIONS(629), - [anon_sym__] = ACTIONS(643), - [anon_sym_DOT] = ACTIONS(643), - [anon_sym_DOT_DOT] = ACTIONS(643), - [anon_sym_DOT_DOT_DOT] = ACTIONS(629), - [anon_sym_DOT_DOT_EQ] = ACTIONS(629), - [anon_sym_COMMA] = ACTIONS(629), - [anon_sym_COLON_COLON] = ACTIONS(629), - [anon_sym_DASH_GT] = ACTIONS(629), - [anon_sym_POUND] = ACTIONS(629), - [anon_sym_SQUOTE] = ACTIONS(626), - [anon_sym_as] = ACTIONS(626), - [anon_sym_async] = ACTIONS(626), - [anon_sym_await] = ACTIONS(626), - [anon_sym_break] = ACTIONS(626), - [anon_sym_const] = ACTIONS(626), - [anon_sym_continue] = ACTIONS(626), - [anon_sym_default] = ACTIONS(626), - [anon_sym_enum] = ACTIONS(626), - [anon_sym_fn] = ACTIONS(626), - [anon_sym_for] = ACTIONS(626), - [anon_sym_if] = ACTIONS(626), - [anon_sym_impl] = ACTIONS(626), - [anon_sym_let] = ACTIONS(626), - [anon_sym_loop] = ACTIONS(626), - [anon_sym_match] = ACTIONS(626), - [anon_sym_mod] = ACTIONS(626), - [anon_sym_pub] = ACTIONS(626), - [anon_sym_return] = ACTIONS(626), - [anon_sym_static] = ACTIONS(626), - [anon_sym_struct] = ACTIONS(626), - [anon_sym_trait] = ACTIONS(626), - [anon_sym_type] = ACTIONS(626), - [anon_sym_union] = ACTIONS(626), - [anon_sym_unsafe] = ACTIONS(626), - [anon_sym_use] = ACTIONS(626), - [anon_sym_where] = ACTIONS(626), - [anon_sym_while] = ACTIONS(626), - [sym_mutable_specifier] = ACTIONS(626), - [sym_integer_literal] = ACTIONS(649), - [aux_sym_string_literal_token1] = ACTIONS(652), - [sym_char_literal] = ACTIONS(649), - [anon_sym_true] = ACTIONS(655), - [anon_sym_false] = ACTIONS(655), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(626), - [sym_super] = ACTIONS(626), - [sym_crate] = ACTIONS(626), - [sym__raw_string_literal_start] = ACTIONS(658), - [sym_float_literal] = ACTIONS(649), + [sym_identifier] = ACTIONS(597), + [anon_sym_SEMI] = ACTIONS(600), + [anon_sym_LPAREN] = ACTIONS(603), + [anon_sym_RPAREN] = ACTIONS(606), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_RBRACK] = ACTIONS(606), + [anon_sym_LBRACE] = ACTIONS(611), + [anon_sym_RBRACE] = ACTIONS(606), + [anon_sym_COMMA] = ACTIONS(600), + [anon_sym_EQ_GT] = ACTIONS(600), + [anon_sym_COLON] = ACTIONS(614), + [anon_sym_DOLLAR] = ACTIONS(617), + [anon_sym_PLUS] = ACTIONS(614), + [anon_sym_STAR] = ACTIONS(614), + [anon_sym_QMARK] = ACTIONS(600), + [anon_sym_u8] = ACTIONS(597), + [anon_sym_i8] = ACTIONS(597), + [anon_sym_u16] = ACTIONS(597), + [anon_sym_i16] = ACTIONS(597), + [anon_sym_u32] = ACTIONS(597), + [anon_sym_i32] = ACTIONS(597), + [anon_sym_u64] = ACTIONS(597), + [anon_sym_i64] = ACTIONS(597), + [anon_sym_u128] = ACTIONS(597), + [anon_sym_i128] = ACTIONS(597), + [anon_sym_isize] = ACTIONS(597), + [anon_sym_usize] = ACTIONS(597), + [anon_sym_f32] = ACTIONS(597), + [anon_sym_f64] = ACTIONS(597), + [anon_sym_bool] = ACTIONS(597), + [anon_sym_str] = ACTIONS(597), + [anon_sym_char] = ACTIONS(597), + [anon_sym_DASH] = ACTIONS(614), + [anon_sym_SLASH] = ACTIONS(614), + [anon_sym_PERCENT] = ACTIONS(614), + [anon_sym_CARET] = ACTIONS(614), + [anon_sym_BANG] = ACTIONS(614), + [anon_sym_AMP] = ACTIONS(614), + [anon_sym_PIPE] = ACTIONS(614), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(600), + [anon_sym_LT_LT] = ACTIONS(614), + [anon_sym_GT_GT] = ACTIONS(614), + [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_CARET_EQ] = ACTIONS(600), + [anon_sym_AMP_EQ] = ACTIONS(600), + [anon_sym_PIPE_EQ] = ACTIONS(600), + [anon_sym_LT_LT_EQ] = ACTIONS(600), + [anon_sym_GT_GT_EQ] = ACTIONS(600), + [anon_sym_EQ] = ACTIONS(614), + [anon_sym_EQ_EQ] = ACTIONS(600), + [anon_sym_BANG_EQ] = ACTIONS(600), + [anon_sym_GT] = ACTIONS(614), + [anon_sym_LT] = ACTIONS(614), + [anon_sym_GT_EQ] = ACTIONS(600), + [anon_sym_LT_EQ] = ACTIONS(600), + [anon_sym_AT] = ACTIONS(600), + [anon_sym__] = ACTIONS(614), + [anon_sym_DOT] = ACTIONS(614), + [anon_sym_DOT_DOT] = ACTIONS(614), + [anon_sym_DOT_DOT_DOT] = ACTIONS(600), + [anon_sym_DOT_DOT_EQ] = ACTIONS(600), + [anon_sym_COLON_COLON] = ACTIONS(600), + [anon_sym_DASH_GT] = ACTIONS(600), + [anon_sym_POUND] = ACTIONS(600), + [anon_sym_SQUOTE] = ACTIONS(597), + [anon_sym_as] = ACTIONS(597), + [anon_sym_async] = ACTIONS(597), + [anon_sym_await] = ACTIONS(597), + [anon_sym_break] = ACTIONS(597), + [anon_sym_const] = ACTIONS(597), + [anon_sym_continue] = ACTIONS(597), + [anon_sym_default] = ACTIONS(597), + [anon_sym_enum] = ACTIONS(597), + [anon_sym_fn] = ACTIONS(597), + [anon_sym_for] = ACTIONS(597), + [anon_sym_if] = ACTIONS(597), + [anon_sym_impl] = ACTIONS(597), + [anon_sym_let] = ACTIONS(597), + [anon_sym_loop] = ACTIONS(597), + [anon_sym_match] = ACTIONS(597), + [anon_sym_mod] = ACTIONS(597), + [anon_sym_pub] = ACTIONS(597), + [anon_sym_return] = ACTIONS(597), + [anon_sym_static] = ACTIONS(597), + [anon_sym_struct] = ACTIONS(597), + [anon_sym_trait] = ACTIONS(597), + [anon_sym_type] = ACTIONS(597), + [anon_sym_union] = ACTIONS(597), + [anon_sym_unsafe] = ACTIONS(597), + [anon_sym_use] = ACTIONS(597), + [anon_sym_where] = ACTIONS(597), + [anon_sym_while] = ACTIONS(597), + [sym_mutable_specifier] = ACTIONS(597), + [sym_integer_literal] = ACTIONS(620), + [aux_sym_string_literal_token1] = ACTIONS(623), + [sym_char_literal] = ACTIONS(620), + [anon_sym_true] = ACTIONS(626), + [anon_sym_false] = ACTIONS(626), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(597), + [sym_super] = ACTIONS(597), + [sym_crate] = ACTIONS(597), + [sym__raw_string_literal_start] = ACTIONS(629), + [sym_float_literal] = ACTIONS(620), }, [84] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), + [sym__token_pattern] = STATE(160), + [sym_token_tree_pattern] = STATE(173), + [sym_token_binding_pattern] = STATE(173), + [sym_token_repetition_pattern] = STATE(173), + [sym__literal] = STATE(173), + [sym_string_literal] = STATE(166), + [sym_raw_string_literal] = STATE(166), + [sym_boolean_literal] = STATE(166), [sym_line_comment] = STATE(84), [sym_block_comment] = STATE(84), - [aux_sym__non_special_token_repeat1] = STATE(160), - [aux_sym_delim_token_tree_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(663), - [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_RPAREN] = ACTIONS(667), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(671), - [anon_sym_EQ_GT] = ACTIONS(663), - [anon_sym_COLON] = ACTIONS(673), - [anon_sym_DOLLAR] = ACTIONS(675), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_STAR] = ACTIONS(673), - [anon_sym_QMARK] = ACTIONS(663), - [anon_sym_u8] = ACTIONS(661), - [anon_sym_i8] = ACTIONS(661), - [anon_sym_u16] = ACTIONS(661), - [anon_sym_i16] = ACTIONS(661), - [anon_sym_u32] = ACTIONS(661), - [anon_sym_i32] = ACTIONS(661), - [anon_sym_u64] = ACTIONS(661), - [anon_sym_i64] = ACTIONS(661), - [anon_sym_u128] = ACTIONS(661), - [anon_sym_i128] = ACTIONS(661), - [anon_sym_isize] = ACTIONS(661), - [anon_sym_usize] = ACTIONS(661), - [anon_sym_f32] = ACTIONS(661), - [anon_sym_f64] = ACTIONS(661), - [anon_sym_bool] = ACTIONS(661), - [anon_sym_str] = ACTIONS(661), - [anon_sym_char] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_SLASH] = ACTIONS(673), - [anon_sym_PERCENT] = ACTIONS(673), - [anon_sym_CARET] = ACTIONS(673), - [anon_sym_BANG] = ACTIONS(673), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE] = ACTIONS(673), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [anon_sym_LT_LT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(673), - [anon_sym_PLUS_EQ] = ACTIONS(663), - [anon_sym_DASH_EQ] = ACTIONS(663), - [anon_sym_STAR_EQ] = ACTIONS(663), - [anon_sym_SLASH_EQ] = ACTIONS(663), - [anon_sym_PERCENT_EQ] = ACTIONS(663), - [anon_sym_CARET_EQ] = ACTIONS(663), - [anon_sym_AMP_EQ] = ACTIONS(663), - [anon_sym_PIPE_EQ] = ACTIONS(663), - [anon_sym_LT_LT_EQ] = ACTIONS(663), - [anon_sym_GT_GT_EQ] = ACTIONS(663), - [anon_sym_EQ] = ACTIONS(673), - [anon_sym_EQ_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_AT] = ACTIONS(663), - [anon_sym__] = ACTIONS(673), - [anon_sym_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_COLON_COLON] = ACTIONS(663), - [anon_sym_DASH_GT] = ACTIONS(663), - [anon_sym_POUND] = ACTIONS(663), - [anon_sym_SQUOTE] = ACTIONS(661), - [anon_sym_as] = ACTIONS(661), - [anon_sym_async] = ACTIONS(661), - [anon_sym_await] = ACTIONS(661), - [anon_sym_break] = ACTIONS(661), - [anon_sym_const] = ACTIONS(661), - [anon_sym_continue] = ACTIONS(661), - [anon_sym_default] = ACTIONS(661), - [anon_sym_enum] = ACTIONS(661), - [anon_sym_fn] = ACTIONS(661), - [anon_sym_for] = ACTIONS(661), - [anon_sym_if] = ACTIONS(661), - [anon_sym_impl] = ACTIONS(661), - [anon_sym_let] = ACTIONS(661), - [anon_sym_loop] = ACTIONS(661), - [anon_sym_match] = ACTIONS(661), - [anon_sym_mod] = ACTIONS(661), - [anon_sym_pub] = ACTIONS(661), - [anon_sym_return] = ACTIONS(661), - [anon_sym_static] = ACTIONS(661), - [anon_sym_struct] = ACTIONS(661), - [anon_sym_trait] = ACTIONS(661), - [anon_sym_type] = ACTIONS(661), - [anon_sym_union] = ACTIONS(661), - [anon_sym_unsafe] = ACTIONS(661), - [anon_sym_use] = ACTIONS(661), - [anon_sym_where] = ACTIONS(661), - [anon_sym_while] = ACTIONS(661), - [sym_mutable_specifier] = ACTIONS(661), - [sym_integer_literal] = ACTIONS(677), - [aux_sym_string_literal_token1] = ACTIONS(679), - [sym_char_literal] = ACTIONS(677), - [anon_sym_true] = ACTIONS(681), - [anon_sym_false] = ACTIONS(681), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_crate] = ACTIONS(661), - [sym__raw_string_literal_start] = ACTIONS(683), - [sym_float_literal] = ACTIONS(677), + [aux_sym_macro_def_args_repeat1] = STATE(67), + [aux_sym__non_special_token_repeat1] = STATE(142), + [sym_identifier] = ACTIONS(557), + [anon_sym_SEMI] = ACTIONS(559), + [anon_sym_LPAREN] = ACTIONS(561), + [anon_sym_LBRACK] = ACTIONS(565), + [anon_sym_LBRACE] = ACTIONS(567), + [anon_sym_RBRACE] = ACTIONS(591), + [anon_sym_COMMA] = ACTIONS(559), + [anon_sym_EQ_GT] = ACTIONS(559), + [anon_sym_COLON] = ACTIONS(569), + [anon_sym_DOLLAR] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(569), + [anon_sym_QMARK] = ACTIONS(559), + [anon_sym_u8] = ACTIONS(557), + [anon_sym_i8] = ACTIONS(557), + [anon_sym_u16] = ACTIONS(557), + [anon_sym_i16] = ACTIONS(557), + [anon_sym_u32] = ACTIONS(557), + [anon_sym_i32] = ACTIONS(557), + [anon_sym_u64] = ACTIONS(557), + [anon_sym_i64] = ACTIONS(557), + [anon_sym_u128] = ACTIONS(557), + [anon_sym_i128] = ACTIONS(557), + [anon_sym_isize] = ACTIONS(557), + [anon_sym_usize] = ACTIONS(557), + [anon_sym_f32] = ACTIONS(557), + [anon_sym_f64] = ACTIONS(557), + [anon_sym_bool] = ACTIONS(557), + [anon_sym_str] = ACTIONS(557), + [anon_sym_char] = ACTIONS(557), + [anon_sym_DASH] = ACTIONS(569), + [anon_sym_SLASH] = ACTIONS(569), + [anon_sym_PERCENT] = ACTIONS(569), + [anon_sym_CARET] = ACTIONS(569), + [anon_sym_BANG] = ACTIONS(569), + [anon_sym_AMP] = ACTIONS(569), + [anon_sym_PIPE] = ACTIONS(569), + [anon_sym_AMP_AMP] = ACTIONS(559), + [anon_sym_PIPE_PIPE] = ACTIONS(559), + [anon_sym_LT_LT] = ACTIONS(569), + [anon_sym_GT_GT] = ACTIONS(569), + [anon_sym_PLUS_EQ] = ACTIONS(559), + [anon_sym_DASH_EQ] = ACTIONS(559), + [anon_sym_STAR_EQ] = ACTIONS(559), + [anon_sym_SLASH_EQ] = ACTIONS(559), + [anon_sym_PERCENT_EQ] = ACTIONS(559), + [anon_sym_CARET_EQ] = ACTIONS(559), + [anon_sym_AMP_EQ] = ACTIONS(559), + [anon_sym_PIPE_EQ] = ACTIONS(559), + [anon_sym_LT_LT_EQ] = ACTIONS(559), + [anon_sym_GT_GT_EQ] = ACTIONS(559), + [anon_sym_EQ] = ACTIONS(569), + [anon_sym_EQ_EQ] = ACTIONS(559), + [anon_sym_BANG_EQ] = ACTIONS(559), + [anon_sym_GT] = ACTIONS(569), + [anon_sym_LT] = ACTIONS(569), + [anon_sym_GT_EQ] = ACTIONS(559), + [anon_sym_LT_EQ] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(559), + [anon_sym__] = ACTIONS(569), + [anon_sym_DOT] = ACTIONS(569), + [anon_sym_DOT_DOT] = ACTIONS(569), + [anon_sym_DOT_DOT_DOT] = ACTIONS(559), + [anon_sym_DOT_DOT_EQ] = ACTIONS(559), + [anon_sym_COLON_COLON] = ACTIONS(559), + [anon_sym_DASH_GT] = ACTIONS(559), + [anon_sym_POUND] = ACTIONS(559), + [anon_sym_SQUOTE] = ACTIONS(557), + [anon_sym_as] = ACTIONS(557), + [anon_sym_async] = ACTIONS(557), + [anon_sym_await] = ACTIONS(557), + [anon_sym_break] = ACTIONS(557), + [anon_sym_const] = ACTIONS(557), + [anon_sym_continue] = ACTIONS(557), + [anon_sym_default] = ACTIONS(557), + [anon_sym_enum] = ACTIONS(557), + [anon_sym_fn] = ACTIONS(557), + [anon_sym_for] = ACTIONS(557), + [anon_sym_if] = ACTIONS(557), + [anon_sym_impl] = ACTIONS(557), + [anon_sym_let] = ACTIONS(557), + [anon_sym_loop] = ACTIONS(557), + [anon_sym_match] = ACTIONS(557), + [anon_sym_mod] = ACTIONS(557), + [anon_sym_pub] = ACTIONS(557), + [anon_sym_return] = ACTIONS(557), + [anon_sym_static] = ACTIONS(557), + [anon_sym_struct] = ACTIONS(557), + [anon_sym_trait] = ACTIONS(557), + [anon_sym_type] = ACTIONS(557), + [anon_sym_union] = ACTIONS(557), + [anon_sym_unsafe] = ACTIONS(557), + [anon_sym_use] = ACTIONS(557), + [anon_sym_where] = ACTIONS(557), + [anon_sym_while] = ACTIONS(557), + [sym_mutable_specifier] = ACTIONS(557), + [sym_integer_literal] = ACTIONS(573), + [aux_sym_string_literal_token1] = ACTIONS(575), + [sym_char_literal] = ACTIONS(573), + [anon_sym_true] = ACTIONS(577), + [anon_sym_false] = ACTIONS(577), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(557), + [sym_super] = ACTIONS(557), + [sym_crate] = ACTIONS(557), + [sym_metavariable] = ACTIONS(579), + [sym__raw_string_literal_start] = ACTIONS(581), + [sym_float_literal] = ACTIONS(573), }, [85] = { - [sym_token_tree] = STATE(157), - [sym_token_repetition] = STATE(157), - [sym__literal] = STATE(157), - [sym_string_literal] = STATE(156), - [sym_raw_string_literal] = STATE(156), - [sym_boolean_literal] = STATE(156), + [sym_token_tree] = STATE(158), + [sym_token_repetition] = STATE(158), + [sym__literal] = STATE(158), + [sym_string_literal] = STATE(166), + [sym_raw_string_literal] = STATE(166), + [sym_boolean_literal] = STATE(166), [sym_line_comment] = STATE(85), [sym_block_comment] = STATE(85), - [aux_sym_token_tree_repeat1] = STATE(82), - [aux_sym__non_special_token_repeat1] = STATE(136), - [sym_identifier] = ACTIONS(685), - [anon_sym_SEMI] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_RPAREN] = ACTIONS(689), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_EQ_GT] = ACTIONS(554), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(695), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_QMARK] = ACTIONS(554), - [anon_sym_u8] = ACTIONS(685), - [anon_sym_i8] = ACTIONS(685), - [anon_sym_u16] = ACTIONS(685), - [anon_sym_i16] = ACTIONS(685), - [anon_sym_u32] = ACTIONS(685), - [anon_sym_i32] = ACTIONS(685), - [anon_sym_u64] = ACTIONS(685), - [anon_sym_i64] = ACTIONS(685), - [anon_sym_u128] = ACTIONS(685), - [anon_sym_i128] = ACTIONS(685), - [anon_sym_isize] = ACTIONS(685), - [anon_sym_usize] = ACTIONS(685), - [anon_sym_f32] = ACTIONS(685), - [anon_sym_f64] = ACTIONS(685), - [anon_sym_bool] = ACTIONS(685), - [anon_sym_str] = ACTIONS(685), - [anon_sym_char] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_AMP] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_AMP_AMP] = ACTIONS(554), - [anon_sym_PIPE_PIPE] = ACTIONS(554), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_GT_GT] = ACTIONS(564), - [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_CARET_EQ] = ACTIONS(554), - [anon_sym_AMP_EQ] = ACTIONS(554), - [anon_sym_PIPE_EQ] = ACTIONS(554), - [anon_sym_LT_LT_EQ] = ACTIONS(554), - [anon_sym_GT_GT_EQ] = ACTIONS(554), - [anon_sym_EQ] = ACTIONS(564), - [anon_sym_EQ_EQ] = ACTIONS(554), - [anon_sym_BANG_EQ] = ACTIONS(554), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT_EQ] = ACTIONS(554), - [anon_sym_LT_EQ] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(554), - [anon_sym__] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(554), - [anon_sym_DOT_DOT_EQ] = ACTIONS(554), - [anon_sym_COMMA] = ACTIONS(554), - [anon_sym_COLON_COLON] = ACTIONS(554), - [anon_sym_DASH_GT] = ACTIONS(554), - [anon_sym_POUND] = ACTIONS(554), - [anon_sym_SQUOTE] = ACTIONS(685), - [anon_sym_as] = ACTIONS(685), - [anon_sym_async] = ACTIONS(685), - [anon_sym_await] = ACTIONS(685), - [anon_sym_break] = ACTIONS(685), - [anon_sym_const] = ACTIONS(685), - [anon_sym_continue] = ACTIONS(685), - [anon_sym_default] = ACTIONS(685), - [anon_sym_enum] = ACTIONS(685), - [anon_sym_fn] = ACTIONS(685), - [anon_sym_for] = ACTIONS(685), - [anon_sym_if] = ACTIONS(685), - [anon_sym_impl] = ACTIONS(685), - [anon_sym_let] = ACTIONS(685), - [anon_sym_loop] = ACTIONS(685), - [anon_sym_match] = ACTIONS(685), - [anon_sym_mod] = ACTIONS(685), - [anon_sym_pub] = ACTIONS(685), - [anon_sym_return] = ACTIONS(685), - [anon_sym_static] = ACTIONS(685), - [anon_sym_struct] = ACTIONS(685), - [anon_sym_trait] = ACTIONS(685), - [anon_sym_type] = ACTIONS(685), - [anon_sym_union] = ACTIONS(685), - [anon_sym_unsafe] = ACTIONS(685), - [anon_sym_use] = ACTIONS(685), - [anon_sym_where] = ACTIONS(685), - [anon_sym_while] = ACTIONS(685), - [sym_mutable_specifier] = ACTIONS(685), - [sym_integer_literal] = ACTIONS(568), - [aux_sym_string_literal_token1] = ACTIONS(570), - [sym_char_literal] = ACTIONS(568), - [anon_sym_true] = ACTIONS(572), - [anon_sym_false] = ACTIONS(572), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(685), - [sym_super] = ACTIONS(685), - [sym_crate] = ACTIONS(685), - [sym_metavariable] = ACTIONS(697), - [sym__raw_string_literal_start] = ACTIONS(576), - [sym_float_literal] = ACTIONS(568), + [aux_sym_macro_def_body_repeat1] = STATE(85), + [aux_sym__non_special_token_repeat1] = STATE(141), + [sym_identifier] = ACTIONS(632), + [anon_sym_SEMI] = ACTIONS(635), + [anon_sym_LPAREN] = ACTIONS(638), + [anon_sym_RPAREN] = ACTIONS(641), + [anon_sym_LBRACK] = ACTIONS(643), + [anon_sym_RBRACK] = ACTIONS(641), + [anon_sym_LBRACE] = ACTIONS(646), + [anon_sym_RBRACE] = ACTIONS(641), + [anon_sym_COMMA] = ACTIONS(635), + [anon_sym_EQ_GT] = ACTIONS(635), + [anon_sym_COLON] = ACTIONS(649), + [anon_sym_DOLLAR] = ACTIONS(652), + [anon_sym_PLUS] = ACTIONS(649), + [anon_sym_STAR] = ACTIONS(649), + [anon_sym_QMARK] = ACTIONS(635), + [anon_sym_u8] = ACTIONS(632), + [anon_sym_i8] = ACTIONS(632), + [anon_sym_u16] = ACTIONS(632), + [anon_sym_i16] = ACTIONS(632), + [anon_sym_u32] = ACTIONS(632), + [anon_sym_i32] = ACTIONS(632), + [anon_sym_u64] = ACTIONS(632), + [anon_sym_i64] = ACTIONS(632), + [anon_sym_u128] = ACTIONS(632), + [anon_sym_i128] = ACTIONS(632), + [anon_sym_isize] = ACTIONS(632), + [anon_sym_usize] = ACTIONS(632), + [anon_sym_f32] = ACTIONS(632), + [anon_sym_f64] = ACTIONS(632), + [anon_sym_bool] = ACTIONS(632), + [anon_sym_str] = ACTIONS(632), + [anon_sym_char] = ACTIONS(632), + [anon_sym_DASH] = ACTIONS(649), + [anon_sym_SLASH] = ACTIONS(649), + [anon_sym_PERCENT] = ACTIONS(649), + [anon_sym_CARET] = ACTIONS(649), + [anon_sym_BANG] = ACTIONS(649), + [anon_sym_AMP] = ACTIONS(649), + [anon_sym_PIPE] = ACTIONS(649), + [anon_sym_AMP_AMP] = ACTIONS(635), + [anon_sym_PIPE_PIPE] = ACTIONS(635), + [anon_sym_LT_LT] = ACTIONS(649), + [anon_sym_GT_GT] = ACTIONS(649), + [anon_sym_PLUS_EQ] = ACTIONS(635), + [anon_sym_DASH_EQ] = ACTIONS(635), + [anon_sym_STAR_EQ] = ACTIONS(635), + [anon_sym_SLASH_EQ] = ACTIONS(635), + [anon_sym_PERCENT_EQ] = ACTIONS(635), + [anon_sym_CARET_EQ] = ACTIONS(635), + [anon_sym_AMP_EQ] = ACTIONS(635), + [anon_sym_PIPE_EQ] = ACTIONS(635), + [anon_sym_LT_LT_EQ] = ACTIONS(635), + [anon_sym_GT_GT_EQ] = ACTIONS(635), + [anon_sym_EQ] = ACTIONS(649), + [anon_sym_EQ_EQ] = ACTIONS(635), + [anon_sym_BANG_EQ] = ACTIONS(635), + [anon_sym_GT] = ACTIONS(649), + [anon_sym_LT] = ACTIONS(649), + [anon_sym_GT_EQ] = ACTIONS(635), + [anon_sym_LT_EQ] = ACTIONS(635), + [anon_sym_AT] = ACTIONS(635), + [anon_sym__] = ACTIONS(649), + [anon_sym_DOT] = ACTIONS(649), + [anon_sym_DOT_DOT] = ACTIONS(649), + [anon_sym_DOT_DOT_DOT] = ACTIONS(635), + [anon_sym_DOT_DOT_EQ] = ACTIONS(635), + [anon_sym_COLON_COLON] = ACTIONS(635), + [anon_sym_DASH_GT] = ACTIONS(635), + [anon_sym_POUND] = ACTIONS(635), + [anon_sym_SQUOTE] = ACTIONS(632), + [anon_sym_as] = ACTIONS(632), + [anon_sym_async] = ACTIONS(632), + [anon_sym_await] = ACTIONS(632), + [anon_sym_break] = ACTIONS(632), + [anon_sym_const] = ACTIONS(632), + [anon_sym_continue] = ACTIONS(632), + [anon_sym_default] = ACTIONS(632), + [anon_sym_enum] = ACTIONS(632), + [anon_sym_fn] = ACTIONS(632), + [anon_sym_for] = ACTIONS(632), + [anon_sym_if] = ACTIONS(632), + [anon_sym_impl] = ACTIONS(632), + [anon_sym_let] = ACTIONS(632), + [anon_sym_loop] = ACTIONS(632), + [anon_sym_match] = ACTIONS(632), + [anon_sym_mod] = ACTIONS(632), + [anon_sym_pub] = ACTIONS(632), + [anon_sym_return] = ACTIONS(632), + [anon_sym_static] = ACTIONS(632), + [anon_sym_struct] = ACTIONS(632), + [anon_sym_trait] = ACTIONS(632), + [anon_sym_type] = ACTIONS(632), + [anon_sym_union] = ACTIONS(632), + [anon_sym_unsafe] = ACTIONS(632), + [anon_sym_use] = ACTIONS(632), + [anon_sym_where] = ACTIONS(632), + [anon_sym_while] = ACTIONS(632), + [sym_mutable_specifier] = ACTIONS(632), + [sym_integer_literal] = ACTIONS(655), + [aux_sym_string_literal_token1] = ACTIONS(658), + [sym_char_literal] = ACTIONS(655), + [anon_sym_true] = ACTIONS(661), + [anon_sym_false] = ACTIONS(661), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(632), + [sym_super] = ACTIONS(632), + [sym_crate] = ACTIONS(632), + [sym_metavariable] = ACTIONS(664), + [sym__raw_string_literal_start] = ACTIONS(667), + [sym_float_literal] = ACTIONS(655), }, [86] = { - [sym_token_tree] = STATE(157), - [sym_token_repetition] = STATE(157), - [sym__literal] = STATE(157), - [sym_string_literal] = STATE(156), - [sym_raw_string_literal] = STATE(156), - [sym_boolean_literal] = STATE(156), + [sym_token_tree] = STATE(158), + [sym_token_repetition] = STATE(158), + [sym__literal] = STATE(158), + [sym_string_literal] = STATE(166), + [sym_raw_string_literal] = STATE(166), + [sym_boolean_literal] = STATE(166), [sym_line_comment] = STATE(86), [sym_block_comment] = STATE(86), - [aux_sym_token_tree_repeat1] = STATE(82), - [aux_sym__non_special_token_repeat1] = STATE(136), - [sym_identifier] = ACTIONS(685), - [anon_sym_SEMI] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_RBRACK] = ACTIONS(689), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_EQ_GT] = ACTIONS(554), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(695), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_QMARK] = ACTIONS(554), - [anon_sym_u8] = ACTIONS(685), - [anon_sym_i8] = ACTIONS(685), - [anon_sym_u16] = ACTIONS(685), - [anon_sym_i16] = ACTIONS(685), - [anon_sym_u32] = ACTIONS(685), - [anon_sym_i32] = ACTIONS(685), - [anon_sym_u64] = ACTIONS(685), - [anon_sym_i64] = ACTIONS(685), - [anon_sym_u128] = ACTIONS(685), - [anon_sym_i128] = ACTIONS(685), - [anon_sym_isize] = ACTIONS(685), - [anon_sym_usize] = ACTIONS(685), - [anon_sym_f32] = ACTIONS(685), - [anon_sym_f64] = ACTIONS(685), - [anon_sym_bool] = ACTIONS(685), - [anon_sym_str] = ACTIONS(685), - [anon_sym_char] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_AMP] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_AMP_AMP] = ACTIONS(554), - [anon_sym_PIPE_PIPE] = ACTIONS(554), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_GT_GT] = ACTIONS(564), - [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_CARET_EQ] = ACTIONS(554), - [anon_sym_AMP_EQ] = ACTIONS(554), - [anon_sym_PIPE_EQ] = ACTIONS(554), - [anon_sym_LT_LT_EQ] = ACTIONS(554), - [anon_sym_GT_GT_EQ] = ACTIONS(554), - [anon_sym_EQ] = ACTIONS(564), - [anon_sym_EQ_EQ] = ACTIONS(554), - [anon_sym_BANG_EQ] = ACTIONS(554), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT_EQ] = ACTIONS(554), - [anon_sym_LT_EQ] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(554), - [anon_sym__] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(554), - [anon_sym_DOT_DOT_EQ] = ACTIONS(554), - [anon_sym_COMMA] = ACTIONS(554), - [anon_sym_COLON_COLON] = ACTIONS(554), - [anon_sym_DASH_GT] = ACTIONS(554), - [anon_sym_POUND] = ACTIONS(554), - [anon_sym_SQUOTE] = ACTIONS(685), - [anon_sym_as] = ACTIONS(685), - [anon_sym_async] = ACTIONS(685), - [anon_sym_await] = ACTIONS(685), - [anon_sym_break] = ACTIONS(685), - [anon_sym_const] = ACTIONS(685), - [anon_sym_continue] = ACTIONS(685), - [anon_sym_default] = ACTIONS(685), - [anon_sym_enum] = ACTIONS(685), - [anon_sym_fn] = ACTIONS(685), - [anon_sym_for] = ACTIONS(685), - [anon_sym_if] = ACTIONS(685), - [anon_sym_impl] = ACTIONS(685), - [anon_sym_let] = ACTIONS(685), - [anon_sym_loop] = ACTIONS(685), - [anon_sym_match] = ACTIONS(685), - [anon_sym_mod] = ACTIONS(685), - [anon_sym_pub] = ACTIONS(685), - [anon_sym_return] = ACTIONS(685), - [anon_sym_static] = ACTIONS(685), - [anon_sym_struct] = ACTIONS(685), - [anon_sym_trait] = ACTIONS(685), - [anon_sym_type] = ACTIONS(685), - [anon_sym_union] = ACTIONS(685), - [anon_sym_unsafe] = ACTIONS(685), - [anon_sym_use] = ACTIONS(685), - [anon_sym_where] = ACTIONS(685), - [anon_sym_while] = ACTIONS(685), - [sym_mutable_specifier] = ACTIONS(685), - [sym_integer_literal] = ACTIONS(568), - [aux_sym_string_literal_token1] = ACTIONS(570), - [sym_char_literal] = ACTIONS(568), - [anon_sym_true] = ACTIONS(572), - [anon_sym_false] = ACTIONS(572), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(685), - [sym_super] = ACTIONS(685), - [sym_crate] = ACTIONS(685), - [sym_metavariable] = ACTIONS(697), - [sym__raw_string_literal_start] = ACTIONS(576), - [sym_float_literal] = ACTIONS(568), + [aux_sym_macro_def_body_repeat1] = STATE(128), + [aux_sym__non_special_token_repeat1] = STATE(141), + [sym_identifier] = ACTIONS(670), + [anon_sym_SEMI] = ACTIONS(559), + [anon_sym_LPAREN] = ACTIONS(672), + [anon_sym_LBRACK] = ACTIONS(674), + [anon_sym_LBRACE] = ACTIONS(676), + [anon_sym_RBRACE] = ACTIONS(678), + [anon_sym_COMMA] = ACTIONS(559), + [anon_sym_EQ_GT] = ACTIONS(559), + [anon_sym_COLON] = ACTIONS(569), + [anon_sym_DOLLAR] = ACTIONS(680), + [anon_sym_PLUS] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(569), + [anon_sym_QMARK] = ACTIONS(559), + [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_DASH] = ACTIONS(569), + [anon_sym_SLASH] = ACTIONS(569), + [anon_sym_PERCENT] = ACTIONS(569), + [anon_sym_CARET] = ACTIONS(569), + [anon_sym_BANG] = ACTIONS(569), + [anon_sym_AMP] = ACTIONS(569), + [anon_sym_PIPE] = ACTIONS(569), + [anon_sym_AMP_AMP] = ACTIONS(559), + [anon_sym_PIPE_PIPE] = ACTIONS(559), + [anon_sym_LT_LT] = ACTIONS(569), + [anon_sym_GT_GT] = ACTIONS(569), + [anon_sym_PLUS_EQ] = ACTIONS(559), + [anon_sym_DASH_EQ] = ACTIONS(559), + [anon_sym_STAR_EQ] = ACTIONS(559), + [anon_sym_SLASH_EQ] = ACTIONS(559), + [anon_sym_PERCENT_EQ] = ACTIONS(559), + [anon_sym_CARET_EQ] = ACTIONS(559), + [anon_sym_AMP_EQ] = ACTIONS(559), + [anon_sym_PIPE_EQ] = ACTIONS(559), + [anon_sym_LT_LT_EQ] = ACTIONS(559), + [anon_sym_GT_GT_EQ] = ACTIONS(559), + [anon_sym_EQ] = ACTIONS(569), + [anon_sym_EQ_EQ] = ACTIONS(559), + [anon_sym_BANG_EQ] = ACTIONS(559), + [anon_sym_GT] = ACTIONS(569), + [anon_sym_LT] = ACTIONS(569), + [anon_sym_GT_EQ] = ACTIONS(559), + [anon_sym_LT_EQ] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(559), + [anon_sym__] = ACTIONS(569), + [anon_sym_DOT] = ACTIONS(569), + [anon_sym_DOT_DOT] = ACTIONS(569), + [anon_sym_DOT_DOT_DOT] = ACTIONS(559), + [anon_sym_DOT_DOT_EQ] = ACTIONS(559), + [anon_sym_COLON_COLON] = ACTIONS(559), + [anon_sym_DASH_GT] = ACTIONS(559), + [anon_sym_POUND] = ACTIONS(559), + [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(573), + [aux_sym_string_literal_token1] = ACTIONS(575), + [sym_char_literal] = ACTIONS(573), + [anon_sym_true] = ACTIONS(577), + [anon_sym_false] = ACTIONS(577), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(670), + [sym_super] = ACTIONS(670), + [sym_crate] = ACTIONS(670), + [sym_metavariable] = ACTIONS(682), + [sym__raw_string_literal_start] = ACTIONS(581), + [sym_float_literal] = ACTIONS(573), }, [87] = { - [sym_token_tree] = STATE(157), - [sym_token_repetition] = STATE(157), - [sym__literal] = STATE(157), - [sym_string_literal] = STATE(156), - [sym_raw_string_literal] = STATE(156), - [sym_boolean_literal] = STATE(156), + [sym_token_tree] = STATE(158), + [sym_token_repetition] = STATE(158), + [sym__literal] = STATE(158), + [sym_string_literal] = STATE(166), + [sym_raw_string_literal] = STATE(166), + [sym_boolean_literal] = STATE(166), [sym_line_comment] = STATE(87), [sym_block_comment] = STATE(87), - [aux_sym_token_tree_repeat1] = STATE(82), - [aux_sym__non_special_token_repeat1] = STATE(136), - [sym_identifier] = ACTIONS(685), - [anon_sym_SEMI] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(689), - [anon_sym_EQ_GT] = ACTIONS(554), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(695), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_QMARK] = ACTIONS(554), - [anon_sym_u8] = ACTIONS(685), - [anon_sym_i8] = ACTIONS(685), - [anon_sym_u16] = ACTIONS(685), - [anon_sym_i16] = ACTIONS(685), - [anon_sym_u32] = ACTIONS(685), - [anon_sym_i32] = ACTIONS(685), - [anon_sym_u64] = ACTIONS(685), - [anon_sym_i64] = ACTIONS(685), - [anon_sym_u128] = ACTIONS(685), - [anon_sym_i128] = ACTIONS(685), - [anon_sym_isize] = ACTIONS(685), - [anon_sym_usize] = ACTIONS(685), - [anon_sym_f32] = ACTIONS(685), - [anon_sym_f64] = ACTIONS(685), - [anon_sym_bool] = ACTIONS(685), - [anon_sym_str] = ACTIONS(685), - [anon_sym_char] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_AMP] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_AMP_AMP] = ACTIONS(554), - [anon_sym_PIPE_PIPE] = ACTIONS(554), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_GT_GT] = ACTIONS(564), - [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_CARET_EQ] = ACTIONS(554), - [anon_sym_AMP_EQ] = ACTIONS(554), - [anon_sym_PIPE_EQ] = ACTIONS(554), - [anon_sym_LT_LT_EQ] = ACTIONS(554), - [anon_sym_GT_GT_EQ] = ACTIONS(554), - [anon_sym_EQ] = ACTIONS(564), - [anon_sym_EQ_EQ] = ACTIONS(554), - [anon_sym_BANG_EQ] = ACTIONS(554), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT_EQ] = ACTIONS(554), - [anon_sym_LT_EQ] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(554), - [anon_sym__] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(554), - [anon_sym_DOT_DOT_EQ] = ACTIONS(554), - [anon_sym_COMMA] = ACTIONS(554), - [anon_sym_COLON_COLON] = ACTIONS(554), - [anon_sym_DASH_GT] = ACTIONS(554), - [anon_sym_POUND] = ACTIONS(554), - [anon_sym_SQUOTE] = ACTIONS(685), - [anon_sym_as] = ACTIONS(685), - [anon_sym_async] = ACTIONS(685), - [anon_sym_await] = ACTIONS(685), - [anon_sym_break] = ACTIONS(685), - [anon_sym_const] = ACTIONS(685), - [anon_sym_continue] = ACTIONS(685), - [anon_sym_default] = ACTIONS(685), - [anon_sym_enum] = ACTIONS(685), - [anon_sym_fn] = ACTIONS(685), - [anon_sym_for] = ACTIONS(685), - [anon_sym_if] = ACTIONS(685), - [anon_sym_impl] = ACTIONS(685), - [anon_sym_let] = ACTIONS(685), - [anon_sym_loop] = ACTIONS(685), - [anon_sym_match] = ACTIONS(685), - [anon_sym_mod] = ACTIONS(685), - [anon_sym_pub] = ACTIONS(685), - [anon_sym_return] = ACTIONS(685), - [anon_sym_static] = ACTIONS(685), - [anon_sym_struct] = ACTIONS(685), - [anon_sym_trait] = ACTIONS(685), - [anon_sym_type] = ACTIONS(685), - [anon_sym_union] = ACTIONS(685), - [anon_sym_unsafe] = ACTIONS(685), - [anon_sym_use] = ACTIONS(685), - [anon_sym_where] = ACTIONS(685), - [anon_sym_while] = ACTIONS(685), - [sym_mutable_specifier] = ACTIONS(685), - [sym_integer_literal] = ACTIONS(568), - [aux_sym_string_literal_token1] = ACTIONS(570), - [sym_char_literal] = ACTIONS(568), - [anon_sym_true] = ACTIONS(572), - [anon_sym_false] = ACTIONS(572), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(685), - [sym_super] = ACTIONS(685), - [sym_crate] = ACTIONS(685), - [sym_metavariable] = ACTIONS(697), - [sym__raw_string_literal_start] = ACTIONS(576), - [sym_float_literal] = ACTIONS(568), + [aux_sym_macro_def_body_repeat1] = STATE(124), + [aux_sym__non_special_token_repeat1] = STATE(141), + [sym_identifier] = ACTIONS(670), + [anon_sym_SEMI] = ACTIONS(559), + [anon_sym_LPAREN] = ACTIONS(672), + [anon_sym_LBRACK] = ACTIONS(674), + [anon_sym_RBRACK] = ACTIONS(684), + [anon_sym_LBRACE] = ACTIONS(676), + [anon_sym_COMMA] = ACTIONS(559), + [anon_sym_EQ_GT] = ACTIONS(559), + [anon_sym_COLON] = ACTIONS(569), + [anon_sym_DOLLAR] = ACTIONS(680), + [anon_sym_PLUS] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(569), + [anon_sym_QMARK] = ACTIONS(559), + [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_DASH] = ACTIONS(569), + [anon_sym_SLASH] = ACTIONS(569), + [anon_sym_PERCENT] = ACTIONS(569), + [anon_sym_CARET] = ACTIONS(569), + [anon_sym_BANG] = ACTIONS(569), + [anon_sym_AMP] = ACTIONS(569), + [anon_sym_PIPE] = ACTIONS(569), + [anon_sym_AMP_AMP] = ACTIONS(559), + [anon_sym_PIPE_PIPE] = ACTIONS(559), + [anon_sym_LT_LT] = ACTIONS(569), + [anon_sym_GT_GT] = ACTIONS(569), + [anon_sym_PLUS_EQ] = ACTIONS(559), + [anon_sym_DASH_EQ] = ACTIONS(559), + [anon_sym_STAR_EQ] = ACTIONS(559), + [anon_sym_SLASH_EQ] = ACTIONS(559), + [anon_sym_PERCENT_EQ] = ACTIONS(559), + [anon_sym_CARET_EQ] = ACTIONS(559), + [anon_sym_AMP_EQ] = ACTIONS(559), + [anon_sym_PIPE_EQ] = ACTIONS(559), + [anon_sym_LT_LT_EQ] = ACTIONS(559), + [anon_sym_GT_GT_EQ] = ACTIONS(559), + [anon_sym_EQ] = ACTIONS(569), + [anon_sym_EQ_EQ] = ACTIONS(559), + [anon_sym_BANG_EQ] = ACTIONS(559), + [anon_sym_GT] = ACTIONS(569), + [anon_sym_LT] = ACTIONS(569), + [anon_sym_GT_EQ] = ACTIONS(559), + [anon_sym_LT_EQ] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(559), + [anon_sym__] = ACTIONS(569), + [anon_sym_DOT] = ACTIONS(569), + [anon_sym_DOT_DOT] = ACTIONS(569), + [anon_sym_DOT_DOT_DOT] = ACTIONS(559), + [anon_sym_DOT_DOT_EQ] = ACTIONS(559), + [anon_sym_COLON_COLON] = ACTIONS(559), + [anon_sym_DASH_GT] = ACTIONS(559), + [anon_sym_POUND] = ACTIONS(559), + [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(573), + [aux_sym_string_literal_token1] = ACTIONS(575), + [sym_char_literal] = ACTIONS(573), + [anon_sym_true] = ACTIONS(577), + [anon_sym_false] = ACTIONS(577), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(670), + [sym_super] = ACTIONS(670), + [sym_crate] = ACTIONS(670), + [sym_metavariable] = ACTIONS(682), + [sym__raw_string_literal_start] = ACTIONS(581), + [sym_float_literal] = ACTIONS(573), }, [88] = { - [sym_token_tree] = STATE(157), - [sym_token_repetition] = STATE(157), - [sym__literal] = STATE(157), - [sym_string_literal] = STATE(156), - [sym_raw_string_literal] = STATE(156), - [sym_boolean_literal] = STATE(156), + [sym_delim_token_tree] = STATE(201), + [sym__delim_tokens] = STATE(198), + [sym__non_delim_token] = STATE(201), + [sym__literal] = STATE(205), + [sym_string_literal] = STATE(214), + [sym_raw_string_literal] = STATE(214), + [sym_boolean_literal] = STATE(214), [sym_line_comment] = STATE(88), [sym_block_comment] = STATE(88), - [aux_sym_token_tree_repeat1] = STATE(90), - [aux_sym__non_special_token_repeat1] = STATE(136), - [sym_identifier] = ACTIONS(685), - [anon_sym_SEMI] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_RPAREN] = ACTIONS(699), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_EQ_GT] = ACTIONS(554), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(695), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_QMARK] = ACTIONS(554), - [anon_sym_u8] = ACTIONS(685), - [anon_sym_i8] = ACTIONS(685), - [anon_sym_u16] = ACTIONS(685), - [anon_sym_i16] = ACTIONS(685), - [anon_sym_u32] = ACTIONS(685), - [anon_sym_i32] = ACTIONS(685), - [anon_sym_u64] = ACTIONS(685), - [anon_sym_i64] = ACTIONS(685), - [anon_sym_u128] = ACTIONS(685), - [anon_sym_i128] = ACTIONS(685), - [anon_sym_isize] = ACTIONS(685), - [anon_sym_usize] = ACTIONS(685), - [anon_sym_f32] = ACTIONS(685), - [anon_sym_f64] = ACTIONS(685), - [anon_sym_bool] = ACTIONS(685), - [anon_sym_str] = ACTIONS(685), - [anon_sym_char] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_AMP] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_AMP_AMP] = ACTIONS(554), - [anon_sym_PIPE_PIPE] = ACTIONS(554), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_GT_GT] = ACTIONS(564), - [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_CARET_EQ] = ACTIONS(554), - [anon_sym_AMP_EQ] = ACTIONS(554), - [anon_sym_PIPE_EQ] = ACTIONS(554), - [anon_sym_LT_LT_EQ] = ACTIONS(554), - [anon_sym_GT_GT_EQ] = ACTIONS(554), - [anon_sym_EQ] = ACTIONS(564), - [anon_sym_EQ_EQ] = ACTIONS(554), - [anon_sym_BANG_EQ] = ACTIONS(554), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT_EQ] = ACTIONS(554), - [anon_sym_LT_EQ] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(554), - [anon_sym__] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(554), - [anon_sym_DOT_DOT_EQ] = ACTIONS(554), - [anon_sym_COMMA] = ACTIONS(554), - [anon_sym_COLON_COLON] = ACTIONS(554), - [anon_sym_DASH_GT] = ACTIONS(554), - [anon_sym_POUND] = ACTIONS(554), - [anon_sym_SQUOTE] = ACTIONS(685), - [anon_sym_as] = ACTIONS(685), - [anon_sym_async] = ACTIONS(685), - [anon_sym_await] = ACTIONS(685), - [anon_sym_break] = ACTIONS(685), - [anon_sym_const] = ACTIONS(685), - [anon_sym_continue] = ACTIONS(685), - [anon_sym_default] = ACTIONS(685), - [anon_sym_enum] = ACTIONS(685), - [anon_sym_fn] = ACTIONS(685), - [anon_sym_for] = ACTIONS(685), - [anon_sym_if] = ACTIONS(685), - [anon_sym_impl] = ACTIONS(685), - [anon_sym_let] = ACTIONS(685), - [anon_sym_loop] = ACTIONS(685), - [anon_sym_match] = ACTIONS(685), - [anon_sym_mod] = ACTIONS(685), - [anon_sym_pub] = ACTIONS(685), - [anon_sym_return] = ACTIONS(685), - [anon_sym_static] = ACTIONS(685), - [anon_sym_struct] = ACTIONS(685), - [anon_sym_trait] = ACTIONS(685), - [anon_sym_type] = ACTIONS(685), - [anon_sym_union] = ACTIONS(685), - [anon_sym_unsafe] = ACTIONS(685), - [anon_sym_use] = ACTIONS(685), - [anon_sym_where] = ACTIONS(685), - [anon_sym_while] = ACTIONS(685), - [sym_mutable_specifier] = ACTIONS(685), - [sym_integer_literal] = ACTIONS(568), - [aux_sym_string_literal_token1] = ACTIONS(570), - [sym_char_literal] = ACTIONS(568), - [anon_sym_true] = ACTIONS(572), - [anon_sym_false] = ACTIONS(572), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(685), - [sym_super] = ACTIONS(685), - [sym_crate] = ACTIONS(685), - [sym_metavariable] = ACTIONS(697), - [sym__raw_string_literal_start] = ACTIONS(576), - [sym_float_literal] = ACTIONS(568), + [aux_sym__non_special_token_repeat1] = STATE(152), + [aux_sym_delim_token_tree_repeat1] = STATE(83), + [sym_identifier] = ACTIONS(686), + [anon_sym_SEMI] = ACTIONS(688), + [anon_sym_LPAREN] = ACTIONS(690), + [anon_sym_LBRACK] = ACTIONS(692), + [anon_sym_RBRACK] = ACTIONS(694), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_COMMA] = ACTIONS(688), + [anon_sym_EQ_GT] = ACTIONS(688), + [anon_sym_COLON] = ACTIONS(698), + [anon_sym_DOLLAR] = ACTIONS(700), + [anon_sym_PLUS] = ACTIONS(698), + [anon_sym_STAR] = ACTIONS(698), + [anon_sym_QMARK] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(686), + [anon_sym_i8] = ACTIONS(686), + [anon_sym_u16] = ACTIONS(686), + [anon_sym_i16] = ACTIONS(686), + [anon_sym_u32] = ACTIONS(686), + [anon_sym_i32] = ACTIONS(686), + [anon_sym_u64] = ACTIONS(686), + [anon_sym_i64] = ACTIONS(686), + [anon_sym_u128] = ACTIONS(686), + [anon_sym_i128] = ACTIONS(686), + [anon_sym_isize] = ACTIONS(686), + [anon_sym_usize] = ACTIONS(686), + [anon_sym_f32] = ACTIONS(686), + [anon_sym_f64] = ACTIONS(686), + [anon_sym_bool] = ACTIONS(686), + [anon_sym_str] = ACTIONS(686), + [anon_sym_char] = ACTIONS(686), + [anon_sym_DASH] = ACTIONS(698), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_PERCENT] = ACTIONS(698), + [anon_sym_CARET] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(698), + [anon_sym_AMP] = ACTIONS(698), + [anon_sym_PIPE] = ACTIONS(698), + [anon_sym_AMP_AMP] = ACTIONS(688), + [anon_sym_PIPE_PIPE] = ACTIONS(688), + [anon_sym_LT_LT] = ACTIONS(698), + [anon_sym_GT_GT] = ACTIONS(698), + [anon_sym_PLUS_EQ] = ACTIONS(688), + [anon_sym_DASH_EQ] = ACTIONS(688), + [anon_sym_STAR_EQ] = ACTIONS(688), + [anon_sym_SLASH_EQ] = ACTIONS(688), + [anon_sym_PERCENT_EQ] = ACTIONS(688), + [anon_sym_CARET_EQ] = ACTIONS(688), + [anon_sym_AMP_EQ] = ACTIONS(688), + [anon_sym_PIPE_EQ] = ACTIONS(688), + [anon_sym_LT_LT_EQ] = ACTIONS(688), + [anon_sym_GT_GT_EQ] = ACTIONS(688), + [anon_sym_EQ] = ACTIONS(698), + [anon_sym_EQ_EQ] = ACTIONS(688), + [anon_sym_BANG_EQ] = ACTIONS(688), + [anon_sym_GT] = ACTIONS(698), + [anon_sym_LT] = ACTIONS(698), + [anon_sym_GT_EQ] = ACTIONS(688), + [anon_sym_LT_EQ] = ACTIONS(688), + [anon_sym_AT] = ACTIONS(688), + [anon_sym__] = ACTIONS(698), + [anon_sym_DOT] = ACTIONS(698), + [anon_sym_DOT_DOT] = ACTIONS(698), + [anon_sym_DOT_DOT_DOT] = ACTIONS(688), + [anon_sym_DOT_DOT_EQ] = ACTIONS(688), + [anon_sym_COLON_COLON] = ACTIONS(688), + [anon_sym_DASH_GT] = ACTIONS(688), + [anon_sym_POUND] = ACTIONS(688), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_as] = ACTIONS(686), + [anon_sym_async] = ACTIONS(686), + [anon_sym_await] = ACTIONS(686), + [anon_sym_break] = ACTIONS(686), + [anon_sym_const] = ACTIONS(686), + [anon_sym_continue] = ACTIONS(686), + [anon_sym_default] = ACTIONS(686), + [anon_sym_enum] = ACTIONS(686), + [anon_sym_fn] = ACTIONS(686), + [anon_sym_for] = ACTIONS(686), + [anon_sym_if] = ACTIONS(686), + [anon_sym_impl] = ACTIONS(686), + [anon_sym_let] = ACTIONS(686), + [anon_sym_loop] = ACTIONS(686), + [anon_sym_match] = ACTIONS(686), + [anon_sym_mod] = ACTIONS(686), + [anon_sym_pub] = ACTIONS(686), + [anon_sym_return] = ACTIONS(686), + [anon_sym_static] = ACTIONS(686), + [anon_sym_struct] = ACTIONS(686), + [anon_sym_trait] = ACTIONS(686), + [anon_sym_type] = ACTIONS(686), + [anon_sym_union] = ACTIONS(686), + [anon_sym_unsafe] = ACTIONS(686), + [anon_sym_use] = ACTIONS(686), + [anon_sym_where] = ACTIONS(686), + [anon_sym_while] = ACTIONS(686), + [sym_mutable_specifier] = ACTIONS(686), + [sym_integer_literal] = ACTIONS(702), + [aux_sym_string_literal_token1] = ACTIONS(704), + [sym_char_literal] = ACTIONS(702), + [anon_sym_true] = ACTIONS(706), + [anon_sym_false] = ACTIONS(706), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(686), + [sym_super] = ACTIONS(686), + [sym_crate] = ACTIONS(686), + [sym__raw_string_literal_start] = ACTIONS(708), + [sym_float_literal] = ACTIONS(702), }, [89] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), + [sym_delim_token_tree] = STATE(201), + [sym__delim_tokens] = STATE(198), + [sym__non_delim_token] = STATE(201), + [sym__literal] = STATE(205), + [sym_string_literal] = STATE(214), + [sym_raw_string_literal] = STATE(214), + [sym_boolean_literal] = STATE(214), [sym_line_comment] = STATE(89), [sym_block_comment] = STATE(89), - [aux_sym__non_special_token_repeat1] = STATE(160), + [aux_sym__non_special_token_repeat1] = STATE(152), [aux_sym_delim_token_tree_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(663), - [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_RBRACK] = ACTIONS(701), - [anon_sym_LBRACE] = ACTIONS(671), - [anon_sym_EQ_GT] = ACTIONS(663), - [anon_sym_COLON] = ACTIONS(673), - [anon_sym_DOLLAR] = ACTIONS(675), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_STAR] = ACTIONS(673), - [anon_sym_QMARK] = ACTIONS(663), - [anon_sym_u8] = ACTIONS(661), - [anon_sym_i8] = ACTIONS(661), - [anon_sym_u16] = ACTIONS(661), - [anon_sym_i16] = ACTIONS(661), - [anon_sym_u32] = ACTIONS(661), - [anon_sym_i32] = ACTIONS(661), - [anon_sym_u64] = ACTIONS(661), - [anon_sym_i64] = ACTIONS(661), - [anon_sym_u128] = ACTIONS(661), - [anon_sym_i128] = ACTIONS(661), - [anon_sym_isize] = ACTIONS(661), - [anon_sym_usize] = ACTIONS(661), - [anon_sym_f32] = ACTIONS(661), - [anon_sym_f64] = ACTIONS(661), - [anon_sym_bool] = ACTIONS(661), - [anon_sym_str] = ACTIONS(661), - [anon_sym_char] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_SLASH] = ACTIONS(673), - [anon_sym_PERCENT] = ACTIONS(673), - [anon_sym_CARET] = ACTIONS(673), - [anon_sym_BANG] = ACTIONS(673), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE] = ACTIONS(673), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [anon_sym_LT_LT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(673), - [anon_sym_PLUS_EQ] = ACTIONS(663), - [anon_sym_DASH_EQ] = ACTIONS(663), - [anon_sym_STAR_EQ] = ACTIONS(663), - [anon_sym_SLASH_EQ] = ACTIONS(663), - [anon_sym_PERCENT_EQ] = ACTIONS(663), - [anon_sym_CARET_EQ] = ACTIONS(663), - [anon_sym_AMP_EQ] = ACTIONS(663), - [anon_sym_PIPE_EQ] = ACTIONS(663), - [anon_sym_LT_LT_EQ] = ACTIONS(663), - [anon_sym_GT_GT_EQ] = ACTIONS(663), - [anon_sym_EQ] = ACTIONS(673), - [anon_sym_EQ_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_AT] = ACTIONS(663), - [anon_sym__] = ACTIONS(673), - [anon_sym_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_COLON_COLON] = ACTIONS(663), - [anon_sym_DASH_GT] = ACTIONS(663), - [anon_sym_POUND] = ACTIONS(663), - [anon_sym_SQUOTE] = ACTIONS(661), - [anon_sym_as] = ACTIONS(661), - [anon_sym_async] = ACTIONS(661), - [anon_sym_await] = ACTIONS(661), - [anon_sym_break] = ACTIONS(661), - [anon_sym_const] = ACTIONS(661), - [anon_sym_continue] = ACTIONS(661), - [anon_sym_default] = ACTIONS(661), - [anon_sym_enum] = ACTIONS(661), - [anon_sym_fn] = ACTIONS(661), - [anon_sym_for] = ACTIONS(661), - [anon_sym_if] = ACTIONS(661), - [anon_sym_impl] = ACTIONS(661), - [anon_sym_let] = ACTIONS(661), - [anon_sym_loop] = ACTIONS(661), - [anon_sym_match] = ACTIONS(661), - [anon_sym_mod] = ACTIONS(661), - [anon_sym_pub] = ACTIONS(661), - [anon_sym_return] = ACTIONS(661), - [anon_sym_static] = ACTIONS(661), - [anon_sym_struct] = ACTIONS(661), - [anon_sym_trait] = ACTIONS(661), - [anon_sym_type] = ACTIONS(661), - [anon_sym_union] = ACTIONS(661), - [anon_sym_unsafe] = ACTIONS(661), - [anon_sym_use] = ACTIONS(661), - [anon_sym_where] = ACTIONS(661), - [anon_sym_while] = ACTIONS(661), - [sym_mutable_specifier] = ACTIONS(661), - [sym_integer_literal] = ACTIONS(677), - [aux_sym_string_literal_token1] = ACTIONS(679), - [sym_char_literal] = ACTIONS(677), - [anon_sym_true] = ACTIONS(681), - [anon_sym_false] = ACTIONS(681), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_crate] = ACTIONS(661), - [sym__raw_string_literal_start] = ACTIONS(683), - [sym_float_literal] = ACTIONS(677), + [sym_identifier] = ACTIONS(686), + [anon_sym_SEMI] = ACTIONS(688), + [anon_sym_LPAREN] = ACTIONS(690), + [anon_sym_LBRACK] = ACTIONS(692), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_RBRACE] = ACTIONS(710), + [anon_sym_COMMA] = ACTIONS(688), + [anon_sym_EQ_GT] = ACTIONS(688), + [anon_sym_COLON] = ACTIONS(698), + [anon_sym_DOLLAR] = ACTIONS(700), + [anon_sym_PLUS] = ACTIONS(698), + [anon_sym_STAR] = ACTIONS(698), + [anon_sym_QMARK] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(686), + [anon_sym_i8] = ACTIONS(686), + [anon_sym_u16] = ACTIONS(686), + [anon_sym_i16] = ACTIONS(686), + [anon_sym_u32] = ACTIONS(686), + [anon_sym_i32] = ACTIONS(686), + [anon_sym_u64] = ACTIONS(686), + [anon_sym_i64] = ACTIONS(686), + [anon_sym_u128] = ACTIONS(686), + [anon_sym_i128] = ACTIONS(686), + [anon_sym_isize] = ACTIONS(686), + [anon_sym_usize] = ACTIONS(686), + [anon_sym_f32] = ACTIONS(686), + [anon_sym_f64] = ACTIONS(686), + [anon_sym_bool] = ACTIONS(686), + [anon_sym_str] = ACTIONS(686), + [anon_sym_char] = ACTIONS(686), + [anon_sym_DASH] = ACTIONS(698), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_PERCENT] = ACTIONS(698), + [anon_sym_CARET] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(698), + [anon_sym_AMP] = ACTIONS(698), + [anon_sym_PIPE] = ACTIONS(698), + [anon_sym_AMP_AMP] = ACTIONS(688), + [anon_sym_PIPE_PIPE] = ACTIONS(688), + [anon_sym_LT_LT] = ACTIONS(698), + [anon_sym_GT_GT] = ACTIONS(698), + [anon_sym_PLUS_EQ] = ACTIONS(688), + [anon_sym_DASH_EQ] = ACTIONS(688), + [anon_sym_STAR_EQ] = ACTIONS(688), + [anon_sym_SLASH_EQ] = ACTIONS(688), + [anon_sym_PERCENT_EQ] = ACTIONS(688), + [anon_sym_CARET_EQ] = ACTIONS(688), + [anon_sym_AMP_EQ] = ACTIONS(688), + [anon_sym_PIPE_EQ] = ACTIONS(688), + [anon_sym_LT_LT_EQ] = ACTIONS(688), + [anon_sym_GT_GT_EQ] = ACTIONS(688), + [anon_sym_EQ] = ACTIONS(698), + [anon_sym_EQ_EQ] = ACTIONS(688), + [anon_sym_BANG_EQ] = ACTIONS(688), + [anon_sym_GT] = ACTIONS(698), + [anon_sym_LT] = ACTIONS(698), + [anon_sym_GT_EQ] = ACTIONS(688), + [anon_sym_LT_EQ] = ACTIONS(688), + [anon_sym_AT] = ACTIONS(688), + [anon_sym__] = ACTIONS(698), + [anon_sym_DOT] = ACTIONS(698), + [anon_sym_DOT_DOT] = ACTIONS(698), + [anon_sym_DOT_DOT_DOT] = ACTIONS(688), + [anon_sym_DOT_DOT_EQ] = ACTIONS(688), + [anon_sym_COLON_COLON] = ACTIONS(688), + [anon_sym_DASH_GT] = ACTIONS(688), + [anon_sym_POUND] = ACTIONS(688), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_as] = ACTIONS(686), + [anon_sym_async] = ACTIONS(686), + [anon_sym_await] = ACTIONS(686), + [anon_sym_break] = ACTIONS(686), + [anon_sym_const] = ACTIONS(686), + [anon_sym_continue] = ACTIONS(686), + [anon_sym_default] = ACTIONS(686), + [anon_sym_enum] = ACTIONS(686), + [anon_sym_fn] = ACTIONS(686), + [anon_sym_for] = ACTIONS(686), + [anon_sym_if] = ACTIONS(686), + [anon_sym_impl] = ACTIONS(686), + [anon_sym_let] = ACTIONS(686), + [anon_sym_loop] = ACTIONS(686), + [anon_sym_match] = ACTIONS(686), + [anon_sym_mod] = ACTIONS(686), + [anon_sym_pub] = ACTIONS(686), + [anon_sym_return] = ACTIONS(686), + [anon_sym_static] = ACTIONS(686), + [anon_sym_struct] = ACTIONS(686), + [anon_sym_trait] = ACTIONS(686), + [anon_sym_type] = ACTIONS(686), + [anon_sym_union] = ACTIONS(686), + [anon_sym_unsafe] = ACTIONS(686), + [anon_sym_use] = ACTIONS(686), + [anon_sym_where] = ACTIONS(686), + [anon_sym_while] = ACTIONS(686), + [sym_mutable_specifier] = ACTIONS(686), + [sym_integer_literal] = ACTIONS(702), + [aux_sym_string_literal_token1] = ACTIONS(704), + [sym_char_literal] = ACTIONS(702), + [anon_sym_true] = ACTIONS(706), + [anon_sym_false] = ACTIONS(706), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(686), + [sym_super] = ACTIONS(686), + [sym_crate] = ACTIONS(686), + [sym__raw_string_literal_start] = ACTIONS(708), + [sym_float_literal] = ACTIONS(702), }, [90] = { - [sym_token_tree] = STATE(157), - [sym_token_repetition] = STATE(157), - [sym__literal] = STATE(157), - [sym_string_literal] = STATE(156), - [sym_raw_string_literal] = STATE(156), - [sym_boolean_literal] = STATE(156), + [sym_delim_token_tree] = STATE(201), + [sym__delim_tokens] = STATE(198), + [sym__non_delim_token] = STATE(201), + [sym__literal] = STATE(205), + [sym_string_literal] = STATE(214), + [sym_raw_string_literal] = STATE(214), + [sym_boolean_literal] = STATE(214), [sym_line_comment] = STATE(90), [sym_block_comment] = STATE(90), - [aux_sym_token_tree_repeat1] = STATE(82), - [aux_sym__non_special_token_repeat1] = STATE(136), - [sym_identifier] = ACTIONS(685), - [anon_sym_SEMI] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_RPAREN] = ACTIONS(703), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_EQ_GT] = ACTIONS(554), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(695), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_QMARK] = ACTIONS(554), - [anon_sym_u8] = ACTIONS(685), - [anon_sym_i8] = ACTIONS(685), - [anon_sym_u16] = ACTIONS(685), - [anon_sym_i16] = ACTIONS(685), - [anon_sym_u32] = ACTIONS(685), - [anon_sym_i32] = ACTIONS(685), - [anon_sym_u64] = ACTIONS(685), - [anon_sym_i64] = ACTIONS(685), - [anon_sym_u128] = ACTIONS(685), - [anon_sym_i128] = ACTIONS(685), - [anon_sym_isize] = ACTIONS(685), - [anon_sym_usize] = ACTIONS(685), - [anon_sym_f32] = ACTIONS(685), - [anon_sym_f64] = ACTIONS(685), - [anon_sym_bool] = ACTIONS(685), - [anon_sym_str] = ACTIONS(685), - [anon_sym_char] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_AMP] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_AMP_AMP] = ACTIONS(554), - [anon_sym_PIPE_PIPE] = ACTIONS(554), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_GT_GT] = ACTIONS(564), - [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_CARET_EQ] = ACTIONS(554), - [anon_sym_AMP_EQ] = ACTIONS(554), - [anon_sym_PIPE_EQ] = ACTIONS(554), - [anon_sym_LT_LT_EQ] = ACTIONS(554), - [anon_sym_GT_GT_EQ] = ACTIONS(554), - [anon_sym_EQ] = ACTIONS(564), - [anon_sym_EQ_EQ] = ACTIONS(554), - [anon_sym_BANG_EQ] = ACTIONS(554), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT_EQ] = ACTIONS(554), - [anon_sym_LT_EQ] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(554), - [anon_sym__] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(554), - [anon_sym_DOT_DOT_EQ] = ACTIONS(554), - [anon_sym_COMMA] = ACTIONS(554), - [anon_sym_COLON_COLON] = ACTIONS(554), - [anon_sym_DASH_GT] = ACTIONS(554), - [anon_sym_POUND] = ACTIONS(554), - [anon_sym_SQUOTE] = ACTIONS(685), - [anon_sym_as] = ACTIONS(685), - [anon_sym_async] = ACTIONS(685), - [anon_sym_await] = ACTIONS(685), - [anon_sym_break] = ACTIONS(685), - [anon_sym_const] = ACTIONS(685), - [anon_sym_continue] = ACTIONS(685), - [anon_sym_default] = ACTIONS(685), - [anon_sym_enum] = ACTIONS(685), - [anon_sym_fn] = ACTIONS(685), - [anon_sym_for] = ACTIONS(685), - [anon_sym_if] = ACTIONS(685), - [anon_sym_impl] = ACTIONS(685), - [anon_sym_let] = ACTIONS(685), - [anon_sym_loop] = ACTIONS(685), - [anon_sym_match] = ACTIONS(685), - [anon_sym_mod] = ACTIONS(685), - [anon_sym_pub] = ACTIONS(685), - [anon_sym_return] = ACTIONS(685), - [anon_sym_static] = ACTIONS(685), - [anon_sym_struct] = ACTIONS(685), - [anon_sym_trait] = ACTIONS(685), - [anon_sym_type] = ACTIONS(685), - [anon_sym_union] = ACTIONS(685), - [anon_sym_unsafe] = ACTIONS(685), - [anon_sym_use] = ACTIONS(685), - [anon_sym_where] = ACTIONS(685), - [anon_sym_while] = ACTIONS(685), - [sym_mutable_specifier] = ACTIONS(685), - [sym_integer_literal] = ACTIONS(568), - [aux_sym_string_literal_token1] = ACTIONS(570), - [sym_char_literal] = ACTIONS(568), - [anon_sym_true] = ACTIONS(572), - [anon_sym_false] = ACTIONS(572), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(685), - [sym_super] = ACTIONS(685), - [sym_crate] = ACTIONS(685), - [sym_metavariable] = ACTIONS(697), - [sym__raw_string_literal_start] = ACTIONS(576), - [sym_float_literal] = ACTIONS(568), + [aux_sym__non_special_token_repeat1] = STATE(152), + [aux_sym_delim_token_tree_repeat1] = STATE(83), + [sym_identifier] = ACTIONS(686), + [anon_sym_SEMI] = ACTIONS(688), + [anon_sym_LPAREN] = ACTIONS(690), + [anon_sym_LBRACK] = ACTIONS(692), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_RBRACE] = ACTIONS(694), + [anon_sym_COMMA] = ACTIONS(688), + [anon_sym_EQ_GT] = ACTIONS(688), + [anon_sym_COLON] = ACTIONS(698), + [anon_sym_DOLLAR] = ACTIONS(700), + [anon_sym_PLUS] = ACTIONS(698), + [anon_sym_STAR] = ACTIONS(698), + [anon_sym_QMARK] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(686), + [anon_sym_i8] = ACTIONS(686), + [anon_sym_u16] = ACTIONS(686), + [anon_sym_i16] = ACTIONS(686), + [anon_sym_u32] = ACTIONS(686), + [anon_sym_i32] = ACTIONS(686), + [anon_sym_u64] = ACTIONS(686), + [anon_sym_i64] = ACTIONS(686), + [anon_sym_u128] = ACTIONS(686), + [anon_sym_i128] = ACTIONS(686), + [anon_sym_isize] = ACTIONS(686), + [anon_sym_usize] = ACTIONS(686), + [anon_sym_f32] = ACTIONS(686), + [anon_sym_f64] = ACTIONS(686), + [anon_sym_bool] = ACTIONS(686), + [anon_sym_str] = ACTIONS(686), + [anon_sym_char] = ACTIONS(686), + [anon_sym_DASH] = ACTIONS(698), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_PERCENT] = ACTIONS(698), + [anon_sym_CARET] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(698), + [anon_sym_AMP] = ACTIONS(698), + [anon_sym_PIPE] = ACTIONS(698), + [anon_sym_AMP_AMP] = ACTIONS(688), + [anon_sym_PIPE_PIPE] = ACTIONS(688), + [anon_sym_LT_LT] = ACTIONS(698), + [anon_sym_GT_GT] = ACTIONS(698), + [anon_sym_PLUS_EQ] = ACTIONS(688), + [anon_sym_DASH_EQ] = ACTIONS(688), + [anon_sym_STAR_EQ] = ACTIONS(688), + [anon_sym_SLASH_EQ] = ACTIONS(688), + [anon_sym_PERCENT_EQ] = ACTIONS(688), + [anon_sym_CARET_EQ] = ACTIONS(688), + [anon_sym_AMP_EQ] = ACTIONS(688), + [anon_sym_PIPE_EQ] = ACTIONS(688), + [anon_sym_LT_LT_EQ] = ACTIONS(688), + [anon_sym_GT_GT_EQ] = ACTIONS(688), + [anon_sym_EQ] = ACTIONS(698), + [anon_sym_EQ_EQ] = ACTIONS(688), + [anon_sym_BANG_EQ] = ACTIONS(688), + [anon_sym_GT] = ACTIONS(698), + [anon_sym_LT] = ACTIONS(698), + [anon_sym_GT_EQ] = ACTIONS(688), + [anon_sym_LT_EQ] = ACTIONS(688), + [anon_sym_AT] = ACTIONS(688), + [anon_sym__] = ACTIONS(698), + [anon_sym_DOT] = ACTIONS(698), + [anon_sym_DOT_DOT] = ACTIONS(698), + [anon_sym_DOT_DOT_DOT] = ACTIONS(688), + [anon_sym_DOT_DOT_EQ] = ACTIONS(688), + [anon_sym_COLON_COLON] = ACTIONS(688), + [anon_sym_DASH_GT] = ACTIONS(688), + [anon_sym_POUND] = ACTIONS(688), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_as] = ACTIONS(686), + [anon_sym_async] = ACTIONS(686), + [anon_sym_await] = ACTIONS(686), + [anon_sym_break] = ACTIONS(686), + [anon_sym_const] = ACTIONS(686), + [anon_sym_continue] = ACTIONS(686), + [anon_sym_default] = ACTIONS(686), + [anon_sym_enum] = ACTIONS(686), + [anon_sym_fn] = ACTIONS(686), + [anon_sym_for] = ACTIONS(686), + [anon_sym_if] = ACTIONS(686), + [anon_sym_impl] = ACTIONS(686), + [anon_sym_let] = ACTIONS(686), + [anon_sym_loop] = ACTIONS(686), + [anon_sym_match] = ACTIONS(686), + [anon_sym_mod] = ACTIONS(686), + [anon_sym_pub] = ACTIONS(686), + [anon_sym_return] = ACTIONS(686), + [anon_sym_static] = ACTIONS(686), + [anon_sym_struct] = ACTIONS(686), + [anon_sym_trait] = ACTIONS(686), + [anon_sym_type] = ACTIONS(686), + [anon_sym_union] = ACTIONS(686), + [anon_sym_unsafe] = ACTIONS(686), + [anon_sym_use] = ACTIONS(686), + [anon_sym_where] = ACTIONS(686), + [anon_sym_while] = ACTIONS(686), + [sym_mutable_specifier] = ACTIONS(686), + [sym_integer_literal] = ACTIONS(702), + [aux_sym_string_literal_token1] = ACTIONS(704), + [sym_char_literal] = ACTIONS(702), + [anon_sym_true] = ACTIONS(706), + [anon_sym_false] = ACTIONS(706), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(686), + [sym_super] = ACTIONS(686), + [sym_crate] = ACTIONS(686), + [sym__raw_string_literal_start] = ACTIONS(708), + [sym_float_literal] = ACTIONS(702), }, [91] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), + [sym_delim_token_tree] = STATE(201), + [sym__delim_tokens] = STATE(198), + [sym__non_delim_token] = STATE(201), + [sym__literal] = STATE(205), + [sym_string_literal] = STATE(214), + [sym_raw_string_literal] = STATE(214), + [sym_boolean_literal] = STATE(214), [sym_line_comment] = STATE(91), [sym_block_comment] = STATE(91), - [aux_sym__non_special_token_repeat1] = STATE(160), - [aux_sym_delim_token_tree_repeat1] = STATE(94), - [sym_identifier] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(663), - [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_RPAREN] = ACTIONS(705), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(671), - [anon_sym_EQ_GT] = ACTIONS(663), - [anon_sym_COLON] = ACTIONS(673), - [anon_sym_DOLLAR] = ACTIONS(675), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_STAR] = ACTIONS(673), - [anon_sym_QMARK] = ACTIONS(663), - [anon_sym_u8] = ACTIONS(661), - [anon_sym_i8] = ACTIONS(661), - [anon_sym_u16] = ACTIONS(661), - [anon_sym_i16] = ACTIONS(661), - [anon_sym_u32] = ACTIONS(661), - [anon_sym_i32] = ACTIONS(661), - [anon_sym_u64] = ACTIONS(661), - [anon_sym_i64] = ACTIONS(661), - [anon_sym_u128] = ACTIONS(661), - [anon_sym_i128] = ACTIONS(661), - [anon_sym_isize] = ACTIONS(661), - [anon_sym_usize] = ACTIONS(661), - [anon_sym_f32] = ACTIONS(661), - [anon_sym_f64] = ACTIONS(661), - [anon_sym_bool] = ACTIONS(661), - [anon_sym_str] = ACTIONS(661), - [anon_sym_char] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_SLASH] = ACTIONS(673), - [anon_sym_PERCENT] = ACTIONS(673), - [anon_sym_CARET] = ACTIONS(673), - [anon_sym_BANG] = ACTIONS(673), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE] = ACTIONS(673), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [anon_sym_LT_LT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(673), - [anon_sym_PLUS_EQ] = ACTIONS(663), - [anon_sym_DASH_EQ] = ACTIONS(663), - [anon_sym_STAR_EQ] = ACTIONS(663), - [anon_sym_SLASH_EQ] = ACTIONS(663), - [anon_sym_PERCENT_EQ] = ACTIONS(663), - [anon_sym_CARET_EQ] = ACTIONS(663), - [anon_sym_AMP_EQ] = ACTIONS(663), - [anon_sym_PIPE_EQ] = ACTIONS(663), - [anon_sym_LT_LT_EQ] = ACTIONS(663), - [anon_sym_GT_GT_EQ] = ACTIONS(663), - [anon_sym_EQ] = ACTIONS(673), - [anon_sym_EQ_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_AT] = ACTIONS(663), - [anon_sym__] = ACTIONS(673), - [anon_sym_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_COLON_COLON] = ACTIONS(663), - [anon_sym_DASH_GT] = ACTIONS(663), - [anon_sym_POUND] = ACTIONS(663), - [anon_sym_SQUOTE] = ACTIONS(661), - [anon_sym_as] = ACTIONS(661), - [anon_sym_async] = ACTIONS(661), - [anon_sym_await] = ACTIONS(661), - [anon_sym_break] = ACTIONS(661), - [anon_sym_const] = ACTIONS(661), - [anon_sym_continue] = ACTIONS(661), - [anon_sym_default] = ACTIONS(661), - [anon_sym_enum] = ACTIONS(661), - [anon_sym_fn] = ACTIONS(661), - [anon_sym_for] = ACTIONS(661), - [anon_sym_if] = ACTIONS(661), - [anon_sym_impl] = ACTIONS(661), - [anon_sym_let] = ACTIONS(661), - [anon_sym_loop] = ACTIONS(661), - [anon_sym_match] = ACTIONS(661), - [anon_sym_mod] = ACTIONS(661), - [anon_sym_pub] = ACTIONS(661), - [anon_sym_return] = ACTIONS(661), - [anon_sym_static] = ACTIONS(661), - [anon_sym_struct] = ACTIONS(661), - [anon_sym_trait] = ACTIONS(661), - [anon_sym_type] = ACTIONS(661), - [anon_sym_union] = ACTIONS(661), - [anon_sym_unsafe] = ACTIONS(661), - [anon_sym_use] = ACTIONS(661), - [anon_sym_where] = ACTIONS(661), - [anon_sym_while] = ACTIONS(661), - [sym_mutable_specifier] = ACTIONS(661), - [sym_integer_literal] = ACTIONS(677), - [aux_sym_string_literal_token1] = ACTIONS(679), - [sym_char_literal] = ACTIONS(677), - [anon_sym_true] = ACTIONS(681), - [anon_sym_false] = ACTIONS(681), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_crate] = ACTIONS(661), - [sym__raw_string_literal_start] = ACTIONS(683), - [sym_float_literal] = ACTIONS(677), + [aux_sym__non_special_token_repeat1] = STATE(152), + [aux_sym_delim_token_tree_repeat1] = STATE(115), + [sym_identifier] = ACTIONS(686), + [anon_sym_SEMI] = ACTIONS(688), + [anon_sym_LPAREN] = ACTIONS(690), + [anon_sym_RPAREN] = ACTIONS(712), + [anon_sym_LBRACK] = ACTIONS(692), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_COMMA] = ACTIONS(688), + [anon_sym_EQ_GT] = ACTIONS(688), + [anon_sym_COLON] = ACTIONS(698), + [anon_sym_DOLLAR] = ACTIONS(700), + [anon_sym_PLUS] = ACTIONS(698), + [anon_sym_STAR] = ACTIONS(698), + [anon_sym_QMARK] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(686), + [anon_sym_i8] = ACTIONS(686), + [anon_sym_u16] = ACTIONS(686), + [anon_sym_i16] = ACTIONS(686), + [anon_sym_u32] = ACTIONS(686), + [anon_sym_i32] = ACTIONS(686), + [anon_sym_u64] = ACTIONS(686), + [anon_sym_i64] = ACTIONS(686), + [anon_sym_u128] = ACTIONS(686), + [anon_sym_i128] = ACTIONS(686), + [anon_sym_isize] = ACTIONS(686), + [anon_sym_usize] = ACTIONS(686), + [anon_sym_f32] = ACTIONS(686), + [anon_sym_f64] = ACTIONS(686), + [anon_sym_bool] = ACTIONS(686), + [anon_sym_str] = ACTIONS(686), + [anon_sym_char] = ACTIONS(686), + [anon_sym_DASH] = ACTIONS(698), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_PERCENT] = ACTIONS(698), + [anon_sym_CARET] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(698), + [anon_sym_AMP] = ACTIONS(698), + [anon_sym_PIPE] = ACTIONS(698), + [anon_sym_AMP_AMP] = ACTIONS(688), + [anon_sym_PIPE_PIPE] = ACTIONS(688), + [anon_sym_LT_LT] = ACTIONS(698), + [anon_sym_GT_GT] = ACTIONS(698), + [anon_sym_PLUS_EQ] = ACTIONS(688), + [anon_sym_DASH_EQ] = ACTIONS(688), + [anon_sym_STAR_EQ] = ACTIONS(688), + [anon_sym_SLASH_EQ] = ACTIONS(688), + [anon_sym_PERCENT_EQ] = ACTIONS(688), + [anon_sym_CARET_EQ] = ACTIONS(688), + [anon_sym_AMP_EQ] = ACTIONS(688), + [anon_sym_PIPE_EQ] = ACTIONS(688), + [anon_sym_LT_LT_EQ] = ACTIONS(688), + [anon_sym_GT_GT_EQ] = ACTIONS(688), + [anon_sym_EQ] = ACTIONS(698), + [anon_sym_EQ_EQ] = ACTIONS(688), + [anon_sym_BANG_EQ] = ACTIONS(688), + [anon_sym_GT] = ACTIONS(698), + [anon_sym_LT] = ACTIONS(698), + [anon_sym_GT_EQ] = ACTIONS(688), + [anon_sym_LT_EQ] = ACTIONS(688), + [anon_sym_AT] = ACTIONS(688), + [anon_sym__] = ACTIONS(698), + [anon_sym_DOT] = ACTIONS(698), + [anon_sym_DOT_DOT] = ACTIONS(698), + [anon_sym_DOT_DOT_DOT] = ACTIONS(688), + [anon_sym_DOT_DOT_EQ] = ACTIONS(688), + [anon_sym_COLON_COLON] = ACTIONS(688), + [anon_sym_DASH_GT] = ACTIONS(688), + [anon_sym_POUND] = ACTIONS(688), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_as] = ACTIONS(686), + [anon_sym_async] = ACTIONS(686), + [anon_sym_await] = ACTIONS(686), + [anon_sym_break] = ACTIONS(686), + [anon_sym_const] = ACTIONS(686), + [anon_sym_continue] = ACTIONS(686), + [anon_sym_default] = ACTIONS(686), + [anon_sym_enum] = ACTIONS(686), + [anon_sym_fn] = ACTIONS(686), + [anon_sym_for] = ACTIONS(686), + [anon_sym_if] = ACTIONS(686), + [anon_sym_impl] = ACTIONS(686), + [anon_sym_let] = ACTIONS(686), + [anon_sym_loop] = ACTIONS(686), + [anon_sym_match] = ACTIONS(686), + [anon_sym_mod] = ACTIONS(686), + [anon_sym_pub] = ACTIONS(686), + [anon_sym_return] = ACTIONS(686), + [anon_sym_static] = ACTIONS(686), + [anon_sym_struct] = ACTIONS(686), + [anon_sym_trait] = ACTIONS(686), + [anon_sym_type] = ACTIONS(686), + [anon_sym_union] = ACTIONS(686), + [anon_sym_unsafe] = ACTIONS(686), + [anon_sym_use] = ACTIONS(686), + [anon_sym_where] = ACTIONS(686), + [anon_sym_while] = ACTIONS(686), + [sym_mutable_specifier] = ACTIONS(686), + [sym_integer_literal] = ACTIONS(702), + [aux_sym_string_literal_token1] = ACTIONS(704), + [sym_char_literal] = ACTIONS(702), + [anon_sym_true] = ACTIONS(706), + [anon_sym_false] = ACTIONS(706), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(686), + [sym_super] = ACTIONS(686), + [sym_crate] = ACTIONS(686), + [sym__raw_string_literal_start] = ACTIONS(708), + [sym_float_literal] = ACTIONS(702), }, [92] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), + [sym_delim_token_tree] = STATE(201), + [sym__delim_tokens] = STATE(198), + [sym__non_delim_token] = STATE(201), + [sym__literal] = STATE(205), + [sym_string_literal] = STATE(214), + [sym_raw_string_literal] = STATE(214), + [sym_boolean_literal] = STATE(214), [sym_line_comment] = STATE(92), [sym_block_comment] = STATE(92), - [aux_sym__non_special_token_repeat1] = STATE(160), - [aux_sym_delim_token_tree_repeat1] = STATE(95), - [sym_identifier] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(663), - [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_RBRACK] = ACTIONS(705), - [anon_sym_LBRACE] = ACTIONS(671), - [anon_sym_EQ_GT] = ACTIONS(663), - [anon_sym_COLON] = ACTIONS(673), - [anon_sym_DOLLAR] = ACTIONS(675), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_STAR] = ACTIONS(673), - [anon_sym_QMARK] = ACTIONS(663), - [anon_sym_u8] = ACTIONS(661), - [anon_sym_i8] = ACTIONS(661), - [anon_sym_u16] = ACTIONS(661), - [anon_sym_i16] = ACTIONS(661), - [anon_sym_u32] = ACTIONS(661), - [anon_sym_i32] = ACTIONS(661), - [anon_sym_u64] = ACTIONS(661), - [anon_sym_i64] = ACTIONS(661), - [anon_sym_u128] = ACTIONS(661), - [anon_sym_i128] = ACTIONS(661), - [anon_sym_isize] = ACTIONS(661), - [anon_sym_usize] = ACTIONS(661), - [anon_sym_f32] = ACTIONS(661), - [anon_sym_f64] = ACTIONS(661), - [anon_sym_bool] = ACTIONS(661), - [anon_sym_str] = ACTIONS(661), - [anon_sym_char] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_SLASH] = ACTIONS(673), - [anon_sym_PERCENT] = ACTIONS(673), - [anon_sym_CARET] = ACTIONS(673), - [anon_sym_BANG] = ACTIONS(673), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE] = ACTIONS(673), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [anon_sym_LT_LT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(673), - [anon_sym_PLUS_EQ] = ACTIONS(663), - [anon_sym_DASH_EQ] = ACTIONS(663), - [anon_sym_STAR_EQ] = ACTIONS(663), - [anon_sym_SLASH_EQ] = ACTIONS(663), - [anon_sym_PERCENT_EQ] = ACTIONS(663), - [anon_sym_CARET_EQ] = ACTIONS(663), - [anon_sym_AMP_EQ] = ACTIONS(663), - [anon_sym_PIPE_EQ] = ACTIONS(663), - [anon_sym_LT_LT_EQ] = ACTIONS(663), - [anon_sym_GT_GT_EQ] = ACTIONS(663), - [anon_sym_EQ] = ACTIONS(673), - [anon_sym_EQ_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_AT] = ACTIONS(663), - [anon_sym__] = ACTIONS(673), - [anon_sym_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_COLON_COLON] = ACTIONS(663), - [anon_sym_DASH_GT] = ACTIONS(663), - [anon_sym_POUND] = ACTIONS(663), - [anon_sym_SQUOTE] = ACTIONS(661), - [anon_sym_as] = ACTIONS(661), - [anon_sym_async] = ACTIONS(661), - [anon_sym_await] = ACTIONS(661), - [anon_sym_break] = ACTIONS(661), - [anon_sym_const] = ACTIONS(661), - [anon_sym_continue] = ACTIONS(661), - [anon_sym_default] = ACTIONS(661), - [anon_sym_enum] = ACTIONS(661), - [anon_sym_fn] = ACTIONS(661), - [anon_sym_for] = ACTIONS(661), - [anon_sym_if] = ACTIONS(661), - [anon_sym_impl] = ACTIONS(661), - [anon_sym_let] = ACTIONS(661), - [anon_sym_loop] = ACTIONS(661), - [anon_sym_match] = ACTIONS(661), - [anon_sym_mod] = ACTIONS(661), - [anon_sym_pub] = ACTIONS(661), - [anon_sym_return] = ACTIONS(661), - [anon_sym_static] = ACTIONS(661), - [anon_sym_struct] = ACTIONS(661), - [anon_sym_trait] = ACTIONS(661), - [anon_sym_type] = ACTIONS(661), - [anon_sym_union] = ACTIONS(661), - [anon_sym_unsafe] = ACTIONS(661), - [anon_sym_use] = ACTIONS(661), - [anon_sym_where] = ACTIONS(661), - [anon_sym_while] = ACTIONS(661), - [sym_mutable_specifier] = ACTIONS(661), - [sym_integer_literal] = ACTIONS(677), - [aux_sym_string_literal_token1] = ACTIONS(679), - [sym_char_literal] = ACTIONS(677), - [anon_sym_true] = ACTIONS(681), - [anon_sym_false] = ACTIONS(681), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_crate] = ACTIONS(661), - [sym__raw_string_literal_start] = ACTIONS(683), - [sym_float_literal] = ACTIONS(677), + [aux_sym__non_special_token_repeat1] = STATE(152), + [aux_sym_delim_token_tree_repeat1] = STATE(96), + [sym_identifier] = ACTIONS(686), + [anon_sym_SEMI] = ACTIONS(688), + [anon_sym_LPAREN] = ACTIONS(690), + [anon_sym_RPAREN] = ACTIONS(714), + [anon_sym_LBRACK] = ACTIONS(692), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_COMMA] = ACTIONS(688), + [anon_sym_EQ_GT] = ACTIONS(688), + [anon_sym_COLON] = ACTIONS(698), + [anon_sym_DOLLAR] = ACTIONS(700), + [anon_sym_PLUS] = ACTIONS(698), + [anon_sym_STAR] = ACTIONS(698), + [anon_sym_QMARK] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(686), + [anon_sym_i8] = ACTIONS(686), + [anon_sym_u16] = ACTIONS(686), + [anon_sym_i16] = ACTIONS(686), + [anon_sym_u32] = ACTIONS(686), + [anon_sym_i32] = ACTIONS(686), + [anon_sym_u64] = ACTIONS(686), + [anon_sym_i64] = ACTIONS(686), + [anon_sym_u128] = ACTIONS(686), + [anon_sym_i128] = ACTIONS(686), + [anon_sym_isize] = ACTIONS(686), + [anon_sym_usize] = ACTIONS(686), + [anon_sym_f32] = ACTIONS(686), + [anon_sym_f64] = ACTIONS(686), + [anon_sym_bool] = ACTIONS(686), + [anon_sym_str] = ACTIONS(686), + [anon_sym_char] = ACTIONS(686), + [anon_sym_DASH] = ACTIONS(698), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_PERCENT] = ACTIONS(698), + [anon_sym_CARET] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(698), + [anon_sym_AMP] = ACTIONS(698), + [anon_sym_PIPE] = ACTIONS(698), + [anon_sym_AMP_AMP] = ACTIONS(688), + [anon_sym_PIPE_PIPE] = ACTIONS(688), + [anon_sym_LT_LT] = ACTIONS(698), + [anon_sym_GT_GT] = ACTIONS(698), + [anon_sym_PLUS_EQ] = ACTIONS(688), + [anon_sym_DASH_EQ] = ACTIONS(688), + [anon_sym_STAR_EQ] = ACTIONS(688), + [anon_sym_SLASH_EQ] = ACTIONS(688), + [anon_sym_PERCENT_EQ] = ACTIONS(688), + [anon_sym_CARET_EQ] = ACTIONS(688), + [anon_sym_AMP_EQ] = ACTIONS(688), + [anon_sym_PIPE_EQ] = ACTIONS(688), + [anon_sym_LT_LT_EQ] = ACTIONS(688), + [anon_sym_GT_GT_EQ] = ACTIONS(688), + [anon_sym_EQ] = ACTIONS(698), + [anon_sym_EQ_EQ] = ACTIONS(688), + [anon_sym_BANG_EQ] = ACTIONS(688), + [anon_sym_GT] = ACTIONS(698), + [anon_sym_LT] = ACTIONS(698), + [anon_sym_GT_EQ] = ACTIONS(688), + [anon_sym_LT_EQ] = ACTIONS(688), + [anon_sym_AT] = ACTIONS(688), + [anon_sym__] = ACTIONS(698), + [anon_sym_DOT] = ACTIONS(698), + [anon_sym_DOT_DOT] = ACTIONS(698), + [anon_sym_DOT_DOT_DOT] = ACTIONS(688), + [anon_sym_DOT_DOT_EQ] = ACTIONS(688), + [anon_sym_COLON_COLON] = ACTIONS(688), + [anon_sym_DASH_GT] = ACTIONS(688), + [anon_sym_POUND] = ACTIONS(688), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_as] = ACTIONS(686), + [anon_sym_async] = ACTIONS(686), + [anon_sym_await] = ACTIONS(686), + [anon_sym_break] = ACTIONS(686), + [anon_sym_const] = ACTIONS(686), + [anon_sym_continue] = ACTIONS(686), + [anon_sym_default] = ACTIONS(686), + [anon_sym_enum] = ACTIONS(686), + [anon_sym_fn] = ACTIONS(686), + [anon_sym_for] = ACTIONS(686), + [anon_sym_if] = ACTIONS(686), + [anon_sym_impl] = ACTIONS(686), + [anon_sym_let] = ACTIONS(686), + [anon_sym_loop] = ACTIONS(686), + [anon_sym_match] = ACTIONS(686), + [anon_sym_mod] = ACTIONS(686), + [anon_sym_pub] = ACTIONS(686), + [anon_sym_return] = ACTIONS(686), + [anon_sym_static] = ACTIONS(686), + [anon_sym_struct] = ACTIONS(686), + [anon_sym_trait] = ACTIONS(686), + [anon_sym_type] = ACTIONS(686), + [anon_sym_union] = ACTIONS(686), + [anon_sym_unsafe] = ACTIONS(686), + [anon_sym_use] = ACTIONS(686), + [anon_sym_where] = ACTIONS(686), + [anon_sym_while] = ACTIONS(686), + [sym_mutable_specifier] = ACTIONS(686), + [sym_integer_literal] = ACTIONS(702), + [aux_sym_string_literal_token1] = ACTIONS(704), + [sym_char_literal] = ACTIONS(702), + [anon_sym_true] = ACTIONS(706), + [anon_sym_false] = ACTIONS(706), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(686), + [sym_super] = ACTIONS(686), + [sym_crate] = ACTIONS(686), + [sym__raw_string_literal_start] = ACTIONS(708), + [sym_float_literal] = ACTIONS(702), }, [93] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), + [sym_delim_token_tree] = STATE(201), + [sym__delim_tokens] = STATE(198), + [sym__non_delim_token] = STATE(201), + [sym__literal] = STATE(205), + [sym_string_literal] = STATE(214), + [sym_raw_string_literal] = STATE(214), + [sym_boolean_literal] = STATE(214), [sym_line_comment] = STATE(93), [sym_block_comment] = STATE(93), - [aux_sym__non_special_token_repeat1] = STATE(160), - [aux_sym_delim_token_tree_repeat1] = STATE(96), - [sym_identifier] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(663), - [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(671), - [anon_sym_RBRACE] = ACTIONS(705), - [anon_sym_EQ_GT] = ACTIONS(663), - [anon_sym_COLON] = ACTIONS(673), - [anon_sym_DOLLAR] = ACTIONS(675), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_STAR] = ACTIONS(673), - [anon_sym_QMARK] = ACTIONS(663), - [anon_sym_u8] = ACTIONS(661), - [anon_sym_i8] = ACTIONS(661), - [anon_sym_u16] = ACTIONS(661), - [anon_sym_i16] = ACTIONS(661), - [anon_sym_u32] = ACTIONS(661), - [anon_sym_i32] = ACTIONS(661), - [anon_sym_u64] = ACTIONS(661), - [anon_sym_i64] = ACTIONS(661), - [anon_sym_u128] = ACTIONS(661), - [anon_sym_i128] = ACTIONS(661), - [anon_sym_isize] = ACTIONS(661), - [anon_sym_usize] = ACTIONS(661), - [anon_sym_f32] = ACTIONS(661), - [anon_sym_f64] = ACTIONS(661), - [anon_sym_bool] = ACTIONS(661), - [anon_sym_str] = ACTIONS(661), - [anon_sym_char] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_SLASH] = ACTIONS(673), - [anon_sym_PERCENT] = ACTIONS(673), - [anon_sym_CARET] = ACTIONS(673), - [anon_sym_BANG] = ACTIONS(673), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE] = ACTIONS(673), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [anon_sym_LT_LT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(673), - [anon_sym_PLUS_EQ] = ACTIONS(663), - [anon_sym_DASH_EQ] = ACTIONS(663), - [anon_sym_STAR_EQ] = ACTIONS(663), - [anon_sym_SLASH_EQ] = ACTIONS(663), - [anon_sym_PERCENT_EQ] = ACTIONS(663), - [anon_sym_CARET_EQ] = ACTIONS(663), - [anon_sym_AMP_EQ] = ACTIONS(663), - [anon_sym_PIPE_EQ] = ACTIONS(663), - [anon_sym_LT_LT_EQ] = ACTIONS(663), - [anon_sym_GT_GT_EQ] = ACTIONS(663), - [anon_sym_EQ] = ACTIONS(673), - [anon_sym_EQ_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_AT] = ACTIONS(663), - [anon_sym__] = ACTIONS(673), - [anon_sym_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_COLON_COLON] = ACTIONS(663), - [anon_sym_DASH_GT] = ACTIONS(663), - [anon_sym_POUND] = ACTIONS(663), - [anon_sym_SQUOTE] = ACTIONS(661), - [anon_sym_as] = ACTIONS(661), - [anon_sym_async] = ACTIONS(661), - [anon_sym_await] = ACTIONS(661), - [anon_sym_break] = ACTIONS(661), - [anon_sym_const] = ACTIONS(661), - [anon_sym_continue] = ACTIONS(661), - [anon_sym_default] = ACTIONS(661), - [anon_sym_enum] = ACTIONS(661), - [anon_sym_fn] = ACTIONS(661), - [anon_sym_for] = ACTIONS(661), - [anon_sym_if] = ACTIONS(661), - [anon_sym_impl] = ACTIONS(661), - [anon_sym_let] = ACTIONS(661), - [anon_sym_loop] = ACTIONS(661), - [anon_sym_match] = ACTIONS(661), - [anon_sym_mod] = ACTIONS(661), - [anon_sym_pub] = ACTIONS(661), - [anon_sym_return] = ACTIONS(661), - [anon_sym_static] = ACTIONS(661), - [anon_sym_struct] = ACTIONS(661), - [anon_sym_trait] = ACTIONS(661), - [anon_sym_type] = ACTIONS(661), - [anon_sym_union] = ACTIONS(661), - [anon_sym_unsafe] = ACTIONS(661), - [anon_sym_use] = ACTIONS(661), - [anon_sym_where] = ACTIONS(661), - [anon_sym_while] = ACTIONS(661), - [sym_mutable_specifier] = ACTIONS(661), - [sym_integer_literal] = ACTIONS(677), - [aux_sym_string_literal_token1] = ACTIONS(679), - [sym_char_literal] = ACTIONS(677), - [anon_sym_true] = ACTIONS(681), - [anon_sym_false] = ACTIONS(681), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_crate] = ACTIONS(661), - [sym__raw_string_literal_start] = ACTIONS(683), - [sym_float_literal] = ACTIONS(677), + [aux_sym__non_special_token_repeat1] = STATE(152), + [aux_sym_delim_token_tree_repeat1] = STATE(83), + [sym_identifier] = ACTIONS(686), + [anon_sym_SEMI] = ACTIONS(688), + [anon_sym_LPAREN] = ACTIONS(690), + [anon_sym_LBRACK] = ACTIONS(692), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_RBRACE] = ACTIONS(716), + [anon_sym_COMMA] = ACTIONS(688), + [anon_sym_EQ_GT] = ACTIONS(688), + [anon_sym_COLON] = ACTIONS(698), + [anon_sym_DOLLAR] = ACTIONS(700), + [anon_sym_PLUS] = ACTIONS(698), + [anon_sym_STAR] = ACTIONS(698), + [anon_sym_QMARK] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(686), + [anon_sym_i8] = ACTIONS(686), + [anon_sym_u16] = ACTIONS(686), + [anon_sym_i16] = ACTIONS(686), + [anon_sym_u32] = ACTIONS(686), + [anon_sym_i32] = ACTIONS(686), + [anon_sym_u64] = ACTIONS(686), + [anon_sym_i64] = ACTIONS(686), + [anon_sym_u128] = ACTIONS(686), + [anon_sym_i128] = ACTIONS(686), + [anon_sym_isize] = ACTIONS(686), + [anon_sym_usize] = ACTIONS(686), + [anon_sym_f32] = ACTIONS(686), + [anon_sym_f64] = ACTIONS(686), + [anon_sym_bool] = ACTIONS(686), + [anon_sym_str] = ACTIONS(686), + [anon_sym_char] = ACTIONS(686), + [anon_sym_DASH] = ACTIONS(698), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_PERCENT] = ACTIONS(698), + [anon_sym_CARET] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(698), + [anon_sym_AMP] = ACTIONS(698), + [anon_sym_PIPE] = ACTIONS(698), + [anon_sym_AMP_AMP] = ACTIONS(688), + [anon_sym_PIPE_PIPE] = ACTIONS(688), + [anon_sym_LT_LT] = ACTIONS(698), + [anon_sym_GT_GT] = ACTIONS(698), + [anon_sym_PLUS_EQ] = ACTIONS(688), + [anon_sym_DASH_EQ] = ACTIONS(688), + [anon_sym_STAR_EQ] = ACTIONS(688), + [anon_sym_SLASH_EQ] = ACTIONS(688), + [anon_sym_PERCENT_EQ] = ACTIONS(688), + [anon_sym_CARET_EQ] = ACTIONS(688), + [anon_sym_AMP_EQ] = ACTIONS(688), + [anon_sym_PIPE_EQ] = ACTIONS(688), + [anon_sym_LT_LT_EQ] = ACTIONS(688), + [anon_sym_GT_GT_EQ] = ACTIONS(688), + [anon_sym_EQ] = ACTIONS(698), + [anon_sym_EQ_EQ] = ACTIONS(688), + [anon_sym_BANG_EQ] = ACTIONS(688), + [anon_sym_GT] = ACTIONS(698), + [anon_sym_LT] = ACTIONS(698), + [anon_sym_GT_EQ] = ACTIONS(688), + [anon_sym_LT_EQ] = ACTIONS(688), + [anon_sym_AT] = ACTIONS(688), + [anon_sym__] = ACTIONS(698), + [anon_sym_DOT] = ACTIONS(698), + [anon_sym_DOT_DOT] = ACTIONS(698), + [anon_sym_DOT_DOT_DOT] = ACTIONS(688), + [anon_sym_DOT_DOT_EQ] = ACTIONS(688), + [anon_sym_COLON_COLON] = ACTIONS(688), + [anon_sym_DASH_GT] = ACTIONS(688), + [anon_sym_POUND] = ACTIONS(688), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_as] = ACTIONS(686), + [anon_sym_async] = ACTIONS(686), + [anon_sym_await] = ACTIONS(686), + [anon_sym_break] = ACTIONS(686), + [anon_sym_const] = ACTIONS(686), + [anon_sym_continue] = ACTIONS(686), + [anon_sym_default] = ACTIONS(686), + [anon_sym_enum] = ACTIONS(686), + [anon_sym_fn] = ACTIONS(686), + [anon_sym_for] = ACTIONS(686), + [anon_sym_if] = ACTIONS(686), + [anon_sym_impl] = ACTIONS(686), + [anon_sym_let] = ACTIONS(686), + [anon_sym_loop] = ACTIONS(686), + [anon_sym_match] = ACTIONS(686), + [anon_sym_mod] = ACTIONS(686), + [anon_sym_pub] = ACTIONS(686), + [anon_sym_return] = ACTIONS(686), + [anon_sym_static] = ACTIONS(686), + [anon_sym_struct] = ACTIONS(686), + [anon_sym_trait] = ACTIONS(686), + [anon_sym_type] = ACTIONS(686), + [anon_sym_union] = ACTIONS(686), + [anon_sym_unsafe] = ACTIONS(686), + [anon_sym_use] = ACTIONS(686), + [anon_sym_where] = ACTIONS(686), + [anon_sym_while] = ACTIONS(686), + [sym_mutable_specifier] = ACTIONS(686), + [sym_integer_literal] = ACTIONS(702), + [aux_sym_string_literal_token1] = ACTIONS(704), + [sym_char_literal] = ACTIONS(702), + [anon_sym_true] = ACTIONS(706), + [anon_sym_false] = ACTIONS(706), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(686), + [sym_super] = ACTIONS(686), + [sym_crate] = ACTIONS(686), + [sym__raw_string_literal_start] = ACTIONS(708), + [sym_float_literal] = ACTIONS(702), }, [94] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), + [sym_delim_token_tree] = STATE(201), + [sym__delim_tokens] = STATE(198), + [sym__non_delim_token] = STATE(201), + [sym__literal] = STATE(205), + [sym_string_literal] = STATE(214), + [sym_raw_string_literal] = STATE(214), + [sym_boolean_literal] = STATE(214), [sym_line_comment] = STATE(94), [sym_block_comment] = STATE(94), - [aux_sym__non_special_token_repeat1] = STATE(160), + [aux_sym__non_special_token_repeat1] = STATE(152), [aux_sym_delim_token_tree_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(663), - [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_RPAREN] = ACTIONS(707), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(671), - [anon_sym_EQ_GT] = ACTIONS(663), - [anon_sym_COLON] = ACTIONS(673), - [anon_sym_DOLLAR] = ACTIONS(675), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_STAR] = ACTIONS(673), - [anon_sym_QMARK] = ACTIONS(663), - [anon_sym_u8] = ACTIONS(661), - [anon_sym_i8] = ACTIONS(661), - [anon_sym_u16] = ACTIONS(661), - [anon_sym_i16] = ACTIONS(661), - [anon_sym_u32] = ACTIONS(661), - [anon_sym_i32] = ACTIONS(661), - [anon_sym_u64] = ACTIONS(661), - [anon_sym_i64] = ACTIONS(661), - [anon_sym_u128] = ACTIONS(661), - [anon_sym_i128] = ACTIONS(661), - [anon_sym_isize] = ACTIONS(661), - [anon_sym_usize] = ACTIONS(661), - [anon_sym_f32] = ACTIONS(661), - [anon_sym_f64] = ACTIONS(661), - [anon_sym_bool] = ACTIONS(661), - [anon_sym_str] = ACTIONS(661), - [anon_sym_char] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_SLASH] = ACTIONS(673), - [anon_sym_PERCENT] = ACTIONS(673), - [anon_sym_CARET] = ACTIONS(673), - [anon_sym_BANG] = ACTIONS(673), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE] = ACTIONS(673), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [anon_sym_LT_LT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(673), - [anon_sym_PLUS_EQ] = ACTIONS(663), - [anon_sym_DASH_EQ] = ACTIONS(663), - [anon_sym_STAR_EQ] = ACTIONS(663), - [anon_sym_SLASH_EQ] = ACTIONS(663), - [anon_sym_PERCENT_EQ] = ACTIONS(663), - [anon_sym_CARET_EQ] = ACTIONS(663), - [anon_sym_AMP_EQ] = ACTIONS(663), - [anon_sym_PIPE_EQ] = ACTIONS(663), - [anon_sym_LT_LT_EQ] = ACTIONS(663), - [anon_sym_GT_GT_EQ] = ACTIONS(663), - [anon_sym_EQ] = ACTIONS(673), - [anon_sym_EQ_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_AT] = ACTIONS(663), - [anon_sym__] = ACTIONS(673), - [anon_sym_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_COLON_COLON] = ACTIONS(663), - [anon_sym_DASH_GT] = ACTIONS(663), - [anon_sym_POUND] = ACTIONS(663), - [anon_sym_SQUOTE] = ACTIONS(661), - [anon_sym_as] = ACTIONS(661), - [anon_sym_async] = ACTIONS(661), - [anon_sym_await] = ACTIONS(661), - [anon_sym_break] = ACTIONS(661), - [anon_sym_const] = ACTIONS(661), - [anon_sym_continue] = ACTIONS(661), - [anon_sym_default] = ACTIONS(661), - [anon_sym_enum] = ACTIONS(661), - [anon_sym_fn] = ACTIONS(661), - [anon_sym_for] = ACTIONS(661), - [anon_sym_if] = ACTIONS(661), - [anon_sym_impl] = ACTIONS(661), - [anon_sym_let] = ACTIONS(661), - [anon_sym_loop] = ACTIONS(661), - [anon_sym_match] = ACTIONS(661), - [anon_sym_mod] = ACTIONS(661), - [anon_sym_pub] = ACTIONS(661), - [anon_sym_return] = ACTIONS(661), - [anon_sym_static] = ACTIONS(661), - [anon_sym_struct] = ACTIONS(661), - [anon_sym_trait] = ACTIONS(661), - [anon_sym_type] = ACTIONS(661), - [anon_sym_union] = ACTIONS(661), - [anon_sym_unsafe] = ACTIONS(661), - [anon_sym_use] = ACTIONS(661), - [anon_sym_where] = ACTIONS(661), - [anon_sym_while] = ACTIONS(661), - [sym_mutable_specifier] = ACTIONS(661), - [sym_integer_literal] = ACTIONS(677), - [aux_sym_string_literal_token1] = ACTIONS(679), - [sym_char_literal] = ACTIONS(677), - [anon_sym_true] = ACTIONS(681), - [anon_sym_false] = ACTIONS(681), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_crate] = ACTIONS(661), - [sym__raw_string_literal_start] = ACTIONS(683), - [sym_float_literal] = ACTIONS(677), + [sym_identifier] = ACTIONS(686), + [anon_sym_SEMI] = ACTIONS(688), + [anon_sym_LPAREN] = ACTIONS(690), + [anon_sym_LBRACK] = ACTIONS(692), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_RBRACE] = ACTIONS(718), + [anon_sym_COMMA] = ACTIONS(688), + [anon_sym_EQ_GT] = ACTIONS(688), + [anon_sym_COLON] = ACTIONS(698), + [anon_sym_DOLLAR] = ACTIONS(700), + [anon_sym_PLUS] = ACTIONS(698), + [anon_sym_STAR] = ACTIONS(698), + [anon_sym_QMARK] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(686), + [anon_sym_i8] = ACTIONS(686), + [anon_sym_u16] = ACTIONS(686), + [anon_sym_i16] = ACTIONS(686), + [anon_sym_u32] = ACTIONS(686), + [anon_sym_i32] = ACTIONS(686), + [anon_sym_u64] = ACTIONS(686), + [anon_sym_i64] = ACTIONS(686), + [anon_sym_u128] = ACTIONS(686), + [anon_sym_i128] = ACTIONS(686), + [anon_sym_isize] = ACTIONS(686), + [anon_sym_usize] = ACTIONS(686), + [anon_sym_f32] = ACTIONS(686), + [anon_sym_f64] = ACTIONS(686), + [anon_sym_bool] = ACTIONS(686), + [anon_sym_str] = ACTIONS(686), + [anon_sym_char] = ACTIONS(686), + [anon_sym_DASH] = ACTIONS(698), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_PERCENT] = ACTIONS(698), + [anon_sym_CARET] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(698), + [anon_sym_AMP] = ACTIONS(698), + [anon_sym_PIPE] = ACTIONS(698), + [anon_sym_AMP_AMP] = ACTIONS(688), + [anon_sym_PIPE_PIPE] = ACTIONS(688), + [anon_sym_LT_LT] = ACTIONS(698), + [anon_sym_GT_GT] = ACTIONS(698), + [anon_sym_PLUS_EQ] = ACTIONS(688), + [anon_sym_DASH_EQ] = ACTIONS(688), + [anon_sym_STAR_EQ] = ACTIONS(688), + [anon_sym_SLASH_EQ] = ACTIONS(688), + [anon_sym_PERCENT_EQ] = ACTIONS(688), + [anon_sym_CARET_EQ] = ACTIONS(688), + [anon_sym_AMP_EQ] = ACTIONS(688), + [anon_sym_PIPE_EQ] = ACTIONS(688), + [anon_sym_LT_LT_EQ] = ACTIONS(688), + [anon_sym_GT_GT_EQ] = ACTIONS(688), + [anon_sym_EQ] = ACTIONS(698), + [anon_sym_EQ_EQ] = ACTIONS(688), + [anon_sym_BANG_EQ] = ACTIONS(688), + [anon_sym_GT] = ACTIONS(698), + [anon_sym_LT] = ACTIONS(698), + [anon_sym_GT_EQ] = ACTIONS(688), + [anon_sym_LT_EQ] = ACTIONS(688), + [anon_sym_AT] = ACTIONS(688), + [anon_sym__] = ACTIONS(698), + [anon_sym_DOT] = ACTIONS(698), + [anon_sym_DOT_DOT] = ACTIONS(698), + [anon_sym_DOT_DOT_DOT] = ACTIONS(688), + [anon_sym_DOT_DOT_EQ] = ACTIONS(688), + [anon_sym_COLON_COLON] = ACTIONS(688), + [anon_sym_DASH_GT] = ACTIONS(688), + [anon_sym_POUND] = ACTIONS(688), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_as] = ACTIONS(686), + [anon_sym_async] = ACTIONS(686), + [anon_sym_await] = ACTIONS(686), + [anon_sym_break] = ACTIONS(686), + [anon_sym_const] = ACTIONS(686), + [anon_sym_continue] = ACTIONS(686), + [anon_sym_default] = ACTIONS(686), + [anon_sym_enum] = ACTIONS(686), + [anon_sym_fn] = ACTIONS(686), + [anon_sym_for] = ACTIONS(686), + [anon_sym_if] = ACTIONS(686), + [anon_sym_impl] = ACTIONS(686), + [anon_sym_let] = ACTIONS(686), + [anon_sym_loop] = ACTIONS(686), + [anon_sym_match] = ACTIONS(686), + [anon_sym_mod] = ACTIONS(686), + [anon_sym_pub] = ACTIONS(686), + [anon_sym_return] = ACTIONS(686), + [anon_sym_static] = ACTIONS(686), + [anon_sym_struct] = ACTIONS(686), + [anon_sym_trait] = ACTIONS(686), + [anon_sym_type] = ACTIONS(686), + [anon_sym_union] = ACTIONS(686), + [anon_sym_unsafe] = ACTIONS(686), + [anon_sym_use] = ACTIONS(686), + [anon_sym_where] = ACTIONS(686), + [anon_sym_while] = ACTIONS(686), + [sym_mutable_specifier] = ACTIONS(686), + [sym_integer_literal] = ACTIONS(702), + [aux_sym_string_literal_token1] = ACTIONS(704), + [sym_char_literal] = ACTIONS(702), + [anon_sym_true] = ACTIONS(706), + [anon_sym_false] = ACTIONS(706), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(686), + [sym_super] = ACTIONS(686), + [sym_crate] = ACTIONS(686), + [sym__raw_string_literal_start] = ACTIONS(708), + [sym_float_literal] = ACTIONS(702), }, [95] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), + [sym_delim_token_tree] = STATE(201), + [sym__delim_tokens] = STATE(198), + [sym__non_delim_token] = STATE(201), + [sym__literal] = STATE(205), + [sym_string_literal] = STATE(214), + [sym_raw_string_literal] = STATE(214), + [sym_boolean_literal] = STATE(214), [sym_line_comment] = STATE(95), [sym_block_comment] = STATE(95), - [aux_sym__non_special_token_repeat1] = STATE(160), + [aux_sym__non_special_token_repeat1] = STATE(152), [aux_sym_delim_token_tree_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(663), - [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_RBRACK] = ACTIONS(707), - [anon_sym_LBRACE] = ACTIONS(671), - [anon_sym_EQ_GT] = ACTIONS(663), - [anon_sym_COLON] = ACTIONS(673), - [anon_sym_DOLLAR] = ACTIONS(675), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_STAR] = ACTIONS(673), - [anon_sym_QMARK] = ACTIONS(663), - [anon_sym_u8] = ACTIONS(661), - [anon_sym_i8] = ACTIONS(661), - [anon_sym_u16] = ACTIONS(661), - [anon_sym_i16] = ACTIONS(661), - [anon_sym_u32] = ACTIONS(661), - [anon_sym_i32] = ACTIONS(661), - [anon_sym_u64] = ACTIONS(661), - [anon_sym_i64] = ACTIONS(661), - [anon_sym_u128] = ACTIONS(661), - [anon_sym_i128] = ACTIONS(661), - [anon_sym_isize] = ACTIONS(661), - [anon_sym_usize] = ACTIONS(661), - [anon_sym_f32] = ACTIONS(661), - [anon_sym_f64] = ACTIONS(661), - [anon_sym_bool] = ACTIONS(661), - [anon_sym_str] = ACTIONS(661), - [anon_sym_char] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_SLASH] = ACTIONS(673), - [anon_sym_PERCENT] = ACTIONS(673), - [anon_sym_CARET] = ACTIONS(673), - [anon_sym_BANG] = ACTIONS(673), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE] = ACTIONS(673), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [anon_sym_LT_LT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(673), - [anon_sym_PLUS_EQ] = ACTIONS(663), - [anon_sym_DASH_EQ] = ACTIONS(663), - [anon_sym_STAR_EQ] = ACTIONS(663), - [anon_sym_SLASH_EQ] = ACTIONS(663), - [anon_sym_PERCENT_EQ] = ACTIONS(663), - [anon_sym_CARET_EQ] = ACTIONS(663), - [anon_sym_AMP_EQ] = ACTIONS(663), - [anon_sym_PIPE_EQ] = ACTIONS(663), - [anon_sym_LT_LT_EQ] = ACTIONS(663), - [anon_sym_GT_GT_EQ] = ACTIONS(663), - [anon_sym_EQ] = ACTIONS(673), - [anon_sym_EQ_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_AT] = ACTIONS(663), - [anon_sym__] = ACTIONS(673), - [anon_sym_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_COLON_COLON] = ACTIONS(663), - [anon_sym_DASH_GT] = ACTIONS(663), - [anon_sym_POUND] = ACTIONS(663), - [anon_sym_SQUOTE] = ACTIONS(661), - [anon_sym_as] = ACTIONS(661), - [anon_sym_async] = ACTIONS(661), - [anon_sym_await] = ACTIONS(661), - [anon_sym_break] = ACTIONS(661), - [anon_sym_const] = ACTIONS(661), - [anon_sym_continue] = ACTIONS(661), - [anon_sym_default] = ACTIONS(661), - [anon_sym_enum] = ACTIONS(661), - [anon_sym_fn] = ACTIONS(661), - [anon_sym_for] = ACTIONS(661), - [anon_sym_if] = ACTIONS(661), - [anon_sym_impl] = ACTIONS(661), - [anon_sym_let] = ACTIONS(661), - [anon_sym_loop] = ACTIONS(661), - [anon_sym_match] = ACTIONS(661), - [anon_sym_mod] = ACTIONS(661), - [anon_sym_pub] = ACTIONS(661), - [anon_sym_return] = ACTIONS(661), - [anon_sym_static] = ACTIONS(661), - [anon_sym_struct] = ACTIONS(661), - [anon_sym_trait] = ACTIONS(661), - [anon_sym_type] = ACTIONS(661), - [anon_sym_union] = ACTIONS(661), - [anon_sym_unsafe] = ACTIONS(661), - [anon_sym_use] = ACTIONS(661), - [anon_sym_where] = ACTIONS(661), - [anon_sym_while] = ACTIONS(661), - [sym_mutable_specifier] = ACTIONS(661), - [sym_integer_literal] = ACTIONS(677), - [aux_sym_string_literal_token1] = ACTIONS(679), - [sym_char_literal] = ACTIONS(677), - [anon_sym_true] = ACTIONS(681), - [anon_sym_false] = ACTIONS(681), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_crate] = ACTIONS(661), - [sym__raw_string_literal_start] = ACTIONS(683), - [sym_float_literal] = ACTIONS(677), + [sym_identifier] = ACTIONS(686), + [anon_sym_SEMI] = ACTIONS(688), + [anon_sym_LPAREN] = ACTIONS(690), + [anon_sym_LBRACK] = ACTIONS(692), + [anon_sym_RBRACK] = ACTIONS(716), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_COMMA] = ACTIONS(688), + [anon_sym_EQ_GT] = ACTIONS(688), + [anon_sym_COLON] = ACTIONS(698), + [anon_sym_DOLLAR] = ACTIONS(700), + [anon_sym_PLUS] = ACTIONS(698), + [anon_sym_STAR] = ACTIONS(698), + [anon_sym_QMARK] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(686), + [anon_sym_i8] = ACTIONS(686), + [anon_sym_u16] = ACTIONS(686), + [anon_sym_i16] = ACTIONS(686), + [anon_sym_u32] = ACTIONS(686), + [anon_sym_i32] = ACTIONS(686), + [anon_sym_u64] = ACTIONS(686), + [anon_sym_i64] = ACTIONS(686), + [anon_sym_u128] = ACTIONS(686), + [anon_sym_i128] = ACTIONS(686), + [anon_sym_isize] = ACTIONS(686), + [anon_sym_usize] = ACTIONS(686), + [anon_sym_f32] = ACTIONS(686), + [anon_sym_f64] = ACTIONS(686), + [anon_sym_bool] = ACTIONS(686), + [anon_sym_str] = ACTIONS(686), + [anon_sym_char] = ACTIONS(686), + [anon_sym_DASH] = ACTIONS(698), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_PERCENT] = ACTIONS(698), + [anon_sym_CARET] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(698), + [anon_sym_AMP] = ACTIONS(698), + [anon_sym_PIPE] = ACTIONS(698), + [anon_sym_AMP_AMP] = ACTIONS(688), + [anon_sym_PIPE_PIPE] = ACTIONS(688), + [anon_sym_LT_LT] = ACTIONS(698), + [anon_sym_GT_GT] = ACTIONS(698), + [anon_sym_PLUS_EQ] = ACTIONS(688), + [anon_sym_DASH_EQ] = ACTIONS(688), + [anon_sym_STAR_EQ] = ACTIONS(688), + [anon_sym_SLASH_EQ] = ACTIONS(688), + [anon_sym_PERCENT_EQ] = ACTIONS(688), + [anon_sym_CARET_EQ] = ACTIONS(688), + [anon_sym_AMP_EQ] = ACTIONS(688), + [anon_sym_PIPE_EQ] = ACTIONS(688), + [anon_sym_LT_LT_EQ] = ACTIONS(688), + [anon_sym_GT_GT_EQ] = ACTIONS(688), + [anon_sym_EQ] = ACTIONS(698), + [anon_sym_EQ_EQ] = ACTIONS(688), + [anon_sym_BANG_EQ] = ACTIONS(688), + [anon_sym_GT] = ACTIONS(698), + [anon_sym_LT] = ACTIONS(698), + [anon_sym_GT_EQ] = ACTIONS(688), + [anon_sym_LT_EQ] = ACTIONS(688), + [anon_sym_AT] = ACTIONS(688), + [anon_sym__] = ACTIONS(698), + [anon_sym_DOT] = ACTIONS(698), + [anon_sym_DOT_DOT] = ACTIONS(698), + [anon_sym_DOT_DOT_DOT] = ACTIONS(688), + [anon_sym_DOT_DOT_EQ] = ACTIONS(688), + [anon_sym_COLON_COLON] = ACTIONS(688), + [anon_sym_DASH_GT] = ACTIONS(688), + [anon_sym_POUND] = ACTIONS(688), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_as] = ACTIONS(686), + [anon_sym_async] = ACTIONS(686), + [anon_sym_await] = ACTIONS(686), + [anon_sym_break] = ACTIONS(686), + [anon_sym_const] = ACTIONS(686), + [anon_sym_continue] = ACTIONS(686), + [anon_sym_default] = ACTIONS(686), + [anon_sym_enum] = ACTIONS(686), + [anon_sym_fn] = ACTIONS(686), + [anon_sym_for] = ACTIONS(686), + [anon_sym_if] = ACTIONS(686), + [anon_sym_impl] = ACTIONS(686), + [anon_sym_let] = ACTIONS(686), + [anon_sym_loop] = ACTIONS(686), + [anon_sym_match] = ACTIONS(686), + [anon_sym_mod] = ACTIONS(686), + [anon_sym_pub] = ACTIONS(686), + [anon_sym_return] = ACTIONS(686), + [anon_sym_static] = ACTIONS(686), + [anon_sym_struct] = ACTIONS(686), + [anon_sym_trait] = ACTIONS(686), + [anon_sym_type] = ACTIONS(686), + [anon_sym_union] = ACTIONS(686), + [anon_sym_unsafe] = ACTIONS(686), + [anon_sym_use] = ACTIONS(686), + [anon_sym_where] = ACTIONS(686), + [anon_sym_while] = ACTIONS(686), + [sym_mutable_specifier] = ACTIONS(686), + [sym_integer_literal] = ACTIONS(702), + [aux_sym_string_literal_token1] = ACTIONS(704), + [sym_char_literal] = ACTIONS(702), + [anon_sym_true] = ACTIONS(706), + [anon_sym_false] = ACTIONS(706), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(686), + [sym_super] = ACTIONS(686), + [sym_crate] = ACTIONS(686), + [sym__raw_string_literal_start] = ACTIONS(708), + [sym_float_literal] = ACTIONS(702), }, [96] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), + [sym_delim_token_tree] = STATE(201), + [sym__delim_tokens] = STATE(198), + [sym__non_delim_token] = STATE(201), + [sym__literal] = STATE(205), + [sym_string_literal] = STATE(214), + [sym_raw_string_literal] = STATE(214), + [sym_boolean_literal] = STATE(214), [sym_line_comment] = STATE(96), [sym_block_comment] = STATE(96), - [aux_sym__non_special_token_repeat1] = STATE(160), + [aux_sym__non_special_token_repeat1] = STATE(152), [aux_sym_delim_token_tree_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(663), - [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(671), - [anon_sym_RBRACE] = ACTIONS(707), - [anon_sym_EQ_GT] = ACTIONS(663), - [anon_sym_COLON] = ACTIONS(673), - [anon_sym_DOLLAR] = ACTIONS(675), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_STAR] = ACTIONS(673), - [anon_sym_QMARK] = ACTIONS(663), - [anon_sym_u8] = ACTIONS(661), - [anon_sym_i8] = ACTIONS(661), - [anon_sym_u16] = ACTIONS(661), - [anon_sym_i16] = ACTIONS(661), - [anon_sym_u32] = ACTIONS(661), - [anon_sym_i32] = ACTIONS(661), - [anon_sym_u64] = ACTIONS(661), - [anon_sym_i64] = ACTIONS(661), - [anon_sym_u128] = ACTIONS(661), - [anon_sym_i128] = ACTIONS(661), - [anon_sym_isize] = ACTIONS(661), - [anon_sym_usize] = ACTIONS(661), - [anon_sym_f32] = ACTIONS(661), - [anon_sym_f64] = ACTIONS(661), - [anon_sym_bool] = ACTIONS(661), - [anon_sym_str] = ACTIONS(661), - [anon_sym_char] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_SLASH] = ACTIONS(673), - [anon_sym_PERCENT] = ACTIONS(673), - [anon_sym_CARET] = ACTIONS(673), - [anon_sym_BANG] = ACTIONS(673), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE] = ACTIONS(673), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [anon_sym_LT_LT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(673), - [anon_sym_PLUS_EQ] = ACTIONS(663), - [anon_sym_DASH_EQ] = ACTIONS(663), - [anon_sym_STAR_EQ] = ACTIONS(663), - [anon_sym_SLASH_EQ] = ACTIONS(663), - [anon_sym_PERCENT_EQ] = ACTIONS(663), - [anon_sym_CARET_EQ] = ACTIONS(663), - [anon_sym_AMP_EQ] = ACTIONS(663), - [anon_sym_PIPE_EQ] = ACTIONS(663), - [anon_sym_LT_LT_EQ] = ACTIONS(663), - [anon_sym_GT_GT_EQ] = ACTIONS(663), - [anon_sym_EQ] = ACTIONS(673), - [anon_sym_EQ_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_AT] = ACTIONS(663), - [anon_sym__] = ACTIONS(673), - [anon_sym_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_COLON_COLON] = ACTIONS(663), - [anon_sym_DASH_GT] = ACTIONS(663), - [anon_sym_POUND] = ACTIONS(663), - [anon_sym_SQUOTE] = ACTIONS(661), - [anon_sym_as] = ACTIONS(661), - [anon_sym_async] = ACTIONS(661), - [anon_sym_await] = ACTIONS(661), - [anon_sym_break] = ACTIONS(661), - [anon_sym_const] = ACTIONS(661), - [anon_sym_continue] = ACTIONS(661), - [anon_sym_default] = ACTIONS(661), - [anon_sym_enum] = ACTIONS(661), - [anon_sym_fn] = ACTIONS(661), - [anon_sym_for] = ACTIONS(661), - [anon_sym_if] = ACTIONS(661), - [anon_sym_impl] = ACTIONS(661), - [anon_sym_let] = ACTIONS(661), - [anon_sym_loop] = ACTIONS(661), - [anon_sym_match] = ACTIONS(661), - [anon_sym_mod] = ACTIONS(661), - [anon_sym_pub] = ACTIONS(661), - [anon_sym_return] = ACTIONS(661), - [anon_sym_static] = ACTIONS(661), - [anon_sym_struct] = ACTIONS(661), - [anon_sym_trait] = ACTIONS(661), - [anon_sym_type] = ACTIONS(661), - [anon_sym_union] = ACTIONS(661), - [anon_sym_unsafe] = ACTIONS(661), - [anon_sym_use] = ACTIONS(661), - [anon_sym_where] = ACTIONS(661), - [anon_sym_while] = ACTIONS(661), - [sym_mutable_specifier] = ACTIONS(661), - [sym_integer_literal] = ACTIONS(677), - [aux_sym_string_literal_token1] = ACTIONS(679), - [sym_char_literal] = ACTIONS(677), - [anon_sym_true] = ACTIONS(681), - [anon_sym_false] = ACTIONS(681), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_crate] = ACTIONS(661), - [sym__raw_string_literal_start] = ACTIONS(683), - [sym_float_literal] = ACTIONS(677), + [sym_identifier] = ACTIONS(686), + [anon_sym_SEMI] = ACTIONS(688), + [anon_sym_LPAREN] = ACTIONS(690), + [anon_sym_RPAREN] = ACTIONS(716), + [anon_sym_LBRACK] = ACTIONS(692), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_COMMA] = ACTIONS(688), + [anon_sym_EQ_GT] = ACTIONS(688), + [anon_sym_COLON] = ACTIONS(698), + [anon_sym_DOLLAR] = ACTIONS(700), + [anon_sym_PLUS] = ACTIONS(698), + [anon_sym_STAR] = ACTIONS(698), + [anon_sym_QMARK] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(686), + [anon_sym_i8] = ACTIONS(686), + [anon_sym_u16] = ACTIONS(686), + [anon_sym_i16] = ACTIONS(686), + [anon_sym_u32] = ACTIONS(686), + [anon_sym_i32] = ACTIONS(686), + [anon_sym_u64] = ACTIONS(686), + [anon_sym_i64] = ACTIONS(686), + [anon_sym_u128] = ACTIONS(686), + [anon_sym_i128] = ACTIONS(686), + [anon_sym_isize] = ACTIONS(686), + [anon_sym_usize] = ACTIONS(686), + [anon_sym_f32] = ACTIONS(686), + [anon_sym_f64] = ACTIONS(686), + [anon_sym_bool] = ACTIONS(686), + [anon_sym_str] = ACTIONS(686), + [anon_sym_char] = ACTIONS(686), + [anon_sym_DASH] = ACTIONS(698), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_PERCENT] = ACTIONS(698), + [anon_sym_CARET] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(698), + [anon_sym_AMP] = ACTIONS(698), + [anon_sym_PIPE] = ACTIONS(698), + [anon_sym_AMP_AMP] = ACTIONS(688), + [anon_sym_PIPE_PIPE] = ACTIONS(688), + [anon_sym_LT_LT] = ACTIONS(698), + [anon_sym_GT_GT] = ACTIONS(698), + [anon_sym_PLUS_EQ] = ACTIONS(688), + [anon_sym_DASH_EQ] = ACTIONS(688), + [anon_sym_STAR_EQ] = ACTIONS(688), + [anon_sym_SLASH_EQ] = ACTIONS(688), + [anon_sym_PERCENT_EQ] = ACTIONS(688), + [anon_sym_CARET_EQ] = ACTIONS(688), + [anon_sym_AMP_EQ] = ACTIONS(688), + [anon_sym_PIPE_EQ] = ACTIONS(688), + [anon_sym_LT_LT_EQ] = ACTIONS(688), + [anon_sym_GT_GT_EQ] = ACTIONS(688), + [anon_sym_EQ] = ACTIONS(698), + [anon_sym_EQ_EQ] = ACTIONS(688), + [anon_sym_BANG_EQ] = ACTIONS(688), + [anon_sym_GT] = ACTIONS(698), + [anon_sym_LT] = ACTIONS(698), + [anon_sym_GT_EQ] = ACTIONS(688), + [anon_sym_LT_EQ] = ACTIONS(688), + [anon_sym_AT] = ACTIONS(688), + [anon_sym__] = ACTIONS(698), + [anon_sym_DOT] = ACTIONS(698), + [anon_sym_DOT_DOT] = ACTIONS(698), + [anon_sym_DOT_DOT_DOT] = ACTIONS(688), + [anon_sym_DOT_DOT_EQ] = ACTIONS(688), + [anon_sym_COLON_COLON] = ACTIONS(688), + [anon_sym_DASH_GT] = ACTIONS(688), + [anon_sym_POUND] = ACTIONS(688), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_as] = ACTIONS(686), + [anon_sym_async] = ACTIONS(686), + [anon_sym_await] = ACTIONS(686), + [anon_sym_break] = ACTIONS(686), + [anon_sym_const] = ACTIONS(686), + [anon_sym_continue] = ACTIONS(686), + [anon_sym_default] = ACTIONS(686), + [anon_sym_enum] = ACTIONS(686), + [anon_sym_fn] = ACTIONS(686), + [anon_sym_for] = ACTIONS(686), + [anon_sym_if] = ACTIONS(686), + [anon_sym_impl] = ACTIONS(686), + [anon_sym_let] = ACTIONS(686), + [anon_sym_loop] = ACTIONS(686), + [anon_sym_match] = ACTIONS(686), + [anon_sym_mod] = ACTIONS(686), + [anon_sym_pub] = ACTIONS(686), + [anon_sym_return] = ACTIONS(686), + [anon_sym_static] = ACTIONS(686), + [anon_sym_struct] = ACTIONS(686), + [anon_sym_trait] = ACTIONS(686), + [anon_sym_type] = ACTIONS(686), + [anon_sym_union] = ACTIONS(686), + [anon_sym_unsafe] = ACTIONS(686), + [anon_sym_use] = ACTIONS(686), + [anon_sym_where] = ACTIONS(686), + [anon_sym_while] = ACTIONS(686), + [sym_mutable_specifier] = ACTIONS(686), + [sym_integer_literal] = ACTIONS(702), + [aux_sym_string_literal_token1] = ACTIONS(704), + [sym_char_literal] = ACTIONS(702), + [anon_sym_true] = ACTIONS(706), + [anon_sym_false] = ACTIONS(706), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(686), + [sym_super] = ACTIONS(686), + [sym_crate] = ACTIONS(686), + [sym__raw_string_literal_start] = ACTIONS(708), + [sym_float_literal] = ACTIONS(702), }, [97] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), + [sym_delim_token_tree] = STATE(201), + [sym__delim_tokens] = STATE(198), + [sym__non_delim_token] = STATE(201), + [sym__literal] = STATE(205), + [sym_string_literal] = STATE(214), + [sym_raw_string_literal] = STATE(214), + [sym_boolean_literal] = STATE(214), [sym_line_comment] = STATE(97), [sym_block_comment] = STATE(97), - [aux_sym__non_special_token_repeat1] = STATE(160), + [aux_sym__non_special_token_repeat1] = STATE(152), [aux_sym_delim_token_tree_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(663), - [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(671), - [anon_sym_RBRACE] = ACTIONS(701), - [anon_sym_EQ_GT] = ACTIONS(663), - [anon_sym_COLON] = ACTIONS(673), - [anon_sym_DOLLAR] = ACTIONS(675), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_STAR] = ACTIONS(673), - [anon_sym_QMARK] = ACTIONS(663), - [anon_sym_u8] = ACTIONS(661), - [anon_sym_i8] = ACTIONS(661), - [anon_sym_u16] = ACTIONS(661), - [anon_sym_i16] = ACTIONS(661), - [anon_sym_u32] = ACTIONS(661), - [anon_sym_i32] = ACTIONS(661), - [anon_sym_u64] = ACTIONS(661), - [anon_sym_i64] = ACTIONS(661), - [anon_sym_u128] = ACTIONS(661), - [anon_sym_i128] = ACTIONS(661), - [anon_sym_isize] = ACTIONS(661), - [anon_sym_usize] = ACTIONS(661), - [anon_sym_f32] = ACTIONS(661), - [anon_sym_f64] = ACTIONS(661), - [anon_sym_bool] = ACTIONS(661), - [anon_sym_str] = ACTIONS(661), - [anon_sym_char] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_SLASH] = ACTIONS(673), - [anon_sym_PERCENT] = ACTIONS(673), - [anon_sym_CARET] = ACTIONS(673), - [anon_sym_BANG] = ACTIONS(673), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE] = ACTIONS(673), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [anon_sym_LT_LT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(673), - [anon_sym_PLUS_EQ] = ACTIONS(663), - [anon_sym_DASH_EQ] = ACTIONS(663), - [anon_sym_STAR_EQ] = ACTIONS(663), - [anon_sym_SLASH_EQ] = ACTIONS(663), - [anon_sym_PERCENT_EQ] = ACTIONS(663), - [anon_sym_CARET_EQ] = ACTIONS(663), - [anon_sym_AMP_EQ] = ACTIONS(663), - [anon_sym_PIPE_EQ] = ACTIONS(663), - [anon_sym_LT_LT_EQ] = ACTIONS(663), - [anon_sym_GT_GT_EQ] = ACTIONS(663), - [anon_sym_EQ] = ACTIONS(673), - [anon_sym_EQ_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_AT] = ACTIONS(663), - [anon_sym__] = ACTIONS(673), - [anon_sym_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_COLON_COLON] = ACTIONS(663), - [anon_sym_DASH_GT] = ACTIONS(663), - [anon_sym_POUND] = ACTIONS(663), - [anon_sym_SQUOTE] = ACTIONS(661), - [anon_sym_as] = ACTIONS(661), - [anon_sym_async] = ACTIONS(661), - [anon_sym_await] = ACTIONS(661), - [anon_sym_break] = ACTIONS(661), - [anon_sym_const] = ACTIONS(661), - [anon_sym_continue] = ACTIONS(661), - [anon_sym_default] = ACTIONS(661), - [anon_sym_enum] = ACTIONS(661), - [anon_sym_fn] = ACTIONS(661), - [anon_sym_for] = ACTIONS(661), - [anon_sym_if] = ACTIONS(661), - [anon_sym_impl] = ACTIONS(661), - [anon_sym_let] = ACTIONS(661), - [anon_sym_loop] = ACTIONS(661), - [anon_sym_match] = ACTIONS(661), - [anon_sym_mod] = ACTIONS(661), - [anon_sym_pub] = ACTIONS(661), - [anon_sym_return] = ACTIONS(661), - [anon_sym_static] = ACTIONS(661), - [anon_sym_struct] = ACTIONS(661), - [anon_sym_trait] = ACTIONS(661), - [anon_sym_type] = ACTIONS(661), - [anon_sym_union] = ACTIONS(661), - [anon_sym_unsafe] = ACTIONS(661), - [anon_sym_use] = ACTIONS(661), - [anon_sym_where] = ACTIONS(661), - [anon_sym_while] = ACTIONS(661), - [sym_mutable_specifier] = ACTIONS(661), - [sym_integer_literal] = ACTIONS(677), - [aux_sym_string_literal_token1] = ACTIONS(679), - [sym_char_literal] = ACTIONS(677), - [anon_sym_true] = ACTIONS(681), - [anon_sym_false] = ACTIONS(681), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_crate] = ACTIONS(661), - [sym__raw_string_literal_start] = ACTIONS(683), - [sym_float_literal] = ACTIONS(677), + [sym_identifier] = ACTIONS(686), + [anon_sym_SEMI] = ACTIONS(688), + [anon_sym_LPAREN] = ACTIONS(690), + [anon_sym_LBRACK] = ACTIONS(692), + [anon_sym_RBRACK] = ACTIONS(718), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_COMMA] = ACTIONS(688), + [anon_sym_EQ_GT] = ACTIONS(688), + [anon_sym_COLON] = ACTIONS(698), + [anon_sym_DOLLAR] = ACTIONS(700), + [anon_sym_PLUS] = ACTIONS(698), + [anon_sym_STAR] = ACTIONS(698), + [anon_sym_QMARK] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(686), + [anon_sym_i8] = ACTIONS(686), + [anon_sym_u16] = ACTIONS(686), + [anon_sym_i16] = ACTIONS(686), + [anon_sym_u32] = ACTIONS(686), + [anon_sym_i32] = ACTIONS(686), + [anon_sym_u64] = ACTIONS(686), + [anon_sym_i64] = ACTIONS(686), + [anon_sym_u128] = ACTIONS(686), + [anon_sym_i128] = ACTIONS(686), + [anon_sym_isize] = ACTIONS(686), + [anon_sym_usize] = ACTIONS(686), + [anon_sym_f32] = ACTIONS(686), + [anon_sym_f64] = ACTIONS(686), + [anon_sym_bool] = ACTIONS(686), + [anon_sym_str] = ACTIONS(686), + [anon_sym_char] = ACTIONS(686), + [anon_sym_DASH] = ACTIONS(698), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_PERCENT] = ACTIONS(698), + [anon_sym_CARET] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(698), + [anon_sym_AMP] = ACTIONS(698), + [anon_sym_PIPE] = ACTIONS(698), + [anon_sym_AMP_AMP] = ACTIONS(688), + [anon_sym_PIPE_PIPE] = ACTIONS(688), + [anon_sym_LT_LT] = ACTIONS(698), + [anon_sym_GT_GT] = ACTIONS(698), + [anon_sym_PLUS_EQ] = ACTIONS(688), + [anon_sym_DASH_EQ] = ACTIONS(688), + [anon_sym_STAR_EQ] = ACTIONS(688), + [anon_sym_SLASH_EQ] = ACTIONS(688), + [anon_sym_PERCENT_EQ] = ACTIONS(688), + [anon_sym_CARET_EQ] = ACTIONS(688), + [anon_sym_AMP_EQ] = ACTIONS(688), + [anon_sym_PIPE_EQ] = ACTIONS(688), + [anon_sym_LT_LT_EQ] = ACTIONS(688), + [anon_sym_GT_GT_EQ] = ACTIONS(688), + [anon_sym_EQ] = ACTIONS(698), + [anon_sym_EQ_EQ] = ACTIONS(688), + [anon_sym_BANG_EQ] = ACTIONS(688), + [anon_sym_GT] = ACTIONS(698), + [anon_sym_LT] = ACTIONS(698), + [anon_sym_GT_EQ] = ACTIONS(688), + [anon_sym_LT_EQ] = ACTIONS(688), + [anon_sym_AT] = ACTIONS(688), + [anon_sym__] = ACTIONS(698), + [anon_sym_DOT] = ACTIONS(698), + [anon_sym_DOT_DOT] = ACTIONS(698), + [anon_sym_DOT_DOT_DOT] = ACTIONS(688), + [anon_sym_DOT_DOT_EQ] = ACTIONS(688), + [anon_sym_COLON_COLON] = ACTIONS(688), + [anon_sym_DASH_GT] = ACTIONS(688), + [anon_sym_POUND] = ACTIONS(688), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_as] = ACTIONS(686), + [anon_sym_async] = ACTIONS(686), + [anon_sym_await] = ACTIONS(686), + [anon_sym_break] = ACTIONS(686), + [anon_sym_const] = ACTIONS(686), + [anon_sym_continue] = ACTIONS(686), + [anon_sym_default] = ACTIONS(686), + [anon_sym_enum] = ACTIONS(686), + [anon_sym_fn] = ACTIONS(686), + [anon_sym_for] = ACTIONS(686), + [anon_sym_if] = ACTIONS(686), + [anon_sym_impl] = ACTIONS(686), + [anon_sym_let] = ACTIONS(686), + [anon_sym_loop] = ACTIONS(686), + [anon_sym_match] = ACTIONS(686), + [anon_sym_mod] = ACTIONS(686), + [anon_sym_pub] = ACTIONS(686), + [anon_sym_return] = ACTIONS(686), + [anon_sym_static] = ACTIONS(686), + [anon_sym_struct] = ACTIONS(686), + [anon_sym_trait] = ACTIONS(686), + [anon_sym_type] = ACTIONS(686), + [anon_sym_union] = ACTIONS(686), + [anon_sym_unsafe] = ACTIONS(686), + [anon_sym_use] = ACTIONS(686), + [anon_sym_where] = ACTIONS(686), + [anon_sym_while] = ACTIONS(686), + [sym_mutable_specifier] = ACTIONS(686), + [sym_integer_literal] = ACTIONS(702), + [aux_sym_string_literal_token1] = ACTIONS(704), + [sym_char_literal] = ACTIONS(702), + [anon_sym_true] = ACTIONS(706), + [anon_sym_false] = ACTIONS(706), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(686), + [sym_super] = ACTIONS(686), + [sym_crate] = ACTIONS(686), + [sym__raw_string_literal_start] = ACTIONS(708), + [sym_float_literal] = ACTIONS(702), }, [98] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), + [sym_delim_token_tree] = STATE(201), + [sym__delim_tokens] = STATE(198), + [sym__non_delim_token] = STATE(201), + [sym__literal] = STATE(205), + [sym_string_literal] = STATE(214), + [sym_raw_string_literal] = STATE(214), + [sym_boolean_literal] = STATE(214), [sym_line_comment] = STATE(98), [sym_block_comment] = STATE(98), - [aux_sym__non_special_token_repeat1] = STATE(160), - [aux_sym_delim_token_tree_repeat1] = STATE(97), - [sym_identifier] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(663), - [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(671), - [anon_sym_RBRACE] = ACTIONS(709), - [anon_sym_EQ_GT] = ACTIONS(663), - [anon_sym_COLON] = ACTIONS(673), - [anon_sym_DOLLAR] = ACTIONS(675), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_STAR] = ACTIONS(673), - [anon_sym_QMARK] = ACTIONS(663), - [anon_sym_u8] = ACTIONS(661), - [anon_sym_i8] = ACTIONS(661), - [anon_sym_u16] = ACTIONS(661), - [anon_sym_i16] = ACTIONS(661), - [anon_sym_u32] = ACTIONS(661), - [anon_sym_i32] = ACTIONS(661), - [anon_sym_u64] = ACTIONS(661), - [anon_sym_i64] = ACTIONS(661), - [anon_sym_u128] = ACTIONS(661), - [anon_sym_i128] = ACTIONS(661), - [anon_sym_isize] = ACTIONS(661), - [anon_sym_usize] = ACTIONS(661), - [anon_sym_f32] = ACTIONS(661), - [anon_sym_f64] = ACTIONS(661), - [anon_sym_bool] = ACTIONS(661), - [anon_sym_str] = ACTIONS(661), - [anon_sym_char] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_SLASH] = ACTIONS(673), - [anon_sym_PERCENT] = ACTIONS(673), - [anon_sym_CARET] = ACTIONS(673), - [anon_sym_BANG] = ACTIONS(673), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE] = ACTIONS(673), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [anon_sym_LT_LT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(673), - [anon_sym_PLUS_EQ] = ACTIONS(663), - [anon_sym_DASH_EQ] = ACTIONS(663), - [anon_sym_STAR_EQ] = ACTIONS(663), - [anon_sym_SLASH_EQ] = ACTIONS(663), - [anon_sym_PERCENT_EQ] = ACTIONS(663), - [anon_sym_CARET_EQ] = ACTIONS(663), - [anon_sym_AMP_EQ] = ACTIONS(663), - [anon_sym_PIPE_EQ] = ACTIONS(663), - [anon_sym_LT_LT_EQ] = ACTIONS(663), - [anon_sym_GT_GT_EQ] = ACTIONS(663), - [anon_sym_EQ] = ACTIONS(673), - [anon_sym_EQ_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_AT] = ACTIONS(663), - [anon_sym__] = ACTIONS(673), - [anon_sym_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_COLON_COLON] = ACTIONS(663), - [anon_sym_DASH_GT] = ACTIONS(663), - [anon_sym_POUND] = ACTIONS(663), - [anon_sym_SQUOTE] = ACTIONS(661), - [anon_sym_as] = ACTIONS(661), - [anon_sym_async] = ACTIONS(661), - [anon_sym_await] = ACTIONS(661), - [anon_sym_break] = ACTIONS(661), - [anon_sym_const] = ACTIONS(661), - [anon_sym_continue] = ACTIONS(661), - [anon_sym_default] = ACTIONS(661), - [anon_sym_enum] = ACTIONS(661), - [anon_sym_fn] = ACTIONS(661), - [anon_sym_for] = ACTIONS(661), - [anon_sym_if] = ACTIONS(661), - [anon_sym_impl] = ACTIONS(661), - [anon_sym_let] = ACTIONS(661), - [anon_sym_loop] = ACTIONS(661), - [anon_sym_match] = ACTIONS(661), - [anon_sym_mod] = ACTIONS(661), - [anon_sym_pub] = ACTIONS(661), - [anon_sym_return] = ACTIONS(661), - [anon_sym_static] = ACTIONS(661), - [anon_sym_struct] = ACTIONS(661), - [anon_sym_trait] = ACTIONS(661), - [anon_sym_type] = ACTIONS(661), - [anon_sym_union] = ACTIONS(661), - [anon_sym_unsafe] = ACTIONS(661), - [anon_sym_use] = ACTIONS(661), - [anon_sym_where] = ACTIONS(661), - [anon_sym_while] = ACTIONS(661), - [sym_mutable_specifier] = ACTIONS(661), - [sym_integer_literal] = ACTIONS(677), - [aux_sym_string_literal_token1] = ACTIONS(679), - [sym_char_literal] = ACTIONS(677), - [anon_sym_true] = ACTIONS(681), - [anon_sym_false] = ACTIONS(681), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_crate] = ACTIONS(661), - [sym__raw_string_literal_start] = ACTIONS(683), - [sym_float_literal] = ACTIONS(677), + [aux_sym__non_special_token_repeat1] = STATE(152), + [aux_sym_delim_token_tree_repeat1] = STATE(88), + [sym_identifier] = ACTIONS(686), + [anon_sym_SEMI] = ACTIONS(688), + [anon_sym_LPAREN] = ACTIONS(690), + [anon_sym_LBRACK] = ACTIONS(692), + [anon_sym_RBRACK] = ACTIONS(712), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_COMMA] = ACTIONS(688), + [anon_sym_EQ_GT] = ACTIONS(688), + [anon_sym_COLON] = ACTIONS(698), + [anon_sym_DOLLAR] = ACTIONS(700), + [anon_sym_PLUS] = ACTIONS(698), + [anon_sym_STAR] = ACTIONS(698), + [anon_sym_QMARK] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(686), + [anon_sym_i8] = ACTIONS(686), + [anon_sym_u16] = ACTIONS(686), + [anon_sym_i16] = ACTIONS(686), + [anon_sym_u32] = ACTIONS(686), + [anon_sym_i32] = ACTIONS(686), + [anon_sym_u64] = ACTIONS(686), + [anon_sym_i64] = ACTIONS(686), + [anon_sym_u128] = ACTIONS(686), + [anon_sym_i128] = ACTIONS(686), + [anon_sym_isize] = ACTIONS(686), + [anon_sym_usize] = ACTIONS(686), + [anon_sym_f32] = ACTIONS(686), + [anon_sym_f64] = ACTIONS(686), + [anon_sym_bool] = ACTIONS(686), + [anon_sym_str] = ACTIONS(686), + [anon_sym_char] = ACTIONS(686), + [anon_sym_DASH] = ACTIONS(698), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_PERCENT] = ACTIONS(698), + [anon_sym_CARET] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(698), + [anon_sym_AMP] = ACTIONS(698), + [anon_sym_PIPE] = ACTIONS(698), + [anon_sym_AMP_AMP] = ACTIONS(688), + [anon_sym_PIPE_PIPE] = ACTIONS(688), + [anon_sym_LT_LT] = ACTIONS(698), + [anon_sym_GT_GT] = ACTIONS(698), + [anon_sym_PLUS_EQ] = ACTIONS(688), + [anon_sym_DASH_EQ] = ACTIONS(688), + [anon_sym_STAR_EQ] = ACTIONS(688), + [anon_sym_SLASH_EQ] = ACTIONS(688), + [anon_sym_PERCENT_EQ] = ACTIONS(688), + [anon_sym_CARET_EQ] = ACTIONS(688), + [anon_sym_AMP_EQ] = ACTIONS(688), + [anon_sym_PIPE_EQ] = ACTIONS(688), + [anon_sym_LT_LT_EQ] = ACTIONS(688), + [anon_sym_GT_GT_EQ] = ACTIONS(688), + [anon_sym_EQ] = ACTIONS(698), + [anon_sym_EQ_EQ] = ACTIONS(688), + [anon_sym_BANG_EQ] = ACTIONS(688), + [anon_sym_GT] = ACTIONS(698), + [anon_sym_LT] = ACTIONS(698), + [anon_sym_GT_EQ] = ACTIONS(688), + [anon_sym_LT_EQ] = ACTIONS(688), + [anon_sym_AT] = ACTIONS(688), + [anon_sym__] = ACTIONS(698), + [anon_sym_DOT] = ACTIONS(698), + [anon_sym_DOT_DOT] = ACTIONS(698), + [anon_sym_DOT_DOT_DOT] = ACTIONS(688), + [anon_sym_DOT_DOT_EQ] = ACTIONS(688), + [anon_sym_COLON_COLON] = ACTIONS(688), + [anon_sym_DASH_GT] = ACTIONS(688), + [anon_sym_POUND] = ACTIONS(688), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_as] = ACTIONS(686), + [anon_sym_async] = ACTIONS(686), + [anon_sym_await] = ACTIONS(686), + [anon_sym_break] = ACTIONS(686), + [anon_sym_const] = ACTIONS(686), + [anon_sym_continue] = ACTIONS(686), + [anon_sym_default] = ACTIONS(686), + [anon_sym_enum] = ACTIONS(686), + [anon_sym_fn] = ACTIONS(686), + [anon_sym_for] = ACTIONS(686), + [anon_sym_if] = ACTIONS(686), + [anon_sym_impl] = ACTIONS(686), + [anon_sym_let] = ACTIONS(686), + [anon_sym_loop] = ACTIONS(686), + [anon_sym_match] = ACTIONS(686), + [anon_sym_mod] = ACTIONS(686), + [anon_sym_pub] = ACTIONS(686), + [anon_sym_return] = ACTIONS(686), + [anon_sym_static] = ACTIONS(686), + [anon_sym_struct] = ACTIONS(686), + [anon_sym_trait] = ACTIONS(686), + [anon_sym_type] = ACTIONS(686), + [anon_sym_union] = ACTIONS(686), + [anon_sym_unsafe] = ACTIONS(686), + [anon_sym_use] = ACTIONS(686), + [anon_sym_where] = ACTIONS(686), + [anon_sym_while] = ACTIONS(686), + [sym_mutable_specifier] = ACTIONS(686), + [sym_integer_literal] = ACTIONS(702), + [aux_sym_string_literal_token1] = ACTIONS(704), + [sym_char_literal] = ACTIONS(702), + [anon_sym_true] = ACTIONS(706), + [anon_sym_false] = ACTIONS(706), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(686), + [sym_super] = ACTIONS(686), + [sym_crate] = ACTIONS(686), + [sym__raw_string_literal_start] = ACTIONS(708), + [sym_float_literal] = ACTIONS(702), }, [99] = { - [sym_token_tree] = STATE(157), - [sym_token_repetition] = STATE(157), - [sym__literal] = STATE(157), - [sym_string_literal] = STATE(156), - [sym_raw_string_literal] = STATE(156), - [sym_boolean_literal] = STATE(156), + [sym_delim_token_tree] = STATE(201), + [sym__delim_tokens] = STATE(198), + [sym__non_delim_token] = STATE(201), + [sym__literal] = STATE(205), + [sym_string_literal] = STATE(214), + [sym_raw_string_literal] = STATE(214), + [sym_boolean_literal] = STATE(214), [sym_line_comment] = STATE(99), [sym_block_comment] = STATE(99), - [aux_sym_token_tree_repeat1] = STATE(102), - [aux_sym__non_special_token_repeat1] = STATE(136), - [sym_identifier] = ACTIONS(685), - [anon_sym_SEMI] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_RPAREN] = ACTIONS(711), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_EQ_GT] = ACTIONS(554), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(695), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_QMARK] = ACTIONS(554), - [anon_sym_u8] = ACTIONS(685), - [anon_sym_i8] = ACTIONS(685), - [anon_sym_u16] = ACTIONS(685), - [anon_sym_i16] = ACTIONS(685), - [anon_sym_u32] = ACTIONS(685), - [anon_sym_i32] = ACTIONS(685), - [anon_sym_u64] = ACTIONS(685), - [anon_sym_i64] = ACTIONS(685), - [anon_sym_u128] = ACTIONS(685), - [anon_sym_i128] = ACTIONS(685), - [anon_sym_isize] = ACTIONS(685), - [anon_sym_usize] = ACTIONS(685), - [anon_sym_f32] = ACTIONS(685), - [anon_sym_f64] = ACTIONS(685), - [anon_sym_bool] = ACTIONS(685), - [anon_sym_str] = ACTIONS(685), - [anon_sym_char] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_AMP] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_AMP_AMP] = ACTIONS(554), - [anon_sym_PIPE_PIPE] = ACTIONS(554), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_GT_GT] = ACTIONS(564), - [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_CARET_EQ] = ACTIONS(554), - [anon_sym_AMP_EQ] = ACTIONS(554), - [anon_sym_PIPE_EQ] = ACTIONS(554), - [anon_sym_LT_LT_EQ] = ACTIONS(554), - [anon_sym_GT_GT_EQ] = ACTIONS(554), - [anon_sym_EQ] = ACTIONS(564), - [anon_sym_EQ_EQ] = ACTIONS(554), - [anon_sym_BANG_EQ] = ACTIONS(554), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT_EQ] = ACTIONS(554), - [anon_sym_LT_EQ] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(554), - [anon_sym__] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(554), - [anon_sym_DOT_DOT_EQ] = ACTIONS(554), - [anon_sym_COMMA] = ACTIONS(554), - [anon_sym_COLON_COLON] = ACTIONS(554), - [anon_sym_DASH_GT] = ACTIONS(554), - [anon_sym_POUND] = ACTIONS(554), - [anon_sym_SQUOTE] = ACTIONS(685), - [anon_sym_as] = ACTIONS(685), - [anon_sym_async] = ACTIONS(685), - [anon_sym_await] = ACTIONS(685), - [anon_sym_break] = ACTIONS(685), - [anon_sym_const] = ACTIONS(685), - [anon_sym_continue] = ACTIONS(685), - [anon_sym_default] = ACTIONS(685), - [anon_sym_enum] = ACTIONS(685), - [anon_sym_fn] = ACTIONS(685), - [anon_sym_for] = ACTIONS(685), - [anon_sym_if] = ACTIONS(685), - [anon_sym_impl] = ACTIONS(685), - [anon_sym_let] = ACTIONS(685), - [anon_sym_loop] = ACTIONS(685), - [anon_sym_match] = ACTIONS(685), - [anon_sym_mod] = ACTIONS(685), - [anon_sym_pub] = ACTIONS(685), - [anon_sym_return] = ACTIONS(685), - [anon_sym_static] = ACTIONS(685), - [anon_sym_struct] = ACTIONS(685), - [anon_sym_trait] = ACTIONS(685), - [anon_sym_type] = ACTIONS(685), - [anon_sym_union] = ACTIONS(685), - [anon_sym_unsafe] = ACTIONS(685), - [anon_sym_use] = ACTIONS(685), - [anon_sym_where] = ACTIONS(685), - [anon_sym_while] = ACTIONS(685), - [sym_mutable_specifier] = ACTIONS(685), - [sym_integer_literal] = ACTIONS(568), - [aux_sym_string_literal_token1] = ACTIONS(570), - [sym_char_literal] = ACTIONS(568), - [anon_sym_true] = ACTIONS(572), - [anon_sym_false] = ACTIONS(572), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(685), - [sym_super] = ACTIONS(685), - [sym_crate] = ACTIONS(685), - [sym_metavariable] = ACTIONS(697), - [sym__raw_string_literal_start] = ACTIONS(576), - [sym_float_literal] = ACTIONS(568), + [aux_sym__non_special_token_repeat1] = STATE(152), + [aux_sym_delim_token_tree_repeat1] = STATE(90), + [sym_identifier] = ACTIONS(686), + [anon_sym_SEMI] = ACTIONS(688), + [anon_sym_LPAREN] = ACTIONS(690), + [anon_sym_LBRACK] = ACTIONS(692), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_RBRACE] = ACTIONS(712), + [anon_sym_COMMA] = ACTIONS(688), + [anon_sym_EQ_GT] = ACTIONS(688), + [anon_sym_COLON] = ACTIONS(698), + [anon_sym_DOLLAR] = ACTIONS(700), + [anon_sym_PLUS] = ACTIONS(698), + [anon_sym_STAR] = ACTIONS(698), + [anon_sym_QMARK] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(686), + [anon_sym_i8] = ACTIONS(686), + [anon_sym_u16] = ACTIONS(686), + [anon_sym_i16] = ACTIONS(686), + [anon_sym_u32] = ACTIONS(686), + [anon_sym_i32] = ACTIONS(686), + [anon_sym_u64] = ACTIONS(686), + [anon_sym_i64] = ACTIONS(686), + [anon_sym_u128] = ACTIONS(686), + [anon_sym_i128] = ACTIONS(686), + [anon_sym_isize] = ACTIONS(686), + [anon_sym_usize] = ACTIONS(686), + [anon_sym_f32] = ACTIONS(686), + [anon_sym_f64] = ACTIONS(686), + [anon_sym_bool] = ACTIONS(686), + [anon_sym_str] = ACTIONS(686), + [anon_sym_char] = ACTIONS(686), + [anon_sym_DASH] = ACTIONS(698), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_PERCENT] = ACTIONS(698), + [anon_sym_CARET] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(698), + [anon_sym_AMP] = ACTIONS(698), + [anon_sym_PIPE] = ACTIONS(698), + [anon_sym_AMP_AMP] = ACTIONS(688), + [anon_sym_PIPE_PIPE] = ACTIONS(688), + [anon_sym_LT_LT] = ACTIONS(698), + [anon_sym_GT_GT] = ACTIONS(698), + [anon_sym_PLUS_EQ] = ACTIONS(688), + [anon_sym_DASH_EQ] = ACTIONS(688), + [anon_sym_STAR_EQ] = ACTIONS(688), + [anon_sym_SLASH_EQ] = ACTIONS(688), + [anon_sym_PERCENT_EQ] = ACTIONS(688), + [anon_sym_CARET_EQ] = ACTIONS(688), + [anon_sym_AMP_EQ] = ACTIONS(688), + [anon_sym_PIPE_EQ] = ACTIONS(688), + [anon_sym_LT_LT_EQ] = ACTIONS(688), + [anon_sym_GT_GT_EQ] = ACTIONS(688), + [anon_sym_EQ] = ACTIONS(698), + [anon_sym_EQ_EQ] = ACTIONS(688), + [anon_sym_BANG_EQ] = ACTIONS(688), + [anon_sym_GT] = ACTIONS(698), + [anon_sym_LT] = ACTIONS(698), + [anon_sym_GT_EQ] = ACTIONS(688), + [anon_sym_LT_EQ] = ACTIONS(688), + [anon_sym_AT] = ACTIONS(688), + [anon_sym__] = ACTIONS(698), + [anon_sym_DOT] = ACTIONS(698), + [anon_sym_DOT_DOT] = ACTIONS(698), + [anon_sym_DOT_DOT_DOT] = ACTIONS(688), + [anon_sym_DOT_DOT_EQ] = ACTIONS(688), + [anon_sym_COLON_COLON] = ACTIONS(688), + [anon_sym_DASH_GT] = ACTIONS(688), + [anon_sym_POUND] = ACTIONS(688), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_as] = ACTIONS(686), + [anon_sym_async] = ACTIONS(686), + [anon_sym_await] = ACTIONS(686), + [anon_sym_break] = ACTIONS(686), + [anon_sym_const] = ACTIONS(686), + [anon_sym_continue] = ACTIONS(686), + [anon_sym_default] = ACTIONS(686), + [anon_sym_enum] = ACTIONS(686), + [anon_sym_fn] = ACTIONS(686), + [anon_sym_for] = ACTIONS(686), + [anon_sym_if] = ACTIONS(686), + [anon_sym_impl] = ACTIONS(686), + [anon_sym_let] = ACTIONS(686), + [anon_sym_loop] = ACTIONS(686), + [anon_sym_match] = ACTIONS(686), + [anon_sym_mod] = ACTIONS(686), + [anon_sym_pub] = ACTIONS(686), + [anon_sym_return] = ACTIONS(686), + [anon_sym_static] = ACTIONS(686), + [anon_sym_struct] = ACTIONS(686), + [anon_sym_trait] = ACTIONS(686), + [anon_sym_type] = ACTIONS(686), + [anon_sym_union] = ACTIONS(686), + [anon_sym_unsafe] = ACTIONS(686), + [anon_sym_use] = ACTIONS(686), + [anon_sym_where] = ACTIONS(686), + [anon_sym_while] = ACTIONS(686), + [sym_mutable_specifier] = ACTIONS(686), + [sym_integer_literal] = ACTIONS(702), + [aux_sym_string_literal_token1] = ACTIONS(704), + [sym_char_literal] = ACTIONS(702), + [anon_sym_true] = ACTIONS(706), + [anon_sym_false] = ACTIONS(706), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(686), + [sym_super] = ACTIONS(686), + [sym_crate] = ACTIONS(686), + [sym__raw_string_literal_start] = ACTIONS(708), + [sym_float_literal] = ACTIONS(702), }, [100] = { - [sym_token_tree] = STATE(157), - [sym_token_repetition] = STATE(157), - [sym__literal] = STATE(157), - [sym_string_literal] = STATE(156), - [sym_raw_string_literal] = STATE(156), - [sym_boolean_literal] = STATE(156), + [sym_delim_token_tree] = STATE(201), + [sym__delim_tokens] = STATE(198), + [sym__non_delim_token] = STATE(201), + [sym__literal] = STATE(205), + [sym_string_literal] = STATE(214), + [sym_raw_string_literal] = STATE(214), + [sym_boolean_literal] = STATE(214), [sym_line_comment] = STATE(100), [sym_block_comment] = STATE(100), - [aux_sym_token_tree_repeat1] = STATE(103), - [aux_sym__non_special_token_repeat1] = STATE(136), - [sym_identifier] = ACTIONS(685), - [anon_sym_SEMI] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_RBRACK] = ACTIONS(711), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_EQ_GT] = ACTIONS(554), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(695), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_QMARK] = ACTIONS(554), - [anon_sym_u8] = ACTIONS(685), - [anon_sym_i8] = ACTIONS(685), - [anon_sym_u16] = ACTIONS(685), - [anon_sym_i16] = ACTIONS(685), - [anon_sym_u32] = ACTIONS(685), - [anon_sym_i32] = ACTIONS(685), - [anon_sym_u64] = ACTIONS(685), - [anon_sym_i64] = ACTIONS(685), - [anon_sym_u128] = ACTIONS(685), - [anon_sym_i128] = ACTIONS(685), - [anon_sym_isize] = ACTIONS(685), - [anon_sym_usize] = ACTIONS(685), - [anon_sym_f32] = ACTIONS(685), - [anon_sym_f64] = ACTIONS(685), - [anon_sym_bool] = ACTIONS(685), - [anon_sym_str] = ACTIONS(685), - [anon_sym_char] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_AMP] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_AMP_AMP] = ACTIONS(554), - [anon_sym_PIPE_PIPE] = ACTIONS(554), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_GT_GT] = ACTIONS(564), - [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_CARET_EQ] = ACTIONS(554), - [anon_sym_AMP_EQ] = ACTIONS(554), - [anon_sym_PIPE_EQ] = ACTIONS(554), - [anon_sym_LT_LT_EQ] = ACTIONS(554), - [anon_sym_GT_GT_EQ] = ACTIONS(554), - [anon_sym_EQ] = ACTIONS(564), - [anon_sym_EQ_EQ] = ACTIONS(554), - [anon_sym_BANG_EQ] = ACTIONS(554), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT_EQ] = ACTIONS(554), - [anon_sym_LT_EQ] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(554), - [anon_sym__] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(554), - [anon_sym_DOT_DOT_EQ] = ACTIONS(554), - [anon_sym_COMMA] = ACTIONS(554), - [anon_sym_COLON_COLON] = ACTIONS(554), - [anon_sym_DASH_GT] = ACTIONS(554), - [anon_sym_POUND] = ACTIONS(554), - [anon_sym_SQUOTE] = ACTIONS(685), - [anon_sym_as] = ACTIONS(685), - [anon_sym_async] = ACTIONS(685), - [anon_sym_await] = ACTIONS(685), - [anon_sym_break] = ACTIONS(685), - [anon_sym_const] = ACTIONS(685), - [anon_sym_continue] = ACTIONS(685), - [anon_sym_default] = ACTIONS(685), - [anon_sym_enum] = ACTIONS(685), - [anon_sym_fn] = ACTIONS(685), - [anon_sym_for] = ACTIONS(685), - [anon_sym_if] = ACTIONS(685), - [anon_sym_impl] = ACTIONS(685), - [anon_sym_let] = ACTIONS(685), - [anon_sym_loop] = ACTIONS(685), - [anon_sym_match] = ACTIONS(685), - [anon_sym_mod] = ACTIONS(685), - [anon_sym_pub] = ACTIONS(685), - [anon_sym_return] = ACTIONS(685), - [anon_sym_static] = ACTIONS(685), - [anon_sym_struct] = ACTIONS(685), - [anon_sym_trait] = ACTIONS(685), - [anon_sym_type] = ACTIONS(685), - [anon_sym_union] = ACTIONS(685), - [anon_sym_unsafe] = ACTIONS(685), - [anon_sym_use] = ACTIONS(685), - [anon_sym_where] = ACTIONS(685), - [anon_sym_while] = ACTIONS(685), - [sym_mutable_specifier] = ACTIONS(685), - [sym_integer_literal] = ACTIONS(568), - [aux_sym_string_literal_token1] = ACTIONS(570), - [sym_char_literal] = ACTIONS(568), - [anon_sym_true] = ACTIONS(572), - [anon_sym_false] = ACTIONS(572), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(685), - [sym_super] = ACTIONS(685), - [sym_crate] = ACTIONS(685), - [sym_metavariable] = ACTIONS(697), - [sym__raw_string_literal_start] = ACTIONS(576), - [sym_float_literal] = ACTIONS(568), + [aux_sym__non_special_token_repeat1] = STATE(152), + [aux_sym_delim_token_tree_repeat1] = STATE(83), + [sym_identifier] = ACTIONS(686), + [anon_sym_SEMI] = ACTIONS(688), + [anon_sym_LPAREN] = ACTIONS(690), + [anon_sym_RPAREN] = ACTIONS(718), + [anon_sym_LBRACK] = ACTIONS(692), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_COMMA] = ACTIONS(688), + [anon_sym_EQ_GT] = ACTIONS(688), + [anon_sym_COLON] = ACTIONS(698), + [anon_sym_DOLLAR] = ACTIONS(700), + [anon_sym_PLUS] = ACTIONS(698), + [anon_sym_STAR] = ACTIONS(698), + [anon_sym_QMARK] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(686), + [anon_sym_i8] = ACTIONS(686), + [anon_sym_u16] = ACTIONS(686), + [anon_sym_i16] = ACTIONS(686), + [anon_sym_u32] = ACTIONS(686), + [anon_sym_i32] = ACTIONS(686), + [anon_sym_u64] = ACTIONS(686), + [anon_sym_i64] = ACTIONS(686), + [anon_sym_u128] = ACTIONS(686), + [anon_sym_i128] = ACTIONS(686), + [anon_sym_isize] = ACTIONS(686), + [anon_sym_usize] = ACTIONS(686), + [anon_sym_f32] = ACTIONS(686), + [anon_sym_f64] = ACTIONS(686), + [anon_sym_bool] = ACTIONS(686), + [anon_sym_str] = ACTIONS(686), + [anon_sym_char] = ACTIONS(686), + [anon_sym_DASH] = ACTIONS(698), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_PERCENT] = ACTIONS(698), + [anon_sym_CARET] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(698), + [anon_sym_AMP] = ACTIONS(698), + [anon_sym_PIPE] = ACTIONS(698), + [anon_sym_AMP_AMP] = ACTIONS(688), + [anon_sym_PIPE_PIPE] = ACTIONS(688), + [anon_sym_LT_LT] = ACTIONS(698), + [anon_sym_GT_GT] = ACTIONS(698), + [anon_sym_PLUS_EQ] = ACTIONS(688), + [anon_sym_DASH_EQ] = ACTIONS(688), + [anon_sym_STAR_EQ] = ACTIONS(688), + [anon_sym_SLASH_EQ] = ACTIONS(688), + [anon_sym_PERCENT_EQ] = ACTIONS(688), + [anon_sym_CARET_EQ] = ACTIONS(688), + [anon_sym_AMP_EQ] = ACTIONS(688), + [anon_sym_PIPE_EQ] = ACTIONS(688), + [anon_sym_LT_LT_EQ] = ACTIONS(688), + [anon_sym_GT_GT_EQ] = ACTIONS(688), + [anon_sym_EQ] = ACTIONS(698), + [anon_sym_EQ_EQ] = ACTIONS(688), + [anon_sym_BANG_EQ] = ACTIONS(688), + [anon_sym_GT] = ACTIONS(698), + [anon_sym_LT] = ACTIONS(698), + [anon_sym_GT_EQ] = ACTIONS(688), + [anon_sym_LT_EQ] = ACTIONS(688), + [anon_sym_AT] = ACTIONS(688), + [anon_sym__] = ACTIONS(698), + [anon_sym_DOT] = ACTIONS(698), + [anon_sym_DOT_DOT] = ACTIONS(698), + [anon_sym_DOT_DOT_DOT] = ACTIONS(688), + [anon_sym_DOT_DOT_EQ] = ACTIONS(688), + [anon_sym_COLON_COLON] = ACTIONS(688), + [anon_sym_DASH_GT] = ACTIONS(688), + [anon_sym_POUND] = ACTIONS(688), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_as] = ACTIONS(686), + [anon_sym_async] = ACTIONS(686), + [anon_sym_await] = ACTIONS(686), + [anon_sym_break] = ACTIONS(686), + [anon_sym_const] = ACTIONS(686), + [anon_sym_continue] = ACTIONS(686), + [anon_sym_default] = ACTIONS(686), + [anon_sym_enum] = ACTIONS(686), + [anon_sym_fn] = ACTIONS(686), + [anon_sym_for] = ACTIONS(686), + [anon_sym_if] = ACTIONS(686), + [anon_sym_impl] = ACTIONS(686), + [anon_sym_let] = ACTIONS(686), + [anon_sym_loop] = ACTIONS(686), + [anon_sym_match] = ACTIONS(686), + [anon_sym_mod] = ACTIONS(686), + [anon_sym_pub] = ACTIONS(686), + [anon_sym_return] = ACTIONS(686), + [anon_sym_static] = ACTIONS(686), + [anon_sym_struct] = ACTIONS(686), + [anon_sym_trait] = ACTIONS(686), + [anon_sym_type] = ACTIONS(686), + [anon_sym_union] = ACTIONS(686), + [anon_sym_unsafe] = ACTIONS(686), + [anon_sym_use] = ACTIONS(686), + [anon_sym_where] = ACTIONS(686), + [anon_sym_while] = ACTIONS(686), + [sym_mutable_specifier] = ACTIONS(686), + [sym_integer_literal] = ACTIONS(702), + [aux_sym_string_literal_token1] = ACTIONS(704), + [sym_char_literal] = ACTIONS(702), + [anon_sym_true] = ACTIONS(706), + [anon_sym_false] = ACTIONS(706), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(686), + [sym_super] = ACTIONS(686), + [sym_crate] = ACTIONS(686), + [sym__raw_string_literal_start] = ACTIONS(708), + [sym_float_literal] = ACTIONS(702), }, [101] = { - [sym_token_tree] = STATE(157), - [sym_token_repetition] = STATE(157), - [sym__literal] = STATE(157), - [sym_string_literal] = STATE(156), - [sym_raw_string_literal] = STATE(156), - [sym_boolean_literal] = STATE(156), + [sym_delim_token_tree] = STATE(201), + [sym__delim_tokens] = STATE(198), + [sym__non_delim_token] = STATE(201), + [sym__literal] = STATE(205), + [sym_string_literal] = STATE(214), + [sym_raw_string_literal] = STATE(214), + [sym_boolean_literal] = STATE(214), [sym_line_comment] = STATE(101), [sym_block_comment] = STATE(101), - [aux_sym_token_tree_repeat1] = STATE(104), - [aux_sym__non_special_token_repeat1] = STATE(136), - [sym_identifier] = ACTIONS(685), - [anon_sym_SEMI] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(711), - [anon_sym_EQ_GT] = ACTIONS(554), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(695), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_QMARK] = ACTIONS(554), - [anon_sym_u8] = ACTIONS(685), - [anon_sym_i8] = ACTIONS(685), - [anon_sym_u16] = ACTIONS(685), - [anon_sym_i16] = ACTIONS(685), - [anon_sym_u32] = ACTIONS(685), - [anon_sym_i32] = ACTIONS(685), - [anon_sym_u64] = ACTIONS(685), - [anon_sym_i64] = ACTIONS(685), - [anon_sym_u128] = ACTIONS(685), - [anon_sym_i128] = ACTIONS(685), - [anon_sym_isize] = ACTIONS(685), - [anon_sym_usize] = ACTIONS(685), - [anon_sym_f32] = ACTIONS(685), - [anon_sym_f64] = ACTIONS(685), - [anon_sym_bool] = ACTIONS(685), - [anon_sym_str] = ACTIONS(685), - [anon_sym_char] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_AMP] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_AMP_AMP] = ACTIONS(554), - [anon_sym_PIPE_PIPE] = ACTIONS(554), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_GT_GT] = ACTIONS(564), - [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_CARET_EQ] = ACTIONS(554), - [anon_sym_AMP_EQ] = ACTIONS(554), - [anon_sym_PIPE_EQ] = ACTIONS(554), - [anon_sym_LT_LT_EQ] = ACTIONS(554), - [anon_sym_GT_GT_EQ] = ACTIONS(554), - [anon_sym_EQ] = ACTIONS(564), - [anon_sym_EQ_EQ] = ACTIONS(554), - [anon_sym_BANG_EQ] = ACTIONS(554), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT_EQ] = ACTIONS(554), - [anon_sym_LT_EQ] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(554), - [anon_sym__] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(554), - [anon_sym_DOT_DOT_EQ] = ACTIONS(554), - [anon_sym_COMMA] = ACTIONS(554), - [anon_sym_COLON_COLON] = ACTIONS(554), - [anon_sym_DASH_GT] = ACTIONS(554), - [anon_sym_POUND] = ACTIONS(554), - [anon_sym_SQUOTE] = ACTIONS(685), - [anon_sym_as] = ACTIONS(685), - [anon_sym_async] = ACTIONS(685), - [anon_sym_await] = ACTIONS(685), - [anon_sym_break] = ACTIONS(685), - [anon_sym_const] = ACTIONS(685), - [anon_sym_continue] = ACTIONS(685), - [anon_sym_default] = ACTIONS(685), - [anon_sym_enum] = ACTIONS(685), - [anon_sym_fn] = ACTIONS(685), - [anon_sym_for] = ACTIONS(685), - [anon_sym_if] = ACTIONS(685), - [anon_sym_impl] = ACTIONS(685), - [anon_sym_let] = ACTIONS(685), - [anon_sym_loop] = ACTIONS(685), - [anon_sym_match] = ACTIONS(685), - [anon_sym_mod] = ACTIONS(685), - [anon_sym_pub] = ACTIONS(685), - [anon_sym_return] = ACTIONS(685), - [anon_sym_static] = ACTIONS(685), - [anon_sym_struct] = ACTIONS(685), - [anon_sym_trait] = ACTIONS(685), - [anon_sym_type] = ACTIONS(685), - [anon_sym_union] = ACTIONS(685), - [anon_sym_unsafe] = ACTIONS(685), - [anon_sym_use] = ACTIONS(685), - [anon_sym_where] = ACTIONS(685), - [anon_sym_while] = ACTIONS(685), - [sym_mutable_specifier] = ACTIONS(685), - [sym_integer_literal] = ACTIONS(568), - [aux_sym_string_literal_token1] = ACTIONS(570), - [sym_char_literal] = ACTIONS(568), - [anon_sym_true] = ACTIONS(572), - [anon_sym_false] = ACTIONS(572), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(685), - [sym_super] = ACTIONS(685), - [sym_crate] = ACTIONS(685), - [sym_metavariable] = ACTIONS(697), - [sym__raw_string_literal_start] = ACTIONS(576), - [sym_float_literal] = ACTIONS(568), + [aux_sym__non_special_token_repeat1] = STATE(152), + [aux_sym_delim_token_tree_repeat1] = STATE(95), + [sym_identifier] = ACTIONS(686), + [anon_sym_SEMI] = ACTIONS(688), + [anon_sym_LPAREN] = ACTIONS(690), + [anon_sym_LBRACK] = ACTIONS(692), + [anon_sym_RBRACK] = ACTIONS(714), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_COMMA] = ACTIONS(688), + [anon_sym_EQ_GT] = ACTIONS(688), + [anon_sym_COLON] = ACTIONS(698), + [anon_sym_DOLLAR] = ACTIONS(700), + [anon_sym_PLUS] = ACTIONS(698), + [anon_sym_STAR] = ACTIONS(698), + [anon_sym_QMARK] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(686), + [anon_sym_i8] = ACTIONS(686), + [anon_sym_u16] = ACTIONS(686), + [anon_sym_i16] = ACTIONS(686), + [anon_sym_u32] = ACTIONS(686), + [anon_sym_i32] = ACTIONS(686), + [anon_sym_u64] = ACTIONS(686), + [anon_sym_i64] = ACTIONS(686), + [anon_sym_u128] = ACTIONS(686), + [anon_sym_i128] = ACTIONS(686), + [anon_sym_isize] = ACTIONS(686), + [anon_sym_usize] = ACTIONS(686), + [anon_sym_f32] = ACTIONS(686), + [anon_sym_f64] = ACTIONS(686), + [anon_sym_bool] = ACTIONS(686), + [anon_sym_str] = ACTIONS(686), + [anon_sym_char] = ACTIONS(686), + [anon_sym_DASH] = ACTIONS(698), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_PERCENT] = ACTIONS(698), + [anon_sym_CARET] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(698), + [anon_sym_AMP] = ACTIONS(698), + [anon_sym_PIPE] = ACTIONS(698), + [anon_sym_AMP_AMP] = ACTIONS(688), + [anon_sym_PIPE_PIPE] = ACTIONS(688), + [anon_sym_LT_LT] = ACTIONS(698), + [anon_sym_GT_GT] = ACTIONS(698), + [anon_sym_PLUS_EQ] = ACTIONS(688), + [anon_sym_DASH_EQ] = ACTIONS(688), + [anon_sym_STAR_EQ] = ACTIONS(688), + [anon_sym_SLASH_EQ] = ACTIONS(688), + [anon_sym_PERCENT_EQ] = ACTIONS(688), + [anon_sym_CARET_EQ] = ACTIONS(688), + [anon_sym_AMP_EQ] = ACTIONS(688), + [anon_sym_PIPE_EQ] = ACTIONS(688), + [anon_sym_LT_LT_EQ] = ACTIONS(688), + [anon_sym_GT_GT_EQ] = ACTIONS(688), + [anon_sym_EQ] = ACTIONS(698), + [anon_sym_EQ_EQ] = ACTIONS(688), + [anon_sym_BANG_EQ] = ACTIONS(688), + [anon_sym_GT] = ACTIONS(698), + [anon_sym_LT] = ACTIONS(698), + [anon_sym_GT_EQ] = ACTIONS(688), + [anon_sym_LT_EQ] = ACTIONS(688), + [anon_sym_AT] = ACTIONS(688), + [anon_sym__] = ACTIONS(698), + [anon_sym_DOT] = ACTIONS(698), + [anon_sym_DOT_DOT] = ACTIONS(698), + [anon_sym_DOT_DOT_DOT] = ACTIONS(688), + [anon_sym_DOT_DOT_EQ] = ACTIONS(688), + [anon_sym_COLON_COLON] = ACTIONS(688), + [anon_sym_DASH_GT] = ACTIONS(688), + [anon_sym_POUND] = ACTIONS(688), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_as] = ACTIONS(686), + [anon_sym_async] = ACTIONS(686), + [anon_sym_await] = ACTIONS(686), + [anon_sym_break] = ACTIONS(686), + [anon_sym_const] = ACTIONS(686), + [anon_sym_continue] = ACTIONS(686), + [anon_sym_default] = ACTIONS(686), + [anon_sym_enum] = ACTIONS(686), + [anon_sym_fn] = ACTIONS(686), + [anon_sym_for] = ACTIONS(686), + [anon_sym_if] = ACTIONS(686), + [anon_sym_impl] = ACTIONS(686), + [anon_sym_let] = ACTIONS(686), + [anon_sym_loop] = ACTIONS(686), + [anon_sym_match] = ACTIONS(686), + [anon_sym_mod] = ACTIONS(686), + [anon_sym_pub] = ACTIONS(686), + [anon_sym_return] = ACTIONS(686), + [anon_sym_static] = ACTIONS(686), + [anon_sym_struct] = ACTIONS(686), + [anon_sym_trait] = ACTIONS(686), + [anon_sym_type] = ACTIONS(686), + [anon_sym_union] = ACTIONS(686), + [anon_sym_unsafe] = ACTIONS(686), + [anon_sym_use] = ACTIONS(686), + [anon_sym_where] = ACTIONS(686), + [anon_sym_while] = ACTIONS(686), + [sym_mutable_specifier] = ACTIONS(686), + [sym_integer_literal] = ACTIONS(702), + [aux_sym_string_literal_token1] = ACTIONS(704), + [sym_char_literal] = ACTIONS(702), + [anon_sym_true] = ACTIONS(706), + [anon_sym_false] = ACTIONS(706), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(686), + [sym_super] = ACTIONS(686), + [sym_crate] = ACTIONS(686), + [sym__raw_string_literal_start] = ACTIONS(708), + [sym_float_literal] = ACTIONS(702), }, [102] = { - [sym_token_tree] = STATE(157), - [sym_token_repetition] = STATE(157), - [sym__literal] = STATE(157), - [sym_string_literal] = STATE(156), - [sym_raw_string_literal] = STATE(156), - [sym_boolean_literal] = STATE(156), + [sym_token_tree] = STATE(158), + [sym_token_repetition] = STATE(158), + [sym__literal] = STATE(158), + [sym_string_literal] = STATE(166), + [sym_raw_string_literal] = STATE(166), + [sym_boolean_literal] = STATE(166), [sym_line_comment] = STATE(102), [sym_block_comment] = STATE(102), - [aux_sym_token_tree_repeat1] = STATE(82), - [aux_sym__non_special_token_repeat1] = STATE(136), - [sym_identifier] = ACTIONS(685), - [anon_sym_SEMI] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_RPAREN] = ACTIONS(713), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_EQ_GT] = ACTIONS(554), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(695), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_QMARK] = ACTIONS(554), - [anon_sym_u8] = ACTIONS(685), - [anon_sym_i8] = ACTIONS(685), - [anon_sym_u16] = ACTIONS(685), - [anon_sym_i16] = ACTIONS(685), - [anon_sym_u32] = ACTIONS(685), - [anon_sym_i32] = ACTIONS(685), - [anon_sym_u64] = ACTIONS(685), - [anon_sym_i64] = ACTIONS(685), - [anon_sym_u128] = ACTIONS(685), - [anon_sym_i128] = ACTIONS(685), - [anon_sym_isize] = ACTIONS(685), - [anon_sym_usize] = ACTIONS(685), - [anon_sym_f32] = ACTIONS(685), - [anon_sym_f64] = ACTIONS(685), - [anon_sym_bool] = ACTIONS(685), - [anon_sym_str] = ACTIONS(685), - [anon_sym_char] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_AMP] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_AMP_AMP] = ACTIONS(554), - [anon_sym_PIPE_PIPE] = ACTIONS(554), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_GT_GT] = ACTIONS(564), - [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_CARET_EQ] = ACTIONS(554), - [anon_sym_AMP_EQ] = ACTIONS(554), - [anon_sym_PIPE_EQ] = ACTIONS(554), - [anon_sym_LT_LT_EQ] = ACTIONS(554), - [anon_sym_GT_GT_EQ] = ACTIONS(554), - [anon_sym_EQ] = ACTIONS(564), - [anon_sym_EQ_EQ] = ACTIONS(554), - [anon_sym_BANG_EQ] = ACTIONS(554), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT_EQ] = ACTIONS(554), - [anon_sym_LT_EQ] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(554), - [anon_sym__] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(554), - [anon_sym_DOT_DOT_EQ] = ACTIONS(554), - [anon_sym_COMMA] = ACTIONS(554), - [anon_sym_COLON_COLON] = ACTIONS(554), - [anon_sym_DASH_GT] = ACTIONS(554), - [anon_sym_POUND] = ACTIONS(554), - [anon_sym_SQUOTE] = ACTIONS(685), - [anon_sym_as] = ACTIONS(685), - [anon_sym_async] = ACTIONS(685), - [anon_sym_await] = ACTIONS(685), - [anon_sym_break] = ACTIONS(685), - [anon_sym_const] = ACTIONS(685), - [anon_sym_continue] = ACTIONS(685), - [anon_sym_default] = ACTIONS(685), - [anon_sym_enum] = ACTIONS(685), - [anon_sym_fn] = ACTIONS(685), - [anon_sym_for] = ACTIONS(685), - [anon_sym_if] = ACTIONS(685), - [anon_sym_impl] = ACTIONS(685), - [anon_sym_let] = ACTIONS(685), - [anon_sym_loop] = ACTIONS(685), - [anon_sym_match] = ACTIONS(685), - [anon_sym_mod] = ACTIONS(685), - [anon_sym_pub] = ACTIONS(685), - [anon_sym_return] = ACTIONS(685), - [anon_sym_static] = ACTIONS(685), - [anon_sym_struct] = ACTIONS(685), - [anon_sym_trait] = ACTIONS(685), - [anon_sym_type] = ACTIONS(685), - [anon_sym_union] = ACTIONS(685), - [anon_sym_unsafe] = ACTIONS(685), - [anon_sym_use] = ACTIONS(685), - [anon_sym_where] = ACTIONS(685), - [anon_sym_while] = ACTIONS(685), - [sym_mutable_specifier] = ACTIONS(685), - [sym_integer_literal] = ACTIONS(568), - [aux_sym_string_literal_token1] = ACTIONS(570), - [sym_char_literal] = ACTIONS(568), - [anon_sym_true] = ACTIONS(572), - [anon_sym_false] = ACTIONS(572), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(685), - [sym_super] = ACTIONS(685), - [sym_crate] = ACTIONS(685), - [sym_metavariable] = ACTIONS(697), - [sym__raw_string_literal_start] = ACTIONS(576), - [sym_float_literal] = ACTIONS(568), + [aux_sym_macro_def_body_repeat1] = STATE(125), + [aux_sym__non_special_token_repeat1] = STATE(141), + [sym_identifier] = ACTIONS(670), + [anon_sym_SEMI] = ACTIONS(559), + [anon_sym_LPAREN] = ACTIONS(672), + [anon_sym_RPAREN] = ACTIONS(720), + [anon_sym_LBRACK] = ACTIONS(674), + [anon_sym_LBRACE] = ACTIONS(676), + [anon_sym_COMMA] = ACTIONS(559), + [anon_sym_EQ_GT] = ACTIONS(559), + [anon_sym_COLON] = ACTIONS(569), + [anon_sym_DOLLAR] = ACTIONS(680), + [anon_sym_PLUS] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(569), + [anon_sym_QMARK] = ACTIONS(559), + [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_DASH] = ACTIONS(569), + [anon_sym_SLASH] = ACTIONS(569), + [anon_sym_PERCENT] = ACTIONS(569), + [anon_sym_CARET] = ACTIONS(569), + [anon_sym_BANG] = ACTIONS(569), + [anon_sym_AMP] = ACTIONS(569), + [anon_sym_PIPE] = ACTIONS(569), + [anon_sym_AMP_AMP] = ACTIONS(559), + [anon_sym_PIPE_PIPE] = ACTIONS(559), + [anon_sym_LT_LT] = ACTIONS(569), + [anon_sym_GT_GT] = ACTIONS(569), + [anon_sym_PLUS_EQ] = ACTIONS(559), + [anon_sym_DASH_EQ] = ACTIONS(559), + [anon_sym_STAR_EQ] = ACTIONS(559), + [anon_sym_SLASH_EQ] = ACTIONS(559), + [anon_sym_PERCENT_EQ] = ACTIONS(559), + [anon_sym_CARET_EQ] = ACTIONS(559), + [anon_sym_AMP_EQ] = ACTIONS(559), + [anon_sym_PIPE_EQ] = ACTIONS(559), + [anon_sym_LT_LT_EQ] = ACTIONS(559), + [anon_sym_GT_GT_EQ] = ACTIONS(559), + [anon_sym_EQ] = ACTIONS(569), + [anon_sym_EQ_EQ] = ACTIONS(559), + [anon_sym_BANG_EQ] = ACTIONS(559), + [anon_sym_GT] = ACTIONS(569), + [anon_sym_LT] = ACTIONS(569), + [anon_sym_GT_EQ] = ACTIONS(559), + [anon_sym_LT_EQ] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(559), + [anon_sym__] = ACTIONS(569), + [anon_sym_DOT] = ACTIONS(569), + [anon_sym_DOT_DOT] = ACTIONS(569), + [anon_sym_DOT_DOT_DOT] = ACTIONS(559), + [anon_sym_DOT_DOT_EQ] = ACTIONS(559), + [anon_sym_COLON_COLON] = ACTIONS(559), + [anon_sym_DASH_GT] = ACTIONS(559), + [anon_sym_POUND] = ACTIONS(559), + [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(573), + [aux_sym_string_literal_token1] = ACTIONS(575), + [sym_char_literal] = ACTIONS(573), + [anon_sym_true] = ACTIONS(577), + [anon_sym_false] = ACTIONS(577), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(670), + [sym_super] = ACTIONS(670), + [sym_crate] = ACTIONS(670), + [sym_metavariable] = ACTIONS(682), + [sym__raw_string_literal_start] = ACTIONS(581), + [sym_float_literal] = ACTIONS(573), }, [103] = { - [sym_token_tree] = STATE(157), - [sym_token_repetition] = STATE(157), - [sym__literal] = STATE(157), - [sym_string_literal] = STATE(156), - [sym_raw_string_literal] = STATE(156), - [sym_boolean_literal] = STATE(156), + [sym_delim_token_tree] = STATE(201), + [sym__delim_tokens] = STATE(198), + [sym__non_delim_token] = STATE(201), + [sym__literal] = STATE(205), + [sym_string_literal] = STATE(214), + [sym_raw_string_literal] = STATE(214), + [sym_boolean_literal] = STATE(214), [sym_line_comment] = STATE(103), [sym_block_comment] = STATE(103), - [aux_sym_token_tree_repeat1] = STATE(82), - [aux_sym__non_special_token_repeat1] = STATE(136), - [sym_identifier] = ACTIONS(685), - [anon_sym_SEMI] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_RBRACK] = ACTIONS(713), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_EQ_GT] = ACTIONS(554), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(695), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_QMARK] = ACTIONS(554), - [anon_sym_u8] = ACTIONS(685), - [anon_sym_i8] = ACTIONS(685), - [anon_sym_u16] = ACTIONS(685), - [anon_sym_i16] = ACTIONS(685), - [anon_sym_u32] = ACTIONS(685), - [anon_sym_i32] = ACTIONS(685), - [anon_sym_u64] = ACTIONS(685), - [anon_sym_i64] = ACTIONS(685), - [anon_sym_u128] = ACTIONS(685), - [anon_sym_i128] = ACTIONS(685), - [anon_sym_isize] = ACTIONS(685), - [anon_sym_usize] = ACTIONS(685), - [anon_sym_f32] = ACTIONS(685), - [anon_sym_f64] = ACTIONS(685), - [anon_sym_bool] = ACTIONS(685), - [anon_sym_str] = ACTIONS(685), - [anon_sym_char] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_AMP] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_AMP_AMP] = ACTIONS(554), - [anon_sym_PIPE_PIPE] = ACTIONS(554), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_GT_GT] = ACTIONS(564), - [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_CARET_EQ] = ACTIONS(554), - [anon_sym_AMP_EQ] = ACTIONS(554), - [anon_sym_PIPE_EQ] = ACTIONS(554), - [anon_sym_LT_LT_EQ] = ACTIONS(554), - [anon_sym_GT_GT_EQ] = ACTIONS(554), - [anon_sym_EQ] = ACTIONS(564), - [anon_sym_EQ_EQ] = ACTIONS(554), - [anon_sym_BANG_EQ] = ACTIONS(554), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT_EQ] = ACTIONS(554), - [anon_sym_LT_EQ] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(554), - [anon_sym__] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(554), - [anon_sym_DOT_DOT_EQ] = ACTIONS(554), - [anon_sym_COMMA] = ACTIONS(554), - [anon_sym_COLON_COLON] = ACTIONS(554), - [anon_sym_DASH_GT] = ACTIONS(554), - [anon_sym_POUND] = ACTIONS(554), - [anon_sym_SQUOTE] = ACTIONS(685), - [anon_sym_as] = ACTIONS(685), - [anon_sym_async] = ACTIONS(685), - [anon_sym_await] = ACTIONS(685), - [anon_sym_break] = ACTIONS(685), - [anon_sym_const] = ACTIONS(685), - [anon_sym_continue] = ACTIONS(685), - [anon_sym_default] = ACTIONS(685), - [anon_sym_enum] = ACTIONS(685), - [anon_sym_fn] = ACTIONS(685), - [anon_sym_for] = ACTIONS(685), - [anon_sym_if] = ACTIONS(685), - [anon_sym_impl] = ACTIONS(685), - [anon_sym_let] = ACTIONS(685), - [anon_sym_loop] = ACTIONS(685), - [anon_sym_match] = ACTIONS(685), - [anon_sym_mod] = ACTIONS(685), - [anon_sym_pub] = ACTIONS(685), - [anon_sym_return] = ACTIONS(685), - [anon_sym_static] = ACTIONS(685), - [anon_sym_struct] = ACTIONS(685), - [anon_sym_trait] = ACTIONS(685), - [anon_sym_type] = ACTIONS(685), - [anon_sym_union] = ACTIONS(685), - [anon_sym_unsafe] = ACTIONS(685), - [anon_sym_use] = ACTIONS(685), - [anon_sym_where] = ACTIONS(685), - [anon_sym_while] = ACTIONS(685), - [sym_mutable_specifier] = ACTIONS(685), - [sym_integer_literal] = ACTIONS(568), - [aux_sym_string_literal_token1] = ACTIONS(570), - [sym_char_literal] = ACTIONS(568), - [anon_sym_true] = ACTIONS(572), - [anon_sym_false] = ACTIONS(572), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(685), - [sym_super] = ACTIONS(685), - [sym_crate] = ACTIONS(685), - [sym_metavariable] = ACTIONS(697), - [sym__raw_string_literal_start] = ACTIONS(576), - [sym_float_literal] = ACTIONS(568), + [aux_sym__non_special_token_repeat1] = STATE(152), + [aux_sym_delim_token_tree_repeat1] = STATE(83), + [sym_identifier] = ACTIONS(686), + [anon_sym_SEMI] = ACTIONS(688), + [anon_sym_LPAREN] = ACTIONS(690), + [anon_sym_LBRACK] = ACTIONS(692), + [anon_sym_RBRACK] = ACTIONS(710), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_COMMA] = ACTIONS(688), + [anon_sym_EQ_GT] = ACTIONS(688), + [anon_sym_COLON] = ACTIONS(698), + [anon_sym_DOLLAR] = ACTIONS(700), + [anon_sym_PLUS] = ACTIONS(698), + [anon_sym_STAR] = ACTIONS(698), + [anon_sym_QMARK] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(686), + [anon_sym_i8] = ACTIONS(686), + [anon_sym_u16] = ACTIONS(686), + [anon_sym_i16] = ACTIONS(686), + [anon_sym_u32] = ACTIONS(686), + [anon_sym_i32] = ACTIONS(686), + [anon_sym_u64] = ACTIONS(686), + [anon_sym_i64] = ACTIONS(686), + [anon_sym_u128] = ACTIONS(686), + [anon_sym_i128] = ACTIONS(686), + [anon_sym_isize] = ACTIONS(686), + [anon_sym_usize] = ACTIONS(686), + [anon_sym_f32] = ACTIONS(686), + [anon_sym_f64] = ACTIONS(686), + [anon_sym_bool] = ACTIONS(686), + [anon_sym_str] = ACTIONS(686), + [anon_sym_char] = ACTIONS(686), + [anon_sym_DASH] = ACTIONS(698), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_PERCENT] = ACTIONS(698), + [anon_sym_CARET] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(698), + [anon_sym_AMP] = ACTIONS(698), + [anon_sym_PIPE] = ACTIONS(698), + [anon_sym_AMP_AMP] = ACTIONS(688), + [anon_sym_PIPE_PIPE] = ACTIONS(688), + [anon_sym_LT_LT] = ACTIONS(698), + [anon_sym_GT_GT] = ACTIONS(698), + [anon_sym_PLUS_EQ] = ACTIONS(688), + [anon_sym_DASH_EQ] = ACTIONS(688), + [anon_sym_STAR_EQ] = ACTIONS(688), + [anon_sym_SLASH_EQ] = ACTIONS(688), + [anon_sym_PERCENT_EQ] = ACTIONS(688), + [anon_sym_CARET_EQ] = ACTIONS(688), + [anon_sym_AMP_EQ] = ACTIONS(688), + [anon_sym_PIPE_EQ] = ACTIONS(688), + [anon_sym_LT_LT_EQ] = ACTIONS(688), + [anon_sym_GT_GT_EQ] = ACTIONS(688), + [anon_sym_EQ] = ACTIONS(698), + [anon_sym_EQ_EQ] = ACTIONS(688), + [anon_sym_BANG_EQ] = ACTIONS(688), + [anon_sym_GT] = ACTIONS(698), + [anon_sym_LT] = ACTIONS(698), + [anon_sym_GT_EQ] = ACTIONS(688), + [anon_sym_LT_EQ] = ACTIONS(688), + [anon_sym_AT] = ACTIONS(688), + [anon_sym__] = ACTIONS(698), + [anon_sym_DOT] = ACTIONS(698), + [anon_sym_DOT_DOT] = ACTIONS(698), + [anon_sym_DOT_DOT_DOT] = ACTIONS(688), + [anon_sym_DOT_DOT_EQ] = ACTIONS(688), + [anon_sym_COLON_COLON] = ACTIONS(688), + [anon_sym_DASH_GT] = ACTIONS(688), + [anon_sym_POUND] = ACTIONS(688), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_as] = ACTIONS(686), + [anon_sym_async] = ACTIONS(686), + [anon_sym_await] = ACTIONS(686), + [anon_sym_break] = ACTIONS(686), + [anon_sym_const] = ACTIONS(686), + [anon_sym_continue] = ACTIONS(686), + [anon_sym_default] = ACTIONS(686), + [anon_sym_enum] = ACTIONS(686), + [anon_sym_fn] = ACTIONS(686), + [anon_sym_for] = ACTIONS(686), + [anon_sym_if] = ACTIONS(686), + [anon_sym_impl] = ACTIONS(686), + [anon_sym_let] = ACTIONS(686), + [anon_sym_loop] = ACTIONS(686), + [anon_sym_match] = ACTIONS(686), + [anon_sym_mod] = ACTIONS(686), + [anon_sym_pub] = ACTIONS(686), + [anon_sym_return] = ACTIONS(686), + [anon_sym_static] = ACTIONS(686), + [anon_sym_struct] = ACTIONS(686), + [anon_sym_trait] = ACTIONS(686), + [anon_sym_type] = ACTIONS(686), + [anon_sym_union] = ACTIONS(686), + [anon_sym_unsafe] = ACTIONS(686), + [anon_sym_use] = ACTIONS(686), + [anon_sym_where] = ACTIONS(686), + [anon_sym_while] = ACTIONS(686), + [sym_mutable_specifier] = ACTIONS(686), + [sym_integer_literal] = ACTIONS(702), + [aux_sym_string_literal_token1] = ACTIONS(704), + [sym_char_literal] = ACTIONS(702), + [anon_sym_true] = ACTIONS(706), + [anon_sym_false] = ACTIONS(706), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(686), + [sym_super] = ACTIONS(686), + [sym_crate] = ACTIONS(686), + [sym__raw_string_literal_start] = ACTIONS(708), + [sym_float_literal] = ACTIONS(702), }, [104] = { - [sym_token_tree] = STATE(157), - [sym_token_repetition] = STATE(157), - [sym__literal] = STATE(157), - [sym_string_literal] = STATE(156), - [sym_raw_string_literal] = STATE(156), - [sym_boolean_literal] = STATE(156), + [sym_delim_token_tree] = STATE(201), + [sym__delim_tokens] = STATE(198), + [sym__non_delim_token] = STATE(201), + [sym__literal] = STATE(205), + [sym_string_literal] = STATE(214), + [sym_raw_string_literal] = STATE(214), + [sym_boolean_literal] = STATE(214), [sym_line_comment] = STATE(104), [sym_block_comment] = STATE(104), - [aux_sym_token_tree_repeat1] = STATE(82), - [aux_sym__non_special_token_repeat1] = STATE(136), - [sym_identifier] = ACTIONS(685), - [anon_sym_SEMI] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(713), - [anon_sym_EQ_GT] = ACTIONS(554), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(695), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_QMARK] = ACTIONS(554), - [anon_sym_u8] = ACTIONS(685), - [anon_sym_i8] = ACTIONS(685), - [anon_sym_u16] = ACTIONS(685), - [anon_sym_i16] = ACTIONS(685), - [anon_sym_u32] = ACTIONS(685), - [anon_sym_i32] = ACTIONS(685), - [anon_sym_u64] = ACTIONS(685), - [anon_sym_i64] = ACTIONS(685), - [anon_sym_u128] = ACTIONS(685), - [anon_sym_i128] = ACTIONS(685), - [anon_sym_isize] = ACTIONS(685), - [anon_sym_usize] = ACTIONS(685), - [anon_sym_f32] = ACTIONS(685), - [anon_sym_f64] = ACTIONS(685), - [anon_sym_bool] = ACTIONS(685), - [anon_sym_str] = ACTIONS(685), - [anon_sym_char] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_AMP] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_AMP_AMP] = ACTIONS(554), - [anon_sym_PIPE_PIPE] = ACTIONS(554), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_GT_GT] = ACTIONS(564), - [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_CARET_EQ] = ACTIONS(554), - [anon_sym_AMP_EQ] = ACTIONS(554), - [anon_sym_PIPE_EQ] = ACTIONS(554), - [anon_sym_LT_LT_EQ] = ACTIONS(554), - [anon_sym_GT_GT_EQ] = ACTIONS(554), - [anon_sym_EQ] = ACTIONS(564), - [anon_sym_EQ_EQ] = ACTIONS(554), - [anon_sym_BANG_EQ] = ACTIONS(554), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT_EQ] = ACTIONS(554), - [anon_sym_LT_EQ] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(554), - [anon_sym__] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(554), - [anon_sym_DOT_DOT_EQ] = ACTIONS(554), - [anon_sym_COMMA] = ACTIONS(554), - [anon_sym_COLON_COLON] = ACTIONS(554), - [anon_sym_DASH_GT] = ACTIONS(554), - [anon_sym_POUND] = ACTIONS(554), - [anon_sym_SQUOTE] = ACTIONS(685), - [anon_sym_as] = ACTIONS(685), - [anon_sym_async] = ACTIONS(685), - [anon_sym_await] = ACTIONS(685), - [anon_sym_break] = ACTIONS(685), - [anon_sym_const] = ACTIONS(685), - [anon_sym_continue] = ACTIONS(685), - [anon_sym_default] = ACTIONS(685), - [anon_sym_enum] = ACTIONS(685), - [anon_sym_fn] = ACTIONS(685), - [anon_sym_for] = ACTIONS(685), - [anon_sym_if] = ACTIONS(685), - [anon_sym_impl] = ACTIONS(685), - [anon_sym_let] = ACTIONS(685), - [anon_sym_loop] = ACTIONS(685), - [anon_sym_match] = ACTIONS(685), - [anon_sym_mod] = ACTIONS(685), - [anon_sym_pub] = ACTIONS(685), - [anon_sym_return] = ACTIONS(685), - [anon_sym_static] = ACTIONS(685), - [anon_sym_struct] = ACTIONS(685), - [anon_sym_trait] = ACTIONS(685), - [anon_sym_type] = ACTIONS(685), - [anon_sym_union] = ACTIONS(685), - [anon_sym_unsafe] = ACTIONS(685), - [anon_sym_use] = ACTIONS(685), - [anon_sym_where] = ACTIONS(685), - [anon_sym_while] = ACTIONS(685), - [sym_mutable_specifier] = ACTIONS(685), - [sym_integer_literal] = ACTIONS(568), - [aux_sym_string_literal_token1] = ACTIONS(570), - [sym_char_literal] = ACTIONS(568), - [anon_sym_true] = ACTIONS(572), - [anon_sym_false] = ACTIONS(572), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(685), - [sym_super] = ACTIONS(685), - [sym_crate] = ACTIONS(685), - [sym_metavariable] = ACTIONS(697), - [sym__raw_string_literal_start] = ACTIONS(576), - [sym_float_literal] = ACTIONS(568), + [aux_sym__non_special_token_repeat1] = STATE(152), + [aux_sym_delim_token_tree_repeat1] = STATE(94), + [sym_identifier] = ACTIONS(686), + [anon_sym_SEMI] = ACTIONS(688), + [anon_sym_LPAREN] = ACTIONS(690), + [anon_sym_LBRACK] = ACTIONS(692), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_RBRACE] = ACTIONS(722), + [anon_sym_COMMA] = ACTIONS(688), + [anon_sym_EQ_GT] = ACTIONS(688), + [anon_sym_COLON] = ACTIONS(698), + [anon_sym_DOLLAR] = ACTIONS(700), + [anon_sym_PLUS] = ACTIONS(698), + [anon_sym_STAR] = ACTIONS(698), + [anon_sym_QMARK] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(686), + [anon_sym_i8] = ACTIONS(686), + [anon_sym_u16] = ACTIONS(686), + [anon_sym_i16] = ACTIONS(686), + [anon_sym_u32] = ACTIONS(686), + [anon_sym_i32] = ACTIONS(686), + [anon_sym_u64] = ACTIONS(686), + [anon_sym_i64] = ACTIONS(686), + [anon_sym_u128] = ACTIONS(686), + [anon_sym_i128] = ACTIONS(686), + [anon_sym_isize] = ACTIONS(686), + [anon_sym_usize] = ACTIONS(686), + [anon_sym_f32] = ACTIONS(686), + [anon_sym_f64] = ACTIONS(686), + [anon_sym_bool] = ACTIONS(686), + [anon_sym_str] = ACTIONS(686), + [anon_sym_char] = ACTIONS(686), + [anon_sym_DASH] = ACTIONS(698), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_PERCENT] = ACTIONS(698), + [anon_sym_CARET] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(698), + [anon_sym_AMP] = ACTIONS(698), + [anon_sym_PIPE] = ACTIONS(698), + [anon_sym_AMP_AMP] = ACTIONS(688), + [anon_sym_PIPE_PIPE] = ACTIONS(688), + [anon_sym_LT_LT] = ACTIONS(698), + [anon_sym_GT_GT] = ACTIONS(698), + [anon_sym_PLUS_EQ] = ACTIONS(688), + [anon_sym_DASH_EQ] = ACTIONS(688), + [anon_sym_STAR_EQ] = ACTIONS(688), + [anon_sym_SLASH_EQ] = ACTIONS(688), + [anon_sym_PERCENT_EQ] = ACTIONS(688), + [anon_sym_CARET_EQ] = ACTIONS(688), + [anon_sym_AMP_EQ] = ACTIONS(688), + [anon_sym_PIPE_EQ] = ACTIONS(688), + [anon_sym_LT_LT_EQ] = ACTIONS(688), + [anon_sym_GT_GT_EQ] = ACTIONS(688), + [anon_sym_EQ] = ACTIONS(698), + [anon_sym_EQ_EQ] = ACTIONS(688), + [anon_sym_BANG_EQ] = ACTIONS(688), + [anon_sym_GT] = ACTIONS(698), + [anon_sym_LT] = ACTIONS(698), + [anon_sym_GT_EQ] = ACTIONS(688), + [anon_sym_LT_EQ] = ACTIONS(688), + [anon_sym_AT] = ACTIONS(688), + [anon_sym__] = ACTIONS(698), + [anon_sym_DOT] = ACTIONS(698), + [anon_sym_DOT_DOT] = ACTIONS(698), + [anon_sym_DOT_DOT_DOT] = ACTIONS(688), + [anon_sym_DOT_DOT_EQ] = ACTIONS(688), + [anon_sym_COLON_COLON] = ACTIONS(688), + [anon_sym_DASH_GT] = ACTIONS(688), + [anon_sym_POUND] = ACTIONS(688), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_as] = ACTIONS(686), + [anon_sym_async] = ACTIONS(686), + [anon_sym_await] = ACTIONS(686), + [anon_sym_break] = ACTIONS(686), + [anon_sym_const] = ACTIONS(686), + [anon_sym_continue] = ACTIONS(686), + [anon_sym_default] = ACTIONS(686), + [anon_sym_enum] = ACTIONS(686), + [anon_sym_fn] = ACTIONS(686), + [anon_sym_for] = ACTIONS(686), + [anon_sym_if] = ACTIONS(686), + [anon_sym_impl] = ACTIONS(686), + [anon_sym_let] = ACTIONS(686), + [anon_sym_loop] = ACTIONS(686), + [anon_sym_match] = ACTIONS(686), + [anon_sym_mod] = ACTIONS(686), + [anon_sym_pub] = ACTIONS(686), + [anon_sym_return] = ACTIONS(686), + [anon_sym_static] = ACTIONS(686), + [anon_sym_struct] = ACTIONS(686), + [anon_sym_trait] = ACTIONS(686), + [anon_sym_type] = ACTIONS(686), + [anon_sym_union] = ACTIONS(686), + [anon_sym_unsafe] = ACTIONS(686), + [anon_sym_use] = ACTIONS(686), + [anon_sym_where] = ACTIONS(686), + [anon_sym_while] = ACTIONS(686), + [sym_mutable_specifier] = ACTIONS(686), + [sym_integer_literal] = ACTIONS(702), + [aux_sym_string_literal_token1] = ACTIONS(704), + [sym_char_literal] = ACTIONS(702), + [anon_sym_true] = ACTIONS(706), + [anon_sym_false] = ACTIONS(706), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(686), + [sym_super] = ACTIONS(686), + [sym_crate] = ACTIONS(686), + [sym__raw_string_literal_start] = ACTIONS(708), + [sym_float_literal] = ACTIONS(702), }, [105] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), + [sym_delim_token_tree] = STATE(201), + [sym__delim_tokens] = STATE(198), + [sym__non_delim_token] = STATE(201), + [sym__literal] = STATE(205), + [sym_string_literal] = STATE(214), + [sym_raw_string_literal] = STATE(214), + [sym_boolean_literal] = STATE(214), [sym_line_comment] = STATE(105), [sym_block_comment] = STATE(105), - [aux_sym__non_special_token_repeat1] = STATE(160), - [aux_sym_delim_token_tree_repeat1] = STATE(108), - [sym_identifier] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(663), - [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_RPAREN] = ACTIONS(715), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(671), - [anon_sym_EQ_GT] = ACTIONS(663), - [anon_sym_COLON] = ACTIONS(673), - [anon_sym_DOLLAR] = ACTIONS(675), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_STAR] = ACTIONS(673), - [anon_sym_QMARK] = ACTIONS(663), - [anon_sym_u8] = ACTIONS(661), - [anon_sym_i8] = ACTIONS(661), - [anon_sym_u16] = ACTIONS(661), - [anon_sym_i16] = ACTIONS(661), - [anon_sym_u32] = ACTIONS(661), - [anon_sym_i32] = ACTIONS(661), - [anon_sym_u64] = ACTIONS(661), - [anon_sym_i64] = ACTIONS(661), - [anon_sym_u128] = ACTIONS(661), - [anon_sym_i128] = ACTIONS(661), - [anon_sym_isize] = ACTIONS(661), - [anon_sym_usize] = ACTIONS(661), - [anon_sym_f32] = ACTIONS(661), - [anon_sym_f64] = ACTIONS(661), - [anon_sym_bool] = ACTIONS(661), - [anon_sym_str] = ACTIONS(661), - [anon_sym_char] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_SLASH] = ACTIONS(673), - [anon_sym_PERCENT] = ACTIONS(673), - [anon_sym_CARET] = ACTIONS(673), - [anon_sym_BANG] = ACTIONS(673), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE] = ACTIONS(673), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [anon_sym_LT_LT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(673), - [anon_sym_PLUS_EQ] = ACTIONS(663), - [anon_sym_DASH_EQ] = ACTIONS(663), - [anon_sym_STAR_EQ] = ACTIONS(663), - [anon_sym_SLASH_EQ] = ACTIONS(663), - [anon_sym_PERCENT_EQ] = ACTIONS(663), - [anon_sym_CARET_EQ] = ACTIONS(663), - [anon_sym_AMP_EQ] = ACTIONS(663), - [anon_sym_PIPE_EQ] = ACTIONS(663), - [anon_sym_LT_LT_EQ] = ACTIONS(663), - [anon_sym_GT_GT_EQ] = ACTIONS(663), - [anon_sym_EQ] = ACTIONS(673), - [anon_sym_EQ_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_AT] = ACTIONS(663), - [anon_sym__] = ACTIONS(673), - [anon_sym_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_COLON_COLON] = ACTIONS(663), - [anon_sym_DASH_GT] = ACTIONS(663), - [anon_sym_POUND] = ACTIONS(663), - [anon_sym_SQUOTE] = ACTIONS(661), - [anon_sym_as] = ACTIONS(661), - [anon_sym_async] = ACTIONS(661), - [anon_sym_await] = ACTIONS(661), - [anon_sym_break] = ACTIONS(661), - [anon_sym_const] = ACTIONS(661), - [anon_sym_continue] = ACTIONS(661), - [anon_sym_default] = ACTIONS(661), - [anon_sym_enum] = ACTIONS(661), - [anon_sym_fn] = ACTIONS(661), - [anon_sym_for] = ACTIONS(661), - [anon_sym_if] = ACTIONS(661), - [anon_sym_impl] = ACTIONS(661), - [anon_sym_let] = ACTIONS(661), - [anon_sym_loop] = ACTIONS(661), - [anon_sym_match] = ACTIONS(661), - [anon_sym_mod] = ACTIONS(661), - [anon_sym_pub] = ACTIONS(661), - [anon_sym_return] = ACTIONS(661), - [anon_sym_static] = ACTIONS(661), - [anon_sym_struct] = ACTIONS(661), - [anon_sym_trait] = ACTIONS(661), - [anon_sym_type] = ACTIONS(661), - [anon_sym_union] = ACTIONS(661), - [anon_sym_unsafe] = ACTIONS(661), - [anon_sym_use] = ACTIONS(661), - [anon_sym_where] = ACTIONS(661), - [anon_sym_while] = ACTIONS(661), - [sym_mutable_specifier] = ACTIONS(661), - [sym_integer_literal] = ACTIONS(677), - [aux_sym_string_literal_token1] = ACTIONS(679), - [sym_char_literal] = ACTIONS(677), - [anon_sym_true] = ACTIONS(681), - [anon_sym_false] = ACTIONS(681), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_crate] = ACTIONS(661), - [sym__raw_string_literal_start] = ACTIONS(683), - [sym_float_literal] = ACTIONS(677), + [aux_sym__non_special_token_repeat1] = STATE(152), + [aux_sym_delim_token_tree_repeat1] = STATE(127), + [sym_identifier] = ACTIONS(686), + [anon_sym_SEMI] = ACTIONS(688), + [anon_sym_LPAREN] = ACTIONS(690), + [anon_sym_RPAREN] = ACTIONS(724), + [anon_sym_LBRACK] = ACTIONS(692), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_COMMA] = ACTIONS(688), + [anon_sym_EQ_GT] = ACTIONS(688), + [anon_sym_COLON] = ACTIONS(698), + [anon_sym_DOLLAR] = ACTIONS(700), + [anon_sym_PLUS] = ACTIONS(698), + [anon_sym_STAR] = ACTIONS(698), + [anon_sym_QMARK] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(686), + [anon_sym_i8] = ACTIONS(686), + [anon_sym_u16] = ACTIONS(686), + [anon_sym_i16] = ACTIONS(686), + [anon_sym_u32] = ACTIONS(686), + [anon_sym_i32] = ACTIONS(686), + [anon_sym_u64] = ACTIONS(686), + [anon_sym_i64] = ACTIONS(686), + [anon_sym_u128] = ACTIONS(686), + [anon_sym_i128] = ACTIONS(686), + [anon_sym_isize] = ACTIONS(686), + [anon_sym_usize] = ACTIONS(686), + [anon_sym_f32] = ACTIONS(686), + [anon_sym_f64] = ACTIONS(686), + [anon_sym_bool] = ACTIONS(686), + [anon_sym_str] = ACTIONS(686), + [anon_sym_char] = ACTIONS(686), + [anon_sym_DASH] = ACTIONS(698), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_PERCENT] = ACTIONS(698), + [anon_sym_CARET] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(698), + [anon_sym_AMP] = ACTIONS(698), + [anon_sym_PIPE] = ACTIONS(698), + [anon_sym_AMP_AMP] = ACTIONS(688), + [anon_sym_PIPE_PIPE] = ACTIONS(688), + [anon_sym_LT_LT] = ACTIONS(698), + [anon_sym_GT_GT] = ACTIONS(698), + [anon_sym_PLUS_EQ] = ACTIONS(688), + [anon_sym_DASH_EQ] = ACTIONS(688), + [anon_sym_STAR_EQ] = ACTIONS(688), + [anon_sym_SLASH_EQ] = ACTIONS(688), + [anon_sym_PERCENT_EQ] = ACTIONS(688), + [anon_sym_CARET_EQ] = ACTIONS(688), + [anon_sym_AMP_EQ] = ACTIONS(688), + [anon_sym_PIPE_EQ] = ACTIONS(688), + [anon_sym_LT_LT_EQ] = ACTIONS(688), + [anon_sym_GT_GT_EQ] = ACTIONS(688), + [anon_sym_EQ] = ACTIONS(698), + [anon_sym_EQ_EQ] = ACTIONS(688), + [anon_sym_BANG_EQ] = ACTIONS(688), + [anon_sym_GT] = ACTIONS(698), + [anon_sym_LT] = ACTIONS(698), + [anon_sym_GT_EQ] = ACTIONS(688), + [anon_sym_LT_EQ] = ACTIONS(688), + [anon_sym_AT] = ACTIONS(688), + [anon_sym__] = ACTIONS(698), + [anon_sym_DOT] = ACTIONS(698), + [anon_sym_DOT_DOT] = ACTIONS(698), + [anon_sym_DOT_DOT_DOT] = ACTIONS(688), + [anon_sym_DOT_DOT_EQ] = ACTIONS(688), + [anon_sym_COLON_COLON] = ACTIONS(688), + [anon_sym_DASH_GT] = ACTIONS(688), + [anon_sym_POUND] = ACTIONS(688), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_as] = ACTIONS(686), + [anon_sym_async] = ACTIONS(686), + [anon_sym_await] = ACTIONS(686), + [anon_sym_break] = ACTIONS(686), + [anon_sym_const] = ACTIONS(686), + [anon_sym_continue] = ACTIONS(686), + [anon_sym_default] = ACTIONS(686), + [anon_sym_enum] = ACTIONS(686), + [anon_sym_fn] = ACTIONS(686), + [anon_sym_for] = ACTIONS(686), + [anon_sym_if] = ACTIONS(686), + [anon_sym_impl] = ACTIONS(686), + [anon_sym_let] = ACTIONS(686), + [anon_sym_loop] = ACTIONS(686), + [anon_sym_match] = ACTIONS(686), + [anon_sym_mod] = ACTIONS(686), + [anon_sym_pub] = ACTIONS(686), + [anon_sym_return] = ACTIONS(686), + [anon_sym_static] = ACTIONS(686), + [anon_sym_struct] = ACTIONS(686), + [anon_sym_trait] = ACTIONS(686), + [anon_sym_type] = ACTIONS(686), + [anon_sym_union] = ACTIONS(686), + [anon_sym_unsafe] = ACTIONS(686), + [anon_sym_use] = ACTIONS(686), + [anon_sym_where] = ACTIONS(686), + [anon_sym_while] = ACTIONS(686), + [sym_mutable_specifier] = ACTIONS(686), + [sym_integer_literal] = ACTIONS(702), + [aux_sym_string_literal_token1] = ACTIONS(704), + [sym_char_literal] = ACTIONS(702), + [anon_sym_true] = ACTIONS(706), + [anon_sym_false] = ACTIONS(706), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(686), + [sym_super] = ACTIONS(686), + [sym_crate] = ACTIONS(686), + [sym__raw_string_literal_start] = ACTIONS(708), + [sym_float_literal] = ACTIONS(702), }, [106] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), + [sym_token_tree] = STATE(158), + [sym_token_repetition] = STATE(158), + [sym__literal] = STATE(158), + [sym_string_literal] = STATE(166), + [sym_raw_string_literal] = STATE(166), + [sym_boolean_literal] = STATE(166), [sym_line_comment] = STATE(106), [sym_block_comment] = STATE(106), - [aux_sym__non_special_token_repeat1] = STATE(160), - [aux_sym_delim_token_tree_repeat1] = STATE(109), - [sym_identifier] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(663), - [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_RBRACK] = ACTIONS(715), - [anon_sym_LBRACE] = ACTIONS(671), - [anon_sym_EQ_GT] = ACTIONS(663), - [anon_sym_COLON] = ACTIONS(673), - [anon_sym_DOLLAR] = ACTIONS(675), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_STAR] = ACTIONS(673), - [anon_sym_QMARK] = ACTIONS(663), - [anon_sym_u8] = ACTIONS(661), - [anon_sym_i8] = ACTIONS(661), - [anon_sym_u16] = ACTIONS(661), - [anon_sym_i16] = ACTIONS(661), - [anon_sym_u32] = ACTIONS(661), - [anon_sym_i32] = ACTIONS(661), - [anon_sym_u64] = ACTIONS(661), - [anon_sym_i64] = ACTIONS(661), - [anon_sym_u128] = ACTIONS(661), - [anon_sym_i128] = ACTIONS(661), - [anon_sym_isize] = ACTIONS(661), - [anon_sym_usize] = ACTIONS(661), - [anon_sym_f32] = ACTIONS(661), - [anon_sym_f64] = ACTIONS(661), - [anon_sym_bool] = ACTIONS(661), - [anon_sym_str] = ACTIONS(661), - [anon_sym_char] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_SLASH] = ACTIONS(673), - [anon_sym_PERCENT] = ACTIONS(673), - [anon_sym_CARET] = ACTIONS(673), - [anon_sym_BANG] = ACTIONS(673), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE] = ACTIONS(673), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [anon_sym_LT_LT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(673), - [anon_sym_PLUS_EQ] = ACTIONS(663), - [anon_sym_DASH_EQ] = ACTIONS(663), - [anon_sym_STAR_EQ] = ACTIONS(663), - [anon_sym_SLASH_EQ] = ACTIONS(663), - [anon_sym_PERCENT_EQ] = ACTIONS(663), - [anon_sym_CARET_EQ] = ACTIONS(663), - [anon_sym_AMP_EQ] = ACTIONS(663), - [anon_sym_PIPE_EQ] = ACTIONS(663), - [anon_sym_LT_LT_EQ] = ACTIONS(663), - [anon_sym_GT_GT_EQ] = ACTIONS(663), - [anon_sym_EQ] = ACTIONS(673), - [anon_sym_EQ_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_AT] = ACTIONS(663), - [anon_sym__] = ACTIONS(673), - [anon_sym_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_COLON_COLON] = ACTIONS(663), - [anon_sym_DASH_GT] = ACTIONS(663), - [anon_sym_POUND] = ACTIONS(663), - [anon_sym_SQUOTE] = ACTIONS(661), - [anon_sym_as] = ACTIONS(661), - [anon_sym_async] = ACTIONS(661), - [anon_sym_await] = ACTIONS(661), - [anon_sym_break] = ACTIONS(661), - [anon_sym_const] = ACTIONS(661), - [anon_sym_continue] = ACTIONS(661), - [anon_sym_default] = ACTIONS(661), - [anon_sym_enum] = ACTIONS(661), - [anon_sym_fn] = ACTIONS(661), - [anon_sym_for] = ACTIONS(661), - [anon_sym_if] = ACTIONS(661), - [anon_sym_impl] = ACTIONS(661), - [anon_sym_let] = ACTIONS(661), - [anon_sym_loop] = ACTIONS(661), - [anon_sym_match] = ACTIONS(661), - [anon_sym_mod] = ACTIONS(661), - [anon_sym_pub] = ACTIONS(661), - [anon_sym_return] = ACTIONS(661), - [anon_sym_static] = ACTIONS(661), - [anon_sym_struct] = ACTIONS(661), - [anon_sym_trait] = ACTIONS(661), - [anon_sym_type] = ACTIONS(661), - [anon_sym_union] = ACTIONS(661), - [anon_sym_unsafe] = ACTIONS(661), - [anon_sym_use] = ACTIONS(661), - [anon_sym_where] = ACTIONS(661), - [anon_sym_while] = ACTIONS(661), - [sym_mutable_specifier] = ACTIONS(661), - [sym_integer_literal] = ACTIONS(677), - [aux_sym_string_literal_token1] = ACTIONS(679), - [sym_char_literal] = ACTIONS(677), - [anon_sym_true] = ACTIONS(681), - [anon_sym_false] = ACTIONS(681), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_crate] = ACTIONS(661), - [sym__raw_string_literal_start] = ACTIONS(683), - [sym_float_literal] = ACTIONS(677), + [aux_sym_macro_def_body_repeat1] = STATE(85), + [aux_sym__non_special_token_repeat1] = STATE(141), + [sym_identifier] = ACTIONS(670), + [anon_sym_SEMI] = ACTIONS(559), + [anon_sym_LPAREN] = ACTIONS(672), + [anon_sym_RPAREN] = ACTIONS(726), + [anon_sym_LBRACK] = ACTIONS(674), + [anon_sym_LBRACE] = ACTIONS(676), + [anon_sym_COMMA] = ACTIONS(559), + [anon_sym_EQ_GT] = ACTIONS(559), + [anon_sym_COLON] = ACTIONS(569), + [anon_sym_DOLLAR] = ACTIONS(680), + [anon_sym_PLUS] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(569), + [anon_sym_QMARK] = ACTIONS(559), + [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_DASH] = ACTIONS(569), + [anon_sym_SLASH] = ACTIONS(569), + [anon_sym_PERCENT] = ACTIONS(569), + [anon_sym_CARET] = ACTIONS(569), + [anon_sym_BANG] = ACTIONS(569), + [anon_sym_AMP] = ACTIONS(569), + [anon_sym_PIPE] = ACTIONS(569), + [anon_sym_AMP_AMP] = ACTIONS(559), + [anon_sym_PIPE_PIPE] = ACTIONS(559), + [anon_sym_LT_LT] = ACTIONS(569), + [anon_sym_GT_GT] = ACTIONS(569), + [anon_sym_PLUS_EQ] = ACTIONS(559), + [anon_sym_DASH_EQ] = ACTIONS(559), + [anon_sym_STAR_EQ] = ACTIONS(559), + [anon_sym_SLASH_EQ] = ACTIONS(559), + [anon_sym_PERCENT_EQ] = ACTIONS(559), + [anon_sym_CARET_EQ] = ACTIONS(559), + [anon_sym_AMP_EQ] = ACTIONS(559), + [anon_sym_PIPE_EQ] = ACTIONS(559), + [anon_sym_LT_LT_EQ] = ACTIONS(559), + [anon_sym_GT_GT_EQ] = ACTIONS(559), + [anon_sym_EQ] = ACTIONS(569), + [anon_sym_EQ_EQ] = ACTIONS(559), + [anon_sym_BANG_EQ] = ACTIONS(559), + [anon_sym_GT] = ACTIONS(569), + [anon_sym_LT] = ACTIONS(569), + [anon_sym_GT_EQ] = ACTIONS(559), + [anon_sym_LT_EQ] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(559), + [anon_sym__] = ACTIONS(569), + [anon_sym_DOT] = ACTIONS(569), + [anon_sym_DOT_DOT] = ACTIONS(569), + [anon_sym_DOT_DOT_DOT] = ACTIONS(559), + [anon_sym_DOT_DOT_EQ] = ACTIONS(559), + [anon_sym_COLON_COLON] = ACTIONS(559), + [anon_sym_DASH_GT] = ACTIONS(559), + [anon_sym_POUND] = ACTIONS(559), + [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(573), + [aux_sym_string_literal_token1] = ACTIONS(575), + [sym_char_literal] = ACTIONS(573), + [anon_sym_true] = ACTIONS(577), + [anon_sym_false] = ACTIONS(577), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(670), + [sym_super] = ACTIONS(670), + [sym_crate] = ACTIONS(670), + [sym_metavariable] = ACTIONS(682), + [sym__raw_string_literal_start] = ACTIONS(581), + [sym_float_literal] = ACTIONS(573), }, [107] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), + [sym_delim_token_tree] = STATE(201), + [sym__delim_tokens] = STATE(198), + [sym__non_delim_token] = STATE(201), + [sym__literal] = STATE(205), + [sym_string_literal] = STATE(214), + [sym_raw_string_literal] = STATE(214), + [sym_boolean_literal] = STATE(214), [sym_line_comment] = STATE(107), [sym_block_comment] = STATE(107), - [aux_sym__non_special_token_repeat1] = STATE(160), - [aux_sym_delim_token_tree_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(663), - [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_RPAREN] = ACTIONS(701), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(671), - [anon_sym_EQ_GT] = ACTIONS(663), - [anon_sym_COLON] = ACTIONS(673), - [anon_sym_DOLLAR] = ACTIONS(675), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_STAR] = ACTIONS(673), - [anon_sym_QMARK] = ACTIONS(663), - [anon_sym_u8] = ACTIONS(661), - [anon_sym_i8] = ACTIONS(661), - [anon_sym_u16] = ACTIONS(661), - [anon_sym_i16] = ACTIONS(661), - [anon_sym_u32] = ACTIONS(661), - [anon_sym_i32] = ACTIONS(661), - [anon_sym_u64] = ACTIONS(661), - [anon_sym_i64] = ACTIONS(661), - [anon_sym_u128] = ACTIONS(661), - [anon_sym_i128] = ACTIONS(661), - [anon_sym_isize] = ACTIONS(661), - [anon_sym_usize] = ACTIONS(661), - [anon_sym_f32] = ACTIONS(661), - [anon_sym_f64] = ACTIONS(661), - [anon_sym_bool] = ACTIONS(661), - [anon_sym_str] = ACTIONS(661), - [anon_sym_char] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_SLASH] = ACTIONS(673), - [anon_sym_PERCENT] = ACTIONS(673), - [anon_sym_CARET] = ACTIONS(673), - [anon_sym_BANG] = ACTIONS(673), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE] = ACTIONS(673), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [anon_sym_LT_LT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(673), - [anon_sym_PLUS_EQ] = ACTIONS(663), - [anon_sym_DASH_EQ] = ACTIONS(663), - [anon_sym_STAR_EQ] = ACTIONS(663), - [anon_sym_SLASH_EQ] = ACTIONS(663), - [anon_sym_PERCENT_EQ] = ACTIONS(663), - [anon_sym_CARET_EQ] = ACTIONS(663), - [anon_sym_AMP_EQ] = ACTIONS(663), - [anon_sym_PIPE_EQ] = ACTIONS(663), - [anon_sym_LT_LT_EQ] = ACTIONS(663), - [anon_sym_GT_GT_EQ] = ACTIONS(663), - [anon_sym_EQ] = ACTIONS(673), - [anon_sym_EQ_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_AT] = ACTIONS(663), - [anon_sym__] = ACTIONS(673), - [anon_sym_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_COLON_COLON] = ACTIONS(663), - [anon_sym_DASH_GT] = ACTIONS(663), - [anon_sym_POUND] = ACTIONS(663), - [anon_sym_SQUOTE] = ACTIONS(661), - [anon_sym_as] = ACTIONS(661), - [anon_sym_async] = ACTIONS(661), - [anon_sym_await] = ACTIONS(661), - [anon_sym_break] = ACTIONS(661), - [anon_sym_const] = ACTIONS(661), - [anon_sym_continue] = ACTIONS(661), - [anon_sym_default] = ACTIONS(661), - [anon_sym_enum] = ACTIONS(661), - [anon_sym_fn] = ACTIONS(661), - [anon_sym_for] = ACTIONS(661), - [anon_sym_if] = ACTIONS(661), - [anon_sym_impl] = ACTIONS(661), - [anon_sym_let] = ACTIONS(661), - [anon_sym_loop] = ACTIONS(661), - [anon_sym_match] = ACTIONS(661), - [anon_sym_mod] = ACTIONS(661), - [anon_sym_pub] = ACTIONS(661), - [anon_sym_return] = ACTIONS(661), - [anon_sym_static] = ACTIONS(661), - [anon_sym_struct] = ACTIONS(661), - [anon_sym_trait] = ACTIONS(661), - [anon_sym_type] = ACTIONS(661), - [anon_sym_union] = ACTIONS(661), - [anon_sym_unsafe] = ACTIONS(661), - [anon_sym_use] = ACTIONS(661), - [anon_sym_where] = ACTIONS(661), - [anon_sym_while] = ACTIONS(661), - [sym_mutable_specifier] = ACTIONS(661), - [sym_integer_literal] = ACTIONS(677), - [aux_sym_string_literal_token1] = ACTIONS(679), - [sym_char_literal] = ACTIONS(677), - [anon_sym_true] = ACTIONS(681), - [anon_sym_false] = ACTIONS(681), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_crate] = ACTIONS(661), - [sym__raw_string_literal_start] = ACTIONS(683), - [sym_float_literal] = ACTIONS(677), + [aux_sym__non_special_token_repeat1] = STATE(152), + [aux_sym_delim_token_tree_repeat1] = STATE(121), + [sym_identifier] = ACTIONS(686), + [anon_sym_SEMI] = ACTIONS(688), + [anon_sym_LPAREN] = ACTIONS(690), + [anon_sym_LBRACK] = ACTIONS(692), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_RBRACE] = ACTIONS(728), + [anon_sym_COMMA] = ACTIONS(688), + [anon_sym_EQ_GT] = ACTIONS(688), + [anon_sym_COLON] = ACTIONS(698), + [anon_sym_DOLLAR] = ACTIONS(700), + [anon_sym_PLUS] = ACTIONS(698), + [anon_sym_STAR] = ACTIONS(698), + [anon_sym_QMARK] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(686), + [anon_sym_i8] = ACTIONS(686), + [anon_sym_u16] = ACTIONS(686), + [anon_sym_i16] = ACTIONS(686), + [anon_sym_u32] = ACTIONS(686), + [anon_sym_i32] = ACTIONS(686), + [anon_sym_u64] = ACTIONS(686), + [anon_sym_i64] = ACTIONS(686), + [anon_sym_u128] = ACTIONS(686), + [anon_sym_i128] = ACTIONS(686), + [anon_sym_isize] = ACTIONS(686), + [anon_sym_usize] = ACTIONS(686), + [anon_sym_f32] = ACTIONS(686), + [anon_sym_f64] = ACTIONS(686), + [anon_sym_bool] = ACTIONS(686), + [anon_sym_str] = ACTIONS(686), + [anon_sym_char] = ACTIONS(686), + [anon_sym_DASH] = ACTIONS(698), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_PERCENT] = ACTIONS(698), + [anon_sym_CARET] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(698), + [anon_sym_AMP] = ACTIONS(698), + [anon_sym_PIPE] = ACTIONS(698), + [anon_sym_AMP_AMP] = ACTIONS(688), + [anon_sym_PIPE_PIPE] = ACTIONS(688), + [anon_sym_LT_LT] = ACTIONS(698), + [anon_sym_GT_GT] = ACTIONS(698), + [anon_sym_PLUS_EQ] = ACTIONS(688), + [anon_sym_DASH_EQ] = ACTIONS(688), + [anon_sym_STAR_EQ] = ACTIONS(688), + [anon_sym_SLASH_EQ] = ACTIONS(688), + [anon_sym_PERCENT_EQ] = ACTIONS(688), + [anon_sym_CARET_EQ] = ACTIONS(688), + [anon_sym_AMP_EQ] = ACTIONS(688), + [anon_sym_PIPE_EQ] = ACTIONS(688), + [anon_sym_LT_LT_EQ] = ACTIONS(688), + [anon_sym_GT_GT_EQ] = ACTIONS(688), + [anon_sym_EQ] = ACTIONS(698), + [anon_sym_EQ_EQ] = ACTIONS(688), + [anon_sym_BANG_EQ] = ACTIONS(688), + [anon_sym_GT] = ACTIONS(698), + [anon_sym_LT] = ACTIONS(698), + [anon_sym_GT_EQ] = ACTIONS(688), + [anon_sym_LT_EQ] = ACTIONS(688), + [anon_sym_AT] = ACTIONS(688), + [anon_sym__] = ACTIONS(698), + [anon_sym_DOT] = ACTIONS(698), + [anon_sym_DOT_DOT] = ACTIONS(698), + [anon_sym_DOT_DOT_DOT] = ACTIONS(688), + [anon_sym_DOT_DOT_EQ] = ACTIONS(688), + [anon_sym_COLON_COLON] = ACTIONS(688), + [anon_sym_DASH_GT] = ACTIONS(688), + [anon_sym_POUND] = ACTIONS(688), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_as] = ACTIONS(686), + [anon_sym_async] = ACTIONS(686), + [anon_sym_await] = ACTIONS(686), + [anon_sym_break] = ACTIONS(686), + [anon_sym_const] = ACTIONS(686), + [anon_sym_continue] = ACTIONS(686), + [anon_sym_default] = ACTIONS(686), + [anon_sym_enum] = ACTIONS(686), + [anon_sym_fn] = ACTIONS(686), + [anon_sym_for] = ACTIONS(686), + [anon_sym_if] = ACTIONS(686), + [anon_sym_impl] = ACTIONS(686), + [anon_sym_let] = ACTIONS(686), + [anon_sym_loop] = ACTIONS(686), + [anon_sym_match] = ACTIONS(686), + [anon_sym_mod] = ACTIONS(686), + [anon_sym_pub] = ACTIONS(686), + [anon_sym_return] = ACTIONS(686), + [anon_sym_static] = ACTIONS(686), + [anon_sym_struct] = ACTIONS(686), + [anon_sym_trait] = ACTIONS(686), + [anon_sym_type] = ACTIONS(686), + [anon_sym_union] = ACTIONS(686), + [anon_sym_unsafe] = ACTIONS(686), + [anon_sym_use] = ACTIONS(686), + [anon_sym_where] = ACTIONS(686), + [anon_sym_while] = ACTIONS(686), + [sym_mutable_specifier] = ACTIONS(686), + [sym_integer_literal] = ACTIONS(702), + [aux_sym_string_literal_token1] = ACTIONS(704), + [sym_char_literal] = ACTIONS(702), + [anon_sym_true] = ACTIONS(706), + [anon_sym_false] = ACTIONS(706), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(686), + [sym_super] = ACTIONS(686), + [sym_crate] = ACTIONS(686), + [sym__raw_string_literal_start] = ACTIONS(708), + [sym_float_literal] = ACTIONS(702), }, [108] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), + [sym_delim_token_tree] = STATE(201), + [sym__delim_tokens] = STATE(198), + [sym__non_delim_token] = STATE(201), + [sym__literal] = STATE(205), + [sym_string_literal] = STATE(214), + [sym_raw_string_literal] = STATE(214), + [sym_boolean_literal] = STATE(214), [sym_line_comment] = STATE(108), [sym_block_comment] = STATE(108), - [aux_sym__non_special_token_repeat1] = STATE(160), - [aux_sym_delim_token_tree_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(663), - [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_RPAREN] = ACTIONS(717), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(671), - [anon_sym_EQ_GT] = ACTIONS(663), - [anon_sym_COLON] = ACTIONS(673), - [anon_sym_DOLLAR] = ACTIONS(675), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_STAR] = ACTIONS(673), - [anon_sym_QMARK] = ACTIONS(663), - [anon_sym_u8] = ACTIONS(661), - [anon_sym_i8] = ACTIONS(661), - [anon_sym_u16] = ACTIONS(661), - [anon_sym_i16] = ACTIONS(661), - [anon_sym_u32] = ACTIONS(661), - [anon_sym_i32] = ACTIONS(661), - [anon_sym_u64] = ACTIONS(661), - [anon_sym_i64] = ACTIONS(661), - [anon_sym_u128] = ACTIONS(661), - [anon_sym_i128] = ACTIONS(661), - [anon_sym_isize] = ACTIONS(661), - [anon_sym_usize] = ACTIONS(661), - [anon_sym_f32] = ACTIONS(661), - [anon_sym_f64] = ACTIONS(661), - [anon_sym_bool] = ACTIONS(661), - [anon_sym_str] = ACTIONS(661), - [anon_sym_char] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_SLASH] = ACTIONS(673), - [anon_sym_PERCENT] = ACTIONS(673), - [anon_sym_CARET] = ACTIONS(673), - [anon_sym_BANG] = ACTIONS(673), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE] = ACTIONS(673), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [anon_sym_LT_LT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(673), - [anon_sym_PLUS_EQ] = ACTIONS(663), - [anon_sym_DASH_EQ] = ACTIONS(663), - [anon_sym_STAR_EQ] = ACTIONS(663), - [anon_sym_SLASH_EQ] = ACTIONS(663), - [anon_sym_PERCENT_EQ] = ACTIONS(663), - [anon_sym_CARET_EQ] = ACTIONS(663), - [anon_sym_AMP_EQ] = ACTIONS(663), - [anon_sym_PIPE_EQ] = ACTIONS(663), - [anon_sym_LT_LT_EQ] = ACTIONS(663), - [anon_sym_GT_GT_EQ] = ACTIONS(663), - [anon_sym_EQ] = ACTIONS(673), - [anon_sym_EQ_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_AT] = ACTIONS(663), - [anon_sym__] = ACTIONS(673), - [anon_sym_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_COLON_COLON] = ACTIONS(663), - [anon_sym_DASH_GT] = ACTIONS(663), - [anon_sym_POUND] = ACTIONS(663), - [anon_sym_SQUOTE] = ACTIONS(661), - [anon_sym_as] = ACTIONS(661), - [anon_sym_async] = ACTIONS(661), - [anon_sym_await] = ACTIONS(661), - [anon_sym_break] = ACTIONS(661), - [anon_sym_const] = ACTIONS(661), - [anon_sym_continue] = ACTIONS(661), - [anon_sym_default] = ACTIONS(661), - [anon_sym_enum] = ACTIONS(661), - [anon_sym_fn] = ACTIONS(661), - [anon_sym_for] = ACTIONS(661), - [anon_sym_if] = ACTIONS(661), - [anon_sym_impl] = ACTIONS(661), - [anon_sym_let] = ACTIONS(661), - [anon_sym_loop] = ACTIONS(661), - [anon_sym_match] = ACTIONS(661), - [anon_sym_mod] = ACTIONS(661), - [anon_sym_pub] = ACTIONS(661), - [anon_sym_return] = ACTIONS(661), - [anon_sym_static] = ACTIONS(661), - [anon_sym_struct] = ACTIONS(661), - [anon_sym_trait] = ACTIONS(661), - [anon_sym_type] = ACTIONS(661), - [anon_sym_union] = ACTIONS(661), - [anon_sym_unsafe] = ACTIONS(661), - [anon_sym_use] = ACTIONS(661), - [anon_sym_where] = ACTIONS(661), - [anon_sym_while] = ACTIONS(661), - [sym_mutable_specifier] = ACTIONS(661), - [sym_integer_literal] = ACTIONS(677), - [aux_sym_string_literal_token1] = ACTIONS(679), - [sym_char_literal] = ACTIONS(677), - [anon_sym_true] = ACTIONS(681), - [anon_sym_false] = ACTIONS(681), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_crate] = ACTIONS(661), - [sym__raw_string_literal_start] = ACTIONS(683), - [sym_float_literal] = ACTIONS(677), + [aux_sym__non_special_token_repeat1] = STATE(152), + [aux_sym_delim_token_tree_repeat1] = STATE(103), + [sym_identifier] = ACTIONS(686), + [anon_sym_SEMI] = ACTIONS(688), + [anon_sym_LPAREN] = ACTIONS(690), + [anon_sym_LBRACK] = ACTIONS(692), + [anon_sym_RBRACK] = ACTIONS(724), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_COMMA] = ACTIONS(688), + [anon_sym_EQ_GT] = ACTIONS(688), + [anon_sym_COLON] = ACTIONS(698), + [anon_sym_DOLLAR] = ACTIONS(700), + [anon_sym_PLUS] = ACTIONS(698), + [anon_sym_STAR] = ACTIONS(698), + [anon_sym_QMARK] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(686), + [anon_sym_i8] = ACTIONS(686), + [anon_sym_u16] = ACTIONS(686), + [anon_sym_i16] = ACTIONS(686), + [anon_sym_u32] = ACTIONS(686), + [anon_sym_i32] = ACTIONS(686), + [anon_sym_u64] = ACTIONS(686), + [anon_sym_i64] = ACTIONS(686), + [anon_sym_u128] = ACTIONS(686), + [anon_sym_i128] = ACTIONS(686), + [anon_sym_isize] = ACTIONS(686), + [anon_sym_usize] = ACTIONS(686), + [anon_sym_f32] = ACTIONS(686), + [anon_sym_f64] = ACTIONS(686), + [anon_sym_bool] = ACTIONS(686), + [anon_sym_str] = ACTIONS(686), + [anon_sym_char] = ACTIONS(686), + [anon_sym_DASH] = ACTIONS(698), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_PERCENT] = ACTIONS(698), + [anon_sym_CARET] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(698), + [anon_sym_AMP] = ACTIONS(698), + [anon_sym_PIPE] = ACTIONS(698), + [anon_sym_AMP_AMP] = ACTIONS(688), + [anon_sym_PIPE_PIPE] = ACTIONS(688), + [anon_sym_LT_LT] = ACTIONS(698), + [anon_sym_GT_GT] = ACTIONS(698), + [anon_sym_PLUS_EQ] = ACTIONS(688), + [anon_sym_DASH_EQ] = ACTIONS(688), + [anon_sym_STAR_EQ] = ACTIONS(688), + [anon_sym_SLASH_EQ] = ACTIONS(688), + [anon_sym_PERCENT_EQ] = ACTIONS(688), + [anon_sym_CARET_EQ] = ACTIONS(688), + [anon_sym_AMP_EQ] = ACTIONS(688), + [anon_sym_PIPE_EQ] = ACTIONS(688), + [anon_sym_LT_LT_EQ] = ACTIONS(688), + [anon_sym_GT_GT_EQ] = ACTIONS(688), + [anon_sym_EQ] = ACTIONS(698), + [anon_sym_EQ_EQ] = ACTIONS(688), + [anon_sym_BANG_EQ] = ACTIONS(688), + [anon_sym_GT] = ACTIONS(698), + [anon_sym_LT] = ACTIONS(698), + [anon_sym_GT_EQ] = ACTIONS(688), + [anon_sym_LT_EQ] = ACTIONS(688), + [anon_sym_AT] = ACTIONS(688), + [anon_sym__] = ACTIONS(698), + [anon_sym_DOT] = ACTIONS(698), + [anon_sym_DOT_DOT] = ACTIONS(698), + [anon_sym_DOT_DOT_DOT] = ACTIONS(688), + [anon_sym_DOT_DOT_EQ] = ACTIONS(688), + [anon_sym_COLON_COLON] = ACTIONS(688), + [anon_sym_DASH_GT] = ACTIONS(688), + [anon_sym_POUND] = ACTIONS(688), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_as] = ACTIONS(686), + [anon_sym_async] = ACTIONS(686), + [anon_sym_await] = ACTIONS(686), + [anon_sym_break] = ACTIONS(686), + [anon_sym_const] = ACTIONS(686), + [anon_sym_continue] = ACTIONS(686), + [anon_sym_default] = ACTIONS(686), + [anon_sym_enum] = ACTIONS(686), + [anon_sym_fn] = ACTIONS(686), + [anon_sym_for] = ACTIONS(686), + [anon_sym_if] = ACTIONS(686), + [anon_sym_impl] = ACTIONS(686), + [anon_sym_let] = ACTIONS(686), + [anon_sym_loop] = ACTIONS(686), + [anon_sym_match] = ACTIONS(686), + [anon_sym_mod] = ACTIONS(686), + [anon_sym_pub] = ACTIONS(686), + [anon_sym_return] = ACTIONS(686), + [anon_sym_static] = ACTIONS(686), + [anon_sym_struct] = ACTIONS(686), + [anon_sym_trait] = ACTIONS(686), + [anon_sym_type] = ACTIONS(686), + [anon_sym_union] = ACTIONS(686), + [anon_sym_unsafe] = ACTIONS(686), + [anon_sym_use] = ACTIONS(686), + [anon_sym_where] = ACTIONS(686), + [anon_sym_while] = ACTIONS(686), + [sym_mutable_specifier] = ACTIONS(686), + [sym_integer_literal] = ACTIONS(702), + [aux_sym_string_literal_token1] = ACTIONS(704), + [sym_char_literal] = ACTIONS(702), + [anon_sym_true] = ACTIONS(706), + [anon_sym_false] = ACTIONS(706), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(686), + [sym_super] = ACTIONS(686), + [sym_crate] = ACTIONS(686), + [sym__raw_string_literal_start] = ACTIONS(708), + [sym_float_literal] = ACTIONS(702), }, [109] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), + [sym_token_tree] = STATE(158), + [sym_token_repetition] = STATE(158), + [sym__literal] = STATE(158), + [sym_string_literal] = STATE(166), + [sym_raw_string_literal] = STATE(166), + [sym_boolean_literal] = STATE(166), [sym_line_comment] = STATE(109), [sym_block_comment] = STATE(109), - [aux_sym__non_special_token_repeat1] = STATE(160), - [aux_sym_delim_token_tree_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(663), - [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_RBRACK] = ACTIONS(717), - [anon_sym_LBRACE] = ACTIONS(671), - [anon_sym_EQ_GT] = ACTIONS(663), - [anon_sym_COLON] = ACTIONS(673), - [anon_sym_DOLLAR] = ACTIONS(675), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_STAR] = ACTIONS(673), - [anon_sym_QMARK] = ACTIONS(663), - [anon_sym_u8] = ACTIONS(661), - [anon_sym_i8] = ACTIONS(661), - [anon_sym_u16] = ACTIONS(661), - [anon_sym_i16] = ACTIONS(661), - [anon_sym_u32] = ACTIONS(661), - [anon_sym_i32] = ACTIONS(661), - [anon_sym_u64] = ACTIONS(661), - [anon_sym_i64] = ACTIONS(661), - [anon_sym_u128] = ACTIONS(661), - [anon_sym_i128] = ACTIONS(661), - [anon_sym_isize] = ACTIONS(661), - [anon_sym_usize] = ACTIONS(661), - [anon_sym_f32] = ACTIONS(661), - [anon_sym_f64] = ACTIONS(661), - [anon_sym_bool] = ACTIONS(661), - [anon_sym_str] = ACTIONS(661), - [anon_sym_char] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_SLASH] = ACTIONS(673), - [anon_sym_PERCENT] = ACTIONS(673), - [anon_sym_CARET] = ACTIONS(673), - [anon_sym_BANG] = ACTIONS(673), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE] = ACTIONS(673), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [anon_sym_LT_LT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(673), - [anon_sym_PLUS_EQ] = ACTIONS(663), - [anon_sym_DASH_EQ] = ACTIONS(663), - [anon_sym_STAR_EQ] = ACTIONS(663), - [anon_sym_SLASH_EQ] = ACTIONS(663), - [anon_sym_PERCENT_EQ] = ACTIONS(663), - [anon_sym_CARET_EQ] = ACTIONS(663), - [anon_sym_AMP_EQ] = ACTIONS(663), - [anon_sym_PIPE_EQ] = ACTIONS(663), - [anon_sym_LT_LT_EQ] = ACTIONS(663), - [anon_sym_GT_GT_EQ] = ACTIONS(663), - [anon_sym_EQ] = ACTIONS(673), - [anon_sym_EQ_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_AT] = ACTIONS(663), - [anon_sym__] = ACTIONS(673), - [anon_sym_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_COLON_COLON] = ACTIONS(663), - [anon_sym_DASH_GT] = ACTIONS(663), - [anon_sym_POUND] = ACTIONS(663), - [anon_sym_SQUOTE] = ACTIONS(661), - [anon_sym_as] = ACTIONS(661), - [anon_sym_async] = ACTIONS(661), - [anon_sym_await] = ACTIONS(661), - [anon_sym_break] = ACTIONS(661), - [anon_sym_const] = ACTIONS(661), - [anon_sym_continue] = ACTIONS(661), - [anon_sym_default] = ACTIONS(661), - [anon_sym_enum] = ACTIONS(661), - [anon_sym_fn] = ACTIONS(661), - [anon_sym_for] = ACTIONS(661), - [anon_sym_if] = ACTIONS(661), - [anon_sym_impl] = ACTIONS(661), - [anon_sym_let] = ACTIONS(661), - [anon_sym_loop] = ACTIONS(661), - [anon_sym_match] = ACTIONS(661), - [anon_sym_mod] = ACTIONS(661), - [anon_sym_pub] = ACTIONS(661), - [anon_sym_return] = ACTIONS(661), - [anon_sym_static] = ACTIONS(661), - [anon_sym_struct] = ACTIONS(661), - [anon_sym_trait] = ACTIONS(661), - [anon_sym_type] = ACTIONS(661), - [anon_sym_union] = ACTIONS(661), - [anon_sym_unsafe] = ACTIONS(661), - [anon_sym_use] = ACTIONS(661), - [anon_sym_where] = ACTIONS(661), - [anon_sym_while] = ACTIONS(661), - [sym_mutable_specifier] = ACTIONS(661), - [sym_integer_literal] = ACTIONS(677), - [aux_sym_string_literal_token1] = ACTIONS(679), - [sym_char_literal] = ACTIONS(677), - [anon_sym_true] = ACTIONS(681), - [anon_sym_false] = ACTIONS(681), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_crate] = ACTIONS(661), - [sym__raw_string_literal_start] = ACTIONS(683), - [sym_float_literal] = ACTIONS(677), + [aux_sym_macro_def_body_repeat1] = STATE(122), + [aux_sym__non_special_token_repeat1] = STATE(141), + [sym_identifier] = ACTIONS(670), + [anon_sym_SEMI] = ACTIONS(559), + [anon_sym_LPAREN] = ACTIONS(672), + [anon_sym_RPAREN] = ACTIONS(684), + [anon_sym_LBRACK] = ACTIONS(674), + [anon_sym_LBRACE] = ACTIONS(676), + [anon_sym_COMMA] = ACTIONS(559), + [anon_sym_EQ_GT] = ACTIONS(559), + [anon_sym_COLON] = ACTIONS(569), + [anon_sym_DOLLAR] = ACTIONS(680), + [anon_sym_PLUS] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(569), + [anon_sym_QMARK] = ACTIONS(559), + [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_DASH] = ACTIONS(569), + [anon_sym_SLASH] = ACTIONS(569), + [anon_sym_PERCENT] = ACTIONS(569), + [anon_sym_CARET] = ACTIONS(569), + [anon_sym_BANG] = ACTIONS(569), + [anon_sym_AMP] = ACTIONS(569), + [anon_sym_PIPE] = ACTIONS(569), + [anon_sym_AMP_AMP] = ACTIONS(559), + [anon_sym_PIPE_PIPE] = ACTIONS(559), + [anon_sym_LT_LT] = ACTIONS(569), + [anon_sym_GT_GT] = ACTIONS(569), + [anon_sym_PLUS_EQ] = ACTIONS(559), + [anon_sym_DASH_EQ] = ACTIONS(559), + [anon_sym_STAR_EQ] = ACTIONS(559), + [anon_sym_SLASH_EQ] = ACTIONS(559), + [anon_sym_PERCENT_EQ] = ACTIONS(559), + [anon_sym_CARET_EQ] = ACTIONS(559), + [anon_sym_AMP_EQ] = ACTIONS(559), + [anon_sym_PIPE_EQ] = ACTIONS(559), + [anon_sym_LT_LT_EQ] = ACTIONS(559), + [anon_sym_GT_GT_EQ] = ACTIONS(559), + [anon_sym_EQ] = ACTIONS(569), + [anon_sym_EQ_EQ] = ACTIONS(559), + [anon_sym_BANG_EQ] = ACTIONS(559), + [anon_sym_GT] = ACTIONS(569), + [anon_sym_LT] = ACTIONS(569), + [anon_sym_GT_EQ] = ACTIONS(559), + [anon_sym_LT_EQ] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(559), + [anon_sym__] = ACTIONS(569), + [anon_sym_DOT] = ACTIONS(569), + [anon_sym_DOT_DOT] = ACTIONS(569), + [anon_sym_DOT_DOT_DOT] = ACTIONS(559), + [anon_sym_DOT_DOT_EQ] = ACTIONS(559), + [anon_sym_COLON_COLON] = ACTIONS(559), + [anon_sym_DASH_GT] = ACTIONS(559), + [anon_sym_POUND] = ACTIONS(559), + [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(573), + [aux_sym_string_literal_token1] = ACTIONS(575), + [sym_char_literal] = ACTIONS(573), + [anon_sym_true] = ACTIONS(577), + [anon_sym_false] = ACTIONS(577), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(670), + [sym_super] = ACTIONS(670), + [sym_crate] = ACTIONS(670), + [sym_metavariable] = ACTIONS(682), + [sym__raw_string_literal_start] = ACTIONS(581), + [sym_float_literal] = ACTIONS(573), }, [110] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), + [sym_token_tree] = STATE(158), + [sym_token_repetition] = STATE(158), + [sym__literal] = STATE(158), + [sym_string_literal] = STATE(166), + [sym_raw_string_literal] = STATE(166), + [sym_boolean_literal] = STATE(166), [sym_line_comment] = STATE(110), [sym_block_comment] = STATE(110), - [aux_sym__non_special_token_repeat1] = STATE(160), - [aux_sym_delim_token_tree_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(663), - [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(671), - [anon_sym_RBRACE] = ACTIONS(717), - [anon_sym_EQ_GT] = ACTIONS(663), - [anon_sym_COLON] = ACTIONS(673), - [anon_sym_DOLLAR] = ACTIONS(675), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_STAR] = ACTIONS(673), - [anon_sym_QMARK] = ACTIONS(663), - [anon_sym_u8] = ACTIONS(661), - [anon_sym_i8] = ACTIONS(661), - [anon_sym_u16] = ACTIONS(661), - [anon_sym_i16] = ACTIONS(661), - [anon_sym_u32] = ACTIONS(661), - [anon_sym_i32] = ACTIONS(661), - [anon_sym_u64] = ACTIONS(661), - [anon_sym_i64] = ACTIONS(661), - [anon_sym_u128] = ACTIONS(661), - [anon_sym_i128] = ACTIONS(661), - [anon_sym_isize] = ACTIONS(661), - [anon_sym_usize] = ACTIONS(661), - [anon_sym_f32] = ACTIONS(661), - [anon_sym_f64] = ACTIONS(661), - [anon_sym_bool] = ACTIONS(661), - [anon_sym_str] = ACTIONS(661), - [anon_sym_char] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_SLASH] = ACTIONS(673), - [anon_sym_PERCENT] = ACTIONS(673), - [anon_sym_CARET] = ACTIONS(673), - [anon_sym_BANG] = ACTIONS(673), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE] = ACTIONS(673), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [anon_sym_LT_LT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(673), - [anon_sym_PLUS_EQ] = ACTIONS(663), - [anon_sym_DASH_EQ] = ACTIONS(663), - [anon_sym_STAR_EQ] = ACTIONS(663), - [anon_sym_SLASH_EQ] = ACTIONS(663), - [anon_sym_PERCENT_EQ] = ACTIONS(663), - [anon_sym_CARET_EQ] = ACTIONS(663), - [anon_sym_AMP_EQ] = ACTIONS(663), - [anon_sym_PIPE_EQ] = ACTIONS(663), - [anon_sym_LT_LT_EQ] = ACTIONS(663), - [anon_sym_GT_GT_EQ] = ACTIONS(663), - [anon_sym_EQ] = ACTIONS(673), - [anon_sym_EQ_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_AT] = ACTIONS(663), - [anon_sym__] = ACTIONS(673), - [anon_sym_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_COLON_COLON] = ACTIONS(663), - [anon_sym_DASH_GT] = ACTIONS(663), - [anon_sym_POUND] = ACTIONS(663), - [anon_sym_SQUOTE] = ACTIONS(661), - [anon_sym_as] = ACTIONS(661), - [anon_sym_async] = ACTIONS(661), - [anon_sym_await] = ACTIONS(661), - [anon_sym_break] = ACTIONS(661), - [anon_sym_const] = ACTIONS(661), - [anon_sym_continue] = ACTIONS(661), - [anon_sym_default] = ACTIONS(661), - [anon_sym_enum] = ACTIONS(661), - [anon_sym_fn] = ACTIONS(661), - [anon_sym_for] = ACTIONS(661), - [anon_sym_if] = ACTIONS(661), - [anon_sym_impl] = ACTIONS(661), - [anon_sym_let] = ACTIONS(661), - [anon_sym_loop] = ACTIONS(661), - [anon_sym_match] = ACTIONS(661), - [anon_sym_mod] = ACTIONS(661), - [anon_sym_pub] = ACTIONS(661), - [anon_sym_return] = ACTIONS(661), - [anon_sym_static] = ACTIONS(661), - [anon_sym_struct] = ACTIONS(661), - [anon_sym_trait] = ACTIONS(661), - [anon_sym_type] = ACTIONS(661), - [anon_sym_union] = ACTIONS(661), - [anon_sym_unsafe] = ACTIONS(661), - [anon_sym_use] = ACTIONS(661), - [anon_sym_where] = ACTIONS(661), - [anon_sym_while] = ACTIONS(661), - [sym_mutable_specifier] = ACTIONS(661), - [sym_integer_literal] = ACTIONS(677), - [aux_sym_string_literal_token1] = ACTIONS(679), - [sym_char_literal] = ACTIONS(677), - [anon_sym_true] = ACTIONS(681), - [anon_sym_false] = ACTIONS(681), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_crate] = ACTIONS(661), - [sym__raw_string_literal_start] = ACTIONS(683), - [sym_float_literal] = ACTIONS(677), + [aux_sym_macro_def_body_repeat1] = STATE(85), + [aux_sym__non_special_token_repeat1] = STATE(141), + [sym_identifier] = ACTIONS(670), + [anon_sym_SEMI] = ACTIONS(559), + [anon_sym_LPAREN] = ACTIONS(672), + [anon_sym_LBRACK] = ACTIONS(674), + [anon_sym_RBRACK] = ACTIONS(726), + [anon_sym_LBRACE] = ACTIONS(676), + [anon_sym_COMMA] = ACTIONS(559), + [anon_sym_EQ_GT] = ACTIONS(559), + [anon_sym_COLON] = ACTIONS(569), + [anon_sym_DOLLAR] = ACTIONS(680), + [anon_sym_PLUS] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(569), + [anon_sym_QMARK] = ACTIONS(559), + [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_DASH] = ACTIONS(569), + [anon_sym_SLASH] = ACTIONS(569), + [anon_sym_PERCENT] = ACTIONS(569), + [anon_sym_CARET] = ACTIONS(569), + [anon_sym_BANG] = ACTIONS(569), + [anon_sym_AMP] = ACTIONS(569), + [anon_sym_PIPE] = ACTIONS(569), + [anon_sym_AMP_AMP] = ACTIONS(559), + [anon_sym_PIPE_PIPE] = ACTIONS(559), + [anon_sym_LT_LT] = ACTIONS(569), + [anon_sym_GT_GT] = ACTIONS(569), + [anon_sym_PLUS_EQ] = ACTIONS(559), + [anon_sym_DASH_EQ] = ACTIONS(559), + [anon_sym_STAR_EQ] = ACTIONS(559), + [anon_sym_SLASH_EQ] = ACTIONS(559), + [anon_sym_PERCENT_EQ] = ACTIONS(559), + [anon_sym_CARET_EQ] = ACTIONS(559), + [anon_sym_AMP_EQ] = ACTIONS(559), + [anon_sym_PIPE_EQ] = ACTIONS(559), + [anon_sym_LT_LT_EQ] = ACTIONS(559), + [anon_sym_GT_GT_EQ] = ACTIONS(559), + [anon_sym_EQ] = ACTIONS(569), + [anon_sym_EQ_EQ] = ACTIONS(559), + [anon_sym_BANG_EQ] = ACTIONS(559), + [anon_sym_GT] = ACTIONS(569), + [anon_sym_LT] = ACTIONS(569), + [anon_sym_GT_EQ] = ACTIONS(559), + [anon_sym_LT_EQ] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(559), + [anon_sym__] = ACTIONS(569), + [anon_sym_DOT] = ACTIONS(569), + [anon_sym_DOT_DOT] = ACTIONS(569), + [anon_sym_DOT_DOT_DOT] = ACTIONS(559), + [anon_sym_DOT_DOT_EQ] = ACTIONS(559), + [anon_sym_COLON_COLON] = ACTIONS(559), + [anon_sym_DASH_GT] = ACTIONS(559), + [anon_sym_POUND] = ACTIONS(559), + [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(573), + [aux_sym_string_literal_token1] = ACTIONS(575), + [sym_char_literal] = ACTIONS(573), + [anon_sym_true] = ACTIONS(577), + [anon_sym_false] = ACTIONS(577), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(670), + [sym_super] = ACTIONS(670), + [sym_crate] = ACTIONS(670), + [sym_metavariable] = ACTIONS(682), + [sym__raw_string_literal_start] = ACTIONS(581), + [sym_float_literal] = ACTIONS(573), }, [111] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), + [sym_delim_token_tree] = STATE(201), + [sym__delim_tokens] = STATE(198), + [sym__non_delim_token] = STATE(201), + [sym__literal] = STATE(205), + [sym_string_literal] = STATE(214), + [sym_raw_string_literal] = STATE(214), + [sym_boolean_literal] = STATE(214), [sym_line_comment] = STATE(111), [sym_block_comment] = STATE(111), - [aux_sym__non_special_token_repeat1] = STATE(160), - [aux_sym_delim_token_tree_repeat1] = STATE(114), - [sym_identifier] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(663), - [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_RPAREN] = ACTIONS(719), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(671), - [anon_sym_EQ_GT] = ACTIONS(663), - [anon_sym_COLON] = ACTIONS(673), - [anon_sym_DOLLAR] = ACTIONS(675), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_STAR] = ACTIONS(673), - [anon_sym_QMARK] = ACTIONS(663), - [anon_sym_u8] = ACTIONS(661), - [anon_sym_i8] = ACTIONS(661), - [anon_sym_u16] = ACTIONS(661), - [anon_sym_i16] = ACTIONS(661), - [anon_sym_u32] = ACTIONS(661), - [anon_sym_i32] = ACTIONS(661), - [anon_sym_u64] = ACTIONS(661), - [anon_sym_i64] = ACTIONS(661), - [anon_sym_u128] = ACTIONS(661), - [anon_sym_i128] = ACTIONS(661), - [anon_sym_isize] = ACTIONS(661), - [anon_sym_usize] = ACTIONS(661), - [anon_sym_f32] = ACTIONS(661), - [anon_sym_f64] = ACTIONS(661), - [anon_sym_bool] = ACTIONS(661), - [anon_sym_str] = ACTIONS(661), - [anon_sym_char] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_SLASH] = ACTIONS(673), - [anon_sym_PERCENT] = ACTIONS(673), - [anon_sym_CARET] = ACTIONS(673), - [anon_sym_BANG] = ACTIONS(673), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE] = ACTIONS(673), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [anon_sym_LT_LT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(673), - [anon_sym_PLUS_EQ] = ACTIONS(663), - [anon_sym_DASH_EQ] = ACTIONS(663), - [anon_sym_STAR_EQ] = ACTIONS(663), - [anon_sym_SLASH_EQ] = ACTIONS(663), - [anon_sym_PERCENT_EQ] = ACTIONS(663), - [anon_sym_CARET_EQ] = ACTIONS(663), - [anon_sym_AMP_EQ] = ACTIONS(663), - [anon_sym_PIPE_EQ] = ACTIONS(663), - [anon_sym_LT_LT_EQ] = ACTIONS(663), - [anon_sym_GT_GT_EQ] = ACTIONS(663), - [anon_sym_EQ] = ACTIONS(673), - [anon_sym_EQ_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_AT] = ACTIONS(663), - [anon_sym__] = ACTIONS(673), - [anon_sym_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_COLON_COLON] = ACTIONS(663), - [anon_sym_DASH_GT] = ACTIONS(663), - [anon_sym_POUND] = ACTIONS(663), - [anon_sym_SQUOTE] = ACTIONS(661), - [anon_sym_as] = ACTIONS(661), - [anon_sym_async] = ACTIONS(661), - [anon_sym_await] = ACTIONS(661), - [anon_sym_break] = ACTIONS(661), - [anon_sym_const] = ACTIONS(661), - [anon_sym_continue] = ACTIONS(661), - [anon_sym_default] = ACTIONS(661), - [anon_sym_enum] = ACTIONS(661), - [anon_sym_fn] = ACTIONS(661), - [anon_sym_for] = ACTIONS(661), - [anon_sym_if] = ACTIONS(661), - [anon_sym_impl] = ACTIONS(661), - [anon_sym_let] = ACTIONS(661), - [anon_sym_loop] = ACTIONS(661), - [anon_sym_match] = ACTIONS(661), - [anon_sym_mod] = ACTIONS(661), - [anon_sym_pub] = ACTIONS(661), - [anon_sym_return] = ACTIONS(661), - [anon_sym_static] = ACTIONS(661), - [anon_sym_struct] = ACTIONS(661), - [anon_sym_trait] = ACTIONS(661), - [anon_sym_type] = ACTIONS(661), - [anon_sym_union] = ACTIONS(661), - [anon_sym_unsafe] = ACTIONS(661), - [anon_sym_use] = ACTIONS(661), - [anon_sym_where] = ACTIONS(661), - [anon_sym_while] = ACTIONS(661), - [sym_mutable_specifier] = ACTIONS(661), - [sym_integer_literal] = ACTIONS(677), - [aux_sym_string_literal_token1] = ACTIONS(679), - [sym_char_literal] = ACTIONS(677), - [anon_sym_true] = ACTIONS(681), - [anon_sym_false] = ACTIONS(681), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_crate] = ACTIONS(661), - [sym__raw_string_literal_start] = ACTIONS(683), - [sym_float_literal] = ACTIONS(677), + [aux_sym__non_special_token_repeat1] = STATE(152), + [aux_sym_delim_token_tree_repeat1] = STATE(97), + [sym_identifier] = ACTIONS(686), + [anon_sym_SEMI] = ACTIONS(688), + [anon_sym_LPAREN] = ACTIONS(690), + [anon_sym_LBRACK] = ACTIONS(692), + [anon_sym_RBRACK] = ACTIONS(722), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_COMMA] = ACTIONS(688), + [anon_sym_EQ_GT] = ACTIONS(688), + [anon_sym_COLON] = ACTIONS(698), + [anon_sym_DOLLAR] = ACTIONS(700), + [anon_sym_PLUS] = ACTIONS(698), + [anon_sym_STAR] = ACTIONS(698), + [anon_sym_QMARK] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(686), + [anon_sym_i8] = ACTIONS(686), + [anon_sym_u16] = ACTIONS(686), + [anon_sym_i16] = ACTIONS(686), + [anon_sym_u32] = ACTIONS(686), + [anon_sym_i32] = ACTIONS(686), + [anon_sym_u64] = ACTIONS(686), + [anon_sym_i64] = ACTIONS(686), + [anon_sym_u128] = ACTIONS(686), + [anon_sym_i128] = ACTIONS(686), + [anon_sym_isize] = ACTIONS(686), + [anon_sym_usize] = ACTIONS(686), + [anon_sym_f32] = ACTIONS(686), + [anon_sym_f64] = ACTIONS(686), + [anon_sym_bool] = ACTIONS(686), + [anon_sym_str] = ACTIONS(686), + [anon_sym_char] = ACTIONS(686), + [anon_sym_DASH] = ACTIONS(698), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_PERCENT] = ACTIONS(698), + [anon_sym_CARET] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(698), + [anon_sym_AMP] = ACTIONS(698), + [anon_sym_PIPE] = ACTIONS(698), + [anon_sym_AMP_AMP] = ACTIONS(688), + [anon_sym_PIPE_PIPE] = ACTIONS(688), + [anon_sym_LT_LT] = ACTIONS(698), + [anon_sym_GT_GT] = ACTIONS(698), + [anon_sym_PLUS_EQ] = ACTIONS(688), + [anon_sym_DASH_EQ] = ACTIONS(688), + [anon_sym_STAR_EQ] = ACTIONS(688), + [anon_sym_SLASH_EQ] = ACTIONS(688), + [anon_sym_PERCENT_EQ] = ACTIONS(688), + [anon_sym_CARET_EQ] = ACTIONS(688), + [anon_sym_AMP_EQ] = ACTIONS(688), + [anon_sym_PIPE_EQ] = ACTIONS(688), + [anon_sym_LT_LT_EQ] = ACTIONS(688), + [anon_sym_GT_GT_EQ] = ACTIONS(688), + [anon_sym_EQ] = ACTIONS(698), + [anon_sym_EQ_EQ] = ACTIONS(688), + [anon_sym_BANG_EQ] = ACTIONS(688), + [anon_sym_GT] = ACTIONS(698), + [anon_sym_LT] = ACTIONS(698), + [anon_sym_GT_EQ] = ACTIONS(688), + [anon_sym_LT_EQ] = ACTIONS(688), + [anon_sym_AT] = ACTIONS(688), + [anon_sym__] = ACTIONS(698), + [anon_sym_DOT] = ACTIONS(698), + [anon_sym_DOT_DOT] = ACTIONS(698), + [anon_sym_DOT_DOT_DOT] = ACTIONS(688), + [anon_sym_DOT_DOT_EQ] = ACTIONS(688), + [anon_sym_COLON_COLON] = ACTIONS(688), + [anon_sym_DASH_GT] = ACTIONS(688), + [anon_sym_POUND] = ACTIONS(688), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_as] = ACTIONS(686), + [anon_sym_async] = ACTIONS(686), + [anon_sym_await] = ACTIONS(686), + [anon_sym_break] = ACTIONS(686), + [anon_sym_const] = ACTIONS(686), + [anon_sym_continue] = ACTIONS(686), + [anon_sym_default] = ACTIONS(686), + [anon_sym_enum] = ACTIONS(686), + [anon_sym_fn] = ACTIONS(686), + [anon_sym_for] = ACTIONS(686), + [anon_sym_if] = ACTIONS(686), + [anon_sym_impl] = ACTIONS(686), + [anon_sym_let] = ACTIONS(686), + [anon_sym_loop] = ACTIONS(686), + [anon_sym_match] = ACTIONS(686), + [anon_sym_mod] = ACTIONS(686), + [anon_sym_pub] = ACTIONS(686), + [anon_sym_return] = ACTIONS(686), + [anon_sym_static] = ACTIONS(686), + [anon_sym_struct] = ACTIONS(686), + [anon_sym_trait] = ACTIONS(686), + [anon_sym_type] = ACTIONS(686), + [anon_sym_union] = ACTIONS(686), + [anon_sym_unsafe] = ACTIONS(686), + [anon_sym_use] = ACTIONS(686), + [anon_sym_where] = ACTIONS(686), + [anon_sym_while] = ACTIONS(686), + [sym_mutable_specifier] = ACTIONS(686), + [sym_integer_literal] = ACTIONS(702), + [aux_sym_string_literal_token1] = ACTIONS(704), + [sym_char_literal] = ACTIONS(702), + [anon_sym_true] = ACTIONS(706), + [anon_sym_false] = ACTIONS(706), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(686), + [sym_super] = ACTIONS(686), + [sym_crate] = ACTIONS(686), + [sym__raw_string_literal_start] = ACTIONS(708), + [sym_float_literal] = ACTIONS(702), }, [112] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), + [sym_delim_token_tree] = STATE(201), + [sym__delim_tokens] = STATE(198), + [sym__non_delim_token] = STATE(201), + [sym__literal] = STATE(205), + [sym_string_literal] = STATE(214), + [sym_raw_string_literal] = STATE(214), + [sym_boolean_literal] = STATE(214), [sym_line_comment] = STATE(112), [sym_block_comment] = STATE(112), - [aux_sym__non_special_token_repeat1] = STATE(160), - [aux_sym_delim_token_tree_repeat1] = STATE(115), - [sym_identifier] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(663), - [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_RBRACK] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(671), - [anon_sym_EQ_GT] = ACTIONS(663), - [anon_sym_COLON] = ACTIONS(673), - [anon_sym_DOLLAR] = ACTIONS(675), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_STAR] = ACTIONS(673), - [anon_sym_QMARK] = ACTIONS(663), - [anon_sym_u8] = ACTIONS(661), - [anon_sym_i8] = ACTIONS(661), - [anon_sym_u16] = ACTIONS(661), - [anon_sym_i16] = ACTIONS(661), - [anon_sym_u32] = ACTIONS(661), - [anon_sym_i32] = ACTIONS(661), - [anon_sym_u64] = ACTIONS(661), - [anon_sym_i64] = ACTIONS(661), - [anon_sym_u128] = ACTIONS(661), - [anon_sym_i128] = ACTIONS(661), - [anon_sym_isize] = ACTIONS(661), - [anon_sym_usize] = ACTIONS(661), - [anon_sym_f32] = ACTIONS(661), - [anon_sym_f64] = ACTIONS(661), - [anon_sym_bool] = ACTIONS(661), - [anon_sym_str] = ACTIONS(661), - [anon_sym_char] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_SLASH] = ACTIONS(673), - [anon_sym_PERCENT] = ACTIONS(673), - [anon_sym_CARET] = ACTIONS(673), - [anon_sym_BANG] = ACTIONS(673), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE] = ACTIONS(673), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [anon_sym_LT_LT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(673), - [anon_sym_PLUS_EQ] = ACTIONS(663), - [anon_sym_DASH_EQ] = ACTIONS(663), - [anon_sym_STAR_EQ] = ACTIONS(663), - [anon_sym_SLASH_EQ] = ACTIONS(663), - [anon_sym_PERCENT_EQ] = ACTIONS(663), - [anon_sym_CARET_EQ] = ACTIONS(663), - [anon_sym_AMP_EQ] = ACTIONS(663), - [anon_sym_PIPE_EQ] = ACTIONS(663), - [anon_sym_LT_LT_EQ] = ACTIONS(663), - [anon_sym_GT_GT_EQ] = ACTIONS(663), - [anon_sym_EQ] = ACTIONS(673), - [anon_sym_EQ_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_AT] = ACTIONS(663), - [anon_sym__] = ACTIONS(673), - [anon_sym_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_COLON_COLON] = ACTIONS(663), - [anon_sym_DASH_GT] = ACTIONS(663), - [anon_sym_POUND] = ACTIONS(663), - [anon_sym_SQUOTE] = ACTIONS(661), - [anon_sym_as] = ACTIONS(661), - [anon_sym_async] = ACTIONS(661), - [anon_sym_await] = ACTIONS(661), - [anon_sym_break] = ACTIONS(661), - [anon_sym_const] = ACTIONS(661), - [anon_sym_continue] = ACTIONS(661), - [anon_sym_default] = ACTIONS(661), - [anon_sym_enum] = ACTIONS(661), - [anon_sym_fn] = ACTIONS(661), - [anon_sym_for] = ACTIONS(661), - [anon_sym_if] = ACTIONS(661), - [anon_sym_impl] = ACTIONS(661), - [anon_sym_let] = ACTIONS(661), - [anon_sym_loop] = ACTIONS(661), - [anon_sym_match] = ACTIONS(661), - [anon_sym_mod] = ACTIONS(661), - [anon_sym_pub] = ACTIONS(661), - [anon_sym_return] = ACTIONS(661), - [anon_sym_static] = ACTIONS(661), - [anon_sym_struct] = ACTIONS(661), - [anon_sym_trait] = ACTIONS(661), - [anon_sym_type] = ACTIONS(661), - [anon_sym_union] = ACTIONS(661), - [anon_sym_unsafe] = ACTIONS(661), - [anon_sym_use] = ACTIONS(661), - [anon_sym_where] = ACTIONS(661), - [anon_sym_while] = ACTIONS(661), - [sym_mutable_specifier] = ACTIONS(661), - [sym_integer_literal] = ACTIONS(677), - [aux_sym_string_literal_token1] = ACTIONS(679), - [sym_char_literal] = ACTIONS(677), - [anon_sym_true] = ACTIONS(681), - [anon_sym_false] = ACTIONS(681), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_crate] = ACTIONS(661), - [sym__raw_string_literal_start] = ACTIONS(683), - [sym_float_literal] = ACTIONS(677), + [aux_sym__non_special_token_repeat1] = STATE(152), + [aux_sym_delim_token_tree_repeat1] = STATE(100), + [sym_identifier] = ACTIONS(686), + [anon_sym_SEMI] = ACTIONS(688), + [anon_sym_LPAREN] = ACTIONS(690), + [anon_sym_RPAREN] = ACTIONS(722), + [anon_sym_LBRACK] = ACTIONS(692), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_COMMA] = ACTIONS(688), + [anon_sym_EQ_GT] = ACTIONS(688), + [anon_sym_COLON] = ACTIONS(698), + [anon_sym_DOLLAR] = ACTIONS(700), + [anon_sym_PLUS] = ACTIONS(698), + [anon_sym_STAR] = ACTIONS(698), + [anon_sym_QMARK] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(686), + [anon_sym_i8] = ACTIONS(686), + [anon_sym_u16] = ACTIONS(686), + [anon_sym_i16] = ACTIONS(686), + [anon_sym_u32] = ACTIONS(686), + [anon_sym_i32] = ACTIONS(686), + [anon_sym_u64] = ACTIONS(686), + [anon_sym_i64] = ACTIONS(686), + [anon_sym_u128] = ACTIONS(686), + [anon_sym_i128] = ACTIONS(686), + [anon_sym_isize] = ACTIONS(686), + [anon_sym_usize] = ACTIONS(686), + [anon_sym_f32] = ACTIONS(686), + [anon_sym_f64] = ACTIONS(686), + [anon_sym_bool] = ACTIONS(686), + [anon_sym_str] = ACTIONS(686), + [anon_sym_char] = ACTIONS(686), + [anon_sym_DASH] = ACTIONS(698), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_PERCENT] = ACTIONS(698), + [anon_sym_CARET] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(698), + [anon_sym_AMP] = ACTIONS(698), + [anon_sym_PIPE] = ACTIONS(698), + [anon_sym_AMP_AMP] = ACTIONS(688), + [anon_sym_PIPE_PIPE] = ACTIONS(688), + [anon_sym_LT_LT] = ACTIONS(698), + [anon_sym_GT_GT] = ACTIONS(698), + [anon_sym_PLUS_EQ] = ACTIONS(688), + [anon_sym_DASH_EQ] = ACTIONS(688), + [anon_sym_STAR_EQ] = ACTIONS(688), + [anon_sym_SLASH_EQ] = ACTIONS(688), + [anon_sym_PERCENT_EQ] = ACTIONS(688), + [anon_sym_CARET_EQ] = ACTIONS(688), + [anon_sym_AMP_EQ] = ACTIONS(688), + [anon_sym_PIPE_EQ] = ACTIONS(688), + [anon_sym_LT_LT_EQ] = ACTIONS(688), + [anon_sym_GT_GT_EQ] = ACTIONS(688), + [anon_sym_EQ] = ACTIONS(698), + [anon_sym_EQ_EQ] = ACTIONS(688), + [anon_sym_BANG_EQ] = ACTIONS(688), + [anon_sym_GT] = ACTIONS(698), + [anon_sym_LT] = ACTIONS(698), + [anon_sym_GT_EQ] = ACTIONS(688), + [anon_sym_LT_EQ] = ACTIONS(688), + [anon_sym_AT] = ACTIONS(688), + [anon_sym__] = ACTIONS(698), + [anon_sym_DOT] = ACTIONS(698), + [anon_sym_DOT_DOT] = ACTIONS(698), + [anon_sym_DOT_DOT_DOT] = ACTIONS(688), + [anon_sym_DOT_DOT_EQ] = ACTIONS(688), + [anon_sym_COLON_COLON] = ACTIONS(688), + [anon_sym_DASH_GT] = ACTIONS(688), + [anon_sym_POUND] = ACTIONS(688), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_as] = ACTIONS(686), + [anon_sym_async] = ACTIONS(686), + [anon_sym_await] = ACTIONS(686), + [anon_sym_break] = ACTIONS(686), + [anon_sym_const] = ACTIONS(686), + [anon_sym_continue] = ACTIONS(686), + [anon_sym_default] = ACTIONS(686), + [anon_sym_enum] = ACTIONS(686), + [anon_sym_fn] = ACTIONS(686), + [anon_sym_for] = ACTIONS(686), + [anon_sym_if] = ACTIONS(686), + [anon_sym_impl] = ACTIONS(686), + [anon_sym_let] = ACTIONS(686), + [anon_sym_loop] = ACTIONS(686), + [anon_sym_match] = ACTIONS(686), + [anon_sym_mod] = ACTIONS(686), + [anon_sym_pub] = ACTIONS(686), + [anon_sym_return] = ACTIONS(686), + [anon_sym_static] = ACTIONS(686), + [anon_sym_struct] = ACTIONS(686), + [anon_sym_trait] = ACTIONS(686), + [anon_sym_type] = ACTIONS(686), + [anon_sym_union] = ACTIONS(686), + [anon_sym_unsafe] = ACTIONS(686), + [anon_sym_use] = ACTIONS(686), + [anon_sym_where] = ACTIONS(686), + [anon_sym_while] = ACTIONS(686), + [sym_mutable_specifier] = ACTIONS(686), + [sym_integer_literal] = ACTIONS(702), + [aux_sym_string_literal_token1] = ACTIONS(704), + [sym_char_literal] = ACTIONS(702), + [anon_sym_true] = ACTIONS(706), + [anon_sym_false] = ACTIONS(706), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(686), + [sym_super] = ACTIONS(686), + [sym_crate] = ACTIONS(686), + [sym__raw_string_literal_start] = ACTIONS(708), + [sym_float_literal] = ACTIONS(702), }, [113] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), + [sym_delim_token_tree] = STATE(201), + [sym__delim_tokens] = STATE(198), + [sym__non_delim_token] = STATE(201), + [sym__literal] = STATE(205), + [sym_string_literal] = STATE(214), + [sym_raw_string_literal] = STATE(214), + [sym_boolean_literal] = STATE(214), [sym_line_comment] = STATE(113), [sym_block_comment] = STATE(113), - [aux_sym__non_special_token_repeat1] = STATE(160), - [aux_sym_delim_token_tree_repeat1] = STATE(116), - [sym_identifier] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(663), - [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(671), - [anon_sym_RBRACE] = ACTIONS(719), - [anon_sym_EQ_GT] = ACTIONS(663), - [anon_sym_COLON] = ACTIONS(673), - [anon_sym_DOLLAR] = ACTIONS(675), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_STAR] = ACTIONS(673), - [anon_sym_QMARK] = ACTIONS(663), - [anon_sym_u8] = ACTIONS(661), - [anon_sym_i8] = ACTIONS(661), - [anon_sym_u16] = ACTIONS(661), - [anon_sym_i16] = ACTIONS(661), - [anon_sym_u32] = ACTIONS(661), - [anon_sym_i32] = ACTIONS(661), - [anon_sym_u64] = ACTIONS(661), - [anon_sym_i64] = ACTIONS(661), - [anon_sym_u128] = ACTIONS(661), - [anon_sym_i128] = ACTIONS(661), - [anon_sym_isize] = ACTIONS(661), - [anon_sym_usize] = ACTIONS(661), - [anon_sym_f32] = ACTIONS(661), - [anon_sym_f64] = ACTIONS(661), - [anon_sym_bool] = ACTIONS(661), - [anon_sym_str] = ACTIONS(661), - [anon_sym_char] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_SLASH] = ACTIONS(673), - [anon_sym_PERCENT] = ACTIONS(673), - [anon_sym_CARET] = ACTIONS(673), - [anon_sym_BANG] = ACTIONS(673), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE] = ACTIONS(673), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [anon_sym_LT_LT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(673), - [anon_sym_PLUS_EQ] = ACTIONS(663), - [anon_sym_DASH_EQ] = ACTIONS(663), - [anon_sym_STAR_EQ] = ACTIONS(663), - [anon_sym_SLASH_EQ] = ACTIONS(663), - [anon_sym_PERCENT_EQ] = ACTIONS(663), - [anon_sym_CARET_EQ] = ACTIONS(663), - [anon_sym_AMP_EQ] = ACTIONS(663), - [anon_sym_PIPE_EQ] = ACTIONS(663), - [anon_sym_LT_LT_EQ] = ACTIONS(663), - [anon_sym_GT_GT_EQ] = ACTIONS(663), - [anon_sym_EQ] = ACTIONS(673), - [anon_sym_EQ_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_AT] = ACTIONS(663), - [anon_sym__] = ACTIONS(673), - [anon_sym_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_COLON_COLON] = ACTIONS(663), - [anon_sym_DASH_GT] = ACTIONS(663), - [anon_sym_POUND] = ACTIONS(663), - [anon_sym_SQUOTE] = ACTIONS(661), - [anon_sym_as] = ACTIONS(661), - [anon_sym_async] = ACTIONS(661), - [anon_sym_await] = ACTIONS(661), - [anon_sym_break] = ACTIONS(661), - [anon_sym_const] = ACTIONS(661), - [anon_sym_continue] = ACTIONS(661), - [anon_sym_default] = ACTIONS(661), - [anon_sym_enum] = ACTIONS(661), - [anon_sym_fn] = ACTIONS(661), - [anon_sym_for] = ACTIONS(661), - [anon_sym_if] = ACTIONS(661), - [anon_sym_impl] = ACTIONS(661), - [anon_sym_let] = ACTIONS(661), - [anon_sym_loop] = ACTIONS(661), - [anon_sym_match] = ACTIONS(661), - [anon_sym_mod] = ACTIONS(661), - [anon_sym_pub] = ACTIONS(661), - [anon_sym_return] = ACTIONS(661), - [anon_sym_static] = ACTIONS(661), - [anon_sym_struct] = ACTIONS(661), - [anon_sym_trait] = ACTIONS(661), - [anon_sym_type] = ACTIONS(661), - [anon_sym_union] = ACTIONS(661), - [anon_sym_unsafe] = ACTIONS(661), - [anon_sym_use] = ACTIONS(661), - [anon_sym_where] = ACTIONS(661), - [anon_sym_while] = ACTIONS(661), - [sym_mutable_specifier] = ACTIONS(661), - [sym_integer_literal] = ACTIONS(677), - [aux_sym_string_literal_token1] = ACTIONS(679), - [sym_char_literal] = ACTIONS(677), - [anon_sym_true] = ACTIONS(681), - [anon_sym_false] = ACTIONS(681), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_crate] = ACTIONS(661), - [sym__raw_string_literal_start] = ACTIONS(683), - [sym_float_literal] = ACTIONS(677), + [aux_sym__non_special_token_repeat1] = STATE(152), + [aux_sym_delim_token_tree_repeat1] = STATE(120), + [sym_identifier] = ACTIONS(686), + [anon_sym_SEMI] = ACTIONS(688), + [anon_sym_LPAREN] = ACTIONS(690), + [anon_sym_LBRACK] = ACTIONS(692), + [anon_sym_RBRACK] = ACTIONS(728), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_COMMA] = ACTIONS(688), + [anon_sym_EQ_GT] = ACTIONS(688), + [anon_sym_COLON] = ACTIONS(698), + [anon_sym_DOLLAR] = ACTIONS(700), + [anon_sym_PLUS] = ACTIONS(698), + [anon_sym_STAR] = ACTIONS(698), + [anon_sym_QMARK] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(686), + [anon_sym_i8] = ACTIONS(686), + [anon_sym_u16] = ACTIONS(686), + [anon_sym_i16] = ACTIONS(686), + [anon_sym_u32] = ACTIONS(686), + [anon_sym_i32] = ACTIONS(686), + [anon_sym_u64] = ACTIONS(686), + [anon_sym_i64] = ACTIONS(686), + [anon_sym_u128] = ACTIONS(686), + [anon_sym_i128] = ACTIONS(686), + [anon_sym_isize] = ACTIONS(686), + [anon_sym_usize] = ACTIONS(686), + [anon_sym_f32] = ACTIONS(686), + [anon_sym_f64] = ACTIONS(686), + [anon_sym_bool] = ACTIONS(686), + [anon_sym_str] = ACTIONS(686), + [anon_sym_char] = ACTIONS(686), + [anon_sym_DASH] = ACTIONS(698), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_PERCENT] = ACTIONS(698), + [anon_sym_CARET] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(698), + [anon_sym_AMP] = ACTIONS(698), + [anon_sym_PIPE] = ACTIONS(698), + [anon_sym_AMP_AMP] = ACTIONS(688), + [anon_sym_PIPE_PIPE] = ACTIONS(688), + [anon_sym_LT_LT] = ACTIONS(698), + [anon_sym_GT_GT] = ACTIONS(698), + [anon_sym_PLUS_EQ] = ACTIONS(688), + [anon_sym_DASH_EQ] = ACTIONS(688), + [anon_sym_STAR_EQ] = ACTIONS(688), + [anon_sym_SLASH_EQ] = ACTIONS(688), + [anon_sym_PERCENT_EQ] = ACTIONS(688), + [anon_sym_CARET_EQ] = ACTIONS(688), + [anon_sym_AMP_EQ] = ACTIONS(688), + [anon_sym_PIPE_EQ] = ACTIONS(688), + [anon_sym_LT_LT_EQ] = ACTIONS(688), + [anon_sym_GT_GT_EQ] = ACTIONS(688), + [anon_sym_EQ] = ACTIONS(698), + [anon_sym_EQ_EQ] = ACTIONS(688), + [anon_sym_BANG_EQ] = ACTIONS(688), + [anon_sym_GT] = ACTIONS(698), + [anon_sym_LT] = ACTIONS(698), + [anon_sym_GT_EQ] = ACTIONS(688), + [anon_sym_LT_EQ] = ACTIONS(688), + [anon_sym_AT] = ACTIONS(688), + [anon_sym__] = ACTIONS(698), + [anon_sym_DOT] = ACTIONS(698), + [anon_sym_DOT_DOT] = ACTIONS(698), + [anon_sym_DOT_DOT_DOT] = ACTIONS(688), + [anon_sym_DOT_DOT_EQ] = ACTIONS(688), + [anon_sym_COLON_COLON] = ACTIONS(688), + [anon_sym_DASH_GT] = ACTIONS(688), + [anon_sym_POUND] = ACTIONS(688), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_as] = ACTIONS(686), + [anon_sym_async] = ACTIONS(686), + [anon_sym_await] = ACTIONS(686), + [anon_sym_break] = ACTIONS(686), + [anon_sym_const] = ACTIONS(686), + [anon_sym_continue] = ACTIONS(686), + [anon_sym_default] = ACTIONS(686), + [anon_sym_enum] = ACTIONS(686), + [anon_sym_fn] = ACTIONS(686), + [anon_sym_for] = ACTIONS(686), + [anon_sym_if] = ACTIONS(686), + [anon_sym_impl] = ACTIONS(686), + [anon_sym_let] = ACTIONS(686), + [anon_sym_loop] = ACTIONS(686), + [anon_sym_match] = ACTIONS(686), + [anon_sym_mod] = ACTIONS(686), + [anon_sym_pub] = ACTIONS(686), + [anon_sym_return] = ACTIONS(686), + [anon_sym_static] = ACTIONS(686), + [anon_sym_struct] = ACTIONS(686), + [anon_sym_trait] = ACTIONS(686), + [anon_sym_type] = ACTIONS(686), + [anon_sym_union] = ACTIONS(686), + [anon_sym_unsafe] = ACTIONS(686), + [anon_sym_use] = ACTIONS(686), + [anon_sym_where] = ACTIONS(686), + [anon_sym_while] = ACTIONS(686), + [sym_mutable_specifier] = ACTIONS(686), + [sym_integer_literal] = ACTIONS(702), + [aux_sym_string_literal_token1] = ACTIONS(704), + [sym_char_literal] = ACTIONS(702), + [anon_sym_true] = ACTIONS(706), + [anon_sym_false] = ACTIONS(706), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(686), + [sym_super] = ACTIONS(686), + [sym_crate] = ACTIONS(686), + [sym__raw_string_literal_start] = ACTIONS(708), + [sym_float_literal] = ACTIONS(702), }, [114] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), + [sym_delim_token_tree] = STATE(201), + [sym__delim_tokens] = STATE(198), + [sym__non_delim_token] = STATE(201), + [sym__literal] = STATE(205), + [sym_string_literal] = STATE(214), + [sym_raw_string_literal] = STATE(214), + [sym_boolean_literal] = STATE(214), [sym_line_comment] = STATE(114), [sym_block_comment] = STATE(114), - [aux_sym__non_special_token_repeat1] = STATE(160), - [aux_sym_delim_token_tree_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(663), - [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_RPAREN] = ACTIONS(721), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(671), - [anon_sym_EQ_GT] = ACTIONS(663), - [anon_sym_COLON] = ACTIONS(673), - [anon_sym_DOLLAR] = ACTIONS(675), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_STAR] = ACTIONS(673), - [anon_sym_QMARK] = ACTIONS(663), - [anon_sym_u8] = ACTIONS(661), - [anon_sym_i8] = ACTIONS(661), - [anon_sym_u16] = ACTIONS(661), - [anon_sym_i16] = ACTIONS(661), - [anon_sym_u32] = ACTIONS(661), - [anon_sym_i32] = ACTIONS(661), - [anon_sym_u64] = ACTIONS(661), - [anon_sym_i64] = ACTIONS(661), - [anon_sym_u128] = ACTIONS(661), - [anon_sym_i128] = ACTIONS(661), - [anon_sym_isize] = ACTIONS(661), - [anon_sym_usize] = ACTIONS(661), - [anon_sym_f32] = ACTIONS(661), - [anon_sym_f64] = ACTIONS(661), - [anon_sym_bool] = ACTIONS(661), - [anon_sym_str] = ACTIONS(661), - [anon_sym_char] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_SLASH] = ACTIONS(673), - [anon_sym_PERCENT] = ACTIONS(673), - [anon_sym_CARET] = ACTIONS(673), - [anon_sym_BANG] = ACTIONS(673), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE] = ACTIONS(673), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [anon_sym_LT_LT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(673), - [anon_sym_PLUS_EQ] = ACTIONS(663), - [anon_sym_DASH_EQ] = ACTIONS(663), - [anon_sym_STAR_EQ] = ACTIONS(663), - [anon_sym_SLASH_EQ] = ACTIONS(663), - [anon_sym_PERCENT_EQ] = ACTIONS(663), - [anon_sym_CARET_EQ] = ACTIONS(663), - [anon_sym_AMP_EQ] = ACTIONS(663), - [anon_sym_PIPE_EQ] = ACTIONS(663), - [anon_sym_LT_LT_EQ] = ACTIONS(663), - [anon_sym_GT_GT_EQ] = ACTIONS(663), - [anon_sym_EQ] = ACTIONS(673), - [anon_sym_EQ_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_AT] = ACTIONS(663), - [anon_sym__] = ACTIONS(673), - [anon_sym_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_COLON_COLON] = ACTIONS(663), - [anon_sym_DASH_GT] = ACTIONS(663), - [anon_sym_POUND] = ACTIONS(663), - [anon_sym_SQUOTE] = ACTIONS(661), - [anon_sym_as] = ACTIONS(661), - [anon_sym_async] = ACTIONS(661), - [anon_sym_await] = ACTIONS(661), - [anon_sym_break] = ACTIONS(661), - [anon_sym_const] = ACTIONS(661), - [anon_sym_continue] = ACTIONS(661), - [anon_sym_default] = ACTIONS(661), - [anon_sym_enum] = ACTIONS(661), - [anon_sym_fn] = ACTIONS(661), - [anon_sym_for] = ACTIONS(661), - [anon_sym_if] = ACTIONS(661), - [anon_sym_impl] = ACTIONS(661), - [anon_sym_let] = ACTIONS(661), - [anon_sym_loop] = ACTIONS(661), - [anon_sym_match] = ACTIONS(661), - [anon_sym_mod] = ACTIONS(661), - [anon_sym_pub] = ACTIONS(661), - [anon_sym_return] = ACTIONS(661), - [anon_sym_static] = ACTIONS(661), - [anon_sym_struct] = ACTIONS(661), - [anon_sym_trait] = ACTIONS(661), - [anon_sym_type] = ACTIONS(661), - [anon_sym_union] = ACTIONS(661), - [anon_sym_unsafe] = ACTIONS(661), - [anon_sym_use] = ACTIONS(661), - [anon_sym_where] = ACTIONS(661), - [anon_sym_while] = ACTIONS(661), - [sym_mutable_specifier] = ACTIONS(661), - [sym_integer_literal] = ACTIONS(677), - [aux_sym_string_literal_token1] = ACTIONS(679), - [sym_char_literal] = ACTIONS(677), - [anon_sym_true] = ACTIONS(681), - [anon_sym_false] = ACTIONS(681), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_crate] = ACTIONS(661), - [sym__raw_string_literal_start] = ACTIONS(683), - [sym_float_literal] = ACTIONS(677), + [aux_sym__non_special_token_repeat1] = STATE(152), + [aux_sym_delim_token_tree_repeat1] = STATE(119), + [sym_identifier] = ACTIONS(686), + [anon_sym_SEMI] = ACTIONS(688), + [anon_sym_LPAREN] = ACTIONS(690), + [anon_sym_RPAREN] = ACTIONS(728), + [anon_sym_LBRACK] = ACTIONS(692), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_COMMA] = ACTIONS(688), + [anon_sym_EQ_GT] = ACTIONS(688), + [anon_sym_COLON] = ACTIONS(698), + [anon_sym_DOLLAR] = ACTIONS(700), + [anon_sym_PLUS] = ACTIONS(698), + [anon_sym_STAR] = ACTIONS(698), + [anon_sym_QMARK] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(686), + [anon_sym_i8] = ACTIONS(686), + [anon_sym_u16] = ACTIONS(686), + [anon_sym_i16] = ACTIONS(686), + [anon_sym_u32] = ACTIONS(686), + [anon_sym_i32] = ACTIONS(686), + [anon_sym_u64] = ACTIONS(686), + [anon_sym_i64] = ACTIONS(686), + [anon_sym_u128] = ACTIONS(686), + [anon_sym_i128] = ACTIONS(686), + [anon_sym_isize] = ACTIONS(686), + [anon_sym_usize] = ACTIONS(686), + [anon_sym_f32] = ACTIONS(686), + [anon_sym_f64] = ACTIONS(686), + [anon_sym_bool] = ACTIONS(686), + [anon_sym_str] = ACTIONS(686), + [anon_sym_char] = ACTIONS(686), + [anon_sym_DASH] = ACTIONS(698), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_PERCENT] = ACTIONS(698), + [anon_sym_CARET] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(698), + [anon_sym_AMP] = ACTIONS(698), + [anon_sym_PIPE] = ACTIONS(698), + [anon_sym_AMP_AMP] = ACTIONS(688), + [anon_sym_PIPE_PIPE] = ACTIONS(688), + [anon_sym_LT_LT] = ACTIONS(698), + [anon_sym_GT_GT] = ACTIONS(698), + [anon_sym_PLUS_EQ] = ACTIONS(688), + [anon_sym_DASH_EQ] = ACTIONS(688), + [anon_sym_STAR_EQ] = ACTIONS(688), + [anon_sym_SLASH_EQ] = ACTIONS(688), + [anon_sym_PERCENT_EQ] = ACTIONS(688), + [anon_sym_CARET_EQ] = ACTIONS(688), + [anon_sym_AMP_EQ] = ACTIONS(688), + [anon_sym_PIPE_EQ] = ACTIONS(688), + [anon_sym_LT_LT_EQ] = ACTIONS(688), + [anon_sym_GT_GT_EQ] = ACTIONS(688), + [anon_sym_EQ] = ACTIONS(698), + [anon_sym_EQ_EQ] = ACTIONS(688), + [anon_sym_BANG_EQ] = ACTIONS(688), + [anon_sym_GT] = ACTIONS(698), + [anon_sym_LT] = ACTIONS(698), + [anon_sym_GT_EQ] = ACTIONS(688), + [anon_sym_LT_EQ] = ACTIONS(688), + [anon_sym_AT] = ACTIONS(688), + [anon_sym__] = ACTIONS(698), + [anon_sym_DOT] = ACTIONS(698), + [anon_sym_DOT_DOT] = ACTIONS(698), + [anon_sym_DOT_DOT_DOT] = ACTIONS(688), + [anon_sym_DOT_DOT_EQ] = ACTIONS(688), + [anon_sym_COLON_COLON] = ACTIONS(688), + [anon_sym_DASH_GT] = ACTIONS(688), + [anon_sym_POUND] = ACTIONS(688), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_as] = ACTIONS(686), + [anon_sym_async] = ACTIONS(686), + [anon_sym_await] = ACTIONS(686), + [anon_sym_break] = ACTIONS(686), + [anon_sym_const] = ACTIONS(686), + [anon_sym_continue] = ACTIONS(686), + [anon_sym_default] = ACTIONS(686), + [anon_sym_enum] = ACTIONS(686), + [anon_sym_fn] = ACTIONS(686), + [anon_sym_for] = ACTIONS(686), + [anon_sym_if] = ACTIONS(686), + [anon_sym_impl] = ACTIONS(686), + [anon_sym_let] = ACTIONS(686), + [anon_sym_loop] = ACTIONS(686), + [anon_sym_match] = ACTIONS(686), + [anon_sym_mod] = ACTIONS(686), + [anon_sym_pub] = ACTIONS(686), + [anon_sym_return] = ACTIONS(686), + [anon_sym_static] = ACTIONS(686), + [anon_sym_struct] = ACTIONS(686), + [anon_sym_trait] = ACTIONS(686), + [anon_sym_type] = ACTIONS(686), + [anon_sym_union] = ACTIONS(686), + [anon_sym_unsafe] = ACTIONS(686), + [anon_sym_use] = ACTIONS(686), + [anon_sym_where] = ACTIONS(686), + [anon_sym_while] = ACTIONS(686), + [sym_mutable_specifier] = ACTIONS(686), + [sym_integer_literal] = ACTIONS(702), + [aux_sym_string_literal_token1] = ACTIONS(704), + [sym_char_literal] = ACTIONS(702), + [anon_sym_true] = ACTIONS(706), + [anon_sym_false] = ACTIONS(706), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(686), + [sym_super] = ACTIONS(686), + [sym_crate] = ACTIONS(686), + [sym__raw_string_literal_start] = ACTIONS(708), + [sym_float_literal] = ACTIONS(702), }, [115] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), + [sym_delim_token_tree] = STATE(201), + [sym__delim_tokens] = STATE(198), + [sym__non_delim_token] = STATE(201), + [sym__literal] = STATE(205), + [sym_string_literal] = STATE(214), + [sym_raw_string_literal] = STATE(214), + [sym_boolean_literal] = STATE(214), [sym_line_comment] = STATE(115), [sym_block_comment] = STATE(115), - [aux_sym__non_special_token_repeat1] = STATE(160), + [aux_sym__non_special_token_repeat1] = STATE(152), [aux_sym_delim_token_tree_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(663), - [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_RBRACK] = ACTIONS(721), - [anon_sym_LBRACE] = ACTIONS(671), - [anon_sym_EQ_GT] = ACTIONS(663), - [anon_sym_COLON] = ACTIONS(673), - [anon_sym_DOLLAR] = ACTIONS(675), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_STAR] = ACTIONS(673), - [anon_sym_QMARK] = ACTIONS(663), - [anon_sym_u8] = ACTIONS(661), - [anon_sym_i8] = ACTIONS(661), - [anon_sym_u16] = ACTIONS(661), - [anon_sym_i16] = ACTIONS(661), - [anon_sym_u32] = ACTIONS(661), - [anon_sym_i32] = ACTIONS(661), - [anon_sym_u64] = ACTIONS(661), - [anon_sym_i64] = ACTIONS(661), - [anon_sym_u128] = ACTIONS(661), - [anon_sym_i128] = ACTIONS(661), - [anon_sym_isize] = ACTIONS(661), - [anon_sym_usize] = ACTIONS(661), - [anon_sym_f32] = ACTIONS(661), - [anon_sym_f64] = ACTIONS(661), - [anon_sym_bool] = ACTIONS(661), - [anon_sym_str] = ACTIONS(661), - [anon_sym_char] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_SLASH] = ACTIONS(673), - [anon_sym_PERCENT] = ACTIONS(673), - [anon_sym_CARET] = ACTIONS(673), - [anon_sym_BANG] = ACTIONS(673), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE] = ACTIONS(673), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [anon_sym_LT_LT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(673), - [anon_sym_PLUS_EQ] = ACTIONS(663), - [anon_sym_DASH_EQ] = ACTIONS(663), - [anon_sym_STAR_EQ] = ACTIONS(663), - [anon_sym_SLASH_EQ] = ACTIONS(663), - [anon_sym_PERCENT_EQ] = ACTIONS(663), - [anon_sym_CARET_EQ] = ACTIONS(663), - [anon_sym_AMP_EQ] = ACTIONS(663), - [anon_sym_PIPE_EQ] = ACTIONS(663), - [anon_sym_LT_LT_EQ] = ACTIONS(663), - [anon_sym_GT_GT_EQ] = ACTIONS(663), - [anon_sym_EQ] = ACTIONS(673), - [anon_sym_EQ_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_AT] = ACTIONS(663), - [anon_sym__] = ACTIONS(673), - [anon_sym_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_COLON_COLON] = ACTIONS(663), - [anon_sym_DASH_GT] = ACTIONS(663), - [anon_sym_POUND] = ACTIONS(663), - [anon_sym_SQUOTE] = ACTIONS(661), - [anon_sym_as] = ACTIONS(661), - [anon_sym_async] = ACTIONS(661), - [anon_sym_await] = ACTIONS(661), - [anon_sym_break] = ACTIONS(661), - [anon_sym_const] = ACTIONS(661), - [anon_sym_continue] = ACTIONS(661), - [anon_sym_default] = ACTIONS(661), - [anon_sym_enum] = ACTIONS(661), - [anon_sym_fn] = ACTIONS(661), - [anon_sym_for] = ACTIONS(661), - [anon_sym_if] = ACTIONS(661), - [anon_sym_impl] = ACTIONS(661), - [anon_sym_let] = ACTIONS(661), - [anon_sym_loop] = ACTIONS(661), - [anon_sym_match] = ACTIONS(661), - [anon_sym_mod] = ACTIONS(661), - [anon_sym_pub] = ACTIONS(661), - [anon_sym_return] = ACTIONS(661), - [anon_sym_static] = ACTIONS(661), - [anon_sym_struct] = ACTIONS(661), - [anon_sym_trait] = ACTIONS(661), - [anon_sym_type] = ACTIONS(661), - [anon_sym_union] = ACTIONS(661), - [anon_sym_unsafe] = ACTIONS(661), - [anon_sym_use] = ACTIONS(661), - [anon_sym_where] = ACTIONS(661), - [anon_sym_while] = ACTIONS(661), - [sym_mutable_specifier] = ACTIONS(661), - [sym_integer_literal] = ACTIONS(677), - [aux_sym_string_literal_token1] = ACTIONS(679), - [sym_char_literal] = ACTIONS(677), - [anon_sym_true] = ACTIONS(681), - [anon_sym_false] = ACTIONS(681), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_crate] = ACTIONS(661), - [sym__raw_string_literal_start] = ACTIONS(683), - [sym_float_literal] = ACTIONS(677), + [sym_identifier] = ACTIONS(686), + [anon_sym_SEMI] = ACTIONS(688), + [anon_sym_LPAREN] = ACTIONS(690), + [anon_sym_RPAREN] = ACTIONS(694), + [anon_sym_LBRACK] = ACTIONS(692), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_COMMA] = ACTIONS(688), + [anon_sym_EQ_GT] = ACTIONS(688), + [anon_sym_COLON] = ACTIONS(698), + [anon_sym_DOLLAR] = ACTIONS(700), + [anon_sym_PLUS] = ACTIONS(698), + [anon_sym_STAR] = ACTIONS(698), + [anon_sym_QMARK] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(686), + [anon_sym_i8] = ACTIONS(686), + [anon_sym_u16] = ACTIONS(686), + [anon_sym_i16] = ACTIONS(686), + [anon_sym_u32] = ACTIONS(686), + [anon_sym_i32] = ACTIONS(686), + [anon_sym_u64] = ACTIONS(686), + [anon_sym_i64] = ACTIONS(686), + [anon_sym_u128] = ACTIONS(686), + [anon_sym_i128] = ACTIONS(686), + [anon_sym_isize] = ACTIONS(686), + [anon_sym_usize] = ACTIONS(686), + [anon_sym_f32] = ACTIONS(686), + [anon_sym_f64] = ACTIONS(686), + [anon_sym_bool] = ACTIONS(686), + [anon_sym_str] = ACTIONS(686), + [anon_sym_char] = ACTIONS(686), + [anon_sym_DASH] = ACTIONS(698), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_PERCENT] = ACTIONS(698), + [anon_sym_CARET] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(698), + [anon_sym_AMP] = ACTIONS(698), + [anon_sym_PIPE] = ACTIONS(698), + [anon_sym_AMP_AMP] = ACTIONS(688), + [anon_sym_PIPE_PIPE] = ACTIONS(688), + [anon_sym_LT_LT] = ACTIONS(698), + [anon_sym_GT_GT] = ACTIONS(698), + [anon_sym_PLUS_EQ] = ACTIONS(688), + [anon_sym_DASH_EQ] = ACTIONS(688), + [anon_sym_STAR_EQ] = ACTIONS(688), + [anon_sym_SLASH_EQ] = ACTIONS(688), + [anon_sym_PERCENT_EQ] = ACTIONS(688), + [anon_sym_CARET_EQ] = ACTIONS(688), + [anon_sym_AMP_EQ] = ACTIONS(688), + [anon_sym_PIPE_EQ] = ACTIONS(688), + [anon_sym_LT_LT_EQ] = ACTIONS(688), + [anon_sym_GT_GT_EQ] = ACTIONS(688), + [anon_sym_EQ] = ACTIONS(698), + [anon_sym_EQ_EQ] = ACTIONS(688), + [anon_sym_BANG_EQ] = ACTIONS(688), + [anon_sym_GT] = ACTIONS(698), + [anon_sym_LT] = ACTIONS(698), + [anon_sym_GT_EQ] = ACTIONS(688), + [anon_sym_LT_EQ] = ACTIONS(688), + [anon_sym_AT] = ACTIONS(688), + [anon_sym__] = ACTIONS(698), + [anon_sym_DOT] = ACTIONS(698), + [anon_sym_DOT_DOT] = ACTIONS(698), + [anon_sym_DOT_DOT_DOT] = ACTIONS(688), + [anon_sym_DOT_DOT_EQ] = ACTIONS(688), + [anon_sym_COLON_COLON] = ACTIONS(688), + [anon_sym_DASH_GT] = ACTIONS(688), + [anon_sym_POUND] = ACTIONS(688), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_as] = ACTIONS(686), + [anon_sym_async] = ACTIONS(686), + [anon_sym_await] = ACTIONS(686), + [anon_sym_break] = ACTIONS(686), + [anon_sym_const] = ACTIONS(686), + [anon_sym_continue] = ACTIONS(686), + [anon_sym_default] = ACTIONS(686), + [anon_sym_enum] = ACTIONS(686), + [anon_sym_fn] = ACTIONS(686), + [anon_sym_for] = ACTIONS(686), + [anon_sym_if] = ACTIONS(686), + [anon_sym_impl] = ACTIONS(686), + [anon_sym_let] = ACTIONS(686), + [anon_sym_loop] = ACTIONS(686), + [anon_sym_match] = ACTIONS(686), + [anon_sym_mod] = ACTIONS(686), + [anon_sym_pub] = ACTIONS(686), + [anon_sym_return] = ACTIONS(686), + [anon_sym_static] = ACTIONS(686), + [anon_sym_struct] = ACTIONS(686), + [anon_sym_trait] = ACTIONS(686), + [anon_sym_type] = ACTIONS(686), + [anon_sym_union] = ACTIONS(686), + [anon_sym_unsafe] = ACTIONS(686), + [anon_sym_use] = ACTIONS(686), + [anon_sym_where] = ACTIONS(686), + [anon_sym_while] = ACTIONS(686), + [sym_mutable_specifier] = ACTIONS(686), + [sym_integer_literal] = ACTIONS(702), + [aux_sym_string_literal_token1] = ACTIONS(704), + [sym_char_literal] = ACTIONS(702), + [anon_sym_true] = ACTIONS(706), + [anon_sym_false] = ACTIONS(706), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(686), + [sym_super] = ACTIONS(686), + [sym_crate] = ACTIONS(686), + [sym__raw_string_literal_start] = ACTIONS(708), + [sym_float_literal] = ACTIONS(702), }, [116] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), + [sym_token_tree] = STATE(158), + [sym_token_repetition] = STATE(158), + [sym__literal] = STATE(158), + [sym_string_literal] = STATE(166), + [sym_raw_string_literal] = STATE(166), + [sym_boolean_literal] = STATE(166), [sym_line_comment] = STATE(116), [sym_block_comment] = STATE(116), - [aux_sym__non_special_token_repeat1] = STATE(160), - [aux_sym_delim_token_tree_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(663), - [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(671), - [anon_sym_RBRACE] = ACTIONS(721), - [anon_sym_EQ_GT] = ACTIONS(663), - [anon_sym_COLON] = ACTIONS(673), - [anon_sym_DOLLAR] = ACTIONS(675), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_STAR] = ACTIONS(673), - [anon_sym_QMARK] = ACTIONS(663), - [anon_sym_u8] = ACTIONS(661), - [anon_sym_i8] = ACTIONS(661), - [anon_sym_u16] = ACTIONS(661), - [anon_sym_i16] = ACTIONS(661), - [anon_sym_u32] = ACTIONS(661), - [anon_sym_i32] = ACTIONS(661), - [anon_sym_u64] = ACTIONS(661), - [anon_sym_i64] = ACTIONS(661), - [anon_sym_u128] = ACTIONS(661), - [anon_sym_i128] = ACTIONS(661), - [anon_sym_isize] = ACTIONS(661), - [anon_sym_usize] = ACTIONS(661), - [anon_sym_f32] = ACTIONS(661), - [anon_sym_f64] = ACTIONS(661), - [anon_sym_bool] = ACTIONS(661), - [anon_sym_str] = ACTIONS(661), - [anon_sym_char] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_SLASH] = ACTIONS(673), - [anon_sym_PERCENT] = ACTIONS(673), - [anon_sym_CARET] = ACTIONS(673), - [anon_sym_BANG] = ACTIONS(673), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE] = ACTIONS(673), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [anon_sym_LT_LT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(673), - [anon_sym_PLUS_EQ] = ACTIONS(663), - [anon_sym_DASH_EQ] = ACTIONS(663), - [anon_sym_STAR_EQ] = ACTIONS(663), - [anon_sym_SLASH_EQ] = ACTIONS(663), - [anon_sym_PERCENT_EQ] = ACTIONS(663), - [anon_sym_CARET_EQ] = ACTIONS(663), - [anon_sym_AMP_EQ] = ACTIONS(663), - [anon_sym_PIPE_EQ] = ACTIONS(663), - [anon_sym_LT_LT_EQ] = ACTIONS(663), - [anon_sym_GT_GT_EQ] = ACTIONS(663), - [anon_sym_EQ] = ACTIONS(673), - [anon_sym_EQ_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_AT] = ACTIONS(663), - [anon_sym__] = ACTIONS(673), - [anon_sym_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_COLON_COLON] = ACTIONS(663), - [anon_sym_DASH_GT] = ACTIONS(663), - [anon_sym_POUND] = ACTIONS(663), - [anon_sym_SQUOTE] = ACTIONS(661), - [anon_sym_as] = ACTIONS(661), - [anon_sym_async] = ACTIONS(661), - [anon_sym_await] = ACTIONS(661), - [anon_sym_break] = ACTIONS(661), - [anon_sym_const] = ACTIONS(661), - [anon_sym_continue] = ACTIONS(661), - [anon_sym_default] = ACTIONS(661), - [anon_sym_enum] = ACTIONS(661), - [anon_sym_fn] = ACTIONS(661), - [anon_sym_for] = ACTIONS(661), - [anon_sym_if] = ACTIONS(661), - [anon_sym_impl] = ACTIONS(661), - [anon_sym_let] = ACTIONS(661), - [anon_sym_loop] = ACTIONS(661), - [anon_sym_match] = ACTIONS(661), - [anon_sym_mod] = ACTIONS(661), - [anon_sym_pub] = ACTIONS(661), - [anon_sym_return] = ACTIONS(661), - [anon_sym_static] = ACTIONS(661), - [anon_sym_struct] = ACTIONS(661), - [anon_sym_trait] = ACTIONS(661), - [anon_sym_type] = ACTIONS(661), - [anon_sym_union] = ACTIONS(661), - [anon_sym_unsafe] = ACTIONS(661), - [anon_sym_use] = ACTIONS(661), - [anon_sym_where] = ACTIONS(661), - [anon_sym_while] = ACTIONS(661), - [sym_mutable_specifier] = ACTIONS(661), - [sym_integer_literal] = ACTIONS(677), - [aux_sym_string_literal_token1] = ACTIONS(679), - [sym_char_literal] = ACTIONS(677), - [anon_sym_true] = ACTIONS(681), - [anon_sym_false] = ACTIONS(681), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_crate] = ACTIONS(661), - [sym__raw_string_literal_start] = ACTIONS(683), - [sym_float_literal] = ACTIONS(677), + [aux_sym_macro_def_body_repeat1] = STATE(126), + [aux_sym__non_special_token_repeat1] = STATE(141), + [sym_identifier] = ACTIONS(670), + [anon_sym_SEMI] = ACTIONS(559), + [anon_sym_LPAREN] = ACTIONS(672), + [anon_sym_LBRACK] = ACTIONS(674), + [anon_sym_LBRACE] = ACTIONS(676), + [anon_sym_RBRACE] = ACTIONS(684), + [anon_sym_COMMA] = ACTIONS(559), + [anon_sym_EQ_GT] = ACTIONS(559), + [anon_sym_COLON] = ACTIONS(569), + [anon_sym_DOLLAR] = ACTIONS(680), + [anon_sym_PLUS] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(569), + [anon_sym_QMARK] = ACTIONS(559), + [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_DASH] = ACTIONS(569), + [anon_sym_SLASH] = ACTIONS(569), + [anon_sym_PERCENT] = ACTIONS(569), + [anon_sym_CARET] = ACTIONS(569), + [anon_sym_BANG] = ACTIONS(569), + [anon_sym_AMP] = ACTIONS(569), + [anon_sym_PIPE] = ACTIONS(569), + [anon_sym_AMP_AMP] = ACTIONS(559), + [anon_sym_PIPE_PIPE] = ACTIONS(559), + [anon_sym_LT_LT] = ACTIONS(569), + [anon_sym_GT_GT] = ACTIONS(569), + [anon_sym_PLUS_EQ] = ACTIONS(559), + [anon_sym_DASH_EQ] = ACTIONS(559), + [anon_sym_STAR_EQ] = ACTIONS(559), + [anon_sym_SLASH_EQ] = ACTIONS(559), + [anon_sym_PERCENT_EQ] = ACTIONS(559), + [anon_sym_CARET_EQ] = ACTIONS(559), + [anon_sym_AMP_EQ] = ACTIONS(559), + [anon_sym_PIPE_EQ] = ACTIONS(559), + [anon_sym_LT_LT_EQ] = ACTIONS(559), + [anon_sym_GT_GT_EQ] = ACTIONS(559), + [anon_sym_EQ] = ACTIONS(569), + [anon_sym_EQ_EQ] = ACTIONS(559), + [anon_sym_BANG_EQ] = ACTIONS(559), + [anon_sym_GT] = ACTIONS(569), + [anon_sym_LT] = ACTIONS(569), + [anon_sym_GT_EQ] = ACTIONS(559), + [anon_sym_LT_EQ] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(559), + [anon_sym__] = ACTIONS(569), + [anon_sym_DOT] = ACTIONS(569), + [anon_sym_DOT_DOT] = ACTIONS(569), + [anon_sym_DOT_DOT_DOT] = ACTIONS(559), + [anon_sym_DOT_DOT_EQ] = ACTIONS(559), + [anon_sym_COLON_COLON] = ACTIONS(559), + [anon_sym_DASH_GT] = ACTIONS(559), + [anon_sym_POUND] = ACTIONS(559), + [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(573), + [aux_sym_string_literal_token1] = ACTIONS(575), + [sym_char_literal] = ACTIONS(573), + [anon_sym_true] = ACTIONS(577), + [anon_sym_false] = ACTIONS(577), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(670), + [sym_super] = ACTIONS(670), + [sym_crate] = ACTIONS(670), + [sym_metavariable] = ACTIONS(682), + [sym__raw_string_literal_start] = ACTIONS(581), + [sym_float_literal] = ACTIONS(573), }, [117] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), + [sym_token_tree] = STATE(158), + [sym_token_repetition] = STATE(158), + [sym__literal] = STATE(158), + [sym_string_literal] = STATE(166), + [sym_raw_string_literal] = STATE(166), + [sym_boolean_literal] = STATE(166), [sym_line_comment] = STATE(117), [sym_block_comment] = STATE(117), - [aux_sym__non_special_token_repeat1] = STATE(160), - [aux_sym_delim_token_tree_repeat1] = STATE(120), - [sym_identifier] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(663), - [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_RPAREN] = ACTIONS(723), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(671), - [anon_sym_EQ_GT] = ACTIONS(663), - [anon_sym_COLON] = ACTIONS(673), - [anon_sym_DOLLAR] = ACTIONS(675), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_STAR] = ACTIONS(673), - [anon_sym_QMARK] = ACTIONS(663), - [anon_sym_u8] = ACTIONS(661), - [anon_sym_i8] = ACTIONS(661), - [anon_sym_u16] = ACTIONS(661), - [anon_sym_i16] = ACTIONS(661), - [anon_sym_u32] = ACTIONS(661), - [anon_sym_i32] = ACTIONS(661), - [anon_sym_u64] = ACTIONS(661), - [anon_sym_i64] = ACTIONS(661), - [anon_sym_u128] = ACTIONS(661), - [anon_sym_i128] = ACTIONS(661), - [anon_sym_isize] = ACTIONS(661), - [anon_sym_usize] = ACTIONS(661), - [anon_sym_f32] = ACTIONS(661), - [anon_sym_f64] = ACTIONS(661), - [anon_sym_bool] = ACTIONS(661), - [anon_sym_str] = ACTIONS(661), - [anon_sym_char] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_SLASH] = ACTIONS(673), - [anon_sym_PERCENT] = ACTIONS(673), - [anon_sym_CARET] = ACTIONS(673), - [anon_sym_BANG] = ACTIONS(673), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE] = ACTIONS(673), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [anon_sym_LT_LT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(673), - [anon_sym_PLUS_EQ] = ACTIONS(663), - [anon_sym_DASH_EQ] = ACTIONS(663), - [anon_sym_STAR_EQ] = ACTIONS(663), - [anon_sym_SLASH_EQ] = ACTIONS(663), - [anon_sym_PERCENT_EQ] = ACTIONS(663), - [anon_sym_CARET_EQ] = ACTIONS(663), - [anon_sym_AMP_EQ] = ACTIONS(663), - [anon_sym_PIPE_EQ] = ACTIONS(663), - [anon_sym_LT_LT_EQ] = ACTIONS(663), - [anon_sym_GT_GT_EQ] = ACTIONS(663), - [anon_sym_EQ] = ACTIONS(673), - [anon_sym_EQ_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_AT] = ACTIONS(663), - [anon_sym__] = ACTIONS(673), - [anon_sym_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_COLON_COLON] = ACTIONS(663), - [anon_sym_DASH_GT] = ACTIONS(663), - [anon_sym_POUND] = ACTIONS(663), - [anon_sym_SQUOTE] = ACTIONS(661), - [anon_sym_as] = ACTIONS(661), - [anon_sym_async] = ACTIONS(661), - [anon_sym_await] = ACTIONS(661), - [anon_sym_break] = ACTIONS(661), - [anon_sym_const] = ACTIONS(661), - [anon_sym_continue] = ACTIONS(661), - [anon_sym_default] = ACTIONS(661), - [anon_sym_enum] = ACTIONS(661), - [anon_sym_fn] = ACTIONS(661), - [anon_sym_for] = ACTIONS(661), - [anon_sym_if] = ACTIONS(661), - [anon_sym_impl] = ACTIONS(661), - [anon_sym_let] = ACTIONS(661), - [anon_sym_loop] = ACTIONS(661), - [anon_sym_match] = ACTIONS(661), - [anon_sym_mod] = ACTIONS(661), - [anon_sym_pub] = ACTIONS(661), - [anon_sym_return] = ACTIONS(661), - [anon_sym_static] = ACTIONS(661), - [anon_sym_struct] = ACTIONS(661), - [anon_sym_trait] = ACTIONS(661), - [anon_sym_type] = ACTIONS(661), - [anon_sym_union] = ACTIONS(661), - [anon_sym_unsafe] = ACTIONS(661), - [anon_sym_use] = ACTIONS(661), - [anon_sym_where] = ACTIONS(661), - [anon_sym_while] = ACTIONS(661), - [sym_mutable_specifier] = ACTIONS(661), - [sym_integer_literal] = ACTIONS(677), - [aux_sym_string_literal_token1] = ACTIONS(679), - [sym_char_literal] = ACTIONS(677), - [anon_sym_true] = ACTIONS(681), - [anon_sym_false] = ACTIONS(681), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_crate] = ACTIONS(661), - [sym__raw_string_literal_start] = ACTIONS(683), - [sym_float_literal] = ACTIONS(677), + [aux_sym_macro_def_body_repeat1] = STATE(85), + [aux_sym__non_special_token_repeat1] = STATE(141), + [sym_identifier] = ACTIONS(670), + [anon_sym_SEMI] = ACTIONS(559), + [anon_sym_LPAREN] = ACTIONS(672), + [anon_sym_LBRACK] = ACTIONS(674), + [anon_sym_LBRACE] = ACTIONS(676), + [anon_sym_RBRACE] = ACTIONS(730), + [anon_sym_COMMA] = ACTIONS(559), + [anon_sym_EQ_GT] = ACTIONS(559), + [anon_sym_COLON] = ACTIONS(569), + [anon_sym_DOLLAR] = ACTIONS(680), + [anon_sym_PLUS] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(569), + [anon_sym_QMARK] = ACTIONS(559), + [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_DASH] = ACTIONS(569), + [anon_sym_SLASH] = ACTIONS(569), + [anon_sym_PERCENT] = ACTIONS(569), + [anon_sym_CARET] = ACTIONS(569), + [anon_sym_BANG] = ACTIONS(569), + [anon_sym_AMP] = ACTIONS(569), + [anon_sym_PIPE] = ACTIONS(569), + [anon_sym_AMP_AMP] = ACTIONS(559), + [anon_sym_PIPE_PIPE] = ACTIONS(559), + [anon_sym_LT_LT] = ACTIONS(569), + [anon_sym_GT_GT] = ACTIONS(569), + [anon_sym_PLUS_EQ] = ACTIONS(559), + [anon_sym_DASH_EQ] = ACTIONS(559), + [anon_sym_STAR_EQ] = ACTIONS(559), + [anon_sym_SLASH_EQ] = ACTIONS(559), + [anon_sym_PERCENT_EQ] = ACTIONS(559), + [anon_sym_CARET_EQ] = ACTIONS(559), + [anon_sym_AMP_EQ] = ACTIONS(559), + [anon_sym_PIPE_EQ] = ACTIONS(559), + [anon_sym_LT_LT_EQ] = ACTIONS(559), + [anon_sym_GT_GT_EQ] = ACTIONS(559), + [anon_sym_EQ] = ACTIONS(569), + [anon_sym_EQ_EQ] = ACTIONS(559), + [anon_sym_BANG_EQ] = ACTIONS(559), + [anon_sym_GT] = ACTIONS(569), + [anon_sym_LT] = ACTIONS(569), + [anon_sym_GT_EQ] = ACTIONS(559), + [anon_sym_LT_EQ] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(559), + [anon_sym__] = ACTIONS(569), + [anon_sym_DOT] = ACTIONS(569), + [anon_sym_DOT_DOT] = ACTIONS(569), + [anon_sym_DOT_DOT_DOT] = ACTIONS(559), + [anon_sym_DOT_DOT_EQ] = ACTIONS(559), + [anon_sym_COLON_COLON] = ACTIONS(559), + [anon_sym_DASH_GT] = ACTIONS(559), + [anon_sym_POUND] = ACTIONS(559), + [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(573), + [aux_sym_string_literal_token1] = ACTIONS(575), + [sym_char_literal] = ACTIONS(573), + [anon_sym_true] = ACTIONS(577), + [anon_sym_false] = ACTIONS(577), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(670), + [sym_super] = ACTIONS(670), + [sym_crate] = ACTIONS(670), + [sym_metavariable] = ACTIONS(682), + [sym__raw_string_literal_start] = ACTIONS(581), + [sym_float_literal] = ACTIONS(573), }, [118] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), + [sym_delim_token_tree] = STATE(201), + [sym__delim_tokens] = STATE(198), + [sym__non_delim_token] = STATE(201), + [sym__literal] = STATE(205), + [sym_string_literal] = STATE(214), + [sym_raw_string_literal] = STATE(214), + [sym_boolean_literal] = STATE(214), [sym_line_comment] = STATE(118), [sym_block_comment] = STATE(118), - [aux_sym__non_special_token_repeat1] = STATE(160), - [aux_sym_delim_token_tree_repeat1] = STATE(121), - [sym_identifier] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(663), - [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_RBRACK] = ACTIONS(723), - [anon_sym_LBRACE] = ACTIONS(671), - [anon_sym_EQ_GT] = ACTIONS(663), - [anon_sym_COLON] = ACTIONS(673), - [anon_sym_DOLLAR] = ACTIONS(675), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_STAR] = ACTIONS(673), - [anon_sym_QMARK] = ACTIONS(663), - [anon_sym_u8] = ACTIONS(661), - [anon_sym_i8] = ACTIONS(661), - [anon_sym_u16] = ACTIONS(661), - [anon_sym_i16] = ACTIONS(661), - [anon_sym_u32] = ACTIONS(661), - [anon_sym_i32] = ACTIONS(661), - [anon_sym_u64] = ACTIONS(661), - [anon_sym_i64] = ACTIONS(661), - [anon_sym_u128] = ACTIONS(661), - [anon_sym_i128] = ACTIONS(661), - [anon_sym_isize] = ACTIONS(661), - [anon_sym_usize] = ACTIONS(661), - [anon_sym_f32] = ACTIONS(661), - [anon_sym_f64] = ACTIONS(661), - [anon_sym_bool] = ACTIONS(661), - [anon_sym_str] = ACTIONS(661), - [anon_sym_char] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_SLASH] = ACTIONS(673), - [anon_sym_PERCENT] = ACTIONS(673), - [anon_sym_CARET] = ACTIONS(673), - [anon_sym_BANG] = ACTIONS(673), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE] = ACTIONS(673), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [anon_sym_LT_LT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(673), - [anon_sym_PLUS_EQ] = ACTIONS(663), - [anon_sym_DASH_EQ] = ACTIONS(663), - [anon_sym_STAR_EQ] = ACTIONS(663), - [anon_sym_SLASH_EQ] = ACTIONS(663), - [anon_sym_PERCENT_EQ] = ACTIONS(663), - [anon_sym_CARET_EQ] = ACTIONS(663), - [anon_sym_AMP_EQ] = ACTIONS(663), - [anon_sym_PIPE_EQ] = ACTIONS(663), - [anon_sym_LT_LT_EQ] = ACTIONS(663), - [anon_sym_GT_GT_EQ] = ACTIONS(663), - [anon_sym_EQ] = ACTIONS(673), - [anon_sym_EQ_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_AT] = ACTIONS(663), - [anon_sym__] = ACTIONS(673), - [anon_sym_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_COLON_COLON] = ACTIONS(663), - [anon_sym_DASH_GT] = ACTIONS(663), - [anon_sym_POUND] = ACTIONS(663), - [anon_sym_SQUOTE] = ACTIONS(661), - [anon_sym_as] = ACTIONS(661), - [anon_sym_async] = ACTIONS(661), - [anon_sym_await] = ACTIONS(661), - [anon_sym_break] = ACTIONS(661), - [anon_sym_const] = ACTIONS(661), - [anon_sym_continue] = ACTIONS(661), - [anon_sym_default] = ACTIONS(661), - [anon_sym_enum] = ACTIONS(661), - [anon_sym_fn] = ACTIONS(661), - [anon_sym_for] = ACTIONS(661), - [anon_sym_if] = ACTIONS(661), - [anon_sym_impl] = ACTIONS(661), - [anon_sym_let] = ACTIONS(661), - [anon_sym_loop] = ACTIONS(661), - [anon_sym_match] = ACTIONS(661), - [anon_sym_mod] = ACTIONS(661), - [anon_sym_pub] = ACTIONS(661), - [anon_sym_return] = ACTIONS(661), - [anon_sym_static] = ACTIONS(661), - [anon_sym_struct] = ACTIONS(661), - [anon_sym_trait] = ACTIONS(661), - [anon_sym_type] = ACTIONS(661), - [anon_sym_union] = ACTIONS(661), - [anon_sym_unsafe] = ACTIONS(661), - [anon_sym_use] = ACTIONS(661), - [anon_sym_where] = ACTIONS(661), - [anon_sym_while] = ACTIONS(661), - [sym_mutable_specifier] = ACTIONS(661), - [sym_integer_literal] = ACTIONS(677), - [aux_sym_string_literal_token1] = ACTIONS(679), - [sym_char_literal] = ACTIONS(677), - [anon_sym_true] = ACTIONS(681), - [anon_sym_false] = ACTIONS(681), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_crate] = ACTIONS(661), - [sym__raw_string_literal_start] = ACTIONS(683), - [sym_float_literal] = ACTIONS(677), + [aux_sym__non_special_token_repeat1] = STATE(152), + [aux_sym_delim_token_tree_repeat1] = STATE(93), + [sym_identifier] = ACTIONS(686), + [anon_sym_SEMI] = ACTIONS(688), + [anon_sym_LPAREN] = ACTIONS(690), + [anon_sym_LBRACK] = ACTIONS(692), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_RBRACE] = ACTIONS(714), + [anon_sym_COMMA] = ACTIONS(688), + [anon_sym_EQ_GT] = ACTIONS(688), + [anon_sym_COLON] = ACTIONS(698), + [anon_sym_DOLLAR] = ACTIONS(700), + [anon_sym_PLUS] = ACTIONS(698), + [anon_sym_STAR] = ACTIONS(698), + [anon_sym_QMARK] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(686), + [anon_sym_i8] = ACTIONS(686), + [anon_sym_u16] = ACTIONS(686), + [anon_sym_i16] = ACTIONS(686), + [anon_sym_u32] = ACTIONS(686), + [anon_sym_i32] = ACTIONS(686), + [anon_sym_u64] = ACTIONS(686), + [anon_sym_i64] = ACTIONS(686), + [anon_sym_u128] = ACTIONS(686), + [anon_sym_i128] = ACTIONS(686), + [anon_sym_isize] = ACTIONS(686), + [anon_sym_usize] = ACTIONS(686), + [anon_sym_f32] = ACTIONS(686), + [anon_sym_f64] = ACTIONS(686), + [anon_sym_bool] = ACTIONS(686), + [anon_sym_str] = ACTIONS(686), + [anon_sym_char] = ACTIONS(686), + [anon_sym_DASH] = ACTIONS(698), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_PERCENT] = ACTIONS(698), + [anon_sym_CARET] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(698), + [anon_sym_AMP] = ACTIONS(698), + [anon_sym_PIPE] = ACTIONS(698), + [anon_sym_AMP_AMP] = ACTIONS(688), + [anon_sym_PIPE_PIPE] = ACTIONS(688), + [anon_sym_LT_LT] = ACTIONS(698), + [anon_sym_GT_GT] = ACTIONS(698), + [anon_sym_PLUS_EQ] = ACTIONS(688), + [anon_sym_DASH_EQ] = ACTIONS(688), + [anon_sym_STAR_EQ] = ACTIONS(688), + [anon_sym_SLASH_EQ] = ACTIONS(688), + [anon_sym_PERCENT_EQ] = ACTIONS(688), + [anon_sym_CARET_EQ] = ACTIONS(688), + [anon_sym_AMP_EQ] = ACTIONS(688), + [anon_sym_PIPE_EQ] = ACTIONS(688), + [anon_sym_LT_LT_EQ] = ACTIONS(688), + [anon_sym_GT_GT_EQ] = ACTIONS(688), + [anon_sym_EQ] = ACTIONS(698), + [anon_sym_EQ_EQ] = ACTIONS(688), + [anon_sym_BANG_EQ] = ACTIONS(688), + [anon_sym_GT] = ACTIONS(698), + [anon_sym_LT] = ACTIONS(698), + [anon_sym_GT_EQ] = ACTIONS(688), + [anon_sym_LT_EQ] = ACTIONS(688), + [anon_sym_AT] = ACTIONS(688), + [anon_sym__] = ACTIONS(698), + [anon_sym_DOT] = ACTIONS(698), + [anon_sym_DOT_DOT] = ACTIONS(698), + [anon_sym_DOT_DOT_DOT] = ACTIONS(688), + [anon_sym_DOT_DOT_EQ] = ACTIONS(688), + [anon_sym_COLON_COLON] = ACTIONS(688), + [anon_sym_DASH_GT] = ACTIONS(688), + [anon_sym_POUND] = ACTIONS(688), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_as] = ACTIONS(686), + [anon_sym_async] = ACTIONS(686), + [anon_sym_await] = ACTIONS(686), + [anon_sym_break] = ACTIONS(686), + [anon_sym_const] = ACTIONS(686), + [anon_sym_continue] = ACTIONS(686), + [anon_sym_default] = ACTIONS(686), + [anon_sym_enum] = ACTIONS(686), + [anon_sym_fn] = ACTIONS(686), + [anon_sym_for] = ACTIONS(686), + [anon_sym_if] = ACTIONS(686), + [anon_sym_impl] = ACTIONS(686), + [anon_sym_let] = ACTIONS(686), + [anon_sym_loop] = ACTIONS(686), + [anon_sym_match] = ACTIONS(686), + [anon_sym_mod] = ACTIONS(686), + [anon_sym_pub] = ACTIONS(686), + [anon_sym_return] = ACTIONS(686), + [anon_sym_static] = ACTIONS(686), + [anon_sym_struct] = ACTIONS(686), + [anon_sym_trait] = ACTIONS(686), + [anon_sym_type] = ACTIONS(686), + [anon_sym_union] = ACTIONS(686), + [anon_sym_unsafe] = ACTIONS(686), + [anon_sym_use] = ACTIONS(686), + [anon_sym_where] = ACTIONS(686), + [anon_sym_while] = ACTIONS(686), + [sym_mutable_specifier] = ACTIONS(686), + [sym_integer_literal] = ACTIONS(702), + [aux_sym_string_literal_token1] = ACTIONS(704), + [sym_char_literal] = ACTIONS(702), + [anon_sym_true] = ACTIONS(706), + [anon_sym_false] = ACTIONS(706), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(686), + [sym_super] = ACTIONS(686), + [sym_crate] = ACTIONS(686), + [sym__raw_string_literal_start] = ACTIONS(708), + [sym_float_literal] = ACTIONS(702), }, [119] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), + [sym_delim_token_tree] = STATE(201), + [sym__delim_tokens] = STATE(198), + [sym__non_delim_token] = STATE(201), + [sym__literal] = STATE(205), + [sym_string_literal] = STATE(214), + [sym_raw_string_literal] = STATE(214), + [sym_boolean_literal] = STATE(214), [sym_line_comment] = STATE(119), [sym_block_comment] = STATE(119), - [aux_sym__non_special_token_repeat1] = STATE(160), - [aux_sym_delim_token_tree_repeat1] = STATE(122), - [sym_identifier] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(663), - [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(671), - [anon_sym_RBRACE] = ACTIONS(723), - [anon_sym_EQ_GT] = ACTIONS(663), - [anon_sym_COLON] = ACTIONS(673), - [anon_sym_DOLLAR] = ACTIONS(675), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_STAR] = ACTIONS(673), - [anon_sym_QMARK] = ACTIONS(663), - [anon_sym_u8] = ACTIONS(661), - [anon_sym_i8] = ACTIONS(661), - [anon_sym_u16] = ACTIONS(661), - [anon_sym_i16] = ACTIONS(661), - [anon_sym_u32] = ACTIONS(661), - [anon_sym_i32] = ACTIONS(661), - [anon_sym_u64] = ACTIONS(661), - [anon_sym_i64] = ACTIONS(661), - [anon_sym_u128] = ACTIONS(661), - [anon_sym_i128] = ACTIONS(661), - [anon_sym_isize] = ACTIONS(661), - [anon_sym_usize] = ACTIONS(661), - [anon_sym_f32] = ACTIONS(661), - [anon_sym_f64] = ACTIONS(661), - [anon_sym_bool] = ACTIONS(661), - [anon_sym_str] = ACTIONS(661), - [anon_sym_char] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_SLASH] = ACTIONS(673), - [anon_sym_PERCENT] = ACTIONS(673), - [anon_sym_CARET] = ACTIONS(673), - [anon_sym_BANG] = ACTIONS(673), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE] = ACTIONS(673), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [anon_sym_LT_LT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(673), - [anon_sym_PLUS_EQ] = ACTIONS(663), - [anon_sym_DASH_EQ] = ACTIONS(663), - [anon_sym_STAR_EQ] = ACTIONS(663), - [anon_sym_SLASH_EQ] = ACTIONS(663), - [anon_sym_PERCENT_EQ] = ACTIONS(663), - [anon_sym_CARET_EQ] = ACTIONS(663), - [anon_sym_AMP_EQ] = ACTIONS(663), - [anon_sym_PIPE_EQ] = ACTIONS(663), - [anon_sym_LT_LT_EQ] = ACTIONS(663), - [anon_sym_GT_GT_EQ] = ACTIONS(663), - [anon_sym_EQ] = ACTIONS(673), - [anon_sym_EQ_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_AT] = ACTIONS(663), - [anon_sym__] = ACTIONS(673), - [anon_sym_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_COLON_COLON] = ACTIONS(663), - [anon_sym_DASH_GT] = ACTIONS(663), - [anon_sym_POUND] = ACTIONS(663), - [anon_sym_SQUOTE] = ACTIONS(661), - [anon_sym_as] = ACTIONS(661), - [anon_sym_async] = ACTIONS(661), - [anon_sym_await] = ACTIONS(661), - [anon_sym_break] = ACTIONS(661), - [anon_sym_const] = ACTIONS(661), - [anon_sym_continue] = ACTIONS(661), - [anon_sym_default] = ACTIONS(661), - [anon_sym_enum] = ACTIONS(661), - [anon_sym_fn] = ACTIONS(661), - [anon_sym_for] = ACTIONS(661), - [anon_sym_if] = ACTIONS(661), - [anon_sym_impl] = ACTIONS(661), - [anon_sym_let] = ACTIONS(661), - [anon_sym_loop] = ACTIONS(661), - [anon_sym_match] = ACTIONS(661), - [anon_sym_mod] = ACTIONS(661), - [anon_sym_pub] = ACTIONS(661), - [anon_sym_return] = ACTIONS(661), - [anon_sym_static] = ACTIONS(661), - [anon_sym_struct] = ACTIONS(661), - [anon_sym_trait] = ACTIONS(661), - [anon_sym_type] = ACTIONS(661), - [anon_sym_union] = ACTIONS(661), - [anon_sym_unsafe] = ACTIONS(661), - [anon_sym_use] = ACTIONS(661), - [anon_sym_where] = ACTIONS(661), - [anon_sym_while] = ACTIONS(661), - [sym_mutable_specifier] = ACTIONS(661), - [sym_integer_literal] = ACTIONS(677), - [aux_sym_string_literal_token1] = ACTIONS(679), - [sym_char_literal] = ACTIONS(677), - [anon_sym_true] = ACTIONS(681), - [anon_sym_false] = ACTIONS(681), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_crate] = ACTIONS(661), - [sym__raw_string_literal_start] = ACTIONS(683), - [sym_float_literal] = ACTIONS(677), + [aux_sym__non_special_token_repeat1] = STATE(152), + [aux_sym_delim_token_tree_repeat1] = STATE(83), + [sym_identifier] = ACTIONS(686), + [anon_sym_SEMI] = ACTIONS(688), + [anon_sym_LPAREN] = ACTIONS(690), + [anon_sym_RPAREN] = ACTIONS(732), + [anon_sym_LBRACK] = ACTIONS(692), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_COMMA] = ACTIONS(688), + [anon_sym_EQ_GT] = ACTIONS(688), + [anon_sym_COLON] = ACTIONS(698), + [anon_sym_DOLLAR] = ACTIONS(700), + [anon_sym_PLUS] = ACTIONS(698), + [anon_sym_STAR] = ACTIONS(698), + [anon_sym_QMARK] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(686), + [anon_sym_i8] = ACTIONS(686), + [anon_sym_u16] = ACTIONS(686), + [anon_sym_i16] = ACTIONS(686), + [anon_sym_u32] = ACTIONS(686), + [anon_sym_i32] = ACTIONS(686), + [anon_sym_u64] = ACTIONS(686), + [anon_sym_i64] = ACTIONS(686), + [anon_sym_u128] = ACTIONS(686), + [anon_sym_i128] = ACTIONS(686), + [anon_sym_isize] = ACTIONS(686), + [anon_sym_usize] = ACTIONS(686), + [anon_sym_f32] = ACTIONS(686), + [anon_sym_f64] = ACTIONS(686), + [anon_sym_bool] = ACTIONS(686), + [anon_sym_str] = ACTIONS(686), + [anon_sym_char] = ACTIONS(686), + [anon_sym_DASH] = ACTIONS(698), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_PERCENT] = ACTIONS(698), + [anon_sym_CARET] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(698), + [anon_sym_AMP] = ACTIONS(698), + [anon_sym_PIPE] = ACTIONS(698), + [anon_sym_AMP_AMP] = ACTIONS(688), + [anon_sym_PIPE_PIPE] = ACTIONS(688), + [anon_sym_LT_LT] = ACTIONS(698), + [anon_sym_GT_GT] = ACTIONS(698), + [anon_sym_PLUS_EQ] = ACTIONS(688), + [anon_sym_DASH_EQ] = ACTIONS(688), + [anon_sym_STAR_EQ] = ACTIONS(688), + [anon_sym_SLASH_EQ] = ACTIONS(688), + [anon_sym_PERCENT_EQ] = ACTIONS(688), + [anon_sym_CARET_EQ] = ACTIONS(688), + [anon_sym_AMP_EQ] = ACTIONS(688), + [anon_sym_PIPE_EQ] = ACTIONS(688), + [anon_sym_LT_LT_EQ] = ACTIONS(688), + [anon_sym_GT_GT_EQ] = ACTIONS(688), + [anon_sym_EQ] = ACTIONS(698), + [anon_sym_EQ_EQ] = ACTIONS(688), + [anon_sym_BANG_EQ] = ACTIONS(688), + [anon_sym_GT] = ACTIONS(698), + [anon_sym_LT] = ACTIONS(698), + [anon_sym_GT_EQ] = ACTIONS(688), + [anon_sym_LT_EQ] = ACTIONS(688), + [anon_sym_AT] = ACTIONS(688), + [anon_sym__] = ACTIONS(698), + [anon_sym_DOT] = ACTIONS(698), + [anon_sym_DOT_DOT] = ACTIONS(698), + [anon_sym_DOT_DOT_DOT] = ACTIONS(688), + [anon_sym_DOT_DOT_EQ] = ACTIONS(688), + [anon_sym_COLON_COLON] = ACTIONS(688), + [anon_sym_DASH_GT] = ACTIONS(688), + [anon_sym_POUND] = ACTIONS(688), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_as] = ACTIONS(686), + [anon_sym_async] = ACTIONS(686), + [anon_sym_await] = ACTIONS(686), + [anon_sym_break] = ACTIONS(686), + [anon_sym_const] = ACTIONS(686), + [anon_sym_continue] = ACTIONS(686), + [anon_sym_default] = ACTIONS(686), + [anon_sym_enum] = ACTIONS(686), + [anon_sym_fn] = ACTIONS(686), + [anon_sym_for] = ACTIONS(686), + [anon_sym_if] = ACTIONS(686), + [anon_sym_impl] = ACTIONS(686), + [anon_sym_let] = ACTIONS(686), + [anon_sym_loop] = ACTIONS(686), + [anon_sym_match] = ACTIONS(686), + [anon_sym_mod] = ACTIONS(686), + [anon_sym_pub] = ACTIONS(686), + [anon_sym_return] = ACTIONS(686), + [anon_sym_static] = ACTIONS(686), + [anon_sym_struct] = ACTIONS(686), + [anon_sym_trait] = ACTIONS(686), + [anon_sym_type] = ACTIONS(686), + [anon_sym_union] = ACTIONS(686), + [anon_sym_unsafe] = ACTIONS(686), + [anon_sym_use] = ACTIONS(686), + [anon_sym_where] = ACTIONS(686), + [anon_sym_while] = ACTIONS(686), + [sym_mutable_specifier] = ACTIONS(686), + [sym_integer_literal] = ACTIONS(702), + [aux_sym_string_literal_token1] = ACTIONS(704), + [sym_char_literal] = ACTIONS(702), + [anon_sym_true] = ACTIONS(706), + [anon_sym_false] = ACTIONS(706), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(686), + [sym_super] = ACTIONS(686), + [sym_crate] = ACTIONS(686), + [sym__raw_string_literal_start] = ACTIONS(708), + [sym_float_literal] = ACTIONS(702), }, [120] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), + [sym_delim_token_tree] = STATE(201), + [sym__delim_tokens] = STATE(198), + [sym__non_delim_token] = STATE(201), + [sym__literal] = STATE(205), + [sym_string_literal] = STATE(214), + [sym_raw_string_literal] = STATE(214), + [sym_boolean_literal] = STATE(214), [sym_line_comment] = STATE(120), [sym_block_comment] = STATE(120), - [aux_sym__non_special_token_repeat1] = STATE(160), + [aux_sym__non_special_token_repeat1] = STATE(152), [aux_sym_delim_token_tree_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(663), - [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_RPAREN] = ACTIONS(725), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(671), - [anon_sym_EQ_GT] = ACTIONS(663), - [anon_sym_COLON] = ACTIONS(673), - [anon_sym_DOLLAR] = ACTIONS(675), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_STAR] = ACTIONS(673), - [anon_sym_QMARK] = ACTIONS(663), - [anon_sym_u8] = ACTIONS(661), - [anon_sym_i8] = ACTIONS(661), - [anon_sym_u16] = ACTIONS(661), - [anon_sym_i16] = ACTIONS(661), - [anon_sym_u32] = ACTIONS(661), - [anon_sym_i32] = ACTIONS(661), - [anon_sym_u64] = ACTIONS(661), - [anon_sym_i64] = ACTIONS(661), - [anon_sym_u128] = ACTIONS(661), - [anon_sym_i128] = ACTIONS(661), - [anon_sym_isize] = ACTIONS(661), - [anon_sym_usize] = ACTIONS(661), - [anon_sym_f32] = ACTIONS(661), - [anon_sym_f64] = ACTIONS(661), - [anon_sym_bool] = ACTIONS(661), - [anon_sym_str] = ACTIONS(661), - [anon_sym_char] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_SLASH] = ACTIONS(673), - [anon_sym_PERCENT] = ACTIONS(673), - [anon_sym_CARET] = ACTIONS(673), - [anon_sym_BANG] = ACTIONS(673), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE] = ACTIONS(673), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [anon_sym_LT_LT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(673), - [anon_sym_PLUS_EQ] = ACTIONS(663), - [anon_sym_DASH_EQ] = ACTIONS(663), - [anon_sym_STAR_EQ] = ACTIONS(663), - [anon_sym_SLASH_EQ] = ACTIONS(663), - [anon_sym_PERCENT_EQ] = ACTIONS(663), - [anon_sym_CARET_EQ] = ACTIONS(663), - [anon_sym_AMP_EQ] = ACTIONS(663), - [anon_sym_PIPE_EQ] = ACTIONS(663), - [anon_sym_LT_LT_EQ] = ACTIONS(663), - [anon_sym_GT_GT_EQ] = ACTIONS(663), - [anon_sym_EQ] = ACTIONS(673), - [anon_sym_EQ_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_AT] = ACTIONS(663), - [anon_sym__] = ACTIONS(673), - [anon_sym_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_COLON_COLON] = ACTIONS(663), - [anon_sym_DASH_GT] = ACTIONS(663), - [anon_sym_POUND] = ACTIONS(663), - [anon_sym_SQUOTE] = ACTIONS(661), - [anon_sym_as] = ACTIONS(661), - [anon_sym_async] = ACTIONS(661), - [anon_sym_await] = ACTIONS(661), - [anon_sym_break] = ACTIONS(661), - [anon_sym_const] = ACTIONS(661), - [anon_sym_continue] = ACTIONS(661), - [anon_sym_default] = ACTIONS(661), - [anon_sym_enum] = ACTIONS(661), - [anon_sym_fn] = ACTIONS(661), - [anon_sym_for] = ACTIONS(661), - [anon_sym_if] = ACTIONS(661), - [anon_sym_impl] = ACTIONS(661), - [anon_sym_let] = ACTIONS(661), - [anon_sym_loop] = ACTIONS(661), - [anon_sym_match] = ACTIONS(661), - [anon_sym_mod] = ACTIONS(661), - [anon_sym_pub] = ACTIONS(661), - [anon_sym_return] = ACTIONS(661), - [anon_sym_static] = ACTIONS(661), - [anon_sym_struct] = ACTIONS(661), - [anon_sym_trait] = ACTIONS(661), - [anon_sym_type] = ACTIONS(661), - [anon_sym_union] = ACTIONS(661), - [anon_sym_unsafe] = ACTIONS(661), - [anon_sym_use] = ACTIONS(661), - [anon_sym_where] = ACTIONS(661), - [anon_sym_while] = ACTIONS(661), - [sym_mutable_specifier] = ACTIONS(661), - [sym_integer_literal] = ACTIONS(677), - [aux_sym_string_literal_token1] = ACTIONS(679), - [sym_char_literal] = ACTIONS(677), - [anon_sym_true] = ACTIONS(681), - [anon_sym_false] = ACTIONS(681), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_crate] = ACTIONS(661), - [sym__raw_string_literal_start] = ACTIONS(683), - [sym_float_literal] = ACTIONS(677), + [sym_identifier] = ACTIONS(686), + [anon_sym_SEMI] = ACTIONS(688), + [anon_sym_LPAREN] = ACTIONS(690), + [anon_sym_LBRACK] = ACTIONS(692), + [anon_sym_RBRACK] = ACTIONS(732), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_COMMA] = ACTIONS(688), + [anon_sym_EQ_GT] = ACTIONS(688), + [anon_sym_COLON] = ACTIONS(698), + [anon_sym_DOLLAR] = ACTIONS(700), + [anon_sym_PLUS] = ACTIONS(698), + [anon_sym_STAR] = ACTIONS(698), + [anon_sym_QMARK] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(686), + [anon_sym_i8] = ACTIONS(686), + [anon_sym_u16] = ACTIONS(686), + [anon_sym_i16] = ACTIONS(686), + [anon_sym_u32] = ACTIONS(686), + [anon_sym_i32] = ACTIONS(686), + [anon_sym_u64] = ACTIONS(686), + [anon_sym_i64] = ACTIONS(686), + [anon_sym_u128] = ACTIONS(686), + [anon_sym_i128] = ACTIONS(686), + [anon_sym_isize] = ACTIONS(686), + [anon_sym_usize] = ACTIONS(686), + [anon_sym_f32] = ACTIONS(686), + [anon_sym_f64] = ACTIONS(686), + [anon_sym_bool] = ACTIONS(686), + [anon_sym_str] = ACTIONS(686), + [anon_sym_char] = ACTIONS(686), + [anon_sym_DASH] = ACTIONS(698), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_PERCENT] = ACTIONS(698), + [anon_sym_CARET] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(698), + [anon_sym_AMP] = ACTIONS(698), + [anon_sym_PIPE] = ACTIONS(698), + [anon_sym_AMP_AMP] = ACTIONS(688), + [anon_sym_PIPE_PIPE] = ACTIONS(688), + [anon_sym_LT_LT] = ACTIONS(698), + [anon_sym_GT_GT] = ACTIONS(698), + [anon_sym_PLUS_EQ] = ACTIONS(688), + [anon_sym_DASH_EQ] = ACTIONS(688), + [anon_sym_STAR_EQ] = ACTIONS(688), + [anon_sym_SLASH_EQ] = ACTIONS(688), + [anon_sym_PERCENT_EQ] = ACTIONS(688), + [anon_sym_CARET_EQ] = ACTIONS(688), + [anon_sym_AMP_EQ] = ACTIONS(688), + [anon_sym_PIPE_EQ] = ACTIONS(688), + [anon_sym_LT_LT_EQ] = ACTIONS(688), + [anon_sym_GT_GT_EQ] = ACTIONS(688), + [anon_sym_EQ] = ACTIONS(698), + [anon_sym_EQ_EQ] = ACTIONS(688), + [anon_sym_BANG_EQ] = ACTIONS(688), + [anon_sym_GT] = ACTIONS(698), + [anon_sym_LT] = ACTIONS(698), + [anon_sym_GT_EQ] = ACTIONS(688), + [anon_sym_LT_EQ] = ACTIONS(688), + [anon_sym_AT] = ACTIONS(688), + [anon_sym__] = ACTIONS(698), + [anon_sym_DOT] = ACTIONS(698), + [anon_sym_DOT_DOT] = ACTIONS(698), + [anon_sym_DOT_DOT_DOT] = ACTIONS(688), + [anon_sym_DOT_DOT_EQ] = ACTIONS(688), + [anon_sym_COLON_COLON] = ACTIONS(688), + [anon_sym_DASH_GT] = ACTIONS(688), + [anon_sym_POUND] = ACTIONS(688), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_as] = ACTIONS(686), + [anon_sym_async] = ACTIONS(686), + [anon_sym_await] = ACTIONS(686), + [anon_sym_break] = ACTIONS(686), + [anon_sym_const] = ACTIONS(686), + [anon_sym_continue] = ACTIONS(686), + [anon_sym_default] = ACTIONS(686), + [anon_sym_enum] = ACTIONS(686), + [anon_sym_fn] = ACTIONS(686), + [anon_sym_for] = ACTIONS(686), + [anon_sym_if] = ACTIONS(686), + [anon_sym_impl] = ACTIONS(686), + [anon_sym_let] = ACTIONS(686), + [anon_sym_loop] = ACTIONS(686), + [anon_sym_match] = ACTIONS(686), + [anon_sym_mod] = ACTIONS(686), + [anon_sym_pub] = ACTIONS(686), + [anon_sym_return] = ACTIONS(686), + [anon_sym_static] = ACTIONS(686), + [anon_sym_struct] = ACTIONS(686), + [anon_sym_trait] = ACTIONS(686), + [anon_sym_type] = ACTIONS(686), + [anon_sym_union] = ACTIONS(686), + [anon_sym_unsafe] = ACTIONS(686), + [anon_sym_use] = ACTIONS(686), + [anon_sym_where] = ACTIONS(686), + [anon_sym_while] = ACTIONS(686), + [sym_mutable_specifier] = ACTIONS(686), + [sym_integer_literal] = ACTIONS(702), + [aux_sym_string_literal_token1] = ACTIONS(704), + [sym_char_literal] = ACTIONS(702), + [anon_sym_true] = ACTIONS(706), + [anon_sym_false] = ACTIONS(706), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(686), + [sym_super] = ACTIONS(686), + [sym_crate] = ACTIONS(686), + [sym__raw_string_literal_start] = ACTIONS(708), + [sym_float_literal] = ACTIONS(702), }, [121] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), + [sym_delim_token_tree] = STATE(201), + [sym__delim_tokens] = STATE(198), + [sym__non_delim_token] = STATE(201), + [sym__literal] = STATE(205), + [sym_string_literal] = STATE(214), + [sym_raw_string_literal] = STATE(214), + [sym_boolean_literal] = STATE(214), [sym_line_comment] = STATE(121), [sym_block_comment] = STATE(121), - [aux_sym__non_special_token_repeat1] = STATE(160), + [aux_sym__non_special_token_repeat1] = STATE(152), [aux_sym_delim_token_tree_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(663), - [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_RBRACK] = ACTIONS(725), - [anon_sym_LBRACE] = ACTIONS(671), - [anon_sym_EQ_GT] = ACTIONS(663), - [anon_sym_COLON] = ACTIONS(673), - [anon_sym_DOLLAR] = ACTIONS(675), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_STAR] = ACTIONS(673), - [anon_sym_QMARK] = ACTIONS(663), - [anon_sym_u8] = ACTIONS(661), - [anon_sym_i8] = ACTIONS(661), - [anon_sym_u16] = ACTIONS(661), - [anon_sym_i16] = ACTIONS(661), - [anon_sym_u32] = ACTIONS(661), - [anon_sym_i32] = ACTIONS(661), - [anon_sym_u64] = ACTIONS(661), - [anon_sym_i64] = ACTIONS(661), - [anon_sym_u128] = ACTIONS(661), - [anon_sym_i128] = ACTIONS(661), - [anon_sym_isize] = ACTIONS(661), - [anon_sym_usize] = ACTIONS(661), - [anon_sym_f32] = ACTIONS(661), - [anon_sym_f64] = ACTIONS(661), - [anon_sym_bool] = ACTIONS(661), - [anon_sym_str] = ACTIONS(661), - [anon_sym_char] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_SLASH] = ACTIONS(673), - [anon_sym_PERCENT] = ACTIONS(673), - [anon_sym_CARET] = ACTIONS(673), - [anon_sym_BANG] = ACTIONS(673), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE] = ACTIONS(673), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [anon_sym_LT_LT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(673), - [anon_sym_PLUS_EQ] = ACTIONS(663), - [anon_sym_DASH_EQ] = ACTIONS(663), - [anon_sym_STAR_EQ] = ACTIONS(663), - [anon_sym_SLASH_EQ] = ACTIONS(663), - [anon_sym_PERCENT_EQ] = ACTIONS(663), - [anon_sym_CARET_EQ] = ACTIONS(663), - [anon_sym_AMP_EQ] = ACTIONS(663), - [anon_sym_PIPE_EQ] = ACTIONS(663), - [anon_sym_LT_LT_EQ] = ACTIONS(663), - [anon_sym_GT_GT_EQ] = ACTIONS(663), - [anon_sym_EQ] = ACTIONS(673), - [anon_sym_EQ_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_AT] = ACTIONS(663), - [anon_sym__] = ACTIONS(673), - [anon_sym_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_COLON_COLON] = ACTIONS(663), - [anon_sym_DASH_GT] = ACTIONS(663), - [anon_sym_POUND] = ACTIONS(663), - [anon_sym_SQUOTE] = ACTIONS(661), - [anon_sym_as] = ACTIONS(661), - [anon_sym_async] = ACTIONS(661), - [anon_sym_await] = ACTIONS(661), - [anon_sym_break] = ACTIONS(661), - [anon_sym_const] = ACTIONS(661), - [anon_sym_continue] = ACTIONS(661), - [anon_sym_default] = ACTIONS(661), - [anon_sym_enum] = ACTIONS(661), - [anon_sym_fn] = ACTIONS(661), - [anon_sym_for] = ACTIONS(661), - [anon_sym_if] = ACTIONS(661), - [anon_sym_impl] = ACTIONS(661), - [anon_sym_let] = ACTIONS(661), - [anon_sym_loop] = ACTIONS(661), - [anon_sym_match] = ACTIONS(661), - [anon_sym_mod] = ACTIONS(661), - [anon_sym_pub] = ACTIONS(661), - [anon_sym_return] = ACTIONS(661), - [anon_sym_static] = ACTIONS(661), - [anon_sym_struct] = ACTIONS(661), - [anon_sym_trait] = ACTIONS(661), - [anon_sym_type] = ACTIONS(661), - [anon_sym_union] = ACTIONS(661), - [anon_sym_unsafe] = ACTIONS(661), - [anon_sym_use] = ACTIONS(661), - [anon_sym_where] = ACTIONS(661), - [anon_sym_while] = ACTIONS(661), - [sym_mutable_specifier] = ACTIONS(661), - [sym_integer_literal] = ACTIONS(677), - [aux_sym_string_literal_token1] = ACTIONS(679), - [sym_char_literal] = ACTIONS(677), - [anon_sym_true] = ACTIONS(681), - [anon_sym_false] = ACTIONS(681), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_crate] = ACTIONS(661), - [sym__raw_string_literal_start] = ACTIONS(683), - [sym_float_literal] = ACTIONS(677), + [sym_identifier] = ACTIONS(686), + [anon_sym_SEMI] = ACTIONS(688), + [anon_sym_LPAREN] = ACTIONS(690), + [anon_sym_LBRACK] = ACTIONS(692), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_RBRACE] = ACTIONS(732), + [anon_sym_COMMA] = ACTIONS(688), + [anon_sym_EQ_GT] = ACTIONS(688), + [anon_sym_COLON] = ACTIONS(698), + [anon_sym_DOLLAR] = ACTIONS(700), + [anon_sym_PLUS] = ACTIONS(698), + [anon_sym_STAR] = ACTIONS(698), + [anon_sym_QMARK] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(686), + [anon_sym_i8] = ACTIONS(686), + [anon_sym_u16] = ACTIONS(686), + [anon_sym_i16] = ACTIONS(686), + [anon_sym_u32] = ACTIONS(686), + [anon_sym_i32] = ACTIONS(686), + [anon_sym_u64] = ACTIONS(686), + [anon_sym_i64] = ACTIONS(686), + [anon_sym_u128] = ACTIONS(686), + [anon_sym_i128] = ACTIONS(686), + [anon_sym_isize] = ACTIONS(686), + [anon_sym_usize] = ACTIONS(686), + [anon_sym_f32] = ACTIONS(686), + [anon_sym_f64] = ACTIONS(686), + [anon_sym_bool] = ACTIONS(686), + [anon_sym_str] = ACTIONS(686), + [anon_sym_char] = ACTIONS(686), + [anon_sym_DASH] = ACTIONS(698), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_PERCENT] = ACTIONS(698), + [anon_sym_CARET] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(698), + [anon_sym_AMP] = ACTIONS(698), + [anon_sym_PIPE] = ACTIONS(698), + [anon_sym_AMP_AMP] = ACTIONS(688), + [anon_sym_PIPE_PIPE] = ACTIONS(688), + [anon_sym_LT_LT] = ACTIONS(698), + [anon_sym_GT_GT] = ACTIONS(698), + [anon_sym_PLUS_EQ] = ACTIONS(688), + [anon_sym_DASH_EQ] = ACTIONS(688), + [anon_sym_STAR_EQ] = ACTIONS(688), + [anon_sym_SLASH_EQ] = ACTIONS(688), + [anon_sym_PERCENT_EQ] = ACTIONS(688), + [anon_sym_CARET_EQ] = ACTIONS(688), + [anon_sym_AMP_EQ] = ACTIONS(688), + [anon_sym_PIPE_EQ] = ACTIONS(688), + [anon_sym_LT_LT_EQ] = ACTIONS(688), + [anon_sym_GT_GT_EQ] = ACTIONS(688), + [anon_sym_EQ] = ACTIONS(698), + [anon_sym_EQ_EQ] = ACTIONS(688), + [anon_sym_BANG_EQ] = ACTIONS(688), + [anon_sym_GT] = ACTIONS(698), + [anon_sym_LT] = ACTIONS(698), + [anon_sym_GT_EQ] = ACTIONS(688), + [anon_sym_LT_EQ] = ACTIONS(688), + [anon_sym_AT] = ACTIONS(688), + [anon_sym__] = ACTIONS(698), + [anon_sym_DOT] = ACTIONS(698), + [anon_sym_DOT_DOT] = ACTIONS(698), + [anon_sym_DOT_DOT_DOT] = ACTIONS(688), + [anon_sym_DOT_DOT_EQ] = ACTIONS(688), + [anon_sym_COLON_COLON] = ACTIONS(688), + [anon_sym_DASH_GT] = ACTIONS(688), + [anon_sym_POUND] = ACTIONS(688), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_as] = ACTIONS(686), + [anon_sym_async] = ACTIONS(686), + [anon_sym_await] = ACTIONS(686), + [anon_sym_break] = ACTIONS(686), + [anon_sym_const] = ACTIONS(686), + [anon_sym_continue] = ACTIONS(686), + [anon_sym_default] = ACTIONS(686), + [anon_sym_enum] = ACTIONS(686), + [anon_sym_fn] = ACTIONS(686), + [anon_sym_for] = ACTIONS(686), + [anon_sym_if] = ACTIONS(686), + [anon_sym_impl] = ACTIONS(686), + [anon_sym_let] = ACTIONS(686), + [anon_sym_loop] = ACTIONS(686), + [anon_sym_match] = ACTIONS(686), + [anon_sym_mod] = ACTIONS(686), + [anon_sym_pub] = ACTIONS(686), + [anon_sym_return] = ACTIONS(686), + [anon_sym_static] = ACTIONS(686), + [anon_sym_struct] = ACTIONS(686), + [anon_sym_trait] = ACTIONS(686), + [anon_sym_type] = ACTIONS(686), + [anon_sym_union] = ACTIONS(686), + [anon_sym_unsafe] = ACTIONS(686), + [anon_sym_use] = ACTIONS(686), + [anon_sym_where] = ACTIONS(686), + [anon_sym_while] = ACTIONS(686), + [sym_mutable_specifier] = ACTIONS(686), + [sym_integer_literal] = ACTIONS(702), + [aux_sym_string_literal_token1] = ACTIONS(704), + [sym_char_literal] = ACTIONS(702), + [anon_sym_true] = ACTIONS(706), + [anon_sym_false] = ACTIONS(706), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(686), + [sym_super] = ACTIONS(686), + [sym_crate] = ACTIONS(686), + [sym__raw_string_literal_start] = ACTIONS(708), + [sym_float_literal] = ACTIONS(702), }, [122] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), + [sym_token_tree] = STATE(158), + [sym_token_repetition] = STATE(158), + [sym__literal] = STATE(158), + [sym_string_literal] = STATE(166), + [sym_raw_string_literal] = STATE(166), + [sym_boolean_literal] = STATE(166), [sym_line_comment] = STATE(122), [sym_block_comment] = STATE(122), - [aux_sym__non_special_token_repeat1] = STATE(160), - [aux_sym_delim_token_tree_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(663), - [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(671), - [anon_sym_RBRACE] = ACTIONS(725), - [anon_sym_EQ_GT] = ACTIONS(663), - [anon_sym_COLON] = ACTIONS(673), - [anon_sym_DOLLAR] = ACTIONS(675), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_STAR] = ACTIONS(673), - [anon_sym_QMARK] = ACTIONS(663), - [anon_sym_u8] = ACTIONS(661), - [anon_sym_i8] = ACTIONS(661), - [anon_sym_u16] = ACTIONS(661), - [anon_sym_i16] = ACTIONS(661), - [anon_sym_u32] = ACTIONS(661), - [anon_sym_i32] = ACTIONS(661), - [anon_sym_u64] = ACTIONS(661), - [anon_sym_i64] = ACTIONS(661), - [anon_sym_u128] = ACTIONS(661), - [anon_sym_i128] = ACTIONS(661), - [anon_sym_isize] = ACTIONS(661), - [anon_sym_usize] = ACTIONS(661), - [anon_sym_f32] = ACTIONS(661), - [anon_sym_f64] = ACTIONS(661), - [anon_sym_bool] = ACTIONS(661), - [anon_sym_str] = ACTIONS(661), - [anon_sym_char] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_SLASH] = ACTIONS(673), - [anon_sym_PERCENT] = ACTIONS(673), - [anon_sym_CARET] = ACTIONS(673), - [anon_sym_BANG] = ACTIONS(673), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE] = ACTIONS(673), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [anon_sym_LT_LT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(673), - [anon_sym_PLUS_EQ] = ACTIONS(663), - [anon_sym_DASH_EQ] = ACTIONS(663), - [anon_sym_STAR_EQ] = ACTIONS(663), - [anon_sym_SLASH_EQ] = ACTIONS(663), - [anon_sym_PERCENT_EQ] = ACTIONS(663), - [anon_sym_CARET_EQ] = ACTIONS(663), - [anon_sym_AMP_EQ] = ACTIONS(663), - [anon_sym_PIPE_EQ] = ACTIONS(663), - [anon_sym_LT_LT_EQ] = ACTIONS(663), - [anon_sym_GT_GT_EQ] = ACTIONS(663), - [anon_sym_EQ] = ACTIONS(673), - [anon_sym_EQ_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_AT] = ACTIONS(663), - [anon_sym__] = ACTIONS(673), - [anon_sym_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_COLON_COLON] = ACTIONS(663), - [anon_sym_DASH_GT] = ACTIONS(663), - [anon_sym_POUND] = ACTIONS(663), - [anon_sym_SQUOTE] = ACTIONS(661), - [anon_sym_as] = ACTIONS(661), - [anon_sym_async] = ACTIONS(661), - [anon_sym_await] = ACTIONS(661), - [anon_sym_break] = ACTIONS(661), - [anon_sym_const] = ACTIONS(661), - [anon_sym_continue] = ACTIONS(661), - [anon_sym_default] = ACTIONS(661), - [anon_sym_enum] = ACTIONS(661), - [anon_sym_fn] = ACTIONS(661), - [anon_sym_for] = ACTIONS(661), - [anon_sym_if] = ACTIONS(661), - [anon_sym_impl] = ACTIONS(661), - [anon_sym_let] = ACTIONS(661), - [anon_sym_loop] = ACTIONS(661), - [anon_sym_match] = ACTIONS(661), - [anon_sym_mod] = ACTIONS(661), - [anon_sym_pub] = ACTIONS(661), - [anon_sym_return] = ACTIONS(661), - [anon_sym_static] = ACTIONS(661), - [anon_sym_struct] = ACTIONS(661), - [anon_sym_trait] = ACTIONS(661), - [anon_sym_type] = ACTIONS(661), - [anon_sym_union] = ACTIONS(661), - [anon_sym_unsafe] = ACTIONS(661), - [anon_sym_use] = ACTIONS(661), - [anon_sym_where] = ACTIONS(661), - [anon_sym_while] = ACTIONS(661), - [sym_mutable_specifier] = ACTIONS(661), - [sym_integer_literal] = ACTIONS(677), - [aux_sym_string_literal_token1] = ACTIONS(679), - [sym_char_literal] = ACTIONS(677), - [anon_sym_true] = ACTIONS(681), - [anon_sym_false] = ACTIONS(681), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_crate] = ACTIONS(661), - [sym__raw_string_literal_start] = ACTIONS(683), - [sym_float_literal] = ACTIONS(677), + [aux_sym_macro_def_body_repeat1] = STATE(85), + [aux_sym__non_special_token_repeat1] = STATE(141), + [sym_identifier] = ACTIONS(670), + [anon_sym_SEMI] = ACTIONS(559), + [anon_sym_LPAREN] = ACTIONS(672), + [anon_sym_RPAREN] = ACTIONS(734), + [anon_sym_LBRACK] = ACTIONS(674), + [anon_sym_LBRACE] = ACTIONS(676), + [anon_sym_COMMA] = ACTIONS(559), + [anon_sym_EQ_GT] = ACTIONS(559), + [anon_sym_COLON] = ACTIONS(569), + [anon_sym_DOLLAR] = ACTIONS(680), + [anon_sym_PLUS] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(569), + [anon_sym_QMARK] = ACTIONS(559), + [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_DASH] = ACTIONS(569), + [anon_sym_SLASH] = ACTIONS(569), + [anon_sym_PERCENT] = ACTIONS(569), + [anon_sym_CARET] = ACTIONS(569), + [anon_sym_BANG] = ACTIONS(569), + [anon_sym_AMP] = ACTIONS(569), + [anon_sym_PIPE] = ACTIONS(569), + [anon_sym_AMP_AMP] = ACTIONS(559), + [anon_sym_PIPE_PIPE] = ACTIONS(559), + [anon_sym_LT_LT] = ACTIONS(569), + [anon_sym_GT_GT] = ACTIONS(569), + [anon_sym_PLUS_EQ] = ACTIONS(559), + [anon_sym_DASH_EQ] = ACTIONS(559), + [anon_sym_STAR_EQ] = ACTIONS(559), + [anon_sym_SLASH_EQ] = ACTIONS(559), + [anon_sym_PERCENT_EQ] = ACTIONS(559), + [anon_sym_CARET_EQ] = ACTIONS(559), + [anon_sym_AMP_EQ] = ACTIONS(559), + [anon_sym_PIPE_EQ] = ACTIONS(559), + [anon_sym_LT_LT_EQ] = ACTIONS(559), + [anon_sym_GT_GT_EQ] = ACTIONS(559), + [anon_sym_EQ] = ACTIONS(569), + [anon_sym_EQ_EQ] = ACTIONS(559), + [anon_sym_BANG_EQ] = ACTIONS(559), + [anon_sym_GT] = ACTIONS(569), + [anon_sym_LT] = ACTIONS(569), + [anon_sym_GT_EQ] = ACTIONS(559), + [anon_sym_LT_EQ] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(559), + [anon_sym__] = ACTIONS(569), + [anon_sym_DOT] = ACTIONS(569), + [anon_sym_DOT_DOT] = ACTIONS(569), + [anon_sym_DOT_DOT_DOT] = ACTIONS(559), + [anon_sym_DOT_DOT_EQ] = ACTIONS(559), + [anon_sym_COLON_COLON] = ACTIONS(559), + [anon_sym_DASH_GT] = ACTIONS(559), + [anon_sym_POUND] = ACTIONS(559), + [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(573), + [aux_sym_string_literal_token1] = ACTIONS(575), + [sym_char_literal] = ACTIONS(573), + [anon_sym_true] = ACTIONS(577), + [anon_sym_false] = ACTIONS(577), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(670), + [sym_super] = ACTIONS(670), + [sym_crate] = ACTIONS(670), + [sym_metavariable] = ACTIONS(682), + [sym__raw_string_literal_start] = ACTIONS(581), + [sym_float_literal] = ACTIONS(573), }, [123] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), + [sym_token_tree] = STATE(158), + [sym_token_repetition] = STATE(158), + [sym__literal] = STATE(158), + [sym_string_literal] = STATE(166), + [sym_raw_string_literal] = STATE(166), + [sym_boolean_literal] = STATE(166), [sym_line_comment] = STATE(123), [sym_block_comment] = STATE(123), - [aux_sym__non_special_token_repeat1] = STATE(160), - [aux_sym_delim_token_tree_repeat1] = STATE(107), - [sym_identifier] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(663), - [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_RPAREN] = ACTIONS(709), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(671), - [anon_sym_EQ_GT] = ACTIONS(663), - [anon_sym_COLON] = ACTIONS(673), - [anon_sym_DOLLAR] = ACTIONS(675), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_STAR] = ACTIONS(673), - [anon_sym_QMARK] = ACTIONS(663), - [anon_sym_u8] = ACTIONS(661), - [anon_sym_i8] = ACTIONS(661), - [anon_sym_u16] = ACTIONS(661), - [anon_sym_i16] = ACTIONS(661), - [anon_sym_u32] = ACTIONS(661), - [anon_sym_i32] = ACTIONS(661), - [anon_sym_u64] = ACTIONS(661), - [anon_sym_i64] = ACTIONS(661), - [anon_sym_u128] = ACTIONS(661), - [anon_sym_i128] = ACTIONS(661), - [anon_sym_isize] = ACTIONS(661), - [anon_sym_usize] = ACTIONS(661), - [anon_sym_f32] = ACTIONS(661), - [anon_sym_f64] = ACTIONS(661), - [anon_sym_bool] = ACTIONS(661), - [anon_sym_str] = ACTIONS(661), - [anon_sym_char] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_SLASH] = ACTIONS(673), - [anon_sym_PERCENT] = ACTIONS(673), - [anon_sym_CARET] = ACTIONS(673), - [anon_sym_BANG] = ACTIONS(673), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE] = ACTIONS(673), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [anon_sym_LT_LT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(673), - [anon_sym_PLUS_EQ] = ACTIONS(663), - [anon_sym_DASH_EQ] = ACTIONS(663), - [anon_sym_STAR_EQ] = ACTIONS(663), - [anon_sym_SLASH_EQ] = ACTIONS(663), - [anon_sym_PERCENT_EQ] = ACTIONS(663), - [anon_sym_CARET_EQ] = ACTIONS(663), - [anon_sym_AMP_EQ] = ACTIONS(663), - [anon_sym_PIPE_EQ] = ACTIONS(663), - [anon_sym_LT_LT_EQ] = ACTIONS(663), - [anon_sym_GT_GT_EQ] = ACTIONS(663), - [anon_sym_EQ] = ACTIONS(673), - [anon_sym_EQ_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_AT] = ACTIONS(663), - [anon_sym__] = ACTIONS(673), - [anon_sym_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_COLON_COLON] = ACTIONS(663), - [anon_sym_DASH_GT] = ACTIONS(663), - [anon_sym_POUND] = ACTIONS(663), - [anon_sym_SQUOTE] = ACTIONS(661), - [anon_sym_as] = ACTIONS(661), - [anon_sym_async] = ACTIONS(661), - [anon_sym_await] = ACTIONS(661), - [anon_sym_break] = ACTIONS(661), - [anon_sym_const] = ACTIONS(661), - [anon_sym_continue] = ACTIONS(661), - [anon_sym_default] = ACTIONS(661), - [anon_sym_enum] = ACTIONS(661), - [anon_sym_fn] = ACTIONS(661), - [anon_sym_for] = ACTIONS(661), - [anon_sym_if] = ACTIONS(661), - [anon_sym_impl] = ACTIONS(661), - [anon_sym_let] = ACTIONS(661), - [anon_sym_loop] = ACTIONS(661), - [anon_sym_match] = ACTIONS(661), - [anon_sym_mod] = ACTIONS(661), - [anon_sym_pub] = ACTIONS(661), - [anon_sym_return] = ACTIONS(661), - [anon_sym_static] = ACTIONS(661), - [anon_sym_struct] = ACTIONS(661), - [anon_sym_trait] = ACTIONS(661), - [anon_sym_type] = ACTIONS(661), - [anon_sym_union] = ACTIONS(661), - [anon_sym_unsafe] = ACTIONS(661), - [anon_sym_use] = ACTIONS(661), - [anon_sym_where] = ACTIONS(661), - [anon_sym_while] = ACTIONS(661), - [sym_mutable_specifier] = ACTIONS(661), - [sym_integer_literal] = ACTIONS(677), - [aux_sym_string_literal_token1] = ACTIONS(679), - [sym_char_literal] = ACTIONS(677), - [anon_sym_true] = ACTIONS(681), - [anon_sym_false] = ACTIONS(681), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_crate] = ACTIONS(661), - [sym__raw_string_literal_start] = ACTIONS(683), - [sym_float_literal] = ACTIONS(677), + [aux_sym_macro_def_body_repeat1] = STATE(117), + [aux_sym__non_special_token_repeat1] = STATE(141), + [sym_identifier] = ACTIONS(670), + [anon_sym_SEMI] = ACTIONS(559), + [anon_sym_LPAREN] = ACTIONS(672), + [anon_sym_LBRACK] = ACTIONS(674), + [anon_sym_LBRACE] = ACTIONS(676), + [anon_sym_RBRACE] = ACTIONS(736), + [anon_sym_COMMA] = ACTIONS(559), + [anon_sym_EQ_GT] = ACTIONS(559), + [anon_sym_COLON] = ACTIONS(569), + [anon_sym_DOLLAR] = ACTIONS(680), + [anon_sym_PLUS] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(569), + [anon_sym_QMARK] = ACTIONS(559), + [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_DASH] = ACTIONS(569), + [anon_sym_SLASH] = ACTIONS(569), + [anon_sym_PERCENT] = ACTIONS(569), + [anon_sym_CARET] = ACTIONS(569), + [anon_sym_BANG] = ACTIONS(569), + [anon_sym_AMP] = ACTIONS(569), + [anon_sym_PIPE] = ACTIONS(569), + [anon_sym_AMP_AMP] = ACTIONS(559), + [anon_sym_PIPE_PIPE] = ACTIONS(559), + [anon_sym_LT_LT] = ACTIONS(569), + [anon_sym_GT_GT] = ACTIONS(569), + [anon_sym_PLUS_EQ] = ACTIONS(559), + [anon_sym_DASH_EQ] = ACTIONS(559), + [anon_sym_STAR_EQ] = ACTIONS(559), + [anon_sym_SLASH_EQ] = ACTIONS(559), + [anon_sym_PERCENT_EQ] = ACTIONS(559), + [anon_sym_CARET_EQ] = ACTIONS(559), + [anon_sym_AMP_EQ] = ACTIONS(559), + [anon_sym_PIPE_EQ] = ACTIONS(559), + [anon_sym_LT_LT_EQ] = ACTIONS(559), + [anon_sym_GT_GT_EQ] = ACTIONS(559), + [anon_sym_EQ] = ACTIONS(569), + [anon_sym_EQ_EQ] = ACTIONS(559), + [anon_sym_BANG_EQ] = ACTIONS(559), + [anon_sym_GT] = ACTIONS(569), + [anon_sym_LT] = ACTIONS(569), + [anon_sym_GT_EQ] = ACTIONS(559), + [anon_sym_LT_EQ] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(559), + [anon_sym__] = ACTIONS(569), + [anon_sym_DOT] = ACTIONS(569), + [anon_sym_DOT_DOT] = ACTIONS(569), + [anon_sym_DOT_DOT_DOT] = ACTIONS(559), + [anon_sym_DOT_DOT_EQ] = ACTIONS(559), + [anon_sym_COLON_COLON] = ACTIONS(559), + [anon_sym_DASH_GT] = ACTIONS(559), + [anon_sym_POUND] = ACTIONS(559), + [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(573), + [aux_sym_string_literal_token1] = ACTIONS(575), + [sym_char_literal] = ACTIONS(573), + [anon_sym_true] = ACTIONS(577), + [anon_sym_false] = ACTIONS(577), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(670), + [sym_super] = ACTIONS(670), + [sym_crate] = ACTIONS(670), + [sym_metavariable] = ACTIONS(682), + [sym__raw_string_literal_start] = ACTIONS(581), + [sym_float_literal] = ACTIONS(573), }, [124] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), + [sym_token_tree] = STATE(158), + [sym_token_repetition] = STATE(158), + [sym__literal] = STATE(158), + [sym_string_literal] = STATE(166), + [sym_raw_string_literal] = STATE(166), + [sym_boolean_literal] = STATE(166), [sym_line_comment] = STATE(124), [sym_block_comment] = STATE(124), - [aux_sym__non_special_token_repeat1] = STATE(160), - [aux_sym_delim_token_tree_repeat1] = STATE(89), - [sym_identifier] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(663), - [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_RBRACK] = ACTIONS(709), - [anon_sym_LBRACE] = ACTIONS(671), - [anon_sym_EQ_GT] = ACTIONS(663), - [anon_sym_COLON] = ACTIONS(673), - [anon_sym_DOLLAR] = ACTIONS(675), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_STAR] = ACTIONS(673), - [anon_sym_QMARK] = ACTIONS(663), - [anon_sym_u8] = ACTIONS(661), - [anon_sym_i8] = ACTIONS(661), - [anon_sym_u16] = ACTIONS(661), - [anon_sym_i16] = ACTIONS(661), - [anon_sym_u32] = ACTIONS(661), - [anon_sym_i32] = ACTIONS(661), - [anon_sym_u64] = ACTIONS(661), - [anon_sym_i64] = ACTIONS(661), - [anon_sym_u128] = ACTIONS(661), - [anon_sym_i128] = ACTIONS(661), - [anon_sym_isize] = ACTIONS(661), - [anon_sym_usize] = ACTIONS(661), - [anon_sym_f32] = ACTIONS(661), - [anon_sym_f64] = ACTIONS(661), - [anon_sym_bool] = ACTIONS(661), - [anon_sym_str] = ACTIONS(661), - [anon_sym_char] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_SLASH] = ACTIONS(673), - [anon_sym_PERCENT] = ACTIONS(673), - [anon_sym_CARET] = ACTIONS(673), - [anon_sym_BANG] = ACTIONS(673), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE] = ACTIONS(673), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [anon_sym_LT_LT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(673), - [anon_sym_PLUS_EQ] = ACTIONS(663), - [anon_sym_DASH_EQ] = ACTIONS(663), - [anon_sym_STAR_EQ] = ACTIONS(663), - [anon_sym_SLASH_EQ] = ACTIONS(663), - [anon_sym_PERCENT_EQ] = ACTIONS(663), - [anon_sym_CARET_EQ] = ACTIONS(663), - [anon_sym_AMP_EQ] = ACTIONS(663), - [anon_sym_PIPE_EQ] = ACTIONS(663), - [anon_sym_LT_LT_EQ] = ACTIONS(663), - [anon_sym_GT_GT_EQ] = ACTIONS(663), - [anon_sym_EQ] = ACTIONS(673), - [anon_sym_EQ_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_AT] = ACTIONS(663), - [anon_sym__] = ACTIONS(673), - [anon_sym_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_COLON_COLON] = ACTIONS(663), - [anon_sym_DASH_GT] = ACTIONS(663), - [anon_sym_POUND] = ACTIONS(663), - [anon_sym_SQUOTE] = ACTIONS(661), - [anon_sym_as] = ACTIONS(661), - [anon_sym_async] = ACTIONS(661), - [anon_sym_await] = ACTIONS(661), - [anon_sym_break] = ACTIONS(661), - [anon_sym_const] = ACTIONS(661), - [anon_sym_continue] = ACTIONS(661), - [anon_sym_default] = ACTIONS(661), - [anon_sym_enum] = ACTIONS(661), - [anon_sym_fn] = ACTIONS(661), - [anon_sym_for] = ACTIONS(661), - [anon_sym_if] = ACTIONS(661), - [anon_sym_impl] = ACTIONS(661), - [anon_sym_let] = ACTIONS(661), - [anon_sym_loop] = ACTIONS(661), - [anon_sym_match] = ACTIONS(661), - [anon_sym_mod] = ACTIONS(661), - [anon_sym_pub] = ACTIONS(661), - [anon_sym_return] = ACTIONS(661), - [anon_sym_static] = ACTIONS(661), - [anon_sym_struct] = ACTIONS(661), - [anon_sym_trait] = ACTIONS(661), - [anon_sym_type] = ACTIONS(661), - [anon_sym_union] = ACTIONS(661), - [anon_sym_unsafe] = ACTIONS(661), - [anon_sym_use] = ACTIONS(661), - [anon_sym_where] = ACTIONS(661), - [anon_sym_while] = ACTIONS(661), - [sym_mutable_specifier] = ACTIONS(661), - [sym_integer_literal] = ACTIONS(677), - [aux_sym_string_literal_token1] = ACTIONS(679), - [sym_char_literal] = ACTIONS(677), - [anon_sym_true] = ACTIONS(681), - [anon_sym_false] = ACTIONS(681), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_crate] = ACTIONS(661), - [sym__raw_string_literal_start] = ACTIONS(683), - [sym_float_literal] = ACTIONS(677), + [aux_sym_macro_def_body_repeat1] = STATE(85), + [aux_sym__non_special_token_repeat1] = STATE(141), + [sym_identifier] = ACTIONS(670), + [anon_sym_SEMI] = ACTIONS(559), + [anon_sym_LPAREN] = ACTIONS(672), + [anon_sym_LBRACK] = ACTIONS(674), + [anon_sym_RBRACK] = ACTIONS(734), + [anon_sym_LBRACE] = ACTIONS(676), + [anon_sym_COMMA] = ACTIONS(559), + [anon_sym_EQ_GT] = ACTIONS(559), + [anon_sym_COLON] = ACTIONS(569), + [anon_sym_DOLLAR] = ACTIONS(680), + [anon_sym_PLUS] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(569), + [anon_sym_QMARK] = ACTIONS(559), + [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_DASH] = ACTIONS(569), + [anon_sym_SLASH] = ACTIONS(569), + [anon_sym_PERCENT] = ACTIONS(569), + [anon_sym_CARET] = ACTIONS(569), + [anon_sym_BANG] = ACTIONS(569), + [anon_sym_AMP] = ACTIONS(569), + [anon_sym_PIPE] = ACTIONS(569), + [anon_sym_AMP_AMP] = ACTIONS(559), + [anon_sym_PIPE_PIPE] = ACTIONS(559), + [anon_sym_LT_LT] = ACTIONS(569), + [anon_sym_GT_GT] = ACTIONS(569), + [anon_sym_PLUS_EQ] = ACTIONS(559), + [anon_sym_DASH_EQ] = ACTIONS(559), + [anon_sym_STAR_EQ] = ACTIONS(559), + [anon_sym_SLASH_EQ] = ACTIONS(559), + [anon_sym_PERCENT_EQ] = ACTIONS(559), + [anon_sym_CARET_EQ] = ACTIONS(559), + [anon_sym_AMP_EQ] = ACTIONS(559), + [anon_sym_PIPE_EQ] = ACTIONS(559), + [anon_sym_LT_LT_EQ] = ACTIONS(559), + [anon_sym_GT_GT_EQ] = ACTIONS(559), + [anon_sym_EQ] = ACTIONS(569), + [anon_sym_EQ_EQ] = ACTIONS(559), + [anon_sym_BANG_EQ] = ACTIONS(559), + [anon_sym_GT] = ACTIONS(569), + [anon_sym_LT] = ACTIONS(569), + [anon_sym_GT_EQ] = ACTIONS(559), + [anon_sym_LT_EQ] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(559), + [anon_sym__] = ACTIONS(569), + [anon_sym_DOT] = ACTIONS(569), + [anon_sym_DOT_DOT] = ACTIONS(569), + [anon_sym_DOT_DOT_DOT] = ACTIONS(559), + [anon_sym_DOT_DOT_EQ] = ACTIONS(559), + [anon_sym_COLON_COLON] = ACTIONS(559), + [anon_sym_DASH_GT] = ACTIONS(559), + [anon_sym_POUND] = ACTIONS(559), + [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(573), + [aux_sym_string_literal_token1] = ACTIONS(575), + [sym_char_literal] = ACTIONS(573), + [anon_sym_true] = ACTIONS(577), + [anon_sym_false] = ACTIONS(577), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(670), + [sym_super] = ACTIONS(670), + [sym_crate] = ACTIONS(670), + [sym_metavariable] = ACTIONS(682), + [sym__raw_string_literal_start] = ACTIONS(581), + [sym_float_literal] = ACTIONS(573), }, [125] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), + [sym_token_tree] = STATE(158), + [sym_token_repetition] = STATE(158), + [sym__literal] = STATE(158), + [sym_string_literal] = STATE(166), + [sym_raw_string_literal] = STATE(166), + [sym_boolean_literal] = STATE(166), [sym_line_comment] = STATE(125), [sym_block_comment] = STATE(125), - [aux_sym__non_special_token_repeat1] = STATE(160), - [aux_sym_delim_token_tree_repeat1] = STATE(84), - [sym_identifier] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(663), - [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_RPAREN] = ACTIONS(727), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(671), - [anon_sym_EQ_GT] = ACTIONS(663), - [anon_sym_COLON] = ACTIONS(673), - [anon_sym_DOLLAR] = ACTIONS(675), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_STAR] = ACTIONS(673), - [anon_sym_QMARK] = ACTIONS(663), - [anon_sym_u8] = ACTIONS(661), - [anon_sym_i8] = ACTIONS(661), - [anon_sym_u16] = ACTIONS(661), - [anon_sym_i16] = ACTIONS(661), - [anon_sym_u32] = ACTIONS(661), - [anon_sym_i32] = ACTIONS(661), - [anon_sym_u64] = ACTIONS(661), - [anon_sym_i64] = ACTIONS(661), - [anon_sym_u128] = ACTIONS(661), - [anon_sym_i128] = ACTIONS(661), - [anon_sym_isize] = ACTIONS(661), - [anon_sym_usize] = ACTIONS(661), - [anon_sym_f32] = ACTIONS(661), - [anon_sym_f64] = ACTIONS(661), - [anon_sym_bool] = ACTIONS(661), - [anon_sym_str] = ACTIONS(661), - [anon_sym_char] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_SLASH] = ACTIONS(673), - [anon_sym_PERCENT] = ACTIONS(673), - [anon_sym_CARET] = ACTIONS(673), - [anon_sym_BANG] = ACTIONS(673), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE] = ACTIONS(673), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [anon_sym_LT_LT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(673), - [anon_sym_PLUS_EQ] = ACTIONS(663), - [anon_sym_DASH_EQ] = ACTIONS(663), - [anon_sym_STAR_EQ] = ACTIONS(663), - [anon_sym_SLASH_EQ] = ACTIONS(663), - [anon_sym_PERCENT_EQ] = ACTIONS(663), - [anon_sym_CARET_EQ] = ACTIONS(663), - [anon_sym_AMP_EQ] = ACTIONS(663), - [anon_sym_PIPE_EQ] = ACTIONS(663), - [anon_sym_LT_LT_EQ] = ACTIONS(663), - [anon_sym_GT_GT_EQ] = ACTIONS(663), - [anon_sym_EQ] = ACTIONS(673), - [anon_sym_EQ_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_AT] = ACTIONS(663), - [anon_sym__] = ACTIONS(673), - [anon_sym_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_COLON_COLON] = ACTIONS(663), - [anon_sym_DASH_GT] = ACTIONS(663), - [anon_sym_POUND] = ACTIONS(663), - [anon_sym_SQUOTE] = ACTIONS(661), - [anon_sym_as] = ACTIONS(661), - [anon_sym_async] = ACTIONS(661), - [anon_sym_await] = ACTIONS(661), - [anon_sym_break] = ACTIONS(661), - [anon_sym_const] = ACTIONS(661), - [anon_sym_continue] = ACTIONS(661), - [anon_sym_default] = ACTIONS(661), - [anon_sym_enum] = ACTIONS(661), - [anon_sym_fn] = ACTIONS(661), - [anon_sym_for] = ACTIONS(661), - [anon_sym_if] = ACTIONS(661), - [anon_sym_impl] = ACTIONS(661), - [anon_sym_let] = ACTIONS(661), - [anon_sym_loop] = ACTIONS(661), - [anon_sym_match] = ACTIONS(661), - [anon_sym_mod] = ACTIONS(661), - [anon_sym_pub] = ACTIONS(661), - [anon_sym_return] = ACTIONS(661), - [anon_sym_static] = ACTIONS(661), - [anon_sym_struct] = ACTIONS(661), - [anon_sym_trait] = ACTIONS(661), - [anon_sym_type] = ACTIONS(661), - [anon_sym_union] = ACTIONS(661), - [anon_sym_unsafe] = ACTIONS(661), - [anon_sym_use] = ACTIONS(661), - [anon_sym_where] = ACTIONS(661), - [anon_sym_while] = ACTIONS(661), - [sym_mutable_specifier] = ACTIONS(661), - [sym_integer_literal] = ACTIONS(677), - [aux_sym_string_literal_token1] = ACTIONS(679), - [sym_char_literal] = ACTIONS(677), - [anon_sym_true] = ACTIONS(681), - [anon_sym_false] = ACTIONS(681), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_crate] = ACTIONS(661), - [sym__raw_string_literal_start] = ACTIONS(683), - [sym_float_literal] = ACTIONS(677), + [aux_sym_macro_def_body_repeat1] = STATE(85), + [aux_sym__non_special_token_repeat1] = STATE(141), + [sym_identifier] = ACTIONS(670), + [anon_sym_SEMI] = ACTIONS(559), + [anon_sym_LPAREN] = ACTIONS(672), + [anon_sym_RPAREN] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(674), + [anon_sym_LBRACE] = ACTIONS(676), + [anon_sym_COMMA] = ACTIONS(559), + [anon_sym_EQ_GT] = ACTIONS(559), + [anon_sym_COLON] = ACTIONS(569), + [anon_sym_DOLLAR] = ACTIONS(680), + [anon_sym_PLUS] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(569), + [anon_sym_QMARK] = ACTIONS(559), + [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_DASH] = ACTIONS(569), + [anon_sym_SLASH] = ACTIONS(569), + [anon_sym_PERCENT] = ACTIONS(569), + [anon_sym_CARET] = ACTIONS(569), + [anon_sym_BANG] = ACTIONS(569), + [anon_sym_AMP] = ACTIONS(569), + [anon_sym_PIPE] = ACTIONS(569), + [anon_sym_AMP_AMP] = ACTIONS(559), + [anon_sym_PIPE_PIPE] = ACTIONS(559), + [anon_sym_LT_LT] = ACTIONS(569), + [anon_sym_GT_GT] = ACTIONS(569), + [anon_sym_PLUS_EQ] = ACTIONS(559), + [anon_sym_DASH_EQ] = ACTIONS(559), + [anon_sym_STAR_EQ] = ACTIONS(559), + [anon_sym_SLASH_EQ] = ACTIONS(559), + [anon_sym_PERCENT_EQ] = ACTIONS(559), + [anon_sym_CARET_EQ] = ACTIONS(559), + [anon_sym_AMP_EQ] = ACTIONS(559), + [anon_sym_PIPE_EQ] = ACTIONS(559), + [anon_sym_LT_LT_EQ] = ACTIONS(559), + [anon_sym_GT_GT_EQ] = ACTIONS(559), + [anon_sym_EQ] = ACTIONS(569), + [anon_sym_EQ_EQ] = ACTIONS(559), + [anon_sym_BANG_EQ] = ACTIONS(559), + [anon_sym_GT] = ACTIONS(569), + [anon_sym_LT] = ACTIONS(569), + [anon_sym_GT_EQ] = ACTIONS(559), + [anon_sym_LT_EQ] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(559), + [anon_sym__] = ACTIONS(569), + [anon_sym_DOT] = ACTIONS(569), + [anon_sym_DOT_DOT] = ACTIONS(569), + [anon_sym_DOT_DOT_DOT] = ACTIONS(559), + [anon_sym_DOT_DOT_EQ] = ACTIONS(559), + [anon_sym_COLON_COLON] = ACTIONS(559), + [anon_sym_DASH_GT] = ACTIONS(559), + [anon_sym_POUND] = ACTIONS(559), + [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(573), + [aux_sym_string_literal_token1] = ACTIONS(575), + [sym_char_literal] = ACTIONS(573), + [anon_sym_true] = ACTIONS(577), + [anon_sym_false] = ACTIONS(577), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(670), + [sym_super] = ACTIONS(670), + [sym_crate] = ACTIONS(670), + [sym_metavariable] = ACTIONS(682), + [sym__raw_string_literal_start] = ACTIONS(581), + [sym_float_literal] = ACTIONS(573), }, [126] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), + [sym_token_tree] = STATE(158), + [sym_token_repetition] = STATE(158), + [sym__literal] = STATE(158), + [sym_string_literal] = STATE(166), + [sym_raw_string_literal] = STATE(166), + [sym_boolean_literal] = STATE(166), [sym_line_comment] = STATE(126), [sym_block_comment] = STATE(126), - [aux_sym__non_special_token_repeat1] = STATE(160), - [aux_sym_delim_token_tree_repeat1] = STATE(128), - [sym_identifier] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(663), - [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_RBRACK] = ACTIONS(727), - [anon_sym_LBRACE] = ACTIONS(671), - [anon_sym_EQ_GT] = ACTIONS(663), - [anon_sym_COLON] = ACTIONS(673), - [anon_sym_DOLLAR] = ACTIONS(675), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_STAR] = ACTIONS(673), - [anon_sym_QMARK] = ACTIONS(663), - [anon_sym_u8] = ACTIONS(661), - [anon_sym_i8] = ACTIONS(661), - [anon_sym_u16] = ACTIONS(661), - [anon_sym_i16] = ACTIONS(661), - [anon_sym_u32] = ACTIONS(661), - [anon_sym_i32] = ACTIONS(661), - [anon_sym_u64] = ACTIONS(661), - [anon_sym_i64] = ACTIONS(661), - [anon_sym_u128] = ACTIONS(661), - [anon_sym_i128] = ACTIONS(661), - [anon_sym_isize] = ACTIONS(661), - [anon_sym_usize] = ACTIONS(661), - [anon_sym_f32] = ACTIONS(661), - [anon_sym_f64] = ACTIONS(661), - [anon_sym_bool] = ACTIONS(661), - [anon_sym_str] = ACTIONS(661), - [anon_sym_char] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_SLASH] = ACTIONS(673), - [anon_sym_PERCENT] = ACTIONS(673), - [anon_sym_CARET] = ACTIONS(673), - [anon_sym_BANG] = ACTIONS(673), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE] = ACTIONS(673), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [anon_sym_LT_LT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(673), - [anon_sym_PLUS_EQ] = ACTIONS(663), - [anon_sym_DASH_EQ] = ACTIONS(663), - [anon_sym_STAR_EQ] = ACTIONS(663), - [anon_sym_SLASH_EQ] = ACTIONS(663), - [anon_sym_PERCENT_EQ] = ACTIONS(663), - [anon_sym_CARET_EQ] = ACTIONS(663), - [anon_sym_AMP_EQ] = ACTIONS(663), - [anon_sym_PIPE_EQ] = ACTIONS(663), - [anon_sym_LT_LT_EQ] = ACTIONS(663), - [anon_sym_GT_GT_EQ] = ACTIONS(663), - [anon_sym_EQ] = ACTIONS(673), - [anon_sym_EQ_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_AT] = ACTIONS(663), - [anon_sym__] = ACTIONS(673), - [anon_sym_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_COLON_COLON] = ACTIONS(663), - [anon_sym_DASH_GT] = ACTIONS(663), - [anon_sym_POUND] = ACTIONS(663), - [anon_sym_SQUOTE] = ACTIONS(661), - [anon_sym_as] = ACTIONS(661), - [anon_sym_async] = ACTIONS(661), - [anon_sym_await] = ACTIONS(661), - [anon_sym_break] = ACTIONS(661), - [anon_sym_const] = ACTIONS(661), - [anon_sym_continue] = ACTIONS(661), - [anon_sym_default] = ACTIONS(661), - [anon_sym_enum] = ACTIONS(661), - [anon_sym_fn] = ACTIONS(661), - [anon_sym_for] = ACTIONS(661), - [anon_sym_if] = ACTIONS(661), - [anon_sym_impl] = ACTIONS(661), - [anon_sym_let] = ACTIONS(661), - [anon_sym_loop] = ACTIONS(661), - [anon_sym_match] = ACTIONS(661), - [anon_sym_mod] = ACTIONS(661), - [anon_sym_pub] = ACTIONS(661), - [anon_sym_return] = ACTIONS(661), - [anon_sym_static] = ACTIONS(661), - [anon_sym_struct] = ACTIONS(661), - [anon_sym_trait] = ACTIONS(661), - [anon_sym_type] = ACTIONS(661), - [anon_sym_union] = ACTIONS(661), - [anon_sym_unsafe] = ACTIONS(661), - [anon_sym_use] = ACTIONS(661), - [anon_sym_where] = ACTIONS(661), - [anon_sym_while] = ACTIONS(661), - [sym_mutable_specifier] = ACTIONS(661), - [sym_integer_literal] = ACTIONS(677), - [aux_sym_string_literal_token1] = ACTIONS(679), - [sym_char_literal] = ACTIONS(677), - [anon_sym_true] = ACTIONS(681), - [anon_sym_false] = ACTIONS(681), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_crate] = ACTIONS(661), - [sym__raw_string_literal_start] = ACTIONS(683), - [sym_float_literal] = ACTIONS(677), + [aux_sym_macro_def_body_repeat1] = STATE(85), + [aux_sym__non_special_token_repeat1] = STATE(141), + [sym_identifier] = ACTIONS(670), + [anon_sym_SEMI] = ACTIONS(559), + [anon_sym_LPAREN] = ACTIONS(672), + [anon_sym_LBRACK] = ACTIONS(674), + [anon_sym_LBRACE] = ACTIONS(676), + [anon_sym_RBRACE] = ACTIONS(734), + [anon_sym_COMMA] = ACTIONS(559), + [anon_sym_EQ_GT] = ACTIONS(559), + [anon_sym_COLON] = ACTIONS(569), + [anon_sym_DOLLAR] = ACTIONS(680), + [anon_sym_PLUS] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(569), + [anon_sym_QMARK] = ACTIONS(559), + [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_DASH] = ACTIONS(569), + [anon_sym_SLASH] = ACTIONS(569), + [anon_sym_PERCENT] = ACTIONS(569), + [anon_sym_CARET] = ACTIONS(569), + [anon_sym_BANG] = ACTIONS(569), + [anon_sym_AMP] = ACTIONS(569), + [anon_sym_PIPE] = ACTIONS(569), + [anon_sym_AMP_AMP] = ACTIONS(559), + [anon_sym_PIPE_PIPE] = ACTIONS(559), + [anon_sym_LT_LT] = ACTIONS(569), + [anon_sym_GT_GT] = ACTIONS(569), + [anon_sym_PLUS_EQ] = ACTIONS(559), + [anon_sym_DASH_EQ] = ACTIONS(559), + [anon_sym_STAR_EQ] = ACTIONS(559), + [anon_sym_SLASH_EQ] = ACTIONS(559), + [anon_sym_PERCENT_EQ] = ACTIONS(559), + [anon_sym_CARET_EQ] = ACTIONS(559), + [anon_sym_AMP_EQ] = ACTIONS(559), + [anon_sym_PIPE_EQ] = ACTIONS(559), + [anon_sym_LT_LT_EQ] = ACTIONS(559), + [anon_sym_GT_GT_EQ] = ACTIONS(559), + [anon_sym_EQ] = ACTIONS(569), + [anon_sym_EQ_EQ] = ACTIONS(559), + [anon_sym_BANG_EQ] = ACTIONS(559), + [anon_sym_GT] = ACTIONS(569), + [anon_sym_LT] = ACTIONS(569), + [anon_sym_GT_EQ] = ACTIONS(559), + [anon_sym_LT_EQ] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(559), + [anon_sym__] = ACTIONS(569), + [anon_sym_DOT] = ACTIONS(569), + [anon_sym_DOT_DOT] = ACTIONS(569), + [anon_sym_DOT_DOT_DOT] = ACTIONS(559), + [anon_sym_DOT_DOT_EQ] = ACTIONS(559), + [anon_sym_COLON_COLON] = ACTIONS(559), + [anon_sym_DASH_GT] = ACTIONS(559), + [anon_sym_POUND] = ACTIONS(559), + [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(573), + [aux_sym_string_literal_token1] = ACTIONS(575), + [sym_char_literal] = ACTIONS(573), + [anon_sym_true] = ACTIONS(577), + [anon_sym_false] = ACTIONS(577), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(670), + [sym_super] = ACTIONS(670), + [sym_crate] = ACTIONS(670), + [sym_metavariable] = ACTIONS(682), + [sym__raw_string_literal_start] = ACTIONS(581), + [sym_float_literal] = ACTIONS(573), }, [127] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), + [sym_delim_token_tree] = STATE(201), + [sym__delim_tokens] = STATE(198), + [sym__non_delim_token] = STATE(201), + [sym__literal] = STATE(205), + [sym_string_literal] = STATE(214), + [sym_raw_string_literal] = STATE(214), + [sym_boolean_literal] = STATE(214), [sym_line_comment] = STATE(127), [sym_block_comment] = STATE(127), - [aux_sym__non_special_token_repeat1] = STATE(160), - [aux_sym_delim_token_tree_repeat1] = STATE(129), - [sym_identifier] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(663), - [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(671), - [anon_sym_RBRACE] = ACTIONS(727), - [anon_sym_EQ_GT] = ACTIONS(663), - [anon_sym_COLON] = ACTIONS(673), - [anon_sym_DOLLAR] = ACTIONS(675), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_STAR] = ACTIONS(673), - [anon_sym_QMARK] = ACTIONS(663), - [anon_sym_u8] = ACTIONS(661), - [anon_sym_i8] = ACTIONS(661), - [anon_sym_u16] = ACTIONS(661), - [anon_sym_i16] = ACTIONS(661), - [anon_sym_u32] = ACTIONS(661), - [anon_sym_i32] = ACTIONS(661), - [anon_sym_u64] = ACTIONS(661), - [anon_sym_i64] = ACTIONS(661), - [anon_sym_u128] = ACTIONS(661), - [anon_sym_i128] = ACTIONS(661), - [anon_sym_isize] = ACTIONS(661), - [anon_sym_usize] = ACTIONS(661), - [anon_sym_f32] = ACTIONS(661), - [anon_sym_f64] = ACTIONS(661), - [anon_sym_bool] = ACTIONS(661), - [anon_sym_str] = ACTIONS(661), - [anon_sym_char] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_SLASH] = ACTIONS(673), - [anon_sym_PERCENT] = ACTIONS(673), - [anon_sym_CARET] = ACTIONS(673), - [anon_sym_BANG] = ACTIONS(673), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE] = ACTIONS(673), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [anon_sym_LT_LT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(673), - [anon_sym_PLUS_EQ] = ACTIONS(663), - [anon_sym_DASH_EQ] = ACTIONS(663), - [anon_sym_STAR_EQ] = ACTIONS(663), - [anon_sym_SLASH_EQ] = ACTIONS(663), - [anon_sym_PERCENT_EQ] = ACTIONS(663), - [anon_sym_CARET_EQ] = ACTIONS(663), - [anon_sym_AMP_EQ] = ACTIONS(663), - [anon_sym_PIPE_EQ] = ACTIONS(663), - [anon_sym_LT_LT_EQ] = ACTIONS(663), - [anon_sym_GT_GT_EQ] = ACTIONS(663), - [anon_sym_EQ] = ACTIONS(673), - [anon_sym_EQ_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_AT] = ACTIONS(663), - [anon_sym__] = ACTIONS(673), - [anon_sym_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_COLON_COLON] = ACTIONS(663), - [anon_sym_DASH_GT] = ACTIONS(663), - [anon_sym_POUND] = ACTIONS(663), - [anon_sym_SQUOTE] = ACTIONS(661), - [anon_sym_as] = ACTIONS(661), - [anon_sym_async] = ACTIONS(661), - [anon_sym_await] = ACTIONS(661), - [anon_sym_break] = ACTIONS(661), - [anon_sym_const] = ACTIONS(661), - [anon_sym_continue] = ACTIONS(661), - [anon_sym_default] = ACTIONS(661), - [anon_sym_enum] = ACTIONS(661), - [anon_sym_fn] = ACTIONS(661), - [anon_sym_for] = ACTIONS(661), - [anon_sym_if] = ACTIONS(661), - [anon_sym_impl] = ACTIONS(661), - [anon_sym_let] = ACTIONS(661), - [anon_sym_loop] = ACTIONS(661), - [anon_sym_match] = ACTIONS(661), - [anon_sym_mod] = ACTIONS(661), - [anon_sym_pub] = ACTIONS(661), - [anon_sym_return] = ACTIONS(661), - [anon_sym_static] = ACTIONS(661), - [anon_sym_struct] = ACTIONS(661), - [anon_sym_trait] = ACTIONS(661), - [anon_sym_type] = ACTIONS(661), - [anon_sym_union] = ACTIONS(661), - [anon_sym_unsafe] = ACTIONS(661), - [anon_sym_use] = ACTIONS(661), - [anon_sym_where] = ACTIONS(661), - [anon_sym_while] = ACTIONS(661), - [sym_mutable_specifier] = ACTIONS(661), - [sym_integer_literal] = ACTIONS(677), - [aux_sym_string_literal_token1] = ACTIONS(679), - [sym_char_literal] = ACTIONS(677), - [anon_sym_true] = ACTIONS(681), - [anon_sym_false] = ACTIONS(681), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_crate] = ACTIONS(661), - [sym__raw_string_literal_start] = ACTIONS(683), - [sym_float_literal] = ACTIONS(677), + [aux_sym__non_special_token_repeat1] = STATE(152), + [aux_sym_delim_token_tree_repeat1] = STATE(83), + [sym_identifier] = ACTIONS(686), + [anon_sym_SEMI] = ACTIONS(688), + [anon_sym_LPAREN] = ACTIONS(690), + [anon_sym_RPAREN] = ACTIONS(710), + [anon_sym_LBRACK] = ACTIONS(692), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_COMMA] = ACTIONS(688), + [anon_sym_EQ_GT] = ACTIONS(688), + [anon_sym_COLON] = ACTIONS(698), + [anon_sym_DOLLAR] = ACTIONS(700), + [anon_sym_PLUS] = ACTIONS(698), + [anon_sym_STAR] = ACTIONS(698), + [anon_sym_QMARK] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(686), + [anon_sym_i8] = ACTIONS(686), + [anon_sym_u16] = ACTIONS(686), + [anon_sym_i16] = ACTIONS(686), + [anon_sym_u32] = ACTIONS(686), + [anon_sym_i32] = ACTIONS(686), + [anon_sym_u64] = ACTIONS(686), + [anon_sym_i64] = ACTIONS(686), + [anon_sym_u128] = ACTIONS(686), + [anon_sym_i128] = ACTIONS(686), + [anon_sym_isize] = ACTIONS(686), + [anon_sym_usize] = ACTIONS(686), + [anon_sym_f32] = ACTIONS(686), + [anon_sym_f64] = ACTIONS(686), + [anon_sym_bool] = ACTIONS(686), + [anon_sym_str] = ACTIONS(686), + [anon_sym_char] = ACTIONS(686), + [anon_sym_DASH] = ACTIONS(698), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_PERCENT] = ACTIONS(698), + [anon_sym_CARET] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(698), + [anon_sym_AMP] = ACTIONS(698), + [anon_sym_PIPE] = ACTIONS(698), + [anon_sym_AMP_AMP] = ACTIONS(688), + [anon_sym_PIPE_PIPE] = ACTIONS(688), + [anon_sym_LT_LT] = ACTIONS(698), + [anon_sym_GT_GT] = ACTIONS(698), + [anon_sym_PLUS_EQ] = ACTIONS(688), + [anon_sym_DASH_EQ] = ACTIONS(688), + [anon_sym_STAR_EQ] = ACTIONS(688), + [anon_sym_SLASH_EQ] = ACTIONS(688), + [anon_sym_PERCENT_EQ] = ACTIONS(688), + [anon_sym_CARET_EQ] = ACTIONS(688), + [anon_sym_AMP_EQ] = ACTIONS(688), + [anon_sym_PIPE_EQ] = ACTIONS(688), + [anon_sym_LT_LT_EQ] = ACTIONS(688), + [anon_sym_GT_GT_EQ] = ACTIONS(688), + [anon_sym_EQ] = ACTIONS(698), + [anon_sym_EQ_EQ] = ACTIONS(688), + [anon_sym_BANG_EQ] = ACTIONS(688), + [anon_sym_GT] = ACTIONS(698), + [anon_sym_LT] = ACTIONS(698), + [anon_sym_GT_EQ] = ACTIONS(688), + [anon_sym_LT_EQ] = ACTIONS(688), + [anon_sym_AT] = ACTIONS(688), + [anon_sym__] = ACTIONS(698), + [anon_sym_DOT] = ACTIONS(698), + [anon_sym_DOT_DOT] = ACTIONS(698), + [anon_sym_DOT_DOT_DOT] = ACTIONS(688), + [anon_sym_DOT_DOT_EQ] = ACTIONS(688), + [anon_sym_COLON_COLON] = ACTIONS(688), + [anon_sym_DASH_GT] = ACTIONS(688), + [anon_sym_POUND] = ACTIONS(688), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_as] = ACTIONS(686), + [anon_sym_async] = ACTIONS(686), + [anon_sym_await] = ACTIONS(686), + [anon_sym_break] = ACTIONS(686), + [anon_sym_const] = ACTIONS(686), + [anon_sym_continue] = ACTIONS(686), + [anon_sym_default] = ACTIONS(686), + [anon_sym_enum] = ACTIONS(686), + [anon_sym_fn] = ACTIONS(686), + [anon_sym_for] = ACTIONS(686), + [anon_sym_if] = ACTIONS(686), + [anon_sym_impl] = ACTIONS(686), + [anon_sym_let] = ACTIONS(686), + [anon_sym_loop] = ACTIONS(686), + [anon_sym_match] = ACTIONS(686), + [anon_sym_mod] = ACTIONS(686), + [anon_sym_pub] = ACTIONS(686), + [anon_sym_return] = ACTIONS(686), + [anon_sym_static] = ACTIONS(686), + [anon_sym_struct] = ACTIONS(686), + [anon_sym_trait] = ACTIONS(686), + [anon_sym_type] = ACTIONS(686), + [anon_sym_union] = ACTIONS(686), + [anon_sym_unsafe] = ACTIONS(686), + [anon_sym_use] = ACTIONS(686), + [anon_sym_where] = ACTIONS(686), + [anon_sym_while] = ACTIONS(686), + [sym_mutable_specifier] = ACTIONS(686), + [sym_integer_literal] = ACTIONS(702), + [aux_sym_string_literal_token1] = ACTIONS(704), + [sym_char_literal] = ACTIONS(702), + [anon_sym_true] = ACTIONS(706), + [anon_sym_false] = ACTIONS(706), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(686), + [sym_super] = ACTIONS(686), + [sym_crate] = ACTIONS(686), + [sym__raw_string_literal_start] = ACTIONS(708), + [sym_float_literal] = ACTIONS(702), }, [128] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), + [sym_token_tree] = STATE(158), + [sym_token_repetition] = STATE(158), + [sym__literal] = STATE(158), + [sym_string_literal] = STATE(166), + [sym_raw_string_literal] = STATE(166), + [sym_boolean_literal] = STATE(166), [sym_line_comment] = STATE(128), [sym_block_comment] = STATE(128), - [aux_sym__non_special_token_repeat1] = STATE(160), - [aux_sym_delim_token_tree_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(663), - [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_RBRACK] = ACTIONS(667), - [anon_sym_LBRACE] = ACTIONS(671), - [anon_sym_EQ_GT] = ACTIONS(663), - [anon_sym_COLON] = ACTIONS(673), - [anon_sym_DOLLAR] = ACTIONS(675), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_STAR] = ACTIONS(673), - [anon_sym_QMARK] = ACTIONS(663), - [anon_sym_u8] = ACTIONS(661), - [anon_sym_i8] = ACTIONS(661), - [anon_sym_u16] = ACTIONS(661), - [anon_sym_i16] = ACTIONS(661), - [anon_sym_u32] = ACTIONS(661), - [anon_sym_i32] = ACTIONS(661), - [anon_sym_u64] = ACTIONS(661), - [anon_sym_i64] = ACTIONS(661), - [anon_sym_u128] = ACTIONS(661), - [anon_sym_i128] = ACTIONS(661), - [anon_sym_isize] = ACTIONS(661), - [anon_sym_usize] = ACTIONS(661), - [anon_sym_f32] = ACTIONS(661), - [anon_sym_f64] = ACTIONS(661), - [anon_sym_bool] = ACTIONS(661), - [anon_sym_str] = ACTIONS(661), - [anon_sym_char] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_SLASH] = ACTIONS(673), - [anon_sym_PERCENT] = ACTIONS(673), - [anon_sym_CARET] = ACTIONS(673), - [anon_sym_BANG] = ACTIONS(673), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE] = ACTIONS(673), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [anon_sym_LT_LT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(673), - [anon_sym_PLUS_EQ] = ACTIONS(663), - [anon_sym_DASH_EQ] = ACTIONS(663), - [anon_sym_STAR_EQ] = ACTIONS(663), - [anon_sym_SLASH_EQ] = ACTIONS(663), - [anon_sym_PERCENT_EQ] = ACTIONS(663), - [anon_sym_CARET_EQ] = ACTIONS(663), - [anon_sym_AMP_EQ] = ACTIONS(663), - [anon_sym_PIPE_EQ] = ACTIONS(663), - [anon_sym_LT_LT_EQ] = ACTIONS(663), - [anon_sym_GT_GT_EQ] = ACTIONS(663), - [anon_sym_EQ] = ACTIONS(673), - [anon_sym_EQ_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_AT] = ACTIONS(663), - [anon_sym__] = ACTIONS(673), - [anon_sym_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_COLON_COLON] = ACTIONS(663), - [anon_sym_DASH_GT] = ACTIONS(663), - [anon_sym_POUND] = ACTIONS(663), - [anon_sym_SQUOTE] = ACTIONS(661), - [anon_sym_as] = ACTIONS(661), - [anon_sym_async] = ACTIONS(661), - [anon_sym_await] = ACTIONS(661), - [anon_sym_break] = ACTIONS(661), - [anon_sym_const] = ACTIONS(661), - [anon_sym_continue] = ACTIONS(661), - [anon_sym_default] = ACTIONS(661), - [anon_sym_enum] = ACTIONS(661), - [anon_sym_fn] = ACTIONS(661), - [anon_sym_for] = ACTIONS(661), - [anon_sym_if] = ACTIONS(661), - [anon_sym_impl] = ACTIONS(661), - [anon_sym_let] = ACTIONS(661), - [anon_sym_loop] = ACTIONS(661), - [anon_sym_match] = ACTIONS(661), - [anon_sym_mod] = ACTIONS(661), - [anon_sym_pub] = ACTIONS(661), - [anon_sym_return] = ACTIONS(661), - [anon_sym_static] = ACTIONS(661), - [anon_sym_struct] = ACTIONS(661), - [anon_sym_trait] = ACTIONS(661), - [anon_sym_type] = ACTIONS(661), - [anon_sym_union] = ACTIONS(661), - [anon_sym_unsafe] = ACTIONS(661), - [anon_sym_use] = ACTIONS(661), - [anon_sym_where] = ACTIONS(661), - [anon_sym_while] = ACTIONS(661), - [sym_mutable_specifier] = ACTIONS(661), - [sym_integer_literal] = ACTIONS(677), - [aux_sym_string_literal_token1] = ACTIONS(679), - [sym_char_literal] = ACTIONS(677), - [anon_sym_true] = ACTIONS(681), - [anon_sym_false] = ACTIONS(681), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_crate] = ACTIONS(661), - [sym__raw_string_literal_start] = ACTIONS(683), - [sym_float_literal] = ACTIONS(677), + [aux_sym_macro_def_body_repeat1] = STATE(85), + [aux_sym__non_special_token_repeat1] = STATE(141), + [sym_identifier] = ACTIONS(670), + [anon_sym_SEMI] = ACTIONS(559), + [anon_sym_LPAREN] = ACTIONS(672), + [anon_sym_LBRACK] = ACTIONS(674), + [anon_sym_LBRACE] = ACTIONS(676), + [anon_sym_RBRACE] = ACTIONS(740), + [anon_sym_COMMA] = ACTIONS(559), + [anon_sym_EQ_GT] = ACTIONS(559), + [anon_sym_COLON] = ACTIONS(569), + [anon_sym_DOLLAR] = ACTIONS(680), + [anon_sym_PLUS] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(569), + [anon_sym_QMARK] = ACTIONS(559), + [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_DASH] = ACTIONS(569), + [anon_sym_SLASH] = ACTIONS(569), + [anon_sym_PERCENT] = ACTIONS(569), + [anon_sym_CARET] = ACTIONS(569), + [anon_sym_BANG] = ACTIONS(569), + [anon_sym_AMP] = ACTIONS(569), + [anon_sym_PIPE] = ACTIONS(569), + [anon_sym_AMP_AMP] = ACTIONS(559), + [anon_sym_PIPE_PIPE] = ACTIONS(559), + [anon_sym_LT_LT] = ACTIONS(569), + [anon_sym_GT_GT] = ACTIONS(569), + [anon_sym_PLUS_EQ] = ACTIONS(559), + [anon_sym_DASH_EQ] = ACTIONS(559), + [anon_sym_STAR_EQ] = ACTIONS(559), + [anon_sym_SLASH_EQ] = ACTIONS(559), + [anon_sym_PERCENT_EQ] = ACTIONS(559), + [anon_sym_CARET_EQ] = ACTIONS(559), + [anon_sym_AMP_EQ] = ACTIONS(559), + [anon_sym_PIPE_EQ] = ACTIONS(559), + [anon_sym_LT_LT_EQ] = ACTIONS(559), + [anon_sym_GT_GT_EQ] = ACTIONS(559), + [anon_sym_EQ] = ACTIONS(569), + [anon_sym_EQ_EQ] = ACTIONS(559), + [anon_sym_BANG_EQ] = ACTIONS(559), + [anon_sym_GT] = ACTIONS(569), + [anon_sym_LT] = ACTIONS(569), + [anon_sym_GT_EQ] = ACTIONS(559), + [anon_sym_LT_EQ] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(559), + [anon_sym__] = ACTIONS(569), + [anon_sym_DOT] = ACTIONS(569), + [anon_sym_DOT_DOT] = ACTIONS(569), + [anon_sym_DOT_DOT_DOT] = ACTIONS(559), + [anon_sym_DOT_DOT_EQ] = ACTIONS(559), + [anon_sym_COLON_COLON] = ACTIONS(559), + [anon_sym_DASH_GT] = ACTIONS(559), + [anon_sym_POUND] = ACTIONS(559), + [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(573), + [aux_sym_string_literal_token1] = ACTIONS(575), + [sym_char_literal] = ACTIONS(573), + [anon_sym_true] = ACTIONS(577), + [anon_sym_false] = ACTIONS(577), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(670), + [sym_super] = ACTIONS(670), + [sym_crate] = ACTIONS(670), + [sym_metavariable] = ACTIONS(682), + [sym__raw_string_literal_start] = ACTIONS(581), + [sym_float_literal] = ACTIONS(573), }, [129] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), + [sym_delim_token_tree] = STATE(201), + [sym__delim_tokens] = STATE(198), + [sym__non_delim_token] = STATE(201), + [sym__literal] = STATE(205), + [sym_string_literal] = STATE(214), + [sym_raw_string_literal] = STATE(214), + [sym_boolean_literal] = STATE(214), [sym_line_comment] = STATE(129), [sym_block_comment] = STATE(129), - [aux_sym__non_special_token_repeat1] = STATE(160), - [aux_sym_delim_token_tree_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(663), - [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(671), - [anon_sym_RBRACE] = ACTIONS(667), - [anon_sym_EQ_GT] = ACTIONS(663), - [anon_sym_COLON] = ACTIONS(673), - [anon_sym_DOLLAR] = ACTIONS(675), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_STAR] = ACTIONS(673), - [anon_sym_QMARK] = ACTIONS(663), - [anon_sym_u8] = ACTIONS(661), - [anon_sym_i8] = ACTIONS(661), - [anon_sym_u16] = ACTIONS(661), - [anon_sym_i16] = ACTIONS(661), - [anon_sym_u32] = ACTIONS(661), - [anon_sym_i32] = ACTIONS(661), - [anon_sym_u64] = ACTIONS(661), - [anon_sym_i64] = ACTIONS(661), - [anon_sym_u128] = ACTIONS(661), - [anon_sym_i128] = ACTIONS(661), - [anon_sym_isize] = ACTIONS(661), - [anon_sym_usize] = ACTIONS(661), - [anon_sym_f32] = ACTIONS(661), - [anon_sym_f64] = ACTIONS(661), - [anon_sym_bool] = ACTIONS(661), - [anon_sym_str] = ACTIONS(661), - [anon_sym_char] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_SLASH] = ACTIONS(673), - [anon_sym_PERCENT] = ACTIONS(673), - [anon_sym_CARET] = ACTIONS(673), - [anon_sym_BANG] = ACTIONS(673), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE] = ACTIONS(673), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [anon_sym_LT_LT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(673), - [anon_sym_PLUS_EQ] = ACTIONS(663), - [anon_sym_DASH_EQ] = ACTIONS(663), - [anon_sym_STAR_EQ] = ACTIONS(663), - [anon_sym_SLASH_EQ] = ACTIONS(663), - [anon_sym_PERCENT_EQ] = ACTIONS(663), - [anon_sym_CARET_EQ] = ACTIONS(663), - [anon_sym_AMP_EQ] = ACTIONS(663), - [anon_sym_PIPE_EQ] = ACTIONS(663), - [anon_sym_LT_LT_EQ] = ACTIONS(663), - [anon_sym_GT_GT_EQ] = ACTIONS(663), - [anon_sym_EQ] = ACTIONS(673), - [anon_sym_EQ_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_AT] = ACTIONS(663), - [anon_sym__] = ACTIONS(673), - [anon_sym_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_COLON_COLON] = ACTIONS(663), - [anon_sym_DASH_GT] = ACTIONS(663), - [anon_sym_POUND] = ACTIONS(663), - [anon_sym_SQUOTE] = ACTIONS(661), - [anon_sym_as] = ACTIONS(661), - [anon_sym_async] = ACTIONS(661), - [anon_sym_await] = ACTIONS(661), - [anon_sym_break] = ACTIONS(661), - [anon_sym_const] = ACTIONS(661), - [anon_sym_continue] = ACTIONS(661), - [anon_sym_default] = ACTIONS(661), - [anon_sym_enum] = ACTIONS(661), - [anon_sym_fn] = ACTIONS(661), - [anon_sym_for] = ACTIONS(661), - [anon_sym_if] = ACTIONS(661), - [anon_sym_impl] = ACTIONS(661), - [anon_sym_let] = ACTIONS(661), - [anon_sym_loop] = ACTIONS(661), - [anon_sym_match] = ACTIONS(661), - [anon_sym_mod] = ACTIONS(661), - [anon_sym_pub] = ACTIONS(661), - [anon_sym_return] = ACTIONS(661), - [anon_sym_static] = ACTIONS(661), - [anon_sym_struct] = ACTIONS(661), - [anon_sym_trait] = ACTIONS(661), - [anon_sym_type] = ACTIONS(661), - [anon_sym_union] = ACTIONS(661), - [anon_sym_unsafe] = ACTIONS(661), - [anon_sym_use] = ACTIONS(661), - [anon_sym_where] = ACTIONS(661), - [anon_sym_while] = ACTIONS(661), - [sym_mutable_specifier] = ACTIONS(661), - [sym_integer_literal] = ACTIONS(677), - [aux_sym_string_literal_token1] = ACTIONS(679), - [sym_char_literal] = ACTIONS(677), - [anon_sym_true] = ACTIONS(681), - [anon_sym_false] = ACTIONS(681), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_crate] = ACTIONS(661), - [sym__raw_string_literal_start] = ACTIONS(683), - [sym_float_literal] = ACTIONS(677), + [aux_sym__non_special_token_repeat1] = STATE(152), + [aux_sym_delim_token_tree_repeat1] = STATE(135), + [sym_identifier] = ACTIONS(686), + [anon_sym_SEMI] = ACTIONS(688), + [anon_sym_LPAREN] = ACTIONS(690), + [anon_sym_RPAREN] = ACTIONS(742), + [anon_sym_LBRACK] = ACTIONS(692), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_COMMA] = ACTIONS(688), + [anon_sym_EQ_GT] = ACTIONS(688), + [anon_sym_COLON] = ACTIONS(698), + [anon_sym_DOLLAR] = ACTIONS(700), + [anon_sym_PLUS] = ACTIONS(698), + [anon_sym_STAR] = ACTIONS(698), + [anon_sym_QMARK] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(686), + [anon_sym_i8] = ACTIONS(686), + [anon_sym_u16] = ACTIONS(686), + [anon_sym_i16] = ACTIONS(686), + [anon_sym_u32] = ACTIONS(686), + [anon_sym_i32] = ACTIONS(686), + [anon_sym_u64] = ACTIONS(686), + [anon_sym_i64] = ACTIONS(686), + [anon_sym_u128] = ACTIONS(686), + [anon_sym_i128] = ACTIONS(686), + [anon_sym_isize] = ACTIONS(686), + [anon_sym_usize] = ACTIONS(686), + [anon_sym_f32] = ACTIONS(686), + [anon_sym_f64] = ACTIONS(686), + [anon_sym_bool] = ACTIONS(686), + [anon_sym_str] = ACTIONS(686), + [anon_sym_char] = ACTIONS(686), + [anon_sym_DASH] = ACTIONS(698), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_PERCENT] = ACTIONS(698), + [anon_sym_CARET] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(698), + [anon_sym_AMP] = ACTIONS(698), + [anon_sym_PIPE] = ACTIONS(698), + [anon_sym_AMP_AMP] = ACTIONS(688), + [anon_sym_PIPE_PIPE] = ACTIONS(688), + [anon_sym_LT_LT] = ACTIONS(698), + [anon_sym_GT_GT] = ACTIONS(698), + [anon_sym_PLUS_EQ] = ACTIONS(688), + [anon_sym_DASH_EQ] = ACTIONS(688), + [anon_sym_STAR_EQ] = ACTIONS(688), + [anon_sym_SLASH_EQ] = ACTIONS(688), + [anon_sym_PERCENT_EQ] = ACTIONS(688), + [anon_sym_CARET_EQ] = ACTIONS(688), + [anon_sym_AMP_EQ] = ACTIONS(688), + [anon_sym_PIPE_EQ] = ACTIONS(688), + [anon_sym_LT_LT_EQ] = ACTIONS(688), + [anon_sym_GT_GT_EQ] = ACTIONS(688), + [anon_sym_EQ] = ACTIONS(698), + [anon_sym_EQ_EQ] = ACTIONS(688), + [anon_sym_BANG_EQ] = ACTIONS(688), + [anon_sym_GT] = ACTIONS(698), + [anon_sym_LT] = ACTIONS(698), + [anon_sym_GT_EQ] = ACTIONS(688), + [anon_sym_LT_EQ] = ACTIONS(688), + [anon_sym_AT] = ACTIONS(688), + [anon_sym__] = ACTIONS(698), + [anon_sym_DOT] = ACTIONS(698), + [anon_sym_DOT_DOT] = ACTIONS(698), + [anon_sym_DOT_DOT_DOT] = ACTIONS(688), + [anon_sym_DOT_DOT_EQ] = ACTIONS(688), + [anon_sym_COLON_COLON] = ACTIONS(688), + [anon_sym_DASH_GT] = ACTIONS(688), + [anon_sym_POUND] = ACTIONS(688), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_as] = ACTIONS(686), + [anon_sym_async] = ACTIONS(686), + [anon_sym_await] = ACTIONS(686), + [anon_sym_break] = ACTIONS(686), + [anon_sym_const] = ACTIONS(686), + [anon_sym_continue] = ACTIONS(686), + [anon_sym_default] = ACTIONS(686), + [anon_sym_enum] = ACTIONS(686), + [anon_sym_fn] = ACTIONS(686), + [anon_sym_for] = ACTIONS(686), + [anon_sym_if] = ACTIONS(686), + [anon_sym_impl] = ACTIONS(686), + [anon_sym_let] = ACTIONS(686), + [anon_sym_loop] = ACTIONS(686), + [anon_sym_match] = ACTIONS(686), + [anon_sym_mod] = ACTIONS(686), + [anon_sym_pub] = ACTIONS(686), + [anon_sym_return] = ACTIONS(686), + [anon_sym_static] = ACTIONS(686), + [anon_sym_struct] = ACTIONS(686), + [anon_sym_trait] = ACTIONS(686), + [anon_sym_type] = ACTIONS(686), + [anon_sym_union] = ACTIONS(686), + [anon_sym_unsafe] = ACTIONS(686), + [anon_sym_use] = ACTIONS(686), + [anon_sym_where] = ACTIONS(686), + [anon_sym_while] = ACTIONS(686), + [sym_mutable_specifier] = ACTIONS(686), + [sym_integer_literal] = ACTIONS(702), + [aux_sym_string_literal_token1] = ACTIONS(704), + [sym_char_literal] = ACTIONS(702), + [anon_sym_true] = ACTIONS(706), + [anon_sym_false] = ACTIONS(706), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(686), + [sym_super] = ACTIONS(686), + [sym_crate] = ACTIONS(686), + [sym__raw_string_literal_start] = ACTIONS(708), + [sym_float_literal] = ACTIONS(702), }, [130] = { - [sym_token_tree] = STATE(157), - [sym_token_repetition] = STATE(157), - [sym__literal] = STATE(157), - [sym_string_literal] = STATE(156), - [sym_raw_string_literal] = STATE(156), - [sym_boolean_literal] = STATE(156), + [sym_delim_token_tree] = STATE(201), + [sym__delim_tokens] = STATE(198), + [sym__non_delim_token] = STATE(201), + [sym__literal] = STATE(205), + [sym_string_literal] = STATE(214), + [sym_raw_string_literal] = STATE(214), + [sym_boolean_literal] = STATE(214), [sym_line_comment] = STATE(130), [sym_block_comment] = STATE(130), - [aux_sym_token_tree_repeat1] = STATE(85), - [aux_sym__non_special_token_repeat1] = STATE(136), - [sym_identifier] = ACTIONS(685), - [anon_sym_SEMI] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_RPAREN] = ACTIONS(729), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_EQ_GT] = ACTIONS(554), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(695), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_QMARK] = ACTIONS(554), - [anon_sym_u8] = ACTIONS(685), - [anon_sym_i8] = ACTIONS(685), - [anon_sym_u16] = ACTIONS(685), - [anon_sym_i16] = ACTIONS(685), - [anon_sym_u32] = ACTIONS(685), - [anon_sym_i32] = ACTIONS(685), - [anon_sym_u64] = ACTIONS(685), - [anon_sym_i64] = ACTIONS(685), - [anon_sym_u128] = ACTIONS(685), - [anon_sym_i128] = ACTIONS(685), - [anon_sym_isize] = ACTIONS(685), - [anon_sym_usize] = ACTIONS(685), - [anon_sym_f32] = ACTIONS(685), - [anon_sym_f64] = ACTIONS(685), - [anon_sym_bool] = ACTIONS(685), - [anon_sym_str] = ACTIONS(685), - [anon_sym_char] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_AMP] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_AMP_AMP] = ACTIONS(554), - [anon_sym_PIPE_PIPE] = ACTIONS(554), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_GT_GT] = ACTIONS(564), - [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_CARET_EQ] = ACTIONS(554), - [anon_sym_AMP_EQ] = ACTIONS(554), - [anon_sym_PIPE_EQ] = ACTIONS(554), - [anon_sym_LT_LT_EQ] = ACTIONS(554), - [anon_sym_GT_GT_EQ] = ACTIONS(554), - [anon_sym_EQ] = ACTIONS(564), - [anon_sym_EQ_EQ] = ACTIONS(554), - [anon_sym_BANG_EQ] = ACTIONS(554), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT_EQ] = ACTIONS(554), - [anon_sym_LT_EQ] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(554), - [anon_sym__] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(554), - [anon_sym_DOT_DOT_EQ] = ACTIONS(554), - [anon_sym_COMMA] = ACTIONS(554), - [anon_sym_COLON_COLON] = ACTIONS(554), - [anon_sym_DASH_GT] = ACTIONS(554), - [anon_sym_POUND] = ACTIONS(554), - [anon_sym_SQUOTE] = ACTIONS(685), - [anon_sym_as] = ACTIONS(685), - [anon_sym_async] = ACTIONS(685), - [anon_sym_await] = ACTIONS(685), - [anon_sym_break] = ACTIONS(685), - [anon_sym_const] = ACTIONS(685), - [anon_sym_continue] = ACTIONS(685), - [anon_sym_default] = ACTIONS(685), - [anon_sym_enum] = ACTIONS(685), - [anon_sym_fn] = ACTIONS(685), - [anon_sym_for] = ACTIONS(685), - [anon_sym_if] = ACTIONS(685), - [anon_sym_impl] = ACTIONS(685), - [anon_sym_let] = ACTIONS(685), - [anon_sym_loop] = ACTIONS(685), - [anon_sym_match] = ACTIONS(685), - [anon_sym_mod] = ACTIONS(685), - [anon_sym_pub] = ACTIONS(685), - [anon_sym_return] = ACTIONS(685), - [anon_sym_static] = ACTIONS(685), - [anon_sym_struct] = ACTIONS(685), - [anon_sym_trait] = ACTIONS(685), - [anon_sym_type] = ACTIONS(685), - [anon_sym_union] = ACTIONS(685), - [anon_sym_unsafe] = ACTIONS(685), - [anon_sym_use] = ACTIONS(685), - [anon_sym_where] = ACTIONS(685), - [anon_sym_while] = ACTIONS(685), - [sym_mutable_specifier] = ACTIONS(685), - [sym_integer_literal] = ACTIONS(568), - [aux_sym_string_literal_token1] = ACTIONS(570), - [sym_char_literal] = ACTIONS(568), - [anon_sym_true] = ACTIONS(572), - [anon_sym_false] = ACTIONS(572), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(685), - [sym_super] = ACTIONS(685), - [sym_crate] = ACTIONS(685), - [sym_metavariable] = ACTIONS(697), - [sym__raw_string_literal_start] = ACTIONS(576), - [sym_float_literal] = ACTIONS(568), + [aux_sym__non_special_token_repeat1] = STATE(152), + [aux_sym_delim_token_tree_repeat1] = STATE(137), + [sym_identifier] = ACTIONS(686), + [anon_sym_SEMI] = ACTIONS(688), + [anon_sym_LPAREN] = ACTIONS(690), + [anon_sym_LBRACK] = ACTIONS(692), + [anon_sym_RBRACK] = ACTIONS(742), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_COMMA] = ACTIONS(688), + [anon_sym_EQ_GT] = ACTIONS(688), + [anon_sym_COLON] = ACTIONS(698), + [anon_sym_DOLLAR] = ACTIONS(700), + [anon_sym_PLUS] = ACTIONS(698), + [anon_sym_STAR] = ACTIONS(698), + [anon_sym_QMARK] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(686), + [anon_sym_i8] = ACTIONS(686), + [anon_sym_u16] = ACTIONS(686), + [anon_sym_i16] = ACTIONS(686), + [anon_sym_u32] = ACTIONS(686), + [anon_sym_i32] = ACTIONS(686), + [anon_sym_u64] = ACTIONS(686), + [anon_sym_i64] = ACTIONS(686), + [anon_sym_u128] = ACTIONS(686), + [anon_sym_i128] = ACTIONS(686), + [anon_sym_isize] = ACTIONS(686), + [anon_sym_usize] = ACTIONS(686), + [anon_sym_f32] = ACTIONS(686), + [anon_sym_f64] = ACTIONS(686), + [anon_sym_bool] = ACTIONS(686), + [anon_sym_str] = ACTIONS(686), + [anon_sym_char] = ACTIONS(686), + [anon_sym_DASH] = ACTIONS(698), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_PERCENT] = ACTIONS(698), + [anon_sym_CARET] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(698), + [anon_sym_AMP] = ACTIONS(698), + [anon_sym_PIPE] = ACTIONS(698), + [anon_sym_AMP_AMP] = ACTIONS(688), + [anon_sym_PIPE_PIPE] = ACTIONS(688), + [anon_sym_LT_LT] = ACTIONS(698), + [anon_sym_GT_GT] = ACTIONS(698), + [anon_sym_PLUS_EQ] = ACTIONS(688), + [anon_sym_DASH_EQ] = ACTIONS(688), + [anon_sym_STAR_EQ] = ACTIONS(688), + [anon_sym_SLASH_EQ] = ACTIONS(688), + [anon_sym_PERCENT_EQ] = ACTIONS(688), + [anon_sym_CARET_EQ] = ACTIONS(688), + [anon_sym_AMP_EQ] = ACTIONS(688), + [anon_sym_PIPE_EQ] = ACTIONS(688), + [anon_sym_LT_LT_EQ] = ACTIONS(688), + [anon_sym_GT_GT_EQ] = ACTIONS(688), + [anon_sym_EQ] = ACTIONS(698), + [anon_sym_EQ_EQ] = ACTIONS(688), + [anon_sym_BANG_EQ] = ACTIONS(688), + [anon_sym_GT] = ACTIONS(698), + [anon_sym_LT] = ACTIONS(698), + [anon_sym_GT_EQ] = ACTIONS(688), + [anon_sym_LT_EQ] = ACTIONS(688), + [anon_sym_AT] = ACTIONS(688), + [anon_sym__] = ACTIONS(698), + [anon_sym_DOT] = ACTIONS(698), + [anon_sym_DOT_DOT] = ACTIONS(698), + [anon_sym_DOT_DOT_DOT] = ACTIONS(688), + [anon_sym_DOT_DOT_EQ] = ACTIONS(688), + [anon_sym_COLON_COLON] = ACTIONS(688), + [anon_sym_DASH_GT] = ACTIONS(688), + [anon_sym_POUND] = ACTIONS(688), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_as] = ACTIONS(686), + [anon_sym_async] = ACTIONS(686), + [anon_sym_await] = ACTIONS(686), + [anon_sym_break] = ACTIONS(686), + [anon_sym_const] = ACTIONS(686), + [anon_sym_continue] = ACTIONS(686), + [anon_sym_default] = ACTIONS(686), + [anon_sym_enum] = ACTIONS(686), + [anon_sym_fn] = ACTIONS(686), + [anon_sym_for] = ACTIONS(686), + [anon_sym_if] = ACTIONS(686), + [anon_sym_impl] = ACTIONS(686), + [anon_sym_let] = ACTIONS(686), + [anon_sym_loop] = ACTIONS(686), + [anon_sym_match] = ACTIONS(686), + [anon_sym_mod] = ACTIONS(686), + [anon_sym_pub] = ACTIONS(686), + [anon_sym_return] = ACTIONS(686), + [anon_sym_static] = ACTIONS(686), + [anon_sym_struct] = ACTIONS(686), + [anon_sym_trait] = ACTIONS(686), + [anon_sym_type] = ACTIONS(686), + [anon_sym_union] = ACTIONS(686), + [anon_sym_unsafe] = ACTIONS(686), + [anon_sym_use] = ACTIONS(686), + [anon_sym_where] = ACTIONS(686), + [anon_sym_while] = ACTIONS(686), + [sym_mutable_specifier] = ACTIONS(686), + [sym_integer_literal] = ACTIONS(702), + [aux_sym_string_literal_token1] = ACTIONS(704), + [sym_char_literal] = ACTIONS(702), + [anon_sym_true] = ACTIONS(706), + [anon_sym_false] = ACTIONS(706), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(686), + [sym_super] = ACTIONS(686), + [sym_crate] = ACTIONS(686), + [sym__raw_string_literal_start] = ACTIONS(708), + [sym_float_literal] = ACTIONS(702), }, [131] = { - [sym_token_tree] = STATE(157), - [sym_token_repetition] = STATE(157), - [sym__literal] = STATE(157), - [sym_string_literal] = STATE(156), - [sym_raw_string_literal] = STATE(156), - [sym_boolean_literal] = STATE(156), + [sym_delim_token_tree] = STATE(201), + [sym__delim_tokens] = STATE(198), + [sym__non_delim_token] = STATE(201), + [sym__literal] = STATE(205), + [sym_string_literal] = STATE(214), + [sym_raw_string_literal] = STATE(214), + [sym_boolean_literal] = STATE(214), [sym_line_comment] = STATE(131), [sym_block_comment] = STATE(131), - [aux_sym_token_tree_repeat1] = STATE(86), - [aux_sym__non_special_token_repeat1] = STATE(136), - [sym_identifier] = ACTIONS(685), - [anon_sym_SEMI] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_RBRACK] = ACTIONS(729), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_EQ_GT] = ACTIONS(554), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(695), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_QMARK] = ACTIONS(554), - [anon_sym_u8] = ACTIONS(685), - [anon_sym_i8] = ACTIONS(685), - [anon_sym_u16] = ACTIONS(685), - [anon_sym_i16] = ACTIONS(685), - [anon_sym_u32] = ACTIONS(685), - [anon_sym_i32] = ACTIONS(685), - [anon_sym_u64] = ACTIONS(685), - [anon_sym_i64] = ACTIONS(685), - [anon_sym_u128] = ACTIONS(685), - [anon_sym_i128] = ACTIONS(685), - [anon_sym_isize] = ACTIONS(685), - [anon_sym_usize] = ACTIONS(685), - [anon_sym_f32] = ACTIONS(685), - [anon_sym_f64] = ACTIONS(685), - [anon_sym_bool] = ACTIONS(685), - [anon_sym_str] = ACTIONS(685), - [anon_sym_char] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_AMP] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_AMP_AMP] = ACTIONS(554), - [anon_sym_PIPE_PIPE] = ACTIONS(554), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_GT_GT] = ACTIONS(564), - [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_CARET_EQ] = ACTIONS(554), - [anon_sym_AMP_EQ] = ACTIONS(554), - [anon_sym_PIPE_EQ] = ACTIONS(554), - [anon_sym_LT_LT_EQ] = ACTIONS(554), - [anon_sym_GT_GT_EQ] = ACTIONS(554), - [anon_sym_EQ] = ACTIONS(564), - [anon_sym_EQ_EQ] = ACTIONS(554), - [anon_sym_BANG_EQ] = ACTIONS(554), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT_EQ] = ACTIONS(554), - [anon_sym_LT_EQ] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(554), - [anon_sym__] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(554), - [anon_sym_DOT_DOT_EQ] = ACTIONS(554), - [anon_sym_COMMA] = ACTIONS(554), - [anon_sym_COLON_COLON] = ACTIONS(554), - [anon_sym_DASH_GT] = ACTIONS(554), - [anon_sym_POUND] = ACTIONS(554), - [anon_sym_SQUOTE] = ACTIONS(685), - [anon_sym_as] = ACTIONS(685), - [anon_sym_async] = ACTIONS(685), - [anon_sym_await] = ACTIONS(685), - [anon_sym_break] = ACTIONS(685), - [anon_sym_const] = ACTIONS(685), - [anon_sym_continue] = ACTIONS(685), - [anon_sym_default] = ACTIONS(685), - [anon_sym_enum] = ACTIONS(685), - [anon_sym_fn] = ACTIONS(685), - [anon_sym_for] = ACTIONS(685), - [anon_sym_if] = ACTIONS(685), - [anon_sym_impl] = ACTIONS(685), - [anon_sym_let] = ACTIONS(685), - [anon_sym_loop] = ACTIONS(685), - [anon_sym_match] = ACTIONS(685), - [anon_sym_mod] = ACTIONS(685), - [anon_sym_pub] = ACTIONS(685), - [anon_sym_return] = ACTIONS(685), - [anon_sym_static] = ACTIONS(685), - [anon_sym_struct] = ACTIONS(685), - [anon_sym_trait] = ACTIONS(685), - [anon_sym_type] = ACTIONS(685), - [anon_sym_union] = ACTIONS(685), - [anon_sym_unsafe] = ACTIONS(685), - [anon_sym_use] = ACTIONS(685), - [anon_sym_where] = ACTIONS(685), - [anon_sym_while] = ACTIONS(685), - [sym_mutable_specifier] = ACTIONS(685), - [sym_integer_literal] = ACTIONS(568), - [aux_sym_string_literal_token1] = ACTIONS(570), - [sym_char_literal] = ACTIONS(568), - [anon_sym_true] = ACTIONS(572), - [anon_sym_false] = ACTIONS(572), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(685), - [sym_super] = ACTIONS(685), - [sym_crate] = ACTIONS(685), - [sym_metavariable] = ACTIONS(697), - [sym__raw_string_literal_start] = ACTIONS(576), - [sym_float_literal] = ACTIONS(568), + [aux_sym__non_special_token_repeat1] = STATE(152), + [aux_sym_delim_token_tree_repeat1] = STATE(89), + [sym_identifier] = ACTIONS(686), + [anon_sym_SEMI] = ACTIONS(688), + [anon_sym_LPAREN] = ACTIONS(690), + [anon_sym_LBRACK] = ACTIONS(692), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_RBRACE] = ACTIONS(724), + [anon_sym_COMMA] = ACTIONS(688), + [anon_sym_EQ_GT] = ACTIONS(688), + [anon_sym_COLON] = ACTIONS(698), + [anon_sym_DOLLAR] = ACTIONS(700), + [anon_sym_PLUS] = ACTIONS(698), + [anon_sym_STAR] = ACTIONS(698), + [anon_sym_QMARK] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(686), + [anon_sym_i8] = ACTIONS(686), + [anon_sym_u16] = ACTIONS(686), + [anon_sym_i16] = ACTIONS(686), + [anon_sym_u32] = ACTIONS(686), + [anon_sym_i32] = ACTIONS(686), + [anon_sym_u64] = ACTIONS(686), + [anon_sym_i64] = ACTIONS(686), + [anon_sym_u128] = ACTIONS(686), + [anon_sym_i128] = ACTIONS(686), + [anon_sym_isize] = ACTIONS(686), + [anon_sym_usize] = ACTIONS(686), + [anon_sym_f32] = ACTIONS(686), + [anon_sym_f64] = ACTIONS(686), + [anon_sym_bool] = ACTIONS(686), + [anon_sym_str] = ACTIONS(686), + [anon_sym_char] = ACTIONS(686), + [anon_sym_DASH] = ACTIONS(698), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_PERCENT] = ACTIONS(698), + [anon_sym_CARET] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(698), + [anon_sym_AMP] = ACTIONS(698), + [anon_sym_PIPE] = ACTIONS(698), + [anon_sym_AMP_AMP] = ACTIONS(688), + [anon_sym_PIPE_PIPE] = ACTIONS(688), + [anon_sym_LT_LT] = ACTIONS(698), + [anon_sym_GT_GT] = ACTIONS(698), + [anon_sym_PLUS_EQ] = ACTIONS(688), + [anon_sym_DASH_EQ] = ACTIONS(688), + [anon_sym_STAR_EQ] = ACTIONS(688), + [anon_sym_SLASH_EQ] = ACTIONS(688), + [anon_sym_PERCENT_EQ] = ACTIONS(688), + [anon_sym_CARET_EQ] = ACTIONS(688), + [anon_sym_AMP_EQ] = ACTIONS(688), + [anon_sym_PIPE_EQ] = ACTIONS(688), + [anon_sym_LT_LT_EQ] = ACTIONS(688), + [anon_sym_GT_GT_EQ] = ACTIONS(688), + [anon_sym_EQ] = ACTIONS(698), + [anon_sym_EQ_EQ] = ACTIONS(688), + [anon_sym_BANG_EQ] = ACTIONS(688), + [anon_sym_GT] = ACTIONS(698), + [anon_sym_LT] = ACTIONS(698), + [anon_sym_GT_EQ] = ACTIONS(688), + [anon_sym_LT_EQ] = ACTIONS(688), + [anon_sym_AT] = ACTIONS(688), + [anon_sym__] = ACTIONS(698), + [anon_sym_DOT] = ACTIONS(698), + [anon_sym_DOT_DOT] = ACTIONS(698), + [anon_sym_DOT_DOT_DOT] = ACTIONS(688), + [anon_sym_DOT_DOT_EQ] = ACTIONS(688), + [anon_sym_COLON_COLON] = ACTIONS(688), + [anon_sym_DASH_GT] = ACTIONS(688), + [anon_sym_POUND] = ACTIONS(688), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_as] = ACTIONS(686), + [anon_sym_async] = ACTIONS(686), + [anon_sym_await] = ACTIONS(686), + [anon_sym_break] = ACTIONS(686), + [anon_sym_const] = ACTIONS(686), + [anon_sym_continue] = ACTIONS(686), + [anon_sym_default] = ACTIONS(686), + [anon_sym_enum] = ACTIONS(686), + [anon_sym_fn] = ACTIONS(686), + [anon_sym_for] = ACTIONS(686), + [anon_sym_if] = ACTIONS(686), + [anon_sym_impl] = ACTIONS(686), + [anon_sym_let] = ACTIONS(686), + [anon_sym_loop] = ACTIONS(686), + [anon_sym_match] = ACTIONS(686), + [anon_sym_mod] = ACTIONS(686), + [anon_sym_pub] = ACTIONS(686), + [anon_sym_return] = ACTIONS(686), + [anon_sym_static] = ACTIONS(686), + [anon_sym_struct] = ACTIONS(686), + [anon_sym_trait] = ACTIONS(686), + [anon_sym_type] = ACTIONS(686), + [anon_sym_union] = ACTIONS(686), + [anon_sym_unsafe] = ACTIONS(686), + [anon_sym_use] = ACTIONS(686), + [anon_sym_where] = ACTIONS(686), + [anon_sym_while] = ACTIONS(686), + [sym_mutable_specifier] = ACTIONS(686), + [sym_integer_literal] = ACTIONS(702), + [aux_sym_string_literal_token1] = ACTIONS(704), + [sym_char_literal] = ACTIONS(702), + [anon_sym_true] = ACTIONS(706), + [anon_sym_false] = ACTIONS(706), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(686), + [sym_super] = ACTIONS(686), + [sym_crate] = ACTIONS(686), + [sym__raw_string_literal_start] = ACTIONS(708), + [sym_float_literal] = ACTIONS(702), }, [132] = { - [sym_token_tree] = STATE(157), - [sym_token_repetition] = STATE(157), - [sym__literal] = STATE(157), - [sym_string_literal] = STATE(156), - [sym_raw_string_literal] = STATE(156), - [sym_boolean_literal] = STATE(156), + [sym_delim_token_tree] = STATE(201), + [sym__delim_tokens] = STATE(198), + [sym__non_delim_token] = STATE(201), + [sym__literal] = STATE(205), + [sym_string_literal] = STATE(214), + [sym_raw_string_literal] = STATE(214), + [sym_boolean_literal] = STATE(214), [sym_line_comment] = STATE(132), [sym_block_comment] = STATE(132), - [aux_sym_token_tree_repeat1] = STATE(87), - [aux_sym__non_special_token_repeat1] = STATE(136), - [sym_identifier] = ACTIONS(685), - [anon_sym_SEMI] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(729), - [anon_sym_EQ_GT] = ACTIONS(554), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(695), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_QMARK] = ACTIONS(554), - [anon_sym_u8] = ACTIONS(685), - [anon_sym_i8] = ACTIONS(685), - [anon_sym_u16] = ACTIONS(685), - [anon_sym_i16] = ACTIONS(685), - [anon_sym_u32] = ACTIONS(685), - [anon_sym_i32] = ACTIONS(685), - [anon_sym_u64] = ACTIONS(685), - [anon_sym_i64] = ACTIONS(685), - [anon_sym_u128] = ACTIONS(685), - [anon_sym_i128] = ACTIONS(685), - [anon_sym_isize] = ACTIONS(685), - [anon_sym_usize] = ACTIONS(685), - [anon_sym_f32] = ACTIONS(685), - [anon_sym_f64] = ACTIONS(685), - [anon_sym_bool] = ACTIONS(685), - [anon_sym_str] = ACTIONS(685), - [anon_sym_char] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_AMP] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_AMP_AMP] = ACTIONS(554), - [anon_sym_PIPE_PIPE] = ACTIONS(554), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_GT_GT] = ACTIONS(564), - [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_CARET_EQ] = ACTIONS(554), - [anon_sym_AMP_EQ] = ACTIONS(554), - [anon_sym_PIPE_EQ] = ACTIONS(554), - [anon_sym_LT_LT_EQ] = ACTIONS(554), - [anon_sym_GT_GT_EQ] = ACTIONS(554), - [anon_sym_EQ] = ACTIONS(564), - [anon_sym_EQ_EQ] = ACTIONS(554), - [anon_sym_BANG_EQ] = ACTIONS(554), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT_EQ] = ACTIONS(554), - [anon_sym_LT_EQ] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(554), - [anon_sym__] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(554), - [anon_sym_DOT_DOT_EQ] = ACTIONS(554), - [anon_sym_COMMA] = ACTIONS(554), - [anon_sym_COLON_COLON] = ACTIONS(554), - [anon_sym_DASH_GT] = ACTIONS(554), - [anon_sym_POUND] = ACTIONS(554), - [anon_sym_SQUOTE] = ACTIONS(685), - [anon_sym_as] = ACTIONS(685), - [anon_sym_async] = ACTIONS(685), - [anon_sym_await] = ACTIONS(685), - [anon_sym_break] = ACTIONS(685), - [anon_sym_const] = ACTIONS(685), - [anon_sym_continue] = ACTIONS(685), - [anon_sym_default] = ACTIONS(685), - [anon_sym_enum] = ACTIONS(685), - [anon_sym_fn] = ACTIONS(685), - [anon_sym_for] = ACTIONS(685), - [anon_sym_if] = ACTIONS(685), - [anon_sym_impl] = ACTIONS(685), - [anon_sym_let] = ACTIONS(685), - [anon_sym_loop] = ACTIONS(685), - [anon_sym_match] = ACTIONS(685), - [anon_sym_mod] = ACTIONS(685), - [anon_sym_pub] = ACTIONS(685), - [anon_sym_return] = ACTIONS(685), - [anon_sym_static] = ACTIONS(685), - [anon_sym_struct] = ACTIONS(685), - [anon_sym_trait] = ACTIONS(685), - [anon_sym_type] = ACTIONS(685), - [anon_sym_union] = ACTIONS(685), - [anon_sym_unsafe] = ACTIONS(685), - [anon_sym_use] = ACTIONS(685), - [anon_sym_where] = ACTIONS(685), - [anon_sym_while] = ACTIONS(685), - [sym_mutable_specifier] = ACTIONS(685), - [sym_integer_literal] = ACTIONS(568), - [aux_sym_string_literal_token1] = ACTIONS(570), - [sym_char_literal] = ACTIONS(568), - [anon_sym_true] = ACTIONS(572), - [anon_sym_false] = ACTIONS(572), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(685), - [sym_super] = ACTIONS(685), - [sym_crate] = ACTIONS(685), - [sym_metavariable] = ACTIONS(697), - [sym__raw_string_literal_start] = ACTIONS(576), - [sym_float_literal] = ACTIONS(568), + [aux_sym__non_special_token_repeat1] = STATE(152), + [aux_sym_delim_token_tree_repeat1] = STATE(139), + [sym_identifier] = ACTIONS(686), + [anon_sym_SEMI] = ACTIONS(688), + [anon_sym_LPAREN] = ACTIONS(690), + [anon_sym_LBRACK] = ACTIONS(692), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_RBRACE] = ACTIONS(742), + [anon_sym_COMMA] = ACTIONS(688), + [anon_sym_EQ_GT] = ACTIONS(688), + [anon_sym_COLON] = ACTIONS(698), + [anon_sym_DOLLAR] = ACTIONS(700), + [anon_sym_PLUS] = ACTIONS(698), + [anon_sym_STAR] = ACTIONS(698), + [anon_sym_QMARK] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(686), + [anon_sym_i8] = ACTIONS(686), + [anon_sym_u16] = ACTIONS(686), + [anon_sym_i16] = ACTIONS(686), + [anon_sym_u32] = ACTIONS(686), + [anon_sym_i32] = ACTIONS(686), + [anon_sym_u64] = ACTIONS(686), + [anon_sym_i64] = ACTIONS(686), + [anon_sym_u128] = ACTIONS(686), + [anon_sym_i128] = ACTIONS(686), + [anon_sym_isize] = ACTIONS(686), + [anon_sym_usize] = ACTIONS(686), + [anon_sym_f32] = ACTIONS(686), + [anon_sym_f64] = ACTIONS(686), + [anon_sym_bool] = ACTIONS(686), + [anon_sym_str] = ACTIONS(686), + [anon_sym_char] = ACTIONS(686), + [anon_sym_DASH] = ACTIONS(698), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_PERCENT] = ACTIONS(698), + [anon_sym_CARET] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(698), + [anon_sym_AMP] = ACTIONS(698), + [anon_sym_PIPE] = ACTIONS(698), + [anon_sym_AMP_AMP] = ACTIONS(688), + [anon_sym_PIPE_PIPE] = ACTIONS(688), + [anon_sym_LT_LT] = ACTIONS(698), + [anon_sym_GT_GT] = ACTIONS(698), + [anon_sym_PLUS_EQ] = ACTIONS(688), + [anon_sym_DASH_EQ] = ACTIONS(688), + [anon_sym_STAR_EQ] = ACTIONS(688), + [anon_sym_SLASH_EQ] = ACTIONS(688), + [anon_sym_PERCENT_EQ] = ACTIONS(688), + [anon_sym_CARET_EQ] = ACTIONS(688), + [anon_sym_AMP_EQ] = ACTIONS(688), + [anon_sym_PIPE_EQ] = ACTIONS(688), + [anon_sym_LT_LT_EQ] = ACTIONS(688), + [anon_sym_GT_GT_EQ] = ACTIONS(688), + [anon_sym_EQ] = ACTIONS(698), + [anon_sym_EQ_EQ] = ACTIONS(688), + [anon_sym_BANG_EQ] = ACTIONS(688), + [anon_sym_GT] = ACTIONS(698), + [anon_sym_LT] = ACTIONS(698), + [anon_sym_GT_EQ] = ACTIONS(688), + [anon_sym_LT_EQ] = ACTIONS(688), + [anon_sym_AT] = ACTIONS(688), + [anon_sym__] = ACTIONS(698), + [anon_sym_DOT] = ACTIONS(698), + [anon_sym_DOT_DOT] = ACTIONS(698), + [anon_sym_DOT_DOT_DOT] = ACTIONS(688), + [anon_sym_DOT_DOT_EQ] = ACTIONS(688), + [anon_sym_COLON_COLON] = ACTIONS(688), + [anon_sym_DASH_GT] = ACTIONS(688), + [anon_sym_POUND] = ACTIONS(688), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_as] = ACTIONS(686), + [anon_sym_async] = ACTIONS(686), + [anon_sym_await] = ACTIONS(686), + [anon_sym_break] = ACTIONS(686), + [anon_sym_const] = ACTIONS(686), + [anon_sym_continue] = ACTIONS(686), + [anon_sym_default] = ACTIONS(686), + [anon_sym_enum] = ACTIONS(686), + [anon_sym_fn] = ACTIONS(686), + [anon_sym_for] = ACTIONS(686), + [anon_sym_if] = ACTIONS(686), + [anon_sym_impl] = ACTIONS(686), + [anon_sym_let] = ACTIONS(686), + [anon_sym_loop] = ACTIONS(686), + [anon_sym_match] = ACTIONS(686), + [anon_sym_mod] = ACTIONS(686), + [anon_sym_pub] = ACTIONS(686), + [anon_sym_return] = ACTIONS(686), + [anon_sym_static] = ACTIONS(686), + [anon_sym_struct] = ACTIONS(686), + [anon_sym_trait] = ACTIONS(686), + [anon_sym_type] = ACTIONS(686), + [anon_sym_union] = ACTIONS(686), + [anon_sym_unsafe] = ACTIONS(686), + [anon_sym_use] = ACTIONS(686), + [anon_sym_where] = ACTIONS(686), + [anon_sym_while] = ACTIONS(686), + [sym_mutable_specifier] = ACTIONS(686), + [sym_integer_literal] = ACTIONS(702), + [aux_sym_string_literal_token1] = ACTIONS(704), + [sym_char_literal] = ACTIONS(702), + [anon_sym_true] = ACTIONS(706), + [anon_sym_false] = ACTIONS(706), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(686), + [sym_super] = ACTIONS(686), + [sym_crate] = ACTIONS(686), + [sym__raw_string_literal_start] = ACTIONS(708), + [sym_float_literal] = ACTIONS(702), }, [133] = { - [sym_delim_token_tree] = STATE(184), - [sym__delim_tokens] = STATE(185), - [sym__non_delim_token] = STATE(184), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(173), - [sym_raw_string_literal] = STATE(173), - [sym_boolean_literal] = STATE(173), + [sym_token_tree] = STATE(158), + [sym_token_repetition] = STATE(158), + [sym__literal] = STATE(158), + [sym_string_literal] = STATE(166), + [sym_raw_string_literal] = STATE(166), + [sym_boolean_literal] = STATE(166), [sym_line_comment] = STATE(133), [sym_block_comment] = STATE(133), - [aux_sym__non_special_token_repeat1] = STATE(160), - [aux_sym_delim_token_tree_repeat1] = STATE(110), - [sym_identifier] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(663), - [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(671), - [anon_sym_RBRACE] = ACTIONS(715), - [anon_sym_EQ_GT] = ACTIONS(663), - [anon_sym_COLON] = ACTIONS(673), - [anon_sym_DOLLAR] = ACTIONS(675), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_STAR] = ACTIONS(673), - [anon_sym_QMARK] = ACTIONS(663), - [anon_sym_u8] = ACTIONS(661), - [anon_sym_i8] = ACTIONS(661), - [anon_sym_u16] = ACTIONS(661), - [anon_sym_i16] = ACTIONS(661), - [anon_sym_u32] = ACTIONS(661), - [anon_sym_i32] = ACTIONS(661), - [anon_sym_u64] = ACTIONS(661), - [anon_sym_i64] = ACTIONS(661), - [anon_sym_u128] = ACTIONS(661), - [anon_sym_i128] = ACTIONS(661), - [anon_sym_isize] = ACTIONS(661), - [anon_sym_usize] = ACTIONS(661), - [anon_sym_f32] = ACTIONS(661), - [anon_sym_f64] = ACTIONS(661), - [anon_sym_bool] = ACTIONS(661), - [anon_sym_str] = ACTIONS(661), - [anon_sym_char] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_SLASH] = ACTIONS(673), - [anon_sym_PERCENT] = ACTIONS(673), - [anon_sym_CARET] = ACTIONS(673), - [anon_sym_BANG] = ACTIONS(673), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE] = ACTIONS(673), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [anon_sym_LT_LT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(673), - [anon_sym_PLUS_EQ] = ACTIONS(663), - [anon_sym_DASH_EQ] = ACTIONS(663), - [anon_sym_STAR_EQ] = ACTIONS(663), - [anon_sym_SLASH_EQ] = ACTIONS(663), - [anon_sym_PERCENT_EQ] = ACTIONS(663), - [anon_sym_CARET_EQ] = ACTIONS(663), - [anon_sym_AMP_EQ] = ACTIONS(663), - [anon_sym_PIPE_EQ] = ACTIONS(663), - [anon_sym_LT_LT_EQ] = ACTIONS(663), - [anon_sym_GT_GT_EQ] = ACTIONS(663), - [anon_sym_EQ] = ACTIONS(673), - [anon_sym_EQ_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_AT] = ACTIONS(663), - [anon_sym__] = ACTIONS(673), - [anon_sym_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_COLON_COLON] = ACTIONS(663), - [anon_sym_DASH_GT] = ACTIONS(663), - [anon_sym_POUND] = ACTIONS(663), - [anon_sym_SQUOTE] = ACTIONS(661), - [anon_sym_as] = ACTIONS(661), - [anon_sym_async] = ACTIONS(661), - [anon_sym_await] = ACTIONS(661), - [anon_sym_break] = ACTIONS(661), - [anon_sym_const] = ACTIONS(661), - [anon_sym_continue] = ACTIONS(661), - [anon_sym_default] = ACTIONS(661), - [anon_sym_enum] = ACTIONS(661), - [anon_sym_fn] = ACTIONS(661), - [anon_sym_for] = ACTIONS(661), - [anon_sym_if] = ACTIONS(661), - [anon_sym_impl] = ACTIONS(661), - [anon_sym_let] = ACTIONS(661), - [anon_sym_loop] = ACTIONS(661), - [anon_sym_match] = ACTIONS(661), - [anon_sym_mod] = ACTIONS(661), - [anon_sym_pub] = ACTIONS(661), - [anon_sym_return] = ACTIONS(661), - [anon_sym_static] = ACTIONS(661), - [anon_sym_struct] = ACTIONS(661), - [anon_sym_trait] = ACTIONS(661), - [anon_sym_type] = ACTIONS(661), - [anon_sym_union] = ACTIONS(661), - [anon_sym_unsafe] = ACTIONS(661), - [anon_sym_use] = ACTIONS(661), - [anon_sym_where] = ACTIONS(661), - [anon_sym_while] = ACTIONS(661), - [sym_mutable_specifier] = ACTIONS(661), - [sym_integer_literal] = ACTIONS(677), - [aux_sym_string_literal_token1] = ACTIONS(679), - [sym_char_literal] = ACTIONS(677), - [anon_sym_true] = ACTIONS(681), - [anon_sym_false] = ACTIONS(681), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_crate] = ACTIONS(661), - [sym__raw_string_literal_start] = ACTIONS(683), - [sym_float_literal] = ACTIONS(677), + [aux_sym_macro_def_body_repeat1] = STATE(134), + [aux_sym__non_special_token_repeat1] = STATE(141), + [sym_identifier] = ACTIONS(670), + [anon_sym_SEMI] = ACTIONS(559), + [anon_sym_LPAREN] = ACTIONS(672), + [anon_sym_LBRACK] = ACTIONS(674), + [anon_sym_LBRACE] = ACTIONS(676), + [anon_sym_RBRACE] = ACTIONS(744), + [anon_sym_COMMA] = ACTIONS(559), + [anon_sym_EQ_GT] = ACTIONS(559), + [anon_sym_COLON] = ACTIONS(569), + [anon_sym_DOLLAR] = ACTIONS(680), + [anon_sym_PLUS] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(569), + [anon_sym_QMARK] = ACTIONS(559), + [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_DASH] = ACTIONS(569), + [anon_sym_SLASH] = ACTIONS(569), + [anon_sym_PERCENT] = ACTIONS(569), + [anon_sym_CARET] = ACTIONS(569), + [anon_sym_BANG] = ACTIONS(569), + [anon_sym_AMP] = ACTIONS(569), + [anon_sym_PIPE] = ACTIONS(569), + [anon_sym_AMP_AMP] = ACTIONS(559), + [anon_sym_PIPE_PIPE] = ACTIONS(559), + [anon_sym_LT_LT] = ACTIONS(569), + [anon_sym_GT_GT] = ACTIONS(569), + [anon_sym_PLUS_EQ] = ACTIONS(559), + [anon_sym_DASH_EQ] = ACTIONS(559), + [anon_sym_STAR_EQ] = ACTIONS(559), + [anon_sym_SLASH_EQ] = ACTIONS(559), + [anon_sym_PERCENT_EQ] = ACTIONS(559), + [anon_sym_CARET_EQ] = ACTIONS(559), + [anon_sym_AMP_EQ] = ACTIONS(559), + [anon_sym_PIPE_EQ] = ACTIONS(559), + [anon_sym_LT_LT_EQ] = ACTIONS(559), + [anon_sym_GT_GT_EQ] = ACTIONS(559), + [anon_sym_EQ] = ACTIONS(569), + [anon_sym_EQ_EQ] = ACTIONS(559), + [anon_sym_BANG_EQ] = ACTIONS(559), + [anon_sym_GT] = ACTIONS(569), + [anon_sym_LT] = ACTIONS(569), + [anon_sym_GT_EQ] = ACTIONS(559), + [anon_sym_LT_EQ] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(559), + [anon_sym__] = ACTIONS(569), + [anon_sym_DOT] = ACTIONS(569), + [anon_sym_DOT_DOT] = ACTIONS(569), + [anon_sym_DOT_DOT_DOT] = ACTIONS(559), + [anon_sym_DOT_DOT_EQ] = ACTIONS(559), + [anon_sym_COLON_COLON] = ACTIONS(559), + [anon_sym_DASH_GT] = ACTIONS(559), + [anon_sym_POUND] = ACTIONS(559), + [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(573), + [aux_sym_string_literal_token1] = ACTIONS(575), + [sym_char_literal] = ACTIONS(573), + [anon_sym_true] = ACTIONS(577), + [anon_sym_false] = ACTIONS(577), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(670), + [sym_super] = ACTIONS(670), + [sym_crate] = ACTIONS(670), + [sym_metavariable] = ACTIONS(682), + [sym__raw_string_literal_start] = ACTIONS(581), + [sym_float_literal] = ACTIONS(573), }, [134] = { + [sym_token_tree] = STATE(158), + [sym_token_repetition] = STATE(158), + [sym__literal] = STATE(158), + [sym_string_literal] = STATE(166), + [sym_raw_string_literal] = STATE(166), + [sym_boolean_literal] = STATE(166), [sym_line_comment] = STATE(134), [sym_block_comment] = STATE(134), - [aux_sym__non_special_token_repeat1] = STATE(134), - [sym_identifier] = ACTIONS(731), - [anon_sym_SEMI] = ACTIONS(733), - [anon_sym_LPAREN] = ACTIONS(736), - [anon_sym_RPAREN] = ACTIONS(736), - [anon_sym_LBRACK] = ACTIONS(736), - [anon_sym_RBRACK] = ACTIONS(736), - [anon_sym_LBRACE] = ACTIONS(736), - [anon_sym_RBRACE] = ACTIONS(736), - [anon_sym_EQ_GT] = ACTIONS(733), - [anon_sym_COLON] = ACTIONS(738), - [anon_sym_DOLLAR] = ACTIONS(731), - [anon_sym_PLUS] = ACTIONS(738), - [anon_sym_STAR] = ACTIONS(738), - [anon_sym_QMARK] = ACTIONS(733), - [anon_sym_u8] = ACTIONS(731), - [anon_sym_i8] = ACTIONS(731), - [anon_sym_u16] = ACTIONS(731), - [anon_sym_i16] = ACTIONS(731), - [anon_sym_u32] = ACTIONS(731), - [anon_sym_i32] = ACTIONS(731), - [anon_sym_u64] = ACTIONS(731), - [anon_sym_i64] = ACTIONS(731), - [anon_sym_u128] = ACTIONS(731), - [anon_sym_i128] = ACTIONS(731), - [anon_sym_isize] = ACTIONS(731), - [anon_sym_usize] = ACTIONS(731), - [anon_sym_f32] = ACTIONS(731), - [anon_sym_f64] = ACTIONS(731), - [anon_sym_bool] = ACTIONS(731), - [anon_sym_str] = ACTIONS(731), - [anon_sym_char] = ACTIONS(731), - [anon_sym_DASH] = ACTIONS(738), - [anon_sym_SLASH] = ACTIONS(738), - [anon_sym_PERCENT] = ACTIONS(738), - [anon_sym_CARET] = ACTIONS(738), - [anon_sym_BANG] = ACTIONS(738), - [anon_sym_AMP] = ACTIONS(738), - [anon_sym_PIPE] = ACTIONS(738), - [anon_sym_AMP_AMP] = ACTIONS(733), - [anon_sym_PIPE_PIPE] = ACTIONS(733), - [anon_sym_LT_LT] = ACTIONS(738), - [anon_sym_GT_GT] = ACTIONS(738), - [anon_sym_PLUS_EQ] = ACTIONS(733), - [anon_sym_DASH_EQ] = ACTIONS(733), - [anon_sym_STAR_EQ] = ACTIONS(733), - [anon_sym_SLASH_EQ] = ACTIONS(733), - [anon_sym_PERCENT_EQ] = ACTIONS(733), - [anon_sym_CARET_EQ] = ACTIONS(733), - [anon_sym_AMP_EQ] = ACTIONS(733), - [anon_sym_PIPE_EQ] = ACTIONS(733), - [anon_sym_LT_LT_EQ] = ACTIONS(733), - [anon_sym_GT_GT_EQ] = ACTIONS(733), - [anon_sym_EQ] = ACTIONS(738), - [anon_sym_EQ_EQ] = ACTIONS(733), - [anon_sym_BANG_EQ] = ACTIONS(733), - [anon_sym_GT] = ACTIONS(738), - [anon_sym_LT] = ACTIONS(738), - [anon_sym_GT_EQ] = ACTIONS(733), - [anon_sym_LT_EQ] = ACTIONS(733), - [anon_sym_AT] = ACTIONS(733), - [anon_sym__] = ACTIONS(738), - [anon_sym_DOT] = ACTIONS(738), - [anon_sym_DOT_DOT] = ACTIONS(738), - [anon_sym_DOT_DOT_DOT] = ACTIONS(733), - [anon_sym_DOT_DOT_EQ] = ACTIONS(733), - [anon_sym_COMMA] = ACTIONS(733), - [anon_sym_COLON_COLON] = ACTIONS(733), - [anon_sym_DASH_GT] = ACTIONS(733), - [anon_sym_POUND] = ACTIONS(733), - [anon_sym_SQUOTE] = ACTIONS(731), - [anon_sym_as] = ACTIONS(731), - [anon_sym_async] = ACTIONS(731), - [anon_sym_await] = ACTIONS(731), - [anon_sym_break] = ACTIONS(731), - [anon_sym_const] = ACTIONS(731), - [anon_sym_continue] = ACTIONS(731), - [anon_sym_default] = ACTIONS(731), - [anon_sym_enum] = ACTIONS(731), - [anon_sym_fn] = ACTIONS(731), - [anon_sym_for] = ACTIONS(731), - [anon_sym_if] = ACTIONS(731), - [anon_sym_impl] = ACTIONS(731), - [anon_sym_let] = ACTIONS(731), - [anon_sym_loop] = ACTIONS(731), - [anon_sym_match] = ACTIONS(731), - [anon_sym_mod] = ACTIONS(731), - [anon_sym_pub] = ACTIONS(731), - [anon_sym_return] = ACTIONS(731), - [anon_sym_static] = ACTIONS(731), - [anon_sym_struct] = ACTIONS(731), - [anon_sym_trait] = ACTIONS(731), - [anon_sym_type] = ACTIONS(731), - [anon_sym_union] = ACTIONS(731), - [anon_sym_unsafe] = ACTIONS(731), - [anon_sym_use] = ACTIONS(731), - [anon_sym_where] = ACTIONS(731), - [anon_sym_while] = ACTIONS(731), - [sym_mutable_specifier] = ACTIONS(731), - [sym_integer_literal] = ACTIONS(736), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(736), - [anon_sym_true] = ACTIONS(731), - [anon_sym_false] = ACTIONS(731), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(731), - [sym_super] = ACTIONS(731), - [sym_crate] = ACTIONS(731), - [sym_metavariable] = ACTIONS(736), - [sym__raw_string_literal_start] = ACTIONS(736), - [sym_float_literal] = ACTIONS(736), + [aux_sym_macro_def_body_repeat1] = STATE(85), + [aux_sym__non_special_token_repeat1] = STATE(141), + [sym_identifier] = ACTIONS(670), + [anon_sym_SEMI] = ACTIONS(559), + [anon_sym_LPAREN] = ACTIONS(672), + [anon_sym_LBRACK] = ACTIONS(674), + [anon_sym_LBRACE] = ACTIONS(676), + [anon_sym_RBRACE] = ACTIONS(726), + [anon_sym_COMMA] = ACTIONS(559), + [anon_sym_EQ_GT] = ACTIONS(559), + [anon_sym_COLON] = ACTIONS(569), + [anon_sym_DOLLAR] = ACTIONS(680), + [anon_sym_PLUS] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(569), + [anon_sym_QMARK] = ACTIONS(559), + [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_DASH] = ACTIONS(569), + [anon_sym_SLASH] = ACTIONS(569), + [anon_sym_PERCENT] = ACTIONS(569), + [anon_sym_CARET] = ACTIONS(569), + [anon_sym_BANG] = ACTIONS(569), + [anon_sym_AMP] = ACTIONS(569), + [anon_sym_PIPE] = ACTIONS(569), + [anon_sym_AMP_AMP] = ACTIONS(559), + [anon_sym_PIPE_PIPE] = ACTIONS(559), + [anon_sym_LT_LT] = ACTIONS(569), + [anon_sym_GT_GT] = ACTIONS(569), + [anon_sym_PLUS_EQ] = ACTIONS(559), + [anon_sym_DASH_EQ] = ACTIONS(559), + [anon_sym_STAR_EQ] = ACTIONS(559), + [anon_sym_SLASH_EQ] = ACTIONS(559), + [anon_sym_PERCENT_EQ] = ACTIONS(559), + [anon_sym_CARET_EQ] = ACTIONS(559), + [anon_sym_AMP_EQ] = ACTIONS(559), + [anon_sym_PIPE_EQ] = ACTIONS(559), + [anon_sym_LT_LT_EQ] = ACTIONS(559), + [anon_sym_GT_GT_EQ] = ACTIONS(559), + [anon_sym_EQ] = ACTIONS(569), + [anon_sym_EQ_EQ] = ACTIONS(559), + [anon_sym_BANG_EQ] = ACTIONS(559), + [anon_sym_GT] = ACTIONS(569), + [anon_sym_LT] = ACTIONS(569), + [anon_sym_GT_EQ] = ACTIONS(559), + [anon_sym_LT_EQ] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(559), + [anon_sym__] = ACTIONS(569), + [anon_sym_DOT] = ACTIONS(569), + [anon_sym_DOT_DOT] = ACTIONS(569), + [anon_sym_DOT_DOT_DOT] = ACTIONS(559), + [anon_sym_DOT_DOT_EQ] = ACTIONS(559), + [anon_sym_COLON_COLON] = ACTIONS(559), + [anon_sym_DASH_GT] = ACTIONS(559), + [anon_sym_POUND] = ACTIONS(559), + [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(573), + [aux_sym_string_literal_token1] = ACTIONS(575), + [sym_char_literal] = ACTIONS(573), + [anon_sym_true] = ACTIONS(577), + [anon_sym_false] = ACTIONS(577), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(670), + [sym_super] = ACTIONS(670), + [sym_crate] = ACTIONS(670), + [sym_metavariable] = ACTIONS(682), + [sym__raw_string_literal_start] = ACTIONS(581), + [sym_float_literal] = ACTIONS(573), }, [135] = { + [sym_delim_token_tree] = STATE(201), + [sym__delim_tokens] = STATE(198), + [sym__non_delim_token] = STATE(201), + [sym__literal] = STATE(205), + [sym_string_literal] = STATE(214), + [sym_raw_string_literal] = STATE(214), + [sym_boolean_literal] = STATE(214), [sym_line_comment] = STATE(135), [sym_block_comment] = STATE(135), - [aux_sym__non_special_token_repeat1] = STATE(134), - [sym_identifier] = ACTIONS(741), - [anon_sym_SEMI] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(743), - [anon_sym_RPAREN] = ACTIONS(743), - [anon_sym_LBRACK] = ACTIONS(743), - [anon_sym_RBRACK] = ACTIONS(743), - [anon_sym_LBRACE] = ACTIONS(743), - [anon_sym_RBRACE] = ACTIONS(743), - [anon_sym_EQ_GT] = ACTIONS(554), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(741), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_QMARK] = ACTIONS(554), - [anon_sym_u8] = ACTIONS(741), - [anon_sym_i8] = ACTIONS(741), - [anon_sym_u16] = ACTIONS(741), - [anon_sym_i16] = ACTIONS(741), - [anon_sym_u32] = ACTIONS(741), - [anon_sym_i32] = ACTIONS(741), - [anon_sym_u64] = ACTIONS(741), - [anon_sym_i64] = ACTIONS(741), - [anon_sym_u128] = ACTIONS(741), - [anon_sym_i128] = ACTIONS(741), - [anon_sym_isize] = ACTIONS(741), - [anon_sym_usize] = ACTIONS(741), - [anon_sym_f32] = ACTIONS(741), - [anon_sym_f64] = ACTIONS(741), - [anon_sym_bool] = ACTIONS(741), - [anon_sym_str] = ACTIONS(741), - [anon_sym_char] = ACTIONS(741), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_AMP] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_AMP_AMP] = ACTIONS(554), - [anon_sym_PIPE_PIPE] = ACTIONS(554), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_GT_GT] = ACTIONS(564), - [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_CARET_EQ] = ACTIONS(554), - [anon_sym_AMP_EQ] = ACTIONS(554), - [anon_sym_PIPE_EQ] = ACTIONS(554), - [anon_sym_LT_LT_EQ] = ACTIONS(554), - [anon_sym_GT_GT_EQ] = ACTIONS(554), - [anon_sym_EQ] = ACTIONS(564), - [anon_sym_EQ_EQ] = ACTIONS(554), - [anon_sym_BANG_EQ] = ACTIONS(554), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT_EQ] = ACTIONS(554), - [anon_sym_LT_EQ] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(554), - [anon_sym__] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(554), - [anon_sym_DOT_DOT_EQ] = ACTIONS(554), - [anon_sym_COMMA] = ACTIONS(554), - [anon_sym_COLON_COLON] = ACTIONS(554), - [anon_sym_DASH_GT] = ACTIONS(554), - [anon_sym_POUND] = ACTIONS(554), - [anon_sym_SQUOTE] = ACTIONS(741), - [anon_sym_as] = ACTIONS(741), - [anon_sym_async] = ACTIONS(741), - [anon_sym_await] = ACTIONS(741), - [anon_sym_break] = ACTIONS(741), - [anon_sym_const] = ACTIONS(741), - [anon_sym_continue] = ACTIONS(741), - [anon_sym_default] = ACTIONS(741), - [anon_sym_enum] = ACTIONS(741), - [anon_sym_fn] = ACTIONS(741), - [anon_sym_for] = ACTIONS(741), - [anon_sym_if] = ACTIONS(741), - [anon_sym_impl] = ACTIONS(741), - [anon_sym_let] = ACTIONS(741), - [anon_sym_loop] = ACTIONS(741), - [anon_sym_match] = ACTIONS(741), - [anon_sym_mod] = ACTIONS(741), - [anon_sym_pub] = ACTIONS(741), - [anon_sym_return] = ACTIONS(741), - [anon_sym_static] = ACTIONS(741), - [anon_sym_struct] = ACTIONS(741), - [anon_sym_trait] = ACTIONS(741), - [anon_sym_type] = ACTIONS(741), - [anon_sym_union] = ACTIONS(741), - [anon_sym_unsafe] = ACTIONS(741), - [anon_sym_use] = ACTIONS(741), - [anon_sym_where] = ACTIONS(741), - [anon_sym_while] = ACTIONS(741), - [sym_mutable_specifier] = ACTIONS(741), - [sym_integer_literal] = ACTIONS(743), - [aux_sym_string_literal_token1] = ACTIONS(743), - [sym_char_literal] = ACTIONS(743), - [anon_sym_true] = ACTIONS(741), - [anon_sym_false] = ACTIONS(741), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(741), - [sym_super] = ACTIONS(741), - [sym_crate] = ACTIONS(741), - [sym_metavariable] = ACTIONS(743), - [sym__raw_string_literal_start] = ACTIONS(743), - [sym_float_literal] = ACTIONS(743), + [aux_sym__non_special_token_repeat1] = STATE(152), + [aux_sym_delim_token_tree_repeat1] = STATE(83), + [sym_identifier] = ACTIONS(686), + [anon_sym_SEMI] = ACTIONS(688), + [anon_sym_LPAREN] = ACTIONS(690), + [anon_sym_RPAREN] = ACTIONS(746), + [anon_sym_LBRACK] = ACTIONS(692), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_COMMA] = ACTIONS(688), + [anon_sym_EQ_GT] = ACTIONS(688), + [anon_sym_COLON] = ACTIONS(698), + [anon_sym_DOLLAR] = ACTIONS(700), + [anon_sym_PLUS] = ACTIONS(698), + [anon_sym_STAR] = ACTIONS(698), + [anon_sym_QMARK] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(686), + [anon_sym_i8] = ACTIONS(686), + [anon_sym_u16] = ACTIONS(686), + [anon_sym_i16] = ACTIONS(686), + [anon_sym_u32] = ACTIONS(686), + [anon_sym_i32] = ACTIONS(686), + [anon_sym_u64] = ACTIONS(686), + [anon_sym_i64] = ACTIONS(686), + [anon_sym_u128] = ACTIONS(686), + [anon_sym_i128] = ACTIONS(686), + [anon_sym_isize] = ACTIONS(686), + [anon_sym_usize] = ACTIONS(686), + [anon_sym_f32] = ACTIONS(686), + [anon_sym_f64] = ACTIONS(686), + [anon_sym_bool] = ACTIONS(686), + [anon_sym_str] = ACTIONS(686), + [anon_sym_char] = ACTIONS(686), + [anon_sym_DASH] = ACTIONS(698), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_PERCENT] = ACTIONS(698), + [anon_sym_CARET] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(698), + [anon_sym_AMP] = ACTIONS(698), + [anon_sym_PIPE] = ACTIONS(698), + [anon_sym_AMP_AMP] = ACTIONS(688), + [anon_sym_PIPE_PIPE] = ACTIONS(688), + [anon_sym_LT_LT] = ACTIONS(698), + [anon_sym_GT_GT] = ACTIONS(698), + [anon_sym_PLUS_EQ] = ACTIONS(688), + [anon_sym_DASH_EQ] = ACTIONS(688), + [anon_sym_STAR_EQ] = ACTIONS(688), + [anon_sym_SLASH_EQ] = ACTIONS(688), + [anon_sym_PERCENT_EQ] = ACTIONS(688), + [anon_sym_CARET_EQ] = ACTIONS(688), + [anon_sym_AMP_EQ] = ACTIONS(688), + [anon_sym_PIPE_EQ] = ACTIONS(688), + [anon_sym_LT_LT_EQ] = ACTIONS(688), + [anon_sym_GT_GT_EQ] = ACTIONS(688), + [anon_sym_EQ] = ACTIONS(698), + [anon_sym_EQ_EQ] = ACTIONS(688), + [anon_sym_BANG_EQ] = ACTIONS(688), + [anon_sym_GT] = ACTIONS(698), + [anon_sym_LT] = ACTIONS(698), + [anon_sym_GT_EQ] = ACTIONS(688), + [anon_sym_LT_EQ] = ACTIONS(688), + [anon_sym_AT] = ACTIONS(688), + [anon_sym__] = ACTIONS(698), + [anon_sym_DOT] = ACTIONS(698), + [anon_sym_DOT_DOT] = ACTIONS(698), + [anon_sym_DOT_DOT_DOT] = ACTIONS(688), + [anon_sym_DOT_DOT_EQ] = ACTIONS(688), + [anon_sym_COLON_COLON] = ACTIONS(688), + [anon_sym_DASH_GT] = ACTIONS(688), + [anon_sym_POUND] = ACTIONS(688), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_as] = ACTIONS(686), + [anon_sym_async] = ACTIONS(686), + [anon_sym_await] = ACTIONS(686), + [anon_sym_break] = ACTIONS(686), + [anon_sym_const] = ACTIONS(686), + [anon_sym_continue] = ACTIONS(686), + [anon_sym_default] = ACTIONS(686), + [anon_sym_enum] = ACTIONS(686), + [anon_sym_fn] = ACTIONS(686), + [anon_sym_for] = ACTIONS(686), + [anon_sym_if] = ACTIONS(686), + [anon_sym_impl] = ACTIONS(686), + [anon_sym_let] = ACTIONS(686), + [anon_sym_loop] = ACTIONS(686), + [anon_sym_match] = ACTIONS(686), + [anon_sym_mod] = ACTIONS(686), + [anon_sym_pub] = ACTIONS(686), + [anon_sym_return] = ACTIONS(686), + [anon_sym_static] = ACTIONS(686), + [anon_sym_struct] = ACTIONS(686), + [anon_sym_trait] = ACTIONS(686), + [anon_sym_type] = ACTIONS(686), + [anon_sym_union] = ACTIONS(686), + [anon_sym_unsafe] = ACTIONS(686), + [anon_sym_use] = ACTIONS(686), + [anon_sym_where] = ACTIONS(686), + [anon_sym_while] = ACTIONS(686), + [sym_mutable_specifier] = ACTIONS(686), + [sym_integer_literal] = ACTIONS(702), + [aux_sym_string_literal_token1] = ACTIONS(704), + [sym_char_literal] = ACTIONS(702), + [anon_sym_true] = ACTIONS(706), + [anon_sym_false] = ACTIONS(706), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(686), + [sym_super] = ACTIONS(686), + [sym_crate] = ACTIONS(686), + [sym__raw_string_literal_start] = ACTIONS(708), + [sym_float_literal] = ACTIONS(702), }, [136] = { + [sym_token_tree] = STATE(158), + [sym_token_repetition] = STATE(158), + [sym__literal] = STATE(158), + [sym_string_literal] = STATE(166), + [sym_raw_string_literal] = STATE(166), + [sym_boolean_literal] = STATE(166), [sym_line_comment] = STATE(136), [sym_block_comment] = STATE(136), - [aux_sym__non_special_token_repeat1] = STATE(134), - [sym_identifier] = ACTIONS(745), - [anon_sym_SEMI] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(747), - [anon_sym_RPAREN] = ACTIONS(747), - [anon_sym_LBRACK] = ACTIONS(747), - [anon_sym_RBRACK] = ACTIONS(747), - [anon_sym_LBRACE] = ACTIONS(747), - [anon_sym_RBRACE] = ACTIONS(747), - [anon_sym_EQ_GT] = ACTIONS(554), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(745), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_QMARK] = ACTIONS(554), - [anon_sym_u8] = ACTIONS(745), - [anon_sym_i8] = ACTIONS(745), - [anon_sym_u16] = ACTIONS(745), - [anon_sym_i16] = ACTIONS(745), - [anon_sym_u32] = ACTIONS(745), - [anon_sym_i32] = ACTIONS(745), - [anon_sym_u64] = ACTIONS(745), - [anon_sym_i64] = ACTIONS(745), - [anon_sym_u128] = ACTIONS(745), - [anon_sym_i128] = ACTIONS(745), - [anon_sym_isize] = ACTIONS(745), - [anon_sym_usize] = ACTIONS(745), - [anon_sym_f32] = ACTIONS(745), - [anon_sym_f64] = ACTIONS(745), - [anon_sym_bool] = ACTIONS(745), - [anon_sym_str] = ACTIONS(745), - [anon_sym_char] = ACTIONS(745), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_AMP] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_AMP_AMP] = ACTIONS(554), - [anon_sym_PIPE_PIPE] = ACTIONS(554), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_GT_GT] = ACTIONS(564), - [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_CARET_EQ] = ACTIONS(554), - [anon_sym_AMP_EQ] = ACTIONS(554), - [anon_sym_PIPE_EQ] = ACTIONS(554), - [anon_sym_LT_LT_EQ] = ACTIONS(554), - [anon_sym_GT_GT_EQ] = ACTIONS(554), - [anon_sym_EQ] = ACTIONS(564), - [anon_sym_EQ_EQ] = ACTIONS(554), - [anon_sym_BANG_EQ] = ACTIONS(554), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT_EQ] = ACTIONS(554), - [anon_sym_LT_EQ] = ACTIONS(554), - [anon_sym_AT] = ACTIONS(554), - [anon_sym__] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(554), - [anon_sym_DOT_DOT_EQ] = ACTIONS(554), - [anon_sym_COMMA] = ACTIONS(554), - [anon_sym_COLON_COLON] = ACTIONS(554), - [anon_sym_DASH_GT] = ACTIONS(554), - [anon_sym_POUND] = ACTIONS(554), - [anon_sym_SQUOTE] = ACTIONS(745), - [anon_sym_as] = ACTIONS(745), - [anon_sym_async] = ACTIONS(745), - [anon_sym_await] = ACTIONS(745), - [anon_sym_break] = ACTIONS(745), - [anon_sym_const] = ACTIONS(745), - [anon_sym_continue] = ACTIONS(745), - [anon_sym_default] = ACTIONS(745), - [anon_sym_enum] = ACTIONS(745), - [anon_sym_fn] = ACTIONS(745), - [anon_sym_for] = ACTIONS(745), - [anon_sym_if] = ACTIONS(745), - [anon_sym_impl] = ACTIONS(745), - [anon_sym_let] = ACTIONS(745), - [anon_sym_loop] = ACTIONS(745), - [anon_sym_match] = ACTIONS(745), - [anon_sym_mod] = ACTIONS(745), - [anon_sym_pub] = ACTIONS(745), - [anon_sym_return] = ACTIONS(745), - [anon_sym_static] = ACTIONS(745), - [anon_sym_struct] = ACTIONS(745), - [anon_sym_trait] = ACTIONS(745), - [anon_sym_type] = ACTIONS(745), - [anon_sym_union] = ACTIONS(745), - [anon_sym_unsafe] = ACTIONS(745), - [anon_sym_use] = ACTIONS(745), - [anon_sym_where] = ACTIONS(745), - [anon_sym_while] = ACTIONS(745), - [sym_mutable_specifier] = ACTIONS(745), - [sym_integer_literal] = ACTIONS(747), - [aux_sym_string_literal_token1] = ACTIONS(747), - [sym_char_literal] = ACTIONS(747), - [anon_sym_true] = ACTIONS(745), - [anon_sym_false] = ACTIONS(745), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(745), - [sym_super] = ACTIONS(745), - [sym_crate] = ACTIONS(745), - [sym_metavariable] = ACTIONS(747), - [sym__raw_string_literal_start] = ACTIONS(747), - [sym_float_literal] = ACTIONS(747), + [aux_sym_macro_def_body_repeat1] = STATE(110), + [aux_sym__non_special_token_repeat1] = STATE(141), + [sym_identifier] = ACTIONS(670), + [anon_sym_SEMI] = ACTIONS(559), + [anon_sym_LPAREN] = ACTIONS(672), + [anon_sym_LBRACK] = ACTIONS(674), + [anon_sym_RBRACK] = ACTIONS(744), + [anon_sym_LBRACE] = ACTIONS(676), + [anon_sym_COMMA] = ACTIONS(559), + [anon_sym_EQ_GT] = ACTIONS(559), + [anon_sym_COLON] = ACTIONS(569), + [anon_sym_DOLLAR] = ACTIONS(680), + [anon_sym_PLUS] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(569), + [anon_sym_QMARK] = ACTIONS(559), + [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_DASH] = ACTIONS(569), + [anon_sym_SLASH] = ACTIONS(569), + [anon_sym_PERCENT] = ACTIONS(569), + [anon_sym_CARET] = ACTIONS(569), + [anon_sym_BANG] = ACTIONS(569), + [anon_sym_AMP] = ACTIONS(569), + [anon_sym_PIPE] = ACTIONS(569), + [anon_sym_AMP_AMP] = ACTIONS(559), + [anon_sym_PIPE_PIPE] = ACTIONS(559), + [anon_sym_LT_LT] = ACTIONS(569), + [anon_sym_GT_GT] = ACTIONS(569), + [anon_sym_PLUS_EQ] = ACTIONS(559), + [anon_sym_DASH_EQ] = ACTIONS(559), + [anon_sym_STAR_EQ] = ACTIONS(559), + [anon_sym_SLASH_EQ] = ACTIONS(559), + [anon_sym_PERCENT_EQ] = ACTIONS(559), + [anon_sym_CARET_EQ] = ACTIONS(559), + [anon_sym_AMP_EQ] = ACTIONS(559), + [anon_sym_PIPE_EQ] = ACTIONS(559), + [anon_sym_LT_LT_EQ] = ACTIONS(559), + [anon_sym_GT_GT_EQ] = ACTIONS(559), + [anon_sym_EQ] = ACTIONS(569), + [anon_sym_EQ_EQ] = ACTIONS(559), + [anon_sym_BANG_EQ] = ACTIONS(559), + [anon_sym_GT] = ACTIONS(569), + [anon_sym_LT] = ACTIONS(569), + [anon_sym_GT_EQ] = ACTIONS(559), + [anon_sym_LT_EQ] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(559), + [anon_sym__] = ACTIONS(569), + [anon_sym_DOT] = ACTIONS(569), + [anon_sym_DOT_DOT] = ACTIONS(569), + [anon_sym_DOT_DOT_DOT] = ACTIONS(559), + [anon_sym_DOT_DOT_EQ] = ACTIONS(559), + [anon_sym_COLON_COLON] = ACTIONS(559), + [anon_sym_DASH_GT] = ACTIONS(559), + [anon_sym_POUND] = ACTIONS(559), + [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(573), + [aux_sym_string_literal_token1] = ACTIONS(575), + [sym_char_literal] = ACTIONS(573), + [anon_sym_true] = ACTIONS(577), + [anon_sym_false] = ACTIONS(577), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(670), + [sym_super] = ACTIONS(670), + [sym_crate] = ACTIONS(670), + [sym_metavariable] = ACTIONS(682), + [sym__raw_string_literal_start] = ACTIONS(581), + [sym_float_literal] = ACTIONS(573), }, [137] = { + [sym_delim_token_tree] = STATE(201), + [sym__delim_tokens] = STATE(198), + [sym__non_delim_token] = STATE(201), + [sym__literal] = STATE(205), + [sym_string_literal] = STATE(214), + [sym_raw_string_literal] = STATE(214), + [sym_boolean_literal] = STATE(214), [sym_line_comment] = STATE(137), [sym_block_comment] = STATE(137), - [sym_identifier] = ACTIONS(749), - [anon_sym_SEMI] = ACTIONS(751), - [anon_sym_LPAREN] = ACTIONS(751), - [anon_sym_RPAREN] = ACTIONS(751), - [anon_sym_LBRACK] = ACTIONS(751), - [anon_sym_RBRACK] = ACTIONS(751), - [anon_sym_LBRACE] = ACTIONS(751), - [anon_sym_RBRACE] = ACTIONS(751), - [anon_sym_EQ_GT] = ACTIONS(751), - [anon_sym_COLON] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(749), - [anon_sym_STAR] = ACTIONS(749), - [anon_sym_QMARK] = ACTIONS(751), - [anon_sym_u8] = ACTIONS(749), - [anon_sym_i8] = ACTIONS(749), - [anon_sym_u16] = ACTIONS(749), - [anon_sym_i16] = ACTIONS(749), - [anon_sym_u32] = ACTIONS(749), - [anon_sym_i32] = ACTIONS(749), - [anon_sym_u64] = ACTIONS(749), - [anon_sym_i64] = ACTIONS(749), - [anon_sym_u128] = ACTIONS(749), - [anon_sym_i128] = ACTIONS(749), - [anon_sym_isize] = ACTIONS(749), - [anon_sym_usize] = ACTIONS(749), - [anon_sym_f32] = ACTIONS(749), - [anon_sym_f64] = ACTIONS(749), - [anon_sym_bool] = ACTIONS(749), - [anon_sym_str] = ACTIONS(749), - [anon_sym_char] = ACTIONS(749), - [anon_sym_DASH] = ACTIONS(749), - [anon_sym_SLASH] = ACTIONS(749), - [anon_sym_PERCENT] = ACTIONS(749), - [anon_sym_CARET] = ACTIONS(749), - [anon_sym_BANG] = ACTIONS(749), - [anon_sym_AMP] = ACTIONS(749), - [anon_sym_PIPE] = ACTIONS(749), - [anon_sym_AMP_AMP] = ACTIONS(751), - [anon_sym_PIPE_PIPE] = ACTIONS(751), - [anon_sym_LT_LT] = ACTIONS(749), - [anon_sym_GT_GT] = ACTIONS(749), - [anon_sym_PLUS_EQ] = ACTIONS(751), - [anon_sym_DASH_EQ] = ACTIONS(751), - [anon_sym_STAR_EQ] = ACTIONS(751), - [anon_sym_SLASH_EQ] = ACTIONS(751), - [anon_sym_PERCENT_EQ] = ACTIONS(751), - [anon_sym_CARET_EQ] = ACTIONS(751), - [anon_sym_AMP_EQ] = ACTIONS(751), - [anon_sym_PIPE_EQ] = ACTIONS(751), - [anon_sym_LT_LT_EQ] = ACTIONS(751), - [anon_sym_GT_GT_EQ] = ACTIONS(751), - [anon_sym_EQ] = ACTIONS(749), - [anon_sym_EQ_EQ] = ACTIONS(751), - [anon_sym_BANG_EQ] = ACTIONS(751), - [anon_sym_GT] = ACTIONS(749), - [anon_sym_LT] = ACTIONS(749), - [anon_sym_GT_EQ] = ACTIONS(751), - [anon_sym_LT_EQ] = ACTIONS(751), - [anon_sym_AT] = ACTIONS(751), - [anon_sym__] = ACTIONS(749), - [anon_sym_DOT] = ACTIONS(749), - [anon_sym_DOT_DOT] = ACTIONS(749), - [anon_sym_DOT_DOT_DOT] = ACTIONS(751), - [anon_sym_DOT_DOT_EQ] = ACTIONS(751), - [anon_sym_COMMA] = ACTIONS(751), - [anon_sym_COLON_COLON] = ACTIONS(751), - [anon_sym_DASH_GT] = ACTIONS(751), - [anon_sym_POUND] = ACTIONS(751), - [anon_sym_SQUOTE] = ACTIONS(749), - [anon_sym_as] = ACTIONS(749), - [anon_sym_async] = ACTIONS(749), - [anon_sym_await] = ACTIONS(749), - [anon_sym_break] = ACTIONS(749), - [anon_sym_const] = ACTIONS(749), - [anon_sym_continue] = ACTIONS(749), - [anon_sym_default] = ACTIONS(749), - [anon_sym_enum] = ACTIONS(749), - [anon_sym_fn] = ACTIONS(749), - [anon_sym_for] = ACTIONS(749), - [anon_sym_if] = ACTIONS(749), - [anon_sym_impl] = ACTIONS(749), - [anon_sym_let] = ACTIONS(749), - [anon_sym_loop] = ACTIONS(749), - [anon_sym_match] = ACTIONS(749), - [anon_sym_mod] = ACTIONS(749), - [anon_sym_pub] = ACTIONS(749), - [anon_sym_return] = ACTIONS(749), - [anon_sym_static] = ACTIONS(749), - [anon_sym_struct] = ACTIONS(749), - [anon_sym_trait] = ACTIONS(749), - [anon_sym_type] = ACTIONS(749), - [anon_sym_union] = ACTIONS(749), - [anon_sym_unsafe] = ACTIONS(749), - [anon_sym_use] = ACTIONS(749), - [anon_sym_where] = ACTIONS(749), - [anon_sym_while] = ACTIONS(749), - [sym_mutable_specifier] = ACTIONS(749), - [sym_integer_literal] = ACTIONS(751), - [aux_sym_string_literal_token1] = ACTIONS(751), - [sym_char_literal] = ACTIONS(751), - [anon_sym_true] = ACTIONS(749), - [anon_sym_false] = ACTIONS(749), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(749), - [sym_super] = ACTIONS(749), - [sym_crate] = ACTIONS(749), - [sym_metavariable] = ACTIONS(751), - [sym__raw_string_literal_start] = ACTIONS(751), - [sym_float_literal] = ACTIONS(751), + [aux_sym__non_special_token_repeat1] = STATE(152), + [aux_sym_delim_token_tree_repeat1] = STATE(83), + [sym_identifier] = ACTIONS(686), + [anon_sym_SEMI] = ACTIONS(688), + [anon_sym_LPAREN] = ACTIONS(690), + [anon_sym_LBRACK] = ACTIONS(692), + [anon_sym_RBRACK] = ACTIONS(746), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_COMMA] = ACTIONS(688), + [anon_sym_EQ_GT] = ACTIONS(688), + [anon_sym_COLON] = ACTIONS(698), + [anon_sym_DOLLAR] = ACTIONS(700), + [anon_sym_PLUS] = ACTIONS(698), + [anon_sym_STAR] = ACTIONS(698), + [anon_sym_QMARK] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(686), + [anon_sym_i8] = ACTIONS(686), + [anon_sym_u16] = ACTIONS(686), + [anon_sym_i16] = ACTIONS(686), + [anon_sym_u32] = ACTIONS(686), + [anon_sym_i32] = ACTIONS(686), + [anon_sym_u64] = ACTIONS(686), + [anon_sym_i64] = ACTIONS(686), + [anon_sym_u128] = ACTIONS(686), + [anon_sym_i128] = ACTIONS(686), + [anon_sym_isize] = ACTIONS(686), + [anon_sym_usize] = ACTIONS(686), + [anon_sym_f32] = ACTIONS(686), + [anon_sym_f64] = ACTIONS(686), + [anon_sym_bool] = ACTIONS(686), + [anon_sym_str] = ACTIONS(686), + [anon_sym_char] = ACTIONS(686), + [anon_sym_DASH] = ACTIONS(698), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_PERCENT] = ACTIONS(698), + [anon_sym_CARET] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(698), + [anon_sym_AMP] = ACTIONS(698), + [anon_sym_PIPE] = ACTIONS(698), + [anon_sym_AMP_AMP] = ACTIONS(688), + [anon_sym_PIPE_PIPE] = ACTIONS(688), + [anon_sym_LT_LT] = ACTIONS(698), + [anon_sym_GT_GT] = ACTIONS(698), + [anon_sym_PLUS_EQ] = ACTIONS(688), + [anon_sym_DASH_EQ] = ACTIONS(688), + [anon_sym_STAR_EQ] = ACTIONS(688), + [anon_sym_SLASH_EQ] = ACTIONS(688), + [anon_sym_PERCENT_EQ] = ACTIONS(688), + [anon_sym_CARET_EQ] = ACTIONS(688), + [anon_sym_AMP_EQ] = ACTIONS(688), + [anon_sym_PIPE_EQ] = ACTIONS(688), + [anon_sym_LT_LT_EQ] = ACTIONS(688), + [anon_sym_GT_GT_EQ] = ACTIONS(688), + [anon_sym_EQ] = ACTIONS(698), + [anon_sym_EQ_EQ] = ACTIONS(688), + [anon_sym_BANG_EQ] = ACTIONS(688), + [anon_sym_GT] = ACTIONS(698), + [anon_sym_LT] = ACTIONS(698), + [anon_sym_GT_EQ] = ACTIONS(688), + [anon_sym_LT_EQ] = ACTIONS(688), + [anon_sym_AT] = ACTIONS(688), + [anon_sym__] = ACTIONS(698), + [anon_sym_DOT] = ACTIONS(698), + [anon_sym_DOT_DOT] = ACTIONS(698), + [anon_sym_DOT_DOT_DOT] = ACTIONS(688), + [anon_sym_DOT_DOT_EQ] = ACTIONS(688), + [anon_sym_COLON_COLON] = ACTIONS(688), + [anon_sym_DASH_GT] = ACTIONS(688), + [anon_sym_POUND] = ACTIONS(688), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_as] = ACTIONS(686), + [anon_sym_async] = ACTIONS(686), + [anon_sym_await] = ACTIONS(686), + [anon_sym_break] = ACTIONS(686), + [anon_sym_const] = ACTIONS(686), + [anon_sym_continue] = ACTIONS(686), + [anon_sym_default] = ACTIONS(686), + [anon_sym_enum] = ACTIONS(686), + [anon_sym_fn] = ACTIONS(686), + [anon_sym_for] = ACTIONS(686), + [anon_sym_if] = ACTIONS(686), + [anon_sym_impl] = ACTIONS(686), + [anon_sym_let] = ACTIONS(686), + [anon_sym_loop] = ACTIONS(686), + [anon_sym_match] = ACTIONS(686), + [anon_sym_mod] = ACTIONS(686), + [anon_sym_pub] = ACTIONS(686), + [anon_sym_return] = ACTIONS(686), + [anon_sym_static] = ACTIONS(686), + [anon_sym_struct] = ACTIONS(686), + [anon_sym_trait] = ACTIONS(686), + [anon_sym_type] = ACTIONS(686), + [anon_sym_union] = ACTIONS(686), + [anon_sym_unsafe] = ACTIONS(686), + [anon_sym_use] = ACTIONS(686), + [anon_sym_where] = ACTIONS(686), + [anon_sym_while] = ACTIONS(686), + [sym_mutable_specifier] = ACTIONS(686), + [sym_integer_literal] = ACTIONS(702), + [aux_sym_string_literal_token1] = ACTIONS(704), + [sym_char_literal] = ACTIONS(702), + [anon_sym_true] = ACTIONS(706), + [anon_sym_false] = ACTIONS(706), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(686), + [sym_super] = ACTIONS(686), + [sym_crate] = ACTIONS(686), + [sym__raw_string_literal_start] = ACTIONS(708), + [sym_float_literal] = ACTIONS(702), }, [138] = { + [sym_token_tree] = STATE(158), + [sym_token_repetition] = STATE(158), + [sym__literal] = STATE(158), + [sym_string_literal] = STATE(166), + [sym_raw_string_literal] = STATE(166), + [sym_boolean_literal] = STATE(166), [sym_line_comment] = STATE(138), [sym_block_comment] = STATE(138), - [sym_identifier] = ACTIONS(753), - [anon_sym_SEMI] = ACTIONS(755), - [anon_sym_LPAREN] = ACTIONS(755), - [anon_sym_RPAREN] = ACTIONS(755), - [anon_sym_LBRACK] = ACTIONS(755), - [anon_sym_RBRACK] = ACTIONS(755), - [anon_sym_LBRACE] = ACTIONS(755), - [anon_sym_RBRACE] = ACTIONS(755), - [anon_sym_EQ_GT] = ACTIONS(755), - [anon_sym_COLON] = ACTIONS(753), - [anon_sym_DOLLAR] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(753), - [anon_sym_STAR] = ACTIONS(753), - [anon_sym_QMARK] = ACTIONS(755), - [anon_sym_u8] = ACTIONS(753), - [anon_sym_i8] = ACTIONS(753), - [anon_sym_u16] = ACTIONS(753), - [anon_sym_i16] = ACTIONS(753), - [anon_sym_u32] = ACTIONS(753), - [anon_sym_i32] = ACTIONS(753), - [anon_sym_u64] = ACTIONS(753), - [anon_sym_i64] = ACTIONS(753), - [anon_sym_u128] = ACTIONS(753), - [anon_sym_i128] = ACTIONS(753), - [anon_sym_isize] = ACTIONS(753), - [anon_sym_usize] = ACTIONS(753), - [anon_sym_f32] = ACTIONS(753), - [anon_sym_f64] = ACTIONS(753), - [anon_sym_bool] = ACTIONS(753), - [anon_sym_str] = ACTIONS(753), - [anon_sym_char] = ACTIONS(753), - [anon_sym_DASH] = ACTIONS(753), - [anon_sym_SLASH] = ACTIONS(753), - [anon_sym_PERCENT] = ACTIONS(753), - [anon_sym_CARET] = ACTIONS(753), - [anon_sym_BANG] = ACTIONS(753), - [anon_sym_AMP] = ACTIONS(753), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_AMP_AMP] = ACTIONS(755), - [anon_sym_PIPE_PIPE] = ACTIONS(755), - [anon_sym_LT_LT] = ACTIONS(753), - [anon_sym_GT_GT] = ACTIONS(753), - [anon_sym_PLUS_EQ] = ACTIONS(755), - [anon_sym_DASH_EQ] = ACTIONS(755), - [anon_sym_STAR_EQ] = ACTIONS(755), - [anon_sym_SLASH_EQ] = ACTIONS(755), - [anon_sym_PERCENT_EQ] = ACTIONS(755), - [anon_sym_CARET_EQ] = ACTIONS(755), - [anon_sym_AMP_EQ] = ACTIONS(755), - [anon_sym_PIPE_EQ] = ACTIONS(755), - [anon_sym_LT_LT_EQ] = ACTIONS(755), - [anon_sym_GT_GT_EQ] = ACTIONS(755), - [anon_sym_EQ] = ACTIONS(753), - [anon_sym_EQ_EQ] = ACTIONS(755), - [anon_sym_BANG_EQ] = ACTIONS(755), - [anon_sym_GT] = ACTIONS(753), - [anon_sym_LT] = ACTIONS(753), - [anon_sym_GT_EQ] = ACTIONS(755), - [anon_sym_LT_EQ] = ACTIONS(755), - [anon_sym_AT] = ACTIONS(755), - [anon_sym__] = ACTIONS(753), - [anon_sym_DOT] = ACTIONS(753), - [anon_sym_DOT_DOT] = ACTIONS(753), - [anon_sym_DOT_DOT_DOT] = ACTIONS(755), - [anon_sym_DOT_DOT_EQ] = ACTIONS(755), - [anon_sym_COMMA] = ACTIONS(755), - [anon_sym_COLON_COLON] = ACTIONS(755), - [anon_sym_DASH_GT] = ACTIONS(755), - [anon_sym_POUND] = ACTIONS(755), - [anon_sym_SQUOTE] = ACTIONS(753), - [anon_sym_as] = ACTIONS(753), - [anon_sym_async] = ACTIONS(753), - [anon_sym_await] = ACTIONS(753), - [anon_sym_break] = ACTIONS(753), - [anon_sym_const] = ACTIONS(753), - [anon_sym_continue] = ACTIONS(753), - [anon_sym_default] = ACTIONS(753), - [anon_sym_enum] = ACTIONS(753), - [anon_sym_fn] = ACTIONS(753), - [anon_sym_for] = ACTIONS(753), - [anon_sym_if] = ACTIONS(753), - [anon_sym_impl] = ACTIONS(753), - [anon_sym_let] = ACTIONS(753), - [anon_sym_loop] = ACTIONS(753), - [anon_sym_match] = ACTIONS(753), - [anon_sym_mod] = ACTIONS(753), - [anon_sym_pub] = ACTIONS(753), - [anon_sym_return] = ACTIONS(753), - [anon_sym_static] = ACTIONS(753), - [anon_sym_struct] = ACTIONS(753), - [anon_sym_trait] = ACTIONS(753), - [anon_sym_type] = ACTIONS(753), - [anon_sym_union] = ACTIONS(753), - [anon_sym_unsafe] = ACTIONS(753), - [anon_sym_use] = ACTIONS(753), - [anon_sym_where] = ACTIONS(753), - [anon_sym_while] = ACTIONS(753), - [sym_mutable_specifier] = ACTIONS(753), - [sym_integer_literal] = ACTIONS(755), - [aux_sym_string_literal_token1] = ACTIONS(755), - [sym_char_literal] = ACTIONS(755), - [anon_sym_true] = ACTIONS(753), - [anon_sym_false] = ACTIONS(753), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(753), - [sym_super] = ACTIONS(753), - [sym_crate] = ACTIONS(753), - [sym_metavariable] = ACTIONS(755), - [sym__raw_string_literal_start] = ACTIONS(755), - [sym_float_literal] = ACTIONS(755), + [aux_sym_macro_def_body_repeat1] = STATE(106), + [aux_sym__non_special_token_repeat1] = STATE(141), + [sym_identifier] = ACTIONS(670), + [anon_sym_SEMI] = ACTIONS(559), + [anon_sym_LPAREN] = ACTIONS(672), + [anon_sym_RPAREN] = ACTIONS(744), + [anon_sym_LBRACK] = ACTIONS(674), + [anon_sym_LBRACE] = ACTIONS(676), + [anon_sym_COMMA] = ACTIONS(559), + [anon_sym_EQ_GT] = ACTIONS(559), + [anon_sym_COLON] = ACTIONS(569), + [anon_sym_DOLLAR] = ACTIONS(680), + [anon_sym_PLUS] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(569), + [anon_sym_QMARK] = ACTIONS(559), + [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_DASH] = ACTIONS(569), + [anon_sym_SLASH] = ACTIONS(569), + [anon_sym_PERCENT] = ACTIONS(569), + [anon_sym_CARET] = ACTIONS(569), + [anon_sym_BANG] = ACTIONS(569), + [anon_sym_AMP] = ACTIONS(569), + [anon_sym_PIPE] = ACTIONS(569), + [anon_sym_AMP_AMP] = ACTIONS(559), + [anon_sym_PIPE_PIPE] = ACTIONS(559), + [anon_sym_LT_LT] = ACTIONS(569), + [anon_sym_GT_GT] = ACTIONS(569), + [anon_sym_PLUS_EQ] = ACTIONS(559), + [anon_sym_DASH_EQ] = ACTIONS(559), + [anon_sym_STAR_EQ] = ACTIONS(559), + [anon_sym_SLASH_EQ] = ACTIONS(559), + [anon_sym_PERCENT_EQ] = ACTIONS(559), + [anon_sym_CARET_EQ] = ACTIONS(559), + [anon_sym_AMP_EQ] = ACTIONS(559), + [anon_sym_PIPE_EQ] = ACTIONS(559), + [anon_sym_LT_LT_EQ] = ACTIONS(559), + [anon_sym_GT_GT_EQ] = ACTIONS(559), + [anon_sym_EQ] = ACTIONS(569), + [anon_sym_EQ_EQ] = ACTIONS(559), + [anon_sym_BANG_EQ] = ACTIONS(559), + [anon_sym_GT] = ACTIONS(569), + [anon_sym_LT] = ACTIONS(569), + [anon_sym_GT_EQ] = ACTIONS(559), + [anon_sym_LT_EQ] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(559), + [anon_sym__] = ACTIONS(569), + [anon_sym_DOT] = ACTIONS(569), + [anon_sym_DOT_DOT] = ACTIONS(569), + [anon_sym_DOT_DOT_DOT] = ACTIONS(559), + [anon_sym_DOT_DOT_EQ] = ACTIONS(559), + [anon_sym_COLON_COLON] = ACTIONS(559), + [anon_sym_DASH_GT] = ACTIONS(559), + [anon_sym_POUND] = ACTIONS(559), + [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(573), + [aux_sym_string_literal_token1] = ACTIONS(575), + [sym_char_literal] = ACTIONS(573), + [anon_sym_true] = ACTIONS(577), + [anon_sym_false] = ACTIONS(577), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(670), + [sym_super] = ACTIONS(670), + [sym_crate] = ACTIONS(670), + [sym_metavariable] = ACTIONS(682), + [sym__raw_string_literal_start] = ACTIONS(581), + [sym_float_literal] = ACTIONS(573), }, [139] = { + [sym_delim_token_tree] = STATE(201), + [sym__delim_tokens] = STATE(198), + [sym__non_delim_token] = STATE(201), + [sym__literal] = STATE(205), + [sym_string_literal] = STATE(214), + [sym_raw_string_literal] = STATE(214), + [sym_boolean_literal] = STATE(214), [sym_line_comment] = STATE(139), [sym_block_comment] = STATE(139), - [sym_identifier] = ACTIONS(757), - [anon_sym_SEMI] = ACTIONS(759), - [anon_sym_LPAREN] = ACTIONS(759), - [anon_sym_RPAREN] = ACTIONS(759), - [anon_sym_LBRACK] = ACTIONS(759), - [anon_sym_RBRACK] = ACTIONS(759), - [anon_sym_LBRACE] = ACTIONS(759), - [anon_sym_RBRACE] = ACTIONS(759), - [anon_sym_EQ_GT] = ACTIONS(759), - [anon_sym_COLON] = ACTIONS(757), - [anon_sym_DOLLAR] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(757), - [anon_sym_STAR] = ACTIONS(757), - [anon_sym_QMARK] = ACTIONS(759), - [anon_sym_u8] = ACTIONS(757), - [anon_sym_i8] = ACTIONS(757), - [anon_sym_u16] = ACTIONS(757), - [anon_sym_i16] = ACTIONS(757), - [anon_sym_u32] = ACTIONS(757), - [anon_sym_i32] = ACTIONS(757), - [anon_sym_u64] = ACTIONS(757), - [anon_sym_i64] = ACTIONS(757), - [anon_sym_u128] = ACTIONS(757), - [anon_sym_i128] = ACTIONS(757), - [anon_sym_isize] = ACTIONS(757), - [anon_sym_usize] = ACTIONS(757), - [anon_sym_f32] = ACTIONS(757), - [anon_sym_f64] = ACTIONS(757), - [anon_sym_bool] = ACTIONS(757), - [anon_sym_str] = ACTIONS(757), - [anon_sym_char] = ACTIONS(757), - [anon_sym_DASH] = ACTIONS(757), - [anon_sym_SLASH] = ACTIONS(757), - [anon_sym_PERCENT] = ACTIONS(757), - [anon_sym_CARET] = ACTIONS(757), - [anon_sym_BANG] = ACTIONS(757), - [anon_sym_AMP] = ACTIONS(757), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_AMP_AMP] = ACTIONS(759), - [anon_sym_PIPE_PIPE] = ACTIONS(759), - [anon_sym_LT_LT] = ACTIONS(757), - [anon_sym_GT_GT] = ACTIONS(757), - [anon_sym_PLUS_EQ] = ACTIONS(759), - [anon_sym_DASH_EQ] = ACTIONS(759), - [anon_sym_STAR_EQ] = ACTIONS(759), - [anon_sym_SLASH_EQ] = ACTIONS(759), - [anon_sym_PERCENT_EQ] = ACTIONS(759), - [anon_sym_CARET_EQ] = ACTIONS(759), - [anon_sym_AMP_EQ] = ACTIONS(759), - [anon_sym_PIPE_EQ] = ACTIONS(759), - [anon_sym_LT_LT_EQ] = ACTIONS(759), - [anon_sym_GT_GT_EQ] = ACTIONS(759), - [anon_sym_EQ] = ACTIONS(757), - [anon_sym_EQ_EQ] = ACTIONS(759), - [anon_sym_BANG_EQ] = ACTIONS(759), - [anon_sym_GT] = ACTIONS(757), - [anon_sym_LT] = ACTIONS(757), - [anon_sym_GT_EQ] = ACTIONS(759), - [anon_sym_LT_EQ] = ACTIONS(759), - [anon_sym_AT] = ACTIONS(759), - [anon_sym__] = ACTIONS(757), - [anon_sym_DOT] = ACTIONS(757), - [anon_sym_DOT_DOT] = ACTIONS(757), - [anon_sym_DOT_DOT_DOT] = ACTIONS(759), - [anon_sym_DOT_DOT_EQ] = ACTIONS(759), - [anon_sym_COMMA] = ACTIONS(759), - [anon_sym_COLON_COLON] = ACTIONS(759), - [anon_sym_DASH_GT] = ACTIONS(759), - [anon_sym_POUND] = ACTIONS(759), - [anon_sym_SQUOTE] = ACTIONS(757), - [anon_sym_as] = ACTIONS(757), - [anon_sym_async] = ACTIONS(757), - [anon_sym_await] = ACTIONS(757), - [anon_sym_break] = ACTIONS(757), - [anon_sym_const] = ACTIONS(757), - [anon_sym_continue] = ACTIONS(757), - [anon_sym_default] = ACTIONS(757), - [anon_sym_enum] = ACTIONS(757), - [anon_sym_fn] = ACTIONS(757), - [anon_sym_for] = ACTIONS(757), - [anon_sym_if] = ACTIONS(757), - [anon_sym_impl] = ACTIONS(757), - [anon_sym_let] = ACTIONS(757), - [anon_sym_loop] = ACTIONS(757), - [anon_sym_match] = ACTIONS(757), - [anon_sym_mod] = ACTIONS(757), - [anon_sym_pub] = ACTIONS(757), - [anon_sym_return] = ACTIONS(757), - [anon_sym_static] = ACTIONS(757), - [anon_sym_struct] = ACTIONS(757), - [anon_sym_trait] = ACTIONS(757), - [anon_sym_type] = ACTIONS(757), - [anon_sym_union] = ACTIONS(757), - [anon_sym_unsafe] = ACTIONS(757), - [anon_sym_use] = ACTIONS(757), - [anon_sym_where] = ACTIONS(757), - [anon_sym_while] = ACTIONS(757), - [sym_mutable_specifier] = ACTIONS(757), - [sym_integer_literal] = ACTIONS(759), - [aux_sym_string_literal_token1] = ACTIONS(759), - [sym_char_literal] = ACTIONS(759), - [anon_sym_true] = ACTIONS(757), - [anon_sym_false] = ACTIONS(757), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(757), - [sym_super] = ACTIONS(757), - [sym_crate] = ACTIONS(757), - [sym_metavariable] = ACTIONS(759), - [sym__raw_string_literal_start] = ACTIONS(759), - [sym_float_literal] = ACTIONS(759), + [aux_sym__non_special_token_repeat1] = STATE(152), + [aux_sym_delim_token_tree_repeat1] = STATE(83), + [sym_identifier] = ACTIONS(686), + [anon_sym_SEMI] = ACTIONS(688), + [anon_sym_LPAREN] = ACTIONS(690), + [anon_sym_LBRACK] = ACTIONS(692), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_RBRACE] = ACTIONS(746), + [anon_sym_COMMA] = ACTIONS(688), + [anon_sym_EQ_GT] = ACTIONS(688), + [anon_sym_COLON] = ACTIONS(698), + [anon_sym_DOLLAR] = ACTIONS(700), + [anon_sym_PLUS] = ACTIONS(698), + [anon_sym_STAR] = ACTIONS(698), + [anon_sym_QMARK] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(686), + [anon_sym_i8] = ACTIONS(686), + [anon_sym_u16] = ACTIONS(686), + [anon_sym_i16] = ACTIONS(686), + [anon_sym_u32] = ACTIONS(686), + [anon_sym_i32] = ACTIONS(686), + [anon_sym_u64] = ACTIONS(686), + [anon_sym_i64] = ACTIONS(686), + [anon_sym_u128] = ACTIONS(686), + [anon_sym_i128] = ACTIONS(686), + [anon_sym_isize] = ACTIONS(686), + [anon_sym_usize] = ACTIONS(686), + [anon_sym_f32] = ACTIONS(686), + [anon_sym_f64] = ACTIONS(686), + [anon_sym_bool] = ACTIONS(686), + [anon_sym_str] = ACTIONS(686), + [anon_sym_char] = ACTIONS(686), + [anon_sym_DASH] = ACTIONS(698), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_PERCENT] = ACTIONS(698), + [anon_sym_CARET] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(698), + [anon_sym_AMP] = ACTIONS(698), + [anon_sym_PIPE] = ACTIONS(698), + [anon_sym_AMP_AMP] = ACTIONS(688), + [anon_sym_PIPE_PIPE] = ACTIONS(688), + [anon_sym_LT_LT] = ACTIONS(698), + [anon_sym_GT_GT] = ACTIONS(698), + [anon_sym_PLUS_EQ] = ACTIONS(688), + [anon_sym_DASH_EQ] = ACTIONS(688), + [anon_sym_STAR_EQ] = ACTIONS(688), + [anon_sym_SLASH_EQ] = ACTIONS(688), + [anon_sym_PERCENT_EQ] = ACTIONS(688), + [anon_sym_CARET_EQ] = ACTIONS(688), + [anon_sym_AMP_EQ] = ACTIONS(688), + [anon_sym_PIPE_EQ] = ACTIONS(688), + [anon_sym_LT_LT_EQ] = ACTIONS(688), + [anon_sym_GT_GT_EQ] = ACTIONS(688), + [anon_sym_EQ] = ACTIONS(698), + [anon_sym_EQ_EQ] = ACTIONS(688), + [anon_sym_BANG_EQ] = ACTIONS(688), + [anon_sym_GT] = ACTIONS(698), + [anon_sym_LT] = ACTIONS(698), + [anon_sym_GT_EQ] = ACTIONS(688), + [anon_sym_LT_EQ] = ACTIONS(688), + [anon_sym_AT] = ACTIONS(688), + [anon_sym__] = ACTIONS(698), + [anon_sym_DOT] = ACTIONS(698), + [anon_sym_DOT_DOT] = ACTIONS(698), + [anon_sym_DOT_DOT_DOT] = ACTIONS(688), + [anon_sym_DOT_DOT_EQ] = ACTIONS(688), + [anon_sym_COLON_COLON] = ACTIONS(688), + [anon_sym_DASH_GT] = ACTIONS(688), + [anon_sym_POUND] = ACTIONS(688), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_as] = ACTIONS(686), + [anon_sym_async] = ACTIONS(686), + [anon_sym_await] = ACTIONS(686), + [anon_sym_break] = ACTIONS(686), + [anon_sym_const] = ACTIONS(686), + [anon_sym_continue] = ACTIONS(686), + [anon_sym_default] = ACTIONS(686), + [anon_sym_enum] = ACTIONS(686), + [anon_sym_fn] = ACTIONS(686), + [anon_sym_for] = ACTIONS(686), + [anon_sym_if] = ACTIONS(686), + [anon_sym_impl] = ACTIONS(686), + [anon_sym_let] = ACTIONS(686), + [anon_sym_loop] = ACTIONS(686), + [anon_sym_match] = ACTIONS(686), + [anon_sym_mod] = ACTIONS(686), + [anon_sym_pub] = ACTIONS(686), + [anon_sym_return] = ACTIONS(686), + [anon_sym_static] = ACTIONS(686), + [anon_sym_struct] = ACTIONS(686), + [anon_sym_trait] = ACTIONS(686), + [anon_sym_type] = ACTIONS(686), + [anon_sym_union] = ACTIONS(686), + [anon_sym_unsafe] = ACTIONS(686), + [anon_sym_use] = ACTIONS(686), + [anon_sym_where] = ACTIONS(686), + [anon_sym_while] = ACTIONS(686), + [sym_mutable_specifier] = ACTIONS(686), + [sym_integer_literal] = ACTIONS(702), + [aux_sym_string_literal_token1] = ACTIONS(704), + [sym_char_literal] = ACTIONS(702), + [anon_sym_true] = ACTIONS(706), + [anon_sym_false] = ACTIONS(706), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(686), + [sym_super] = ACTIONS(686), + [sym_crate] = ACTIONS(686), + [sym__raw_string_literal_start] = ACTIONS(708), + [sym_float_literal] = ACTIONS(702), }, [140] = { - [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1628), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(140), [sym_block_comment] = STATE(140), - [aux_sym_enum_variant_list_repeat1] = STATE(213), - [sym_identifier] = ACTIONS(334), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(761), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COMMA] = ACTIONS(763), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(765), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [aux_sym__non_special_token_repeat1] = STATE(140), + [sym_identifier] = ACTIONS(748), + [anon_sym_SEMI] = ACTIONS(750), + [anon_sym_LPAREN] = ACTIONS(753), + [anon_sym_RPAREN] = ACTIONS(753), + [anon_sym_LBRACK] = ACTIONS(753), + [anon_sym_RBRACK] = ACTIONS(753), + [anon_sym_LBRACE] = ACTIONS(753), + [anon_sym_RBRACE] = ACTIONS(753), + [anon_sym_COMMA] = ACTIONS(750), + [anon_sym_EQ_GT] = ACTIONS(750), + [anon_sym_COLON] = ACTIONS(755), + [anon_sym_DOLLAR] = ACTIONS(748), + [anon_sym_PLUS] = ACTIONS(755), + [anon_sym_STAR] = ACTIONS(755), + [anon_sym_QMARK] = ACTIONS(750), + [anon_sym_u8] = ACTIONS(748), + [anon_sym_i8] = ACTIONS(748), + [anon_sym_u16] = ACTIONS(748), + [anon_sym_i16] = ACTIONS(748), + [anon_sym_u32] = ACTIONS(748), + [anon_sym_i32] = ACTIONS(748), + [anon_sym_u64] = ACTIONS(748), + [anon_sym_i64] = ACTIONS(748), + [anon_sym_u128] = ACTIONS(748), + [anon_sym_i128] = ACTIONS(748), + [anon_sym_isize] = ACTIONS(748), + [anon_sym_usize] = ACTIONS(748), + [anon_sym_f32] = ACTIONS(748), + [anon_sym_f64] = ACTIONS(748), + [anon_sym_bool] = ACTIONS(748), + [anon_sym_str] = ACTIONS(748), + [anon_sym_char] = ACTIONS(748), + [anon_sym_DASH] = ACTIONS(755), + [anon_sym_SLASH] = ACTIONS(755), + [anon_sym_PERCENT] = ACTIONS(755), + [anon_sym_CARET] = ACTIONS(755), + [anon_sym_BANG] = ACTIONS(755), + [anon_sym_AMP] = ACTIONS(755), + [anon_sym_PIPE] = ACTIONS(755), + [anon_sym_AMP_AMP] = ACTIONS(750), + [anon_sym_PIPE_PIPE] = ACTIONS(750), + [anon_sym_LT_LT] = ACTIONS(755), + [anon_sym_GT_GT] = ACTIONS(755), + [anon_sym_PLUS_EQ] = ACTIONS(750), + [anon_sym_DASH_EQ] = ACTIONS(750), + [anon_sym_STAR_EQ] = ACTIONS(750), + [anon_sym_SLASH_EQ] = ACTIONS(750), + [anon_sym_PERCENT_EQ] = ACTIONS(750), + [anon_sym_CARET_EQ] = ACTIONS(750), + [anon_sym_AMP_EQ] = ACTIONS(750), + [anon_sym_PIPE_EQ] = ACTIONS(750), + [anon_sym_LT_LT_EQ] = ACTIONS(750), + [anon_sym_GT_GT_EQ] = ACTIONS(750), + [anon_sym_EQ] = ACTIONS(755), + [anon_sym_EQ_EQ] = ACTIONS(750), + [anon_sym_BANG_EQ] = ACTIONS(750), + [anon_sym_GT] = ACTIONS(755), + [anon_sym_LT] = ACTIONS(755), + [anon_sym_GT_EQ] = ACTIONS(750), + [anon_sym_LT_EQ] = ACTIONS(750), + [anon_sym_AT] = ACTIONS(750), + [anon_sym__] = ACTIONS(755), + [anon_sym_DOT] = ACTIONS(755), + [anon_sym_DOT_DOT] = ACTIONS(755), + [anon_sym_DOT_DOT_DOT] = ACTIONS(750), + [anon_sym_DOT_DOT_EQ] = ACTIONS(750), + [anon_sym_COLON_COLON] = ACTIONS(750), + [anon_sym_DASH_GT] = ACTIONS(750), + [anon_sym_POUND] = ACTIONS(750), + [anon_sym_SQUOTE] = ACTIONS(748), + [anon_sym_as] = ACTIONS(748), + [anon_sym_async] = ACTIONS(748), + [anon_sym_await] = ACTIONS(748), + [anon_sym_break] = ACTIONS(748), + [anon_sym_const] = ACTIONS(748), + [anon_sym_continue] = ACTIONS(748), + [anon_sym_default] = ACTIONS(748), + [anon_sym_enum] = ACTIONS(748), + [anon_sym_fn] = ACTIONS(748), + [anon_sym_for] = ACTIONS(748), + [anon_sym_if] = ACTIONS(748), + [anon_sym_impl] = ACTIONS(748), + [anon_sym_let] = ACTIONS(748), + [anon_sym_loop] = ACTIONS(748), + [anon_sym_match] = ACTIONS(748), + [anon_sym_mod] = ACTIONS(748), + [anon_sym_pub] = ACTIONS(748), + [anon_sym_return] = ACTIONS(748), + [anon_sym_static] = ACTIONS(748), + [anon_sym_struct] = ACTIONS(748), + [anon_sym_trait] = ACTIONS(748), + [anon_sym_type] = ACTIONS(748), + [anon_sym_union] = ACTIONS(748), + [anon_sym_unsafe] = ACTIONS(748), + [anon_sym_use] = ACTIONS(748), + [anon_sym_where] = ACTIONS(748), + [anon_sym_while] = ACTIONS(748), + [sym_mutable_specifier] = ACTIONS(748), + [sym_integer_literal] = ACTIONS(753), + [aux_sym_string_literal_token1] = ACTIONS(753), + [sym_char_literal] = ACTIONS(753), + [anon_sym_true] = ACTIONS(748), + [anon_sym_false] = ACTIONS(748), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(748), + [sym_super] = ACTIONS(748), + [sym_crate] = ACTIONS(748), + [sym_metavariable] = ACTIONS(753), + [sym__raw_string_literal_start] = ACTIONS(753), + [sym_float_literal] = ACTIONS(753), }, [141] = { [sym_line_comment] = STATE(141), [sym_block_comment] = STATE(141), - [sym_identifier] = ACTIONS(767), - [anon_sym_SEMI] = ACTIONS(769), - [anon_sym_LPAREN] = ACTIONS(769), - [anon_sym_RPAREN] = ACTIONS(769), - [anon_sym_LBRACK] = ACTIONS(769), - [anon_sym_RBRACK] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(769), - [anon_sym_RBRACE] = ACTIONS(769), - [anon_sym_EQ_GT] = ACTIONS(769), - [anon_sym_COLON] = ACTIONS(767), - [anon_sym_DOLLAR] = ACTIONS(767), - [anon_sym_PLUS] = ACTIONS(767), - [anon_sym_STAR] = ACTIONS(767), - [anon_sym_QMARK] = ACTIONS(769), - [anon_sym_u8] = ACTIONS(767), - [anon_sym_i8] = ACTIONS(767), - [anon_sym_u16] = ACTIONS(767), - [anon_sym_i16] = ACTIONS(767), - [anon_sym_u32] = ACTIONS(767), - [anon_sym_i32] = ACTIONS(767), - [anon_sym_u64] = ACTIONS(767), - [anon_sym_i64] = ACTIONS(767), - [anon_sym_u128] = ACTIONS(767), - [anon_sym_i128] = ACTIONS(767), - [anon_sym_isize] = ACTIONS(767), - [anon_sym_usize] = ACTIONS(767), - [anon_sym_f32] = ACTIONS(767), - [anon_sym_f64] = ACTIONS(767), - [anon_sym_bool] = ACTIONS(767), - [anon_sym_str] = ACTIONS(767), - [anon_sym_char] = ACTIONS(767), - [anon_sym_DASH] = ACTIONS(767), - [anon_sym_SLASH] = ACTIONS(767), - [anon_sym_PERCENT] = ACTIONS(767), - [anon_sym_CARET] = ACTIONS(767), - [anon_sym_BANG] = ACTIONS(767), - [anon_sym_AMP] = ACTIONS(767), - [anon_sym_PIPE] = ACTIONS(767), - [anon_sym_AMP_AMP] = ACTIONS(769), - [anon_sym_PIPE_PIPE] = ACTIONS(769), - [anon_sym_LT_LT] = ACTIONS(767), - [anon_sym_GT_GT] = ACTIONS(767), - [anon_sym_PLUS_EQ] = ACTIONS(769), - [anon_sym_DASH_EQ] = ACTIONS(769), - [anon_sym_STAR_EQ] = ACTIONS(769), - [anon_sym_SLASH_EQ] = ACTIONS(769), - [anon_sym_PERCENT_EQ] = ACTIONS(769), - [anon_sym_CARET_EQ] = ACTIONS(769), - [anon_sym_AMP_EQ] = ACTIONS(769), - [anon_sym_PIPE_EQ] = ACTIONS(769), - [anon_sym_LT_LT_EQ] = ACTIONS(769), - [anon_sym_GT_GT_EQ] = ACTIONS(769), - [anon_sym_EQ] = ACTIONS(767), - [anon_sym_EQ_EQ] = ACTIONS(769), - [anon_sym_BANG_EQ] = ACTIONS(769), - [anon_sym_GT] = ACTIONS(767), - [anon_sym_LT] = ACTIONS(767), - [anon_sym_GT_EQ] = ACTIONS(769), - [anon_sym_LT_EQ] = ACTIONS(769), - [anon_sym_AT] = ACTIONS(769), - [anon_sym__] = ACTIONS(767), - [anon_sym_DOT] = ACTIONS(767), - [anon_sym_DOT_DOT] = ACTIONS(767), - [anon_sym_DOT_DOT_DOT] = ACTIONS(769), - [anon_sym_DOT_DOT_EQ] = ACTIONS(769), - [anon_sym_COMMA] = ACTIONS(769), - [anon_sym_COLON_COLON] = ACTIONS(769), - [anon_sym_DASH_GT] = ACTIONS(769), - [anon_sym_POUND] = ACTIONS(769), - [anon_sym_SQUOTE] = ACTIONS(767), - [anon_sym_as] = ACTIONS(767), - [anon_sym_async] = ACTIONS(767), - [anon_sym_await] = ACTIONS(767), - [anon_sym_break] = ACTIONS(767), - [anon_sym_const] = ACTIONS(767), - [anon_sym_continue] = ACTIONS(767), - [anon_sym_default] = ACTIONS(767), - [anon_sym_enum] = ACTIONS(767), - [anon_sym_fn] = ACTIONS(767), - [anon_sym_for] = ACTIONS(767), - [anon_sym_if] = ACTIONS(767), - [anon_sym_impl] = ACTIONS(767), - [anon_sym_let] = ACTIONS(767), - [anon_sym_loop] = ACTIONS(767), - [anon_sym_match] = ACTIONS(767), - [anon_sym_mod] = ACTIONS(767), - [anon_sym_pub] = ACTIONS(767), - [anon_sym_return] = ACTIONS(767), - [anon_sym_static] = ACTIONS(767), - [anon_sym_struct] = ACTIONS(767), - [anon_sym_trait] = ACTIONS(767), - [anon_sym_type] = ACTIONS(767), - [anon_sym_union] = ACTIONS(767), - [anon_sym_unsafe] = ACTIONS(767), - [anon_sym_use] = ACTIONS(767), - [anon_sym_where] = ACTIONS(767), - [anon_sym_while] = ACTIONS(767), - [sym_mutable_specifier] = ACTIONS(767), - [sym_integer_literal] = ACTIONS(769), - [aux_sym_string_literal_token1] = ACTIONS(769), - [sym_char_literal] = ACTIONS(769), - [anon_sym_true] = ACTIONS(767), - [anon_sym_false] = ACTIONS(767), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(767), - [sym_super] = ACTIONS(767), - [sym_crate] = ACTIONS(767), - [sym_metavariable] = ACTIONS(769), - [sym__raw_string_literal_start] = ACTIONS(769), - [sym_float_literal] = ACTIONS(769), + [aux_sym__non_special_token_repeat1] = STATE(140), + [sym_identifier] = ACTIONS(758), + [anon_sym_SEMI] = ACTIONS(559), + [anon_sym_LPAREN] = ACTIONS(760), + [anon_sym_RPAREN] = ACTIONS(760), + [anon_sym_LBRACK] = ACTIONS(760), + [anon_sym_RBRACK] = ACTIONS(760), + [anon_sym_LBRACE] = ACTIONS(760), + [anon_sym_RBRACE] = ACTIONS(760), + [anon_sym_COMMA] = ACTIONS(559), + [anon_sym_EQ_GT] = ACTIONS(559), + [anon_sym_COLON] = ACTIONS(569), + [anon_sym_DOLLAR] = ACTIONS(758), + [anon_sym_PLUS] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(569), + [anon_sym_QMARK] = ACTIONS(559), + [anon_sym_u8] = ACTIONS(758), + [anon_sym_i8] = ACTIONS(758), + [anon_sym_u16] = ACTIONS(758), + [anon_sym_i16] = ACTIONS(758), + [anon_sym_u32] = ACTIONS(758), + [anon_sym_i32] = ACTIONS(758), + [anon_sym_u64] = ACTIONS(758), + [anon_sym_i64] = ACTIONS(758), + [anon_sym_u128] = ACTIONS(758), + [anon_sym_i128] = ACTIONS(758), + [anon_sym_isize] = ACTIONS(758), + [anon_sym_usize] = ACTIONS(758), + [anon_sym_f32] = ACTIONS(758), + [anon_sym_f64] = ACTIONS(758), + [anon_sym_bool] = ACTIONS(758), + [anon_sym_str] = ACTIONS(758), + [anon_sym_char] = ACTIONS(758), + [anon_sym_DASH] = ACTIONS(569), + [anon_sym_SLASH] = ACTIONS(569), + [anon_sym_PERCENT] = ACTIONS(569), + [anon_sym_CARET] = ACTIONS(569), + [anon_sym_BANG] = ACTIONS(569), + [anon_sym_AMP] = ACTIONS(569), + [anon_sym_PIPE] = ACTIONS(569), + [anon_sym_AMP_AMP] = ACTIONS(559), + [anon_sym_PIPE_PIPE] = ACTIONS(559), + [anon_sym_LT_LT] = ACTIONS(569), + [anon_sym_GT_GT] = ACTIONS(569), + [anon_sym_PLUS_EQ] = ACTIONS(559), + [anon_sym_DASH_EQ] = ACTIONS(559), + [anon_sym_STAR_EQ] = ACTIONS(559), + [anon_sym_SLASH_EQ] = ACTIONS(559), + [anon_sym_PERCENT_EQ] = ACTIONS(559), + [anon_sym_CARET_EQ] = ACTIONS(559), + [anon_sym_AMP_EQ] = ACTIONS(559), + [anon_sym_PIPE_EQ] = ACTIONS(559), + [anon_sym_LT_LT_EQ] = ACTIONS(559), + [anon_sym_GT_GT_EQ] = ACTIONS(559), + [anon_sym_EQ] = ACTIONS(569), + [anon_sym_EQ_EQ] = ACTIONS(559), + [anon_sym_BANG_EQ] = ACTIONS(559), + [anon_sym_GT] = ACTIONS(569), + [anon_sym_LT] = ACTIONS(569), + [anon_sym_GT_EQ] = ACTIONS(559), + [anon_sym_LT_EQ] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(559), + [anon_sym__] = ACTIONS(569), + [anon_sym_DOT] = ACTIONS(569), + [anon_sym_DOT_DOT] = ACTIONS(569), + [anon_sym_DOT_DOT_DOT] = ACTIONS(559), + [anon_sym_DOT_DOT_EQ] = ACTIONS(559), + [anon_sym_COLON_COLON] = ACTIONS(559), + [anon_sym_DASH_GT] = ACTIONS(559), + [anon_sym_POUND] = ACTIONS(559), + [anon_sym_SQUOTE] = ACTIONS(758), + [anon_sym_as] = ACTIONS(758), + [anon_sym_async] = ACTIONS(758), + [anon_sym_await] = ACTIONS(758), + [anon_sym_break] = ACTIONS(758), + [anon_sym_const] = ACTIONS(758), + [anon_sym_continue] = ACTIONS(758), + [anon_sym_default] = ACTIONS(758), + [anon_sym_enum] = ACTIONS(758), + [anon_sym_fn] = ACTIONS(758), + [anon_sym_for] = ACTIONS(758), + [anon_sym_if] = ACTIONS(758), + [anon_sym_impl] = ACTIONS(758), + [anon_sym_let] = ACTIONS(758), + [anon_sym_loop] = ACTIONS(758), + [anon_sym_match] = ACTIONS(758), + [anon_sym_mod] = ACTIONS(758), + [anon_sym_pub] = ACTIONS(758), + [anon_sym_return] = ACTIONS(758), + [anon_sym_static] = ACTIONS(758), + [anon_sym_struct] = ACTIONS(758), + [anon_sym_trait] = ACTIONS(758), + [anon_sym_type] = ACTIONS(758), + [anon_sym_union] = ACTIONS(758), + [anon_sym_unsafe] = ACTIONS(758), + [anon_sym_use] = ACTIONS(758), + [anon_sym_where] = ACTIONS(758), + [anon_sym_while] = ACTIONS(758), + [sym_mutable_specifier] = ACTIONS(758), + [sym_integer_literal] = ACTIONS(760), + [aux_sym_string_literal_token1] = ACTIONS(760), + [sym_char_literal] = ACTIONS(760), + [anon_sym_true] = ACTIONS(758), + [anon_sym_false] = ACTIONS(758), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(758), + [sym_super] = ACTIONS(758), + [sym_crate] = ACTIONS(758), + [sym_metavariable] = ACTIONS(760), + [sym__raw_string_literal_start] = ACTIONS(760), + [sym_float_literal] = ACTIONS(760), }, [142] = { [sym_line_comment] = STATE(142), [sym_block_comment] = STATE(142), - [sym_identifier] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(773), - [anon_sym_LPAREN] = ACTIONS(773), - [anon_sym_RPAREN] = ACTIONS(773), - [anon_sym_LBRACK] = ACTIONS(773), - [anon_sym_RBRACK] = ACTIONS(773), - [anon_sym_LBRACE] = ACTIONS(773), - [anon_sym_RBRACE] = ACTIONS(773), - [anon_sym_EQ_GT] = ACTIONS(773), - [anon_sym_COLON] = ACTIONS(771), - [anon_sym_DOLLAR] = ACTIONS(771), - [anon_sym_PLUS] = ACTIONS(771), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_QMARK] = ACTIONS(773), - [anon_sym_u8] = ACTIONS(771), - [anon_sym_i8] = ACTIONS(771), - [anon_sym_u16] = ACTIONS(771), - [anon_sym_i16] = ACTIONS(771), - [anon_sym_u32] = ACTIONS(771), - [anon_sym_i32] = ACTIONS(771), - [anon_sym_u64] = ACTIONS(771), - [anon_sym_i64] = ACTIONS(771), - [anon_sym_u128] = ACTIONS(771), - [anon_sym_i128] = ACTIONS(771), - [anon_sym_isize] = ACTIONS(771), - [anon_sym_usize] = ACTIONS(771), - [anon_sym_f32] = ACTIONS(771), - [anon_sym_f64] = ACTIONS(771), - [anon_sym_bool] = ACTIONS(771), - [anon_sym_str] = ACTIONS(771), - [anon_sym_char] = ACTIONS(771), - [anon_sym_DASH] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_PERCENT] = ACTIONS(771), - [anon_sym_CARET] = ACTIONS(771), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_AMP] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(771), - [anon_sym_AMP_AMP] = ACTIONS(773), - [anon_sym_PIPE_PIPE] = ACTIONS(773), - [anon_sym_LT_LT] = ACTIONS(771), - [anon_sym_GT_GT] = ACTIONS(771), - [anon_sym_PLUS_EQ] = ACTIONS(773), - [anon_sym_DASH_EQ] = ACTIONS(773), - [anon_sym_STAR_EQ] = ACTIONS(773), - [anon_sym_SLASH_EQ] = ACTIONS(773), - [anon_sym_PERCENT_EQ] = ACTIONS(773), - [anon_sym_CARET_EQ] = ACTIONS(773), - [anon_sym_AMP_EQ] = ACTIONS(773), - [anon_sym_PIPE_EQ] = ACTIONS(773), - [anon_sym_LT_LT_EQ] = ACTIONS(773), - [anon_sym_GT_GT_EQ] = ACTIONS(773), - [anon_sym_EQ] = ACTIONS(771), - [anon_sym_EQ_EQ] = ACTIONS(773), - [anon_sym_BANG_EQ] = ACTIONS(773), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_GT_EQ] = ACTIONS(773), - [anon_sym_LT_EQ] = ACTIONS(773), - [anon_sym_AT] = ACTIONS(773), - [anon_sym__] = ACTIONS(771), - [anon_sym_DOT] = ACTIONS(771), - [anon_sym_DOT_DOT] = ACTIONS(771), - [anon_sym_DOT_DOT_DOT] = ACTIONS(773), - [anon_sym_DOT_DOT_EQ] = ACTIONS(773), - [anon_sym_COMMA] = ACTIONS(773), - [anon_sym_COLON_COLON] = ACTIONS(773), - [anon_sym_DASH_GT] = ACTIONS(773), - [anon_sym_POUND] = ACTIONS(773), - [anon_sym_SQUOTE] = ACTIONS(771), - [anon_sym_as] = ACTIONS(771), - [anon_sym_async] = ACTIONS(771), - [anon_sym_await] = ACTIONS(771), - [anon_sym_break] = ACTIONS(771), - [anon_sym_const] = ACTIONS(771), - [anon_sym_continue] = ACTIONS(771), - [anon_sym_default] = ACTIONS(771), - [anon_sym_enum] = ACTIONS(771), - [anon_sym_fn] = ACTIONS(771), - [anon_sym_for] = ACTIONS(771), - [anon_sym_if] = ACTIONS(771), - [anon_sym_impl] = ACTIONS(771), - [anon_sym_let] = ACTIONS(771), - [anon_sym_loop] = ACTIONS(771), - [anon_sym_match] = ACTIONS(771), - [anon_sym_mod] = ACTIONS(771), - [anon_sym_pub] = ACTIONS(771), - [anon_sym_return] = ACTIONS(771), - [anon_sym_static] = ACTIONS(771), - [anon_sym_struct] = ACTIONS(771), - [anon_sym_trait] = ACTIONS(771), - [anon_sym_type] = ACTIONS(771), - [anon_sym_union] = ACTIONS(771), - [anon_sym_unsafe] = ACTIONS(771), - [anon_sym_use] = ACTIONS(771), - [anon_sym_where] = ACTIONS(771), - [anon_sym_while] = ACTIONS(771), - [sym_mutable_specifier] = ACTIONS(771), - [sym_integer_literal] = ACTIONS(773), - [aux_sym_string_literal_token1] = ACTIONS(773), - [sym_char_literal] = ACTIONS(773), - [anon_sym_true] = ACTIONS(771), - [anon_sym_false] = ACTIONS(771), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(771), - [sym_super] = ACTIONS(771), - [sym_crate] = ACTIONS(771), - [sym_metavariable] = ACTIONS(773), - [sym__raw_string_literal_start] = ACTIONS(773), - [sym_float_literal] = ACTIONS(773), + [aux_sym__non_special_token_repeat1] = STATE(140), + [sym_identifier] = ACTIONS(762), + [anon_sym_SEMI] = ACTIONS(559), + [anon_sym_LPAREN] = ACTIONS(764), + [anon_sym_RPAREN] = ACTIONS(764), + [anon_sym_LBRACK] = ACTIONS(764), + [anon_sym_RBRACK] = ACTIONS(764), + [anon_sym_LBRACE] = ACTIONS(764), + [anon_sym_RBRACE] = ACTIONS(764), + [anon_sym_COMMA] = ACTIONS(559), + [anon_sym_EQ_GT] = ACTIONS(559), + [anon_sym_COLON] = ACTIONS(569), + [anon_sym_DOLLAR] = ACTIONS(762), + [anon_sym_PLUS] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(569), + [anon_sym_QMARK] = ACTIONS(559), + [anon_sym_u8] = ACTIONS(762), + [anon_sym_i8] = ACTIONS(762), + [anon_sym_u16] = ACTIONS(762), + [anon_sym_i16] = ACTIONS(762), + [anon_sym_u32] = ACTIONS(762), + [anon_sym_i32] = ACTIONS(762), + [anon_sym_u64] = ACTIONS(762), + [anon_sym_i64] = ACTIONS(762), + [anon_sym_u128] = ACTIONS(762), + [anon_sym_i128] = ACTIONS(762), + [anon_sym_isize] = ACTIONS(762), + [anon_sym_usize] = ACTIONS(762), + [anon_sym_f32] = ACTIONS(762), + [anon_sym_f64] = ACTIONS(762), + [anon_sym_bool] = ACTIONS(762), + [anon_sym_str] = ACTIONS(762), + [anon_sym_char] = ACTIONS(762), + [anon_sym_DASH] = ACTIONS(569), + [anon_sym_SLASH] = ACTIONS(569), + [anon_sym_PERCENT] = ACTIONS(569), + [anon_sym_CARET] = ACTIONS(569), + [anon_sym_BANG] = ACTIONS(569), + [anon_sym_AMP] = ACTIONS(569), + [anon_sym_PIPE] = ACTIONS(569), + [anon_sym_AMP_AMP] = ACTIONS(559), + [anon_sym_PIPE_PIPE] = ACTIONS(559), + [anon_sym_LT_LT] = ACTIONS(569), + [anon_sym_GT_GT] = ACTIONS(569), + [anon_sym_PLUS_EQ] = ACTIONS(559), + [anon_sym_DASH_EQ] = ACTIONS(559), + [anon_sym_STAR_EQ] = ACTIONS(559), + [anon_sym_SLASH_EQ] = ACTIONS(559), + [anon_sym_PERCENT_EQ] = ACTIONS(559), + [anon_sym_CARET_EQ] = ACTIONS(559), + [anon_sym_AMP_EQ] = ACTIONS(559), + [anon_sym_PIPE_EQ] = ACTIONS(559), + [anon_sym_LT_LT_EQ] = ACTIONS(559), + [anon_sym_GT_GT_EQ] = ACTIONS(559), + [anon_sym_EQ] = ACTIONS(569), + [anon_sym_EQ_EQ] = ACTIONS(559), + [anon_sym_BANG_EQ] = ACTIONS(559), + [anon_sym_GT] = ACTIONS(569), + [anon_sym_LT] = ACTIONS(569), + [anon_sym_GT_EQ] = ACTIONS(559), + [anon_sym_LT_EQ] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(559), + [anon_sym__] = ACTIONS(569), + [anon_sym_DOT] = ACTIONS(569), + [anon_sym_DOT_DOT] = ACTIONS(569), + [anon_sym_DOT_DOT_DOT] = ACTIONS(559), + [anon_sym_DOT_DOT_EQ] = ACTIONS(559), + [anon_sym_COLON_COLON] = ACTIONS(559), + [anon_sym_DASH_GT] = ACTIONS(559), + [anon_sym_POUND] = ACTIONS(559), + [anon_sym_SQUOTE] = ACTIONS(762), + [anon_sym_as] = ACTIONS(762), + [anon_sym_async] = ACTIONS(762), + [anon_sym_await] = ACTIONS(762), + [anon_sym_break] = ACTIONS(762), + [anon_sym_const] = ACTIONS(762), + [anon_sym_continue] = ACTIONS(762), + [anon_sym_default] = ACTIONS(762), + [anon_sym_enum] = ACTIONS(762), + [anon_sym_fn] = ACTIONS(762), + [anon_sym_for] = ACTIONS(762), + [anon_sym_if] = ACTIONS(762), + [anon_sym_impl] = ACTIONS(762), + [anon_sym_let] = ACTIONS(762), + [anon_sym_loop] = ACTIONS(762), + [anon_sym_match] = ACTIONS(762), + [anon_sym_mod] = ACTIONS(762), + [anon_sym_pub] = ACTIONS(762), + [anon_sym_return] = ACTIONS(762), + [anon_sym_static] = ACTIONS(762), + [anon_sym_struct] = ACTIONS(762), + [anon_sym_trait] = ACTIONS(762), + [anon_sym_type] = ACTIONS(762), + [anon_sym_union] = ACTIONS(762), + [anon_sym_unsafe] = ACTIONS(762), + [anon_sym_use] = ACTIONS(762), + [anon_sym_where] = ACTIONS(762), + [anon_sym_while] = ACTIONS(762), + [sym_mutable_specifier] = ACTIONS(762), + [sym_integer_literal] = ACTIONS(764), + [aux_sym_string_literal_token1] = ACTIONS(764), + [sym_char_literal] = ACTIONS(764), + [anon_sym_true] = ACTIONS(762), + [anon_sym_false] = ACTIONS(762), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(762), + [sym_super] = ACTIONS(762), + [sym_crate] = ACTIONS(762), + [sym_metavariable] = ACTIONS(764), + [sym__raw_string_literal_start] = ACTIONS(764), + [sym_float_literal] = ACTIONS(764), }, [143] = { [sym_line_comment] = STATE(143), [sym_block_comment] = STATE(143), - [sym_identifier] = ACTIONS(775), - [anon_sym_SEMI] = ACTIONS(777), - [anon_sym_LPAREN] = ACTIONS(777), - [anon_sym_RPAREN] = ACTIONS(777), - [anon_sym_LBRACK] = ACTIONS(777), - [anon_sym_RBRACK] = ACTIONS(777), - [anon_sym_LBRACE] = ACTIONS(777), - [anon_sym_RBRACE] = ACTIONS(777), - [anon_sym_EQ_GT] = ACTIONS(777), - [anon_sym_COLON] = ACTIONS(775), - [anon_sym_DOLLAR] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(775), - [anon_sym_STAR] = ACTIONS(775), - [anon_sym_QMARK] = ACTIONS(777), - [anon_sym_u8] = ACTIONS(775), - [anon_sym_i8] = ACTIONS(775), - [anon_sym_u16] = ACTIONS(775), - [anon_sym_i16] = ACTIONS(775), - [anon_sym_u32] = ACTIONS(775), - [anon_sym_i32] = ACTIONS(775), - [anon_sym_u64] = ACTIONS(775), - [anon_sym_i64] = ACTIONS(775), - [anon_sym_u128] = ACTIONS(775), - [anon_sym_i128] = ACTIONS(775), - [anon_sym_isize] = ACTIONS(775), - [anon_sym_usize] = ACTIONS(775), - [anon_sym_f32] = ACTIONS(775), - [anon_sym_f64] = ACTIONS(775), - [anon_sym_bool] = ACTIONS(775), - [anon_sym_str] = ACTIONS(775), - [anon_sym_char] = ACTIONS(775), - [anon_sym_DASH] = ACTIONS(775), - [anon_sym_SLASH] = ACTIONS(775), - [anon_sym_PERCENT] = ACTIONS(775), - [anon_sym_CARET] = ACTIONS(775), - [anon_sym_BANG] = ACTIONS(775), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_AMP_AMP] = ACTIONS(777), - [anon_sym_PIPE_PIPE] = ACTIONS(777), - [anon_sym_LT_LT] = ACTIONS(775), - [anon_sym_GT_GT] = ACTIONS(775), - [anon_sym_PLUS_EQ] = ACTIONS(777), - [anon_sym_DASH_EQ] = ACTIONS(777), - [anon_sym_STAR_EQ] = ACTIONS(777), - [anon_sym_SLASH_EQ] = ACTIONS(777), - [anon_sym_PERCENT_EQ] = ACTIONS(777), - [anon_sym_CARET_EQ] = ACTIONS(777), - [anon_sym_AMP_EQ] = ACTIONS(777), - [anon_sym_PIPE_EQ] = ACTIONS(777), - [anon_sym_LT_LT_EQ] = ACTIONS(777), - [anon_sym_GT_GT_EQ] = ACTIONS(777), - [anon_sym_EQ] = ACTIONS(775), - [anon_sym_EQ_EQ] = ACTIONS(777), - [anon_sym_BANG_EQ] = ACTIONS(777), - [anon_sym_GT] = ACTIONS(775), - [anon_sym_LT] = ACTIONS(775), - [anon_sym_GT_EQ] = ACTIONS(777), - [anon_sym_LT_EQ] = ACTIONS(777), - [anon_sym_AT] = ACTIONS(777), - [anon_sym__] = ACTIONS(775), - [anon_sym_DOT] = ACTIONS(775), - [anon_sym_DOT_DOT] = ACTIONS(775), - [anon_sym_DOT_DOT_DOT] = ACTIONS(777), - [anon_sym_DOT_DOT_EQ] = ACTIONS(777), - [anon_sym_COMMA] = ACTIONS(777), - [anon_sym_COLON_COLON] = ACTIONS(777), - [anon_sym_DASH_GT] = ACTIONS(777), - [anon_sym_POUND] = ACTIONS(777), - [anon_sym_SQUOTE] = ACTIONS(775), - [anon_sym_as] = ACTIONS(775), - [anon_sym_async] = ACTIONS(775), - [anon_sym_await] = ACTIONS(775), - [anon_sym_break] = ACTIONS(775), - [anon_sym_const] = ACTIONS(775), - [anon_sym_continue] = ACTIONS(775), - [anon_sym_default] = ACTIONS(775), - [anon_sym_enum] = ACTIONS(775), - [anon_sym_fn] = ACTIONS(775), - [anon_sym_for] = ACTIONS(775), - [anon_sym_if] = ACTIONS(775), - [anon_sym_impl] = ACTIONS(775), - [anon_sym_let] = ACTIONS(775), - [anon_sym_loop] = ACTIONS(775), - [anon_sym_match] = ACTIONS(775), - [anon_sym_mod] = ACTIONS(775), - [anon_sym_pub] = ACTIONS(775), - [anon_sym_return] = ACTIONS(775), - [anon_sym_static] = ACTIONS(775), - [anon_sym_struct] = ACTIONS(775), - [anon_sym_trait] = ACTIONS(775), - [anon_sym_type] = ACTIONS(775), - [anon_sym_union] = ACTIONS(775), - [anon_sym_unsafe] = ACTIONS(775), - [anon_sym_use] = ACTIONS(775), - [anon_sym_where] = ACTIONS(775), - [anon_sym_while] = ACTIONS(775), - [sym_mutable_specifier] = ACTIONS(775), - [sym_integer_literal] = ACTIONS(777), - [aux_sym_string_literal_token1] = ACTIONS(777), - [sym_char_literal] = ACTIONS(777), - [anon_sym_true] = ACTIONS(775), - [anon_sym_false] = ACTIONS(775), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(775), - [sym_super] = ACTIONS(775), - [sym_crate] = ACTIONS(775), - [sym_metavariable] = ACTIONS(777), - [sym__raw_string_literal_start] = ACTIONS(777), - [sym_float_literal] = ACTIONS(777), + [sym_identifier] = ACTIONS(766), + [anon_sym_SEMI] = ACTIONS(768), + [anon_sym_LPAREN] = ACTIONS(768), + [anon_sym_RPAREN] = ACTIONS(768), + [anon_sym_LBRACK] = ACTIONS(768), + [anon_sym_RBRACK] = ACTIONS(768), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_RBRACE] = ACTIONS(768), + [anon_sym_COMMA] = ACTIONS(768), + [anon_sym_EQ_GT] = ACTIONS(768), + [anon_sym_COLON] = ACTIONS(766), + [anon_sym_DOLLAR] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(766), + [anon_sym_STAR] = ACTIONS(766), + [anon_sym_QMARK] = ACTIONS(768), + [anon_sym_u8] = ACTIONS(766), + [anon_sym_i8] = ACTIONS(766), + [anon_sym_u16] = ACTIONS(766), + [anon_sym_i16] = ACTIONS(766), + [anon_sym_u32] = ACTIONS(766), + [anon_sym_i32] = ACTIONS(766), + [anon_sym_u64] = ACTIONS(766), + [anon_sym_i64] = ACTIONS(766), + [anon_sym_u128] = ACTIONS(766), + [anon_sym_i128] = ACTIONS(766), + [anon_sym_isize] = ACTIONS(766), + [anon_sym_usize] = ACTIONS(766), + [anon_sym_f32] = ACTIONS(766), + [anon_sym_f64] = ACTIONS(766), + [anon_sym_bool] = ACTIONS(766), + [anon_sym_str] = ACTIONS(766), + [anon_sym_char] = ACTIONS(766), + [anon_sym_DASH] = ACTIONS(766), + [anon_sym_SLASH] = ACTIONS(766), + [anon_sym_PERCENT] = ACTIONS(766), + [anon_sym_CARET] = ACTIONS(766), + [anon_sym_BANG] = ACTIONS(766), + [anon_sym_AMP] = ACTIONS(766), + [anon_sym_PIPE] = ACTIONS(766), + [anon_sym_AMP_AMP] = ACTIONS(768), + [anon_sym_PIPE_PIPE] = ACTIONS(768), + [anon_sym_LT_LT] = ACTIONS(766), + [anon_sym_GT_GT] = ACTIONS(766), + [anon_sym_PLUS_EQ] = ACTIONS(768), + [anon_sym_DASH_EQ] = ACTIONS(768), + [anon_sym_STAR_EQ] = ACTIONS(768), + [anon_sym_SLASH_EQ] = ACTIONS(768), + [anon_sym_PERCENT_EQ] = ACTIONS(768), + [anon_sym_CARET_EQ] = ACTIONS(768), + [anon_sym_AMP_EQ] = ACTIONS(768), + [anon_sym_PIPE_EQ] = ACTIONS(768), + [anon_sym_LT_LT_EQ] = ACTIONS(768), + [anon_sym_GT_GT_EQ] = ACTIONS(768), + [anon_sym_EQ] = ACTIONS(766), + [anon_sym_EQ_EQ] = ACTIONS(768), + [anon_sym_BANG_EQ] = ACTIONS(768), + [anon_sym_GT] = ACTIONS(766), + [anon_sym_LT] = ACTIONS(766), + [anon_sym_GT_EQ] = ACTIONS(768), + [anon_sym_LT_EQ] = ACTIONS(768), + [anon_sym_AT] = ACTIONS(768), + [anon_sym__] = ACTIONS(766), + [anon_sym_DOT] = ACTIONS(766), + [anon_sym_DOT_DOT] = ACTIONS(766), + [anon_sym_DOT_DOT_DOT] = ACTIONS(768), + [anon_sym_DOT_DOT_EQ] = ACTIONS(768), + [anon_sym_COLON_COLON] = ACTIONS(768), + [anon_sym_DASH_GT] = ACTIONS(768), + [anon_sym_POUND] = ACTIONS(768), + [anon_sym_SQUOTE] = ACTIONS(766), + [anon_sym_as] = ACTIONS(766), + [anon_sym_async] = ACTIONS(766), + [anon_sym_await] = ACTIONS(766), + [anon_sym_break] = ACTIONS(766), + [anon_sym_const] = ACTIONS(766), + [anon_sym_continue] = ACTIONS(766), + [anon_sym_default] = ACTIONS(766), + [anon_sym_enum] = ACTIONS(766), + [anon_sym_fn] = ACTIONS(766), + [anon_sym_for] = ACTIONS(766), + [anon_sym_if] = ACTIONS(766), + [anon_sym_impl] = ACTIONS(766), + [anon_sym_let] = ACTIONS(766), + [anon_sym_loop] = ACTIONS(766), + [anon_sym_match] = ACTIONS(766), + [anon_sym_mod] = ACTIONS(766), + [anon_sym_pub] = ACTIONS(766), + [anon_sym_return] = ACTIONS(766), + [anon_sym_static] = ACTIONS(766), + [anon_sym_struct] = ACTIONS(766), + [anon_sym_trait] = ACTIONS(766), + [anon_sym_type] = ACTIONS(766), + [anon_sym_union] = ACTIONS(766), + [anon_sym_unsafe] = ACTIONS(766), + [anon_sym_use] = ACTIONS(766), + [anon_sym_where] = ACTIONS(766), + [anon_sym_while] = ACTIONS(766), + [sym_mutable_specifier] = ACTIONS(766), + [sym_integer_literal] = ACTIONS(768), + [aux_sym_string_literal_token1] = ACTIONS(768), + [sym_char_literal] = ACTIONS(768), + [anon_sym_true] = ACTIONS(766), + [anon_sym_false] = ACTIONS(766), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(766), + [sym_super] = ACTIONS(766), + [sym_crate] = ACTIONS(766), + [sym_metavariable] = ACTIONS(768), + [sym__raw_string_literal_start] = ACTIONS(768), + [sym_float_literal] = ACTIONS(768), }, [144] = { + [sym_attribute_item] = STATE(1023), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1624), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1419), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(144), [sym_block_comment] = STATE(144), - [sym_identifier] = ACTIONS(779), - [anon_sym_SEMI] = ACTIONS(781), - [anon_sym_LPAREN] = ACTIONS(781), - [anon_sym_RPAREN] = ACTIONS(781), - [anon_sym_LBRACK] = ACTIONS(781), - [anon_sym_RBRACK] = ACTIONS(781), - [anon_sym_LBRACE] = ACTIONS(781), - [anon_sym_RBRACE] = ACTIONS(781), - [anon_sym_EQ_GT] = ACTIONS(781), - [anon_sym_COLON] = ACTIONS(779), - [anon_sym_DOLLAR] = ACTIONS(779), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_STAR] = ACTIONS(779), - [anon_sym_QMARK] = ACTIONS(781), - [anon_sym_u8] = ACTIONS(779), - [anon_sym_i8] = ACTIONS(779), - [anon_sym_u16] = ACTIONS(779), - [anon_sym_i16] = ACTIONS(779), - [anon_sym_u32] = ACTIONS(779), - [anon_sym_i32] = ACTIONS(779), - [anon_sym_u64] = ACTIONS(779), - [anon_sym_i64] = ACTIONS(779), - [anon_sym_u128] = ACTIONS(779), - [anon_sym_i128] = ACTIONS(779), - [anon_sym_isize] = ACTIONS(779), - [anon_sym_usize] = ACTIONS(779), - [anon_sym_f32] = ACTIONS(779), - [anon_sym_f64] = ACTIONS(779), - [anon_sym_bool] = ACTIONS(779), - [anon_sym_str] = ACTIONS(779), - [anon_sym_char] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_SLASH] = ACTIONS(779), - [anon_sym_PERCENT] = ACTIONS(779), - [anon_sym_CARET] = ACTIONS(779), - [anon_sym_BANG] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(779), - [anon_sym_PIPE] = ACTIONS(779), - [anon_sym_AMP_AMP] = ACTIONS(781), - [anon_sym_PIPE_PIPE] = ACTIONS(781), - [anon_sym_LT_LT] = ACTIONS(779), - [anon_sym_GT_GT] = ACTIONS(779), - [anon_sym_PLUS_EQ] = ACTIONS(781), - [anon_sym_DASH_EQ] = ACTIONS(781), - [anon_sym_STAR_EQ] = ACTIONS(781), - [anon_sym_SLASH_EQ] = ACTIONS(781), - [anon_sym_PERCENT_EQ] = ACTIONS(781), - [anon_sym_CARET_EQ] = ACTIONS(781), - [anon_sym_AMP_EQ] = ACTIONS(781), - [anon_sym_PIPE_EQ] = ACTIONS(781), - [anon_sym_LT_LT_EQ] = ACTIONS(781), - [anon_sym_GT_GT_EQ] = ACTIONS(781), - [anon_sym_EQ] = ACTIONS(779), - [anon_sym_EQ_EQ] = ACTIONS(781), - [anon_sym_BANG_EQ] = ACTIONS(781), - [anon_sym_GT] = ACTIONS(779), - [anon_sym_LT] = ACTIONS(779), - [anon_sym_GT_EQ] = ACTIONS(781), - [anon_sym_LT_EQ] = ACTIONS(781), - [anon_sym_AT] = ACTIONS(781), - [anon_sym__] = ACTIONS(779), - [anon_sym_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_DOT] = ACTIONS(781), - [anon_sym_DOT_DOT_EQ] = ACTIONS(781), - [anon_sym_COMMA] = ACTIONS(781), - [anon_sym_COLON_COLON] = ACTIONS(781), - [anon_sym_DASH_GT] = ACTIONS(781), - [anon_sym_POUND] = ACTIONS(781), - [anon_sym_SQUOTE] = ACTIONS(779), - [anon_sym_as] = ACTIONS(779), - [anon_sym_async] = ACTIONS(779), - [anon_sym_await] = ACTIONS(779), - [anon_sym_break] = ACTIONS(779), - [anon_sym_const] = ACTIONS(779), - [anon_sym_continue] = ACTIONS(779), - [anon_sym_default] = ACTIONS(779), - [anon_sym_enum] = ACTIONS(779), - [anon_sym_fn] = ACTIONS(779), - [anon_sym_for] = ACTIONS(779), - [anon_sym_if] = ACTIONS(779), - [anon_sym_impl] = ACTIONS(779), - [anon_sym_let] = ACTIONS(779), - [anon_sym_loop] = ACTIONS(779), - [anon_sym_match] = ACTIONS(779), - [anon_sym_mod] = ACTIONS(779), - [anon_sym_pub] = ACTIONS(779), - [anon_sym_return] = ACTIONS(779), - [anon_sym_static] = ACTIONS(779), - [anon_sym_struct] = ACTIONS(779), - [anon_sym_trait] = ACTIONS(779), - [anon_sym_type] = ACTIONS(779), - [anon_sym_union] = ACTIONS(779), - [anon_sym_unsafe] = ACTIONS(779), - [anon_sym_use] = ACTIONS(779), - [anon_sym_where] = ACTIONS(779), - [anon_sym_while] = ACTIONS(779), - [sym_mutable_specifier] = ACTIONS(779), - [sym_integer_literal] = ACTIONS(781), - [aux_sym_string_literal_token1] = ACTIONS(781), - [sym_char_literal] = ACTIONS(781), - [anon_sym_true] = ACTIONS(779), - [anon_sym_false] = ACTIONS(779), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(779), - [sym_super] = ACTIONS(779), - [sym_crate] = ACTIONS(779), - [sym_metavariable] = ACTIONS(781), - [sym__raw_string_literal_start] = ACTIONS(781), - [sym_float_literal] = ACTIONS(781), + [aux_sym_enum_variant_list_repeat1] = STATE(215), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(770), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_COMMA] = ACTIONS(772), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_POUND] = ACTIONS(774), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(365), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [145] = { - [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1632), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(145), [sym_block_comment] = STATE(145), - [aux_sym_enum_variant_list_repeat1] = STATE(209), - [sym_identifier] = ACTIONS(334), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(783), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COMMA] = ACTIONS(785), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(765), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [sym_identifier] = ACTIONS(776), + [anon_sym_SEMI] = ACTIONS(778), + [anon_sym_LPAREN] = ACTIONS(778), + [anon_sym_RPAREN] = ACTIONS(778), + [anon_sym_LBRACK] = ACTIONS(778), + [anon_sym_RBRACK] = ACTIONS(778), + [anon_sym_LBRACE] = ACTIONS(778), + [anon_sym_RBRACE] = ACTIONS(778), + [anon_sym_COMMA] = ACTIONS(778), + [anon_sym_EQ_GT] = ACTIONS(778), + [anon_sym_COLON] = ACTIONS(776), + [anon_sym_DOLLAR] = ACTIONS(776), + [anon_sym_PLUS] = ACTIONS(776), + [anon_sym_STAR] = ACTIONS(776), + [anon_sym_QMARK] = ACTIONS(778), + [anon_sym_u8] = ACTIONS(776), + [anon_sym_i8] = ACTIONS(776), + [anon_sym_u16] = ACTIONS(776), + [anon_sym_i16] = ACTIONS(776), + [anon_sym_u32] = ACTIONS(776), + [anon_sym_i32] = ACTIONS(776), + [anon_sym_u64] = ACTIONS(776), + [anon_sym_i64] = ACTIONS(776), + [anon_sym_u128] = ACTIONS(776), + [anon_sym_i128] = ACTIONS(776), + [anon_sym_isize] = ACTIONS(776), + [anon_sym_usize] = ACTIONS(776), + [anon_sym_f32] = ACTIONS(776), + [anon_sym_f64] = ACTIONS(776), + [anon_sym_bool] = ACTIONS(776), + [anon_sym_str] = ACTIONS(776), + [anon_sym_char] = ACTIONS(776), + [anon_sym_DASH] = ACTIONS(776), + [anon_sym_SLASH] = ACTIONS(776), + [anon_sym_PERCENT] = ACTIONS(776), + [anon_sym_CARET] = ACTIONS(776), + [anon_sym_BANG] = ACTIONS(776), + [anon_sym_AMP] = ACTIONS(776), + [anon_sym_PIPE] = ACTIONS(776), + [anon_sym_AMP_AMP] = ACTIONS(778), + [anon_sym_PIPE_PIPE] = ACTIONS(778), + [anon_sym_LT_LT] = ACTIONS(776), + [anon_sym_GT_GT] = ACTIONS(776), + [anon_sym_PLUS_EQ] = ACTIONS(778), + [anon_sym_DASH_EQ] = ACTIONS(778), + [anon_sym_STAR_EQ] = ACTIONS(778), + [anon_sym_SLASH_EQ] = ACTIONS(778), + [anon_sym_PERCENT_EQ] = ACTIONS(778), + [anon_sym_CARET_EQ] = ACTIONS(778), + [anon_sym_AMP_EQ] = ACTIONS(778), + [anon_sym_PIPE_EQ] = ACTIONS(778), + [anon_sym_LT_LT_EQ] = ACTIONS(778), + [anon_sym_GT_GT_EQ] = ACTIONS(778), + [anon_sym_EQ] = ACTIONS(776), + [anon_sym_EQ_EQ] = ACTIONS(778), + [anon_sym_BANG_EQ] = ACTIONS(778), + [anon_sym_GT] = ACTIONS(776), + [anon_sym_LT] = ACTIONS(776), + [anon_sym_GT_EQ] = ACTIONS(778), + [anon_sym_LT_EQ] = ACTIONS(778), + [anon_sym_AT] = ACTIONS(778), + [anon_sym__] = ACTIONS(776), + [anon_sym_DOT] = ACTIONS(776), + [anon_sym_DOT_DOT] = ACTIONS(776), + [anon_sym_DOT_DOT_DOT] = ACTIONS(778), + [anon_sym_DOT_DOT_EQ] = ACTIONS(778), + [anon_sym_COLON_COLON] = ACTIONS(778), + [anon_sym_DASH_GT] = ACTIONS(778), + [anon_sym_POUND] = ACTIONS(778), + [anon_sym_SQUOTE] = ACTIONS(776), + [anon_sym_as] = ACTIONS(776), + [anon_sym_async] = ACTIONS(776), + [anon_sym_await] = ACTIONS(776), + [anon_sym_break] = ACTIONS(776), + [anon_sym_const] = ACTIONS(776), + [anon_sym_continue] = ACTIONS(776), + [anon_sym_default] = ACTIONS(776), + [anon_sym_enum] = ACTIONS(776), + [anon_sym_fn] = ACTIONS(776), + [anon_sym_for] = ACTIONS(776), + [anon_sym_if] = ACTIONS(776), + [anon_sym_impl] = ACTIONS(776), + [anon_sym_let] = ACTIONS(776), + [anon_sym_loop] = ACTIONS(776), + [anon_sym_match] = ACTIONS(776), + [anon_sym_mod] = ACTIONS(776), + [anon_sym_pub] = ACTIONS(776), + [anon_sym_return] = ACTIONS(776), + [anon_sym_static] = ACTIONS(776), + [anon_sym_struct] = ACTIONS(776), + [anon_sym_trait] = ACTIONS(776), + [anon_sym_type] = ACTIONS(776), + [anon_sym_union] = ACTIONS(776), + [anon_sym_unsafe] = ACTIONS(776), + [anon_sym_use] = ACTIONS(776), + [anon_sym_where] = ACTIONS(776), + [anon_sym_while] = ACTIONS(776), + [sym_mutable_specifier] = ACTIONS(776), + [sym_integer_literal] = ACTIONS(778), + [aux_sym_string_literal_token1] = ACTIONS(778), + [sym_char_literal] = ACTIONS(778), + [anon_sym_true] = ACTIONS(776), + [anon_sym_false] = ACTIONS(776), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(776), + [sym_super] = ACTIONS(776), + [sym_crate] = ACTIONS(776), + [sym_metavariable] = ACTIONS(778), + [sym__raw_string_literal_start] = ACTIONS(778), + [sym_float_literal] = ACTIONS(778), }, [146] = { - [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1578), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(146), [sym_block_comment] = STATE(146), - [aux_sym_enum_variant_list_repeat1] = STATE(1002), - [sym_identifier] = ACTIONS(787), - [anon_sym_LPAREN] = ACTIONS(790), - [anon_sym_LBRACK] = ACTIONS(793), - [anon_sym_RBRACK] = ACTIONS(796), - [anon_sym_LBRACE] = ACTIONS(798), - [anon_sym_STAR] = ACTIONS(801), - [anon_sym_u8] = ACTIONS(804), - [anon_sym_i8] = ACTIONS(804), - [anon_sym_u16] = ACTIONS(804), - [anon_sym_i16] = ACTIONS(804), - [anon_sym_u32] = ACTIONS(804), - [anon_sym_i32] = ACTIONS(804), - [anon_sym_u64] = ACTIONS(804), - [anon_sym_i64] = ACTIONS(804), - [anon_sym_u128] = ACTIONS(804), - [anon_sym_i128] = ACTIONS(804), - [anon_sym_isize] = ACTIONS(804), - [anon_sym_usize] = ACTIONS(804), - [anon_sym_f32] = ACTIONS(804), - [anon_sym_f64] = ACTIONS(804), - [anon_sym_bool] = ACTIONS(804), - [anon_sym_str] = ACTIONS(804), - [anon_sym_char] = ACTIONS(804), - [anon_sym_DASH] = ACTIONS(801), - [anon_sym_BANG] = ACTIONS(801), - [anon_sym_AMP] = ACTIONS(807), - [anon_sym_PIPE] = ACTIONS(810), - [anon_sym_LT] = ACTIONS(813), - [anon_sym_DOT_DOT] = ACTIONS(816), - [anon_sym_COMMA] = ACTIONS(796), - [anon_sym_COLON_COLON] = ACTIONS(819), - [anon_sym_POUND] = ACTIONS(822), - [anon_sym_SQUOTE] = ACTIONS(825), - [anon_sym_async] = ACTIONS(828), - [anon_sym_break] = ACTIONS(831), - [anon_sym_const] = ACTIONS(834), - [anon_sym_continue] = ACTIONS(837), - [anon_sym_default] = ACTIONS(840), - [anon_sym_for] = ACTIONS(843), - [anon_sym_if] = ACTIONS(846), - [anon_sym_loop] = ACTIONS(849), - [anon_sym_match] = ACTIONS(852), - [anon_sym_return] = ACTIONS(855), - [anon_sym_static] = ACTIONS(858), - [anon_sym_union] = ACTIONS(840), - [anon_sym_unsafe] = ACTIONS(861), - [anon_sym_while] = ACTIONS(864), - [anon_sym_yield] = ACTIONS(867), - [anon_sym_move] = ACTIONS(870), - [anon_sym_try] = ACTIONS(873), - [sym_integer_literal] = ACTIONS(876), - [aux_sym_string_literal_token1] = ACTIONS(879), - [sym_char_literal] = ACTIONS(876), - [anon_sym_true] = ACTIONS(882), - [anon_sym_false] = ACTIONS(882), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(885), - [sym_super] = ACTIONS(888), - [sym_crate] = ACTIONS(888), - [sym_metavariable] = ACTIONS(891), - [sym__raw_string_literal_start] = ACTIONS(894), - [sym_float_literal] = ACTIONS(876), + [sym_identifier] = ACTIONS(780), + [anon_sym_SEMI] = ACTIONS(782), + [anon_sym_LPAREN] = ACTIONS(782), + [anon_sym_RPAREN] = ACTIONS(782), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_RBRACK] = ACTIONS(782), + [anon_sym_LBRACE] = ACTIONS(782), + [anon_sym_RBRACE] = ACTIONS(782), + [anon_sym_COMMA] = ACTIONS(782), + [anon_sym_EQ_GT] = ACTIONS(782), + [anon_sym_COLON] = ACTIONS(780), + [anon_sym_DOLLAR] = ACTIONS(780), + [anon_sym_PLUS] = ACTIONS(780), + [anon_sym_STAR] = ACTIONS(780), + [anon_sym_QMARK] = ACTIONS(782), + [anon_sym_u8] = ACTIONS(780), + [anon_sym_i8] = ACTIONS(780), + [anon_sym_u16] = ACTIONS(780), + [anon_sym_i16] = ACTIONS(780), + [anon_sym_u32] = ACTIONS(780), + [anon_sym_i32] = ACTIONS(780), + [anon_sym_u64] = ACTIONS(780), + [anon_sym_i64] = ACTIONS(780), + [anon_sym_u128] = ACTIONS(780), + [anon_sym_i128] = ACTIONS(780), + [anon_sym_isize] = ACTIONS(780), + [anon_sym_usize] = ACTIONS(780), + [anon_sym_f32] = ACTIONS(780), + [anon_sym_f64] = ACTIONS(780), + [anon_sym_bool] = ACTIONS(780), + [anon_sym_str] = ACTIONS(780), + [anon_sym_char] = ACTIONS(780), + [anon_sym_DASH] = ACTIONS(780), + [anon_sym_SLASH] = ACTIONS(780), + [anon_sym_PERCENT] = ACTIONS(780), + [anon_sym_CARET] = ACTIONS(780), + [anon_sym_BANG] = ACTIONS(780), + [anon_sym_AMP] = ACTIONS(780), + [anon_sym_PIPE] = ACTIONS(780), + [anon_sym_AMP_AMP] = ACTIONS(782), + [anon_sym_PIPE_PIPE] = ACTIONS(782), + [anon_sym_LT_LT] = ACTIONS(780), + [anon_sym_GT_GT] = ACTIONS(780), + [anon_sym_PLUS_EQ] = ACTIONS(782), + [anon_sym_DASH_EQ] = ACTIONS(782), + [anon_sym_STAR_EQ] = ACTIONS(782), + [anon_sym_SLASH_EQ] = ACTIONS(782), + [anon_sym_PERCENT_EQ] = ACTIONS(782), + [anon_sym_CARET_EQ] = ACTIONS(782), + [anon_sym_AMP_EQ] = ACTIONS(782), + [anon_sym_PIPE_EQ] = ACTIONS(782), + [anon_sym_LT_LT_EQ] = ACTIONS(782), + [anon_sym_GT_GT_EQ] = ACTIONS(782), + [anon_sym_EQ] = ACTIONS(780), + [anon_sym_EQ_EQ] = ACTIONS(782), + [anon_sym_BANG_EQ] = ACTIONS(782), + [anon_sym_GT] = ACTIONS(780), + [anon_sym_LT] = ACTIONS(780), + [anon_sym_GT_EQ] = ACTIONS(782), + [anon_sym_LT_EQ] = ACTIONS(782), + [anon_sym_AT] = ACTIONS(782), + [anon_sym__] = ACTIONS(780), + [anon_sym_DOT] = ACTIONS(780), + [anon_sym_DOT_DOT] = ACTIONS(780), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [anon_sym_DOT_DOT_EQ] = ACTIONS(782), + [anon_sym_COLON_COLON] = ACTIONS(782), + [anon_sym_DASH_GT] = ACTIONS(782), + [anon_sym_POUND] = ACTIONS(782), + [anon_sym_SQUOTE] = ACTIONS(780), + [anon_sym_as] = ACTIONS(780), + [anon_sym_async] = ACTIONS(780), + [anon_sym_await] = ACTIONS(780), + [anon_sym_break] = ACTIONS(780), + [anon_sym_const] = ACTIONS(780), + [anon_sym_continue] = ACTIONS(780), + [anon_sym_default] = ACTIONS(780), + [anon_sym_enum] = ACTIONS(780), + [anon_sym_fn] = ACTIONS(780), + [anon_sym_for] = ACTIONS(780), + [anon_sym_if] = ACTIONS(780), + [anon_sym_impl] = ACTIONS(780), + [anon_sym_let] = ACTIONS(780), + [anon_sym_loop] = ACTIONS(780), + [anon_sym_match] = ACTIONS(780), + [anon_sym_mod] = ACTIONS(780), + [anon_sym_pub] = ACTIONS(780), + [anon_sym_return] = ACTIONS(780), + [anon_sym_static] = ACTIONS(780), + [anon_sym_struct] = ACTIONS(780), + [anon_sym_trait] = ACTIONS(780), + [anon_sym_type] = ACTIONS(780), + [anon_sym_union] = ACTIONS(780), + [anon_sym_unsafe] = ACTIONS(780), + [anon_sym_use] = ACTIONS(780), + [anon_sym_where] = ACTIONS(780), + [anon_sym_while] = ACTIONS(780), + [sym_mutable_specifier] = ACTIONS(780), + [sym_integer_literal] = ACTIONS(782), + [aux_sym_string_literal_token1] = ACTIONS(782), + [sym_char_literal] = ACTIONS(782), + [anon_sym_true] = ACTIONS(780), + [anon_sym_false] = ACTIONS(780), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(780), + [sym_super] = ACTIONS(780), + [sym_crate] = ACTIONS(780), + [sym_metavariable] = ACTIONS(782), + [sym__raw_string_literal_start] = ACTIONS(782), + [sym_float_literal] = ACTIONS(782), }, [147] = { + [sym_attribute_item] = STATE(1023), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1623), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1419), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(147), [sym_block_comment] = STATE(147), - [sym_identifier] = ACTIONS(897), - [anon_sym_SEMI] = ACTIONS(899), - [anon_sym_LPAREN] = ACTIONS(899), - [anon_sym_RPAREN] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(899), - [anon_sym_RBRACK] = ACTIONS(899), - [anon_sym_LBRACE] = ACTIONS(899), - [anon_sym_RBRACE] = ACTIONS(899), - [anon_sym_EQ_GT] = ACTIONS(899), - [anon_sym_COLON] = ACTIONS(897), - [anon_sym_DOLLAR] = ACTIONS(897), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_STAR] = ACTIONS(897), - [anon_sym_QMARK] = ACTIONS(899), - [anon_sym_u8] = ACTIONS(897), - [anon_sym_i8] = ACTIONS(897), - [anon_sym_u16] = ACTIONS(897), - [anon_sym_i16] = ACTIONS(897), - [anon_sym_u32] = ACTIONS(897), - [anon_sym_i32] = ACTIONS(897), - [anon_sym_u64] = ACTIONS(897), - [anon_sym_i64] = ACTIONS(897), - [anon_sym_u128] = ACTIONS(897), - [anon_sym_i128] = ACTIONS(897), - [anon_sym_isize] = ACTIONS(897), - [anon_sym_usize] = ACTIONS(897), - [anon_sym_f32] = ACTIONS(897), - [anon_sym_f64] = ACTIONS(897), - [anon_sym_bool] = ACTIONS(897), - [anon_sym_str] = ACTIONS(897), - [anon_sym_char] = ACTIONS(897), - [anon_sym_DASH] = ACTIONS(897), - [anon_sym_SLASH] = ACTIONS(897), - [anon_sym_PERCENT] = ACTIONS(897), - [anon_sym_CARET] = ACTIONS(897), - [anon_sym_BANG] = ACTIONS(897), - [anon_sym_AMP] = ACTIONS(897), - [anon_sym_PIPE] = ACTIONS(897), - [anon_sym_AMP_AMP] = ACTIONS(899), - [anon_sym_PIPE_PIPE] = ACTIONS(899), - [anon_sym_LT_LT] = ACTIONS(897), - [anon_sym_GT_GT] = ACTIONS(897), - [anon_sym_PLUS_EQ] = ACTIONS(899), - [anon_sym_DASH_EQ] = ACTIONS(899), - [anon_sym_STAR_EQ] = ACTIONS(899), - [anon_sym_SLASH_EQ] = ACTIONS(899), - [anon_sym_PERCENT_EQ] = ACTIONS(899), - [anon_sym_CARET_EQ] = ACTIONS(899), - [anon_sym_AMP_EQ] = ACTIONS(899), - [anon_sym_PIPE_EQ] = ACTIONS(899), - [anon_sym_LT_LT_EQ] = ACTIONS(899), - [anon_sym_GT_GT_EQ] = ACTIONS(899), - [anon_sym_EQ] = ACTIONS(897), - [anon_sym_EQ_EQ] = ACTIONS(899), - [anon_sym_BANG_EQ] = ACTIONS(899), - [anon_sym_GT] = ACTIONS(897), - [anon_sym_LT] = ACTIONS(897), - [anon_sym_GT_EQ] = ACTIONS(899), - [anon_sym_LT_EQ] = ACTIONS(899), - [anon_sym_AT] = ACTIONS(899), - [anon_sym__] = ACTIONS(897), - [anon_sym_DOT] = ACTIONS(897), - [anon_sym_DOT_DOT] = ACTIONS(897), - [anon_sym_DOT_DOT_DOT] = ACTIONS(899), - [anon_sym_DOT_DOT_EQ] = ACTIONS(899), - [anon_sym_COMMA] = ACTIONS(899), - [anon_sym_COLON_COLON] = ACTIONS(899), - [anon_sym_DASH_GT] = ACTIONS(899), - [anon_sym_POUND] = ACTIONS(899), - [anon_sym_SQUOTE] = ACTIONS(897), - [anon_sym_as] = ACTIONS(897), - [anon_sym_async] = ACTIONS(897), - [anon_sym_await] = ACTIONS(897), - [anon_sym_break] = ACTIONS(897), - [anon_sym_const] = ACTIONS(897), - [anon_sym_continue] = ACTIONS(897), - [anon_sym_default] = ACTIONS(897), - [anon_sym_enum] = ACTIONS(897), - [anon_sym_fn] = ACTIONS(897), - [anon_sym_for] = ACTIONS(897), - [anon_sym_if] = ACTIONS(897), - [anon_sym_impl] = ACTIONS(897), - [anon_sym_let] = ACTIONS(897), - [anon_sym_loop] = ACTIONS(897), - [anon_sym_match] = ACTIONS(897), - [anon_sym_mod] = ACTIONS(897), - [anon_sym_pub] = ACTIONS(897), - [anon_sym_return] = ACTIONS(897), - [anon_sym_static] = ACTIONS(897), - [anon_sym_struct] = ACTIONS(897), - [anon_sym_trait] = ACTIONS(897), - [anon_sym_type] = ACTIONS(897), - [anon_sym_union] = ACTIONS(897), - [anon_sym_unsafe] = ACTIONS(897), - [anon_sym_use] = ACTIONS(897), - [anon_sym_where] = ACTIONS(897), - [anon_sym_while] = ACTIONS(897), - [sym_mutable_specifier] = ACTIONS(897), - [sym_integer_literal] = ACTIONS(899), - [aux_sym_string_literal_token1] = ACTIONS(899), - [sym_char_literal] = ACTIONS(899), - [anon_sym_true] = ACTIONS(897), - [anon_sym_false] = ACTIONS(897), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(897), - [sym_super] = ACTIONS(897), - [sym_crate] = ACTIONS(897), - [sym_metavariable] = ACTIONS(899), - [sym__raw_string_literal_start] = ACTIONS(899), - [sym_float_literal] = ACTIONS(899), + [aux_sym_enum_variant_list_repeat1] = STATE(1022), + [sym_identifier] = ACTIONS(784), + [anon_sym_LPAREN] = ACTIONS(787), + [anon_sym_LBRACK] = ACTIONS(790), + [anon_sym_RBRACK] = ACTIONS(793), + [anon_sym_LBRACE] = ACTIONS(795), + [anon_sym_COMMA] = ACTIONS(793), + [anon_sym_STAR] = ACTIONS(798), + [anon_sym_u8] = ACTIONS(801), + [anon_sym_i8] = ACTIONS(801), + [anon_sym_u16] = ACTIONS(801), + [anon_sym_i16] = ACTIONS(801), + [anon_sym_u32] = ACTIONS(801), + [anon_sym_i32] = ACTIONS(801), + [anon_sym_u64] = ACTIONS(801), + [anon_sym_i64] = ACTIONS(801), + [anon_sym_u128] = ACTIONS(801), + [anon_sym_i128] = ACTIONS(801), + [anon_sym_isize] = ACTIONS(801), + [anon_sym_usize] = ACTIONS(801), + [anon_sym_f32] = ACTIONS(801), + [anon_sym_f64] = ACTIONS(801), + [anon_sym_bool] = ACTIONS(801), + [anon_sym_str] = ACTIONS(801), + [anon_sym_char] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(798), + [anon_sym_BANG] = ACTIONS(798), + [anon_sym_AMP] = ACTIONS(804), + [anon_sym_PIPE] = ACTIONS(807), + [anon_sym_LT] = ACTIONS(810), + [anon_sym_DOT_DOT] = ACTIONS(813), + [anon_sym_COLON_COLON] = ACTIONS(816), + [anon_sym_POUND] = ACTIONS(819), + [anon_sym_SQUOTE] = ACTIONS(822), + [anon_sym_async] = ACTIONS(825), + [anon_sym_break] = ACTIONS(828), + [anon_sym_const] = ACTIONS(831), + [anon_sym_continue] = ACTIONS(834), + [anon_sym_default] = ACTIONS(837), + [anon_sym_for] = ACTIONS(840), + [anon_sym_if] = ACTIONS(843), + [anon_sym_loop] = ACTIONS(846), + [anon_sym_match] = ACTIONS(849), + [anon_sym_return] = ACTIONS(852), + [anon_sym_static] = ACTIONS(855), + [anon_sym_union] = ACTIONS(837), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_while] = ACTIONS(861), + [anon_sym_yield] = ACTIONS(864), + [anon_sym_move] = ACTIONS(867), + [anon_sym_try] = ACTIONS(870), + [sym_integer_literal] = ACTIONS(873), + [aux_sym_string_literal_token1] = ACTIONS(876), + [sym_char_literal] = ACTIONS(873), + [anon_sym_true] = ACTIONS(879), + [anon_sym_false] = ACTIONS(879), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(882), + [sym_super] = ACTIONS(885), + [sym_crate] = ACTIONS(885), + [sym_metavariable] = ACTIONS(888), + [sym__raw_string_literal_start] = ACTIONS(891), + [sym_float_literal] = ACTIONS(873), }, [148] = { + [sym_attribute_item] = STATE(1023), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1587), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1419), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(148), [sym_block_comment] = STATE(148), - [sym_identifier] = ACTIONS(901), - [anon_sym_SEMI] = ACTIONS(903), - [anon_sym_LPAREN] = ACTIONS(903), - [anon_sym_RPAREN] = ACTIONS(903), - [anon_sym_LBRACK] = ACTIONS(903), - [anon_sym_RBRACK] = ACTIONS(903), - [anon_sym_LBRACE] = ACTIONS(903), - [anon_sym_RBRACE] = ACTIONS(903), - [anon_sym_EQ_GT] = ACTIONS(903), - [anon_sym_COLON] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(901), - [anon_sym_PLUS] = ACTIONS(901), - [anon_sym_STAR] = ACTIONS(901), - [anon_sym_QMARK] = ACTIONS(903), - [anon_sym_u8] = ACTIONS(901), - [anon_sym_i8] = ACTIONS(901), - [anon_sym_u16] = ACTIONS(901), - [anon_sym_i16] = ACTIONS(901), - [anon_sym_u32] = ACTIONS(901), - [anon_sym_i32] = ACTIONS(901), - [anon_sym_u64] = ACTIONS(901), - [anon_sym_i64] = ACTIONS(901), - [anon_sym_u128] = ACTIONS(901), - [anon_sym_i128] = ACTIONS(901), - [anon_sym_isize] = ACTIONS(901), - [anon_sym_usize] = ACTIONS(901), - [anon_sym_f32] = ACTIONS(901), - [anon_sym_f64] = ACTIONS(901), - [anon_sym_bool] = ACTIONS(901), - [anon_sym_str] = ACTIONS(901), - [anon_sym_char] = ACTIONS(901), - [anon_sym_DASH] = ACTIONS(901), - [anon_sym_SLASH] = ACTIONS(901), - [anon_sym_PERCENT] = ACTIONS(901), - [anon_sym_CARET] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(901), - [anon_sym_AMP] = ACTIONS(901), - [anon_sym_PIPE] = ACTIONS(901), - [anon_sym_AMP_AMP] = ACTIONS(903), - [anon_sym_PIPE_PIPE] = ACTIONS(903), - [anon_sym_LT_LT] = ACTIONS(901), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_PLUS_EQ] = ACTIONS(903), - [anon_sym_DASH_EQ] = ACTIONS(903), - [anon_sym_STAR_EQ] = ACTIONS(903), - [anon_sym_SLASH_EQ] = ACTIONS(903), - [anon_sym_PERCENT_EQ] = ACTIONS(903), - [anon_sym_CARET_EQ] = ACTIONS(903), - [anon_sym_AMP_EQ] = ACTIONS(903), - [anon_sym_PIPE_EQ] = ACTIONS(903), - [anon_sym_LT_LT_EQ] = ACTIONS(903), - [anon_sym_GT_GT_EQ] = ACTIONS(903), - [anon_sym_EQ] = ACTIONS(901), - [anon_sym_EQ_EQ] = ACTIONS(903), - [anon_sym_BANG_EQ] = ACTIONS(903), - [anon_sym_GT] = ACTIONS(901), - [anon_sym_LT] = ACTIONS(901), - [anon_sym_GT_EQ] = ACTIONS(903), - [anon_sym_LT_EQ] = ACTIONS(903), - [anon_sym_AT] = ACTIONS(903), - [anon_sym__] = ACTIONS(901), - [anon_sym_DOT] = ACTIONS(901), - [anon_sym_DOT_DOT] = ACTIONS(901), - [anon_sym_DOT_DOT_DOT] = ACTIONS(903), - [anon_sym_DOT_DOT_EQ] = ACTIONS(903), - [anon_sym_COMMA] = ACTIONS(903), - [anon_sym_COLON_COLON] = ACTIONS(903), - [anon_sym_DASH_GT] = ACTIONS(903), - [anon_sym_POUND] = ACTIONS(903), - [anon_sym_SQUOTE] = ACTIONS(901), - [anon_sym_as] = ACTIONS(901), - [anon_sym_async] = ACTIONS(901), - [anon_sym_await] = ACTIONS(901), - [anon_sym_break] = ACTIONS(901), - [anon_sym_const] = ACTIONS(901), - [anon_sym_continue] = ACTIONS(901), - [anon_sym_default] = ACTIONS(901), - [anon_sym_enum] = ACTIONS(901), - [anon_sym_fn] = ACTIONS(901), - [anon_sym_for] = ACTIONS(901), - [anon_sym_if] = ACTIONS(901), - [anon_sym_impl] = ACTIONS(901), - [anon_sym_let] = ACTIONS(901), - [anon_sym_loop] = ACTIONS(901), - [anon_sym_match] = ACTIONS(901), - [anon_sym_mod] = ACTIONS(901), - [anon_sym_pub] = ACTIONS(901), - [anon_sym_return] = ACTIONS(901), - [anon_sym_static] = ACTIONS(901), - [anon_sym_struct] = ACTIONS(901), - [anon_sym_trait] = ACTIONS(901), - [anon_sym_type] = ACTIONS(901), - [anon_sym_union] = ACTIONS(901), - [anon_sym_unsafe] = ACTIONS(901), - [anon_sym_use] = ACTIONS(901), - [anon_sym_where] = ACTIONS(901), - [anon_sym_while] = ACTIONS(901), - [sym_mutable_specifier] = ACTIONS(901), - [sym_integer_literal] = ACTIONS(903), - [aux_sym_string_literal_token1] = ACTIONS(903), - [sym_char_literal] = ACTIONS(903), - [anon_sym_true] = ACTIONS(901), - [anon_sym_false] = ACTIONS(901), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(901), - [sym_super] = ACTIONS(901), - [sym_crate] = ACTIONS(901), - [sym_metavariable] = ACTIONS(903), - [sym__raw_string_literal_start] = ACTIONS(903), - [sym_float_literal] = ACTIONS(903), + [aux_sym_enum_variant_list_repeat1] = STATE(164), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(894), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_COMMA] = ACTIONS(896), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_POUND] = ACTIONS(774), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(365), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [149] = { + [sym_attribute_item] = STATE(1023), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1617), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1419), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(149), [sym_block_comment] = STATE(149), - [sym_identifier] = ACTIONS(905), - [anon_sym_SEMI] = ACTIONS(907), - [anon_sym_LPAREN] = ACTIONS(907), - [anon_sym_RPAREN] = ACTIONS(907), - [anon_sym_LBRACK] = ACTIONS(907), - [anon_sym_RBRACK] = ACTIONS(907), - [anon_sym_LBRACE] = ACTIONS(907), - [anon_sym_RBRACE] = ACTIONS(907), - [anon_sym_EQ_GT] = ACTIONS(907), - [anon_sym_COLON] = ACTIONS(905), - [anon_sym_DOLLAR] = ACTIONS(905), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_STAR] = ACTIONS(905), - [anon_sym_QMARK] = ACTIONS(907), - [anon_sym_u8] = ACTIONS(905), - [anon_sym_i8] = ACTIONS(905), - [anon_sym_u16] = ACTIONS(905), - [anon_sym_i16] = ACTIONS(905), - [anon_sym_u32] = ACTIONS(905), - [anon_sym_i32] = ACTIONS(905), - [anon_sym_u64] = ACTIONS(905), - [anon_sym_i64] = ACTIONS(905), - [anon_sym_u128] = ACTIONS(905), - [anon_sym_i128] = ACTIONS(905), - [anon_sym_isize] = ACTIONS(905), - [anon_sym_usize] = ACTIONS(905), - [anon_sym_f32] = ACTIONS(905), - [anon_sym_f64] = ACTIONS(905), - [anon_sym_bool] = ACTIONS(905), - [anon_sym_str] = ACTIONS(905), - [anon_sym_char] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), - [anon_sym_SLASH] = ACTIONS(905), - [anon_sym_PERCENT] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(905), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_AMP] = ACTIONS(905), - [anon_sym_PIPE] = ACTIONS(905), - [anon_sym_AMP_AMP] = ACTIONS(907), - [anon_sym_PIPE_PIPE] = ACTIONS(907), - [anon_sym_LT_LT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(905), - [anon_sym_PLUS_EQ] = ACTIONS(907), - [anon_sym_DASH_EQ] = ACTIONS(907), - [anon_sym_STAR_EQ] = ACTIONS(907), - [anon_sym_SLASH_EQ] = ACTIONS(907), - [anon_sym_PERCENT_EQ] = ACTIONS(907), - [anon_sym_CARET_EQ] = ACTIONS(907), - [anon_sym_AMP_EQ] = ACTIONS(907), - [anon_sym_PIPE_EQ] = ACTIONS(907), - [anon_sym_LT_LT_EQ] = ACTIONS(907), - [anon_sym_GT_GT_EQ] = ACTIONS(907), - [anon_sym_EQ] = ACTIONS(905), - [anon_sym_EQ_EQ] = ACTIONS(907), - [anon_sym_BANG_EQ] = ACTIONS(907), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT_EQ] = ACTIONS(907), - [anon_sym_LT_EQ] = ACTIONS(907), - [anon_sym_AT] = ACTIONS(907), - [anon_sym__] = ACTIONS(905), - [anon_sym_DOT] = ACTIONS(905), - [anon_sym_DOT_DOT] = ACTIONS(905), - [anon_sym_DOT_DOT_DOT] = ACTIONS(907), - [anon_sym_DOT_DOT_EQ] = ACTIONS(907), - [anon_sym_COMMA] = ACTIONS(907), - [anon_sym_COLON_COLON] = ACTIONS(907), - [anon_sym_DASH_GT] = ACTIONS(907), - [anon_sym_POUND] = ACTIONS(907), - [anon_sym_SQUOTE] = ACTIONS(905), - [anon_sym_as] = ACTIONS(905), - [anon_sym_async] = ACTIONS(905), - [anon_sym_await] = ACTIONS(905), - [anon_sym_break] = ACTIONS(905), - [anon_sym_const] = ACTIONS(905), - [anon_sym_continue] = ACTIONS(905), - [anon_sym_default] = ACTIONS(905), - [anon_sym_enum] = ACTIONS(905), - [anon_sym_fn] = ACTIONS(905), - [anon_sym_for] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_impl] = ACTIONS(905), - [anon_sym_let] = ACTIONS(905), - [anon_sym_loop] = ACTIONS(905), - [anon_sym_match] = ACTIONS(905), - [anon_sym_mod] = ACTIONS(905), - [anon_sym_pub] = ACTIONS(905), - [anon_sym_return] = ACTIONS(905), - [anon_sym_static] = ACTIONS(905), - [anon_sym_struct] = ACTIONS(905), - [anon_sym_trait] = ACTIONS(905), - [anon_sym_type] = ACTIONS(905), - [anon_sym_union] = ACTIONS(905), - [anon_sym_unsafe] = ACTIONS(905), - [anon_sym_use] = ACTIONS(905), - [anon_sym_where] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [sym_mutable_specifier] = ACTIONS(905), - [sym_integer_literal] = ACTIONS(907), - [aux_sym_string_literal_token1] = ACTIONS(907), - [sym_char_literal] = ACTIONS(907), - [anon_sym_true] = ACTIONS(905), - [anon_sym_false] = ACTIONS(905), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(905), - [sym_super] = ACTIONS(905), - [sym_crate] = ACTIONS(905), - [sym_metavariable] = ACTIONS(907), - [sym__raw_string_literal_start] = ACTIONS(907), - [sym_float_literal] = ACTIONS(907), + [aux_sym_enum_variant_list_repeat1] = STATE(1022), + [sym_identifier] = ACTIONS(784), + [anon_sym_LPAREN] = ACTIONS(787), + [anon_sym_LBRACK] = ACTIONS(790), + [anon_sym_RBRACK] = ACTIONS(793), + [anon_sym_LBRACE] = ACTIONS(795), + [anon_sym_COMMA] = ACTIONS(793), + [anon_sym_STAR] = ACTIONS(798), + [anon_sym_u8] = ACTIONS(801), + [anon_sym_i8] = ACTIONS(801), + [anon_sym_u16] = ACTIONS(801), + [anon_sym_i16] = ACTIONS(801), + [anon_sym_u32] = ACTIONS(801), + [anon_sym_i32] = ACTIONS(801), + [anon_sym_u64] = ACTIONS(801), + [anon_sym_i64] = ACTIONS(801), + [anon_sym_u128] = ACTIONS(801), + [anon_sym_i128] = ACTIONS(801), + [anon_sym_isize] = ACTIONS(801), + [anon_sym_usize] = ACTIONS(801), + [anon_sym_f32] = ACTIONS(801), + [anon_sym_f64] = ACTIONS(801), + [anon_sym_bool] = ACTIONS(801), + [anon_sym_str] = ACTIONS(801), + [anon_sym_char] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(798), + [anon_sym_BANG] = ACTIONS(798), + [anon_sym_AMP] = ACTIONS(804), + [anon_sym_PIPE] = ACTIONS(807), + [anon_sym_LT] = ACTIONS(810), + [anon_sym_DOT_DOT] = ACTIONS(813), + [anon_sym_COLON_COLON] = ACTIONS(816), + [anon_sym_POUND] = ACTIONS(819), + [anon_sym_SQUOTE] = ACTIONS(822), + [anon_sym_async] = ACTIONS(825), + [anon_sym_break] = ACTIONS(828), + [anon_sym_const] = ACTIONS(831), + [anon_sym_continue] = ACTIONS(834), + [anon_sym_default] = ACTIONS(837), + [anon_sym_for] = ACTIONS(840), + [anon_sym_if] = ACTIONS(843), + [anon_sym_loop] = ACTIONS(846), + [anon_sym_match] = ACTIONS(849), + [anon_sym_return] = ACTIONS(852), + [anon_sym_static] = ACTIONS(855), + [anon_sym_union] = ACTIONS(837), + [anon_sym_unsafe] = ACTIONS(858), + [anon_sym_while] = ACTIONS(861), + [anon_sym_yield] = ACTIONS(864), + [anon_sym_move] = ACTIONS(867), + [anon_sym_try] = ACTIONS(870), + [sym_integer_literal] = ACTIONS(873), + [aux_sym_string_literal_token1] = ACTIONS(876), + [sym_char_literal] = ACTIONS(873), + [anon_sym_true] = ACTIONS(879), + [anon_sym_false] = ACTIONS(879), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(882), + [sym_super] = ACTIONS(885), + [sym_crate] = ACTIONS(885), + [sym_metavariable] = ACTIONS(888), + [sym__raw_string_literal_start] = ACTIONS(891), + [sym_float_literal] = ACTIONS(873), }, [150] = { [sym_line_comment] = STATE(150), [sym_block_comment] = STATE(150), - [aux_sym__non_special_token_repeat1] = STATE(150), - [sym_identifier] = ACTIONS(731), - [anon_sym_SEMI] = ACTIONS(909), - [anon_sym_LPAREN] = ACTIONS(736), - [anon_sym_RPAREN] = ACTIONS(736), - [anon_sym_LBRACK] = ACTIONS(736), - [anon_sym_RBRACK] = ACTIONS(736), - [anon_sym_LBRACE] = ACTIONS(736), - [anon_sym_RBRACE] = ACTIONS(736), - [anon_sym_EQ_GT] = ACTIONS(909), - [anon_sym_COLON] = ACTIONS(912), - [anon_sym_DOLLAR] = ACTIONS(736), - [anon_sym_PLUS] = ACTIONS(912), - [anon_sym_STAR] = ACTIONS(912), - [anon_sym_QMARK] = ACTIONS(909), - [anon_sym_u8] = ACTIONS(731), - [anon_sym_i8] = ACTIONS(731), - [anon_sym_u16] = ACTIONS(731), - [anon_sym_i16] = ACTIONS(731), - [anon_sym_u32] = ACTIONS(731), - [anon_sym_i32] = ACTIONS(731), - [anon_sym_u64] = ACTIONS(731), - [anon_sym_i64] = ACTIONS(731), - [anon_sym_u128] = ACTIONS(731), - [anon_sym_i128] = ACTIONS(731), - [anon_sym_isize] = ACTIONS(731), - [anon_sym_usize] = ACTIONS(731), - [anon_sym_f32] = ACTIONS(731), - [anon_sym_f64] = ACTIONS(731), - [anon_sym_bool] = ACTIONS(731), - [anon_sym_str] = ACTIONS(731), - [anon_sym_char] = ACTIONS(731), - [anon_sym_DASH] = ACTIONS(912), - [anon_sym_SLASH] = ACTIONS(912), - [anon_sym_PERCENT] = ACTIONS(912), - [anon_sym_CARET] = ACTIONS(912), - [anon_sym_BANG] = ACTIONS(912), - [anon_sym_AMP] = ACTIONS(912), - [anon_sym_PIPE] = ACTIONS(912), - [anon_sym_AMP_AMP] = ACTIONS(909), - [anon_sym_PIPE_PIPE] = ACTIONS(909), - [anon_sym_LT_LT] = ACTIONS(912), - [anon_sym_GT_GT] = ACTIONS(912), - [anon_sym_PLUS_EQ] = ACTIONS(909), - [anon_sym_DASH_EQ] = ACTIONS(909), - [anon_sym_STAR_EQ] = ACTIONS(909), - [anon_sym_SLASH_EQ] = ACTIONS(909), - [anon_sym_PERCENT_EQ] = ACTIONS(909), - [anon_sym_CARET_EQ] = ACTIONS(909), - [anon_sym_AMP_EQ] = ACTIONS(909), - [anon_sym_PIPE_EQ] = ACTIONS(909), - [anon_sym_LT_LT_EQ] = ACTIONS(909), - [anon_sym_GT_GT_EQ] = ACTIONS(909), - [anon_sym_EQ] = ACTIONS(912), - [anon_sym_EQ_EQ] = ACTIONS(909), - [anon_sym_BANG_EQ] = ACTIONS(909), - [anon_sym_GT] = ACTIONS(912), - [anon_sym_LT] = ACTIONS(912), - [anon_sym_GT_EQ] = ACTIONS(909), - [anon_sym_LT_EQ] = ACTIONS(909), - [anon_sym_AT] = ACTIONS(909), - [anon_sym__] = ACTIONS(912), - [anon_sym_DOT] = ACTIONS(912), - [anon_sym_DOT_DOT] = ACTIONS(912), - [anon_sym_DOT_DOT_DOT] = ACTIONS(909), - [anon_sym_DOT_DOT_EQ] = ACTIONS(909), - [anon_sym_COMMA] = ACTIONS(909), - [anon_sym_COLON_COLON] = ACTIONS(909), - [anon_sym_DASH_GT] = ACTIONS(909), - [anon_sym_POUND] = ACTIONS(909), - [anon_sym_SQUOTE] = ACTIONS(731), - [anon_sym_as] = ACTIONS(731), - [anon_sym_async] = ACTIONS(731), - [anon_sym_await] = ACTIONS(731), - [anon_sym_break] = ACTIONS(731), - [anon_sym_const] = ACTIONS(731), - [anon_sym_continue] = ACTIONS(731), - [anon_sym_default] = ACTIONS(731), - [anon_sym_enum] = ACTIONS(731), - [anon_sym_fn] = ACTIONS(731), - [anon_sym_for] = ACTIONS(731), - [anon_sym_if] = ACTIONS(731), - [anon_sym_impl] = ACTIONS(731), - [anon_sym_let] = ACTIONS(731), - [anon_sym_loop] = ACTIONS(731), - [anon_sym_match] = ACTIONS(731), - [anon_sym_mod] = ACTIONS(731), - [anon_sym_pub] = ACTIONS(731), - [anon_sym_return] = ACTIONS(731), - [anon_sym_static] = ACTIONS(731), - [anon_sym_struct] = ACTIONS(731), - [anon_sym_trait] = ACTIONS(731), - [anon_sym_type] = ACTIONS(731), - [anon_sym_union] = ACTIONS(731), - [anon_sym_unsafe] = ACTIONS(731), - [anon_sym_use] = ACTIONS(731), - [anon_sym_where] = ACTIONS(731), - [anon_sym_while] = ACTIONS(731), - [sym_mutable_specifier] = ACTIONS(731), - [sym_integer_literal] = ACTIONS(736), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(736), - [anon_sym_true] = ACTIONS(731), - [anon_sym_false] = ACTIONS(731), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(731), - [sym_super] = ACTIONS(731), - [sym_crate] = ACTIONS(731), - [sym__raw_string_literal_start] = ACTIONS(736), - [sym_float_literal] = ACTIONS(736), + [sym_identifier] = ACTIONS(898), + [anon_sym_SEMI] = ACTIONS(900), + [anon_sym_LPAREN] = ACTIONS(900), + [anon_sym_RPAREN] = ACTIONS(900), + [anon_sym_LBRACK] = ACTIONS(900), + [anon_sym_RBRACK] = ACTIONS(900), + [anon_sym_LBRACE] = ACTIONS(900), + [anon_sym_RBRACE] = ACTIONS(900), + [anon_sym_COMMA] = ACTIONS(900), + [anon_sym_EQ_GT] = ACTIONS(900), + [anon_sym_COLON] = ACTIONS(898), + [anon_sym_DOLLAR] = ACTIONS(898), + [anon_sym_PLUS] = ACTIONS(898), + [anon_sym_STAR] = ACTIONS(898), + [anon_sym_QMARK] = ACTIONS(900), + [anon_sym_u8] = ACTIONS(898), + [anon_sym_i8] = ACTIONS(898), + [anon_sym_u16] = ACTIONS(898), + [anon_sym_i16] = ACTIONS(898), + [anon_sym_u32] = ACTIONS(898), + [anon_sym_i32] = ACTIONS(898), + [anon_sym_u64] = ACTIONS(898), + [anon_sym_i64] = ACTIONS(898), + [anon_sym_u128] = ACTIONS(898), + [anon_sym_i128] = ACTIONS(898), + [anon_sym_isize] = ACTIONS(898), + [anon_sym_usize] = ACTIONS(898), + [anon_sym_f32] = ACTIONS(898), + [anon_sym_f64] = ACTIONS(898), + [anon_sym_bool] = ACTIONS(898), + [anon_sym_str] = ACTIONS(898), + [anon_sym_char] = ACTIONS(898), + [anon_sym_DASH] = ACTIONS(898), + [anon_sym_SLASH] = ACTIONS(898), + [anon_sym_PERCENT] = ACTIONS(898), + [anon_sym_CARET] = ACTIONS(898), + [anon_sym_BANG] = ACTIONS(898), + [anon_sym_AMP] = ACTIONS(898), + [anon_sym_PIPE] = ACTIONS(898), + [anon_sym_AMP_AMP] = ACTIONS(900), + [anon_sym_PIPE_PIPE] = ACTIONS(900), + [anon_sym_LT_LT] = ACTIONS(898), + [anon_sym_GT_GT] = ACTIONS(898), + [anon_sym_PLUS_EQ] = ACTIONS(900), + [anon_sym_DASH_EQ] = ACTIONS(900), + [anon_sym_STAR_EQ] = ACTIONS(900), + [anon_sym_SLASH_EQ] = ACTIONS(900), + [anon_sym_PERCENT_EQ] = ACTIONS(900), + [anon_sym_CARET_EQ] = ACTIONS(900), + [anon_sym_AMP_EQ] = ACTIONS(900), + [anon_sym_PIPE_EQ] = ACTIONS(900), + [anon_sym_LT_LT_EQ] = ACTIONS(900), + [anon_sym_GT_GT_EQ] = ACTIONS(900), + [anon_sym_EQ] = ACTIONS(898), + [anon_sym_EQ_EQ] = ACTIONS(900), + [anon_sym_BANG_EQ] = ACTIONS(900), + [anon_sym_GT] = ACTIONS(898), + [anon_sym_LT] = ACTIONS(898), + [anon_sym_GT_EQ] = ACTIONS(900), + [anon_sym_LT_EQ] = ACTIONS(900), + [anon_sym_AT] = ACTIONS(900), + [anon_sym__] = ACTIONS(898), + [anon_sym_DOT] = ACTIONS(898), + [anon_sym_DOT_DOT] = ACTIONS(898), + [anon_sym_DOT_DOT_DOT] = ACTIONS(900), + [anon_sym_DOT_DOT_EQ] = ACTIONS(900), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_DASH_GT] = ACTIONS(900), + [anon_sym_POUND] = ACTIONS(900), + [anon_sym_SQUOTE] = ACTIONS(898), + [anon_sym_as] = ACTIONS(898), + [anon_sym_async] = ACTIONS(898), + [anon_sym_await] = ACTIONS(898), + [anon_sym_break] = ACTIONS(898), + [anon_sym_const] = ACTIONS(898), + [anon_sym_continue] = ACTIONS(898), + [anon_sym_default] = ACTIONS(898), + [anon_sym_enum] = ACTIONS(898), + [anon_sym_fn] = ACTIONS(898), + [anon_sym_for] = ACTIONS(898), + [anon_sym_if] = ACTIONS(898), + [anon_sym_impl] = ACTIONS(898), + [anon_sym_let] = ACTIONS(898), + [anon_sym_loop] = ACTIONS(898), + [anon_sym_match] = ACTIONS(898), + [anon_sym_mod] = ACTIONS(898), + [anon_sym_pub] = ACTIONS(898), + [anon_sym_return] = ACTIONS(898), + [anon_sym_static] = ACTIONS(898), + [anon_sym_struct] = ACTIONS(898), + [anon_sym_trait] = ACTIONS(898), + [anon_sym_type] = ACTIONS(898), + [anon_sym_union] = ACTIONS(898), + [anon_sym_unsafe] = ACTIONS(898), + [anon_sym_use] = ACTIONS(898), + [anon_sym_where] = ACTIONS(898), + [anon_sym_while] = ACTIONS(898), + [sym_mutable_specifier] = ACTIONS(898), + [sym_integer_literal] = ACTIONS(900), + [aux_sym_string_literal_token1] = ACTIONS(900), + [sym_char_literal] = ACTIONS(900), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(898), + [sym_super] = ACTIONS(898), + [sym_crate] = ACTIONS(898), + [sym_metavariable] = ACTIONS(900), + [sym__raw_string_literal_start] = ACTIONS(900), + [sym_float_literal] = ACTIONS(900), }, [151] = { - [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1569), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(151), [sym_block_comment] = STATE(151), - [aux_sym_enum_variant_list_repeat1] = STATE(146), - [sym_identifier] = ACTIONS(334), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(915), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COMMA] = ACTIONS(917), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(765), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [sym_identifier] = ACTIONS(902), + [anon_sym_SEMI] = ACTIONS(904), + [anon_sym_LPAREN] = ACTIONS(904), + [anon_sym_RPAREN] = ACTIONS(904), + [anon_sym_LBRACK] = ACTIONS(904), + [anon_sym_RBRACK] = ACTIONS(904), + [anon_sym_LBRACE] = ACTIONS(904), + [anon_sym_RBRACE] = ACTIONS(904), + [anon_sym_COMMA] = ACTIONS(904), + [anon_sym_EQ_GT] = ACTIONS(904), + [anon_sym_COLON] = ACTIONS(902), + [anon_sym_DOLLAR] = ACTIONS(902), + [anon_sym_PLUS] = ACTIONS(902), + [anon_sym_STAR] = ACTIONS(902), + [anon_sym_QMARK] = ACTIONS(904), + [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_DASH] = ACTIONS(902), + [anon_sym_SLASH] = ACTIONS(902), + [anon_sym_PERCENT] = ACTIONS(902), + [anon_sym_CARET] = ACTIONS(902), + [anon_sym_BANG] = ACTIONS(902), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_PIPE] = ACTIONS(902), + [anon_sym_AMP_AMP] = ACTIONS(904), + [anon_sym_PIPE_PIPE] = ACTIONS(904), + [anon_sym_LT_LT] = ACTIONS(902), + [anon_sym_GT_GT] = ACTIONS(902), + [anon_sym_PLUS_EQ] = ACTIONS(904), + [anon_sym_DASH_EQ] = ACTIONS(904), + [anon_sym_STAR_EQ] = ACTIONS(904), + [anon_sym_SLASH_EQ] = ACTIONS(904), + [anon_sym_PERCENT_EQ] = ACTIONS(904), + [anon_sym_CARET_EQ] = ACTIONS(904), + [anon_sym_AMP_EQ] = ACTIONS(904), + [anon_sym_PIPE_EQ] = ACTIONS(904), + [anon_sym_LT_LT_EQ] = ACTIONS(904), + [anon_sym_GT_GT_EQ] = ACTIONS(904), + [anon_sym_EQ] = ACTIONS(902), + [anon_sym_EQ_EQ] = ACTIONS(904), + [anon_sym_BANG_EQ] = ACTIONS(904), + [anon_sym_GT] = ACTIONS(902), + [anon_sym_LT] = ACTIONS(902), + [anon_sym_GT_EQ] = ACTIONS(904), + [anon_sym_LT_EQ] = ACTIONS(904), + [anon_sym_AT] = ACTIONS(904), + [anon_sym__] = ACTIONS(902), + [anon_sym_DOT] = ACTIONS(902), + [anon_sym_DOT_DOT] = ACTIONS(902), + [anon_sym_DOT_DOT_DOT] = ACTIONS(904), + [anon_sym_DOT_DOT_EQ] = ACTIONS(904), + [anon_sym_COLON_COLON] = ACTIONS(904), + [anon_sym_DASH_GT] = ACTIONS(904), + [anon_sym_POUND] = ACTIONS(904), + [anon_sym_SQUOTE] = ACTIONS(902), + [anon_sym_as] = ACTIONS(902), + [anon_sym_async] = ACTIONS(902), + [anon_sym_await] = ACTIONS(902), + [anon_sym_break] = ACTIONS(902), + [anon_sym_const] = ACTIONS(902), + [anon_sym_continue] = ACTIONS(902), + [anon_sym_default] = ACTIONS(902), + [anon_sym_enum] = ACTIONS(902), + [anon_sym_fn] = ACTIONS(902), + [anon_sym_for] = ACTIONS(902), + [anon_sym_if] = ACTIONS(902), + [anon_sym_impl] = ACTIONS(902), + [anon_sym_let] = ACTIONS(902), + [anon_sym_loop] = ACTIONS(902), + [anon_sym_match] = ACTIONS(902), + [anon_sym_mod] = ACTIONS(902), + [anon_sym_pub] = ACTIONS(902), + [anon_sym_return] = ACTIONS(902), + [anon_sym_static] = ACTIONS(902), + [anon_sym_struct] = ACTIONS(902), + [anon_sym_trait] = ACTIONS(902), + [anon_sym_type] = ACTIONS(902), + [anon_sym_union] = ACTIONS(902), + [anon_sym_unsafe] = ACTIONS(902), + [anon_sym_use] = ACTIONS(902), + [anon_sym_where] = ACTIONS(902), + [anon_sym_while] = ACTIONS(902), + [sym_mutable_specifier] = ACTIONS(902), + [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), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(902), + [sym_super] = ACTIONS(902), + [sym_crate] = ACTIONS(902), + [sym_metavariable] = ACTIONS(904), + [sym__raw_string_literal_start] = ACTIONS(904), + [sym_float_literal] = ACTIONS(904), }, [152] = { [sym_line_comment] = STATE(152), [sym_block_comment] = STATE(152), - [sym_identifier] = ACTIONS(919), - [anon_sym_SEMI] = ACTIONS(921), - [anon_sym_LPAREN] = ACTIONS(921), - [anon_sym_RPAREN] = ACTIONS(921), - [anon_sym_LBRACK] = ACTIONS(921), - [anon_sym_RBRACK] = ACTIONS(921), - [anon_sym_LBRACE] = ACTIONS(921), - [anon_sym_RBRACE] = ACTIONS(921), - [anon_sym_EQ_GT] = ACTIONS(921), - [anon_sym_COLON] = ACTIONS(919), - [anon_sym_DOLLAR] = ACTIONS(919), - [anon_sym_PLUS] = ACTIONS(919), - [anon_sym_STAR] = ACTIONS(919), - [anon_sym_QMARK] = ACTIONS(921), - [anon_sym_u8] = ACTIONS(919), - [anon_sym_i8] = ACTIONS(919), - [anon_sym_u16] = ACTIONS(919), - [anon_sym_i16] = ACTIONS(919), - [anon_sym_u32] = ACTIONS(919), - [anon_sym_i32] = ACTIONS(919), - [anon_sym_u64] = ACTIONS(919), - [anon_sym_i64] = ACTIONS(919), - [anon_sym_u128] = ACTIONS(919), - [anon_sym_i128] = ACTIONS(919), - [anon_sym_isize] = ACTIONS(919), - [anon_sym_usize] = ACTIONS(919), - [anon_sym_f32] = ACTIONS(919), - [anon_sym_f64] = ACTIONS(919), - [anon_sym_bool] = ACTIONS(919), - [anon_sym_str] = ACTIONS(919), - [anon_sym_char] = ACTIONS(919), - [anon_sym_DASH] = ACTIONS(919), - [anon_sym_SLASH] = ACTIONS(919), - [anon_sym_PERCENT] = ACTIONS(919), - [anon_sym_CARET] = ACTIONS(919), - [anon_sym_BANG] = ACTIONS(919), - [anon_sym_AMP] = ACTIONS(919), - [anon_sym_PIPE] = ACTIONS(919), - [anon_sym_AMP_AMP] = ACTIONS(921), - [anon_sym_PIPE_PIPE] = ACTIONS(921), - [anon_sym_LT_LT] = ACTIONS(919), - [anon_sym_GT_GT] = ACTIONS(919), - [anon_sym_PLUS_EQ] = ACTIONS(921), - [anon_sym_DASH_EQ] = ACTIONS(921), - [anon_sym_STAR_EQ] = ACTIONS(921), - [anon_sym_SLASH_EQ] = ACTIONS(921), - [anon_sym_PERCENT_EQ] = ACTIONS(921), - [anon_sym_CARET_EQ] = ACTIONS(921), - [anon_sym_AMP_EQ] = ACTIONS(921), - [anon_sym_PIPE_EQ] = ACTIONS(921), - [anon_sym_LT_LT_EQ] = ACTIONS(921), - [anon_sym_GT_GT_EQ] = ACTIONS(921), - [anon_sym_EQ] = ACTIONS(919), - [anon_sym_EQ_EQ] = ACTIONS(921), - [anon_sym_BANG_EQ] = ACTIONS(921), - [anon_sym_GT] = ACTIONS(919), - [anon_sym_LT] = ACTIONS(919), - [anon_sym_GT_EQ] = ACTIONS(921), - [anon_sym_LT_EQ] = ACTIONS(921), - [anon_sym_AT] = ACTIONS(921), - [anon_sym__] = ACTIONS(919), - [anon_sym_DOT] = ACTIONS(919), - [anon_sym_DOT_DOT] = ACTIONS(919), - [anon_sym_DOT_DOT_DOT] = ACTIONS(921), - [anon_sym_DOT_DOT_EQ] = ACTIONS(921), - [anon_sym_COMMA] = ACTIONS(921), - [anon_sym_COLON_COLON] = ACTIONS(921), - [anon_sym_DASH_GT] = ACTIONS(921), - [anon_sym_POUND] = ACTIONS(921), - [anon_sym_SQUOTE] = ACTIONS(919), - [anon_sym_as] = ACTIONS(919), - [anon_sym_async] = ACTIONS(919), - [anon_sym_await] = ACTIONS(919), - [anon_sym_break] = ACTIONS(919), - [anon_sym_const] = ACTIONS(919), - [anon_sym_continue] = ACTIONS(919), - [anon_sym_default] = ACTIONS(919), - [anon_sym_enum] = ACTIONS(919), - [anon_sym_fn] = ACTIONS(919), - [anon_sym_for] = ACTIONS(919), - [anon_sym_if] = ACTIONS(919), - [anon_sym_impl] = ACTIONS(919), - [anon_sym_let] = ACTIONS(919), - [anon_sym_loop] = ACTIONS(919), - [anon_sym_match] = ACTIONS(919), - [anon_sym_mod] = ACTIONS(919), - [anon_sym_pub] = ACTIONS(919), - [anon_sym_return] = ACTIONS(919), - [anon_sym_static] = ACTIONS(919), - [anon_sym_struct] = ACTIONS(919), - [anon_sym_trait] = ACTIONS(919), - [anon_sym_type] = ACTIONS(919), - [anon_sym_union] = ACTIONS(919), - [anon_sym_unsafe] = ACTIONS(919), - [anon_sym_use] = ACTIONS(919), - [anon_sym_where] = ACTIONS(919), - [anon_sym_while] = ACTIONS(919), - [sym_mutable_specifier] = ACTIONS(919), - [sym_integer_literal] = ACTIONS(921), - [aux_sym_string_literal_token1] = ACTIONS(921), - [sym_char_literal] = ACTIONS(921), - [anon_sym_true] = ACTIONS(919), - [anon_sym_false] = ACTIONS(919), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(919), - [sym_super] = ACTIONS(919), - [sym_crate] = ACTIONS(919), - [sym_metavariable] = ACTIONS(921), - [sym__raw_string_literal_start] = ACTIONS(921), - [sym_float_literal] = ACTIONS(921), + [aux_sym__non_special_token_repeat1] = STATE(163), + [sym_identifier] = ACTIONS(906), + [anon_sym_SEMI] = ACTIONS(688), + [anon_sym_LPAREN] = ACTIONS(908), + [anon_sym_RPAREN] = ACTIONS(908), + [anon_sym_LBRACK] = ACTIONS(908), + [anon_sym_RBRACK] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(908), + [anon_sym_RBRACE] = ACTIONS(908), + [anon_sym_COMMA] = ACTIONS(688), + [anon_sym_EQ_GT] = ACTIONS(688), + [anon_sym_COLON] = ACTIONS(698), + [anon_sym_DOLLAR] = ACTIONS(908), + [anon_sym_PLUS] = ACTIONS(698), + [anon_sym_STAR] = ACTIONS(698), + [anon_sym_QMARK] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(906), + [anon_sym_i8] = ACTIONS(906), + [anon_sym_u16] = ACTIONS(906), + [anon_sym_i16] = ACTIONS(906), + [anon_sym_u32] = ACTIONS(906), + [anon_sym_i32] = ACTIONS(906), + [anon_sym_u64] = ACTIONS(906), + [anon_sym_i64] = ACTIONS(906), + [anon_sym_u128] = ACTIONS(906), + [anon_sym_i128] = ACTIONS(906), + [anon_sym_isize] = ACTIONS(906), + [anon_sym_usize] = ACTIONS(906), + [anon_sym_f32] = ACTIONS(906), + [anon_sym_f64] = ACTIONS(906), + [anon_sym_bool] = ACTIONS(906), + [anon_sym_str] = ACTIONS(906), + [anon_sym_char] = ACTIONS(906), + [anon_sym_DASH] = ACTIONS(698), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_PERCENT] = ACTIONS(698), + [anon_sym_CARET] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(698), + [anon_sym_AMP] = ACTIONS(698), + [anon_sym_PIPE] = ACTIONS(698), + [anon_sym_AMP_AMP] = ACTIONS(688), + [anon_sym_PIPE_PIPE] = ACTIONS(688), + [anon_sym_LT_LT] = ACTIONS(698), + [anon_sym_GT_GT] = ACTIONS(698), + [anon_sym_PLUS_EQ] = ACTIONS(688), + [anon_sym_DASH_EQ] = ACTIONS(688), + [anon_sym_STAR_EQ] = ACTIONS(688), + [anon_sym_SLASH_EQ] = ACTIONS(688), + [anon_sym_PERCENT_EQ] = ACTIONS(688), + [anon_sym_CARET_EQ] = ACTIONS(688), + [anon_sym_AMP_EQ] = ACTIONS(688), + [anon_sym_PIPE_EQ] = ACTIONS(688), + [anon_sym_LT_LT_EQ] = ACTIONS(688), + [anon_sym_GT_GT_EQ] = ACTIONS(688), + [anon_sym_EQ] = ACTIONS(698), + [anon_sym_EQ_EQ] = ACTIONS(688), + [anon_sym_BANG_EQ] = ACTIONS(688), + [anon_sym_GT] = ACTIONS(698), + [anon_sym_LT] = ACTIONS(698), + [anon_sym_GT_EQ] = ACTIONS(688), + [anon_sym_LT_EQ] = ACTIONS(688), + [anon_sym_AT] = ACTIONS(688), + [anon_sym__] = ACTIONS(698), + [anon_sym_DOT] = ACTIONS(698), + [anon_sym_DOT_DOT] = ACTIONS(698), + [anon_sym_DOT_DOT_DOT] = ACTIONS(688), + [anon_sym_DOT_DOT_EQ] = ACTIONS(688), + [anon_sym_COLON_COLON] = ACTIONS(688), + [anon_sym_DASH_GT] = ACTIONS(688), + [anon_sym_POUND] = ACTIONS(688), + [anon_sym_SQUOTE] = ACTIONS(906), + [anon_sym_as] = ACTIONS(906), + [anon_sym_async] = ACTIONS(906), + [anon_sym_await] = ACTIONS(906), + [anon_sym_break] = ACTIONS(906), + [anon_sym_const] = ACTIONS(906), + [anon_sym_continue] = ACTIONS(906), + [anon_sym_default] = ACTIONS(906), + [anon_sym_enum] = ACTIONS(906), + [anon_sym_fn] = ACTIONS(906), + [anon_sym_for] = ACTIONS(906), + [anon_sym_if] = ACTIONS(906), + [anon_sym_impl] = ACTIONS(906), + [anon_sym_let] = ACTIONS(906), + [anon_sym_loop] = ACTIONS(906), + [anon_sym_match] = ACTIONS(906), + [anon_sym_mod] = ACTIONS(906), + [anon_sym_pub] = ACTIONS(906), + [anon_sym_return] = ACTIONS(906), + [anon_sym_static] = ACTIONS(906), + [anon_sym_struct] = ACTIONS(906), + [anon_sym_trait] = ACTIONS(906), + [anon_sym_type] = ACTIONS(906), + [anon_sym_union] = ACTIONS(906), + [anon_sym_unsafe] = ACTIONS(906), + [anon_sym_use] = ACTIONS(906), + [anon_sym_where] = ACTIONS(906), + [anon_sym_while] = ACTIONS(906), + [sym_mutable_specifier] = ACTIONS(906), + [sym_integer_literal] = ACTIONS(908), + [aux_sym_string_literal_token1] = ACTIONS(908), + [sym_char_literal] = ACTIONS(908), + [anon_sym_true] = ACTIONS(906), + [anon_sym_false] = ACTIONS(906), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym__raw_string_literal_start] = ACTIONS(908), + [sym_float_literal] = ACTIONS(908), }, [153] = { + [sym_attribute_item] = STATE(1023), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1594), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1419), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(153), [sym_block_comment] = STATE(153), - [sym_identifier] = ACTIONS(923), - [anon_sym_SEMI] = ACTIONS(925), - [anon_sym_LPAREN] = ACTIONS(925), - [anon_sym_RPAREN] = ACTIONS(925), - [anon_sym_LBRACK] = ACTIONS(925), - [anon_sym_RBRACK] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(925), - [anon_sym_RBRACE] = ACTIONS(925), - [anon_sym_EQ_GT] = ACTIONS(925), - [anon_sym_COLON] = ACTIONS(923), - [anon_sym_DOLLAR] = ACTIONS(923), - [anon_sym_PLUS] = ACTIONS(923), - [anon_sym_STAR] = ACTIONS(923), - [anon_sym_QMARK] = ACTIONS(925), - [anon_sym_u8] = ACTIONS(923), - [anon_sym_i8] = ACTIONS(923), - [anon_sym_u16] = ACTIONS(923), - [anon_sym_i16] = ACTIONS(923), - [anon_sym_u32] = ACTIONS(923), - [anon_sym_i32] = ACTIONS(923), - [anon_sym_u64] = ACTIONS(923), - [anon_sym_i64] = ACTIONS(923), - [anon_sym_u128] = ACTIONS(923), - [anon_sym_i128] = ACTIONS(923), - [anon_sym_isize] = ACTIONS(923), - [anon_sym_usize] = ACTIONS(923), - [anon_sym_f32] = ACTIONS(923), - [anon_sym_f64] = ACTIONS(923), - [anon_sym_bool] = ACTIONS(923), - [anon_sym_str] = ACTIONS(923), - [anon_sym_char] = ACTIONS(923), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_SLASH] = ACTIONS(923), - [anon_sym_PERCENT] = ACTIONS(923), - [anon_sym_CARET] = ACTIONS(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(923), - [anon_sym_PIPE] = ACTIONS(923), - [anon_sym_AMP_AMP] = ACTIONS(925), - [anon_sym_PIPE_PIPE] = ACTIONS(925), - [anon_sym_LT_LT] = ACTIONS(923), - [anon_sym_GT_GT] = ACTIONS(923), - [anon_sym_PLUS_EQ] = ACTIONS(925), - [anon_sym_DASH_EQ] = ACTIONS(925), - [anon_sym_STAR_EQ] = ACTIONS(925), - [anon_sym_SLASH_EQ] = ACTIONS(925), - [anon_sym_PERCENT_EQ] = ACTIONS(925), - [anon_sym_CARET_EQ] = ACTIONS(925), - [anon_sym_AMP_EQ] = ACTIONS(925), - [anon_sym_PIPE_EQ] = ACTIONS(925), - [anon_sym_LT_LT_EQ] = ACTIONS(925), - [anon_sym_GT_GT_EQ] = ACTIONS(925), - [anon_sym_EQ] = ACTIONS(923), - [anon_sym_EQ_EQ] = ACTIONS(925), - [anon_sym_BANG_EQ] = ACTIONS(925), - [anon_sym_GT] = ACTIONS(923), - [anon_sym_LT] = ACTIONS(923), - [anon_sym_GT_EQ] = ACTIONS(925), - [anon_sym_LT_EQ] = ACTIONS(925), - [anon_sym_AT] = ACTIONS(925), - [anon_sym__] = ACTIONS(923), - [anon_sym_DOT] = ACTIONS(923), - [anon_sym_DOT_DOT] = ACTIONS(923), - [anon_sym_DOT_DOT_DOT] = ACTIONS(925), - [anon_sym_DOT_DOT_EQ] = ACTIONS(925), - [anon_sym_COMMA] = ACTIONS(925), - [anon_sym_COLON_COLON] = ACTIONS(925), - [anon_sym_DASH_GT] = ACTIONS(925), - [anon_sym_POUND] = ACTIONS(925), - [anon_sym_SQUOTE] = ACTIONS(923), - [anon_sym_as] = ACTIONS(923), - [anon_sym_async] = ACTIONS(923), - [anon_sym_await] = ACTIONS(923), - [anon_sym_break] = ACTIONS(923), - [anon_sym_const] = ACTIONS(923), - [anon_sym_continue] = ACTIONS(923), - [anon_sym_default] = ACTIONS(923), - [anon_sym_enum] = ACTIONS(923), - [anon_sym_fn] = ACTIONS(923), - [anon_sym_for] = ACTIONS(923), - [anon_sym_if] = ACTIONS(923), - [anon_sym_impl] = ACTIONS(923), - [anon_sym_let] = ACTIONS(923), - [anon_sym_loop] = ACTIONS(923), - [anon_sym_match] = ACTIONS(923), - [anon_sym_mod] = ACTIONS(923), - [anon_sym_pub] = ACTIONS(923), - [anon_sym_return] = ACTIONS(923), - [anon_sym_static] = ACTIONS(923), - [anon_sym_struct] = ACTIONS(923), - [anon_sym_trait] = ACTIONS(923), - [anon_sym_type] = ACTIONS(923), - [anon_sym_union] = ACTIONS(923), - [anon_sym_unsafe] = ACTIONS(923), - [anon_sym_use] = ACTIONS(923), - [anon_sym_where] = ACTIONS(923), - [anon_sym_while] = ACTIONS(923), - [sym_mutable_specifier] = ACTIONS(923), - [sym_integer_literal] = ACTIONS(925), - [aux_sym_string_literal_token1] = ACTIONS(925), - [sym_char_literal] = ACTIONS(925), - [anon_sym_true] = ACTIONS(923), - [anon_sym_false] = ACTIONS(923), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(923), - [sym_super] = ACTIONS(923), - [sym_crate] = ACTIONS(923), - [sym_metavariable] = ACTIONS(925), - [sym__raw_string_literal_start] = ACTIONS(925), - [sym_float_literal] = ACTIONS(925), + [aux_sym_enum_variant_list_repeat1] = STATE(154), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(910), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_COMMA] = ACTIONS(912), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_POUND] = ACTIONS(774), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(365), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [154] = { + [sym_attribute_item] = STATE(1023), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1588), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1419), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(154), [sym_block_comment] = STATE(154), - [sym_identifier] = ACTIONS(927), - [anon_sym_SEMI] = ACTIONS(929), - [anon_sym_LPAREN] = ACTIONS(929), - [anon_sym_RPAREN] = ACTIONS(929), - [anon_sym_LBRACK] = ACTIONS(929), - [anon_sym_RBRACK] = ACTIONS(929), - [anon_sym_LBRACE] = ACTIONS(929), - [anon_sym_RBRACE] = ACTIONS(929), - [anon_sym_EQ_GT] = ACTIONS(929), - [anon_sym_COLON] = ACTIONS(927), - [anon_sym_DOLLAR] = ACTIONS(927), - [anon_sym_PLUS] = ACTIONS(927), - [anon_sym_STAR] = ACTIONS(927), - [anon_sym_QMARK] = ACTIONS(929), - [anon_sym_u8] = ACTIONS(927), - [anon_sym_i8] = ACTIONS(927), - [anon_sym_u16] = ACTIONS(927), - [anon_sym_i16] = ACTIONS(927), - [anon_sym_u32] = ACTIONS(927), - [anon_sym_i32] = ACTIONS(927), - [anon_sym_u64] = ACTIONS(927), - [anon_sym_i64] = ACTIONS(927), - [anon_sym_u128] = ACTIONS(927), - [anon_sym_i128] = ACTIONS(927), - [anon_sym_isize] = ACTIONS(927), - [anon_sym_usize] = ACTIONS(927), - [anon_sym_f32] = ACTIONS(927), - [anon_sym_f64] = ACTIONS(927), - [anon_sym_bool] = ACTIONS(927), - [anon_sym_str] = ACTIONS(927), - [anon_sym_char] = ACTIONS(927), - [anon_sym_DASH] = ACTIONS(927), - [anon_sym_SLASH] = ACTIONS(927), - [anon_sym_PERCENT] = ACTIONS(927), - [anon_sym_CARET] = ACTIONS(927), - [anon_sym_BANG] = ACTIONS(927), - [anon_sym_AMP] = ACTIONS(927), - [anon_sym_PIPE] = ACTIONS(927), - [anon_sym_AMP_AMP] = ACTIONS(929), - [anon_sym_PIPE_PIPE] = ACTIONS(929), - [anon_sym_LT_LT] = ACTIONS(927), - [anon_sym_GT_GT] = ACTIONS(927), - [anon_sym_PLUS_EQ] = ACTIONS(929), - [anon_sym_DASH_EQ] = ACTIONS(929), - [anon_sym_STAR_EQ] = ACTIONS(929), - [anon_sym_SLASH_EQ] = ACTIONS(929), - [anon_sym_PERCENT_EQ] = ACTIONS(929), - [anon_sym_CARET_EQ] = ACTIONS(929), - [anon_sym_AMP_EQ] = ACTIONS(929), - [anon_sym_PIPE_EQ] = ACTIONS(929), - [anon_sym_LT_LT_EQ] = ACTIONS(929), - [anon_sym_GT_GT_EQ] = ACTIONS(929), - [anon_sym_EQ] = ACTIONS(927), - [anon_sym_EQ_EQ] = ACTIONS(929), - [anon_sym_BANG_EQ] = ACTIONS(929), - [anon_sym_GT] = ACTIONS(927), - [anon_sym_LT] = ACTIONS(927), - [anon_sym_GT_EQ] = ACTIONS(929), - [anon_sym_LT_EQ] = ACTIONS(929), - [anon_sym_AT] = ACTIONS(929), - [anon_sym__] = ACTIONS(927), - [anon_sym_DOT] = ACTIONS(927), - [anon_sym_DOT_DOT] = ACTIONS(927), - [anon_sym_DOT_DOT_DOT] = ACTIONS(929), - [anon_sym_DOT_DOT_EQ] = ACTIONS(929), - [anon_sym_COMMA] = ACTIONS(929), - [anon_sym_COLON_COLON] = ACTIONS(929), - [anon_sym_DASH_GT] = ACTIONS(929), - [anon_sym_POUND] = ACTIONS(929), - [anon_sym_SQUOTE] = ACTIONS(927), - [anon_sym_as] = ACTIONS(927), - [anon_sym_async] = ACTIONS(927), - [anon_sym_await] = ACTIONS(927), - [anon_sym_break] = ACTIONS(927), - [anon_sym_const] = ACTIONS(927), - [anon_sym_continue] = ACTIONS(927), - [anon_sym_default] = ACTIONS(927), - [anon_sym_enum] = ACTIONS(927), - [anon_sym_fn] = ACTIONS(927), - [anon_sym_for] = ACTIONS(927), - [anon_sym_if] = ACTIONS(927), - [anon_sym_impl] = ACTIONS(927), - [anon_sym_let] = ACTIONS(927), - [anon_sym_loop] = ACTIONS(927), - [anon_sym_match] = ACTIONS(927), - [anon_sym_mod] = ACTIONS(927), - [anon_sym_pub] = ACTIONS(927), - [anon_sym_return] = ACTIONS(927), - [anon_sym_static] = ACTIONS(927), - [anon_sym_struct] = ACTIONS(927), - [anon_sym_trait] = ACTIONS(927), - [anon_sym_type] = ACTIONS(927), - [anon_sym_union] = ACTIONS(927), - [anon_sym_unsafe] = ACTIONS(927), - [anon_sym_use] = ACTIONS(927), - [anon_sym_where] = ACTIONS(927), - [anon_sym_while] = ACTIONS(927), - [sym_mutable_specifier] = ACTIONS(927), - [sym_integer_literal] = ACTIONS(929), - [aux_sym_string_literal_token1] = ACTIONS(929), - [sym_char_literal] = ACTIONS(929), - [anon_sym_true] = ACTIONS(927), - [anon_sym_false] = ACTIONS(927), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(927), - [sym_super] = ACTIONS(927), - [sym_crate] = ACTIONS(927), - [sym_metavariable] = ACTIONS(929), - [sym__raw_string_literal_start] = ACTIONS(929), - [sym_float_literal] = ACTIONS(929), + [aux_sym_enum_variant_list_repeat1] = STATE(149), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(914), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_COMMA] = ACTIONS(916), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_POUND] = ACTIONS(774), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(365), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [155] = { - [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1555), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_attribute_item] = STATE(1023), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1619), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1419), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(155), [sym_block_comment] = STATE(155), - [aux_sym_enum_variant_list_repeat1] = STATE(151), - [sym_identifier] = ACTIONS(334), + [aux_sym_enum_variant_list_repeat1] = STATE(217), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(918), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(931), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COMMA] = ACTIONS(933), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(765), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_COMMA] = ACTIONS(920), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_POUND] = ACTIONS(774), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(365), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [156] = { [sym_line_comment] = STATE(156), [sym_block_comment] = STATE(156), - [sym_identifier] = ACTIONS(935), - [anon_sym_SEMI] = ACTIONS(937), - [anon_sym_LPAREN] = ACTIONS(937), - [anon_sym_RPAREN] = ACTIONS(937), - [anon_sym_LBRACK] = ACTIONS(937), - [anon_sym_RBRACK] = ACTIONS(937), - [anon_sym_LBRACE] = ACTIONS(937), - [anon_sym_RBRACE] = ACTIONS(937), - [anon_sym_EQ_GT] = ACTIONS(937), - [anon_sym_COLON] = ACTIONS(935), - [anon_sym_DOLLAR] = ACTIONS(935), - [anon_sym_PLUS] = ACTIONS(935), - [anon_sym_STAR] = ACTIONS(935), - [anon_sym_QMARK] = ACTIONS(937), - [anon_sym_u8] = ACTIONS(935), - [anon_sym_i8] = ACTIONS(935), - [anon_sym_u16] = ACTIONS(935), - [anon_sym_i16] = ACTIONS(935), - [anon_sym_u32] = ACTIONS(935), - [anon_sym_i32] = ACTIONS(935), - [anon_sym_u64] = ACTIONS(935), - [anon_sym_i64] = ACTIONS(935), - [anon_sym_u128] = ACTIONS(935), - [anon_sym_i128] = ACTIONS(935), - [anon_sym_isize] = ACTIONS(935), - [anon_sym_usize] = ACTIONS(935), - [anon_sym_f32] = ACTIONS(935), - [anon_sym_f64] = ACTIONS(935), - [anon_sym_bool] = ACTIONS(935), - [anon_sym_str] = ACTIONS(935), - [anon_sym_char] = ACTIONS(935), - [anon_sym_DASH] = ACTIONS(935), - [anon_sym_SLASH] = ACTIONS(935), - [anon_sym_PERCENT] = ACTIONS(935), - [anon_sym_CARET] = ACTIONS(935), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_AMP] = ACTIONS(935), - [anon_sym_PIPE] = ACTIONS(935), - [anon_sym_AMP_AMP] = ACTIONS(937), - [anon_sym_PIPE_PIPE] = ACTIONS(937), - [anon_sym_LT_LT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(935), - [anon_sym_PLUS_EQ] = ACTIONS(937), - [anon_sym_DASH_EQ] = ACTIONS(937), - [anon_sym_STAR_EQ] = ACTIONS(937), - [anon_sym_SLASH_EQ] = ACTIONS(937), - [anon_sym_PERCENT_EQ] = ACTIONS(937), - [anon_sym_CARET_EQ] = ACTIONS(937), - [anon_sym_AMP_EQ] = ACTIONS(937), - [anon_sym_PIPE_EQ] = ACTIONS(937), - [anon_sym_LT_LT_EQ] = ACTIONS(937), - [anon_sym_GT_GT_EQ] = ACTIONS(937), - [anon_sym_EQ] = ACTIONS(935), - [anon_sym_EQ_EQ] = ACTIONS(937), - [anon_sym_BANG_EQ] = ACTIONS(937), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT_EQ] = ACTIONS(937), - [anon_sym_LT_EQ] = ACTIONS(937), - [anon_sym_AT] = ACTIONS(937), - [anon_sym__] = ACTIONS(935), - [anon_sym_DOT] = ACTIONS(935), - [anon_sym_DOT_DOT] = ACTIONS(935), - [anon_sym_DOT_DOT_DOT] = ACTIONS(937), - [anon_sym_DOT_DOT_EQ] = ACTIONS(937), - [anon_sym_COMMA] = ACTIONS(937), - [anon_sym_COLON_COLON] = ACTIONS(937), - [anon_sym_DASH_GT] = ACTIONS(937), - [anon_sym_POUND] = ACTIONS(937), - [anon_sym_SQUOTE] = ACTIONS(935), - [anon_sym_as] = ACTIONS(935), - [anon_sym_async] = ACTIONS(935), - [anon_sym_await] = ACTIONS(935), - [anon_sym_break] = ACTIONS(935), - [anon_sym_const] = ACTIONS(935), - [anon_sym_continue] = ACTIONS(935), - [anon_sym_default] = ACTIONS(935), - [anon_sym_enum] = ACTIONS(935), - [anon_sym_fn] = ACTIONS(935), - [anon_sym_for] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_impl] = ACTIONS(935), - [anon_sym_let] = ACTIONS(935), - [anon_sym_loop] = ACTIONS(935), - [anon_sym_match] = ACTIONS(935), - [anon_sym_mod] = ACTIONS(935), - [anon_sym_pub] = ACTIONS(935), - [anon_sym_return] = ACTIONS(935), - [anon_sym_static] = ACTIONS(935), - [anon_sym_struct] = ACTIONS(935), - [anon_sym_trait] = ACTIONS(935), - [anon_sym_type] = ACTIONS(935), - [anon_sym_union] = ACTIONS(935), - [anon_sym_unsafe] = ACTIONS(935), - [anon_sym_use] = ACTIONS(935), - [anon_sym_where] = ACTIONS(935), - [anon_sym_while] = ACTIONS(935), - [sym_mutable_specifier] = ACTIONS(935), - [sym_integer_literal] = ACTIONS(937), - [aux_sym_string_literal_token1] = ACTIONS(937), - [sym_char_literal] = ACTIONS(937), - [anon_sym_true] = ACTIONS(935), - [anon_sym_false] = ACTIONS(935), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(935), - [sym_super] = ACTIONS(935), - [sym_crate] = ACTIONS(935), - [sym_metavariable] = ACTIONS(937), - [sym__raw_string_literal_start] = ACTIONS(937), - [sym_float_literal] = ACTIONS(937), + [sym_identifier] = ACTIONS(922), + [anon_sym_SEMI] = ACTIONS(924), + [anon_sym_LPAREN] = ACTIONS(924), + [anon_sym_RPAREN] = ACTIONS(924), + [anon_sym_LBRACK] = ACTIONS(924), + [anon_sym_RBRACK] = ACTIONS(924), + [anon_sym_LBRACE] = ACTIONS(924), + [anon_sym_RBRACE] = ACTIONS(924), + [anon_sym_COMMA] = ACTIONS(924), + [anon_sym_EQ_GT] = ACTIONS(924), + [anon_sym_COLON] = ACTIONS(922), + [anon_sym_DOLLAR] = ACTIONS(922), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_STAR] = ACTIONS(922), + [anon_sym_QMARK] = ACTIONS(924), + [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_DASH] = ACTIONS(922), + [anon_sym_SLASH] = ACTIONS(922), + [anon_sym_PERCENT] = ACTIONS(922), + [anon_sym_CARET] = ACTIONS(922), + [anon_sym_BANG] = ACTIONS(922), + [anon_sym_AMP] = ACTIONS(922), + [anon_sym_PIPE] = ACTIONS(922), + [anon_sym_AMP_AMP] = ACTIONS(924), + [anon_sym_PIPE_PIPE] = ACTIONS(924), + [anon_sym_LT_LT] = ACTIONS(922), + [anon_sym_GT_GT] = ACTIONS(922), + [anon_sym_PLUS_EQ] = ACTIONS(924), + [anon_sym_DASH_EQ] = ACTIONS(924), + [anon_sym_STAR_EQ] = ACTIONS(924), + [anon_sym_SLASH_EQ] = ACTIONS(924), + [anon_sym_PERCENT_EQ] = ACTIONS(924), + [anon_sym_CARET_EQ] = ACTIONS(924), + [anon_sym_AMP_EQ] = ACTIONS(924), + [anon_sym_PIPE_EQ] = ACTIONS(924), + [anon_sym_LT_LT_EQ] = ACTIONS(924), + [anon_sym_GT_GT_EQ] = ACTIONS(924), + [anon_sym_EQ] = ACTIONS(922), + [anon_sym_EQ_EQ] = ACTIONS(924), + [anon_sym_BANG_EQ] = ACTIONS(924), + [anon_sym_GT] = ACTIONS(922), + [anon_sym_LT] = ACTIONS(922), + [anon_sym_GT_EQ] = ACTIONS(924), + [anon_sym_LT_EQ] = ACTIONS(924), + [anon_sym_AT] = ACTIONS(924), + [anon_sym__] = ACTIONS(922), + [anon_sym_DOT] = ACTIONS(922), + [anon_sym_DOT_DOT] = ACTIONS(922), + [anon_sym_DOT_DOT_DOT] = ACTIONS(924), + [anon_sym_DOT_DOT_EQ] = ACTIONS(924), + [anon_sym_COLON_COLON] = ACTIONS(924), + [anon_sym_DASH_GT] = ACTIONS(924), + [anon_sym_POUND] = ACTIONS(924), + [anon_sym_SQUOTE] = ACTIONS(922), + [anon_sym_as] = ACTIONS(922), + [anon_sym_async] = ACTIONS(922), + [anon_sym_await] = ACTIONS(922), + [anon_sym_break] = ACTIONS(922), + [anon_sym_const] = ACTIONS(922), + [anon_sym_continue] = ACTIONS(922), + [anon_sym_default] = ACTIONS(922), + [anon_sym_enum] = ACTIONS(922), + [anon_sym_fn] = ACTIONS(922), + [anon_sym_for] = ACTIONS(922), + [anon_sym_if] = ACTIONS(922), + [anon_sym_impl] = ACTIONS(922), + [anon_sym_let] = ACTIONS(922), + [anon_sym_loop] = ACTIONS(922), + [anon_sym_match] = ACTIONS(922), + [anon_sym_mod] = ACTIONS(922), + [anon_sym_pub] = ACTIONS(922), + [anon_sym_return] = ACTIONS(922), + [anon_sym_static] = ACTIONS(922), + [anon_sym_struct] = ACTIONS(922), + [anon_sym_trait] = ACTIONS(922), + [anon_sym_type] = ACTIONS(922), + [anon_sym_union] = ACTIONS(922), + [anon_sym_unsafe] = ACTIONS(922), + [anon_sym_use] = ACTIONS(922), + [anon_sym_where] = ACTIONS(922), + [anon_sym_while] = ACTIONS(922), + [sym_mutable_specifier] = ACTIONS(922), + [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), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(922), + [sym_super] = ACTIONS(922), + [sym_crate] = ACTIONS(922), + [sym_metavariable] = ACTIONS(924), + [sym__raw_string_literal_start] = ACTIONS(924), + [sym_float_literal] = ACTIONS(924), }, [157] = { [sym_line_comment] = STATE(157), [sym_block_comment] = STATE(157), - [sym_identifier] = ACTIONS(745), - [anon_sym_SEMI] = ACTIONS(747), - [anon_sym_LPAREN] = ACTIONS(747), - [anon_sym_RPAREN] = ACTIONS(747), - [anon_sym_LBRACK] = ACTIONS(747), - [anon_sym_RBRACK] = ACTIONS(747), - [anon_sym_LBRACE] = ACTIONS(747), - [anon_sym_RBRACE] = ACTIONS(747), - [anon_sym_EQ_GT] = ACTIONS(747), - [anon_sym_COLON] = ACTIONS(745), - [anon_sym_DOLLAR] = ACTIONS(745), - [anon_sym_PLUS] = ACTIONS(745), - [anon_sym_STAR] = ACTIONS(745), - [anon_sym_QMARK] = ACTIONS(747), - [anon_sym_u8] = ACTIONS(745), - [anon_sym_i8] = ACTIONS(745), - [anon_sym_u16] = ACTIONS(745), - [anon_sym_i16] = ACTIONS(745), - [anon_sym_u32] = ACTIONS(745), - [anon_sym_i32] = ACTIONS(745), - [anon_sym_u64] = ACTIONS(745), - [anon_sym_i64] = ACTIONS(745), - [anon_sym_u128] = ACTIONS(745), - [anon_sym_i128] = ACTIONS(745), - [anon_sym_isize] = ACTIONS(745), - [anon_sym_usize] = ACTIONS(745), - [anon_sym_f32] = ACTIONS(745), - [anon_sym_f64] = ACTIONS(745), - [anon_sym_bool] = ACTIONS(745), - [anon_sym_str] = ACTIONS(745), - [anon_sym_char] = ACTIONS(745), - [anon_sym_DASH] = ACTIONS(745), - [anon_sym_SLASH] = ACTIONS(745), - [anon_sym_PERCENT] = ACTIONS(745), - [anon_sym_CARET] = ACTIONS(745), - [anon_sym_BANG] = ACTIONS(745), - [anon_sym_AMP] = ACTIONS(745), - [anon_sym_PIPE] = ACTIONS(745), - [anon_sym_AMP_AMP] = ACTIONS(747), - [anon_sym_PIPE_PIPE] = ACTIONS(747), - [anon_sym_LT_LT] = ACTIONS(745), - [anon_sym_GT_GT] = ACTIONS(745), - [anon_sym_PLUS_EQ] = ACTIONS(747), - [anon_sym_DASH_EQ] = ACTIONS(747), - [anon_sym_STAR_EQ] = ACTIONS(747), - [anon_sym_SLASH_EQ] = ACTIONS(747), - [anon_sym_PERCENT_EQ] = ACTIONS(747), - [anon_sym_CARET_EQ] = ACTIONS(747), - [anon_sym_AMP_EQ] = ACTIONS(747), - [anon_sym_PIPE_EQ] = ACTIONS(747), - [anon_sym_LT_LT_EQ] = ACTIONS(747), - [anon_sym_GT_GT_EQ] = ACTIONS(747), - [anon_sym_EQ] = ACTIONS(745), - [anon_sym_EQ_EQ] = ACTIONS(747), - [anon_sym_BANG_EQ] = ACTIONS(747), - [anon_sym_GT] = ACTIONS(745), - [anon_sym_LT] = ACTIONS(745), - [anon_sym_GT_EQ] = ACTIONS(747), - [anon_sym_LT_EQ] = ACTIONS(747), - [anon_sym_AT] = ACTIONS(747), - [anon_sym__] = ACTIONS(745), - [anon_sym_DOT] = ACTIONS(745), - [anon_sym_DOT_DOT] = ACTIONS(745), - [anon_sym_DOT_DOT_DOT] = ACTIONS(747), - [anon_sym_DOT_DOT_EQ] = ACTIONS(747), - [anon_sym_COMMA] = ACTIONS(747), - [anon_sym_COLON_COLON] = ACTIONS(747), - [anon_sym_DASH_GT] = ACTIONS(747), - [anon_sym_POUND] = ACTIONS(747), - [anon_sym_SQUOTE] = ACTIONS(745), - [anon_sym_as] = ACTIONS(745), - [anon_sym_async] = ACTIONS(745), - [anon_sym_await] = ACTIONS(745), - [anon_sym_break] = ACTIONS(745), - [anon_sym_const] = ACTIONS(745), - [anon_sym_continue] = ACTIONS(745), - [anon_sym_default] = ACTIONS(745), - [anon_sym_enum] = ACTIONS(745), - [anon_sym_fn] = ACTIONS(745), - [anon_sym_for] = ACTIONS(745), - [anon_sym_if] = ACTIONS(745), - [anon_sym_impl] = ACTIONS(745), - [anon_sym_let] = ACTIONS(745), - [anon_sym_loop] = ACTIONS(745), - [anon_sym_match] = ACTIONS(745), - [anon_sym_mod] = ACTIONS(745), - [anon_sym_pub] = ACTIONS(745), - [anon_sym_return] = ACTIONS(745), - [anon_sym_static] = ACTIONS(745), - [anon_sym_struct] = ACTIONS(745), - [anon_sym_trait] = ACTIONS(745), - [anon_sym_type] = ACTIONS(745), - [anon_sym_union] = ACTIONS(745), - [anon_sym_unsafe] = ACTIONS(745), - [anon_sym_use] = ACTIONS(745), - [anon_sym_where] = ACTIONS(745), - [anon_sym_while] = ACTIONS(745), - [sym_mutable_specifier] = ACTIONS(745), - [sym_integer_literal] = ACTIONS(747), - [aux_sym_string_literal_token1] = ACTIONS(747), - [sym_char_literal] = ACTIONS(747), - [anon_sym_true] = ACTIONS(745), - [anon_sym_false] = ACTIONS(745), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(745), - [sym_super] = ACTIONS(745), - [sym_crate] = ACTIONS(745), - [sym_metavariable] = ACTIONS(747), - [sym__raw_string_literal_start] = ACTIONS(747), - [sym_float_literal] = ACTIONS(747), + [sym_identifier] = ACTIONS(926), + [anon_sym_SEMI] = ACTIONS(928), + [anon_sym_LPAREN] = ACTIONS(928), + [anon_sym_RPAREN] = ACTIONS(928), + [anon_sym_LBRACK] = ACTIONS(928), + [anon_sym_RBRACK] = ACTIONS(928), + [anon_sym_LBRACE] = ACTIONS(928), + [anon_sym_RBRACE] = ACTIONS(928), + [anon_sym_COMMA] = ACTIONS(928), + [anon_sym_EQ_GT] = ACTIONS(928), + [anon_sym_COLON] = ACTIONS(926), + [anon_sym_DOLLAR] = ACTIONS(926), + [anon_sym_PLUS] = ACTIONS(926), + [anon_sym_STAR] = ACTIONS(926), + [anon_sym_QMARK] = ACTIONS(928), + [anon_sym_u8] = ACTIONS(926), + [anon_sym_i8] = ACTIONS(926), + [anon_sym_u16] = ACTIONS(926), + [anon_sym_i16] = ACTIONS(926), + [anon_sym_u32] = ACTIONS(926), + [anon_sym_i32] = ACTIONS(926), + [anon_sym_u64] = ACTIONS(926), + [anon_sym_i64] = ACTIONS(926), + [anon_sym_u128] = ACTIONS(926), + [anon_sym_i128] = ACTIONS(926), + [anon_sym_isize] = ACTIONS(926), + [anon_sym_usize] = ACTIONS(926), + [anon_sym_f32] = ACTIONS(926), + [anon_sym_f64] = ACTIONS(926), + [anon_sym_bool] = ACTIONS(926), + [anon_sym_str] = ACTIONS(926), + [anon_sym_char] = ACTIONS(926), + [anon_sym_DASH] = ACTIONS(926), + [anon_sym_SLASH] = ACTIONS(926), + [anon_sym_PERCENT] = ACTIONS(926), + [anon_sym_CARET] = ACTIONS(926), + [anon_sym_BANG] = ACTIONS(926), + [anon_sym_AMP] = ACTIONS(926), + [anon_sym_PIPE] = ACTIONS(926), + [anon_sym_AMP_AMP] = ACTIONS(928), + [anon_sym_PIPE_PIPE] = ACTIONS(928), + [anon_sym_LT_LT] = ACTIONS(926), + [anon_sym_GT_GT] = ACTIONS(926), + [anon_sym_PLUS_EQ] = ACTIONS(928), + [anon_sym_DASH_EQ] = ACTIONS(928), + [anon_sym_STAR_EQ] = ACTIONS(928), + [anon_sym_SLASH_EQ] = ACTIONS(928), + [anon_sym_PERCENT_EQ] = ACTIONS(928), + [anon_sym_CARET_EQ] = ACTIONS(928), + [anon_sym_AMP_EQ] = ACTIONS(928), + [anon_sym_PIPE_EQ] = ACTIONS(928), + [anon_sym_LT_LT_EQ] = ACTIONS(928), + [anon_sym_GT_GT_EQ] = ACTIONS(928), + [anon_sym_EQ] = ACTIONS(926), + [anon_sym_EQ_EQ] = ACTIONS(928), + [anon_sym_BANG_EQ] = ACTIONS(928), + [anon_sym_GT] = ACTIONS(926), + [anon_sym_LT] = ACTIONS(926), + [anon_sym_GT_EQ] = ACTIONS(928), + [anon_sym_LT_EQ] = ACTIONS(928), + [anon_sym_AT] = ACTIONS(928), + [anon_sym__] = ACTIONS(926), + [anon_sym_DOT] = ACTIONS(926), + [anon_sym_DOT_DOT] = ACTIONS(926), + [anon_sym_DOT_DOT_DOT] = ACTIONS(928), + [anon_sym_DOT_DOT_EQ] = ACTIONS(928), + [anon_sym_COLON_COLON] = ACTIONS(928), + [anon_sym_DASH_GT] = ACTIONS(928), + [anon_sym_POUND] = ACTIONS(928), + [anon_sym_SQUOTE] = ACTIONS(926), + [anon_sym_as] = ACTIONS(926), + [anon_sym_async] = ACTIONS(926), + [anon_sym_await] = ACTIONS(926), + [anon_sym_break] = ACTIONS(926), + [anon_sym_const] = ACTIONS(926), + [anon_sym_continue] = ACTIONS(926), + [anon_sym_default] = ACTIONS(926), + [anon_sym_enum] = ACTIONS(926), + [anon_sym_fn] = ACTIONS(926), + [anon_sym_for] = ACTIONS(926), + [anon_sym_if] = ACTIONS(926), + [anon_sym_impl] = ACTIONS(926), + [anon_sym_let] = ACTIONS(926), + [anon_sym_loop] = ACTIONS(926), + [anon_sym_match] = ACTIONS(926), + [anon_sym_mod] = ACTIONS(926), + [anon_sym_pub] = ACTIONS(926), + [anon_sym_return] = ACTIONS(926), + [anon_sym_static] = ACTIONS(926), + [anon_sym_struct] = ACTIONS(926), + [anon_sym_trait] = ACTIONS(926), + [anon_sym_type] = ACTIONS(926), + [anon_sym_union] = ACTIONS(926), + [anon_sym_unsafe] = ACTIONS(926), + [anon_sym_use] = ACTIONS(926), + [anon_sym_where] = ACTIONS(926), + [anon_sym_while] = ACTIONS(926), + [sym_mutable_specifier] = ACTIONS(926), + [sym_integer_literal] = ACTIONS(928), + [aux_sym_string_literal_token1] = ACTIONS(928), + [sym_char_literal] = ACTIONS(928), + [anon_sym_true] = ACTIONS(926), + [anon_sym_false] = ACTIONS(926), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(926), + [sym_super] = ACTIONS(926), + [sym_crate] = ACTIONS(926), + [sym_metavariable] = ACTIONS(928), + [sym__raw_string_literal_start] = ACTIONS(928), + [sym_float_literal] = ACTIONS(928), }, [158] = { - [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1549), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(158), [sym_block_comment] = STATE(158), - [aux_sym_enum_variant_list_repeat1] = STATE(163), - [sym_identifier] = ACTIONS(334), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(939), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COMMA] = ACTIONS(941), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(765), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [sym_identifier] = ACTIONS(758), + [anon_sym_SEMI] = ACTIONS(760), + [anon_sym_LPAREN] = ACTIONS(760), + [anon_sym_RPAREN] = ACTIONS(760), + [anon_sym_LBRACK] = ACTIONS(760), + [anon_sym_RBRACK] = ACTIONS(760), + [anon_sym_LBRACE] = ACTIONS(760), + [anon_sym_RBRACE] = ACTIONS(760), + [anon_sym_COMMA] = ACTIONS(760), + [anon_sym_EQ_GT] = ACTIONS(760), + [anon_sym_COLON] = ACTIONS(758), + [anon_sym_DOLLAR] = ACTIONS(758), + [anon_sym_PLUS] = ACTIONS(758), + [anon_sym_STAR] = ACTIONS(758), + [anon_sym_QMARK] = ACTIONS(760), + [anon_sym_u8] = ACTIONS(758), + [anon_sym_i8] = ACTIONS(758), + [anon_sym_u16] = ACTIONS(758), + [anon_sym_i16] = ACTIONS(758), + [anon_sym_u32] = ACTIONS(758), + [anon_sym_i32] = ACTIONS(758), + [anon_sym_u64] = ACTIONS(758), + [anon_sym_i64] = ACTIONS(758), + [anon_sym_u128] = ACTIONS(758), + [anon_sym_i128] = ACTIONS(758), + [anon_sym_isize] = ACTIONS(758), + [anon_sym_usize] = ACTIONS(758), + [anon_sym_f32] = ACTIONS(758), + [anon_sym_f64] = ACTIONS(758), + [anon_sym_bool] = ACTIONS(758), + [anon_sym_str] = ACTIONS(758), + [anon_sym_char] = ACTIONS(758), + [anon_sym_DASH] = ACTIONS(758), + [anon_sym_SLASH] = ACTIONS(758), + [anon_sym_PERCENT] = ACTIONS(758), + [anon_sym_CARET] = ACTIONS(758), + [anon_sym_BANG] = ACTIONS(758), + [anon_sym_AMP] = ACTIONS(758), + [anon_sym_PIPE] = ACTIONS(758), + [anon_sym_AMP_AMP] = ACTIONS(760), + [anon_sym_PIPE_PIPE] = ACTIONS(760), + [anon_sym_LT_LT] = ACTIONS(758), + [anon_sym_GT_GT] = ACTIONS(758), + [anon_sym_PLUS_EQ] = ACTIONS(760), + [anon_sym_DASH_EQ] = ACTIONS(760), + [anon_sym_STAR_EQ] = ACTIONS(760), + [anon_sym_SLASH_EQ] = ACTIONS(760), + [anon_sym_PERCENT_EQ] = ACTIONS(760), + [anon_sym_CARET_EQ] = ACTIONS(760), + [anon_sym_AMP_EQ] = ACTIONS(760), + [anon_sym_PIPE_EQ] = ACTIONS(760), + [anon_sym_LT_LT_EQ] = ACTIONS(760), + [anon_sym_GT_GT_EQ] = ACTIONS(760), + [anon_sym_EQ] = ACTIONS(758), + [anon_sym_EQ_EQ] = ACTIONS(760), + [anon_sym_BANG_EQ] = ACTIONS(760), + [anon_sym_GT] = ACTIONS(758), + [anon_sym_LT] = ACTIONS(758), + [anon_sym_GT_EQ] = ACTIONS(760), + [anon_sym_LT_EQ] = ACTIONS(760), + [anon_sym_AT] = ACTIONS(760), + [anon_sym__] = ACTIONS(758), + [anon_sym_DOT] = ACTIONS(758), + [anon_sym_DOT_DOT] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(760), + [anon_sym_DOT_DOT_EQ] = ACTIONS(760), + [anon_sym_COLON_COLON] = ACTIONS(760), + [anon_sym_DASH_GT] = ACTIONS(760), + [anon_sym_POUND] = ACTIONS(760), + [anon_sym_SQUOTE] = ACTIONS(758), + [anon_sym_as] = ACTIONS(758), + [anon_sym_async] = ACTIONS(758), + [anon_sym_await] = ACTIONS(758), + [anon_sym_break] = ACTIONS(758), + [anon_sym_const] = ACTIONS(758), + [anon_sym_continue] = ACTIONS(758), + [anon_sym_default] = ACTIONS(758), + [anon_sym_enum] = ACTIONS(758), + [anon_sym_fn] = ACTIONS(758), + [anon_sym_for] = ACTIONS(758), + [anon_sym_if] = ACTIONS(758), + [anon_sym_impl] = ACTIONS(758), + [anon_sym_let] = ACTIONS(758), + [anon_sym_loop] = ACTIONS(758), + [anon_sym_match] = ACTIONS(758), + [anon_sym_mod] = ACTIONS(758), + [anon_sym_pub] = ACTIONS(758), + [anon_sym_return] = ACTIONS(758), + [anon_sym_static] = ACTIONS(758), + [anon_sym_struct] = ACTIONS(758), + [anon_sym_trait] = ACTIONS(758), + [anon_sym_type] = ACTIONS(758), + [anon_sym_union] = ACTIONS(758), + [anon_sym_unsafe] = ACTIONS(758), + [anon_sym_use] = ACTIONS(758), + [anon_sym_where] = ACTIONS(758), + [anon_sym_while] = ACTIONS(758), + [sym_mutable_specifier] = ACTIONS(758), + [sym_integer_literal] = ACTIONS(760), + [aux_sym_string_literal_token1] = ACTIONS(760), + [sym_char_literal] = ACTIONS(760), + [anon_sym_true] = ACTIONS(758), + [anon_sym_false] = ACTIONS(758), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(758), + [sym_super] = ACTIONS(758), + [sym_crate] = ACTIONS(758), + [sym_metavariable] = ACTIONS(760), + [sym__raw_string_literal_start] = ACTIONS(760), + [sym_float_literal] = ACTIONS(760), }, [159] = { [sym_line_comment] = STATE(159), [sym_block_comment] = STATE(159), - [sym_identifier] = ACTIONS(943), - [anon_sym_SEMI] = ACTIONS(945), - [anon_sym_LPAREN] = ACTIONS(945), - [anon_sym_RPAREN] = ACTIONS(945), - [anon_sym_LBRACK] = ACTIONS(945), - [anon_sym_RBRACK] = ACTIONS(945), - [anon_sym_LBRACE] = ACTIONS(945), - [anon_sym_RBRACE] = ACTIONS(945), - [anon_sym_EQ_GT] = ACTIONS(945), - [anon_sym_COLON] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(943), - [anon_sym_PLUS] = ACTIONS(943), - [anon_sym_STAR] = ACTIONS(943), - [anon_sym_QMARK] = ACTIONS(945), - [anon_sym_u8] = ACTIONS(943), - [anon_sym_i8] = ACTIONS(943), - [anon_sym_u16] = ACTIONS(943), - [anon_sym_i16] = ACTIONS(943), - [anon_sym_u32] = ACTIONS(943), - [anon_sym_i32] = ACTIONS(943), - [anon_sym_u64] = ACTIONS(943), - [anon_sym_i64] = ACTIONS(943), - [anon_sym_u128] = ACTIONS(943), - [anon_sym_i128] = ACTIONS(943), - [anon_sym_isize] = ACTIONS(943), - [anon_sym_usize] = ACTIONS(943), - [anon_sym_f32] = ACTIONS(943), - [anon_sym_f64] = ACTIONS(943), - [anon_sym_bool] = ACTIONS(943), - [anon_sym_str] = ACTIONS(943), - [anon_sym_char] = ACTIONS(943), - [anon_sym_DASH] = ACTIONS(943), - [anon_sym_SLASH] = ACTIONS(943), - [anon_sym_PERCENT] = ACTIONS(943), - [anon_sym_CARET] = ACTIONS(943), - [anon_sym_BANG] = ACTIONS(943), - [anon_sym_AMP] = ACTIONS(943), - [anon_sym_PIPE] = ACTIONS(943), - [anon_sym_AMP_AMP] = ACTIONS(945), - [anon_sym_PIPE_PIPE] = ACTIONS(945), - [anon_sym_LT_LT] = ACTIONS(943), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_PLUS_EQ] = ACTIONS(945), - [anon_sym_DASH_EQ] = ACTIONS(945), - [anon_sym_STAR_EQ] = ACTIONS(945), - [anon_sym_SLASH_EQ] = ACTIONS(945), - [anon_sym_PERCENT_EQ] = ACTIONS(945), - [anon_sym_CARET_EQ] = ACTIONS(945), - [anon_sym_AMP_EQ] = ACTIONS(945), - [anon_sym_PIPE_EQ] = ACTIONS(945), - [anon_sym_LT_LT_EQ] = ACTIONS(945), - [anon_sym_GT_GT_EQ] = ACTIONS(945), - [anon_sym_EQ] = ACTIONS(943), - [anon_sym_EQ_EQ] = ACTIONS(945), - [anon_sym_BANG_EQ] = ACTIONS(945), - [anon_sym_GT] = ACTIONS(943), - [anon_sym_LT] = ACTIONS(943), - [anon_sym_GT_EQ] = ACTIONS(945), - [anon_sym_LT_EQ] = ACTIONS(945), - [anon_sym_AT] = ACTIONS(945), - [anon_sym__] = ACTIONS(943), - [anon_sym_DOT] = ACTIONS(943), - [anon_sym_DOT_DOT] = ACTIONS(943), - [anon_sym_DOT_DOT_DOT] = ACTIONS(945), - [anon_sym_DOT_DOT_EQ] = ACTIONS(945), - [anon_sym_COMMA] = ACTIONS(945), - [anon_sym_COLON_COLON] = ACTIONS(945), - [anon_sym_DASH_GT] = ACTIONS(945), - [anon_sym_POUND] = ACTIONS(945), - [anon_sym_SQUOTE] = ACTIONS(943), - [anon_sym_as] = ACTIONS(943), - [anon_sym_async] = ACTIONS(943), - [anon_sym_await] = ACTIONS(943), - [anon_sym_break] = ACTIONS(943), - [anon_sym_const] = ACTIONS(943), - [anon_sym_continue] = ACTIONS(943), - [anon_sym_default] = ACTIONS(943), - [anon_sym_enum] = ACTIONS(943), - [anon_sym_fn] = ACTIONS(943), - [anon_sym_for] = ACTIONS(943), - [anon_sym_if] = ACTIONS(943), - [anon_sym_impl] = ACTIONS(943), - [anon_sym_let] = ACTIONS(943), - [anon_sym_loop] = ACTIONS(943), - [anon_sym_match] = ACTIONS(943), - [anon_sym_mod] = ACTIONS(943), - [anon_sym_pub] = ACTIONS(943), - [anon_sym_return] = ACTIONS(943), - [anon_sym_static] = ACTIONS(943), - [anon_sym_struct] = ACTIONS(943), - [anon_sym_trait] = ACTIONS(943), - [anon_sym_type] = ACTIONS(943), - [anon_sym_union] = ACTIONS(943), - [anon_sym_unsafe] = ACTIONS(943), - [anon_sym_use] = ACTIONS(943), - [anon_sym_where] = ACTIONS(943), - [anon_sym_while] = ACTIONS(943), - [sym_mutable_specifier] = ACTIONS(943), - [sym_integer_literal] = ACTIONS(945), - [aux_sym_string_literal_token1] = ACTIONS(945), - [sym_char_literal] = ACTIONS(945), - [anon_sym_true] = ACTIONS(943), - [anon_sym_false] = ACTIONS(943), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(943), - [sym_super] = ACTIONS(943), - [sym_crate] = ACTIONS(943), - [sym_metavariable] = ACTIONS(945), - [sym__raw_string_literal_start] = ACTIONS(945), - [sym_float_literal] = ACTIONS(945), + [sym_identifier] = ACTIONS(930), + [anon_sym_SEMI] = ACTIONS(932), + [anon_sym_LPAREN] = ACTIONS(932), + [anon_sym_RPAREN] = ACTIONS(932), + [anon_sym_LBRACK] = ACTIONS(932), + [anon_sym_RBRACK] = ACTIONS(932), + [anon_sym_LBRACE] = ACTIONS(932), + [anon_sym_RBRACE] = ACTIONS(932), + [anon_sym_COMMA] = ACTIONS(932), + [anon_sym_EQ_GT] = ACTIONS(932), + [anon_sym_COLON] = ACTIONS(930), + [anon_sym_DOLLAR] = ACTIONS(930), + [anon_sym_PLUS] = ACTIONS(930), + [anon_sym_STAR] = ACTIONS(930), + [anon_sym_QMARK] = ACTIONS(932), + [anon_sym_u8] = ACTIONS(930), + [anon_sym_i8] = ACTIONS(930), + [anon_sym_u16] = ACTIONS(930), + [anon_sym_i16] = ACTIONS(930), + [anon_sym_u32] = ACTIONS(930), + [anon_sym_i32] = ACTIONS(930), + [anon_sym_u64] = ACTIONS(930), + [anon_sym_i64] = ACTIONS(930), + [anon_sym_u128] = ACTIONS(930), + [anon_sym_i128] = ACTIONS(930), + [anon_sym_isize] = ACTIONS(930), + [anon_sym_usize] = ACTIONS(930), + [anon_sym_f32] = ACTIONS(930), + [anon_sym_f64] = ACTIONS(930), + [anon_sym_bool] = ACTIONS(930), + [anon_sym_str] = ACTIONS(930), + [anon_sym_char] = ACTIONS(930), + [anon_sym_DASH] = ACTIONS(930), + [anon_sym_SLASH] = ACTIONS(930), + [anon_sym_PERCENT] = ACTIONS(930), + [anon_sym_CARET] = ACTIONS(930), + [anon_sym_BANG] = ACTIONS(930), + [anon_sym_AMP] = ACTIONS(930), + [anon_sym_PIPE] = ACTIONS(930), + [anon_sym_AMP_AMP] = ACTIONS(932), + [anon_sym_PIPE_PIPE] = ACTIONS(932), + [anon_sym_LT_LT] = ACTIONS(930), + [anon_sym_GT_GT] = ACTIONS(930), + [anon_sym_PLUS_EQ] = ACTIONS(932), + [anon_sym_DASH_EQ] = ACTIONS(932), + [anon_sym_STAR_EQ] = ACTIONS(932), + [anon_sym_SLASH_EQ] = ACTIONS(932), + [anon_sym_PERCENT_EQ] = ACTIONS(932), + [anon_sym_CARET_EQ] = ACTIONS(932), + [anon_sym_AMP_EQ] = ACTIONS(932), + [anon_sym_PIPE_EQ] = ACTIONS(932), + [anon_sym_LT_LT_EQ] = ACTIONS(932), + [anon_sym_GT_GT_EQ] = ACTIONS(932), + [anon_sym_EQ] = ACTIONS(930), + [anon_sym_EQ_EQ] = ACTIONS(932), + [anon_sym_BANG_EQ] = ACTIONS(932), + [anon_sym_GT] = ACTIONS(930), + [anon_sym_LT] = ACTIONS(930), + [anon_sym_GT_EQ] = ACTIONS(932), + [anon_sym_LT_EQ] = ACTIONS(932), + [anon_sym_AT] = ACTIONS(932), + [anon_sym__] = ACTIONS(930), + [anon_sym_DOT] = ACTIONS(930), + [anon_sym_DOT_DOT] = ACTIONS(930), + [anon_sym_DOT_DOT_DOT] = ACTIONS(932), + [anon_sym_DOT_DOT_EQ] = ACTIONS(932), + [anon_sym_COLON_COLON] = ACTIONS(932), + [anon_sym_DASH_GT] = ACTIONS(932), + [anon_sym_POUND] = ACTIONS(932), + [anon_sym_SQUOTE] = ACTIONS(930), + [anon_sym_as] = ACTIONS(930), + [anon_sym_async] = ACTIONS(930), + [anon_sym_await] = ACTIONS(930), + [anon_sym_break] = ACTIONS(930), + [anon_sym_const] = ACTIONS(930), + [anon_sym_continue] = ACTIONS(930), + [anon_sym_default] = ACTIONS(930), + [anon_sym_enum] = ACTIONS(930), + [anon_sym_fn] = ACTIONS(930), + [anon_sym_for] = ACTIONS(930), + [anon_sym_if] = ACTIONS(930), + [anon_sym_impl] = ACTIONS(930), + [anon_sym_let] = ACTIONS(930), + [anon_sym_loop] = ACTIONS(930), + [anon_sym_match] = ACTIONS(930), + [anon_sym_mod] = ACTIONS(930), + [anon_sym_pub] = ACTIONS(930), + [anon_sym_return] = ACTIONS(930), + [anon_sym_static] = ACTIONS(930), + [anon_sym_struct] = ACTIONS(930), + [anon_sym_trait] = ACTIONS(930), + [anon_sym_type] = ACTIONS(930), + [anon_sym_union] = ACTIONS(930), + [anon_sym_unsafe] = ACTIONS(930), + [anon_sym_use] = ACTIONS(930), + [anon_sym_where] = ACTIONS(930), + [anon_sym_while] = ACTIONS(930), + [sym_mutable_specifier] = ACTIONS(930), + [sym_integer_literal] = ACTIONS(932), + [aux_sym_string_literal_token1] = ACTIONS(932), + [sym_char_literal] = ACTIONS(932), + [anon_sym_true] = ACTIONS(930), + [anon_sym_false] = ACTIONS(930), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(930), + [sym_super] = ACTIONS(930), + [sym_crate] = ACTIONS(930), + [sym_metavariable] = ACTIONS(932), + [sym__raw_string_literal_start] = ACTIONS(932), + [sym_float_literal] = ACTIONS(932), }, [160] = { [sym_line_comment] = STATE(160), [sym_block_comment] = STATE(160), - [aux_sym__non_special_token_repeat1] = STATE(150), - [sym_identifier] = ACTIONS(947), - [anon_sym_SEMI] = ACTIONS(663), - [anon_sym_LPAREN] = ACTIONS(949), - [anon_sym_RPAREN] = ACTIONS(949), - [anon_sym_LBRACK] = ACTIONS(949), - [anon_sym_RBRACK] = ACTIONS(949), - [anon_sym_LBRACE] = ACTIONS(949), - [anon_sym_RBRACE] = ACTIONS(949), - [anon_sym_EQ_GT] = ACTIONS(663), - [anon_sym_COLON] = ACTIONS(673), - [anon_sym_DOLLAR] = ACTIONS(949), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_STAR] = ACTIONS(673), - [anon_sym_QMARK] = ACTIONS(663), - [anon_sym_u8] = ACTIONS(947), - [anon_sym_i8] = ACTIONS(947), - [anon_sym_u16] = ACTIONS(947), - [anon_sym_i16] = ACTIONS(947), - [anon_sym_u32] = ACTIONS(947), - [anon_sym_i32] = ACTIONS(947), - [anon_sym_u64] = ACTIONS(947), - [anon_sym_i64] = ACTIONS(947), - [anon_sym_u128] = ACTIONS(947), - [anon_sym_i128] = ACTIONS(947), - [anon_sym_isize] = ACTIONS(947), - [anon_sym_usize] = ACTIONS(947), - [anon_sym_f32] = ACTIONS(947), - [anon_sym_f64] = ACTIONS(947), - [anon_sym_bool] = ACTIONS(947), - [anon_sym_str] = ACTIONS(947), - [anon_sym_char] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_SLASH] = ACTIONS(673), - [anon_sym_PERCENT] = ACTIONS(673), - [anon_sym_CARET] = ACTIONS(673), - [anon_sym_BANG] = ACTIONS(673), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE] = ACTIONS(673), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [anon_sym_LT_LT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(673), - [anon_sym_PLUS_EQ] = ACTIONS(663), - [anon_sym_DASH_EQ] = ACTIONS(663), - [anon_sym_STAR_EQ] = ACTIONS(663), - [anon_sym_SLASH_EQ] = ACTIONS(663), - [anon_sym_PERCENT_EQ] = ACTIONS(663), - [anon_sym_CARET_EQ] = ACTIONS(663), - [anon_sym_AMP_EQ] = ACTIONS(663), - [anon_sym_PIPE_EQ] = ACTIONS(663), - [anon_sym_LT_LT_EQ] = ACTIONS(663), - [anon_sym_GT_GT_EQ] = ACTIONS(663), - [anon_sym_EQ] = ACTIONS(673), - [anon_sym_EQ_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_AT] = ACTIONS(663), - [anon_sym__] = ACTIONS(673), - [anon_sym_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT] = ACTIONS(673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_COLON_COLON] = ACTIONS(663), - [anon_sym_DASH_GT] = ACTIONS(663), - [anon_sym_POUND] = ACTIONS(663), - [anon_sym_SQUOTE] = ACTIONS(947), - [anon_sym_as] = ACTIONS(947), - [anon_sym_async] = ACTIONS(947), - [anon_sym_await] = ACTIONS(947), - [anon_sym_break] = ACTIONS(947), - [anon_sym_const] = ACTIONS(947), - [anon_sym_continue] = ACTIONS(947), - [anon_sym_default] = ACTIONS(947), - [anon_sym_enum] = ACTIONS(947), - [anon_sym_fn] = ACTIONS(947), - [anon_sym_for] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_impl] = ACTIONS(947), - [anon_sym_let] = ACTIONS(947), - [anon_sym_loop] = ACTIONS(947), - [anon_sym_match] = ACTIONS(947), - [anon_sym_mod] = ACTIONS(947), - [anon_sym_pub] = ACTIONS(947), - [anon_sym_return] = ACTIONS(947), - [anon_sym_static] = ACTIONS(947), - [anon_sym_struct] = ACTIONS(947), - [anon_sym_trait] = ACTIONS(947), - [anon_sym_type] = ACTIONS(947), - [anon_sym_union] = ACTIONS(947), - [anon_sym_unsafe] = ACTIONS(947), - [anon_sym_use] = ACTIONS(947), - [anon_sym_where] = ACTIONS(947), - [anon_sym_while] = ACTIONS(947), - [sym_mutable_specifier] = ACTIONS(947), - [sym_integer_literal] = ACTIONS(949), - [aux_sym_string_literal_token1] = ACTIONS(949), - [sym_char_literal] = ACTIONS(949), - [anon_sym_true] = ACTIONS(947), - [anon_sym_false] = ACTIONS(947), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(947), - [sym_super] = ACTIONS(947), - [sym_crate] = ACTIONS(947), - [sym__raw_string_literal_start] = ACTIONS(949), - [sym_float_literal] = ACTIONS(949), + [sym_identifier] = ACTIONS(934), + [anon_sym_SEMI] = ACTIONS(936), + [anon_sym_LPAREN] = ACTIONS(936), + [anon_sym_RPAREN] = ACTIONS(936), + [anon_sym_LBRACK] = ACTIONS(936), + [anon_sym_RBRACK] = ACTIONS(936), + [anon_sym_LBRACE] = ACTIONS(936), + [anon_sym_RBRACE] = ACTIONS(936), + [anon_sym_COMMA] = ACTIONS(936), + [anon_sym_EQ_GT] = ACTIONS(936), + [anon_sym_COLON] = ACTIONS(934), + [anon_sym_DOLLAR] = ACTIONS(934), + [anon_sym_PLUS] = ACTIONS(934), + [anon_sym_STAR] = ACTIONS(934), + [anon_sym_QMARK] = ACTIONS(936), + [anon_sym_u8] = ACTIONS(934), + [anon_sym_i8] = ACTIONS(934), + [anon_sym_u16] = ACTIONS(934), + [anon_sym_i16] = ACTIONS(934), + [anon_sym_u32] = ACTIONS(934), + [anon_sym_i32] = ACTIONS(934), + [anon_sym_u64] = ACTIONS(934), + [anon_sym_i64] = ACTIONS(934), + [anon_sym_u128] = ACTIONS(934), + [anon_sym_i128] = ACTIONS(934), + [anon_sym_isize] = ACTIONS(934), + [anon_sym_usize] = ACTIONS(934), + [anon_sym_f32] = ACTIONS(934), + [anon_sym_f64] = ACTIONS(934), + [anon_sym_bool] = ACTIONS(934), + [anon_sym_str] = ACTIONS(934), + [anon_sym_char] = ACTIONS(934), + [anon_sym_DASH] = ACTIONS(934), + [anon_sym_SLASH] = ACTIONS(934), + [anon_sym_PERCENT] = ACTIONS(934), + [anon_sym_CARET] = ACTIONS(934), + [anon_sym_BANG] = ACTIONS(934), + [anon_sym_AMP] = ACTIONS(934), + [anon_sym_PIPE] = ACTIONS(934), + [anon_sym_AMP_AMP] = ACTIONS(936), + [anon_sym_PIPE_PIPE] = ACTIONS(936), + [anon_sym_LT_LT] = ACTIONS(934), + [anon_sym_GT_GT] = ACTIONS(934), + [anon_sym_PLUS_EQ] = ACTIONS(936), + [anon_sym_DASH_EQ] = ACTIONS(936), + [anon_sym_STAR_EQ] = ACTIONS(936), + [anon_sym_SLASH_EQ] = ACTIONS(936), + [anon_sym_PERCENT_EQ] = ACTIONS(936), + [anon_sym_CARET_EQ] = ACTIONS(936), + [anon_sym_AMP_EQ] = ACTIONS(936), + [anon_sym_PIPE_EQ] = ACTIONS(936), + [anon_sym_LT_LT_EQ] = ACTIONS(936), + [anon_sym_GT_GT_EQ] = ACTIONS(936), + [anon_sym_EQ] = ACTIONS(934), + [anon_sym_EQ_EQ] = ACTIONS(936), + [anon_sym_BANG_EQ] = ACTIONS(936), + [anon_sym_GT] = ACTIONS(934), + [anon_sym_LT] = ACTIONS(934), + [anon_sym_GT_EQ] = ACTIONS(936), + [anon_sym_LT_EQ] = ACTIONS(936), + [anon_sym_AT] = ACTIONS(936), + [anon_sym__] = ACTIONS(934), + [anon_sym_DOT] = ACTIONS(934), + [anon_sym_DOT_DOT] = ACTIONS(934), + [anon_sym_DOT_DOT_DOT] = ACTIONS(936), + [anon_sym_DOT_DOT_EQ] = ACTIONS(936), + [anon_sym_COLON_COLON] = ACTIONS(936), + [anon_sym_DASH_GT] = ACTIONS(936), + [anon_sym_POUND] = ACTIONS(936), + [anon_sym_SQUOTE] = ACTIONS(934), + [anon_sym_as] = ACTIONS(934), + [anon_sym_async] = ACTIONS(934), + [anon_sym_await] = ACTIONS(934), + [anon_sym_break] = ACTIONS(934), + [anon_sym_const] = ACTIONS(934), + [anon_sym_continue] = ACTIONS(934), + [anon_sym_default] = ACTIONS(934), + [anon_sym_enum] = ACTIONS(934), + [anon_sym_fn] = ACTIONS(934), + [anon_sym_for] = ACTIONS(934), + [anon_sym_if] = ACTIONS(934), + [anon_sym_impl] = ACTIONS(934), + [anon_sym_let] = ACTIONS(934), + [anon_sym_loop] = ACTIONS(934), + [anon_sym_match] = ACTIONS(934), + [anon_sym_mod] = ACTIONS(934), + [anon_sym_pub] = ACTIONS(934), + [anon_sym_return] = ACTIONS(934), + [anon_sym_static] = ACTIONS(934), + [anon_sym_struct] = ACTIONS(934), + [anon_sym_trait] = ACTIONS(934), + [anon_sym_type] = ACTIONS(934), + [anon_sym_union] = ACTIONS(934), + [anon_sym_unsafe] = ACTIONS(934), + [anon_sym_use] = ACTIONS(934), + [anon_sym_where] = ACTIONS(934), + [anon_sym_while] = ACTIONS(934), + [sym_mutable_specifier] = ACTIONS(934), + [sym_integer_literal] = ACTIONS(936), + [aux_sym_string_literal_token1] = ACTIONS(936), + [sym_char_literal] = ACTIONS(936), + [anon_sym_true] = ACTIONS(934), + [anon_sym_false] = ACTIONS(934), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(934), + [sym_super] = ACTIONS(934), + [sym_crate] = ACTIONS(934), + [sym_metavariable] = ACTIONS(936), + [sym__raw_string_literal_start] = ACTIONS(936), + [sym_float_literal] = ACTIONS(936), }, [161] = { - [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1576), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(161), [sym_block_comment] = STATE(161), - [aux_sym_enum_variant_list_repeat1] = STATE(1002), - [sym_identifier] = ACTIONS(787), - [anon_sym_LPAREN] = ACTIONS(790), - [anon_sym_LBRACK] = ACTIONS(793), - [anon_sym_RBRACK] = ACTIONS(796), - [anon_sym_LBRACE] = ACTIONS(798), - [anon_sym_STAR] = ACTIONS(801), - [anon_sym_u8] = ACTIONS(804), - [anon_sym_i8] = ACTIONS(804), - [anon_sym_u16] = ACTIONS(804), - [anon_sym_i16] = ACTIONS(804), - [anon_sym_u32] = ACTIONS(804), - [anon_sym_i32] = ACTIONS(804), - [anon_sym_u64] = ACTIONS(804), - [anon_sym_i64] = ACTIONS(804), - [anon_sym_u128] = ACTIONS(804), - [anon_sym_i128] = ACTIONS(804), - [anon_sym_isize] = ACTIONS(804), - [anon_sym_usize] = ACTIONS(804), - [anon_sym_f32] = ACTIONS(804), - [anon_sym_f64] = ACTIONS(804), - [anon_sym_bool] = ACTIONS(804), - [anon_sym_str] = ACTIONS(804), - [anon_sym_char] = ACTIONS(804), - [anon_sym_DASH] = ACTIONS(801), - [anon_sym_BANG] = ACTIONS(801), - [anon_sym_AMP] = ACTIONS(807), - [anon_sym_PIPE] = ACTIONS(810), - [anon_sym_LT] = ACTIONS(813), - [anon_sym_DOT_DOT] = ACTIONS(816), - [anon_sym_COMMA] = ACTIONS(796), - [anon_sym_COLON_COLON] = ACTIONS(819), - [anon_sym_POUND] = ACTIONS(822), - [anon_sym_SQUOTE] = ACTIONS(825), - [anon_sym_async] = ACTIONS(828), - [anon_sym_break] = ACTIONS(831), - [anon_sym_const] = ACTIONS(834), - [anon_sym_continue] = ACTIONS(837), - [anon_sym_default] = ACTIONS(840), - [anon_sym_for] = ACTIONS(843), - [anon_sym_if] = ACTIONS(846), - [anon_sym_loop] = ACTIONS(849), - [anon_sym_match] = ACTIONS(852), - [anon_sym_return] = ACTIONS(855), - [anon_sym_static] = ACTIONS(858), - [anon_sym_union] = ACTIONS(840), - [anon_sym_unsafe] = ACTIONS(861), - [anon_sym_while] = ACTIONS(864), - [anon_sym_yield] = ACTIONS(867), - [anon_sym_move] = ACTIONS(870), - [anon_sym_try] = ACTIONS(873), - [sym_integer_literal] = ACTIONS(876), - [aux_sym_string_literal_token1] = ACTIONS(879), - [sym_char_literal] = ACTIONS(876), - [anon_sym_true] = ACTIONS(882), - [anon_sym_false] = ACTIONS(882), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(885), - [sym_super] = ACTIONS(888), - [sym_crate] = ACTIONS(888), - [sym_metavariable] = ACTIONS(891), - [sym__raw_string_literal_start] = ACTIONS(894), - [sym_float_literal] = ACTIONS(876), + [sym_identifier] = ACTIONS(938), + [anon_sym_SEMI] = ACTIONS(940), + [anon_sym_LPAREN] = ACTIONS(940), + [anon_sym_RPAREN] = ACTIONS(940), + [anon_sym_LBRACK] = ACTIONS(940), + [anon_sym_RBRACK] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(940), + [anon_sym_RBRACE] = ACTIONS(940), + [anon_sym_COMMA] = ACTIONS(940), + [anon_sym_EQ_GT] = ACTIONS(940), + [anon_sym_COLON] = ACTIONS(938), + [anon_sym_DOLLAR] = ACTIONS(938), + [anon_sym_PLUS] = ACTIONS(938), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_QMARK] = ACTIONS(940), + [anon_sym_u8] = ACTIONS(938), + [anon_sym_i8] = ACTIONS(938), + [anon_sym_u16] = ACTIONS(938), + [anon_sym_i16] = ACTIONS(938), + [anon_sym_u32] = ACTIONS(938), + [anon_sym_i32] = ACTIONS(938), + [anon_sym_u64] = ACTIONS(938), + [anon_sym_i64] = ACTIONS(938), + [anon_sym_u128] = ACTIONS(938), + [anon_sym_i128] = ACTIONS(938), + [anon_sym_isize] = ACTIONS(938), + [anon_sym_usize] = ACTIONS(938), + [anon_sym_f32] = ACTIONS(938), + [anon_sym_f64] = ACTIONS(938), + [anon_sym_bool] = ACTIONS(938), + [anon_sym_str] = ACTIONS(938), + [anon_sym_char] = ACTIONS(938), + [anon_sym_DASH] = ACTIONS(938), + [anon_sym_SLASH] = ACTIONS(938), + [anon_sym_PERCENT] = ACTIONS(938), + [anon_sym_CARET] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(938), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_PIPE] = ACTIONS(938), + [anon_sym_AMP_AMP] = ACTIONS(940), + [anon_sym_PIPE_PIPE] = ACTIONS(940), + [anon_sym_LT_LT] = ACTIONS(938), + [anon_sym_GT_GT] = ACTIONS(938), + [anon_sym_PLUS_EQ] = ACTIONS(940), + [anon_sym_DASH_EQ] = ACTIONS(940), + [anon_sym_STAR_EQ] = ACTIONS(940), + [anon_sym_SLASH_EQ] = ACTIONS(940), + [anon_sym_PERCENT_EQ] = ACTIONS(940), + [anon_sym_CARET_EQ] = ACTIONS(940), + [anon_sym_AMP_EQ] = ACTIONS(940), + [anon_sym_PIPE_EQ] = ACTIONS(940), + [anon_sym_LT_LT_EQ] = ACTIONS(940), + [anon_sym_GT_GT_EQ] = ACTIONS(940), + [anon_sym_EQ] = ACTIONS(938), + [anon_sym_EQ_EQ] = ACTIONS(940), + [anon_sym_BANG_EQ] = ACTIONS(940), + [anon_sym_GT] = ACTIONS(938), + [anon_sym_LT] = ACTIONS(938), + [anon_sym_GT_EQ] = ACTIONS(940), + [anon_sym_LT_EQ] = ACTIONS(940), + [anon_sym_AT] = ACTIONS(940), + [anon_sym__] = ACTIONS(938), + [anon_sym_DOT] = ACTIONS(938), + [anon_sym_DOT_DOT] = ACTIONS(938), + [anon_sym_DOT_DOT_DOT] = ACTIONS(940), + [anon_sym_DOT_DOT_EQ] = ACTIONS(940), + [anon_sym_COLON_COLON] = ACTIONS(940), + [anon_sym_DASH_GT] = ACTIONS(940), + [anon_sym_POUND] = ACTIONS(940), + [anon_sym_SQUOTE] = ACTIONS(938), + [anon_sym_as] = ACTIONS(938), + [anon_sym_async] = ACTIONS(938), + [anon_sym_await] = ACTIONS(938), + [anon_sym_break] = ACTIONS(938), + [anon_sym_const] = ACTIONS(938), + [anon_sym_continue] = ACTIONS(938), + [anon_sym_default] = ACTIONS(938), + [anon_sym_enum] = ACTIONS(938), + [anon_sym_fn] = ACTIONS(938), + [anon_sym_for] = ACTIONS(938), + [anon_sym_if] = ACTIONS(938), + [anon_sym_impl] = ACTIONS(938), + [anon_sym_let] = ACTIONS(938), + [anon_sym_loop] = ACTIONS(938), + [anon_sym_match] = ACTIONS(938), + [anon_sym_mod] = ACTIONS(938), + [anon_sym_pub] = ACTIONS(938), + [anon_sym_return] = ACTIONS(938), + [anon_sym_static] = ACTIONS(938), + [anon_sym_struct] = ACTIONS(938), + [anon_sym_trait] = ACTIONS(938), + [anon_sym_type] = ACTIONS(938), + [anon_sym_union] = ACTIONS(938), + [anon_sym_unsafe] = ACTIONS(938), + [anon_sym_use] = ACTIONS(938), + [anon_sym_where] = ACTIONS(938), + [anon_sym_while] = ACTIONS(938), + [sym_mutable_specifier] = ACTIONS(938), + [sym_integer_literal] = ACTIONS(940), + [aux_sym_string_literal_token1] = ACTIONS(940), + [sym_char_literal] = ACTIONS(940), + [anon_sym_true] = ACTIONS(938), + [anon_sym_false] = ACTIONS(938), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(938), + [sym_super] = ACTIONS(938), + [sym_crate] = ACTIONS(938), + [sym_metavariable] = ACTIONS(940), + [sym__raw_string_literal_start] = ACTIONS(940), + [sym_float_literal] = ACTIONS(940), }, [162] = { [sym_line_comment] = STATE(162), [sym_block_comment] = STATE(162), - [sym_identifier] = ACTIONS(951), - [anon_sym_SEMI] = ACTIONS(953), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_RPAREN] = ACTIONS(953), - [anon_sym_LBRACK] = ACTIONS(953), - [anon_sym_RBRACK] = ACTIONS(953), - [anon_sym_LBRACE] = ACTIONS(953), - [anon_sym_RBRACE] = ACTIONS(953), - [anon_sym_EQ_GT] = ACTIONS(953), - [anon_sym_COLON] = ACTIONS(951), - [anon_sym_DOLLAR] = ACTIONS(951), - [anon_sym_PLUS] = ACTIONS(951), - [anon_sym_STAR] = ACTIONS(951), - [anon_sym_QMARK] = ACTIONS(953), - [anon_sym_u8] = ACTIONS(951), - [anon_sym_i8] = ACTIONS(951), - [anon_sym_u16] = ACTIONS(951), - [anon_sym_i16] = ACTIONS(951), - [anon_sym_u32] = ACTIONS(951), - [anon_sym_i32] = ACTIONS(951), - [anon_sym_u64] = ACTIONS(951), - [anon_sym_i64] = ACTIONS(951), - [anon_sym_u128] = ACTIONS(951), - [anon_sym_i128] = ACTIONS(951), - [anon_sym_isize] = ACTIONS(951), - [anon_sym_usize] = ACTIONS(951), - [anon_sym_f32] = ACTIONS(951), - [anon_sym_f64] = ACTIONS(951), - [anon_sym_bool] = ACTIONS(951), - [anon_sym_str] = ACTIONS(951), - [anon_sym_char] = ACTIONS(951), - [anon_sym_DASH] = ACTIONS(951), - [anon_sym_SLASH] = ACTIONS(951), - [anon_sym_PERCENT] = ACTIONS(951), - [anon_sym_CARET] = ACTIONS(951), - [anon_sym_BANG] = ACTIONS(951), - [anon_sym_AMP] = ACTIONS(951), - [anon_sym_PIPE] = ACTIONS(951), - [anon_sym_AMP_AMP] = ACTIONS(953), - [anon_sym_PIPE_PIPE] = ACTIONS(953), - [anon_sym_LT_LT] = ACTIONS(951), - [anon_sym_GT_GT] = ACTIONS(951), - [anon_sym_PLUS_EQ] = ACTIONS(953), - [anon_sym_DASH_EQ] = ACTIONS(953), - [anon_sym_STAR_EQ] = ACTIONS(953), - [anon_sym_SLASH_EQ] = ACTIONS(953), - [anon_sym_PERCENT_EQ] = ACTIONS(953), - [anon_sym_CARET_EQ] = ACTIONS(953), - [anon_sym_AMP_EQ] = ACTIONS(953), - [anon_sym_PIPE_EQ] = ACTIONS(953), - [anon_sym_LT_LT_EQ] = ACTIONS(953), - [anon_sym_GT_GT_EQ] = ACTIONS(953), - [anon_sym_EQ] = ACTIONS(951), - [anon_sym_EQ_EQ] = ACTIONS(953), - [anon_sym_BANG_EQ] = ACTIONS(953), - [anon_sym_GT] = ACTIONS(951), - [anon_sym_LT] = ACTIONS(951), - [anon_sym_GT_EQ] = ACTIONS(953), - [anon_sym_LT_EQ] = ACTIONS(953), - [anon_sym_AT] = ACTIONS(953), - [anon_sym__] = ACTIONS(951), - [anon_sym_DOT] = ACTIONS(951), - [anon_sym_DOT_DOT] = ACTIONS(951), - [anon_sym_DOT_DOT_DOT] = ACTIONS(953), - [anon_sym_DOT_DOT_EQ] = ACTIONS(953), - [anon_sym_COMMA] = ACTIONS(953), - [anon_sym_COLON_COLON] = ACTIONS(953), - [anon_sym_DASH_GT] = ACTIONS(953), - [anon_sym_POUND] = ACTIONS(953), - [anon_sym_SQUOTE] = ACTIONS(951), - [anon_sym_as] = ACTIONS(951), - [anon_sym_async] = ACTIONS(951), - [anon_sym_await] = ACTIONS(951), - [anon_sym_break] = ACTIONS(951), - [anon_sym_const] = ACTIONS(951), - [anon_sym_continue] = ACTIONS(951), - [anon_sym_default] = ACTIONS(951), - [anon_sym_enum] = ACTIONS(951), - [anon_sym_fn] = ACTIONS(951), - [anon_sym_for] = ACTIONS(951), - [anon_sym_if] = ACTIONS(951), - [anon_sym_impl] = ACTIONS(951), - [anon_sym_let] = ACTIONS(951), - [anon_sym_loop] = ACTIONS(951), - [anon_sym_match] = ACTIONS(951), - [anon_sym_mod] = ACTIONS(951), - [anon_sym_pub] = ACTIONS(951), - [anon_sym_return] = ACTIONS(951), - [anon_sym_static] = ACTIONS(951), - [anon_sym_struct] = ACTIONS(951), - [anon_sym_trait] = ACTIONS(951), - [anon_sym_type] = ACTIONS(951), - [anon_sym_union] = ACTIONS(951), - [anon_sym_unsafe] = ACTIONS(951), - [anon_sym_use] = ACTIONS(951), - [anon_sym_where] = ACTIONS(951), - [anon_sym_while] = ACTIONS(951), - [sym_mutable_specifier] = ACTIONS(951), - [sym_integer_literal] = ACTIONS(953), - [aux_sym_string_literal_token1] = ACTIONS(953), - [sym_char_literal] = ACTIONS(953), - [anon_sym_true] = ACTIONS(951), - [anon_sym_false] = ACTIONS(951), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(951), - [sym_super] = ACTIONS(951), - [sym_crate] = ACTIONS(951), - [sym_metavariable] = ACTIONS(953), - [sym__raw_string_literal_start] = ACTIONS(953), - [sym_float_literal] = ACTIONS(953), + [sym_identifier] = ACTIONS(942), + [anon_sym_SEMI] = ACTIONS(944), + [anon_sym_LPAREN] = ACTIONS(944), + [anon_sym_RPAREN] = ACTIONS(944), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_RBRACK] = ACTIONS(944), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_RBRACE] = ACTIONS(944), + [anon_sym_COMMA] = ACTIONS(944), + [anon_sym_EQ_GT] = ACTIONS(944), + [anon_sym_COLON] = ACTIONS(942), + [anon_sym_DOLLAR] = ACTIONS(942), + [anon_sym_PLUS] = ACTIONS(942), + [anon_sym_STAR] = ACTIONS(942), + [anon_sym_QMARK] = ACTIONS(944), + [anon_sym_u8] = ACTIONS(942), + [anon_sym_i8] = ACTIONS(942), + [anon_sym_u16] = ACTIONS(942), + [anon_sym_i16] = ACTIONS(942), + [anon_sym_u32] = ACTIONS(942), + [anon_sym_i32] = ACTIONS(942), + [anon_sym_u64] = ACTIONS(942), + [anon_sym_i64] = ACTIONS(942), + [anon_sym_u128] = ACTIONS(942), + [anon_sym_i128] = ACTIONS(942), + [anon_sym_isize] = ACTIONS(942), + [anon_sym_usize] = ACTIONS(942), + [anon_sym_f32] = ACTIONS(942), + [anon_sym_f64] = ACTIONS(942), + [anon_sym_bool] = ACTIONS(942), + [anon_sym_str] = ACTIONS(942), + [anon_sym_char] = ACTIONS(942), + [anon_sym_DASH] = ACTIONS(942), + [anon_sym_SLASH] = ACTIONS(942), + [anon_sym_PERCENT] = ACTIONS(942), + [anon_sym_CARET] = ACTIONS(942), + [anon_sym_BANG] = ACTIONS(942), + [anon_sym_AMP] = ACTIONS(942), + [anon_sym_PIPE] = ACTIONS(942), + [anon_sym_AMP_AMP] = ACTIONS(944), + [anon_sym_PIPE_PIPE] = ACTIONS(944), + [anon_sym_LT_LT] = ACTIONS(942), + [anon_sym_GT_GT] = ACTIONS(942), + [anon_sym_PLUS_EQ] = ACTIONS(944), + [anon_sym_DASH_EQ] = ACTIONS(944), + [anon_sym_STAR_EQ] = ACTIONS(944), + [anon_sym_SLASH_EQ] = ACTIONS(944), + [anon_sym_PERCENT_EQ] = ACTIONS(944), + [anon_sym_CARET_EQ] = ACTIONS(944), + [anon_sym_AMP_EQ] = ACTIONS(944), + [anon_sym_PIPE_EQ] = ACTIONS(944), + [anon_sym_LT_LT_EQ] = ACTIONS(944), + [anon_sym_GT_GT_EQ] = ACTIONS(944), + [anon_sym_EQ] = ACTIONS(942), + [anon_sym_EQ_EQ] = ACTIONS(944), + [anon_sym_BANG_EQ] = ACTIONS(944), + [anon_sym_GT] = ACTIONS(942), + [anon_sym_LT] = ACTIONS(942), + [anon_sym_GT_EQ] = ACTIONS(944), + [anon_sym_LT_EQ] = ACTIONS(944), + [anon_sym_AT] = ACTIONS(944), + [anon_sym__] = ACTIONS(942), + [anon_sym_DOT] = ACTIONS(942), + [anon_sym_DOT_DOT] = ACTIONS(942), + [anon_sym_DOT_DOT_DOT] = ACTIONS(944), + [anon_sym_DOT_DOT_EQ] = ACTIONS(944), + [anon_sym_COLON_COLON] = ACTIONS(944), + [anon_sym_DASH_GT] = ACTIONS(944), + [anon_sym_POUND] = ACTIONS(944), + [anon_sym_SQUOTE] = ACTIONS(942), + [anon_sym_as] = ACTIONS(942), + [anon_sym_async] = ACTIONS(942), + [anon_sym_await] = ACTIONS(942), + [anon_sym_break] = ACTIONS(942), + [anon_sym_const] = ACTIONS(942), + [anon_sym_continue] = ACTIONS(942), + [anon_sym_default] = ACTIONS(942), + [anon_sym_enum] = ACTIONS(942), + [anon_sym_fn] = ACTIONS(942), + [anon_sym_for] = ACTIONS(942), + [anon_sym_if] = ACTIONS(942), + [anon_sym_impl] = ACTIONS(942), + [anon_sym_let] = ACTIONS(942), + [anon_sym_loop] = ACTIONS(942), + [anon_sym_match] = ACTIONS(942), + [anon_sym_mod] = ACTIONS(942), + [anon_sym_pub] = ACTIONS(942), + [anon_sym_return] = ACTIONS(942), + [anon_sym_static] = ACTIONS(942), + [anon_sym_struct] = ACTIONS(942), + [anon_sym_trait] = ACTIONS(942), + [anon_sym_type] = ACTIONS(942), + [anon_sym_union] = ACTIONS(942), + [anon_sym_unsafe] = ACTIONS(942), + [anon_sym_use] = ACTIONS(942), + [anon_sym_where] = ACTIONS(942), + [anon_sym_while] = ACTIONS(942), + [sym_mutable_specifier] = ACTIONS(942), + [sym_integer_literal] = ACTIONS(944), + [aux_sym_string_literal_token1] = ACTIONS(944), + [sym_char_literal] = ACTIONS(944), + [anon_sym_true] = ACTIONS(942), + [anon_sym_false] = ACTIONS(942), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(942), + [sym_super] = ACTIONS(942), + [sym_crate] = ACTIONS(942), + [sym_metavariable] = ACTIONS(944), + [sym__raw_string_literal_start] = ACTIONS(944), + [sym_float_literal] = ACTIONS(944), }, [163] = { - [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1543), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(163), [sym_block_comment] = STATE(163), - [aux_sym_enum_variant_list_repeat1] = STATE(161), - [sym_identifier] = ACTIONS(334), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(955), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COMMA] = ACTIONS(957), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(765), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [aux_sym__non_special_token_repeat1] = STATE(163), + [sym_identifier] = ACTIONS(748), + [anon_sym_SEMI] = ACTIONS(946), + [anon_sym_LPAREN] = ACTIONS(753), + [anon_sym_RPAREN] = ACTIONS(753), + [anon_sym_LBRACK] = ACTIONS(753), + [anon_sym_RBRACK] = ACTIONS(753), + [anon_sym_LBRACE] = ACTIONS(753), + [anon_sym_RBRACE] = ACTIONS(753), + [anon_sym_COMMA] = ACTIONS(946), + [anon_sym_EQ_GT] = ACTIONS(946), + [anon_sym_COLON] = ACTIONS(949), + [anon_sym_DOLLAR] = ACTIONS(753), + [anon_sym_PLUS] = ACTIONS(949), + [anon_sym_STAR] = ACTIONS(949), + [anon_sym_QMARK] = ACTIONS(946), + [anon_sym_u8] = ACTIONS(748), + [anon_sym_i8] = ACTIONS(748), + [anon_sym_u16] = ACTIONS(748), + [anon_sym_i16] = ACTIONS(748), + [anon_sym_u32] = ACTIONS(748), + [anon_sym_i32] = ACTIONS(748), + [anon_sym_u64] = ACTIONS(748), + [anon_sym_i64] = ACTIONS(748), + [anon_sym_u128] = ACTIONS(748), + [anon_sym_i128] = ACTIONS(748), + [anon_sym_isize] = ACTIONS(748), + [anon_sym_usize] = ACTIONS(748), + [anon_sym_f32] = ACTIONS(748), + [anon_sym_f64] = ACTIONS(748), + [anon_sym_bool] = ACTIONS(748), + [anon_sym_str] = ACTIONS(748), + [anon_sym_char] = ACTIONS(748), + [anon_sym_DASH] = ACTIONS(949), + [anon_sym_SLASH] = ACTIONS(949), + [anon_sym_PERCENT] = ACTIONS(949), + [anon_sym_CARET] = ACTIONS(949), + [anon_sym_BANG] = ACTIONS(949), + [anon_sym_AMP] = ACTIONS(949), + [anon_sym_PIPE] = ACTIONS(949), + [anon_sym_AMP_AMP] = ACTIONS(946), + [anon_sym_PIPE_PIPE] = ACTIONS(946), + [anon_sym_LT_LT] = ACTIONS(949), + [anon_sym_GT_GT] = ACTIONS(949), + [anon_sym_PLUS_EQ] = ACTIONS(946), + [anon_sym_DASH_EQ] = ACTIONS(946), + [anon_sym_STAR_EQ] = ACTIONS(946), + [anon_sym_SLASH_EQ] = ACTIONS(946), + [anon_sym_PERCENT_EQ] = ACTIONS(946), + [anon_sym_CARET_EQ] = ACTIONS(946), + [anon_sym_AMP_EQ] = ACTIONS(946), + [anon_sym_PIPE_EQ] = ACTIONS(946), + [anon_sym_LT_LT_EQ] = ACTIONS(946), + [anon_sym_GT_GT_EQ] = ACTIONS(946), + [anon_sym_EQ] = ACTIONS(949), + [anon_sym_EQ_EQ] = ACTIONS(946), + [anon_sym_BANG_EQ] = ACTIONS(946), + [anon_sym_GT] = ACTIONS(949), + [anon_sym_LT] = ACTIONS(949), + [anon_sym_GT_EQ] = ACTIONS(946), + [anon_sym_LT_EQ] = ACTIONS(946), + [anon_sym_AT] = ACTIONS(946), + [anon_sym__] = ACTIONS(949), + [anon_sym_DOT] = ACTIONS(949), + [anon_sym_DOT_DOT] = ACTIONS(949), + [anon_sym_DOT_DOT_DOT] = ACTIONS(946), + [anon_sym_DOT_DOT_EQ] = ACTIONS(946), + [anon_sym_COLON_COLON] = ACTIONS(946), + [anon_sym_DASH_GT] = ACTIONS(946), + [anon_sym_POUND] = ACTIONS(946), + [anon_sym_SQUOTE] = ACTIONS(748), + [anon_sym_as] = ACTIONS(748), + [anon_sym_async] = ACTIONS(748), + [anon_sym_await] = ACTIONS(748), + [anon_sym_break] = ACTIONS(748), + [anon_sym_const] = ACTIONS(748), + [anon_sym_continue] = ACTIONS(748), + [anon_sym_default] = ACTIONS(748), + [anon_sym_enum] = ACTIONS(748), + [anon_sym_fn] = ACTIONS(748), + [anon_sym_for] = ACTIONS(748), + [anon_sym_if] = ACTIONS(748), + [anon_sym_impl] = ACTIONS(748), + [anon_sym_let] = ACTIONS(748), + [anon_sym_loop] = ACTIONS(748), + [anon_sym_match] = ACTIONS(748), + [anon_sym_mod] = ACTIONS(748), + [anon_sym_pub] = ACTIONS(748), + [anon_sym_return] = ACTIONS(748), + [anon_sym_static] = ACTIONS(748), + [anon_sym_struct] = ACTIONS(748), + [anon_sym_trait] = ACTIONS(748), + [anon_sym_type] = ACTIONS(748), + [anon_sym_union] = ACTIONS(748), + [anon_sym_unsafe] = ACTIONS(748), + [anon_sym_use] = ACTIONS(748), + [anon_sym_where] = ACTIONS(748), + [anon_sym_while] = ACTIONS(748), + [sym_mutable_specifier] = ACTIONS(748), + [sym_integer_literal] = ACTIONS(753), + [aux_sym_string_literal_token1] = ACTIONS(753), + [sym_char_literal] = ACTIONS(753), + [anon_sym_true] = ACTIONS(748), + [anon_sym_false] = ACTIONS(748), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(748), + [sym_super] = ACTIONS(748), + [sym_crate] = ACTIONS(748), + [sym__raw_string_literal_start] = ACTIONS(753), + [sym_float_literal] = ACTIONS(753), }, [164] = { + [sym_attribute_item] = STATE(1023), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1595), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1419), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(164), [sym_block_comment] = STATE(164), - [sym_identifier] = ACTIONS(959), - [anon_sym_SEMI] = ACTIONS(961), - [anon_sym_LPAREN] = ACTIONS(961), - [anon_sym_RPAREN] = ACTIONS(961), - [anon_sym_LBRACK] = ACTIONS(961), - [anon_sym_RBRACK] = ACTIONS(961), - [anon_sym_LBRACE] = ACTIONS(961), - [anon_sym_RBRACE] = ACTIONS(961), - [anon_sym_EQ_GT] = ACTIONS(961), - [anon_sym_COLON] = ACTIONS(959), - [anon_sym_DOLLAR] = ACTIONS(959), - [anon_sym_PLUS] = ACTIONS(959), - [anon_sym_STAR] = ACTIONS(959), - [anon_sym_QMARK] = ACTIONS(961), - [anon_sym_u8] = ACTIONS(959), - [anon_sym_i8] = ACTIONS(959), - [anon_sym_u16] = ACTIONS(959), - [anon_sym_i16] = ACTIONS(959), - [anon_sym_u32] = ACTIONS(959), - [anon_sym_i32] = ACTIONS(959), - [anon_sym_u64] = ACTIONS(959), - [anon_sym_i64] = ACTIONS(959), - [anon_sym_u128] = ACTIONS(959), - [anon_sym_i128] = ACTIONS(959), - [anon_sym_isize] = ACTIONS(959), - [anon_sym_usize] = ACTIONS(959), - [anon_sym_f32] = ACTIONS(959), - [anon_sym_f64] = ACTIONS(959), - [anon_sym_bool] = ACTIONS(959), - [anon_sym_str] = ACTIONS(959), - [anon_sym_char] = ACTIONS(959), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_SLASH] = ACTIONS(959), - [anon_sym_PERCENT] = ACTIONS(959), - [anon_sym_CARET] = ACTIONS(959), - [anon_sym_BANG] = ACTIONS(959), - [anon_sym_AMP] = ACTIONS(959), - [anon_sym_PIPE] = ACTIONS(959), - [anon_sym_AMP_AMP] = ACTIONS(961), - [anon_sym_PIPE_PIPE] = ACTIONS(961), - [anon_sym_LT_LT] = ACTIONS(959), - [anon_sym_GT_GT] = ACTIONS(959), - [anon_sym_PLUS_EQ] = ACTIONS(961), - [anon_sym_DASH_EQ] = ACTIONS(961), - [anon_sym_STAR_EQ] = ACTIONS(961), - [anon_sym_SLASH_EQ] = ACTIONS(961), - [anon_sym_PERCENT_EQ] = ACTIONS(961), - [anon_sym_CARET_EQ] = ACTIONS(961), - [anon_sym_AMP_EQ] = ACTIONS(961), - [anon_sym_PIPE_EQ] = ACTIONS(961), - [anon_sym_LT_LT_EQ] = ACTIONS(961), - [anon_sym_GT_GT_EQ] = ACTIONS(961), - [anon_sym_EQ] = ACTIONS(959), - [anon_sym_EQ_EQ] = ACTIONS(961), - [anon_sym_BANG_EQ] = ACTIONS(961), - [anon_sym_GT] = ACTIONS(959), - [anon_sym_LT] = ACTIONS(959), - [anon_sym_GT_EQ] = ACTIONS(961), - [anon_sym_LT_EQ] = ACTIONS(961), - [anon_sym_AT] = ACTIONS(961), - [anon_sym__] = ACTIONS(959), - [anon_sym_DOT] = ACTIONS(959), - [anon_sym_DOT_DOT] = ACTIONS(959), - [anon_sym_DOT_DOT_DOT] = ACTIONS(961), - [anon_sym_DOT_DOT_EQ] = ACTIONS(961), - [anon_sym_COMMA] = ACTIONS(961), - [anon_sym_COLON_COLON] = ACTIONS(961), - [anon_sym_DASH_GT] = ACTIONS(961), - [anon_sym_POUND] = ACTIONS(961), - [anon_sym_SQUOTE] = ACTIONS(959), - [anon_sym_as] = ACTIONS(959), - [anon_sym_async] = ACTIONS(959), - [anon_sym_await] = ACTIONS(959), - [anon_sym_break] = ACTIONS(959), - [anon_sym_const] = ACTIONS(959), - [anon_sym_continue] = ACTIONS(959), - [anon_sym_default] = ACTIONS(959), - [anon_sym_enum] = ACTIONS(959), - [anon_sym_fn] = ACTIONS(959), - [anon_sym_for] = ACTIONS(959), - [anon_sym_if] = ACTIONS(959), - [anon_sym_impl] = ACTIONS(959), - [anon_sym_let] = ACTIONS(959), - [anon_sym_loop] = ACTIONS(959), - [anon_sym_match] = ACTIONS(959), - [anon_sym_mod] = ACTIONS(959), - [anon_sym_pub] = ACTIONS(959), - [anon_sym_return] = ACTIONS(959), - [anon_sym_static] = ACTIONS(959), - [anon_sym_struct] = ACTIONS(959), - [anon_sym_trait] = ACTIONS(959), - [anon_sym_type] = ACTIONS(959), - [anon_sym_union] = ACTIONS(959), - [anon_sym_unsafe] = ACTIONS(959), - [anon_sym_use] = ACTIONS(959), - [anon_sym_where] = ACTIONS(959), - [anon_sym_while] = ACTIONS(959), - [sym_mutable_specifier] = ACTIONS(959), - [sym_integer_literal] = ACTIONS(961), - [aux_sym_string_literal_token1] = ACTIONS(961), - [sym_char_literal] = ACTIONS(961), - [anon_sym_true] = ACTIONS(959), - [anon_sym_false] = ACTIONS(959), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(959), - [sym_super] = ACTIONS(959), - [sym_crate] = ACTIONS(959), - [sym_metavariable] = ACTIONS(961), - [sym__raw_string_literal_start] = ACTIONS(961), - [sym_float_literal] = ACTIONS(961), + [aux_sym_enum_variant_list_repeat1] = STATE(147), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(952), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_COMMA] = ACTIONS(954), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_POUND] = ACTIONS(774), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(365), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [165] = { [sym_line_comment] = STATE(165), [sym_block_comment] = STATE(165), - [sym_identifier] = ACTIONS(963), - [anon_sym_SEMI] = ACTIONS(965), - [anon_sym_LPAREN] = ACTIONS(965), - [anon_sym_RPAREN] = ACTIONS(965), - [anon_sym_LBRACK] = ACTIONS(965), - [anon_sym_RBRACK] = ACTIONS(965), - [anon_sym_LBRACE] = ACTIONS(965), - [anon_sym_RBRACE] = ACTIONS(965), - [anon_sym_EQ_GT] = ACTIONS(965), - [anon_sym_COLON] = ACTIONS(963), - [anon_sym_DOLLAR] = ACTIONS(963), - [anon_sym_PLUS] = ACTIONS(963), - [anon_sym_STAR] = ACTIONS(963), - [anon_sym_QMARK] = ACTIONS(965), - [anon_sym_u8] = ACTIONS(963), - [anon_sym_i8] = ACTIONS(963), - [anon_sym_u16] = ACTIONS(963), - [anon_sym_i16] = ACTIONS(963), - [anon_sym_u32] = ACTIONS(963), - [anon_sym_i32] = ACTIONS(963), - [anon_sym_u64] = ACTIONS(963), - [anon_sym_i64] = ACTIONS(963), - [anon_sym_u128] = ACTIONS(963), - [anon_sym_i128] = ACTIONS(963), - [anon_sym_isize] = ACTIONS(963), - [anon_sym_usize] = ACTIONS(963), - [anon_sym_f32] = ACTIONS(963), - [anon_sym_f64] = ACTIONS(963), - [anon_sym_bool] = ACTIONS(963), - [anon_sym_str] = ACTIONS(963), - [anon_sym_char] = ACTIONS(963), - [anon_sym_DASH] = ACTIONS(963), - [anon_sym_SLASH] = ACTIONS(963), - [anon_sym_PERCENT] = ACTIONS(963), - [anon_sym_CARET] = ACTIONS(963), - [anon_sym_BANG] = ACTIONS(963), - [anon_sym_AMP] = ACTIONS(963), - [anon_sym_PIPE] = ACTIONS(963), - [anon_sym_AMP_AMP] = ACTIONS(965), - [anon_sym_PIPE_PIPE] = ACTIONS(965), - [anon_sym_LT_LT] = ACTIONS(963), - [anon_sym_GT_GT] = ACTIONS(963), - [anon_sym_PLUS_EQ] = ACTIONS(965), - [anon_sym_DASH_EQ] = ACTIONS(965), - [anon_sym_STAR_EQ] = ACTIONS(965), - [anon_sym_SLASH_EQ] = ACTIONS(965), - [anon_sym_PERCENT_EQ] = ACTIONS(965), - [anon_sym_CARET_EQ] = ACTIONS(965), - [anon_sym_AMP_EQ] = ACTIONS(965), - [anon_sym_PIPE_EQ] = ACTIONS(965), - [anon_sym_LT_LT_EQ] = ACTIONS(965), - [anon_sym_GT_GT_EQ] = ACTIONS(965), - [anon_sym_EQ] = ACTIONS(963), - [anon_sym_EQ_EQ] = ACTIONS(965), - [anon_sym_BANG_EQ] = ACTIONS(965), - [anon_sym_GT] = ACTIONS(963), - [anon_sym_LT] = ACTIONS(963), - [anon_sym_GT_EQ] = ACTIONS(965), - [anon_sym_LT_EQ] = ACTIONS(965), - [anon_sym_AT] = ACTIONS(965), - [anon_sym__] = ACTIONS(963), - [anon_sym_DOT] = ACTIONS(963), - [anon_sym_DOT_DOT] = ACTIONS(963), - [anon_sym_DOT_DOT_DOT] = ACTIONS(965), - [anon_sym_DOT_DOT_EQ] = ACTIONS(965), - [anon_sym_COMMA] = ACTIONS(965), - [anon_sym_COLON_COLON] = ACTIONS(965), - [anon_sym_DASH_GT] = ACTIONS(965), - [anon_sym_POUND] = ACTIONS(965), - [anon_sym_SQUOTE] = ACTIONS(963), - [anon_sym_as] = ACTIONS(963), - [anon_sym_async] = ACTIONS(963), - [anon_sym_await] = ACTIONS(963), - [anon_sym_break] = ACTIONS(963), - [anon_sym_const] = ACTIONS(963), - [anon_sym_continue] = ACTIONS(963), - [anon_sym_default] = ACTIONS(963), - [anon_sym_enum] = ACTIONS(963), - [anon_sym_fn] = ACTIONS(963), - [anon_sym_for] = ACTIONS(963), - [anon_sym_if] = ACTIONS(963), - [anon_sym_impl] = ACTIONS(963), - [anon_sym_let] = ACTIONS(963), - [anon_sym_loop] = ACTIONS(963), - [anon_sym_match] = ACTIONS(963), - [anon_sym_mod] = ACTIONS(963), - [anon_sym_pub] = ACTIONS(963), - [anon_sym_return] = ACTIONS(963), - [anon_sym_static] = ACTIONS(963), - [anon_sym_struct] = ACTIONS(963), - [anon_sym_trait] = ACTIONS(963), - [anon_sym_type] = ACTIONS(963), - [anon_sym_union] = ACTIONS(963), - [anon_sym_unsafe] = ACTIONS(963), - [anon_sym_use] = ACTIONS(963), - [anon_sym_where] = ACTIONS(963), - [anon_sym_while] = ACTIONS(963), - [sym_mutable_specifier] = ACTIONS(963), - [sym_integer_literal] = ACTIONS(965), - [aux_sym_string_literal_token1] = ACTIONS(965), - [sym_char_literal] = ACTIONS(965), - [anon_sym_true] = ACTIONS(963), - [anon_sym_false] = ACTIONS(963), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(963), - [sym_super] = ACTIONS(963), - [sym_crate] = ACTIONS(963), - [sym_metavariable] = ACTIONS(965), - [sym__raw_string_literal_start] = ACTIONS(965), - [sym_float_literal] = ACTIONS(965), + [sym_identifier] = ACTIONS(956), + [anon_sym_SEMI] = ACTIONS(958), + [anon_sym_LPAREN] = ACTIONS(958), + [anon_sym_RPAREN] = ACTIONS(958), + [anon_sym_LBRACK] = ACTIONS(958), + [anon_sym_RBRACK] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(958), + [anon_sym_RBRACE] = ACTIONS(958), + [anon_sym_COMMA] = ACTIONS(958), + [anon_sym_EQ_GT] = ACTIONS(958), + [anon_sym_COLON] = ACTIONS(956), + [anon_sym_DOLLAR] = ACTIONS(956), + [anon_sym_PLUS] = ACTIONS(956), + [anon_sym_STAR] = ACTIONS(956), + [anon_sym_QMARK] = ACTIONS(958), + [anon_sym_u8] = ACTIONS(956), + [anon_sym_i8] = ACTIONS(956), + [anon_sym_u16] = ACTIONS(956), + [anon_sym_i16] = ACTIONS(956), + [anon_sym_u32] = ACTIONS(956), + [anon_sym_i32] = ACTIONS(956), + [anon_sym_u64] = ACTIONS(956), + [anon_sym_i64] = ACTIONS(956), + [anon_sym_u128] = ACTIONS(956), + [anon_sym_i128] = ACTIONS(956), + [anon_sym_isize] = ACTIONS(956), + [anon_sym_usize] = ACTIONS(956), + [anon_sym_f32] = ACTIONS(956), + [anon_sym_f64] = ACTIONS(956), + [anon_sym_bool] = ACTIONS(956), + [anon_sym_str] = ACTIONS(956), + [anon_sym_char] = ACTIONS(956), + [anon_sym_DASH] = ACTIONS(956), + [anon_sym_SLASH] = ACTIONS(956), + [anon_sym_PERCENT] = ACTIONS(956), + [anon_sym_CARET] = ACTIONS(956), + [anon_sym_BANG] = ACTIONS(956), + [anon_sym_AMP] = ACTIONS(956), + [anon_sym_PIPE] = ACTIONS(956), + [anon_sym_AMP_AMP] = ACTIONS(958), + [anon_sym_PIPE_PIPE] = ACTIONS(958), + [anon_sym_LT_LT] = ACTIONS(956), + [anon_sym_GT_GT] = ACTIONS(956), + [anon_sym_PLUS_EQ] = ACTIONS(958), + [anon_sym_DASH_EQ] = ACTIONS(958), + [anon_sym_STAR_EQ] = ACTIONS(958), + [anon_sym_SLASH_EQ] = ACTIONS(958), + [anon_sym_PERCENT_EQ] = ACTIONS(958), + [anon_sym_CARET_EQ] = ACTIONS(958), + [anon_sym_AMP_EQ] = ACTIONS(958), + [anon_sym_PIPE_EQ] = ACTIONS(958), + [anon_sym_LT_LT_EQ] = ACTIONS(958), + [anon_sym_GT_GT_EQ] = ACTIONS(958), + [anon_sym_EQ] = ACTIONS(956), + [anon_sym_EQ_EQ] = ACTIONS(958), + [anon_sym_BANG_EQ] = ACTIONS(958), + [anon_sym_GT] = ACTIONS(956), + [anon_sym_LT] = ACTIONS(956), + [anon_sym_GT_EQ] = ACTIONS(958), + [anon_sym_LT_EQ] = ACTIONS(958), + [anon_sym_AT] = ACTIONS(958), + [anon_sym__] = ACTIONS(956), + [anon_sym_DOT] = ACTIONS(956), + [anon_sym_DOT_DOT] = ACTIONS(956), + [anon_sym_DOT_DOT_DOT] = ACTIONS(958), + [anon_sym_DOT_DOT_EQ] = ACTIONS(958), + [anon_sym_COLON_COLON] = ACTIONS(958), + [anon_sym_DASH_GT] = ACTIONS(958), + [anon_sym_POUND] = ACTIONS(958), + [anon_sym_SQUOTE] = ACTIONS(956), + [anon_sym_as] = ACTIONS(956), + [anon_sym_async] = ACTIONS(956), + [anon_sym_await] = ACTIONS(956), + [anon_sym_break] = ACTIONS(956), + [anon_sym_const] = ACTIONS(956), + [anon_sym_continue] = ACTIONS(956), + [anon_sym_default] = ACTIONS(956), + [anon_sym_enum] = ACTIONS(956), + [anon_sym_fn] = ACTIONS(956), + [anon_sym_for] = ACTIONS(956), + [anon_sym_if] = ACTIONS(956), + [anon_sym_impl] = ACTIONS(956), + [anon_sym_let] = ACTIONS(956), + [anon_sym_loop] = ACTIONS(956), + [anon_sym_match] = ACTIONS(956), + [anon_sym_mod] = ACTIONS(956), + [anon_sym_pub] = ACTIONS(956), + [anon_sym_return] = ACTIONS(956), + [anon_sym_static] = ACTIONS(956), + [anon_sym_struct] = ACTIONS(956), + [anon_sym_trait] = ACTIONS(956), + [anon_sym_type] = ACTIONS(956), + [anon_sym_union] = ACTIONS(956), + [anon_sym_unsafe] = ACTIONS(956), + [anon_sym_use] = ACTIONS(956), + [anon_sym_where] = ACTIONS(956), + [anon_sym_while] = ACTIONS(956), + [sym_mutable_specifier] = ACTIONS(956), + [sym_integer_literal] = ACTIONS(958), + [aux_sym_string_literal_token1] = ACTIONS(958), + [sym_char_literal] = ACTIONS(958), + [anon_sym_true] = ACTIONS(956), + [anon_sym_false] = ACTIONS(956), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(956), + [sym_super] = ACTIONS(956), + [sym_crate] = ACTIONS(956), + [sym_metavariable] = ACTIONS(958), + [sym__raw_string_literal_start] = ACTIONS(958), + [sym_float_literal] = ACTIONS(958), }, [166] = { [sym_line_comment] = STATE(166), [sym_block_comment] = STATE(166), - [sym_identifier] = ACTIONS(741), - [anon_sym_SEMI] = ACTIONS(743), - [anon_sym_LPAREN] = ACTIONS(743), - [anon_sym_RPAREN] = ACTIONS(743), - [anon_sym_LBRACK] = ACTIONS(743), - [anon_sym_RBRACK] = ACTIONS(743), - [anon_sym_LBRACE] = ACTIONS(743), - [anon_sym_RBRACE] = ACTIONS(743), - [anon_sym_EQ_GT] = ACTIONS(743), - [anon_sym_COLON] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(741), - [anon_sym_PLUS] = ACTIONS(741), - [anon_sym_STAR] = ACTIONS(741), - [anon_sym_QMARK] = ACTIONS(743), - [anon_sym_u8] = ACTIONS(741), - [anon_sym_i8] = ACTIONS(741), - [anon_sym_u16] = ACTIONS(741), - [anon_sym_i16] = ACTIONS(741), - [anon_sym_u32] = ACTIONS(741), - [anon_sym_i32] = ACTIONS(741), - [anon_sym_u64] = ACTIONS(741), - [anon_sym_i64] = ACTIONS(741), - [anon_sym_u128] = ACTIONS(741), - [anon_sym_i128] = ACTIONS(741), - [anon_sym_isize] = ACTIONS(741), - [anon_sym_usize] = ACTIONS(741), - [anon_sym_f32] = ACTIONS(741), - [anon_sym_f64] = ACTIONS(741), - [anon_sym_bool] = ACTIONS(741), - [anon_sym_str] = ACTIONS(741), - [anon_sym_char] = ACTIONS(741), - [anon_sym_DASH] = ACTIONS(741), - [anon_sym_SLASH] = ACTIONS(741), - [anon_sym_PERCENT] = ACTIONS(741), - [anon_sym_CARET] = ACTIONS(741), - [anon_sym_BANG] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(741), - [anon_sym_PIPE] = ACTIONS(741), - [anon_sym_AMP_AMP] = ACTIONS(743), - [anon_sym_PIPE_PIPE] = ACTIONS(743), - [anon_sym_LT_LT] = ACTIONS(741), - [anon_sym_GT_GT] = ACTIONS(741), - [anon_sym_PLUS_EQ] = ACTIONS(743), - [anon_sym_DASH_EQ] = ACTIONS(743), - [anon_sym_STAR_EQ] = ACTIONS(743), - [anon_sym_SLASH_EQ] = ACTIONS(743), - [anon_sym_PERCENT_EQ] = ACTIONS(743), - [anon_sym_CARET_EQ] = ACTIONS(743), - [anon_sym_AMP_EQ] = ACTIONS(743), - [anon_sym_PIPE_EQ] = ACTIONS(743), - [anon_sym_LT_LT_EQ] = ACTIONS(743), - [anon_sym_GT_GT_EQ] = ACTIONS(743), - [anon_sym_EQ] = ACTIONS(741), - [anon_sym_EQ_EQ] = ACTIONS(743), - [anon_sym_BANG_EQ] = ACTIONS(743), - [anon_sym_GT] = ACTIONS(741), - [anon_sym_LT] = ACTIONS(741), - [anon_sym_GT_EQ] = ACTIONS(743), - [anon_sym_LT_EQ] = ACTIONS(743), - [anon_sym_AT] = ACTIONS(743), - [anon_sym__] = ACTIONS(741), - [anon_sym_DOT] = ACTIONS(741), - [anon_sym_DOT_DOT] = ACTIONS(741), - [anon_sym_DOT_DOT_DOT] = ACTIONS(743), - [anon_sym_DOT_DOT_EQ] = ACTIONS(743), - [anon_sym_COMMA] = ACTIONS(743), - [anon_sym_COLON_COLON] = ACTIONS(743), - [anon_sym_DASH_GT] = ACTIONS(743), - [anon_sym_POUND] = ACTIONS(743), - [anon_sym_SQUOTE] = ACTIONS(741), - [anon_sym_as] = ACTIONS(741), - [anon_sym_async] = ACTIONS(741), - [anon_sym_await] = ACTIONS(741), - [anon_sym_break] = ACTIONS(741), - [anon_sym_const] = ACTIONS(741), - [anon_sym_continue] = ACTIONS(741), - [anon_sym_default] = ACTIONS(741), - [anon_sym_enum] = ACTIONS(741), - [anon_sym_fn] = ACTIONS(741), - [anon_sym_for] = ACTIONS(741), - [anon_sym_if] = ACTIONS(741), - [anon_sym_impl] = ACTIONS(741), - [anon_sym_let] = ACTIONS(741), - [anon_sym_loop] = ACTIONS(741), - [anon_sym_match] = ACTIONS(741), - [anon_sym_mod] = ACTIONS(741), - [anon_sym_pub] = ACTIONS(741), - [anon_sym_return] = ACTIONS(741), - [anon_sym_static] = ACTIONS(741), - [anon_sym_struct] = ACTIONS(741), - [anon_sym_trait] = ACTIONS(741), - [anon_sym_type] = ACTIONS(741), - [anon_sym_union] = ACTIONS(741), - [anon_sym_unsafe] = ACTIONS(741), - [anon_sym_use] = ACTIONS(741), - [anon_sym_where] = ACTIONS(741), - [anon_sym_while] = ACTIONS(741), - [sym_mutable_specifier] = ACTIONS(741), - [sym_integer_literal] = ACTIONS(743), - [aux_sym_string_literal_token1] = ACTIONS(743), - [sym_char_literal] = ACTIONS(743), - [anon_sym_true] = ACTIONS(741), - [anon_sym_false] = ACTIONS(741), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(741), - [sym_super] = ACTIONS(741), - [sym_crate] = ACTIONS(741), - [sym_metavariable] = ACTIONS(743), - [sym__raw_string_literal_start] = ACTIONS(743), - [sym_float_literal] = ACTIONS(743), + [sym_identifier] = ACTIONS(960), + [anon_sym_SEMI] = ACTIONS(962), + [anon_sym_LPAREN] = ACTIONS(962), + [anon_sym_RPAREN] = ACTIONS(962), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_RBRACK] = ACTIONS(962), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_RBRACE] = ACTIONS(962), + [anon_sym_COMMA] = ACTIONS(962), + [anon_sym_EQ_GT] = ACTIONS(962), + [anon_sym_COLON] = ACTIONS(960), + [anon_sym_DOLLAR] = ACTIONS(960), + [anon_sym_PLUS] = ACTIONS(960), + [anon_sym_STAR] = ACTIONS(960), + [anon_sym_QMARK] = ACTIONS(962), + [anon_sym_u8] = ACTIONS(960), + [anon_sym_i8] = ACTIONS(960), + [anon_sym_u16] = ACTIONS(960), + [anon_sym_i16] = ACTIONS(960), + [anon_sym_u32] = ACTIONS(960), + [anon_sym_i32] = ACTIONS(960), + [anon_sym_u64] = ACTIONS(960), + [anon_sym_i64] = ACTIONS(960), + [anon_sym_u128] = ACTIONS(960), + [anon_sym_i128] = ACTIONS(960), + [anon_sym_isize] = ACTIONS(960), + [anon_sym_usize] = ACTIONS(960), + [anon_sym_f32] = ACTIONS(960), + [anon_sym_f64] = ACTIONS(960), + [anon_sym_bool] = ACTIONS(960), + [anon_sym_str] = ACTIONS(960), + [anon_sym_char] = ACTIONS(960), + [anon_sym_DASH] = ACTIONS(960), + [anon_sym_SLASH] = ACTIONS(960), + [anon_sym_PERCENT] = ACTIONS(960), + [anon_sym_CARET] = ACTIONS(960), + [anon_sym_BANG] = ACTIONS(960), + [anon_sym_AMP] = ACTIONS(960), + [anon_sym_PIPE] = ACTIONS(960), + [anon_sym_AMP_AMP] = ACTIONS(962), + [anon_sym_PIPE_PIPE] = ACTIONS(962), + [anon_sym_LT_LT] = ACTIONS(960), + [anon_sym_GT_GT] = ACTIONS(960), + [anon_sym_PLUS_EQ] = ACTIONS(962), + [anon_sym_DASH_EQ] = ACTIONS(962), + [anon_sym_STAR_EQ] = ACTIONS(962), + [anon_sym_SLASH_EQ] = ACTIONS(962), + [anon_sym_PERCENT_EQ] = ACTIONS(962), + [anon_sym_CARET_EQ] = ACTIONS(962), + [anon_sym_AMP_EQ] = ACTIONS(962), + [anon_sym_PIPE_EQ] = ACTIONS(962), + [anon_sym_LT_LT_EQ] = ACTIONS(962), + [anon_sym_GT_GT_EQ] = ACTIONS(962), + [anon_sym_EQ] = ACTIONS(960), + [anon_sym_EQ_EQ] = ACTIONS(962), + [anon_sym_BANG_EQ] = ACTIONS(962), + [anon_sym_GT] = ACTIONS(960), + [anon_sym_LT] = ACTIONS(960), + [anon_sym_GT_EQ] = ACTIONS(962), + [anon_sym_LT_EQ] = ACTIONS(962), + [anon_sym_AT] = ACTIONS(962), + [anon_sym__] = ACTIONS(960), + [anon_sym_DOT] = ACTIONS(960), + [anon_sym_DOT_DOT] = ACTIONS(960), + [anon_sym_DOT_DOT_DOT] = ACTIONS(962), + [anon_sym_DOT_DOT_EQ] = ACTIONS(962), + [anon_sym_COLON_COLON] = ACTIONS(962), + [anon_sym_DASH_GT] = ACTIONS(962), + [anon_sym_POUND] = ACTIONS(962), + [anon_sym_SQUOTE] = ACTIONS(960), + [anon_sym_as] = ACTIONS(960), + [anon_sym_async] = ACTIONS(960), + [anon_sym_await] = ACTIONS(960), + [anon_sym_break] = ACTIONS(960), + [anon_sym_const] = ACTIONS(960), + [anon_sym_continue] = ACTIONS(960), + [anon_sym_default] = ACTIONS(960), + [anon_sym_enum] = ACTIONS(960), + [anon_sym_fn] = ACTIONS(960), + [anon_sym_for] = ACTIONS(960), + [anon_sym_if] = ACTIONS(960), + [anon_sym_impl] = ACTIONS(960), + [anon_sym_let] = ACTIONS(960), + [anon_sym_loop] = ACTIONS(960), + [anon_sym_match] = ACTIONS(960), + [anon_sym_mod] = ACTIONS(960), + [anon_sym_pub] = ACTIONS(960), + [anon_sym_return] = ACTIONS(960), + [anon_sym_static] = ACTIONS(960), + [anon_sym_struct] = ACTIONS(960), + [anon_sym_trait] = ACTIONS(960), + [anon_sym_type] = ACTIONS(960), + [anon_sym_union] = ACTIONS(960), + [anon_sym_unsafe] = ACTIONS(960), + [anon_sym_use] = ACTIONS(960), + [anon_sym_where] = ACTIONS(960), + [anon_sym_while] = ACTIONS(960), + [sym_mutable_specifier] = ACTIONS(960), + [sym_integer_literal] = ACTIONS(962), + [aux_sym_string_literal_token1] = ACTIONS(962), + [sym_char_literal] = ACTIONS(962), + [anon_sym_true] = ACTIONS(960), + [anon_sym_false] = ACTIONS(960), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(960), + [sym_super] = ACTIONS(960), + [sym_crate] = ACTIONS(960), + [sym_metavariable] = ACTIONS(962), + [sym__raw_string_literal_start] = ACTIONS(962), + [sym_float_literal] = ACTIONS(962), }, [167] = { [sym_line_comment] = STATE(167), [sym_block_comment] = STATE(167), - [sym_identifier] = ACTIONS(967), - [anon_sym_SEMI] = ACTIONS(969), - [anon_sym_LPAREN] = ACTIONS(969), - [anon_sym_RPAREN] = ACTIONS(969), - [anon_sym_LBRACK] = ACTIONS(969), - [anon_sym_RBRACK] = ACTIONS(969), - [anon_sym_LBRACE] = ACTIONS(969), - [anon_sym_RBRACE] = ACTIONS(969), - [anon_sym_EQ_GT] = ACTIONS(969), - [anon_sym_COLON] = ACTIONS(967), - [anon_sym_DOLLAR] = ACTIONS(967), - [anon_sym_PLUS] = ACTIONS(967), - [anon_sym_STAR] = ACTIONS(967), - [anon_sym_QMARK] = ACTIONS(969), - [anon_sym_u8] = ACTIONS(967), - [anon_sym_i8] = ACTIONS(967), - [anon_sym_u16] = ACTIONS(967), - [anon_sym_i16] = ACTIONS(967), - [anon_sym_u32] = ACTIONS(967), - [anon_sym_i32] = ACTIONS(967), - [anon_sym_u64] = ACTIONS(967), - [anon_sym_i64] = ACTIONS(967), - [anon_sym_u128] = ACTIONS(967), - [anon_sym_i128] = ACTIONS(967), - [anon_sym_isize] = ACTIONS(967), - [anon_sym_usize] = ACTIONS(967), - [anon_sym_f32] = ACTIONS(967), - [anon_sym_f64] = ACTIONS(967), - [anon_sym_bool] = ACTIONS(967), - [anon_sym_str] = ACTIONS(967), - [anon_sym_char] = ACTIONS(967), - [anon_sym_DASH] = ACTIONS(967), - [anon_sym_SLASH] = ACTIONS(967), - [anon_sym_PERCENT] = ACTIONS(967), - [anon_sym_CARET] = ACTIONS(967), - [anon_sym_BANG] = ACTIONS(967), - [anon_sym_AMP] = ACTIONS(967), - [anon_sym_PIPE] = ACTIONS(967), - [anon_sym_AMP_AMP] = ACTIONS(969), - [anon_sym_PIPE_PIPE] = ACTIONS(969), - [anon_sym_LT_LT] = ACTIONS(967), - [anon_sym_GT_GT] = ACTIONS(967), - [anon_sym_PLUS_EQ] = ACTIONS(969), - [anon_sym_DASH_EQ] = ACTIONS(969), - [anon_sym_STAR_EQ] = ACTIONS(969), - [anon_sym_SLASH_EQ] = ACTIONS(969), - [anon_sym_PERCENT_EQ] = ACTIONS(969), - [anon_sym_CARET_EQ] = ACTIONS(969), - [anon_sym_AMP_EQ] = ACTIONS(969), - [anon_sym_PIPE_EQ] = ACTIONS(969), - [anon_sym_LT_LT_EQ] = ACTIONS(969), - [anon_sym_GT_GT_EQ] = ACTIONS(969), - [anon_sym_EQ] = ACTIONS(967), - [anon_sym_EQ_EQ] = ACTIONS(969), - [anon_sym_BANG_EQ] = ACTIONS(969), - [anon_sym_GT] = ACTIONS(967), - [anon_sym_LT] = ACTIONS(967), - [anon_sym_GT_EQ] = ACTIONS(969), - [anon_sym_LT_EQ] = ACTIONS(969), - [anon_sym_AT] = ACTIONS(969), - [anon_sym__] = ACTIONS(967), - [anon_sym_DOT] = ACTIONS(967), - [anon_sym_DOT_DOT] = ACTIONS(967), - [anon_sym_DOT_DOT_DOT] = ACTIONS(969), - [anon_sym_DOT_DOT_EQ] = ACTIONS(969), - [anon_sym_COMMA] = ACTIONS(969), - [anon_sym_COLON_COLON] = ACTIONS(969), - [anon_sym_DASH_GT] = ACTIONS(969), - [anon_sym_POUND] = ACTIONS(969), - [anon_sym_SQUOTE] = ACTIONS(967), - [anon_sym_as] = ACTIONS(967), - [anon_sym_async] = ACTIONS(967), - [anon_sym_await] = ACTIONS(967), - [anon_sym_break] = ACTIONS(967), - [anon_sym_const] = ACTIONS(967), - [anon_sym_continue] = ACTIONS(967), - [anon_sym_default] = ACTIONS(967), - [anon_sym_enum] = ACTIONS(967), - [anon_sym_fn] = ACTIONS(967), - [anon_sym_for] = ACTIONS(967), - [anon_sym_if] = ACTIONS(967), - [anon_sym_impl] = ACTIONS(967), - [anon_sym_let] = ACTIONS(967), - [anon_sym_loop] = ACTIONS(967), - [anon_sym_match] = ACTIONS(967), - [anon_sym_mod] = ACTIONS(967), - [anon_sym_pub] = ACTIONS(967), - [anon_sym_return] = ACTIONS(967), - [anon_sym_static] = ACTIONS(967), - [anon_sym_struct] = ACTIONS(967), - [anon_sym_trait] = ACTIONS(967), - [anon_sym_type] = ACTIONS(967), - [anon_sym_union] = ACTIONS(967), - [anon_sym_unsafe] = ACTIONS(967), - [anon_sym_use] = ACTIONS(967), - [anon_sym_where] = ACTIONS(967), - [anon_sym_while] = ACTIONS(967), - [sym_mutable_specifier] = ACTIONS(967), - [sym_integer_literal] = ACTIONS(969), - [aux_sym_string_literal_token1] = ACTIONS(969), - [sym_char_literal] = ACTIONS(969), - [anon_sym_true] = ACTIONS(967), - [anon_sym_false] = ACTIONS(967), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(967), - [sym_super] = ACTIONS(967), - [sym_crate] = ACTIONS(967), - [sym_metavariable] = ACTIONS(969), - [sym__raw_string_literal_start] = ACTIONS(969), - [sym_float_literal] = ACTIONS(969), + [sym_identifier] = ACTIONS(964), + [anon_sym_SEMI] = ACTIONS(966), + [anon_sym_LPAREN] = ACTIONS(966), + [anon_sym_RPAREN] = ACTIONS(966), + [anon_sym_LBRACK] = ACTIONS(966), + [anon_sym_RBRACK] = ACTIONS(966), + [anon_sym_LBRACE] = ACTIONS(966), + [anon_sym_RBRACE] = ACTIONS(966), + [anon_sym_COMMA] = ACTIONS(966), + [anon_sym_EQ_GT] = ACTIONS(966), + [anon_sym_COLON] = ACTIONS(964), + [anon_sym_DOLLAR] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(964), + [anon_sym_STAR] = ACTIONS(964), + [anon_sym_QMARK] = ACTIONS(966), + [anon_sym_u8] = ACTIONS(964), + [anon_sym_i8] = ACTIONS(964), + [anon_sym_u16] = ACTIONS(964), + [anon_sym_i16] = ACTIONS(964), + [anon_sym_u32] = ACTIONS(964), + [anon_sym_i32] = ACTIONS(964), + [anon_sym_u64] = ACTIONS(964), + [anon_sym_i64] = ACTIONS(964), + [anon_sym_u128] = ACTIONS(964), + [anon_sym_i128] = ACTIONS(964), + [anon_sym_isize] = ACTIONS(964), + [anon_sym_usize] = ACTIONS(964), + [anon_sym_f32] = ACTIONS(964), + [anon_sym_f64] = ACTIONS(964), + [anon_sym_bool] = ACTIONS(964), + [anon_sym_str] = ACTIONS(964), + [anon_sym_char] = ACTIONS(964), + [anon_sym_DASH] = ACTIONS(964), + [anon_sym_SLASH] = ACTIONS(964), + [anon_sym_PERCENT] = ACTIONS(964), + [anon_sym_CARET] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(964), + [anon_sym_AMP] = ACTIONS(964), + [anon_sym_PIPE] = ACTIONS(964), + [anon_sym_AMP_AMP] = ACTIONS(966), + [anon_sym_PIPE_PIPE] = ACTIONS(966), + [anon_sym_LT_LT] = ACTIONS(964), + [anon_sym_GT_GT] = ACTIONS(964), + [anon_sym_PLUS_EQ] = ACTIONS(966), + [anon_sym_DASH_EQ] = ACTIONS(966), + [anon_sym_STAR_EQ] = ACTIONS(966), + [anon_sym_SLASH_EQ] = ACTIONS(966), + [anon_sym_PERCENT_EQ] = ACTIONS(966), + [anon_sym_CARET_EQ] = ACTIONS(966), + [anon_sym_AMP_EQ] = ACTIONS(966), + [anon_sym_PIPE_EQ] = ACTIONS(966), + [anon_sym_LT_LT_EQ] = ACTIONS(966), + [anon_sym_GT_GT_EQ] = ACTIONS(966), + [anon_sym_EQ] = ACTIONS(964), + [anon_sym_EQ_EQ] = ACTIONS(966), + [anon_sym_BANG_EQ] = ACTIONS(966), + [anon_sym_GT] = ACTIONS(964), + [anon_sym_LT] = ACTIONS(964), + [anon_sym_GT_EQ] = ACTIONS(966), + [anon_sym_LT_EQ] = ACTIONS(966), + [anon_sym_AT] = ACTIONS(966), + [anon_sym__] = ACTIONS(964), + [anon_sym_DOT] = ACTIONS(964), + [anon_sym_DOT_DOT] = ACTIONS(964), + [anon_sym_DOT_DOT_DOT] = ACTIONS(966), + [anon_sym_DOT_DOT_EQ] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(966), + [anon_sym_DASH_GT] = ACTIONS(966), + [anon_sym_POUND] = ACTIONS(966), + [anon_sym_SQUOTE] = ACTIONS(964), + [anon_sym_as] = ACTIONS(964), + [anon_sym_async] = ACTIONS(964), + [anon_sym_await] = ACTIONS(964), + [anon_sym_break] = ACTIONS(964), + [anon_sym_const] = ACTIONS(964), + [anon_sym_continue] = ACTIONS(964), + [anon_sym_default] = ACTIONS(964), + [anon_sym_enum] = ACTIONS(964), + [anon_sym_fn] = ACTIONS(964), + [anon_sym_for] = ACTIONS(964), + [anon_sym_if] = ACTIONS(964), + [anon_sym_impl] = ACTIONS(964), + [anon_sym_let] = ACTIONS(964), + [anon_sym_loop] = ACTIONS(964), + [anon_sym_match] = ACTIONS(964), + [anon_sym_mod] = ACTIONS(964), + [anon_sym_pub] = ACTIONS(964), + [anon_sym_return] = ACTIONS(964), + [anon_sym_static] = ACTIONS(964), + [anon_sym_struct] = ACTIONS(964), + [anon_sym_trait] = ACTIONS(964), + [anon_sym_type] = ACTIONS(964), + [anon_sym_union] = ACTIONS(964), + [anon_sym_unsafe] = ACTIONS(964), + [anon_sym_use] = ACTIONS(964), + [anon_sym_where] = ACTIONS(964), + [anon_sym_while] = ACTIONS(964), + [sym_mutable_specifier] = ACTIONS(964), + [sym_integer_literal] = ACTIONS(966), + [aux_sym_string_literal_token1] = ACTIONS(966), + [sym_char_literal] = ACTIONS(966), + [anon_sym_true] = ACTIONS(964), + [anon_sym_false] = ACTIONS(964), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(964), + [sym_super] = ACTIONS(964), + [sym_crate] = ACTIONS(964), + [sym_metavariable] = ACTIONS(966), + [sym__raw_string_literal_start] = ACTIONS(966), + [sym_float_literal] = ACTIONS(966), }, [168] = { [sym_line_comment] = STATE(168), [sym_block_comment] = STATE(168), - [sym_identifier] = ACTIONS(741), - [anon_sym_SEMI] = ACTIONS(743), - [anon_sym_LPAREN] = ACTIONS(743), - [anon_sym_RPAREN] = ACTIONS(743), - [anon_sym_LBRACK] = ACTIONS(743), - [anon_sym_RBRACK] = ACTIONS(743), - [anon_sym_LBRACE] = ACTIONS(743), - [anon_sym_RBRACE] = ACTIONS(743), - [anon_sym_EQ_GT] = ACTIONS(743), - [anon_sym_COLON] = ACTIONS(971), - [anon_sym_DOLLAR] = ACTIONS(741), - [anon_sym_PLUS] = ACTIONS(741), - [anon_sym_STAR] = ACTIONS(741), - [anon_sym_QMARK] = ACTIONS(743), - [anon_sym_u8] = ACTIONS(741), - [anon_sym_i8] = ACTIONS(741), - [anon_sym_u16] = ACTIONS(741), - [anon_sym_i16] = ACTIONS(741), - [anon_sym_u32] = ACTIONS(741), - [anon_sym_i32] = ACTIONS(741), - [anon_sym_u64] = ACTIONS(741), - [anon_sym_i64] = ACTIONS(741), - [anon_sym_u128] = ACTIONS(741), - [anon_sym_i128] = ACTIONS(741), - [anon_sym_isize] = ACTIONS(741), - [anon_sym_usize] = ACTIONS(741), - [anon_sym_f32] = ACTIONS(741), - [anon_sym_f64] = ACTIONS(741), - [anon_sym_bool] = ACTIONS(741), - [anon_sym_str] = ACTIONS(741), - [anon_sym_char] = ACTIONS(741), - [anon_sym_DASH] = ACTIONS(741), - [anon_sym_SLASH] = ACTIONS(741), - [anon_sym_PERCENT] = ACTIONS(741), - [anon_sym_CARET] = ACTIONS(741), - [anon_sym_BANG] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(741), - [anon_sym_PIPE] = ACTIONS(741), - [anon_sym_AMP_AMP] = ACTIONS(743), - [anon_sym_PIPE_PIPE] = ACTIONS(743), - [anon_sym_LT_LT] = ACTIONS(741), - [anon_sym_GT_GT] = ACTIONS(741), - [anon_sym_PLUS_EQ] = ACTIONS(743), - [anon_sym_DASH_EQ] = ACTIONS(743), - [anon_sym_STAR_EQ] = ACTIONS(743), - [anon_sym_SLASH_EQ] = ACTIONS(743), - [anon_sym_PERCENT_EQ] = ACTIONS(743), - [anon_sym_CARET_EQ] = ACTIONS(743), - [anon_sym_AMP_EQ] = ACTIONS(743), - [anon_sym_PIPE_EQ] = ACTIONS(743), - [anon_sym_LT_LT_EQ] = ACTIONS(743), - [anon_sym_GT_GT_EQ] = ACTIONS(743), - [anon_sym_EQ] = ACTIONS(741), - [anon_sym_EQ_EQ] = ACTIONS(743), - [anon_sym_BANG_EQ] = ACTIONS(743), - [anon_sym_GT] = ACTIONS(741), - [anon_sym_LT] = ACTIONS(741), - [anon_sym_GT_EQ] = ACTIONS(743), - [anon_sym_LT_EQ] = ACTIONS(743), - [anon_sym_AT] = ACTIONS(743), - [anon_sym__] = ACTIONS(741), - [anon_sym_DOT] = ACTIONS(741), - [anon_sym_DOT_DOT] = ACTIONS(741), - [anon_sym_DOT_DOT_DOT] = ACTIONS(743), - [anon_sym_DOT_DOT_EQ] = ACTIONS(743), - [anon_sym_COMMA] = ACTIONS(743), - [anon_sym_COLON_COLON] = ACTIONS(743), - [anon_sym_DASH_GT] = ACTIONS(743), - [anon_sym_POUND] = ACTIONS(743), - [anon_sym_SQUOTE] = ACTIONS(741), - [anon_sym_as] = ACTIONS(741), - [anon_sym_async] = ACTIONS(741), - [anon_sym_await] = ACTIONS(741), - [anon_sym_break] = ACTIONS(741), - [anon_sym_const] = ACTIONS(741), - [anon_sym_continue] = ACTIONS(741), - [anon_sym_default] = ACTIONS(741), - [anon_sym_enum] = ACTIONS(741), - [anon_sym_fn] = ACTIONS(741), - [anon_sym_for] = ACTIONS(741), - [anon_sym_if] = ACTIONS(741), - [anon_sym_impl] = ACTIONS(741), - [anon_sym_let] = ACTIONS(741), - [anon_sym_loop] = ACTIONS(741), - [anon_sym_match] = ACTIONS(741), - [anon_sym_mod] = ACTIONS(741), - [anon_sym_pub] = ACTIONS(741), - [anon_sym_return] = ACTIONS(741), - [anon_sym_static] = ACTIONS(741), - [anon_sym_struct] = ACTIONS(741), - [anon_sym_trait] = ACTIONS(741), - [anon_sym_type] = ACTIONS(741), - [anon_sym_union] = ACTIONS(741), - [anon_sym_unsafe] = ACTIONS(741), - [anon_sym_use] = ACTIONS(741), - [anon_sym_where] = ACTIONS(741), - [anon_sym_while] = ACTIONS(741), - [sym_mutable_specifier] = ACTIONS(741), - [sym_integer_literal] = ACTIONS(743), - [aux_sym_string_literal_token1] = ACTIONS(743), - [sym_char_literal] = ACTIONS(743), - [anon_sym_true] = ACTIONS(741), - [anon_sym_false] = ACTIONS(741), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(741), - [sym_super] = ACTIONS(741), - [sym_crate] = ACTIONS(741), - [sym_metavariable] = ACTIONS(743), - [sym__raw_string_literal_start] = ACTIONS(743), - [sym_float_literal] = ACTIONS(743), + [sym_identifier] = ACTIONS(968), + [anon_sym_SEMI] = ACTIONS(970), + [anon_sym_LPAREN] = ACTIONS(970), + [anon_sym_RPAREN] = ACTIONS(970), + [anon_sym_LBRACK] = ACTIONS(970), + [anon_sym_RBRACK] = ACTIONS(970), + [anon_sym_LBRACE] = ACTIONS(970), + [anon_sym_RBRACE] = ACTIONS(970), + [anon_sym_COMMA] = ACTIONS(970), + [anon_sym_EQ_GT] = ACTIONS(970), + [anon_sym_COLON] = ACTIONS(968), + [anon_sym_DOLLAR] = ACTIONS(968), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_STAR] = ACTIONS(968), + [anon_sym_QMARK] = ACTIONS(970), + [anon_sym_u8] = ACTIONS(968), + [anon_sym_i8] = ACTIONS(968), + [anon_sym_u16] = ACTIONS(968), + [anon_sym_i16] = ACTIONS(968), + [anon_sym_u32] = ACTIONS(968), + [anon_sym_i32] = ACTIONS(968), + [anon_sym_u64] = ACTIONS(968), + [anon_sym_i64] = ACTIONS(968), + [anon_sym_u128] = ACTIONS(968), + [anon_sym_i128] = ACTIONS(968), + [anon_sym_isize] = ACTIONS(968), + [anon_sym_usize] = ACTIONS(968), + [anon_sym_f32] = ACTIONS(968), + [anon_sym_f64] = ACTIONS(968), + [anon_sym_bool] = ACTIONS(968), + [anon_sym_str] = ACTIONS(968), + [anon_sym_char] = ACTIONS(968), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_SLASH] = ACTIONS(968), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_CARET] = ACTIONS(968), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(968), + [anon_sym_PIPE] = ACTIONS(968), + [anon_sym_AMP_AMP] = ACTIONS(970), + [anon_sym_PIPE_PIPE] = ACTIONS(970), + [anon_sym_LT_LT] = ACTIONS(968), + [anon_sym_GT_GT] = ACTIONS(968), + [anon_sym_PLUS_EQ] = ACTIONS(970), + [anon_sym_DASH_EQ] = ACTIONS(970), + [anon_sym_STAR_EQ] = ACTIONS(970), + [anon_sym_SLASH_EQ] = ACTIONS(970), + [anon_sym_PERCENT_EQ] = ACTIONS(970), + [anon_sym_CARET_EQ] = ACTIONS(970), + [anon_sym_AMP_EQ] = ACTIONS(970), + [anon_sym_PIPE_EQ] = ACTIONS(970), + [anon_sym_LT_LT_EQ] = ACTIONS(970), + [anon_sym_GT_GT_EQ] = ACTIONS(970), + [anon_sym_EQ] = ACTIONS(968), + [anon_sym_EQ_EQ] = ACTIONS(970), + [anon_sym_BANG_EQ] = ACTIONS(970), + [anon_sym_GT] = ACTIONS(968), + [anon_sym_LT] = ACTIONS(968), + [anon_sym_GT_EQ] = ACTIONS(970), + [anon_sym_LT_EQ] = ACTIONS(970), + [anon_sym_AT] = ACTIONS(970), + [anon_sym__] = ACTIONS(968), + [anon_sym_DOT] = ACTIONS(968), + [anon_sym_DOT_DOT] = ACTIONS(968), + [anon_sym_DOT_DOT_DOT] = ACTIONS(970), + [anon_sym_DOT_DOT_EQ] = ACTIONS(970), + [anon_sym_COLON_COLON] = ACTIONS(970), + [anon_sym_DASH_GT] = ACTIONS(970), + [anon_sym_POUND] = ACTIONS(970), + [anon_sym_SQUOTE] = ACTIONS(968), + [anon_sym_as] = ACTIONS(968), + [anon_sym_async] = ACTIONS(968), + [anon_sym_await] = ACTIONS(968), + [anon_sym_break] = ACTIONS(968), + [anon_sym_const] = ACTIONS(968), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_default] = ACTIONS(968), + [anon_sym_enum] = ACTIONS(968), + [anon_sym_fn] = ACTIONS(968), + [anon_sym_for] = ACTIONS(968), + [anon_sym_if] = ACTIONS(968), + [anon_sym_impl] = ACTIONS(968), + [anon_sym_let] = ACTIONS(968), + [anon_sym_loop] = ACTIONS(968), + [anon_sym_match] = ACTIONS(968), + [anon_sym_mod] = ACTIONS(968), + [anon_sym_pub] = ACTIONS(968), + [anon_sym_return] = ACTIONS(968), + [anon_sym_static] = ACTIONS(968), + [anon_sym_struct] = ACTIONS(968), + [anon_sym_trait] = ACTIONS(968), + [anon_sym_type] = ACTIONS(968), + [anon_sym_union] = ACTIONS(968), + [anon_sym_unsafe] = ACTIONS(968), + [anon_sym_use] = ACTIONS(968), + [anon_sym_where] = ACTIONS(968), + [anon_sym_while] = ACTIONS(968), + [sym_mutable_specifier] = ACTIONS(968), + [sym_integer_literal] = ACTIONS(970), + [aux_sym_string_literal_token1] = ACTIONS(970), + [sym_char_literal] = ACTIONS(970), + [anon_sym_true] = ACTIONS(968), + [anon_sym_false] = ACTIONS(968), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(968), + [sym_super] = ACTIONS(968), + [sym_crate] = ACTIONS(968), + [sym_metavariable] = ACTIONS(970), + [sym__raw_string_literal_start] = ACTIONS(970), + [sym_float_literal] = ACTIONS(970), }, [169] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1699), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_let_condition] = STATE(2823), - [sym__let_chain] = STATE(2887), - [sym__condition] = STATE(2593), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(169), [sym_block_comment] = STATE(169), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(977), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_let] = ACTIONS(979), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [sym_identifier] = ACTIONS(972), + [anon_sym_SEMI] = ACTIONS(974), + [anon_sym_LPAREN] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(974), + [anon_sym_LBRACK] = ACTIONS(974), + [anon_sym_RBRACK] = ACTIONS(974), + [anon_sym_LBRACE] = ACTIONS(974), + [anon_sym_RBRACE] = ACTIONS(974), + [anon_sym_COMMA] = ACTIONS(974), + [anon_sym_EQ_GT] = ACTIONS(974), + [anon_sym_COLON] = ACTIONS(972), + [anon_sym_DOLLAR] = ACTIONS(972), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_STAR] = ACTIONS(972), + [anon_sym_QMARK] = ACTIONS(974), + [anon_sym_u8] = ACTIONS(972), + [anon_sym_i8] = ACTIONS(972), + [anon_sym_u16] = ACTIONS(972), + [anon_sym_i16] = ACTIONS(972), + [anon_sym_u32] = ACTIONS(972), + [anon_sym_i32] = ACTIONS(972), + [anon_sym_u64] = ACTIONS(972), + [anon_sym_i64] = ACTIONS(972), + [anon_sym_u128] = ACTIONS(972), + [anon_sym_i128] = ACTIONS(972), + [anon_sym_isize] = ACTIONS(972), + [anon_sym_usize] = ACTIONS(972), + [anon_sym_f32] = ACTIONS(972), + [anon_sym_f64] = ACTIONS(972), + [anon_sym_bool] = ACTIONS(972), + [anon_sym_str] = ACTIONS(972), + [anon_sym_char] = ACTIONS(972), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_SLASH] = ACTIONS(972), + [anon_sym_PERCENT] = ACTIONS(972), + [anon_sym_CARET] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(972), + [anon_sym_AMP] = ACTIONS(972), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_AMP_AMP] = ACTIONS(974), + [anon_sym_PIPE_PIPE] = ACTIONS(974), + [anon_sym_LT_LT] = ACTIONS(972), + [anon_sym_GT_GT] = ACTIONS(972), + [anon_sym_PLUS_EQ] = ACTIONS(974), + [anon_sym_DASH_EQ] = ACTIONS(974), + [anon_sym_STAR_EQ] = ACTIONS(974), + [anon_sym_SLASH_EQ] = ACTIONS(974), + [anon_sym_PERCENT_EQ] = ACTIONS(974), + [anon_sym_CARET_EQ] = ACTIONS(974), + [anon_sym_AMP_EQ] = ACTIONS(974), + [anon_sym_PIPE_EQ] = ACTIONS(974), + [anon_sym_LT_LT_EQ] = ACTIONS(974), + [anon_sym_GT_GT_EQ] = ACTIONS(974), + [anon_sym_EQ] = ACTIONS(972), + [anon_sym_EQ_EQ] = ACTIONS(974), + [anon_sym_BANG_EQ] = ACTIONS(974), + [anon_sym_GT] = ACTIONS(972), + [anon_sym_LT] = ACTIONS(972), + [anon_sym_GT_EQ] = ACTIONS(974), + [anon_sym_LT_EQ] = ACTIONS(974), + [anon_sym_AT] = ACTIONS(974), + [anon_sym__] = ACTIONS(972), + [anon_sym_DOT] = ACTIONS(972), + [anon_sym_DOT_DOT] = ACTIONS(972), + [anon_sym_DOT_DOT_DOT] = ACTIONS(974), + [anon_sym_DOT_DOT_EQ] = ACTIONS(974), + [anon_sym_COLON_COLON] = ACTIONS(974), + [anon_sym_DASH_GT] = ACTIONS(974), + [anon_sym_POUND] = ACTIONS(974), + [anon_sym_SQUOTE] = ACTIONS(972), + [anon_sym_as] = ACTIONS(972), + [anon_sym_async] = ACTIONS(972), + [anon_sym_await] = ACTIONS(972), + [anon_sym_break] = ACTIONS(972), + [anon_sym_const] = ACTIONS(972), + [anon_sym_continue] = ACTIONS(972), + [anon_sym_default] = ACTIONS(972), + [anon_sym_enum] = ACTIONS(972), + [anon_sym_fn] = ACTIONS(972), + [anon_sym_for] = ACTIONS(972), + [anon_sym_if] = ACTIONS(972), + [anon_sym_impl] = ACTIONS(972), + [anon_sym_let] = ACTIONS(972), + [anon_sym_loop] = ACTIONS(972), + [anon_sym_match] = ACTIONS(972), + [anon_sym_mod] = ACTIONS(972), + [anon_sym_pub] = ACTIONS(972), + [anon_sym_return] = ACTIONS(972), + [anon_sym_static] = ACTIONS(972), + [anon_sym_struct] = ACTIONS(972), + [anon_sym_trait] = ACTIONS(972), + [anon_sym_type] = ACTIONS(972), + [anon_sym_union] = ACTIONS(972), + [anon_sym_unsafe] = ACTIONS(972), + [anon_sym_use] = ACTIONS(972), + [anon_sym_where] = ACTIONS(972), + [anon_sym_while] = ACTIONS(972), + [sym_mutable_specifier] = ACTIONS(972), + [sym_integer_literal] = ACTIONS(974), + [aux_sym_string_literal_token1] = ACTIONS(974), + [sym_char_literal] = ACTIONS(974), + [anon_sym_true] = ACTIONS(972), + [anon_sym_false] = ACTIONS(972), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(972), + [sym_super] = ACTIONS(972), + [sym_crate] = ACTIONS(972), + [sym_metavariable] = ACTIONS(974), + [sym__raw_string_literal_start] = ACTIONS(974), + [sym_float_literal] = ACTIONS(974), }, [170] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1699), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_let_condition] = STATE(2823), - [sym__let_chain] = STATE(2887), - [sym__condition] = STATE(2730), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(170), [sym_block_comment] = STATE(170), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(977), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_let] = ACTIONS(979), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [sym_identifier] = ACTIONS(976), + [anon_sym_SEMI] = ACTIONS(978), + [anon_sym_LPAREN] = ACTIONS(978), + [anon_sym_RPAREN] = ACTIONS(978), + [anon_sym_LBRACK] = ACTIONS(978), + [anon_sym_RBRACK] = ACTIONS(978), + [anon_sym_LBRACE] = ACTIONS(978), + [anon_sym_RBRACE] = ACTIONS(978), + [anon_sym_COMMA] = ACTIONS(978), + [anon_sym_EQ_GT] = ACTIONS(978), + [anon_sym_COLON] = ACTIONS(976), + [anon_sym_DOLLAR] = ACTIONS(976), + [anon_sym_PLUS] = ACTIONS(976), + [anon_sym_STAR] = ACTIONS(976), + [anon_sym_QMARK] = ACTIONS(978), + [anon_sym_u8] = ACTIONS(976), + [anon_sym_i8] = ACTIONS(976), + [anon_sym_u16] = ACTIONS(976), + [anon_sym_i16] = ACTIONS(976), + [anon_sym_u32] = ACTIONS(976), + [anon_sym_i32] = ACTIONS(976), + [anon_sym_u64] = ACTIONS(976), + [anon_sym_i64] = ACTIONS(976), + [anon_sym_u128] = ACTIONS(976), + [anon_sym_i128] = ACTIONS(976), + [anon_sym_isize] = ACTIONS(976), + [anon_sym_usize] = ACTIONS(976), + [anon_sym_f32] = ACTIONS(976), + [anon_sym_f64] = ACTIONS(976), + [anon_sym_bool] = ACTIONS(976), + [anon_sym_str] = ACTIONS(976), + [anon_sym_char] = ACTIONS(976), + [anon_sym_DASH] = ACTIONS(976), + [anon_sym_SLASH] = ACTIONS(976), + [anon_sym_PERCENT] = ACTIONS(976), + [anon_sym_CARET] = ACTIONS(976), + [anon_sym_BANG] = ACTIONS(976), + [anon_sym_AMP] = ACTIONS(976), + [anon_sym_PIPE] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), + [anon_sym_LT_LT] = ACTIONS(976), + [anon_sym_GT_GT] = ACTIONS(976), + [anon_sym_PLUS_EQ] = ACTIONS(978), + [anon_sym_DASH_EQ] = ACTIONS(978), + [anon_sym_STAR_EQ] = ACTIONS(978), + [anon_sym_SLASH_EQ] = ACTIONS(978), + [anon_sym_PERCENT_EQ] = ACTIONS(978), + [anon_sym_CARET_EQ] = ACTIONS(978), + [anon_sym_AMP_EQ] = ACTIONS(978), + [anon_sym_PIPE_EQ] = ACTIONS(978), + [anon_sym_LT_LT_EQ] = ACTIONS(978), + [anon_sym_GT_GT_EQ] = ACTIONS(978), + [anon_sym_EQ] = ACTIONS(976), + [anon_sym_EQ_EQ] = ACTIONS(978), + [anon_sym_BANG_EQ] = ACTIONS(978), + [anon_sym_GT] = ACTIONS(976), + [anon_sym_LT] = ACTIONS(976), + [anon_sym_GT_EQ] = ACTIONS(978), + [anon_sym_LT_EQ] = ACTIONS(978), + [anon_sym_AT] = ACTIONS(978), + [anon_sym__] = ACTIONS(976), + [anon_sym_DOT] = ACTIONS(976), + [anon_sym_DOT_DOT] = ACTIONS(976), + [anon_sym_DOT_DOT_DOT] = ACTIONS(978), + [anon_sym_DOT_DOT_EQ] = ACTIONS(978), + [anon_sym_COLON_COLON] = ACTIONS(978), + [anon_sym_DASH_GT] = ACTIONS(978), + [anon_sym_POUND] = ACTIONS(978), + [anon_sym_SQUOTE] = ACTIONS(976), + [anon_sym_as] = ACTIONS(976), + [anon_sym_async] = ACTIONS(976), + [anon_sym_await] = ACTIONS(976), + [anon_sym_break] = ACTIONS(976), + [anon_sym_const] = ACTIONS(976), + [anon_sym_continue] = ACTIONS(976), + [anon_sym_default] = ACTIONS(976), + [anon_sym_enum] = ACTIONS(976), + [anon_sym_fn] = ACTIONS(976), + [anon_sym_for] = ACTIONS(976), + [anon_sym_if] = ACTIONS(976), + [anon_sym_impl] = ACTIONS(976), + [anon_sym_let] = ACTIONS(976), + [anon_sym_loop] = ACTIONS(976), + [anon_sym_match] = ACTIONS(976), + [anon_sym_mod] = ACTIONS(976), + [anon_sym_pub] = ACTIONS(976), + [anon_sym_return] = ACTIONS(976), + [anon_sym_static] = ACTIONS(976), + [anon_sym_struct] = ACTIONS(976), + [anon_sym_trait] = ACTIONS(976), + [anon_sym_type] = ACTIONS(976), + [anon_sym_union] = ACTIONS(976), + [anon_sym_unsafe] = ACTIONS(976), + [anon_sym_use] = ACTIONS(976), + [anon_sym_where] = ACTIONS(976), + [anon_sym_while] = ACTIONS(976), + [sym_mutable_specifier] = ACTIONS(976), + [sym_integer_literal] = ACTIONS(978), + [aux_sym_string_literal_token1] = ACTIONS(978), + [sym_char_literal] = ACTIONS(978), + [anon_sym_true] = ACTIONS(976), + [anon_sym_false] = ACTIONS(976), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(976), + [sym_super] = ACTIONS(976), + [sym_crate] = ACTIONS(976), + [sym_metavariable] = ACTIONS(978), + [sym__raw_string_literal_start] = ACTIONS(978), + [sym_float_literal] = ACTIONS(978), }, [171] = { - [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1840), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(171), [sym_block_comment] = STATE(171), - [aux_sym_enum_variant_list_repeat1] = STATE(212), - [sym_identifier] = ACTIONS(334), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(981), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(765), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [sym_identifier] = ACTIONS(980), + [anon_sym_SEMI] = ACTIONS(982), + [anon_sym_LPAREN] = ACTIONS(982), + [anon_sym_RPAREN] = ACTIONS(982), + [anon_sym_LBRACK] = ACTIONS(982), + [anon_sym_RBRACK] = ACTIONS(982), + [anon_sym_LBRACE] = ACTIONS(982), + [anon_sym_RBRACE] = ACTIONS(982), + [anon_sym_COMMA] = ACTIONS(982), + [anon_sym_EQ_GT] = ACTIONS(982), + [anon_sym_COLON] = ACTIONS(980), + [anon_sym_DOLLAR] = ACTIONS(980), + [anon_sym_PLUS] = ACTIONS(980), + [anon_sym_STAR] = ACTIONS(980), + [anon_sym_QMARK] = ACTIONS(982), + [anon_sym_u8] = ACTIONS(980), + [anon_sym_i8] = ACTIONS(980), + [anon_sym_u16] = ACTIONS(980), + [anon_sym_i16] = ACTIONS(980), + [anon_sym_u32] = ACTIONS(980), + [anon_sym_i32] = ACTIONS(980), + [anon_sym_u64] = ACTIONS(980), + [anon_sym_i64] = ACTIONS(980), + [anon_sym_u128] = ACTIONS(980), + [anon_sym_i128] = ACTIONS(980), + [anon_sym_isize] = ACTIONS(980), + [anon_sym_usize] = ACTIONS(980), + [anon_sym_f32] = ACTIONS(980), + [anon_sym_f64] = ACTIONS(980), + [anon_sym_bool] = ACTIONS(980), + [anon_sym_str] = ACTIONS(980), + [anon_sym_char] = ACTIONS(980), + [anon_sym_DASH] = ACTIONS(980), + [anon_sym_SLASH] = ACTIONS(980), + [anon_sym_PERCENT] = ACTIONS(980), + [anon_sym_CARET] = ACTIONS(980), + [anon_sym_BANG] = ACTIONS(980), + [anon_sym_AMP] = ACTIONS(980), + [anon_sym_PIPE] = ACTIONS(980), + [anon_sym_AMP_AMP] = ACTIONS(982), + [anon_sym_PIPE_PIPE] = ACTIONS(982), + [anon_sym_LT_LT] = ACTIONS(980), + [anon_sym_GT_GT] = ACTIONS(980), + [anon_sym_PLUS_EQ] = ACTIONS(982), + [anon_sym_DASH_EQ] = ACTIONS(982), + [anon_sym_STAR_EQ] = ACTIONS(982), + [anon_sym_SLASH_EQ] = ACTIONS(982), + [anon_sym_PERCENT_EQ] = ACTIONS(982), + [anon_sym_CARET_EQ] = ACTIONS(982), + [anon_sym_AMP_EQ] = ACTIONS(982), + [anon_sym_PIPE_EQ] = ACTIONS(982), + [anon_sym_LT_LT_EQ] = ACTIONS(982), + [anon_sym_GT_GT_EQ] = ACTIONS(982), + [anon_sym_EQ] = ACTIONS(980), + [anon_sym_EQ_EQ] = ACTIONS(982), + [anon_sym_BANG_EQ] = ACTIONS(982), + [anon_sym_GT] = ACTIONS(980), + [anon_sym_LT] = ACTIONS(980), + [anon_sym_GT_EQ] = ACTIONS(982), + [anon_sym_LT_EQ] = ACTIONS(982), + [anon_sym_AT] = ACTIONS(982), + [anon_sym__] = ACTIONS(980), + [anon_sym_DOT] = ACTIONS(980), + [anon_sym_DOT_DOT] = ACTIONS(980), + [anon_sym_DOT_DOT_DOT] = ACTIONS(982), + [anon_sym_DOT_DOT_EQ] = ACTIONS(982), + [anon_sym_COLON_COLON] = ACTIONS(982), + [anon_sym_DASH_GT] = ACTIONS(982), + [anon_sym_POUND] = ACTIONS(982), + [anon_sym_SQUOTE] = ACTIONS(980), + [anon_sym_as] = ACTIONS(980), + [anon_sym_async] = ACTIONS(980), + [anon_sym_await] = ACTIONS(980), + [anon_sym_break] = ACTIONS(980), + [anon_sym_const] = ACTIONS(980), + [anon_sym_continue] = ACTIONS(980), + [anon_sym_default] = ACTIONS(980), + [anon_sym_enum] = ACTIONS(980), + [anon_sym_fn] = ACTIONS(980), + [anon_sym_for] = ACTIONS(980), + [anon_sym_if] = ACTIONS(980), + [anon_sym_impl] = ACTIONS(980), + [anon_sym_let] = ACTIONS(980), + [anon_sym_loop] = ACTIONS(980), + [anon_sym_match] = ACTIONS(980), + [anon_sym_mod] = ACTIONS(980), + [anon_sym_pub] = ACTIONS(980), + [anon_sym_return] = ACTIONS(980), + [anon_sym_static] = ACTIONS(980), + [anon_sym_struct] = ACTIONS(980), + [anon_sym_trait] = ACTIONS(980), + [anon_sym_type] = ACTIONS(980), + [anon_sym_union] = ACTIONS(980), + [anon_sym_unsafe] = ACTIONS(980), + [anon_sym_use] = ACTIONS(980), + [anon_sym_where] = ACTIONS(980), + [anon_sym_while] = ACTIONS(980), + [sym_mutable_specifier] = ACTIONS(980), + [sym_integer_literal] = ACTIONS(982), + [aux_sym_string_literal_token1] = ACTIONS(982), + [sym_char_literal] = ACTIONS(982), + [anon_sym_true] = ACTIONS(980), + [anon_sym_false] = ACTIONS(980), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(980), + [sym_super] = ACTIONS(980), + [sym_crate] = ACTIONS(980), + [sym_metavariable] = ACTIONS(982), + [sym__raw_string_literal_start] = ACTIONS(982), + [sym_float_literal] = ACTIONS(982), }, [172] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1699), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_let_condition] = STATE(2823), - [sym__let_chain] = STATE(2887), - [sym__condition] = STATE(2504), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(172), [sym_block_comment] = STATE(172), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(977), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_let] = ACTIONS(979), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [sym_identifier] = ACTIONS(984), + [anon_sym_SEMI] = ACTIONS(986), + [anon_sym_LPAREN] = ACTIONS(986), + [anon_sym_RPAREN] = ACTIONS(986), + [anon_sym_LBRACK] = ACTIONS(986), + [anon_sym_RBRACK] = ACTIONS(986), + [anon_sym_LBRACE] = ACTIONS(986), + [anon_sym_RBRACE] = ACTIONS(986), + [anon_sym_COMMA] = ACTIONS(986), + [anon_sym_EQ_GT] = ACTIONS(986), + [anon_sym_COLON] = ACTIONS(984), + [anon_sym_DOLLAR] = ACTIONS(984), + [anon_sym_PLUS] = ACTIONS(984), + [anon_sym_STAR] = ACTIONS(984), + [anon_sym_QMARK] = ACTIONS(986), + [anon_sym_u8] = ACTIONS(984), + [anon_sym_i8] = ACTIONS(984), + [anon_sym_u16] = ACTIONS(984), + [anon_sym_i16] = ACTIONS(984), + [anon_sym_u32] = ACTIONS(984), + [anon_sym_i32] = ACTIONS(984), + [anon_sym_u64] = ACTIONS(984), + [anon_sym_i64] = ACTIONS(984), + [anon_sym_u128] = ACTIONS(984), + [anon_sym_i128] = ACTIONS(984), + [anon_sym_isize] = ACTIONS(984), + [anon_sym_usize] = ACTIONS(984), + [anon_sym_f32] = ACTIONS(984), + [anon_sym_f64] = ACTIONS(984), + [anon_sym_bool] = ACTIONS(984), + [anon_sym_str] = ACTIONS(984), + [anon_sym_char] = ACTIONS(984), + [anon_sym_DASH] = ACTIONS(984), + [anon_sym_SLASH] = ACTIONS(984), + [anon_sym_PERCENT] = ACTIONS(984), + [anon_sym_CARET] = ACTIONS(984), + [anon_sym_BANG] = ACTIONS(984), + [anon_sym_AMP] = ACTIONS(984), + [anon_sym_PIPE] = ACTIONS(984), + [anon_sym_AMP_AMP] = ACTIONS(986), + [anon_sym_PIPE_PIPE] = ACTIONS(986), + [anon_sym_LT_LT] = ACTIONS(984), + [anon_sym_GT_GT] = ACTIONS(984), + [anon_sym_PLUS_EQ] = ACTIONS(986), + [anon_sym_DASH_EQ] = ACTIONS(986), + [anon_sym_STAR_EQ] = ACTIONS(986), + [anon_sym_SLASH_EQ] = ACTIONS(986), + [anon_sym_PERCENT_EQ] = ACTIONS(986), + [anon_sym_CARET_EQ] = ACTIONS(986), + [anon_sym_AMP_EQ] = ACTIONS(986), + [anon_sym_PIPE_EQ] = ACTIONS(986), + [anon_sym_LT_LT_EQ] = ACTIONS(986), + [anon_sym_GT_GT_EQ] = ACTIONS(986), + [anon_sym_EQ] = ACTIONS(984), + [anon_sym_EQ_EQ] = ACTIONS(986), + [anon_sym_BANG_EQ] = ACTIONS(986), + [anon_sym_GT] = ACTIONS(984), + [anon_sym_LT] = ACTIONS(984), + [anon_sym_GT_EQ] = ACTIONS(986), + [anon_sym_LT_EQ] = ACTIONS(986), + [anon_sym_AT] = ACTIONS(986), + [anon_sym__] = ACTIONS(984), + [anon_sym_DOT] = ACTIONS(984), + [anon_sym_DOT_DOT] = ACTIONS(984), + [anon_sym_DOT_DOT_DOT] = ACTIONS(986), + [anon_sym_DOT_DOT_EQ] = ACTIONS(986), + [anon_sym_COLON_COLON] = ACTIONS(986), + [anon_sym_DASH_GT] = ACTIONS(986), + [anon_sym_POUND] = ACTIONS(986), + [anon_sym_SQUOTE] = ACTIONS(984), + [anon_sym_as] = ACTIONS(984), + [anon_sym_async] = ACTIONS(984), + [anon_sym_await] = ACTIONS(984), + [anon_sym_break] = ACTIONS(984), + [anon_sym_const] = ACTIONS(984), + [anon_sym_continue] = ACTIONS(984), + [anon_sym_default] = ACTIONS(984), + [anon_sym_enum] = ACTIONS(984), + [anon_sym_fn] = ACTIONS(984), + [anon_sym_for] = ACTIONS(984), + [anon_sym_if] = ACTIONS(984), + [anon_sym_impl] = ACTIONS(984), + [anon_sym_let] = ACTIONS(984), + [anon_sym_loop] = ACTIONS(984), + [anon_sym_match] = ACTIONS(984), + [anon_sym_mod] = ACTIONS(984), + [anon_sym_pub] = ACTIONS(984), + [anon_sym_return] = ACTIONS(984), + [anon_sym_static] = ACTIONS(984), + [anon_sym_struct] = ACTIONS(984), + [anon_sym_trait] = ACTIONS(984), + [anon_sym_type] = ACTIONS(984), + [anon_sym_union] = ACTIONS(984), + [anon_sym_unsafe] = ACTIONS(984), + [anon_sym_use] = ACTIONS(984), + [anon_sym_where] = ACTIONS(984), + [anon_sym_while] = ACTIONS(984), + [sym_mutable_specifier] = ACTIONS(984), + [sym_integer_literal] = ACTIONS(986), + [aux_sym_string_literal_token1] = ACTIONS(986), + [sym_char_literal] = ACTIONS(986), + [anon_sym_true] = ACTIONS(984), + [anon_sym_false] = ACTIONS(984), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(984), + [sym_super] = ACTIONS(984), + [sym_crate] = ACTIONS(984), + [sym_metavariable] = ACTIONS(986), + [sym__raw_string_literal_start] = ACTIONS(986), + [sym_float_literal] = ACTIONS(986), }, [173] = { [sym_line_comment] = STATE(173), [sym_block_comment] = STATE(173), - [sym_identifier] = ACTIONS(935), - [anon_sym_SEMI] = ACTIONS(937), - [anon_sym_LPAREN] = ACTIONS(937), - [anon_sym_RPAREN] = ACTIONS(937), - [anon_sym_LBRACK] = ACTIONS(937), - [anon_sym_RBRACK] = ACTIONS(937), - [anon_sym_LBRACE] = ACTIONS(937), - [anon_sym_RBRACE] = ACTIONS(937), - [anon_sym_EQ_GT] = ACTIONS(937), - [anon_sym_COLON] = ACTIONS(935), - [anon_sym_DOLLAR] = ACTIONS(937), - [anon_sym_PLUS] = ACTIONS(935), - [anon_sym_STAR] = ACTIONS(935), - [anon_sym_QMARK] = ACTIONS(937), - [anon_sym_u8] = ACTIONS(935), - [anon_sym_i8] = ACTIONS(935), - [anon_sym_u16] = ACTIONS(935), - [anon_sym_i16] = ACTIONS(935), - [anon_sym_u32] = ACTIONS(935), - [anon_sym_i32] = ACTIONS(935), - [anon_sym_u64] = ACTIONS(935), - [anon_sym_i64] = ACTIONS(935), - [anon_sym_u128] = ACTIONS(935), - [anon_sym_i128] = ACTIONS(935), - [anon_sym_isize] = ACTIONS(935), - [anon_sym_usize] = ACTIONS(935), - [anon_sym_f32] = ACTIONS(935), - [anon_sym_f64] = ACTIONS(935), - [anon_sym_bool] = ACTIONS(935), - [anon_sym_str] = ACTIONS(935), - [anon_sym_char] = ACTIONS(935), - [anon_sym_DASH] = ACTIONS(935), - [anon_sym_SLASH] = ACTIONS(935), - [anon_sym_PERCENT] = ACTIONS(935), - [anon_sym_CARET] = ACTIONS(935), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_AMP] = ACTIONS(935), - [anon_sym_PIPE] = ACTIONS(935), - [anon_sym_AMP_AMP] = ACTIONS(937), - [anon_sym_PIPE_PIPE] = ACTIONS(937), - [anon_sym_LT_LT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(935), - [anon_sym_PLUS_EQ] = ACTIONS(937), - [anon_sym_DASH_EQ] = ACTIONS(937), - [anon_sym_STAR_EQ] = ACTIONS(937), - [anon_sym_SLASH_EQ] = ACTIONS(937), - [anon_sym_PERCENT_EQ] = ACTIONS(937), - [anon_sym_CARET_EQ] = ACTIONS(937), - [anon_sym_AMP_EQ] = ACTIONS(937), - [anon_sym_PIPE_EQ] = ACTIONS(937), - [anon_sym_LT_LT_EQ] = ACTIONS(937), - [anon_sym_GT_GT_EQ] = ACTIONS(937), - [anon_sym_EQ] = ACTIONS(935), - [anon_sym_EQ_EQ] = ACTIONS(937), - [anon_sym_BANG_EQ] = ACTIONS(937), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT_EQ] = ACTIONS(937), - [anon_sym_LT_EQ] = ACTIONS(937), - [anon_sym_AT] = ACTIONS(937), - [anon_sym__] = ACTIONS(935), - [anon_sym_DOT] = ACTIONS(935), - [anon_sym_DOT_DOT] = ACTIONS(935), - [anon_sym_DOT_DOT_DOT] = ACTIONS(937), - [anon_sym_DOT_DOT_EQ] = ACTIONS(937), - [anon_sym_COMMA] = ACTIONS(937), - [anon_sym_COLON_COLON] = ACTIONS(937), - [anon_sym_DASH_GT] = ACTIONS(937), - [anon_sym_POUND] = ACTIONS(937), - [anon_sym_SQUOTE] = ACTIONS(935), - [anon_sym_as] = ACTIONS(935), - [anon_sym_async] = ACTIONS(935), - [anon_sym_await] = ACTIONS(935), - [anon_sym_break] = ACTIONS(935), - [anon_sym_const] = ACTIONS(935), - [anon_sym_continue] = ACTIONS(935), - [anon_sym_default] = ACTIONS(935), - [anon_sym_enum] = ACTIONS(935), - [anon_sym_fn] = ACTIONS(935), - [anon_sym_for] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_impl] = ACTIONS(935), - [anon_sym_let] = ACTIONS(935), - [anon_sym_loop] = ACTIONS(935), - [anon_sym_match] = ACTIONS(935), - [anon_sym_mod] = ACTIONS(935), - [anon_sym_pub] = ACTIONS(935), - [anon_sym_return] = ACTIONS(935), - [anon_sym_static] = ACTIONS(935), - [anon_sym_struct] = ACTIONS(935), - [anon_sym_trait] = ACTIONS(935), - [anon_sym_type] = ACTIONS(935), - [anon_sym_union] = ACTIONS(935), - [anon_sym_unsafe] = ACTIONS(935), - [anon_sym_use] = ACTIONS(935), - [anon_sym_where] = ACTIONS(935), - [anon_sym_while] = ACTIONS(935), - [sym_mutable_specifier] = ACTIONS(935), - [sym_integer_literal] = ACTIONS(937), - [aux_sym_string_literal_token1] = ACTIONS(937), - [sym_char_literal] = ACTIONS(937), - [anon_sym_true] = ACTIONS(935), - [anon_sym_false] = ACTIONS(935), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(935), - [sym_super] = ACTIONS(935), - [sym_crate] = ACTIONS(935), - [sym__raw_string_literal_start] = ACTIONS(937), - [sym_float_literal] = ACTIONS(937), + [sym_identifier] = ACTIONS(762), + [anon_sym_SEMI] = ACTIONS(764), + [anon_sym_LPAREN] = ACTIONS(764), + [anon_sym_RPAREN] = ACTIONS(764), + [anon_sym_LBRACK] = ACTIONS(764), + [anon_sym_RBRACK] = ACTIONS(764), + [anon_sym_LBRACE] = ACTIONS(764), + [anon_sym_RBRACE] = ACTIONS(764), + [anon_sym_COMMA] = ACTIONS(764), + [anon_sym_EQ_GT] = ACTIONS(764), + [anon_sym_COLON] = ACTIONS(762), + [anon_sym_DOLLAR] = ACTIONS(762), + [anon_sym_PLUS] = ACTIONS(762), + [anon_sym_STAR] = ACTIONS(762), + [anon_sym_QMARK] = ACTIONS(764), + [anon_sym_u8] = ACTIONS(762), + [anon_sym_i8] = ACTIONS(762), + [anon_sym_u16] = ACTIONS(762), + [anon_sym_i16] = ACTIONS(762), + [anon_sym_u32] = ACTIONS(762), + [anon_sym_i32] = ACTIONS(762), + [anon_sym_u64] = ACTIONS(762), + [anon_sym_i64] = ACTIONS(762), + [anon_sym_u128] = ACTIONS(762), + [anon_sym_i128] = ACTIONS(762), + [anon_sym_isize] = ACTIONS(762), + [anon_sym_usize] = ACTIONS(762), + [anon_sym_f32] = ACTIONS(762), + [anon_sym_f64] = ACTIONS(762), + [anon_sym_bool] = ACTIONS(762), + [anon_sym_str] = ACTIONS(762), + [anon_sym_char] = ACTIONS(762), + [anon_sym_DASH] = ACTIONS(762), + [anon_sym_SLASH] = ACTIONS(762), + [anon_sym_PERCENT] = ACTIONS(762), + [anon_sym_CARET] = ACTIONS(762), + [anon_sym_BANG] = ACTIONS(762), + [anon_sym_AMP] = ACTIONS(762), + [anon_sym_PIPE] = ACTIONS(762), + [anon_sym_AMP_AMP] = ACTIONS(764), + [anon_sym_PIPE_PIPE] = ACTIONS(764), + [anon_sym_LT_LT] = ACTIONS(762), + [anon_sym_GT_GT] = ACTIONS(762), + [anon_sym_PLUS_EQ] = ACTIONS(764), + [anon_sym_DASH_EQ] = ACTIONS(764), + [anon_sym_STAR_EQ] = ACTIONS(764), + [anon_sym_SLASH_EQ] = ACTIONS(764), + [anon_sym_PERCENT_EQ] = ACTIONS(764), + [anon_sym_CARET_EQ] = ACTIONS(764), + [anon_sym_AMP_EQ] = ACTIONS(764), + [anon_sym_PIPE_EQ] = ACTIONS(764), + [anon_sym_LT_LT_EQ] = ACTIONS(764), + [anon_sym_GT_GT_EQ] = ACTIONS(764), + [anon_sym_EQ] = ACTIONS(762), + [anon_sym_EQ_EQ] = ACTIONS(764), + [anon_sym_BANG_EQ] = ACTIONS(764), + [anon_sym_GT] = ACTIONS(762), + [anon_sym_LT] = ACTIONS(762), + [anon_sym_GT_EQ] = ACTIONS(764), + [anon_sym_LT_EQ] = ACTIONS(764), + [anon_sym_AT] = ACTIONS(764), + [anon_sym__] = ACTIONS(762), + [anon_sym_DOT] = ACTIONS(762), + [anon_sym_DOT_DOT] = ACTIONS(762), + [anon_sym_DOT_DOT_DOT] = ACTIONS(764), + [anon_sym_DOT_DOT_EQ] = ACTIONS(764), + [anon_sym_COLON_COLON] = ACTIONS(764), + [anon_sym_DASH_GT] = ACTIONS(764), + [anon_sym_POUND] = ACTIONS(764), + [anon_sym_SQUOTE] = ACTIONS(762), + [anon_sym_as] = ACTIONS(762), + [anon_sym_async] = ACTIONS(762), + [anon_sym_await] = ACTIONS(762), + [anon_sym_break] = ACTIONS(762), + [anon_sym_const] = ACTIONS(762), + [anon_sym_continue] = ACTIONS(762), + [anon_sym_default] = ACTIONS(762), + [anon_sym_enum] = ACTIONS(762), + [anon_sym_fn] = ACTIONS(762), + [anon_sym_for] = ACTIONS(762), + [anon_sym_if] = ACTIONS(762), + [anon_sym_impl] = ACTIONS(762), + [anon_sym_let] = ACTIONS(762), + [anon_sym_loop] = ACTIONS(762), + [anon_sym_match] = ACTIONS(762), + [anon_sym_mod] = ACTIONS(762), + [anon_sym_pub] = ACTIONS(762), + [anon_sym_return] = ACTIONS(762), + [anon_sym_static] = ACTIONS(762), + [anon_sym_struct] = ACTIONS(762), + [anon_sym_trait] = ACTIONS(762), + [anon_sym_type] = ACTIONS(762), + [anon_sym_union] = ACTIONS(762), + [anon_sym_unsafe] = ACTIONS(762), + [anon_sym_use] = ACTIONS(762), + [anon_sym_where] = ACTIONS(762), + [anon_sym_while] = ACTIONS(762), + [sym_mutable_specifier] = ACTIONS(762), + [sym_integer_literal] = ACTIONS(764), + [aux_sym_string_literal_token1] = ACTIONS(764), + [sym_char_literal] = ACTIONS(764), + [anon_sym_true] = ACTIONS(762), + [anon_sym_false] = ACTIONS(762), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(762), + [sym_super] = ACTIONS(762), + [sym_crate] = ACTIONS(762), + [sym_metavariable] = ACTIONS(764), + [sym__raw_string_literal_start] = ACTIONS(764), + [sym_float_literal] = ACTIONS(764), }, [174] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1699), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_let_condition] = STATE(2823), - [sym__let_chain] = STATE(2887), - [sym__condition] = STATE(2573), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(174), [sym_block_comment] = STATE(174), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(977), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_let] = ACTIONS(979), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [sym_identifier] = ACTIONS(762), + [anon_sym_SEMI] = ACTIONS(764), + [anon_sym_LPAREN] = ACTIONS(764), + [anon_sym_RPAREN] = ACTIONS(764), + [anon_sym_LBRACK] = ACTIONS(764), + [anon_sym_RBRACK] = ACTIONS(764), + [anon_sym_LBRACE] = ACTIONS(764), + [anon_sym_RBRACE] = ACTIONS(764), + [anon_sym_COMMA] = ACTIONS(764), + [anon_sym_EQ_GT] = ACTIONS(764), + [anon_sym_COLON] = ACTIONS(988), + [anon_sym_DOLLAR] = ACTIONS(762), + [anon_sym_PLUS] = ACTIONS(762), + [anon_sym_STAR] = ACTIONS(762), + [anon_sym_QMARK] = ACTIONS(764), + [anon_sym_u8] = ACTIONS(762), + [anon_sym_i8] = ACTIONS(762), + [anon_sym_u16] = ACTIONS(762), + [anon_sym_i16] = ACTIONS(762), + [anon_sym_u32] = ACTIONS(762), + [anon_sym_i32] = ACTIONS(762), + [anon_sym_u64] = ACTIONS(762), + [anon_sym_i64] = ACTIONS(762), + [anon_sym_u128] = ACTIONS(762), + [anon_sym_i128] = ACTIONS(762), + [anon_sym_isize] = ACTIONS(762), + [anon_sym_usize] = ACTIONS(762), + [anon_sym_f32] = ACTIONS(762), + [anon_sym_f64] = ACTIONS(762), + [anon_sym_bool] = ACTIONS(762), + [anon_sym_str] = ACTIONS(762), + [anon_sym_char] = ACTIONS(762), + [anon_sym_DASH] = ACTIONS(762), + [anon_sym_SLASH] = ACTIONS(762), + [anon_sym_PERCENT] = ACTIONS(762), + [anon_sym_CARET] = ACTIONS(762), + [anon_sym_BANG] = ACTIONS(762), + [anon_sym_AMP] = ACTIONS(762), + [anon_sym_PIPE] = ACTIONS(762), + [anon_sym_AMP_AMP] = ACTIONS(764), + [anon_sym_PIPE_PIPE] = ACTIONS(764), + [anon_sym_LT_LT] = ACTIONS(762), + [anon_sym_GT_GT] = ACTIONS(762), + [anon_sym_PLUS_EQ] = ACTIONS(764), + [anon_sym_DASH_EQ] = ACTIONS(764), + [anon_sym_STAR_EQ] = ACTIONS(764), + [anon_sym_SLASH_EQ] = ACTIONS(764), + [anon_sym_PERCENT_EQ] = ACTIONS(764), + [anon_sym_CARET_EQ] = ACTIONS(764), + [anon_sym_AMP_EQ] = ACTIONS(764), + [anon_sym_PIPE_EQ] = ACTIONS(764), + [anon_sym_LT_LT_EQ] = ACTIONS(764), + [anon_sym_GT_GT_EQ] = ACTIONS(764), + [anon_sym_EQ] = ACTIONS(762), + [anon_sym_EQ_EQ] = ACTIONS(764), + [anon_sym_BANG_EQ] = ACTIONS(764), + [anon_sym_GT] = ACTIONS(762), + [anon_sym_LT] = ACTIONS(762), + [anon_sym_GT_EQ] = ACTIONS(764), + [anon_sym_LT_EQ] = ACTIONS(764), + [anon_sym_AT] = ACTIONS(764), + [anon_sym__] = ACTIONS(762), + [anon_sym_DOT] = ACTIONS(762), + [anon_sym_DOT_DOT] = ACTIONS(762), + [anon_sym_DOT_DOT_DOT] = ACTIONS(764), + [anon_sym_DOT_DOT_EQ] = ACTIONS(764), + [anon_sym_COLON_COLON] = ACTIONS(764), + [anon_sym_DASH_GT] = ACTIONS(764), + [anon_sym_POUND] = ACTIONS(764), + [anon_sym_SQUOTE] = ACTIONS(762), + [anon_sym_as] = ACTIONS(762), + [anon_sym_async] = ACTIONS(762), + [anon_sym_await] = ACTIONS(762), + [anon_sym_break] = ACTIONS(762), + [anon_sym_const] = ACTIONS(762), + [anon_sym_continue] = ACTIONS(762), + [anon_sym_default] = ACTIONS(762), + [anon_sym_enum] = ACTIONS(762), + [anon_sym_fn] = ACTIONS(762), + [anon_sym_for] = ACTIONS(762), + [anon_sym_if] = ACTIONS(762), + [anon_sym_impl] = ACTIONS(762), + [anon_sym_let] = ACTIONS(762), + [anon_sym_loop] = ACTIONS(762), + [anon_sym_match] = ACTIONS(762), + [anon_sym_mod] = ACTIONS(762), + [anon_sym_pub] = ACTIONS(762), + [anon_sym_return] = ACTIONS(762), + [anon_sym_static] = ACTIONS(762), + [anon_sym_struct] = ACTIONS(762), + [anon_sym_trait] = ACTIONS(762), + [anon_sym_type] = ACTIONS(762), + [anon_sym_union] = ACTIONS(762), + [anon_sym_unsafe] = ACTIONS(762), + [anon_sym_use] = ACTIONS(762), + [anon_sym_where] = ACTIONS(762), + [anon_sym_while] = ACTIONS(762), + [sym_mutable_specifier] = ACTIONS(762), + [sym_integer_literal] = ACTIONS(764), + [aux_sym_string_literal_token1] = ACTIONS(764), + [sym_char_literal] = ACTIONS(764), + [anon_sym_true] = ACTIONS(762), + [anon_sym_false] = ACTIONS(762), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(762), + [sym_super] = ACTIONS(762), + [sym_crate] = ACTIONS(762), + [sym_metavariable] = ACTIONS(764), + [sym__raw_string_literal_start] = ACTIONS(764), + [sym_float_literal] = ACTIONS(764), }, [175] = { + [sym_attribute_item] = STATE(1023), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1618), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1419), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(175), [sym_block_comment] = STATE(175), - [sym_identifier] = ACTIONS(967), - [anon_sym_SEMI] = ACTIONS(969), - [anon_sym_LPAREN] = ACTIONS(969), - [anon_sym_RPAREN] = ACTIONS(969), - [anon_sym_LBRACK] = ACTIONS(969), - [anon_sym_RBRACK] = ACTIONS(969), - [anon_sym_LBRACE] = ACTIONS(969), - [anon_sym_RBRACE] = ACTIONS(969), - [anon_sym_EQ_GT] = ACTIONS(969), - [anon_sym_COLON] = ACTIONS(967), - [anon_sym_DOLLAR] = ACTIONS(969), - [anon_sym_PLUS] = ACTIONS(967), - [anon_sym_STAR] = ACTIONS(967), - [anon_sym_QMARK] = ACTIONS(969), - [anon_sym_u8] = ACTIONS(967), - [anon_sym_i8] = ACTIONS(967), - [anon_sym_u16] = ACTIONS(967), - [anon_sym_i16] = ACTIONS(967), - [anon_sym_u32] = ACTIONS(967), - [anon_sym_i32] = ACTIONS(967), - [anon_sym_u64] = ACTIONS(967), - [anon_sym_i64] = ACTIONS(967), - [anon_sym_u128] = ACTIONS(967), - [anon_sym_i128] = ACTIONS(967), - [anon_sym_isize] = ACTIONS(967), - [anon_sym_usize] = ACTIONS(967), - [anon_sym_f32] = ACTIONS(967), - [anon_sym_f64] = ACTIONS(967), - [anon_sym_bool] = ACTIONS(967), - [anon_sym_str] = ACTIONS(967), - [anon_sym_char] = ACTIONS(967), - [anon_sym_DASH] = ACTIONS(967), - [anon_sym_SLASH] = ACTIONS(967), - [anon_sym_PERCENT] = ACTIONS(967), - [anon_sym_CARET] = ACTIONS(967), - [anon_sym_BANG] = ACTIONS(967), - [anon_sym_AMP] = ACTIONS(967), - [anon_sym_PIPE] = ACTIONS(967), - [anon_sym_AMP_AMP] = ACTIONS(969), - [anon_sym_PIPE_PIPE] = ACTIONS(969), - [anon_sym_LT_LT] = ACTIONS(967), - [anon_sym_GT_GT] = ACTIONS(967), - [anon_sym_PLUS_EQ] = ACTIONS(969), - [anon_sym_DASH_EQ] = ACTIONS(969), - [anon_sym_STAR_EQ] = ACTIONS(969), - [anon_sym_SLASH_EQ] = ACTIONS(969), - [anon_sym_PERCENT_EQ] = ACTIONS(969), - [anon_sym_CARET_EQ] = ACTIONS(969), - [anon_sym_AMP_EQ] = ACTIONS(969), - [anon_sym_PIPE_EQ] = ACTIONS(969), - [anon_sym_LT_LT_EQ] = ACTIONS(969), - [anon_sym_GT_GT_EQ] = ACTIONS(969), - [anon_sym_EQ] = ACTIONS(967), - [anon_sym_EQ_EQ] = ACTIONS(969), - [anon_sym_BANG_EQ] = ACTIONS(969), - [anon_sym_GT] = ACTIONS(967), - [anon_sym_LT] = ACTIONS(967), - [anon_sym_GT_EQ] = ACTIONS(969), - [anon_sym_LT_EQ] = ACTIONS(969), - [anon_sym_AT] = ACTIONS(969), - [anon_sym__] = ACTIONS(967), - [anon_sym_DOT] = ACTIONS(967), - [anon_sym_DOT_DOT] = ACTIONS(967), - [anon_sym_DOT_DOT_DOT] = ACTIONS(969), - [anon_sym_DOT_DOT_EQ] = ACTIONS(969), - [anon_sym_COMMA] = ACTIONS(969), - [anon_sym_COLON_COLON] = ACTIONS(969), - [anon_sym_DASH_GT] = ACTIONS(969), - [anon_sym_POUND] = ACTIONS(969), - [anon_sym_SQUOTE] = ACTIONS(967), - [anon_sym_as] = ACTIONS(967), - [anon_sym_async] = ACTIONS(967), - [anon_sym_await] = ACTIONS(967), - [anon_sym_break] = ACTIONS(967), - [anon_sym_const] = ACTIONS(967), - [anon_sym_continue] = ACTIONS(967), - [anon_sym_default] = ACTIONS(967), - [anon_sym_enum] = ACTIONS(967), - [anon_sym_fn] = ACTIONS(967), - [anon_sym_for] = ACTIONS(967), - [anon_sym_if] = ACTIONS(967), - [anon_sym_impl] = ACTIONS(967), - [anon_sym_let] = ACTIONS(967), - [anon_sym_loop] = ACTIONS(967), - [anon_sym_match] = ACTIONS(967), - [anon_sym_mod] = ACTIONS(967), - [anon_sym_pub] = ACTIONS(967), - [anon_sym_return] = ACTIONS(967), - [anon_sym_static] = ACTIONS(967), - [anon_sym_struct] = ACTIONS(967), - [anon_sym_trait] = ACTIONS(967), - [anon_sym_type] = ACTIONS(967), - [anon_sym_union] = ACTIONS(967), - [anon_sym_unsafe] = ACTIONS(967), - [anon_sym_use] = ACTIONS(967), - [anon_sym_where] = ACTIONS(967), - [anon_sym_while] = ACTIONS(967), - [sym_mutable_specifier] = ACTIONS(967), - [sym_integer_literal] = ACTIONS(969), - [aux_sym_string_literal_token1] = ACTIONS(969), - [sym_char_literal] = ACTIONS(969), - [anon_sym_true] = ACTIONS(967), - [anon_sym_false] = ACTIONS(967), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(967), - [sym_super] = ACTIONS(967), - [sym_crate] = ACTIONS(967), - [sym__raw_string_literal_start] = ACTIONS(969), - [sym_float_literal] = ACTIONS(969), + [aux_sym_enum_variant_list_repeat1] = STATE(216), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(990), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_POUND] = ACTIONS(774), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(365), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [176] = { [sym_line_comment] = STATE(176), [sym_block_comment] = STATE(176), - [sym_identifier] = ACTIONS(753), - [anon_sym_SEMI] = ACTIONS(755), - [anon_sym_LPAREN] = ACTIONS(755), - [anon_sym_RPAREN] = ACTIONS(755), - [anon_sym_LBRACK] = ACTIONS(755), - [anon_sym_RBRACK] = ACTIONS(755), - [anon_sym_LBRACE] = ACTIONS(755), - [anon_sym_RBRACE] = ACTIONS(755), - [anon_sym_EQ_GT] = ACTIONS(755), - [anon_sym_COLON] = ACTIONS(753), - [anon_sym_DOLLAR] = ACTIONS(755), - [anon_sym_PLUS] = ACTIONS(753), - [anon_sym_STAR] = ACTIONS(753), - [anon_sym_QMARK] = ACTIONS(755), - [anon_sym_u8] = ACTIONS(753), - [anon_sym_i8] = ACTIONS(753), - [anon_sym_u16] = ACTIONS(753), - [anon_sym_i16] = ACTIONS(753), - [anon_sym_u32] = ACTIONS(753), - [anon_sym_i32] = ACTIONS(753), - [anon_sym_u64] = ACTIONS(753), - [anon_sym_i64] = ACTIONS(753), - [anon_sym_u128] = ACTIONS(753), - [anon_sym_i128] = ACTIONS(753), - [anon_sym_isize] = ACTIONS(753), - [anon_sym_usize] = ACTIONS(753), - [anon_sym_f32] = ACTIONS(753), - [anon_sym_f64] = ACTIONS(753), - [anon_sym_bool] = ACTIONS(753), - [anon_sym_str] = ACTIONS(753), - [anon_sym_char] = ACTIONS(753), - [anon_sym_DASH] = ACTIONS(753), - [anon_sym_SLASH] = ACTIONS(753), - [anon_sym_PERCENT] = ACTIONS(753), - [anon_sym_CARET] = ACTIONS(753), - [anon_sym_BANG] = ACTIONS(753), - [anon_sym_AMP] = ACTIONS(753), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_AMP_AMP] = ACTIONS(755), - [anon_sym_PIPE_PIPE] = ACTIONS(755), - [anon_sym_LT_LT] = ACTIONS(753), - [anon_sym_GT_GT] = ACTIONS(753), - [anon_sym_PLUS_EQ] = ACTIONS(755), - [anon_sym_DASH_EQ] = ACTIONS(755), - [anon_sym_STAR_EQ] = ACTIONS(755), - [anon_sym_SLASH_EQ] = ACTIONS(755), - [anon_sym_PERCENT_EQ] = ACTIONS(755), - [anon_sym_CARET_EQ] = ACTIONS(755), - [anon_sym_AMP_EQ] = ACTIONS(755), - [anon_sym_PIPE_EQ] = ACTIONS(755), - [anon_sym_LT_LT_EQ] = ACTIONS(755), - [anon_sym_GT_GT_EQ] = ACTIONS(755), - [anon_sym_EQ] = ACTIONS(753), - [anon_sym_EQ_EQ] = ACTIONS(755), - [anon_sym_BANG_EQ] = ACTIONS(755), - [anon_sym_GT] = ACTIONS(753), - [anon_sym_LT] = ACTIONS(753), - [anon_sym_GT_EQ] = ACTIONS(755), - [anon_sym_LT_EQ] = ACTIONS(755), - [anon_sym_AT] = ACTIONS(755), - [anon_sym__] = ACTIONS(753), - [anon_sym_DOT] = ACTIONS(753), - [anon_sym_DOT_DOT] = ACTIONS(753), - [anon_sym_DOT_DOT_DOT] = ACTIONS(755), - [anon_sym_DOT_DOT_EQ] = ACTIONS(755), - [anon_sym_COMMA] = ACTIONS(755), - [anon_sym_COLON_COLON] = ACTIONS(755), - [anon_sym_DASH_GT] = ACTIONS(755), - [anon_sym_POUND] = ACTIONS(755), - [anon_sym_SQUOTE] = ACTIONS(753), - [anon_sym_as] = ACTIONS(753), - [anon_sym_async] = ACTIONS(753), - [anon_sym_await] = ACTIONS(753), - [anon_sym_break] = ACTIONS(753), - [anon_sym_const] = ACTIONS(753), - [anon_sym_continue] = ACTIONS(753), - [anon_sym_default] = ACTIONS(753), - [anon_sym_enum] = ACTIONS(753), - [anon_sym_fn] = ACTIONS(753), - [anon_sym_for] = ACTIONS(753), - [anon_sym_if] = ACTIONS(753), - [anon_sym_impl] = ACTIONS(753), - [anon_sym_let] = ACTIONS(753), - [anon_sym_loop] = ACTIONS(753), - [anon_sym_match] = ACTIONS(753), - [anon_sym_mod] = ACTIONS(753), - [anon_sym_pub] = ACTIONS(753), - [anon_sym_return] = ACTIONS(753), - [anon_sym_static] = ACTIONS(753), - [anon_sym_struct] = ACTIONS(753), - [anon_sym_trait] = ACTIONS(753), - [anon_sym_type] = ACTIONS(753), - [anon_sym_union] = ACTIONS(753), - [anon_sym_unsafe] = ACTIONS(753), - [anon_sym_use] = ACTIONS(753), - [anon_sym_where] = ACTIONS(753), - [anon_sym_while] = ACTIONS(753), - [sym_mutable_specifier] = ACTIONS(753), - [sym_integer_literal] = ACTIONS(755), - [aux_sym_string_literal_token1] = ACTIONS(755), - [sym_char_literal] = ACTIONS(755), - [anon_sym_true] = ACTIONS(753), - [anon_sym_false] = ACTIONS(753), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(753), - [sym_super] = ACTIONS(753), - [sym_crate] = ACTIONS(753), - [sym__raw_string_literal_start] = ACTIONS(755), - [sym_float_literal] = ACTIONS(755), + [sym_identifier] = ACTIONS(964), + [anon_sym_SEMI] = ACTIONS(966), + [anon_sym_LPAREN] = ACTIONS(966), + [anon_sym_RPAREN] = ACTIONS(966), + [anon_sym_LBRACK] = ACTIONS(966), + [anon_sym_RBRACK] = ACTIONS(966), + [anon_sym_LBRACE] = ACTIONS(966), + [anon_sym_RBRACE] = ACTIONS(966), + [anon_sym_COMMA] = ACTIONS(966), + [anon_sym_EQ_GT] = ACTIONS(966), + [anon_sym_COLON] = ACTIONS(964), + [anon_sym_DOLLAR] = ACTIONS(966), + [anon_sym_PLUS] = ACTIONS(964), + [anon_sym_STAR] = ACTIONS(964), + [anon_sym_QMARK] = ACTIONS(966), + [anon_sym_u8] = ACTIONS(964), + [anon_sym_i8] = ACTIONS(964), + [anon_sym_u16] = ACTIONS(964), + [anon_sym_i16] = ACTIONS(964), + [anon_sym_u32] = ACTIONS(964), + [anon_sym_i32] = ACTIONS(964), + [anon_sym_u64] = ACTIONS(964), + [anon_sym_i64] = ACTIONS(964), + [anon_sym_u128] = ACTIONS(964), + [anon_sym_i128] = ACTIONS(964), + [anon_sym_isize] = ACTIONS(964), + [anon_sym_usize] = ACTIONS(964), + [anon_sym_f32] = ACTIONS(964), + [anon_sym_f64] = ACTIONS(964), + [anon_sym_bool] = ACTIONS(964), + [anon_sym_str] = ACTIONS(964), + [anon_sym_char] = ACTIONS(964), + [anon_sym_DASH] = ACTIONS(964), + [anon_sym_SLASH] = ACTIONS(964), + [anon_sym_PERCENT] = ACTIONS(964), + [anon_sym_CARET] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(964), + [anon_sym_AMP] = ACTIONS(964), + [anon_sym_PIPE] = ACTIONS(964), + [anon_sym_AMP_AMP] = ACTIONS(966), + [anon_sym_PIPE_PIPE] = ACTIONS(966), + [anon_sym_LT_LT] = ACTIONS(964), + [anon_sym_GT_GT] = ACTIONS(964), + [anon_sym_PLUS_EQ] = ACTIONS(966), + [anon_sym_DASH_EQ] = ACTIONS(966), + [anon_sym_STAR_EQ] = ACTIONS(966), + [anon_sym_SLASH_EQ] = ACTIONS(966), + [anon_sym_PERCENT_EQ] = ACTIONS(966), + [anon_sym_CARET_EQ] = ACTIONS(966), + [anon_sym_AMP_EQ] = ACTIONS(966), + [anon_sym_PIPE_EQ] = ACTIONS(966), + [anon_sym_LT_LT_EQ] = ACTIONS(966), + [anon_sym_GT_GT_EQ] = ACTIONS(966), + [anon_sym_EQ] = ACTIONS(964), + [anon_sym_EQ_EQ] = ACTIONS(966), + [anon_sym_BANG_EQ] = ACTIONS(966), + [anon_sym_GT] = ACTIONS(964), + [anon_sym_LT] = ACTIONS(964), + [anon_sym_GT_EQ] = ACTIONS(966), + [anon_sym_LT_EQ] = ACTIONS(966), + [anon_sym_AT] = ACTIONS(966), + [anon_sym__] = ACTIONS(964), + [anon_sym_DOT] = ACTIONS(964), + [anon_sym_DOT_DOT] = ACTIONS(964), + [anon_sym_DOT_DOT_DOT] = ACTIONS(966), + [anon_sym_DOT_DOT_EQ] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(966), + [anon_sym_DASH_GT] = ACTIONS(966), + [anon_sym_POUND] = ACTIONS(966), + [anon_sym_SQUOTE] = ACTIONS(964), + [anon_sym_as] = ACTIONS(964), + [anon_sym_async] = ACTIONS(964), + [anon_sym_await] = ACTIONS(964), + [anon_sym_break] = ACTIONS(964), + [anon_sym_const] = ACTIONS(964), + [anon_sym_continue] = ACTIONS(964), + [anon_sym_default] = ACTIONS(964), + [anon_sym_enum] = ACTIONS(964), + [anon_sym_fn] = ACTIONS(964), + [anon_sym_for] = ACTIONS(964), + [anon_sym_if] = ACTIONS(964), + [anon_sym_impl] = ACTIONS(964), + [anon_sym_let] = ACTIONS(964), + [anon_sym_loop] = ACTIONS(964), + [anon_sym_match] = ACTIONS(964), + [anon_sym_mod] = ACTIONS(964), + [anon_sym_pub] = ACTIONS(964), + [anon_sym_return] = ACTIONS(964), + [anon_sym_static] = ACTIONS(964), + [anon_sym_struct] = ACTIONS(964), + [anon_sym_trait] = ACTIONS(964), + [anon_sym_type] = ACTIONS(964), + [anon_sym_union] = ACTIONS(964), + [anon_sym_unsafe] = ACTIONS(964), + [anon_sym_use] = ACTIONS(964), + [anon_sym_where] = ACTIONS(964), + [anon_sym_while] = ACTIONS(964), + [sym_mutable_specifier] = ACTIONS(964), + [sym_integer_literal] = ACTIONS(966), + [aux_sym_string_literal_token1] = ACTIONS(966), + [sym_char_literal] = ACTIONS(966), + [anon_sym_true] = ACTIONS(964), + [anon_sym_false] = ACTIONS(964), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(964), + [sym_super] = ACTIONS(964), + [sym_crate] = ACTIONS(964), + [sym__raw_string_literal_start] = ACTIONS(966), + [sym_float_literal] = ACTIONS(966), }, [177] = { + [sym_attribute_item] = STATE(1023), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1618), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1419), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(177), [sym_block_comment] = STATE(177), - [sym_identifier] = ACTIONS(767), - [anon_sym_SEMI] = ACTIONS(769), - [anon_sym_LPAREN] = ACTIONS(769), - [anon_sym_RPAREN] = ACTIONS(769), - [anon_sym_LBRACK] = ACTIONS(769), - [anon_sym_RBRACK] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(769), - [anon_sym_RBRACE] = ACTIONS(769), - [anon_sym_EQ_GT] = ACTIONS(769), - [anon_sym_COLON] = ACTIONS(767), - [anon_sym_DOLLAR] = ACTIONS(769), - [anon_sym_PLUS] = ACTIONS(767), - [anon_sym_STAR] = ACTIONS(767), - [anon_sym_QMARK] = ACTIONS(769), - [anon_sym_u8] = ACTIONS(767), - [anon_sym_i8] = ACTIONS(767), - [anon_sym_u16] = ACTIONS(767), - [anon_sym_i16] = ACTIONS(767), - [anon_sym_u32] = ACTIONS(767), - [anon_sym_i32] = ACTIONS(767), - [anon_sym_u64] = ACTIONS(767), - [anon_sym_i64] = ACTIONS(767), - [anon_sym_u128] = ACTIONS(767), - [anon_sym_i128] = ACTIONS(767), - [anon_sym_isize] = ACTIONS(767), - [anon_sym_usize] = ACTIONS(767), - [anon_sym_f32] = ACTIONS(767), - [anon_sym_f64] = ACTIONS(767), - [anon_sym_bool] = ACTIONS(767), - [anon_sym_str] = ACTIONS(767), - [anon_sym_char] = ACTIONS(767), - [anon_sym_DASH] = ACTIONS(767), - [anon_sym_SLASH] = ACTIONS(767), - [anon_sym_PERCENT] = ACTIONS(767), - [anon_sym_CARET] = ACTIONS(767), - [anon_sym_BANG] = ACTIONS(767), - [anon_sym_AMP] = ACTIONS(767), - [anon_sym_PIPE] = ACTIONS(767), - [anon_sym_AMP_AMP] = ACTIONS(769), - [anon_sym_PIPE_PIPE] = ACTIONS(769), - [anon_sym_LT_LT] = ACTIONS(767), - [anon_sym_GT_GT] = ACTIONS(767), - [anon_sym_PLUS_EQ] = ACTIONS(769), - [anon_sym_DASH_EQ] = ACTIONS(769), - [anon_sym_STAR_EQ] = ACTIONS(769), - [anon_sym_SLASH_EQ] = ACTIONS(769), - [anon_sym_PERCENT_EQ] = ACTIONS(769), - [anon_sym_CARET_EQ] = ACTIONS(769), - [anon_sym_AMP_EQ] = ACTIONS(769), - [anon_sym_PIPE_EQ] = ACTIONS(769), - [anon_sym_LT_LT_EQ] = ACTIONS(769), - [anon_sym_GT_GT_EQ] = ACTIONS(769), - [anon_sym_EQ] = ACTIONS(767), - [anon_sym_EQ_EQ] = ACTIONS(769), - [anon_sym_BANG_EQ] = ACTIONS(769), - [anon_sym_GT] = ACTIONS(767), - [anon_sym_LT] = ACTIONS(767), - [anon_sym_GT_EQ] = ACTIONS(769), - [anon_sym_LT_EQ] = ACTIONS(769), - [anon_sym_AT] = ACTIONS(769), - [anon_sym__] = ACTIONS(767), - [anon_sym_DOT] = ACTIONS(767), - [anon_sym_DOT_DOT] = ACTIONS(767), - [anon_sym_DOT_DOT_DOT] = ACTIONS(769), - [anon_sym_DOT_DOT_EQ] = ACTIONS(769), - [anon_sym_COMMA] = ACTIONS(769), - [anon_sym_COLON_COLON] = ACTIONS(769), - [anon_sym_DASH_GT] = ACTIONS(769), - [anon_sym_POUND] = ACTIONS(769), - [anon_sym_SQUOTE] = ACTIONS(767), - [anon_sym_as] = ACTIONS(767), - [anon_sym_async] = ACTIONS(767), - [anon_sym_await] = ACTIONS(767), - [anon_sym_break] = ACTIONS(767), - [anon_sym_const] = ACTIONS(767), - [anon_sym_continue] = ACTIONS(767), - [anon_sym_default] = ACTIONS(767), - [anon_sym_enum] = ACTIONS(767), - [anon_sym_fn] = ACTIONS(767), - [anon_sym_for] = ACTIONS(767), - [anon_sym_if] = ACTIONS(767), - [anon_sym_impl] = ACTIONS(767), - [anon_sym_let] = ACTIONS(767), - [anon_sym_loop] = ACTIONS(767), - [anon_sym_match] = ACTIONS(767), - [anon_sym_mod] = ACTIONS(767), - [anon_sym_pub] = ACTIONS(767), - [anon_sym_return] = ACTIONS(767), - [anon_sym_static] = ACTIONS(767), - [anon_sym_struct] = ACTIONS(767), - [anon_sym_trait] = ACTIONS(767), - [anon_sym_type] = ACTIONS(767), - [anon_sym_union] = ACTIONS(767), - [anon_sym_unsafe] = ACTIONS(767), - [anon_sym_use] = ACTIONS(767), - [anon_sym_where] = ACTIONS(767), - [anon_sym_while] = ACTIONS(767), - [sym_mutable_specifier] = ACTIONS(767), - [sym_integer_literal] = ACTIONS(769), - [aux_sym_string_literal_token1] = ACTIONS(769), - [sym_char_literal] = ACTIONS(769), - [anon_sym_true] = ACTIONS(767), - [anon_sym_false] = ACTIONS(767), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(767), - [sym_super] = ACTIONS(767), - [sym_crate] = ACTIONS(767), - [sym__raw_string_literal_start] = ACTIONS(769), - [sym_float_literal] = ACTIONS(769), + [aux_sym_enum_variant_list_repeat1] = STATE(216), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(992), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_POUND] = ACTIONS(774), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(365), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [178] = { [sym_line_comment] = STATE(178), [sym_block_comment] = STATE(178), - [sym_identifier] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(773), - [anon_sym_LPAREN] = ACTIONS(773), - [anon_sym_RPAREN] = ACTIONS(773), - [anon_sym_LBRACK] = ACTIONS(773), - [anon_sym_RBRACK] = ACTIONS(773), - [anon_sym_LBRACE] = ACTIONS(773), - [anon_sym_RBRACE] = ACTIONS(773), - [anon_sym_EQ_GT] = ACTIONS(773), - [anon_sym_COLON] = ACTIONS(771), - [anon_sym_DOLLAR] = ACTIONS(773), - [anon_sym_PLUS] = ACTIONS(771), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_QMARK] = ACTIONS(773), - [anon_sym_u8] = ACTIONS(771), - [anon_sym_i8] = ACTIONS(771), - [anon_sym_u16] = ACTIONS(771), - [anon_sym_i16] = ACTIONS(771), - [anon_sym_u32] = ACTIONS(771), - [anon_sym_i32] = ACTIONS(771), - [anon_sym_u64] = ACTIONS(771), - [anon_sym_i64] = ACTIONS(771), - [anon_sym_u128] = ACTIONS(771), - [anon_sym_i128] = ACTIONS(771), - [anon_sym_isize] = ACTIONS(771), - [anon_sym_usize] = ACTIONS(771), - [anon_sym_f32] = ACTIONS(771), - [anon_sym_f64] = ACTIONS(771), - [anon_sym_bool] = ACTIONS(771), - [anon_sym_str] = ACTIONS(771), - [anon_sym_char] = ACTIONS(771), - [anon_sym_DASH] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_PERCENT] = ACTIONS(771), - [anon_sym_CARET] = ACTIONS(771), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_AMP] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(771), - [anon_sym_AMP_AMP] = ACTIONS(773), - [anon_sym_PIPE_PIPE] = ACTIONS(773), - [anon_sym_LT_LT] = ACTIONS(771), - [anon_sym_GT_GT] = ACTIONS(771), - [anon_sym_PLUS_EQ] = ACTIONS(773), - [anon_sym_DASH_EQ] = ACTIONS(773), - [anon_sym_STAR_EQ] = ACTIONS(773), - [anon_sym_SLASH_EQ] = ACTIONS(773), - [anon_sym_PERCENT_EQ] = ACTIONS(773), - [anon_sym_CARET_EQ] = ACTIONS(773), - [anon_sym_AMP_EQ] = ACTIONS(773), - [anon_sym_PIPE_EQ] = ACTIONS(773), - [anon_sym_LT_LT_EQ] = ACTIONS(773), - [anon_sym_GT_GT_EQ] = ACTIONS(773), - [anon_sym_EQ] = ACTIONS(771), - [anon_sym_EQ_EQ] = ACTIONS(773), - [anon_sym_BANG_EQ] = ACTIONS(773), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_GT_EQ] = ACTIONS(773), - [anon_sym_LT_EQ] = ACTIONS(773), - [anon_sym_AT] = ACTIONS(773), - [anon_sym__] = ACTIONS(771), - [anon_sym_DOT] = ACTIONS(771), - [anon_sym_DOT_DOT] = ACTIONS(771), - [anon_sym_DOT_DOT_DOT] = ACTIONS(773), - [anon_sym_DOT_DOT_EQ] = ACTIONS(773), - [anon_sym_COMMA] = ACTIONS(773), - [anon_sym_COLON_COLON] = ACTIONS(773), - [anon_sym_DASH_GT] = ACTIONS(773), - [anon_sym_POUND] = ACTIONS(773), - [anon_sym_SQUOTE] = ACTIONS(771), - [anon_sym_as] = ACTIONS(771), - [anon_sym_async] = ACTIONS(771), - [anon_sym_await] = ACTIONS(771), - [anon_sym_break] = ACTIONS(771), - [anon_sym_const] = ACTIONS(771), - [anon_sym_continue] = ACTIONS(771), - [anon_sym_default] = ACTIONS(771), - [anon_sym_enum] = ACTIONS(771), - [anon_sym_fn] = ACTIONS(771), - [anon_sym_for] = ACTIONS(771), - [anon_sym_if] = ACTIONS(771), - [anon_sym_impl] = ACTIONS(771), - [anon_sym_let] = ACTIONS(771), - [anon_sym_loop] = ACTIONS(771), - [anon_sym_match] = ACTIONS(771), - [anon_sym_mod] = ACTIONS(771), - [anon_sym_pub] = ACTIONS(771), - [anon_sym_return] = ACTIONS(771), - [anon_sym_static] = ACTIONS(771), - [anon_sym_struct] = ACTIONS(771), - [anon_sym_trait] = ACTIONS(771), - [anon_sym_type] = ACTIONS(771), - [anon_sym_union] = ACTIONS(771), - [anon_sym_unsafe] = ACTIONS(771), - [anon_sym_use] = ACTIONS(771), - [anon_sym_where] = ACTIONS(771), - [anon_sym_while] = ACTIONS(771), - [sym_mutable_specifier] = ACTIONS(771), - [sym_integer_literal] = ACTIONS(773), - [aux_sym_string_literal_token1] = ACTIONS(773), - [sym_char_literal] = ACTIONS(773), - [anon_sym_true] = ACTIONS(771), - [anon_sym_false] = ACTIONS(771), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(771), - [sym_super] = ACTIONS(771), - [sym_crate] = ACTIONS(771), - [sym__raw_string_literal_start] = ACTIONS(773), - [sym_float_literal] = ACTIONS(773), + [sym_identifier] = ACTIONS(994), + [anon_sym_SEMI] = ACTIONS(996), + [anon_sym_LPAREN] = ACTIONS(996), + [anon_sym_RPAREN] = ACTIONS(996), + [anon_sym_LBRACK] = ACTIONS(996), + [anon_sym_RBRACK] = ACTIONS(996), + [anon_sym_LBRACE] = ACTIONS(996), + [anon_sym_RBRACE] = ACTIONS(996), + [anon_sym_COMMA] = ACTIONS(996), + [anon_sym_EQ_GT] = ACTIONS(996), + [anon_sym_COLON] = ACTIONS(994), + [anon_sym_DOLLAR] = ACTIONS(996), + [anon_sym_PLUS] = ACTIONS(994), + [anon_sym_STAR] = ACTIONS(994), + [anon_sym_QMARK] = ACTIONS(996), + [anon_sym_u8] = ACTIONS(994), + [anon_sym_i8] = ACTIONS(994), + [anon_sym_u16] = ACTIONS(994), + [anon_sym_i16] = ACTIONS(994), + [anon_sym_u32] = ACTIONS(994), + [anon_sym_i32] = ACTIONS(994), + [anon_sym_u64] = ACTIONS(994), + [anon_sym_i64] = ACTIONS(994), + [anon_sym_u128] = ACTIONS(994), + [anon_sym_i128] = ACTIONS(994), + [anon_sym_isize] = ACTIONS(994), + [anon_sym_usize] = ACTIONS(994), + [anon_sym_f32] = ACTIONS(994), + [anon_sym_f64] = ACTIONS(994), + [anon_sym_bool] = ACTIONS(994), + [anon_sym_str] = ACTIONS(994), + [anon_sym_char] = ACTIONS(994), + [anon_sym_DASH] = ACTIONS(994), + [anon_sym_SLASH] = ACTIONS(994), + [anon_sym_PERCENT] = ACTIONS(994), + [anon_sym_CARET] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(994), + [anon_sym_AMP] = ACTIONS(994), + [anon_sym_PIPE] = ACTIONS(994), + [anon_sym_AMP_AMP] = ACTIONS(996), + [anon_sym_PIPE_PIPE] = ACTIONS(996), + [anon_sym_LT_LT] = ACTIONS(994), + [anon_sym_GT_GT] = ACTIONS(994), + [anon_sym_PLUS_EQ] = ACTIONS(996), + [anon_sym_DASH_EQ] = ACTIONS(996), + [anon_sym_STAR_EQ] = ACTIONS(996), + [anon_sym_SLASH_EQ] = ACTIONS(996), + [anon_sym_PERCENT_EQ] = ACTIONS(996), + [anon_sym_CARET_EQ] = ACTIONS(996), + [anon_sym_AMP_EQ] = ACTIONS(996), + [anon_sym_PIPE_EQ] = ACTIONS(996), + [anon_sym_LT_LT_EQ] = ACTIONS(996), + [anon_sym_GT_GT_EQ] = ACTIONS(996), + [anon_sym_EQ] = ACTIONS(994), + [anon_sym_EQ_EQ] = ACTIONS(996), + [anon_sym_BANG_EQ] = ACTIONS(996), + [anon_sym_GT] = ACTIONS(994), + [anon_sym_LT] = ACTIONS(994), + [anon_sym_GT_EQ] = ACTIONS(996), + [anon_sym_LT_EQ] = ACTIONS(996), + [anon_sym_AT] = ACTIONS(996), + [anon_sym__] = ACTIONS(994), + [anon_sym_DOT] = ACTIONS(994), + [anon_sym_DOT_DOT] = ACTIONS(994), + [anon_sym_DOT_DOT_DOT] = ACTIONS(996), + [anon_sym_DOT_DOT_EQ] = ACTIONS(996), + [anon_sym_COLON_COLON] = ACTIONS(996), + [anon_sym_DASH_GT] = ACTIONS(996), + [anon_sym_POUND] = ACTIONS(996), + [anon_sym_SQUOTE] = ACTIONS(994), + [anon_sym_as] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_await] = ACTIONS(994), + [anon_sym_break] = ACTIONS(994), + [anon_sym_const] = ACTIONS(994), + [anon_sym_continue] = ACTIONS(994), + [anon_sym_default] = ACTIONS(994), + [anon_sym_enum] = ACTIONS(994), + [anon_sym_fn] = ACTIONS(994), + [anon_sym_for] = ACTIONS(994), + [anon_sym_if] = ACTIONS(994), + [anon_sym_impl] = ACTIONS(994), + [anon_sym_let] = ACTIONS(994), + [anon_sym_loop] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_mod] = ACTIONS(994), + [anon_sym_pub] = ACTIONS(994), + [anon_sym_return] = ACTIONS(994), + [anon_sym_static] = ACTIONS(994), + [anon_sym_struct] = ACTIONS(994), + [anon_sym_trait] = ACTIONS(994), + [anon_sym_type] = ACTIONS(994), + [anon_sym_union] = ACTIONS(994), + [anon_sym_unsafe] = ACTIONS(994), + [anon_sym_use] = ACTIONS(994), + [anon_sym_where] = ACTIONS(994), + [anon_sym_while] = ACTIONS(994), + [sym_mutable_specifier] = ACTIONS(994), + [sym_integer_literal] = ACTIONS(996), + [aux_sym_string_literal_token1] = ACTIONS(996), + [sym_char_literal] = ACTIONS(996), + [anon_sym_true] = ACTIONS(994), + [anon_sym_false] = ACTIONS(994), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(994), + [sym_super] = ACTIONS(994), + [sym_crate] = ACTIONS(994), + [sym__raw_string_literal_start] = ACTIONS(996), + [sym_float_literal] = ACTIONS(996), }, [179] = { - [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1607), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(179), [sym_block_comment] = STATE(179), - [aux_sym_enum_variant_list_repeat1] = STATE(211), - [sym_identifier] = ACTIONS(334), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(983), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(765), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [sym_identifier] = ACTIONS(926), + [anon_sym_SEMI] = ACTIONS(928), + [anon_sym_LPAREN] = ACTIONS(928), + [anon_sym_RPAREN] = ACTIONS(928), + [anon_sym_LBRACK] = ACTIONS(928), + [anon_sym_RBRACK] = ACTIONS(928), + [anon_sym_LBRACE] = ACTIONS(928), + [anon_sym_RBRACE] = ACTIONS(928), + [anon_sym_COMMA] = ACTIONS(928), + [anon_sym_EQ_GT] = ACTIONS(928), + [anon_sym_COLON] = ACTIONS(926), + [anon_sym_DOLLAR] = ACTIONS(928), + [anon_sym_PLUS] = ACTIONS(926), + [anon_sym_STAR] = ACTIONS(926), + [anon_sym_QMARK] = ACTIONS(928), + [anon_sym_u8] = ACTIONS(926), + [anon_sym_i8] = ACTIONS(926), + [anon_sym_u16] = ACTIONS(926), + [anon_sym_i16] = ACTIONS(926), + [anon_sym_u32] = ACTIONS(926), + [anon_sym_i32] = ACTIONS(926), + [anon_sym_u64] = ACTIONS(926), + [anon_sym_i64] = ACTIONS(926), + [anon_sym_u128] = ACTIONS(926), + [anon_sym_i128] = ACTIONS(926), + [anon_sym_isize] = ACTIONS(926), + [anon_sym_usize] = ACTIONS(926), + [anon_sym_f32] = ACTIONS(926), + [anon_sym_f64] = ACTIONS(926), + [anon_sym_bool] = ACTIONS(926), + [anon_sym_str] = ACTIONS(926), + [anon_sym_char] = ACTIONS(926), + [anon_sym_DASH] = ACTIONS(926), + [anon_sym_SLASH] = ACTIONS(926), + [anon_sym_PERCENT] = ACTIONS(926), + [anon_sym_CARET] = ACTIONS(926), + [anon_sym_BANG] = ACTIONS(926), + [anon_sym_AMP] = ACTIONS(926), + [anon_sym_PIPE] = ACTIONS(926), + [anon_sym_AMP_AMP] = ACTIONS(928), + [anon_sym_PIPE_PIPE] = ACTIONS(928), + [anon_sym_LT_LT] = ACTIONS(926), + [anon_sym_GT_GT] = ACTIONS(926), + [anon_sym_PLUS_EQ] = ACTIONS(928), + [anon_sym_DASH_EQ] = ACTIONS(928), + [anon_sym_STAR_EQ] = ACTIONS(928), + [anon_sym_SLASH_EQ] = ACTIONS(928), + [anon_sym_PERCENT_EQ] = ACTIONS(928), + [anon_sym_CARET_EQ] = ACTIONS(928), + [anon_sym_AMP_EQ] = ACTIONS(928), + [anon_sym_PIPE_EQ] = ACTIONS(928), + [anon_sym_LT_LT_EQ] = ACTIONS(928), + [anon_sym_GT_GT_EQ] = ACTIONS(928), + [anon_sym_EQ] = ACTIONS(926), + [anon_sym_EQ_EQ] = ACTIONS(928), + [anon_sym_BANG_EQ] = ACTIONS(928), + [anon_sym_GT] = ACTIONS(926), + [anon_sym_LT] = ACTIONS(926), + [anon_sym_GT_EQ] = ACTIONS(928), + [anon_sym_LT_EQ] = ACTIONS(928), + [anon_sym_AT] = ACTIONS(928), + [anon_sym__] = ACTIONS(926), + [anon_sym_DOT] = ACTIONS(926), + [anon_sym_DOT_DOT] = ACTIONS(926), + [anon_sym_DOT_DOT_DOT] = ACTIONS(928), + [anon_sym_DOT_DOT_EQ] = ACTIONS(928), + [anon_sym_COLON_COLON] = ACTIONS(928), + [anon_sym_DASH_GT] = ACTIONS(928), + [anon_sym_POUND] = ACTIONS(928), + [anon_sym_SQUOTE] = ACTIONS(926), + [anon_sym_as] = ACTIONS(926), + [anon_sym_async] = ACTIONS(926), + [anon_sym_await] = ACTIONS(926), + [anon_sym_break] = ACTIONS(926), + [anon_sym_const] = ACTIONS(926), + [anon_sym_continue] = ACTIONS(926), + [anon_sym_default] = ACTIONS(926), + [anon_sym_enum] = ACTIONS(926), + [anon_sym_fn] = ACTIONS(926), + [anon_sym_for] = ACTIONS(926), + [anon_sym_if] = ACTIONS(926), + [anon_sym_impl] = ACTIONS(926), + [anon_sym_let] = ACTIONS(926), + [anon_sym_loop] = ACTIONS(926), + [anon_sym_match] = ACTIONS(926), + [anon_sym_mod] = ACTIONS(926), + [anon_sym_pub] = ACTIONS(926), + [anon_sym_return] = ACTIONS(926), + [anon_sym_static] = ACTIONS(926), + [anon_sym_struct] = ACTIONS(926), + [anon_sym_trait] = ACTIONS(926), + [anon_sym_type] = ACTIONS(926), + [anon_sym_union] = ACTIONS(926), + [anon_sym_unsafe] = ACTIONS(926), + [anon_sym_use] = ACTIONS(926), + [anon_sym_where] = ACTIONS(926), + [anon_sym_while] = ACTIONS(926), + [sym_mutable_specifier] = ACTIONS(926), + [sym_integer_literal] = ACTIONS(928), + [aux_sym_string_literal_token1] = ACTIONS(928), + [sym_char_literal] = ACTIONS(928), + [anon_sym_true] = ACTIONS(926), + [anon_sym_false] = ACTIONS(926), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(926), + [sym_super] = ACTIONS(926), + [sym_crate] = ACTIONS(926), + [sym__raw_string_literal_start] = ACTIONS(928), + [sym_float_literal] = ACTIONS(928), }, [180] = { + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2791), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1725), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1574), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_let_condition] = STATE(2876), + [sym__let_chain] = STATE(2871), + [sym__condition] = STATE(2624), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(249), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(180), [sym_block_comment] = STATE(180), - [sym_identifier] = ACTIONS(985), - [anon_sym_SEMI] = ACTIONS(987), - [anon_sym_LPAREN] = ACTIONS(987), - [anon_sym_RPAREN] = ACTIONS(987), - [anon_sym_LBRACK] = ACTIONS(987), - [anon_sym_RBRACK] = ACTIONS(987), - [anon_sym_LBRACE] = ACTIONS(987), - [anon_sym_RBRACE] = ACTIONS(987), - [anon_sym_EQ_GT] = ACTIONS(987), - [anon_sym_COLON] = ACTIONS(985), - [anon_sym_DOLLAR] = ACTIONS(987), - [anon_sym_PLUS] = ACTIONS(985), - [anon_sym_STAR] = ACTIONS(985), - [anon_sym_QMARK] = ACTIONS(987), - [anon_sym_u8] = ACTIONS(985), - [anon_sym_i8] = ACTIONS(985), - [anon_sym_u16] = ACTIONS(985), - [anon_sym_i16] = ACTIONS(985), - [anon_sym_u32] = ACTIONS(985), - [anon_sym_i32] = ACTIONS(985), - [anon_sym_u64] = ACTIONS(985), - [anon_sym_i64] = ACTIONS(985), - [anon_sym_u128] = ACTIONS(985), - [anon_sym_i128] = ACTIONS(985), - [anon_sym_isize] = ACTIONS(985), - [anon_sym_usize] = ACTIONS(985), - [anon_sym_f32] = ACTIONS(985), - [anon_sym_f64] = ACTIONS(985), - [anon_sym_bool] = ACTIONS(985), - [anon_sym_str] = ACTIONS(985), - [anon_sym_char] = ACTIONS(985), - [anon_sym_DASH] = ACTIONS(985), - [anon_sym_SLASH] = ACTIONS(985), - [anon_sym_PERCENT] = ACTIONS(985), - [anon_sym_CARET] = ACTIONS(985), - [anon_sym_BANG] = ACTIONS(985), - [anon_sym_AMP] = ACTIONS(985), - [anon_sym_PIPE] = ACTIONS(985), - [anon_sym_AMP_AMP] = ACTIONS(987), - [anon_sym_PIPE_PIPE] = ACTIONS(987), - [anon_sym_LT_LT] = ACTIONS(985), - [anon_sym_GT_GT] = ACTIONS(985), - [anon_sym_PLUS_EQ] = ACTIONS(987), - [anon_sym_DASH_EQ] = ACTIONS(987), - [anon_sym_STAR_EQ] = ACTIONS(987), - [anon_sym_SLASH_EQ] = ACTIONS(987), - [anon_sym_PERCENT_EQ] = ACTIONS(987), - [anon_sym_CARET_EQ] = ACTIONS(987), - [anon_sym_AMP_EQ] = ACTIONS(987), - [anon_sym_PIPE_EQ] = ACTIONS(987), - [anon_sym_LT_LT_EQ] = ACTIONS(987), - [anon_sym_GT_GT_EQ] = ACTIONS(987), - [anon_sym_EQ] = ACTIONS(985), - [anon_sym_EQ_EQ] = ACTIONS(987), - [anon_sym_BANG_EQ] = ACTIONS(987), - [anon_sym_GT] = ACTIONS(985), - [anon_sym_LT] = ACTIONS(985), - [anon_sym_GT_EQ] = ACTIONS(987), - [anon_sym_LT_EQ] = ACTIONS(987), - [anon_sym_AT] = ACTIONS(987), - [anon_sym__] = ACTIONS(985), - [anon_sym_DOT] = ACTIONS(985), - [anon_sym_DOT_DOT] = ACTIONS(985), - [anon_sym_DOT_DOT_DOT] = ACTIONS(987), - [anon_sym_DOT_DOT_EQ] = ACTIONS(987), - [anon_sym_COMMA] = ACTIONS(987), - [anon_sym_COLON_COLON] = ACTIONS(987), - [anon_sym_DASH_GT] = ACTIONS(987), - [anon_sym_POUND] = ACTIONS(987), - [anon_sym_SQUOTE] = ACTIONS(985), - [anon_sym_as] = ACTIONS(985), - [anon_sym_async] = ACTIONS(985), - [anon_sym_await] = ACTIONS(985), - [anon_sym_break] = ACTIONS(985), - [anon_sym_const] = ACTIONS(985), - [anon_sym_continue] = ACTIONS(985), - [anon_sym_default] = ACTIONS(985), - [anon_sym_enum] = ACTIONS(985), - [anon_sym_fn] = ACTIONS(985), - [anon_sym_for] = ACTIONS(985), - [anon_sym_if] = ACTIONS(985), - [anon_sym_impl] = ACTIONS(985), - [anon_sym_let] = ACTIONS(985), - [anon_sym_loop] = ACTIONS(985), - [anon_sym_match] = ACTIONS(985), - [anon_sym_mod] = ACTIONS(985), - [anon_sym_pub] = ACTIONS(985), - [anon_sym_return] = ACTIONS(985), - [anon_sym_static] = ACTIONS(985), - [anon_sym_struct] = ACTIONS(985), - [anon_sym_trait] = ACTIONS(985), - [anon_sym_type] = ACTIONS(985), - [anon_sym_union] = ACTIONS(985), - [anon_sym_unsafe] = ACTIONS(985), - [anon_sym_use] = ACTIONS(985), - [anon_sym_where] = ACTIONS(985), - [anon_sym_while] = ACTIONS(985), - [sym_mutable_specifier] = ACTIONS(985), - [sym_integer_literal] = ACTIONS(987), - [aux_sym_string_literal_token1] = ACTIONS(987), - [sym_char_literal] = ACTIONS(987), - [anon_sym_true] = ACTIONS(985), - [anon_sym_false] = ACTIONS(985), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(985), - [sym_super] = ACTIONS(985), - [sym_crate] = ACTIONS(985), - [sym__raw_string_literal_start] = ACTIONS(987), - [sym_float_literal] = ACTIONS(987), + [sym_identifier] = ACTIONS(471), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_u8] = ACTIONS(473), + [anon_sym_i8] = ACTIONS(473), + [anon_sym_u16] = ACTIONS(473), + [anon_sym_i16] = ACTIONS(473), + [anon_sym_u32] = ACTIONS(473), + [anon_sym_i32] = ACTIONS(473), + [anon_sym_u64] = ACTIONS(473), + [anon_sym_i64] = ACTIONS(473), + [anon_sym_u128] = ACTIONS(473), + [anon_sym_i128] = ACTIONS(473), + [anon_sym_isize] = ACTIONS(473), + [anon_sym_usize] = ACTIONS(473), + [anon_sym_f32] = ACTIONS(473), + [anon_sym_f64] = ACTIONS(473), + [anon_sym_bool] = ACTIONS(473), + [anon_sym_str] = ACTIONS(473), + [anon_sym_char] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(998), + [anon_sym_BANG] = ACTIONS(998), + [anon_sym_AMP] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_COLON_COLON] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(499), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_default] = ACTIONS(481), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_let] = ACTIONS(1004), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(503), + [anon_sym_static] = ACTIONS(505), + [anon_sym_union] = ACTIONS(481), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(507), + [anon_sym_move] = ACTIONS(509), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [181] = { + [sym_attribute_item] = STATE(1023), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1618), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1419), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(181), [sym_block_comment] = STATE(181), - [sym_identifier] = ACTIONS(989), - [anon_sym_SEMI] = ACTIONS(991), - [anon_sym_LPAREN] = ACTIONS(991), - [anon_sym_RPAREN] = ACTIONS(991), - [anon_sym_LBRACK] = ACTIONS(991), - [anon_sym_RBRACK] = ACTIONS(991), - [anon_sym_LBRACE] = ACTIONS(991), - [anon_sym_RBRACE] = ACTIONS(991), - [anon_sym_EQ_GT] = ACTIONS(991), - [anon_sym_COLON] = ACTIONS(989), - [anon_sym_DOLLAR] = ACTIONS(991), - [anon_sym_PLUS] = ACTIONS(989), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_QMARK] = ACTIONS(991), - [anon_sym_u8] = ACTIONS(989), - [anon_sym_i8] = ACTIONS(989), - [anon_sym_u16] = ACTIONS(989), - [anon_sym_i16] = ACTIONS(989), - [anon_sym_u32] = ACTIONS(989), - [anon_sym_i32] = ACTIONS(989), - [anon_sym_u64] = ACTIONS(989), - [anon_sym_i64] = ACTIONS(989), - [anon_sym_u128] = ACTIONS(989), - [anon_sym_i128] = ACTIONS(989), - [anon_sym_isize] = ACTIONS(989), - [anon_sym_usize] = ACTIONS(989), - [anon_sym_f32] = ACTIONS(989), - [anon_sym_f64] = ACTIONS(989), - [anon_sym_bool] = ACTIONS(989), - [anon_sym_str] = ACTIONS(989), - [anon_sym_char] = ACTIONS(989), - [anon_sym_DASH] = ACTIONS(989), - [anon_sym_SLASH] = ACTIONS(989), - [anon_sym_PERCENT] = ACTIONS(989), - [anon_sym_CARET] = ACTIONS(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(989), - [anon_sym_PIPE] = ACTIONS(989), - [anon_sym_AMP_AMP] = ACTIONS(991), - [anon_sym_PIPE_PIPE] = ACTIONS(991), - [anon_sym_LT_LT] = ACTIONS(989), - [anon_sym_GT_GT] = ACTIONS(989), - [anon_sym_PLUS_EQ] = ACTIONS(991), - [anon_sym_DASH_EQ] = ACTIONS(991), - [anon_sym_STAR_EQ] = ACTIONS(991), - [anon_sym_SLASH_EQ] = ACTIONS(991), - [anon_sym_PERCENT_EQ] = ACTIONS(991), - [anon_sym_CARET_EQ] = ACTIONS(991), - [anon_sym_AMP_EQ] = ACTIONS(991), - [anon_sym_PIPE_EQ] = ACTIONS(991), - [anon_sym_LT_LT_EQ] = ACTIONS(991), - [anon_sym_GT_GT_EQ] = ACTIONS(991), - [anon_sym_EQ] = ACTIONS(989), - [anon_sym_EQ_EQ] = ACTIONS(991), - [anon_sym_BANG_EQ] = ACTIONS(991), - [anon_sym_GT] = ACTIONS(989), - [anon_sym_LT] = ACTIONS(989), - [anon_sym_GT_EQ] = ACTIONS(991), - [anon_sym_LT_EQ] = ACTIONS(991), - [anon_sym_AT] = ACTIONS(991), - [anon_sym__] = ACTIONS(989), - [anon_sym_DOT] = ACTIONS(989), - [anon_sym_DOT_DOT] = ACTIONS(989), - [anon_sym_DOT_DOT_DOT] = ACTIONS(991), - [anon_sym_DOT_DOT_EQ] = ACTIONS(991), - [anon_sym_COMMA] = ACTIONS(991), - [anon_sym_COLON_COLON] = ACTIONS(991), - [anon_sym_DASH_GT] = ACTIONS(991), - [anon_sym_POUND] = ACTIONS(991), - [anon_sym_SQUOTE] = ACTIONS(989), - [anon_sym_as] = ACTIONS(989), - [anon_sym_async] = ACTIONS(989), - [anon_sym_await] = ACTIONS(989), - [anon_sym_break] = ACTIONS(989), - [anon_sym_const] = ACTIONS(989), - [anon_sym_continue] = ACTIONS(989), - [anon_sym_default] = ACTIONS(989), - [anon_sym_enum] = ACTIONS(989), - [anon_sym_fn] = ACTIONS(989), - [anon_sym_for] = ACTIONS(989), - [anon_sym_if] = ACTIONS(989), - [anon_sym_impl] = ACTIONS(989), - [anon_sym_let] = ACTIONS(989), - [anon_sym_loop] = ACTIONS(989), - [anon_sym_match] = ACTIONS(989), - [anon_sym_mod] = ACTIONS(989), - [anon_sym_pub] = ACTIONS(989), - [anon_sym_return] = ACTIONS(989), - [anon_sym_static] = ACTIONS(989), - [anon_sym_struct] = ACTIONS(989), - [anon_sym_trait] = ACTIONS(989), - [anon_sym_type] = ACTIONS(989), - [anon_sym_union] = ACTIONS(989), - [anon_sym_unsafe] = ACTIONS(989), - [anon_sym_use] = ACTIONS(989), - [anon_sym_where] = ACTIONS(989), - [anon_sym_while] = ACTIONS(989), - [sym_mutable_specifier] = ACTIONS(989), - [sym_integer_literal] = ACTIONS(991), - [aux_sym_string_literal_token1] = ACTIONS(991), - [sym_char_literal] = ACTIONS(991), - [anon_sym_true] = ACTIONS(989), - [anon_sym_false] = ACTIONS(989), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(989), - [sym_super] = ACTIONS(989), - [sym_crate] = ACTIONS(989), - [sym__raw_string_literal_start] = ACTIONS(991), - [sym_float_literal] = ACTIONS(991), + [aux_sym_enum_variant_list_repeat1] = STATE(216), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(1006), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_POUND] = ACTIONS(774), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(365), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [182] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1699), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_let_condition] = STATE(2823), - [sym__let_chain] = STATE(2887), - [sym__condition] = STATE(2629), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_attribute_item] = STATE(1023), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1618), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1419), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(182), [sym_block_comment] = STATE(182), - [sym_identifier] = ACTIONS(456), + [aux_sym_enum_variant_list_repeat1] = STATE(216), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(977), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_let] = ACTIONS(979), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_RBRACK] = ACTIONS(1008), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_POUND] = ACTIONS(774), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(365), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [183] = { + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2791), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1725), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1574), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_let_condition] = STATE(2876), + [sym__let_chain] = STATE(2871), + [sym__condition] = STATE(2617), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(249), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(183), [sym_block_comment] = STATE(183), - [sym_identifier] = ACTIONS(947), - [anon_sym_SEMI] = ACTIONS(949), - [anon_sym_LPAREN] = ACTIONS(949), - [anon_sym_RPAREN] = ACTIONS(949), - [anon_sym_LBRACK] = ACTIONS(949), - [anon_sym_RBRACK] = ACTIONS(949), - [anon_sym_LBRACE] = ACTIONS(949), - [anon_sym_RBRACE] = ACTIONS(949), - [anon_sym_EQ_GT] = ACTIONS(949), - [anon_sym_COLON] = ACTIONS(947), - [anon_sym_DOLLAR] = ACTIONS(949), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_STAR] = ACTIONS(947), - [anon_sym_QMARK] = ACTIONS(949), - [anon_sym_u8] = ACTIONS(947), - [anon_sym_i8] = ACTIONS(947), - [anon_sym_u16] = ACTIONS(947), - [anon_sym_i16] = ACTIONS(947), - [anon_sym_u32] = ACTIONS(947), - [anon_sym_i32] = ACTIONS(947), - [anon_sym_u64] = ACTIONS(947), - [anon_sym_i64] = ACTIONS(947), - [anon_sym_u128] = ACTIONS(947), - [anon_sym_i128] = ACTIONS(947), - [anon_sym_isize] = ACTIONS(947), - [anon_sym_usize] = ACTIONS(947), - [anon_sym_f32] = ACTIONS(947), - [anon_sym_f64] = ACTIONS(947), - [anon_sym_bool] = ACTIONS(947), - [anon_sym_str] = ACTIONS(947), - [anon_sym_char] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_SLASH] = ACTIONS(947), - [anon_sym_PERCENT] = ACTIONS(947), - [anon_sym_CARET] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_AMP] = ACTIONS(947), - [anon_sym_PIPE] = ACTIONS(947), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_PIPE_PIPE] = ACTIONS(949), - [anon_sym_LT_LT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(947), - [anon_sym_PLUS_EQ] = ACTIONS(949), - [anon_sym_DASH_EQ] = ACTIONS(949), - [anon_sym_STAR_EQ] = ACTIONS(949), - [anon_sym_SLASH_EQ] = ACTIONS(949), - [anon_sym_PERCENT_EQ] = ACTIONS(949), - [anon_sym_CARET_EQ] = ACTIONS(949), - [anon_sym_AMP_EQ] = ACTIONS(949), - [anon_sym_PIPE_EQ] = ACTIONS(949), - [anon_sym_LT_LT_EQ] = ACTIONS(949), - [anon_sym_GT_GT_EQ] = ACTIONS(949), - [anon_sym_EQ] = ACTIONS(947), - [anon_sym_EQ_EQ] = ACTIONS(949), - [anon_sym_BANG_EQ] = ACTIONS(949), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT_EQ] = ACTIONS(949), - [anon_sym_LT_EQ] = ACTIONS(949), - [anon_sym_AT] = ACTIONS(949), - [anon_sym__] = ACTIONS(947), - [anon_sym_DOT] = ACTIONS(947), - [anon_sym_DOT_DOT] = ACTIONS(947), - [anon_sym_DOT_DOT_DOT] = ACTIONS(949), - [anon_sym_DOT_DOT_EQ] = ACTIONS(949), - [anon_sym_COMMA] = ACTIONS(949), - [anon_sym_COLON_COLON] = ACTIONS(949), - [anon_sym_DASH_GT] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(949), - [anon_sym_SQUOTE] = ACTIONS(947), - [anon_sym_as] = ACTIONS(947), - [anon_sym_async] = ACTIONS(947), - [anon_sym_await] = ACTIONS(947), - [anon_sym_break] = ACTIONS(947), - [anon_sym_const] = ACTIONS(947), - [anon_sym_continue] = ACTIONS(947), - [anon_sym_default] = ACTIONS(947), - [anon_sym_enum] = ACTIONS(947), - [anon_sym_fn] = ACTIONS(947), - [anon_sym_for] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_impl] = ACTIONS(947), - [anon_sym_let] = ACTIONS(947), - [anon_sym_loop] = ACTIONS(947), - [anon_sym_match] = ACTIONS(947), - [anon_sym_mod] = ACTIONS(947), - [anon_sym_pub] = ACTIONS(947), - [anon_sym_return] = ACTIONS(947), - [anon_sym_static] = ACTIONS(947), - [anon_sym_struct] = ACTIONS(947), - [anon_sym_trait] = ACTIONS(947), - [anon_sym_type] = ACTIONS(947), - [anon_sym_union] = ACTIONS(947), - [anon_sym_unsafe] = ACTIONS(947), - [anon_sym_use] = ACTIONS(947), - [anon_sym_where] = ACTIONS(947), - [anon_sym_while] = ACTIONS(947), - [sym_mutable_specifier] = ACTIONS(947), - [sym_integer_literal] = ACTIONS(949), - [aux_sym_string_literal_token1] = ACTIONS(949), - [sym_char_literal] = ACTIONS(949), - [anon_sym_true] = ACTIONS(947), - [anon_sym_false] = ACTIONS(947), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(947), - [sym_super] = ACTIONS(947), - [sym_crate] = ACTIONS(947), - [sym__raw_string_literal_start] = ACTIONS(949), - [sym_float_literal] = ACTIONS(949), + [sym_identifier] = ACTIONS(471), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_u8] = ACTIONS(473), + [anon_sym_i8] = ACTIONS(473), + [anon_sym_u16] = ACTIONS(473), + [anon_sym_i16] = ACTIONS(473), + [anon_sym_u32] = ACTIONS(473), + [anon_sym_i32] = ACTIONS(473), + [anon_sym_u64] = ACTIONS(473), + [anon_sym_i64] = ACTIONS(473), + [anon_sym_u128] = ACTIONS(473), + [anon_sym_i128] = ACTIONS(473), + [anon_sym_isize] = ACTIONS(473), + [anon_sym_usize] = ACTIONS(473), + [anon_sym_f32] = ACTIONS(473), + [anon_sym_f64] = ACTIONS(473), + [anon_sym_bool] = ACTIONS(473), + [anon_sym_str] = ACTIONS(473), + [anon_sym_char] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(998), + [anon_sym_BANG] = ACTIONS(998), + [anon_sym_AMP] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_COLON_COLON] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(499), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_default] = ACTIONS(481), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_let] = ACTIONS(1004), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(503), + [anon_sym_static] = ACTIONS(505), + [anon_sym_union] = ACTIONS(481), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(507), + [anon_sym_move] = ACTIONS(509), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [184] = { + [sym_attribute_item] = STATE(1023), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1762), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1419), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(184), [sym_block_comment] = STATE(184), - [sym_identifier] = ACTIONS(993), - [anon_sym_SEMI] = ACTIONS(995), - [anon_sym_LPAREN] = ACTIONS(995), - [anon_sym_RPAREN] = ACTIONS(995), - [anon_sym_LBRACK] = ACTIONS(995), - [anon_sym_RBRACK] = ACTIONS(995), - [anon_sym_LBRACE] = ACTIONS(995), - [anon_sym_RBRACE] = ACTIONS(995), - [anon_sym_EQ_GT] = ACTIONS(995), - [anon_sym_COLON] = ACTIONS(993), - [anon_sym_DOLLAR] = ACTIONS(995), - [anon_sym_PLUS] = ACTIONS(993), - [anon_sym_STAR] = ACTIONS(993), - [anon_sym_QMARK] = ACTIONS(995), - [anon_sym_u8] = ACTIONS(993), - [anon_sym_i8] = ACTIONS(993), - [anon_sym_u16] = ACTIONS(993), - [anon_sym_i16] = ACTIONS(993), - [anon_sym_u32] = ACTIONS(993), - [anon_sym_i32] = ACTIONS(993), - [anon_sym_u64] = ACTIONS(993), - [anon_sym_i64] = ACTIONS(993), - [anon_sym_u128] = ACTIONS(993), - [anon_sym_i128] = ACTIONS(993), - [anon_sym_isize] = ACTIONS(993), - [anon_sym_usize] = ACTIONS(993), - [anon_sym_f32] = ACTIONS(993), - [anon_sym_f64] = ACTIONS(993), - [anon_sym_bool] = ACTIONS(993), - [anon_sym_str] = ACTIONS(993), - [anon_sym_char] = ACTIONS(993), - [anon_sym_DASH] = ACTIONS(993), - [anon_sym_SLASH] = ACTIONS(993), - [anon_sym_PERCENT] = ACTIONS(993), - [anon_sym_CARET] = ACTIONS(993), - [anon_sym_BANG] = ACTIONS(993), - [anon_sym_AMP] = ACTIONS(993), - [anon_sym_PIPE] = ACTIONS(993), - [anon_sym_AMP_AMP] = ACTIONS(995), - [anon_sym_PIPE_PIPE] = ACTIONS(995), - [anon_sym_LT_LT] = ACTIONS(993), - [anon_sym_GT_GT] = ACTIONS(993), - [anon_sym_PLUS_EQ] = ACTIONS(995), - [anon_sym_DASH_EQ] = ACTIONS(995), - [anon_sym_STAR_EQ] = ACTIONS(995), - [anon_sym_SLASH_EQ] = ACTIONS(995), - [anon_sym_PERCENT_EQ] = ACTIONS(995), - [anon_sym_CARET_EQ] = ACTIONS(995), - [anon_sym_AMP_EQ] = ACTIONS(995), - [anon_sym_PIPE_EQ] = ACTIONS(995), - [anon_sym_LT_LT_EQ] = ACTIONS(995), - [anon_sym_GT_GT_EQ] = ACTIONS(995), - [anon_sym_EQ] = ACTIONS(993), - [anon_sym_EQ_EQ] = ACTIONS(995), - [anon_sym_BANG_EQ] = ACTIONS(995), - [anon_sym_GT] = ACTIONS(993), - [anon_sym_LT] = ACTIONS(993), - [anon_sym_GT_EQ] = ACTIONS(995), - [anon_sym_LT_EQ] = ACTIONS(995), - [anon_sym_AT] = ACTIONS(995), - [anon_sym__] = ACTIONS(993), - [anon_sym_DOT] = ACTIONS(993), - [anon_sym_DOT_DOT] = ACTIONS(993), - [anon_sym_DOT_DOT_DOT] = ACTIONS(995), - [anon_sym_DOT_DOT_EQ] = ACTIONS(995), - [anon_sym_COMMA] = ACTIONS(995), - [anon_sym_COLON_COLON] = ACTIONS(995), - [anon_sym_DASH_GT] = ACTIONS(995), - [anon_sym_POUND] = ACTIONS(995), - [anon_sym_SQUOTE] = ACTIONS(993), - [anon_sym_as] = ACTIONS(993), - [anon_sym_async] = ACTIONS(993), - [anon_sym_await] = ACTIONS(993), - [anon_sym_break] = ACTIONS(993), - [anon_sym_const] = ACTIONS(993), - [anon_sym_continue] = ACTIONS(993), - [anon_sym_default] = ACTIONS(993), - [anon_sym_enum] = ACTIONS(993), - [anon_sym_fn] = ACTIONS(993), - [anon_sym_for] = ACTIONS(993), - [anon_sym_if] = ACTIONS(993), - [anon_sym_impl] = ACTIONS(993), - [anon_sym_let] = ACTIONS(993), - [anon_sym_loop] = ACTIONS(993), - [anon_sym_match] = ACTIONS(993), - [anon_sym_mod] = ACTIONS(993), - [anon_sym_pub] = ACTIONS(993), - [anon_sym_return] = ACTIONS(993), - [anon_sym_static] = ACTIONS(993), - [anon_sym_struct] = ACTIONS(993), - [anon_sym_trait] = ACTIONS(993), - [anon_sym_type] = ACTIONS(993), - [anon_sym_union] = ACTIONS(993), - [anon_sym_unsafe] = ACTIONS(993), - [anon_sym_use] = ACTIONS(993), - [anon_sym_where] = ACTIONS(993), - [anon_sym_while] = ACTIONS(993), - [sym_mutable_specifier] = ACTIONS(993), - [sym_integer_literal] = ACTIONS(995), - [aux_sym_string_literal_token1] = ACTIONS(995), - [sym_char_literal] = ACTIONS(995), - [anon_sym_true] = ACTIONS(993), - [anon_sym_false] = ACTIONS(993), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(993), - [sym_super] = ACTIONS(993), - [sym_crate] = ACTIONS(993), - [sym__raw_string_literal_start] = ACTIONS(995), - [sym_float_literal] = ACTIONS(995), + [aux_sym_enum_variant_list_repeat1] = STATE(218), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_POUND] = ACTIONS(774), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(365), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [185] = { + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2791), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1725), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1574), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_let_condition] = STATE(2876), + [sym__let_chain] = STATE(2871), + [sym__condition] = STATE(2577), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(249), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(185), [sym_block_comment] = STATE(185), - [sym_identifier] = ACTIONS(997), - [anon_sym_SEMI] = ACTIONS(999), - [anon_sym_LPAREN] = ACTIONS(999), - [anon_sym_RPAREN] = ACTIONS(999), - [anon_sym_LBRACK] = ACTIONS(999), - [anon_sym_RBRACK] = ACTIONS(999), - [anon_sym_LBRACE] = ACTIONS(999), - [anon_sym_RBRACE] = ACTIONS(999), - [anon_sym_EQ_GT] = ACTIONS(999), - [anon_sym_COLON] = ACTIONS(997), - [anon_sym_DOLLAR] = ACTIONS(999), - [anon_sym_PLUS] = ACTIONS(997), - [anon_sym_STAR] = ACTIONS(997), - [anon_sym_QMARK] = ACTIONS(999), - [anon_sym_u8] = ACTIONS(997), - [anon_sym_i8] = ACTIONS(997), - [anon_sym_u16] = ACTIONS(997), - [anon_sym_i16] = ACTIONS(997), - [anon_sym_u32] = ACTIONS(997), - [anon_sym_i32] = ACTIONS(997), - [anon_sym_u64] = ACTIONS(997), - [anon_sym_i64] = ACTIONS(997), - [anon_sym_u128] = ACTIONS(997), - [anon_sym_i128] = ACTIONS(997), - [anon_sym_isize] = ACTIONS(997), - [anon_sym_usize] = ACTIONS(997), - [anon_sym_f32] = ACTIONS(997), - [anon_sym_f64] = ACTIONS(997), - [anon_sym_bool] = ACTIONS(997), - [anon_sym_str] = ACTIONS(997), - [anon_sym_char] = ACTIONS(997), - [anon_sym_DASH] = ACTIONS(997), - [anon_sym_SLASH] = ACTIONS(997), - [anon_sym_PERCENT] = ACTIONS(997), - [anon_sym_CARET] = ACTIONS(997), - [anon_sym_BANG] = ACTIONS(997), - [anon_sym_AMP] = ACTIONS(997), - [anon_sym_PIPE] = ACTIONS(997), - [anon_sym_AMP_AMP] = ACTIONS(999), - [anon_sym_PIPE_PIPE] = ACTIONS(999), - [anon_sym_LT_LT] = ACTIONS(997), - [anon_sym_GT_GT] = ACTIONS(997), - [anon_sym_PLUS_EQ] = ACTIONS(999), - [anon_sym_DASH_EQ] = ACTIONS(999), - [anon_sym_STAR_EQ] = ACTIONS(999), - [anon_sym_SLASH_EQ] = ACTIONS(999), - [anon_sym_PERCENT_EQ] = ACTIONS(999), - [anon_sym_CARET_EQ] = ACTIONS(999), - [anon_sym_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_EQ] = ACTIONS(999), - [anon_sym_LT_LT_EQ] = ACTIONS(999), - [anon_sym_GT_GT_EQ] = ACTIONS(999), - [anon_sym_EQ] = ACTIONS(997), - [anon_sym_EQ_EQ] = ACTIONS(999), - [anon_sym_BANG_EQ] = ACTIONS(999), - [anon_sym_GT] = ACTIONS(997), - [anon_sym_LT] = ACTIONS(997), - [anon_sym_GT_EQ] = ACTIONS(999), - [anon_sym_LT_EQ] = ACTIONS(999), - [anon_sym_AT] = ACTIONS(999), - [anon_sym__] = ACTIONS(997), - [anon_sym_DOT] = ACTIONS(997), - [anon_sym_DOT_DOT] = ACTIONS(997), - [anon_sym_DOT_DOT_DOT] = ACTIONS(999), - [anon_sym_DOT_DOT_EQ] = ACTIONS(999), - [anon_sym_COMMA] = ACTIONS(999), - [anon_sym_COLON_COLON] = ACTIONS(999), - [anon_sym_DASH_GT] = ACTIONS(999), - [anon_sym_POUND] = ACTIONS(999), - [anon_sym_SQUOTE] = ACTIONS(997), - [anon_sym_as] = ACTIONS(997), - [anon_sym_async] = ACTIONS(997), - [anon_sym_await] = ACTIONS(997), - [anon_sym_break] = ACTIONS(997), - [anon_sym_const] = ACTIONS(997), - [anon_sym_continue] = ACTIONS(997), - [anon_sym_default] = ACTIONS(997), - [anon_sym_enum] = ACTIONS(997), - [anon_sym_fn] = ACTIONS(997), - [anon_sym_for] = ACTIONS(997), - [anon_sym_if] = ACTIONS(997), - [anon_sym_impl] = ACTIONS(997), - [anon_sym_let] = ACTIONS(997), - [anon_sym_loop] = ACTIONS(997), - [anon_sym_match] = ACTIONS(997), - [anon_sym_mod] = ACTIONS(997), - [anon_sym_pub] = ACTIONS(997), - [anon_sym_return] = ACTIONS(997), - [anon_sym_static] = ACTIONS(997), - [anon_sym_struct] = ACTIONS(997), - [anon_sym_trait] = ACTIONS(997), - [anon_sym_type] = ACTIONS(997), - [anon_sym_union] = ACTIONS(997), - [anon_sym_unsafe] = ACTIONS(997), - [anon_sym_use] = ACTIONS(997), - [anon_sym_where] = ACTIONS(997), - [anon_sym_while] = ACTIONS(997), - [sym_mutable_specifier] = ACTIONS(997), - [sym_integer_literal] = ACTIONS(999), - [aux_sym_string_literal_token1] = ACTIONS(999), - [sym_char_literal] = ACTIONS(999), - [anon_sym_true] = ACTIONS(997), - [anon_sym_false] = ACTIONS(997), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(997), - [sym_super] = ACTIONS(997), - [sym_crate] = ACTIONS(997), - [sym__raw_string_literal_start] = ACTIONS(999), - [sym_float_literal] = ACTIONS(999), + [sym_identifier] = ACTIONS(471), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_u8] = ACTIONS(473), + [anon_sym_i8] = ACTIONS(473), + [anon_sym_u16] = ACTIONS(473), + [anon_sym_i16] = ACTIONS(473), + [anon_sym_u32] = ACTIONS(473), + [anon_sym_i32] = ACTIONS(473), + [anon_sym_u64] = ACTIONS(473), + [anon_sym_i64] = ACTIONS(473), + [anon_sym_u128] = ACTIONS(473), + [anon_sym_i128] = ACTIONS(473), + [anon_sym_isize] = ACTIONS(473), + [anon_sym_usize] = ACTIONS(473), + [anon_sym_f32] = ACTIONS(473), + [anon_sym_f64] = ACTIONS(473), + [anon_sym_bool] = ACTIONS(473), + [anon_sym_str] = ACTIONS(473), + [anon_sym_char] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(998), + [anon_sym_BANG] = ACTIONS(998), + [anon_sym_AMP] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_COLON_COLON] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(499), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_default] = ACTIONS(481), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_let] = ACTIONS(1004), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(503), + [anon_sym_static] = ACTIONS(505), + [anon_sym_union] = ACTIONS(481), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(507), + [anon_sym_move] = ACTIONS(509), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [186] = { - [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1793), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_attribute_item] = STATE(1023), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1618), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1419), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(186), [sym_block_comment] = STATE(186), - [aux_sym_enum_variant_list_repeat1] = STATE(214), - [sym_identifier] = ACTIONS(334), + [aux_sym_enum_variant_list_repeat1] = STATE(216), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1001), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(765), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_RBRACK] = ACTIONS(1012), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_POUND] = ACTIONS(774), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(365), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [187] = { - [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1607), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_attribute_item] = STATE(1023), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1618), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1419), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(187), [sym_block_comment] = STATE(187), - [aux_sym_enum_variant_list_repeat1] = STATE(211), - [sym_identifier] = ACTIONS(334), + [aux_sym_enum_variant_list_repeat1] = STATE(216), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1014), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(1003), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(765), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_POUND] = ACTIONS(774), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(365), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [188] = { - [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1607), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_attribute_item] = STATE(1023), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1618), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1419), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(188), [sym_block_comment] = STATE(188), - [aux_sym_enum_variant_list_repeat1] = STATE(211), - [sym_identifier] = ACTIONS(334), + [aux_sym_enum_variant_list_repeat1] = STATE(216), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1005), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(765), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_RBRACK] = ACTIONS(1016), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_POUND] = ACTIONS(774), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(365), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [189] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1699), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_let_condition] = STATE(2823), - [sym__let_chain] = STATE(2887), - [sym__condition] = STATE(2548), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2791), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1725), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1574), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_let_condition] = STATE(2876), + [sym__let_chain] = STATE(2871), + [sym__condition] = STATE(2607), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(249), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(189), [sym_block_comment] = STATE(189), - [sym_identifier] = ACTIONS(456), + [sym_identifier] = ACTIONS(471), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(977), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_let] = ACTIONS(979), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_u8] = ACTIONS(473), + [anon_sym_i8] = ACTIONS(473), + [anon_sym_u16] = ACTIONS(473), + [anon_sym_i16] = ACTIONS(473), + [anon_sym_u32] = ACTIONS(473), + [anon_sym_i32] = ACTIONS(473), + [anon_sym_u64] = ACTIONS(473), + [anon_sym_i64] = ACTIONS(473), + [anon_sym_u128] = ACTIONS(473), + [anon_sym_i128] = ACTIONS(473), + [anon_sym_isize] = ACTIONS(473), + [anon_sym_usize] = ACTIONS(473), + [anon_sym_f32] = ACTIONS(473), + [anon_sym_f64] = ACTIONS(473), + [anon_sym_bool] = ACTIONS(473), + [anon_sym_str] = ACTIONS(473), + [anon_sym_char] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(998), + [anon_sym_BANG] = ACTIONS(998), + [anon_sym_AMP] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_COLON_COLON] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(499), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_default] = ACTIONS(481), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_let] = ACTIONS(1004), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(503), + [anon_sym_static] = ACTIONS(505), + [anon_sym_union] = ACTIONS(481), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(507), + [anon_sym_move] = ACTIONS(509), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [190] = { - [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1607), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_attribute_item] = STATE(1023), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1618), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1419), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(190), [sym_block_comment] = STATE(190), - [aux_sym_enum_variant_list_repeat1] = STATE(211), - [sym_identifier] = ACTIONS(334), + [aux_sym_enum_variant_list_repeat1] = STATE(216), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1018), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(1007), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(765), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_POUND] = ACTIONS(774), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(365), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [191] = { - [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1607), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), + [sym_bracketed_type] = STATE(3593), + [sym_generic_function] = STATE(1742), + [sym_generic_type_with_turbofish] = STATE(2901), + [sym__expression_except_range] = STATE(1655), + [sym__expression] = STATE(1908), + [sym_macro_invocation] = STATE(1752), + [sym_scoped_identifier] = STATE(1584), [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_range_expression] = STATE(1746), + [sym_unary_expression] = STATE(1742), + [sym_try_expression] = STATE(1742), + [sym_reference_expression] = STATE(1742), + [sym_binary_expression] = STATE(1742), + [sym_assignment_expression] = STATE(1742), + [sym_compound_assignment_expr] = STATE(1742), + [sym_type_cast_expression] = STATE(1742), + [sym_return_expression] = STATE(1742), + [sym_yield_expression] = STATE(1742), + [sym_call_expression] = STATE(1742), + [sym_array_expression] = STATE(1742), + [sym_parenthesized_expression] = STATE(1742), + [sym_tuple_expression] = STATE(1742), + [sym_unit_expression] = STATE(1742), + [sym_struct_expression] = STATE(1742), + [sym_if_expression] = STATE(1742), + [sym_let_condition] = STATE(3244), + [sym__let_chain] = STATE(3252), + [sym__condition] = STATE(3539), + [sym_match_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_loop_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_const_block] = STATE(1742), + [sym_closure_expression] = STATE(1742), + [sym_closure_parameters] = STATE(244), + [sym_label] = STATE(3682), + [sym_break_expression] = STATE(1742), + [sym_continue_expression] = STATE(1742), + [sym_index_expression] = STATE(1742), + [sym_await_expression] = STATE(1742), + [sym_field_expression] = STATE(1652), + [sym_unsafe_block] = STATE(1742), + [sym_async_block] = STATE(1742), + [sym_try_block] = STATE(1742), + [sym_block] = STATE(1742), + [sym__literal] = STATE(1742), + [sym_string_literal] = STATE(1723), + [sym_raw_string_literal] = STATE(1723), + [sym_boolean_literal] = STATE(1723), [sym_line_comment] = STATE(191), [sym_block_comment] = STATE(191), - [aux_sym_enum_variant_list_repeat1] = STATE(211), - [sym_identifier] = ACTIONS(334), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1009), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(765), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [sym_identifier] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(461), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LBRACE] = ACTIONS(405), + [anon_sym_STAR] = ACTIONS(1020), + [anon_sym_u8] = ACTIONS(409), + [anon_sym_i8] = ACTIONS(409), + [anon_sym_u16] = ACTIONS(409), + [anon_sym_i16] = ACTIONS(409), + [anon_sym_u32] = ACTIONS(409), + [anon_sym_i32] = ACTIONS(409), + [anon_sym_u64] = ACTIONS(409), + [anon_sym_i64] = ACTIONS(409), + [anon_sym_u128] = ACTIONS(409), + [anon_sym_i128] = ACTIONS(409), + [anon_sym_isize] = ACTIONS(409), + [anon_sym_usize] = ACTIONS(409), + [anon_sym_f32] = ACTIONS(409), + [anon_sym_f64] = ACTIONS(409), + [anon_sym_bool] = ACTIONS(409), + [anon_sym_str] = ACTIONS(409), + [anon_sym_char] = ACTIONS(409), + [anon_sym_DASH] = ACTIONS(1020), + [anon_sym_BANG] = ACTIONS(1020), + [anon_sym_AMP] = ACTIONS(1022), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1024), + [anon_sym_COLON_COLON] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(415), + [anon_sym_break] = ACTIONS(417), + [anon_sym_const] = ACTIONS(419), + [anon_sym_continue] = ACTIONS(421), + [anon_sym_default] = ACTIONS(423), + [anon_sym_for] = ACTIONS(425), + [anon_sym_if] = ACTIONS(427), + [anon_sym_let] = ACTIONS(1026), + [anon_sym_loop] = ACTIONS(429), + [anon_sym_match] = ACTIONS(431), + [anon_sym_return] = ACTIONS(433), + [anon_sym_static] = ACTIONS(435), + [anon_sym_union] = ACTIONS(423), + [anon_sym_unsafe] = ACTIONS(437), + [anon_sym_while] = ACTIONS(439), + [anon_sym_yield] = ACTIONS(441), + [anon_sym_move] = ACTIONS(443), + [anon_sym_try] = ACTIONS(445), + [sym_integer_literal] = ACTIONS(447), + [aux_sym_string_literal_token1] = ACTIONS(449), + [sym_char_literal] = ACTIONS(447), + [anon_sym_true] = ACTIONS(451), + [anon_sym_false] = ACTIONS(451), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(453), + [sym_super] = ACTIONS(455), + [sym_crate] = ACTIONS(455), + [sym_metavariable] = ACTIONS(457), + [sym__raw_string_literal_start] = ACTIONS(459), + [sym_float_literal] = ACTIONS(447), }, [192] = { - [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1607), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2791), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1725), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1574), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_let_condition] = STATE(2876), + [sym__let_chain] = STATE(2871), + [sym__condition] = STATE(2642), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(249), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(192), [sym_block_comment] = STATE(192), - [aux_sym_enum_variant_list_repeat1] = STATE(211), - [sym_identifier] = ACTIONS(334), + [sym_identifier] = ACTIONS(471), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(1011), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(765), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_u8] = ACTIONS(473), + [anon_sym_i8] = ACTIONS(473), + [anon_sym_u16] = ACTIONS(473), + [anon_sym_i16] = ACTIONS(473), + [anon_sym_u32] = ACTIONS(473), + [anon_sym_i32] = ACTIONS(473), + [anon_sym_u64] = ACTIONS(473), + [anon_sym_i64] = ACTIONS(473), + [anon_sym_u128] = ACTIONS(473), + [anon_sym_i128] = ACTIONS(473), + [anon_sym_isize] = ACTIONS(473), + [anon_sym_usize] = ACTIONS(473), + [anon_sym_f32] = ACTIONS(473), + [anon_sym_f64] = ACTIONS(473), + [anon_sym_bool] = ACTIONS(473), + [anon_sym_str] = ACTIONS(473), + [anon_sym_char] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(998), + [anon_sym_BANG] = ACTIONS(998), + [anon_sym_AMP] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_COLON_COLON] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(499), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_default] = ACTIONS(481), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_let] = ACTIONS(1004), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(503), + [anon_sym_static] = ACTIONS(505), + [anon_sym_union] = ACTIONS(481), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(507), + [anon_sym_move] = ACTIONS(509), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [193] = { - [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1607), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_attribute_item] = STATE(1023), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1618), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1419), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(193), [sym_block_comment] = STATE(193), - [aux_sym_enum_variant_list_repeat1] = STATE(211), - [sym_identifier] = ACTIONS(334), + [aux_sym_enum_variant_list_repeat1] = STATE(216), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1013), + [anon_sym_RPAREN] = ACTIONS(1028), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(765), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_POUND] = ACTIONS(774), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(365), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [194] = { - [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1607), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_attribute_item] = STATE(1023), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1618), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1419), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(194), [sym_block_comment] = STATE(194), - [aux_sym_enum_variant_list_repeat1] = STATE(211), - [sym_identifier] = ACTIONS(334), + [aux_sym_enum_variant_list_repeat1] = STATE(216), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(1015), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(765), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_RBRACK] = ACTIONS(1030), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_POUND] = ACTIONS(774), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(365), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [195] = { - [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1607), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2791), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1725), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1574), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_let_condition] = STATE(2876), + [sym__let_chain] = STATE(2871), + [sym__condition] = STATE(2650), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(249), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(195), [sym_block_comment] = STATE(195), - [aux_sym_enum_variant_list_repeat1] = STATE(211), - [sym_identifier] = ACTIONS(334), + [sym_identifier] = ACTIONS(471), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(1017), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(765), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_u8] = ACTIONS(473), + [anon_sym_i8] = ACTIONS(473), + [anon_sym_u16] = ACTIONS(473), + [anon_sym_i16] = ACTIONS(473), + [anon_sym_u32] = ACTIONS(473), + [anon_sym_i32] = ACTIONS(473), + [anon_sym_u64] = ACTIONS(473), + [anon_sym_i64] = ACTIONS(473), + [anon_sym_u128] = ACTIONS(473), + [anon_sym_i128] = ACTIONS(473), + [anon_sym_isize] = ACTIONS(473), + [anon_sym_usize] = ACTIONS(473), + [anon_sym_f32] = ACTIONS(473), + [anon_sym_f64] = ACTIONS(473), + [anon_sym_bool] = ACTIONS(473), + [anon_sym_str] = ACTIONS(473), + [anon_sym_char] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(998), + [anon_sym_BANG] = ACTIONS(998), + [anon_sym_AMP] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_COLON_COLON] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(499), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_default] = ACTIONS(481), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_let] = ACTIONS(1004), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(503), + [anon_sym_static] = ACTIONS(505), + [anon_sym_union] = ACTIONS(481), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(507), + [anon_sym_move] = ACTIONS(509), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [196] = { - [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1607), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_attribute_item] = STATE(1023), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1618), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1419), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(196), [sym_block_comment] = STATE(196), - [aux_sym_enum_variant_list_repeat1] = STATE(211), - [sym_identifier] = ACTIONS(334), + [aux_sym_enum_variant_list_repeat1] = STATE(216), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1019), + [anon_sym_RPAREN] = ACTIONS(1032), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(765), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_POUND] = ACTIONS(774), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(365), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [197] = { - [sym_bracketed_type] = STATE(3498), - [sym_generic_function] = STATE(1637), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1604), - [sym__expression] = STATE(1875), - [sym_macro_invocation] = STATE(1641), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3100), - [sym_range_expression] = STATE(1639), - [sym_unary_expression] = STATE(1637), - [sym_try_expression] = STATE(1637), - [sym_reference_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_assignment_expression] = STATE(1637), - [sym_compound_assignment_expr] = STATE(1637), - [sym_type_cast_expression] = STATE(1637), - [sym_return_expression] = STATE(1637), - [sym_yield_expression] = STATE(1637), - [sym_call_expression] = STATE(1637), - [sym_array_expression] = STATE(1637), - [sym_parenthesized_expression] = STATE(1637), - [sym_tuple_expression] = STATE(1637), - [sym_unit_expression] = STATE(1637), - [sym_struct_expression] = STATE(1637), - [sym_if_expression] = STATE(1637), - [sym_let_condition] = STATE(3179), - [sym__let_chain] = STATE(3181), - [sym__condition] = STATE(3594), - [sym_match_expression] = STATE(1637), - [sym_while_expression] = STATE(1637), - [sym_loop_expression] = STATE(1637), - [sym_for_expression] = STATE(1637), - [sym_const_block] = STATE(1637), - [sym_closure_expression] = STATE(1637), - [sym_closure_parameters] = STATE(237), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1637), - [sym_continue_expression] = STATE(1637), - [sym_index_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_field_expression] = STATE(1620), - [sym_unsafe_block] = STATE(1637), - [sym_async_block] = STATE(1637), - [sym_try_block] = STATE(1637), - [sym_block] = STATE(1637), - [sym__literal] = STATE(1637), - [sym_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_boolean_literal] = STATE(1778), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2791), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1725), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1574), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_let_condition] = STATE(2876), + [sym__let_chain] = STATE(2871), + [sym__condition] = STATE(2669), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(249), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(197), [sym_block_comment] = STATE(197), - [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_STAR] = ACTIONS(1021), - [anon_sym_u8] = ACTIONS(404), - [anon_sym_i8] = ACTIONS(404), - [anon_sym_u16] = ACTIONS(404), - [anon_sym_i16] = ACTIONS(404), - [anon_sym_u32] = ACTIONS(404), - [anon_sym_i32] = ACTIONS(404), - [anon_sym_u64] = ACTIONS(404), - [anon_sym_i64] = ACTIONS(404), - [anon_sym_u128] = ACTIONS(404), - [anon_sym_i128] = ACTIONS(404), - [anon_sym_isize] = ACTIONS(404), - [anon_sym_usize] = ACTIONS(404), - [anon_sym_f32] = ACTIONS(404), - [anon_sym_f64] = ACTIONS(404), - [anon_sym_bool] = ACTIONS(404), - [anon_sym_str] = ACTIONS(404), - [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_BANG] = ACTIONS(1021), - [anon_sym_AMP] = ACTIONS(1023), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(408), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_const] = ACTIONS(414), - [anon_sym_continue] = ACTIONS(416), - [anon_sym_default] = ACTIONS(418), - [anon_sym_for] = ACTIONS(420), - [anon_sym_if] = ACTIONS(422), - [anon_sym_let] = ACTIONS(1027), - [anon_sym_loop] = ACTIONS(424), - [anon_sym_match] = ACTIONS(426), - [anon_sym_return] = ACTIONS(428), - [anon_sym_static] = ACTIONS(430), - [anon_sym_union] = ACTIONS(418), - [anon_sym_unsafe] = ACTIONS(432), - [anon_sym_while] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_move] = ACTIONS(438), - [anon_sym_try] = ACTIONS(440), - [sym_integer_literal] = ACTIONS(442), - [aux_sym_string_literal_token1] = ACTIONS(444), - [sym_char_literal] = ACTIONS(442), - [anon_sym_true] = ACTIONS(446), - [anon_sym_false] = ACTIONS(446), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(448), - [sym_super] = ACTIONS(450), - [sym_crate] = ACTIONS(450), - [sym_metavariable] = ACTIONS(452), - [sym__raw_string_literal_start] = ACTIONS(454), - [sym_float_literal] = ACTIONS(442), + [sym_identifier] = ACTIONS(471), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_u8] = ACTIONS(473), + [anon_sym_i8] = ACTIONS(473), + [anon_sym_u16] = ACTIONS(473), + [anon_sym_i16] = ACTIONS(473), + [anon_sym_u32] = ACTIONS(473), + [anon_sym_i32] = ACTIONS(473), + [anon_sym_u64] = ACTIONS(473), + [anon_sym_i64] = ACTIONS(473), + [anon_sym_u128] = ACTIONS(473), + [anon_sym_i128] = ACTIONS(473), + [anon_sym_isize] = ACTIONS(473), + [anon_sym_usize] = ACTIONS(473), + [anon_sym_f32] = ACTIONS(473), + [anon_sym_f64] = ACTIONS(473), + [anon_sym_bool] = ACTIONS(473), + [anon_sym_str] = ACTIONS(473), + [anon_sym_char] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(998), + [anon_sym_BANG] = ACTIONS(998), + [anon_sym_AMP] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_COLON_COLON] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(499), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_default] = ACTIONS(481), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_let] = ACTIONS(1004), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(503), + [anon_sym_static] = ACTIONS(505), + [anon_sym_union] = ACTIONS(481), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(507), + [anon_sym_move] = ACTIONS(509), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [198] = { - [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1607), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(198), [sym_block_comment] = STATE(198), - [aux_sym_enum_variant_list_repeat1] = STATE(211), - [sym_identifier] = ACTIONS(334), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1029), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(765), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [sym_identifier] = ACTIONS(1034), + [anon_sym_SEMI] = ACTIONS(1036), + [anon_sym_LPAREN] = ACTIONS(1036), + [anon_sym_RPAREN] = ACTIONS(1036), + [anon_sym_LBRACK] = ACTIONS(1036), + [anon_sym_RBRACK] = ACTIONS(1036), + [anon_sym_LBRACE] = ACTIONS(1036), + [anon_sym_RBRACE] = ACTIONS(1036), + [anon_sym_COMMA] = ACTIONS(1036), + [anon_sym_EQ_GT] = ACTIONS(1036), + [anon_sym_COLON] = ACTIONS(1034), + [anon_sym_DOLLAR] = ACTIONS(1036), + [anon_sym_PLUS] = ACTIONS(1034), + [anon_sym_STAR] = ACTIONS(1034), + [anon_sym_QMARK] = ACTIONS(1036), + [anon_sym_u8] = ACTIONS(1034), + [anon_sym_i8] = ACTIONS(1034), + [anon_sym_u16] = ACTIONS(1034), + [anon_sym_i16] = ACTIONS(1034), + [anon_sym_u32] = ACTIONS(1034), + [anon_sym_i32] = ACTIONS(1034), + [anon_sym_u64] = ACTIONS(1034), + [anon_sym_i64] = ACTIONS(1034), + [anon_sym_u128] = ACTIONS(1034), + [anon_sym_i128] = ACTIONS(1034), + [anon_sym_isize] = ACTIONS(1034), + [anon_sym_usize] = ACTIONS(1034), + [anon_sym_f32] = ACTIONS(1034), + [anon_sym_f64] = ACTIONS(1034), + [anon_sym_bool] = ACTIONS(1034), + [anon_sym_str] = ACTIONS(1034), + [anon_sym_char] = ACTIONS(1034), + [anon_sym_DASH] = ACTIONS(1034), + [anon_sym_SLASH] = ACTIONS(1034), + [anon_sym_PERCENT] = ACTIONS(1034), + [anon_sym_CARET] = ACTIONS(1034), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1034), + [anon_sym_PIPE] = ACTIONS(1034), + [anon_sym_AMP_AMP] = ACTIONS(1036), + [anon_sym_PIPE_PIPE] = ACTIONS(1036), + [anon_sym_LT_LT] = ACTIONS(1034), + [anon_sym_GT_GT] = ACTIONS(1034), + [anon_sym_PLUS_EQ] = ACTIONS(1036), + [anon_sym_DASH_EQ] = ACTIONS(1036), + [anon_sym_STAR_EQ] = ACTIONS(1036), + [anon_sym_SLASH_EQ] = ACTIONS(1036), + [anon_sym_PERCENT_EQ] = ACTIONS(1036), + [anon_sym_CARET_EQ] = ACTIONS(1036), + [anon_sym_AMP_EQ] = ACTIONS(1036), + [anon_sym_PIPE_EQ] = ACTIONS(1036), + [anon_sym_LT_LT_EQ] = ACTIONS(1036), + [anon_sym_GT_GT_EQ] = ACTIONS(1036), + [anon_sym_EQ] = ACTIONS(1034), + [anon_sym_EQ_EQ] = ACTIONS(1036), + [anon_sym_BANG_EQ] = ACTIONS(1036), + [anon_sym_GT] = ACTIONS(1034), + [anon_sym_LT] = ACTIONS(1034), + [anon_sym_GT_EQ] = ACTIONS(1036), + [anon_sym_LT_EQ] = ACTIONS(1036), + [anon_sym_AT] = ACTIONS(1036), + [anon_sym__] = ACTIONS(1034), + [anon_sym_DOT] = ACTIONS(1034), + [anon_sym_DOT_DOT] = ACTIONS(1034), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1036), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1036), + [anon_sym_COLON_COLON] = ACTIONS(1036), + [anon_sym_DASH_GT] = ACTIONS(1036), + [anon_sym_POUND] = ACTIONS(1036), + [anon_sym_SQUOTE] = ACTIONS(1034), + [anon_sym_as] = ACTIONS(1034), + [anon_sym_async] = ACTIONS(1034), + [anon_sym_await] = ACTIONS(1034), + [anon_sym_break] = ACTIONS(1034), + [anon_sym_const] = ACTIONS(1034), + [anon_sym_continue] = ACTIONS(1034), + [anon_sym_default] = ACTIONS(1034), + [anon_sym_enum] = ACTIONS(1034), + [anon_sym_fn] = ACTIONS(1034), + [anon_sym_for] = ACTIONS(1034), + [anon_sym_if] = ACTIONS(1034), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_let] = ACTIONS(1034), + [anon_sym_loop] = ACTIONS(1034), + [anon_sym_match] = ACTIONS(1034), + [anon_sym_mod] = ACTIONS(1034), + [anon_sym_pub] = ACTIONS(1034), + [anon_sym_return] = ACTIONS(1034), + [anon_sym_static] = ACTIONS(1034), + [anon_sym_struct] = ACTIONS(1034), + [anon_sym_trait] = ACTIONS(1034), + [anon_sym_type] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1034), + [anon_sym_unsafe] = ACTIONS(1034), + [anon_sym_use] = ACTIONS(1034), + [anon_sym_where] = ACTIONS(1034), + [anon_sym_while] = ACTIONS(1034), + [sym_mutable_specifier] = ACTIONS(1034), + [sym_integer_literal] = ACTIONS(1036), + [aux_sym_string_literal_token1] = ACTIONS(1036), + [sym_char_literal] = ACTIONS(1036), + [anon_sym_true] = ACTIONS(1034), + [anon_sym_false] = ACTIONS(1034), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1034), + [sym_super] = ACTIONS(1034), + [sym_crate] = ACTIONS(1034), + [sym__raw_string_literal_start] = ACTIONS(1036), + [sym_float_literal] = ACTIONS(1036), }, [199] = { - [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1607), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_attribute_item] = STATE(1023), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1704), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1419), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(199), [sym_block_comment] = STATE(199), - [aux_sym_enum_variant_list_repeat1] = STATE(211), - [sym_identifier] = ACTIONS(334), + [aux_sym_enum_variant_list_repeat1] = STATE(219), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1038), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(765), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_POUND] = ACTIONS(774), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(365), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [200] = { - [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1607), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(200), [sym_block_comment] = STATE(200), - [aux_sym_enum_variant_list_repeat1] = STATE(211), - [sym_identifier] = ACTIONS(334), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1033), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(765), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [sym_identifier] = ACTIONS(984), + [anon_sym_SEMI] = ACTIONS(986), + [anon_sym_LPAREN] = ACTIONS(986), + [anon_sym_RPAREN] = ACTIONS(986), + [anon_sym_LBRACK] = ACTIONS(986), + [anon_sym_RBRACK] = ACTIONS(986), + [anon_sym_LBRACE] = ACTIONS(986), + [anon_sym_RBRACE] = ACTIONS(986), + [anon_sym_COMMA] = ACTIONS(986), + [anon_sym_EQ_GT] = ACTIONS(986), + [anon_sym_COLON] = ACTIONS(984), + [anon_sym_DOLLAR] = ACTIONS(986), + [anon_sym_PLUS] = ACTIONS(984), + [anon_sym_STAR] = ACTIONS(984), + [anon_sym_QMARK] = ACTIONS(986), + [anon_sym_u8] = ACTIONS(984), + [anon_sym_i8] = ACTIONS(984), + [anon_sym_u16] = ACTIONS(984), + [anon_sym_i16] = ACTIONS(984), + [anon_sym_u32] = ACTIONS(984), + [anon_sym_i32] = ACTIONS(984), + [anon_sym_u64] = ACTIONS(984), + [anon_sym_i64] = ACTIONS(984), + [anon_sym_u128] = ACTIONS(984), + [anon_sym_i128] = ACTIONS(984), + [anon_sym_isize] = ACTIONS(984), + [anon_sym_usize] = ACTIONS(984), + [anon_sym_f32] = ACTIONS(984), + [anon_sym_f64] = ACTIONS(984), + [anon_sym_bool] = ACTIONS(984), + [anon_sym_str] = ACTIONS(984), + [anon_sym_char] = ACTIONS(984), + [anon_sym_DASH] = ACTIONS(984), + [anon_sym_SLASH] = ACTIONS(984), + [anon_sym_PERCENT] = ACTIONS(984), + [anon_sym_CARET] = ACTIONS(984), + [anon_sym_BANG] = ACTIONS(984), + [anon_sym_AMP] = ACTIONS(984), + [anon_sym_PIPE] = ACTIONS(984), + [anon_sym_AMP_AMP] = ACTIONS(986), + [anon_sym_PIPE_PIPE] = ACTIONS(986), + [anon_sym_LT_LT] = ACTIONS(984), + [anon_sym_GT_GT] = ACTIONS(984), + [anon_sym_PLUS_EQ] = ACTIONS(986), + [anon_sym_DASH_EQ] = ACTIONS(986), + [anon_sym_STAR_EQ] = ACTIONS(986), + [anon_sym_SLASH_EQ] = ACTIONS(986), + [anon_sym_PERCENT_EQ] = ACTIONS(986), + [anon_sym_CARET_EQ] = ACTIONS(986), + [anon_sym_AMP_EQ] = ACTIONS(986), + [anon_sym_PIPE_EQ] = ACTIONS(986), + [anon_sym_LT_LT_EQ] = ACTIONS(986), + [anon_sym_GT_GT_EQ] = ACTIONS(986), + [anon_sym_EQ] = ACTIONS(984), + [anon_sym_EQ_EQ] = ACTIONS(986), + [anon_sym_BANG_EQ] = ACTIONS(986), + [anon_sym_GT] = ACTIONS(984), + [anon_sym_LT] = ACTIONS(984), + [anon_sym_GT_EQ] = ACTIONS(986), + [anon_sym_LT_EQ] = ACTIONS(986), + [anon_sym_AT] = ACTIONS(986), + [anon_sym__] = ACTIONS(984), + [anon_sym_DOT] = ACTIONS(984), + [anon_sym_DOT_DOT] = ACTIONS(984), + [anon_sym_DOT_DOT_DOT] = ACTIONS(986), + [anon_sym_DOT_DOT_EQ] = ACTIONS(986), + [anon_sym_COLON_COLON] = ACTIONS(986), + [anon_sym_DASH_GT] = ACTIONS(986), + [anon_sym_POUND] = ACTIONS(986), + [anon_sym_SQUOTE] = ACTIONS(984), + [anon_sym_as] = ACTIONS(984), + [anon_sym_async] = ACTIONS(984), + [anon_sym_await] = ACTIONS(984), + [anon_sym_break] = ACTIONS(984), + [anon_sym_const] = ACTIONS(984), + [anon_sym_continue] = ACTIONS(984), + [anon_sym_default] = ACTIONS(984), + [anon_sym_enum] = ACTIONS(984), + [anon_sym_fn] = ACTIONS(984), + [anon_sym_for] = ACTIONS(984), + [anon_sym_if] = ACTIONS(984), + [anon_sym_impl] = ACTIONS(984), + [anon_sym_let] = ACTIONS(984), + [anon_sym_loop] = ACTIONS(984), + [anon_sym_match] = ACTIONS(984), + [anon_sym_mod] = ACTIONS(984), + [anon_sym_pub] = ACTIONS(984), + [anon_sym_return] = ACTIONS(984), + [anon_sym_static] = ACTIONS(984), + [anon_sym_struct] = ACTIONS(984), + [anon_sym_trait] = ACTIONS(984), + [anon_sym_type] = ACTIONS(984), + [anon_sym_union] = ACTIONS(984), + [anon_sym_unsafe] = ACTIONS(984), + [anon_sym_use] = ACTIONS(984), + [anon_sym_where] = ACTIONS(984), + [anon_sym_while] = ACTIONS(984), + [sym_mutable_specifier] = ACTIONS(984), + [sym_integer_literal] = ACTIONS(986), + [aux_sym_string_literal_token1] = ACTIONS(986), + [sym_char_literal] = ACTIONS(986), + [anon_sym_true] = ACTIONS(984), + [anon_sym_false] = ACTIONS(984), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(984), + [sym_super] = ACTIONS(984), + [sym_crate] = ACTIONS(984), + [sym__raw_string_literal_start] = ACTIONS(986), + [sym_float_literal] = ACTIONS(986), }, [201] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1699), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_let_condition] = STATE(2823), - [sym__let_chain] = STATE(2887), - [sym__condition] = STATE(2722), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(201), [sym_block_comment] = STATE(201), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(977), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_let] = ACTIONS(979), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [sym_identifier] = ACTIONS(1040), + [anon_sym_SEMI] = ACTIONS(1042), + [anon_sym_LPAREN] = ACTIONS(1042), + [anon_sym_RPAREN] = ACTIONS(1042), + [anon_sym_LBRACK] = ACTIONS(1042), + [anon_sym_RBRACK] = ACTIONS(1042), + [anon_sym_LBRACE] = ACTIONS(1042), + [anon_sym_RBRACE] = ACTIONS(1042), + [anon_sym_COMMA] = ACTIONS(1042), + [anon_sym_EQ_GT] = ACTIONS(1042), + [anon_sym_COLON] = ACTIONS(1040), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_PLUS] = ACTIONS(1040), + [anon_sym_STAR] = ACTIONS(1040), + [anon_sym_QMARK] = ACTIONS(1042), + [anon_sym_u8] = ACTIONS(1040), + [anon_sym_i8] = ACTIONS(1040), + [anon_sym_u16] = ACTIONS(1040), + [anon_sym_i16] = ACTIONS(1040), + [anon_sym_u32] = ACTIONS(1040), + [anon_sym_i32] = ACTIONS(1040), + [anon_sym_u64] = ACTIONS(1040), + [anon_sym_i64] = ACTIONS(1040), + [anon_sym_u128] = ACTIONS(1040), + [anon_sym_i128] = ACTIONS(1040), + [anon_sym_isize] = ACTIONS(1040), + [anon_sym_usize] = ACTIONS(1040), + [anon_sym_f32] = ACTIONS(1040), + [anon_sym_f64] = ACTIONS(1040), + [anon_sym_bool] = ACTIONS(1040), + [anon_sym_str] = ACTIONS(1040), + [anon_sym_char] = ACTIONS(1040), + [anon_sym_DASH] = ACTIONS(1040), + [anon_sym_SLASH] = ACTIONS(1040), + [anon_sym_PERCENT] = ACTIONS(1040), + [anon_sym_CARET] = ACTIONS(1040), + [anon_sym_BANG] = ACTIONS(1040), + [anon_sym_AMP] = ACTIONS(1040), + [anon_sym_PIPE] = ACTIONS(1040), + [anon_sym_AMP_AMP] = ACTIONS(1042), + [anon_sym_PIPE_PIPE] = ACTIONS(1042), + [anon_sym_LT_LT] = ACTIONS(1040), + [anon_sym_GT_GT] = ACTIONS(1040), + [anon_sym_PLUS_EQ] = ACTIONS(1042), + [anon_sym_DASH_EQ] = ACTIONS(1042), + [anon_sym_STAR_EQ] = ACTIONS(1042), + [anon_sym_SLASH_EQ] = ACTIONS(1042), + [anon_sym_PERCENT_EQ] = ACTIONS(1042), + [anon_sym_CARET_EQ] = ACTIONS(1042), + [anon_sym_AMP_EQ] = ACTIONS(1042), + [anon_sym_PIPE_EQ] = ACTIONS(1042), + [anon_sym_LT_LT_EQ] = ACTIONS(1042), + [anon_sym_GT_GT_EQ] = ACTIONS(1042), + [anon_sym_EQ] = ACTIONS(1040), + [anon_sym_EQ_EQ] = ACTIONS(1042), + [anon_sym_BANG_EQ] = ACTIONS(1042), + [anon_sym_GT] = ACTIONS(1040), + [anon_sym_LT] = ACTIONS(1040), + [anon_sym_GT_EQ] = ACTIONS(1042), + [anon_sym_LT_EQ] = ACTIONS(1042), + [anon_sym_AT] = ACTIONS(1042), + [anon_sym__] = ACTIONS(1040), + [anon_sym_DOT] = ACTIONS(1040), + [anon_sym_DOT_DOT] = ACTIONS(1040), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1042), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1042), + [anon_sym_COLON_COLON] = ACTIONS(1042), + [anon_sym_DASH_GT] = ACTIONS(1042), + [anon_sym_POUND] = ACTIONS(1042), + [anon_sym_SQUOTE] = ACTIONS(1040), + [anon_sym_as] = ACTIONS(1040), + [anon_sym_async] = ACTIONS(1040), + [anon_sym_await] = ACTIONS(1040), + [anon_sym_break] = ACTIONS(1040), + [anon_sym_const] = ACTIONS(1040), + [anon_sym_continue] = ACTIONS(1040), + [anon_sym_default] = ACTIONS(1040), + [anon_sym_enum] = ACTIONS(1040), + [anon_sym_fn] = ACTIONS(1040), + [anon_sym_for] = ACTIONS(1040), + [anon_sym_if] = ACTIONS(1040), + [anon_sym_impl] = ACTIONS(1040), + [anon_sym_let] = ACTIONS(1040), + [anon_sym_loop] = ACTIONS(1040), + [anon_sym_match] = ACTIONS(1040), + [anon_sym_mod] = ACTIONS(1040), + [anon_sym_pub] = ACTIONS(1040), + [anon_sym_return] = ACTIONS(1040), + [anon_sym_static] = ACTIONS(1040), + [anon_sym_struct] = ACTIONS(1040), + [anon_sym_trait] = ACTIONS(1040), + [anon_sym_type] = ACTIONS(1040), + [anon_sym_union] = ACTIONS(1040), + [anon_sym_unsafe] = ACTIONS(1040), + [anon_sym_use] = ACTIONS(1040), + [anon_sym_where] = ACTIONS(1040), + [anon_sym_while] = ACTIONS(1040), + [sym_mutable_specifier] = ACTIONS(1040), + [sym_integer_literal] = ACTIONS(1042), + [aux_sym_string_literal_token1] = ACTIONS(1042), + [sym_char_literal] = ACTIONS(1042), + [anon_sym_true] = ACTIONS(1040), + [anon_sym_false] = ACTIONS(1040), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1040), + [sym_super] = ACTIONS(1040), + [sym_crate] = ACTIONS(1040), + [sym__raw_string_literal_start] = ACTIONS(1042), + [sym_float_literal] = ACTIONS(1042), }, [202] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1699), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_let_condition] = STATE(2823), - [sym__let_chain] = STATE(2887), - [sym__condition] = STATE(2495), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2791), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1725), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1574), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_let_condition] = STATE(2876), + [sym__let_chain] = STATE(2871), + [sym__condition] = STATE(2578), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(249), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(202), [sym_block_comment] = STATE(202), - [sym_identifier] = ACTIONS(456), + [sym_identifier] = ACTIONS(471), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(977), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_let] = ACTIONS(979), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_u8] = ACTIONS(473), + [anon_sym_i8] = ACTIONS(473), + [anon_sym_u16] = ACTIONS(473), + [anon_sym_i16] = ACTIONS(473), + [anon_sym_u32] = ACTIONS(473), + [anon_sym_i32] = ACTIONS(473), + [anon_sym_u64] = ACTIONS(473), + [anon_sym_i64] = ACTIONS(473), + [anon_sym_u128] = ACTIONS(473), + [anon_sym_i128] = ACTIONS(473), + [anon_sym_isize] = ACTIONS(473), + [anon_sym_usize] = ACTIONS(473), + [anon_sym_f32] = ACTIONS(473), + [anon_sym_f64] = ACTIONS(473), + [anon_sym_bool] = ACTIONS(473), + [anon_sym_str] = ACTIONS(473), + [anon_sym_char] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(998), + [anon_sym_BANG] = ACTIONS(998), + [anon_sym_AMP] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_COLON_COLON] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(499), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_default] = ACTIONS(481), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_let] = ACTIONS(1004), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(503), + [anon_sym_static] = ACTIONS(505), + [anon_sym_union] = ACTIONS(481), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(507), + [anon_sym_move] = ACTIONS(509), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [203] = { - [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1607), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(203), [sym_block_comment] = STATE(203), - [aux_sym_enum_variant_list_repeat1] = STATE(211), - [sym_identifier] = ACTIONS(334), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(1035), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(765), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [sym_identifier] = ACTIONS(956), + [anon_sym_SEMI] = ACTIONS(958), + [anon_sym_LPAREN] = ACTIONS(958), + [anon_sym_RPAREN] = ACTIONS(958), + [anon_sym_LBRACK] = ACTIONS(958), + [anon_sym_RBRACK] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(958), + [anon_sym_RBRACE] = ACTIONS(958), + [anon_sym_COMMA] = ACTIONS(958), + [anon_sym_EQ_GT] = ACTIONS(958), + [anon_sym_COLON] = ACTIONS(956), + [anon_sym_DOLLAR] = ACTIONS(958), + [anon_sym_PLUS] = ACTIONS(956), + [anon_sym_STAR] = ACTIONS(956), + [anon_sym_QMARK] = ACTIONS(958), + [anon_sym_u8] = ACTIONS(956), + [anon_sym_i8] = ACTIONS(956), + [anon_sym_u16] = ACTIONS(956), + [anon_sym_i16] = ACTIONS(956), + [anon_sym_u32] = ACTIONS(956), + [anon_sym_i32] = ACTIONS(956), + [anon_sym_u64] = ACTIONS(956), + [anon_sym_i64] = ACTIONS(956), + [anon_sym_u128] = ACTIONS(956), + [anon_sym_i128] = ACTIONS(956), + [anon_sym_isize] = ACTIONS(956), + [anon_sym_usize] = ACTIONS(956), + [anon_sym_f32] = ACTIONS(956), + [anon_sym_f64] = ACTIONS(956), + [anon_sym_bool] = ACTIONS(956), + [anon_sym_str] = ACTIONS(956), + [anon_sym_char] = ACTIONS(956), + [anon_sym_DASH] = ACTIONS(956), + [anon_sym_SLASH] = ACTIONS(956), + [anon_sym_PERCENT] = ACTIONS(956), + [anon_sym_CARET] = ACTIONS(956), + [anon_sym_BANG] = ACTIONS(956), + [anon_sym_AMP] = ACTIONS(956), + [anon_sym_PIPE] = ACTIONS(956), + [anon_sym_AMP_AMP] = ACTIONS(958), + [anon_sym_PIPE_PIPE] = ACTIONS(958), + [anon_sym_LT_LT] = ACTIONS(956), + [anon_sym_GT_GT] = ACTIONS(956), + [anon_sym_PLUS_EQ] = ACTIONS(958), + [anon_sym_DASH_EQ] = ACTIONS(958), + [anon_sym_STAR_EQ] = ACTIONS(958), + [anon_sym_SLASH_EQ] = ACTIONS(958), + [anon_sym_PERCENT_EQ] = ACTIONS(958), + [anon_sym_CARET_EQ] = ACTIONS(958), + [anon_sym_AMP_EQ] = ACTIONS(958), + [anon_sym_PIPE_EQ] = ACTIONS(958), + [anon_sym_LT_LT_EQ] = ACTIONS(958), + [anon_sym_GT_GT_EQ] = ACTIONS(958), + [anon_sym_EQ] = ACTIONS(956), + [anon_sym_EQ_EQ] = ACTIONS(958), + [anon_sym_BANG_EQ] = ACTIONS(958), + [anon_sym_GT] = ACTIONS(956), + [anon_sym_LT] = ACTIONS(956), + [anon_sym_GT_EQ] = ACTIONS(958), + [anon_sym_LT_EQ] = ACTIONS(958), + [anon_sym_AT] = ACTIONS(958), + [anon_sym__] = ACTIONS(956), + [anon_sym_DOT] = ACTIONS(956), + [anon_sym_DOT_DOT] = ACTIONS(956), + [anon_sym_DOT_DOT_DOT] = ACTIONS(958), + [anon_sym_DOT_DOT_EQ] = ACTIONS(958), + [anon_sym_COLON_COLON] = ACTIONS(958), + [anon_sym_DASH_GT] = ACTIONS(958), + [anon_sym_POUND] = ACTIONS(958), + [anon_sym_SQUOTE] = ACTIONS(956), + [anon_sym_as] = ACTIONS(956), + [anon_sym_async] = ACTIONS(956), + [anon_sym_await] = ACTIONS(956), + [anon_sym_break] = ACTIONS(956), + [anon_sym_const] = ACTIONS(956), + [anon_sym_continue] = ACTIONS(956), + [anon_sym_default] = ACTIONS(956), + [anon_sym_enum] = ACTIONS(956), + [anon_sym_fn] = ACTIONS(956), + [anon_sym_for] = ACTIONS(956), + [anon_sym_if] = ACTIONS(956), + [anon_sym_impl] = ACTIONS(956), + [anon_sym_let] = ACTIONS(956), + [anon_sym_loop] = ACTIONS(956), + [anon_sym_match] = ACTIONS(956), + [anon_sym_mod] = ACTIONS(956), + [anon_sym_pub] = ACTIONS(956), + [anon_sym_return] = ACTIONS(956), + [anon_sym_static] = ACTIONS(956), + [anon_sym_struct] = ACTIONS(956), + [anon_sym_trait] = ACTIONS(956), + [anon_sym_type] = ACTIONS(956), + [anon_sym_union] = ACTIONS(956), + [anon_sym_unsafe] = ACTIONS(956), + [anon_sym_use] = ACTIONS(956), + [anon_sym_where] = ACTIONS(956), + [anon_sym_while] = ACTIONS(956), + [sym_mutable_specifier] = ACTIONS(956), + [sym_integer_literal] = ACTIONS(958), + [aux_sym_string_literal_token1] = ACTIONS(958), + [sym_char_literal] = ACTIONS(958), + [anon_sym_true] = ACTIONS(956), + [anon_sym_false] = ACTIONS(956), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(956), + [sym_super] = ACTIONS(956), + [sym_crate] = ACTIONS(956), + [sym__raw_string_literal_start] = ACTIONS(958), + [sym_float_literal] = ACTIONS(958), }, [204] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1699), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_let_condition] = STATE(2823), - [sym__let_chain] = STATE(2887), - [sym__condition] = STATE(2547), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2791), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1725), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1574), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_let_condition] = STATE(2876), + [sym__let_chain] = STATE(2871), + [sym__condition] = STATE(2691), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(249), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(204), [sym_block_comment] = STATE(204), - [sym_identifier] = ACTIONS(456), + [sym_identifier] = ACTIONS(471), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(977), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_let] = ACTIONS(979), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_u8] = ACTIONS(473), + [anon_sym_i8] = ACTIONS(473), + [anon_sym_u16] = ACTIONS(473), + [anon_sym_i16] = ACTIONS(473), + [anon_sym_u32] = ACTIONS(473), + [anon_sym_i32] = ACTIONS(473), + [anon_sym_u64] = ACTIONS(473), + [anon_sym_i64] = ACTIONS(473), + [anon_sym_u128] = ACTIONS(473), + [anon_sym_i128] = ACTIONS(473), + [anon_sym_isize] = ACTIONS(473), + [anon_sym_usize] = ACTIONS(473), + [anon_sym_f32] = ACTIONS(473), + [anon_sym_f64] = ACTIONS(473), + [anon_sym_bool] = ACTIONS(473), + [anon_sym_str] = ACTIONS(473), + [anon_sym_char] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(998), + [anon_sym_BANG] = ACTIONS(998), + [anon_sym_AMP] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_COLON_COLON] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(499), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_default] = ACTIONS(481), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_let] = ACTIONS(1004), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(503), + [anon_sym_static] = ACTIONS(505), + [anon_sym_union] = ACTIONS(481), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(507), + [anon_sym_move] = ACTIONS(509), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [205] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1699), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_let_condition] = STATE(2823), - [sym__let_chain] = STATE(2887), - [sym__condition] = STATE(2594), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(205), [sym_block_comment] = STATE(205), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(977), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_let] = ACTIONS(979), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [sym_identifier] = ACTIONS(906), + [anon_sym_SEMI] = ACTIONS(908), + [anon_sym_LPAREN] = ACTIONS(908), + [anon_sym_RPAREN] = ACTIONS(908), + [anon_sym_LBRACK] = ACTIONS(908), + [anon_sym_RBRACK] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(908), + [anon_sym_RBRACE] = ACTIONS(908), + [anon_sym_COMMA] = ACTIONS(908), + [anon_sym_EQ_GT] = ACTIONS(908), + [anon_sym_COLON] = ACTIONS(906), + [anon_sym_DOLLAR] = ACTIONS(908), + [anon_sym_PLUS] = ACTIONS(906), + [anon_sym_STAR] = ACTIONS(906), + [anon_sym_QMARK] = ACTIONS(908), + [anon_sym_u8] = ACTIONS(906), + [anon_sym_i8] = ACTIONS(906), + [anon_sym_u16] = ACTIONS(906), + [anon_sym_i16] = ACTIONS(906), + [anon_sym_u32] = ACTIONS(906), + [anon_sym_i32] = ACTIONS(906), + [anon_sym_u64] = ACTIONS(906), + [anon_sym_i64] = ACTIONS(906), + [anon_sym_u128] = ACTIONS(906), + [anon_sym_i128] = ACTIONS(906), + [anon_sym_isize] = ACTIONS(906), + [anon_sym_usize] = ACTIONS(906), + [anon_sym_f32] = ACTIONS(906), + [anon_sym_f64] = ACTIONS(906), + [anon_sym_bool] = ACTIONS(906), + [anon_sym_str] = ACTIONS(906), + [anon_sym_char] = ACTIONS(906), + [anon_sym_DASH] = ACTIONS(906), + [anon_sym_SLASH] = ACTIONS(906), + [anon_sym_PERCENT] = ACTIONS(906), + [anon_sym_CARET] = ACTIONS(906), + [anon_sym_BANG] = ACTIONS(906), + [anon_sym_AMP] = ACTIONS(906), + [anon_sym_PIPE] = ACTIONS(906), + [anon_sym_AMP_AMP] = ACTIONS(908), + [anon_sym_PIPE_PIPE] = ACTIONS(908), + [anon_sym_LT_LT] = ACTIONS(906), + [anon_sym_GT_GT] = ACTIONS(906), + [anon_sym_PLUS_EQ] = ACTIONS(908), + [anon_sym_DASH_EQ] = ACTIONS(908), + [anon_sym_STAR_EQ] = ACTIONS(908), + [anon_sym_SLASH_EQ] = ACTIONS(908), + [anon_sym_PERCENT_EQ] = ACTIONS(908), + [anon_sym_CARET_EQ] = ACTIONS(908), + [anon_sym_AMP_EQ] = ACTIONS(908), + [anon_sym_PIPE_EQ] = ACTIONS(908), + [anon_sym_LT_LT_EQ] = ACTIONS(908), + [anon_sym_GT_GT_EQ] = ACTIONS(908), + [anon_sym_EQ] = ACTIONS(906), + [anon_sym_EQ_EQ] = ACTIONS(908), + [anon_sym_BANG_EQ] = ACTIONS(908), + [anon_sym_GT] = ACTIONS(906), + [anon_sym_LT] = ACTIONS(906), + [anon_sym_GT_EQ] = ACTIONS(908), + [anon_sym_LT_EQ] = ACTIONS(908), + [anon_sym_AT] = ACTIONS(908), + [anon_sym__] = ACTIONS(906), + [anon_sym_DOT] = ACTIONS(906), + [anon_sym_DOT_DOT] = ACTIONS(906), + [anon_sym_DOT_DOT_DOT] = ACTIONS(908), + [anon_sym_DOT_DOT_EQ] = ACTIONS(908), + [anon_sym_COLON_COLON] = ACTIONS(908), + [anon_sym_DASH_GT] = ACTIONS(908), + [anon_sym_POUND] = ACTIONS(908), + [anon_sym_SQUOTE] = ACTIONS(906), + [anon_sym_as] = ACTIONS(906), + [anon_sym_async] = ACTIONS(906), + [anon_sym_await] = ACTIONS(906), + [anon_sym_break] = ACTIONS(906), + [anon_sym_const] = ACTIONS(906), + [anon_sym_continue] = ACTIONS(906), + [anon_sym_default] = ACTIONS(906), + [anon_sym_enum] = ACTIONS(906), + [anon_sym_fn] = ACTIONS(906), + [anon_sym_for] = ACTIONS(906), + [anon_sym_if] = ACTIONS(906), + [anon_sym_impl] = ACTIONS(906), + [anon_sym_let] = ACTIONS(906), + [anon_sym_loop] = ACTIONS(906), + [anon_sym_match] = ACTIONS(906), + [anon_sym_mod] = ACTIONS(906), + [anon_sym_pub] = ACTIONS(906), + [anon_sym_return] = ACTIONS(906), + [anon_sym_static] = ACTIONS(906), + [anon_sym_struct] = ACTIONS(906), + [anon_sym_trait] = ACTIONS(906), + [anon_sym_type] = ACTIONS(906), + [anon_sym_union] = ACTIONS(906), + [anon_sym_unsafe] = ACTIONS(906), + [anon_sym_use] = ACTIONS(906), + [anon_sym_where] = ACTIONS(906), + [anon_sym_while] = ACTIONS(906), + [sym_mutable_specifier] = ACTIONS(906), + [sym_integer_literal] = ACTIONS(908), + [aux_sym_string_literal_token1] = ACTIONS(908), + [sym_char_literal] = ACTIONS(908), + [anon_sym_true] = ACTIONS(906), + [anon_sym_false] = ACTIONS(906), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym__raw_string_literal_start] = ACTIONS(908), + [sym_float_literal] = ACTIONS(908), }, [206] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1699), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_let_condition] = STATE(2823), - [sym__let_chain] = STATE(2887), - [sym__condition] = STATE(2612), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(206), [sym_block_comment] = STATE(206), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(977), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_let] = ACTIONS(979), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [sym_identifier] = ACTIONS(1044), + [anon_sym_SEMI] = ACTIONS(1046), + [anon_sym_LPAREN] = ACTIONS(1046), + [anon_sym_RPAREN] = ACTIONS(1046), + [anon_sym_LBRACK] = ACTIONS(1046), + [anon_sym_RBRACK] = ACTIONS(1046), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_RBRACE] = ACTIONS(1046), + [anon_sym_COMMA] = ACTIONS(1046), + [anon_sym_EQ_GT] = ACTIONS(1046), + [anon_sym_COLON] = ACTIONS(1044), + [anon_sym_DOLLAR] = ACTIONS(1046), + [anon_sym_PLUS] = ACTIONS(1044), + [anon_sym_STAR] = ACTIONS(1044), + [anon_sym_QMARK] = ACTIONS(1046), + [anon_sym_u8] = ACTIONS(1044), + [anon_sym_i8] = ACTIONS(1044), + [anon_sym_u16] = ACTIONS(1044), + [anon_sym_i16] = ACTIONS(1044), + [anon_sym_u32] = ACTIONS(1044), + [anon_sym_i32] = ACTIONS(1044), + [anon_sym_u64] = ACTIONS(1044), + [anon_sym_i64] = ACTIONS(1044), + [anon_sym_u128] = ACTIONS(1044), + [anon_sym_i128] = ACTIONS(1044), + [anon_sym_isize] = ACTIONS(1044), + [anon_sym_usize] = ACTIONS(1044), + [anon_sym_f32] = ACTIONS(1044), + [anon_sym_f64] = ACTIONS(1044), + [anon_sym_bool] = ACTIONS(1044), + [anon_sym_str] = ACTIONS(1044), + [anon_sym_char] = ACTIONS(1044), + [anon_sym_DASH] = ACTIONS(1044), + [anon_sym_SLASH] = ACTIONS(1044), + [anon_sym_PERCENT] = ACTIONS(1044), + [anon_sym_CARET] = ACTIONS(1044), + [anon_sym_BANG] = ACTIONS(1044), + [anon_sym_AMP] = ACTIONS(1044), + [anon_sym_PIPE] = ACTIONS(1044), + [anon_sym_AMP_AMP] = ACTIONS(1046), + [anon_sym_PIPE_PIPE] = ACTIONS(1046), + [anon_sym_LT_LT] = ACTIONS(1044), + [anon_sym_GT_GT] = ACTIONS(1044), + [anon_sym_PLUS_EQ] = ACTIONS(1046), + [anon_sym_DASH_EQ] = ACTIONS(1046), + [anon_sym_STAR_EQ] = ACTIONS(1046), + [anon_sym_SLASH_EQ] = ACTIONS(1046), + [anon_sym_PERCENT_EQ] = ACTIONS(1046), + [anon_sym_CARET_EQ] = ACTIONS(1046), + [anon_sym_AMP_EQ] = ACTIONS(1046), + [anon_sym_PIPE_EQ] = ACTIONS(1046), + [anon_sym_LT_LT_EQ] = ACTIONS(1046), + [anon_sym_GT_GT_EQ] = ACTIONS(1046), + [anon_sym_EQ] = ACTIONS(1044), + [anon_sym_EQ_EQ] = ACTIONS(1046), + [anon_sym_BANG_EQ] = ACTIONS(1046), + [anon_sym_GT] = ACTIONS(1044), + [anon_sym_LT] = ACTIONS(1044), + [anon_sym_GT_EQ] = ACTIONS(1046), + [anon_sym_LT_EQ] = ACTIONS(1046), + [anon_sym_AT] = ACTIONS(1046), + [anon_sym__] = ACTIONS(1044), + [anon_sym_DOT] = ACTIONS(1044), + [anon_sym_DOT_DOT] = ACTIONS(1044), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1046), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1046), + [anon_sym_COLON_COLON] = ACTIONS(1046), + [anon_sym_DASH_GT] = ACTIONS(1046), + [anon_sym_POUND] = ACTIONS(1046), + [anon_sym_SQUOTE] = ACTIONS(1044), + [anon_sym_as] = ACTIONS(1044), + [anon_sym_async] = ACTIONS(1044), + [anon_sym_await] = ACTIONS(1044), + [anon_sym_break] = ACTIONS(1044), + [anon_sym_const] = ACTIONS(1044), + [anon_sym_continue] = ACTIONS(1044), + [anon_sym_default] = ACTIONS(1044), + [anon_sym_enum] = ACTIONS(1044), + [anon_sym_fn] = ACTIONS(1044), + [anon_sym_for] = ACTIONS(1044), + [anon_sym_if] = ACTIONS(1044), + [anon_sym_impl] = ACTIONS(1044), + [anon_sym_let] = ACTIONS(1044), + [anon_sym_loop] = ACTIONS(1044), + [anon_sym_match] = ACTIONS(1044), + [anon_sym_mod] = ACTIONS(1044), + [anon_sym_pub] = ACTIONS(1044), + [anon_sym_return] = ACTIONS(1044), + [anon_sym_static] = ACTIONS(1044), + [anon_sym_struct] = ACTIONS(1044), + [anon_sym_trait] = ACTIONS(1044), + [anon_sym_type] = ACTIONS(1044), + [anon_sym_union] = ACTIONS(1044), + [anon_sym_unsafe] = ACTIONS(1044), + [anon_sym_use] = ACTIONS(1044), + [anon_sym_where] = ACTIONS(1044), + [anon_sym_while] = ACTIONS(1044), + [sym_mutable_specifier] = ACTIONS(1044), + [sym_integer_literal] = ACTIONS(1046), + [aux_sym_string_literal_token1] = ACTIONS(1046), + [sym_char_literal] = ACTIONS(1046), + [anon_sym_true] = ACTIONS(1044), + [anon_sym_false] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1044), + [sym_super] = ACTIONS(1044), + [sym_crate] = ACTIONS(1044), + [sym__raw_string_literal_start] = ACTIONS(1046), + [sym_float_literal] = ACTIONS(1046), }, [207] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1699), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_let_condition] = STATE(2823), - [sym__let_chain] = STATE(2887), - [sym__condition] = STATE(2621), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_attribute_item] = STATE(1023), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1618), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1419), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(207), [sym_block_comment] = STATE(207), - [sym_identifier] = ACTIONS(456), + [aux_sym_enum_variant_list_repeat1] = STATE(216), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(977), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_let] = ACTIONS(979), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_RBRACK] = ACTIONS(1048), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_POUND] = ACTIONS(774), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(365), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [208] = { + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2791), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1725), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1574), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_let_condition] = STATE(2876), + [sym__let_chain] = STATE(2871), + [sym__condition] = STATE(2715), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(249), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(208), [sym_block_comment] = STATE(208), - [sym_identifier] = ACTIONS(749), - [anon_sym_SEMI] = ACTIONS(751), - [anon_sym_LPAREN] = ACTIONS(751), - [anon_sym_RPAREN] = ACTIONS(751), - [anon_sym_LBRACK] = ACTIONS(751), - [anon_sym_RBRACK] = ACTIONS(751), - [anon_sym_LBRACE] = ACTIONS(751), - [anon_sym_RBRACE] = ACTIONS(751), - [anon_sym_EQ_GT] = ACTIONS(751), - [anon_sym_COLON] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [anon_sym_PLUS] = ACTIONS(749), - [anon_sym_STAR] = ACTIONS(749), - [anon_sym_QMARK] = ACTIONS(751), - [anon_sym_u8] = ACTIONS(749), - [anon_sym_i8] = ACTIONS(749), - [anon_sym_u16] = ACTIONS(749), - [anon_sym_i16] = ACTIONS(749), - [anon_sym_u32] = ACTIONS(749), - [anon_sym_i32] = ACTIONS(749), - [anon_sym_u64] = ACTIONS(749), - [anon_sym_i64] = ACTIONS(749), - [anon_sym_u128] = ACTIONS(749), - [anon_sym_i128] = ACTIONS(749), - [anon_sym_isize] = ACTIONS(749), - [anon_sym_usize] = ACTIONS(749), - [anon_sym_f32] = ACTIONS(749), - [anon_sym_f64] = ACTIONS(749), - [anon_sym_bool] = ACTIONS(749), - [anon_sym_str] = ACTIONS(749), - [anon_sym_char] = ACTIONS(749), - [anon_sym_DASH] = ACTIONS(749), - [anon_sym_SLASH] = ACTIONS(749), - [anon_sym_PERCENT] = ACTIONS(749), - [anon_sym_CARET] = ACTIONS(749), - [anon_sym_BANG] = ACTIONS(749), - [anon_sym_AMP] = ACTIONS(749), - [anon_sym_PIPE] = ACTIONS(749), - [anon_sym_AMP_AMP] = ACTIONS(751), - [anon_sym_PIPE_PIPE] = ACTIONS(751), - [anon_sym_LT_LT] = ACTIONS(749), - [anon_sym_GT_GT] = ACTIONS(749), - [anon_sym_PLUS_EQ] = ACTIONS(751), - [anon_sym_DASH_EQ] = ACTIONS(751), - [anon_sym_STAR_EQ] = ACTIONS(751), - [anon_sym_SLASH_EQ] = ACTIONS(751), - [anon_sym_PERCENT_EQ] = ACTIONS(751), - [anon_sym_CARET_EQ] = ACTIONS(751), - [anon_sym_AMP_EQ] = ACTIONS(751), - [anon_sym_PIPE_EQ] = ACTIONS(751), - [anon_sym_LT_LT_EQ] = ACTIONS(751), - [anon_sym_GT_GT_EQ] = ACTIONS(751), - [anon_sym_EQ] = ACTIONS(749), - [anon_sym_EQ_EQ] = ACTIONS(751), - [anon_sym_BANG_EQ] = ACTIONS(751), - [anon_sym_GT] = ACTIONS(749), - [anon_sym_LT] = ACTIONS(749), - [anon_sym_GT_EQ] = ACTIONS(751), - [anon_sym_LT_EQ] = ACTIONS(751), - [anon_sym_AT] = ACTIONS(751), - [anon_sym__] = ACTIONS(749), - [anon_sym_DOT] = ACTIONS(749), - [anon_sym_DOT_DOT] = ACTIONS(749), - [anon_sym_DOT_DOT_DOT] = ACTIONS(751), - [anon_sym_DOT_DOT_EQ] = ACTIONS(751), - [anon_sym_COMMA] = ACTIONS(751), - [anon_sym_COLON_COLON] = ACTIONS(751), - [anon_sym_DASH_GT] = ACTIONS(751), - [anon_sym_POUND] = ACTIONS(751), - [anon_sym_SQUOTE] = ACTIONS(749), - [anon_sym_as] = ACTIONS(749), - [anon_sym_async] = ACTIONS(749), - [anon_sym_await] = ACTIONS(749), - [anon_sym_break] = ACTIONS(749), - [anon_sym_const] = ACTIONS(749), - [anon_sym_continue] = ACTIONS(749), - [anon_sym_default] = ACTIONS(749), - [anon_sym_enum] = ACTIONS(749), - [anon_sym_fn] = ACTIONS(749), - [anon_sym_for] = ACTIONS(749), - [anon_sym_if] = ACTIONS(749), - [anon_sym_impl] = ACTIONS(749), - [anon_sym_let] = ACTIONS(749), - [anon_sym_loop] = ACTIONS(749), - [anon_sym_match] = ACTIONS(749), - [anon_sym_mod] = ACTIONS(749), - [anon_sym_pub] = ACTIONS(749), - [anon_sym_return] = ACTIONS(749), - [anon_sym_static] = ACTIONS(749), - [anon_sym_struct] = ACTIONS(749), - [anon_sym_trait] = ACTIONS(749), - [anon_sym_type] = ACTIONS(749), - [anon_sym_union] = ACTIONS(749), - [anon_sym_unsafe] = ACTIONS(749), - [anon_sym_use] = ACTIONS(749), - [anon_sym_where] = ACTIONS(749), - [anon_sym_while] = ACTIONS(749), - [sym_mutable_specifier] = ACTIONS(749), - [sym_integer_literal] = ACTIONS(751), - [aux_sym_string_literal_token1] = ACTIONS(751), - [sym_char_literal] = ACTIONS(751), - [anon_sym_true] = ACTIONS(749), - [anon_sym_false] = ACTIONS(749), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(749), - [sym_super] = ACTIONS(749), - [sym_crate] = ACTIONS(749), - [sym__raw_string_literal_start] = ACTIONS(751), - [sym_float_literal] = ACTIONS(751), + [sym_identifier] = ACTIONS(471), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_u8] = ACTIONS(473), + [anon_sym_i8] = ACTIONS(473), + [anon_sym_u16] = ACTIONS(473), + [anon_sym_i16] = ACTIONS(473), + [anon_sym_u32] = ACTIONS(473), + [anon_sym_i32] = ACTIONS(473), + [anon_sym_u64] = ACTIONS(473), + [anon_sym_i64] = ACTIONS(473), + [anon_sym_u128] = ACTIONS(473), + [anon_sym_i128] = ACTIONS(473), + [anon_sym_isize] = ACTIONS(473), + [anon_sym_usize] = ACTIONS(473), + [anon_sym_f32] = ACTIONS(473), + [anon_sym_f64] = ACTIONS(473), + [anon_sym_bool] = ACTIONS(473), + [anon_sym_str] = ACTIONS(473), + [anon_sym_char] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(998), + [anon_sym_BANG] = ACTIONS(998), + [anon_sym_AMP] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_COLON_COLON] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(499), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_default] = ACTIONS(481), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_let] = ACTIONS(1004), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(503), + [anon_sym_static] = ACTIONS(505), + [anon_sym_union] = ACTIONS(481), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(507), + [anon_sym_move] = ACTIONS(509), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [209] = { - [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1574), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2791), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1725), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1574), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_let_condition] = STATE(2876), + [sym__let_chain] = STATE(2871), + [sym__condition] = STATE(2703), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(249), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(209), [sym_block_comment] = STATE(209), - [aux_sym_enum_variant_list_repeat1] = STATE(1002), - [sym_identifier] = ACTIONS(334), + [sym_identifier] = ACTIONS(471), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(765), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_u8] = ACTIONS(473), + [anon_sym_i8] = ACTIONS(473), + [anon_sym_u16] = ACTIONS(473), + [anon_sym_i16] = ACTIONS(473), + [anon_sym_u32] = ACTIONS(473), + [anon_sym_i32] = ACTIONS(473), + [anon_sym_u64] = ACTIONS(473), + [anon_sym_i64] = ACTIONS(473), + [anon_sym_u128] = ACTIONS(473), + [anon_sym_i128] = ACTIONS(473), + [anon_sym_isize] = ACTIONS(473), + [anon_sym_usize] = ACTIONS(473), + [anon_sym_f32] = ACTIONS(473), + [anon_sym_f64] = ACTIONS(473), + [anon_sym_bool] = ACTIONS(473), + [anon_sym_str] = ACTIONS(473), + [anon_sym_char] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(998), + [anon_sym_BANG] = ACTIONS(998), + [anon_sym_AMP] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_COLON_COLON] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(499), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_default] = ACTIONS(481), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_let] = ACTIONS(1004), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(503), + [anon_sym_static] = ACTIONS(505), + [anon_sym_union] = ACTIONS(481), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(507), + [anon_sym_move] = ACTIONS(509), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [210] = { - [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1607), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_attribute_item] = STATE(1023), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1618), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1419), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(210), [sym_block_comment] = STATE(210), - [aux_sym_enum_variant_list_repeat1] = STATE(211), - [sym_identifier] = ACTIONS(334), + [aux_sym_enum_variant_list_repeat1] = STATE(216), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1050), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(765), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_POUND] = ACTIONS(774), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(365), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [211] = { - [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1610), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(211), [sym_block_comment] = STATE(211), - [aux_sym_enum_variant_list_repeat1] = STATE(1002), - [sym_identifier] = ACTIONS(334), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(765), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [sym_identifier] = ACTIONS(922), + [anon_sym_SEMI] = ACTIONS(924), + [anon_sym_LPAREN] = ACTIONS(924), + [anon_sym_RPAREN] = ACTIONS(924), + [anon_sym_LBRACK] = ACTIONS(924), + [anon_sym_RBRACK] = ACTIONS(924), + [anon_sym_LBRACE] = ACTIONS(924), + [anon_sym_RBRACE] = ACTIONS(924), + [anon_sym_COMMA] = ACTIONS(924), + [anon_sym_EQ_GT] = ACTIONS(924), + [anon_sym_COLON] = ACTIONS(922), + [anon_sym_DOLLAR] = ACTIONS(924), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_STAR] = ACTIONS(922), + [anon_sym_QMARK] = ACTIONS(924), + [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_DASH] = ACTIONS(922), + [anon_sym_SLASH] = ACTIONS(922), + [anon_sym_PERCENT] = ACTIONS(922), + [anon_sym_CARET] = ACTIONS(922), + [anon_sym_BANG] = ACTIONS(922), + [anon_sym_AMP] = ACTIONS(922), + [anon_sym_PIPE] = ACTIONS(922), + [anon_sym_AMP_AMP] = ACTIONS(924), + [anon_sym_PIPE_PIPE] = ACTIONS(924), + [anon_sym_LT_LT] = ACTIONS(922), + [anon_sym_GT_GT] = ACTIONS(922), + [anon_sym_PLUS_EQ] = ACTIONS(924), + [anon_sym_DASH_EQ] = ACTIONS(924), + [anon_sym_STAR_EQ] = ACTIONS(924), + [anon_sym_SLASH_EQ] = ACTIONS(924), + [anon_sym_PERCENT_EQ] = ACTIONS(924), + [anon_sym_CARET_EQ] = ACTIONS(924), + [anon_sym_AMP_EQ] = ACTIONS(924), + [anon_sym_PIPE_EQ] = ACTIONS(924), + [anon_sym_LT_LT_EQ] = ACTIONS(924), + [anon_sym_GT_GT_EQ] = ACTIONS(924), + [anon_sym_EQ] = ACTIONS(922), + [anon_sym_EQ_EQ] = ACTIONS(924), + [anon_sym_BANG_EQ] = ACTIONS(924), + [anon_sym_GT] = ACTIONS(922), + [anon_sym_LT] = ACTIONS(922), + [anon_sym_GT_EQ] = ACTIONS(924), + [anon_sym_LT_EQ] = ACTIONS(924), + [anon_sym_AT] = ACTIONS(924), + [anon_sym__] = ACTIONS(922), + [anon_sym_DOT] = ACTIONS(922), + [anon_sym_DOT_DOT] = ACTIONS(922), + [anon_sym_DOT_DOT_DOT] = ACTIONS(924), + [anon_sym_DOT_DOT_EQ] = ACTIONS(924), + [anon_sym_COLON_COLON] = ACTIONS(924), + [anon_sym_DASH_GT] = ACTIONS(924), + [anon_sym_POUND] = ACTIONS(924), + [anon_sym_SQUOTE] = ACTIONS(922), + [anon_sym_as] = ACTIONS(922), + [anon_sym_async] = ACTIONS(922), + [anon_sym_await] = ACTIONS(922), + [anon_sym_break] = ACTIONS(922), + [anon_sym_const] = ACTIONS(922), + [anon_sym_continue] = ACTIONS(922), + [anon_sym_default] = ACTIONS(922), + [anon_sym_enum] = ACTIONS(922), + [anon_sym_fn] = ACTIONS(922), + [anon_sym_for] = ACTIONS(922), + [anon_sym_if] = ACTIONS(922), + [anon_sym_impl] = ACTIONS(922), + [anon_sym_let] = ACTIONS(922), + [anon_sym_loop] = ACTIONS(922), + [anon_sym_match] = ACTIONS(922), + [anon_sym_mod] = ACTIONS(922), + [anon_sym_pub] = ACTIONS(922), + [anon_sym_return] = ACTIONS(922), + [anon_sym_static] = ACTIONS(922), + [anon_sym_struct] = ACTIONS(922), + [anon_sym_trait] = ACTIONS(922), + [anon_sym_type] = ACTIONS(922), + [anon_sym_union] = ACTIONS(922), + [anon_sym_unsafe] = ACTIONS(922), + [anon_sym_use] = ACTIONS(922), + [anon_sym_where] = ACTIONS(922), + [anon_sym_while] = ACTIONS(922), + [sym_mutable_specifier] = ACTIONS(922), + [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), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(922), + [sym_super] = ACTIONS(922), + [sym_crate] = ACTIONS(922), + [sym__raw_string_literal_start] = ACTIONS(924), + [sym_float_literal] = ACTIONS(924), }, [212] = { - [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1854), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_attribute_item] = STATE(1023), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1618), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1419), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(212), [sym_block_comment] = STATE(212), - [aux_sym_enum_variant_list_repeat1] = STATE(1002), - [sym_identifier] = ACTIONS(334), + [aux_sym_enum_variant_list_repeat1] = STATE(216), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(765), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_RBRACK] = ACTIONS(1052), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_POUND] = ACTIONS(774), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(365), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [213] = { - [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1589), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2791), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1725), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1574), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_let_condition] = STATE(2876), + [sym__let_chain] = STATE(2871), + [sym__condition] = STATE(2722), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(249), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(213), [sym_block_comment] = STATE(213), - [aux_sym_enum_variant_list_repeat1] = STATE(1002), - [sym_identifier] = ACTIONS(334), + [sym_identifier] = ACTIONS(471), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(765), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_u8] = ACTIONS(473), + [anon_sym_i8] = ACTIONS(473), + [anon_sym_u16] = ACTIONS(473), + [anon_sym_i16] = ACTIONS(473), + [anon_sym_u32] = ACTIONS(473), + [anon_sym_i32] = ACTIONS(473), + [anon_sym_u64] = ACTIONS(473), + [anon_sym_i64] = ACTIONS(473), + [anon_sym_u128] = ACTIONS(473), + [anon_sym_i128] = ACTIONS(473), + [anon_sym_isize] = ACTIONS(473), + [anon_sym_usize] = ACTIONS(473), + [anon_sym_f32] = ACTIONS(473), + [anon_sym_f64] = ACTIONS(473), + [anon_sym_bool] = ACTIONS(473), + [anon_sym_str] = ACTIONS(473), + [anon_sym_char] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(998), + [anon_sym_BANG] = ACTIONS(998), + [anon_sym_AMP] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_COLON_COLON] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(499), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_default] = ACTIONS(481), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_let] = ACTIONS(1004), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(503), + [anon_sym_static] = ACTIONS(505), + [anon_sym_union] = ACTIONS(481), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(507), + [anon_sym_move] = ACTIONS(509), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [214] = { - [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1871), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(214), [sym_block_comment] = STATE(214), - [aux_sym_enum_variant_list_repeat1] = STATE(1002), - [sym_identifier] = ACTIONS(334), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(765), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [sym_identifier] = ACTIONS(960), + [anon_sym_SEMI] = ACTIONS(962), + [anon_sym_LPAREN] = ACTIONS(962), + [anon_sym_RPAREN] = ACTIONS(962), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_RBRACK] = ACTIONS(962), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_RBRACE] = ACTIONS(962), + [anon_sym_COMMA] = ACTIONS(962), + [anon_sym_EQ_GT] = ACTIONS(962), + [anon_sym_COLON] = ACTIONS(960), + [anon_sym_DOLLAR] = ACTIONS(962), + [anon_sym_PLUS] = ACTIONS(960), + [anon_sym_STAR] = ACTIONS(960), + [anon_sym_QMARK] = ACTIONS(962), + [anon_sym_u8] = ACTIONS(960), + [anon_sym_i8] = ACTIONS(960), + [anon_sym_u16] = ACTIONS(960), + [anon_sym_i16] = ACTIONS(960), + [anon_sym_u32] = ACTIONS(960), + [anon_sym_i32] = ACTIONS(960), + [anon_sym_u64] = ACTIONS(960), + [anon_sym_i64] = ACTIONS(960), + [anon_sym_u128] = ACTIONS(960), + [anon_sym_i128] = ACTIONS(960), + [anon_sym_isize] = ACTIONS(960), + [anon_sym_usize] = ACTIONS(960), + [anon_sym_f32] = ACTIONS(960), + [anon_sym_f64] = ACTIONS(960), + [anon_sym_bool] = ACTIONS(960), + [anon_sym_str] = ACTIONS(960), + [anon_sym_char] = ACTIONS(960), + [anon_sym_DASH] = ACTIONS(960), + [anon_sym_SLASH] = ACTIONS(960), + [anon_sym_PERCENT] = ACTIONS(960), + [anon_sym_CARET] = ACTIONS(960), + [anon_sym_BANG] = ACTIONS(960), + [anon_sym_AMP] = ACTIONS(960), + [anon_sym_PIPE] = ACTIONS(960), + [anon_sym_AMP_AMP] = ACTIONS(962), + [anon_sym_PIPE_PIPE] = ACTIONS(962), + [anon_sym_LT_LT] = ACTIONS(960), + [anon_sym_GT_GT] = ACTIONS(960), + [anon_sym_PLUS_EQ] = ACTIONS(962), + [anon_sym_DASH_EQ] = ACTIONS(962), + [anon_sym_STAR_EQ] = ACTIONS(962), + [anon_sym_SLASH_EQ] = ACTIONS(962), + [anon_sym_PERCENT_EQ] = ACTIONS(962), + [anon_sym_CARET_EQ] = ACTIONS(962), + [anon_sym_AMP_EQ] = ACTIONS(962), + [anon_sym_PIPE_EQ] = ACTIONS(962), + [anon_sym_LT_LT_EQ] = ACTIONS(962), + [anon_sym_GT_GT_EQ] = ACTIONS(962), + [anon_sym_EQ] = ACTIONS(960), + [anon_sym_EQ_EQ] = ACTIONS(962), + [anon_sym_BANG_EQ] = ACTIONS(962), + [anon_sym_GT] = ACTIONS(960), + [anon_sym_LT] = ACTIONS(960), + [anon_sym_GT_EQ] = ACTIONS(962), + [anon_sym_LT_EQ] = ACTIONS(962), + [anon_sym_AT] = ACTIONS(962), + [anon_sym__] = ACTIONS(960), + [anon_sym_DOT] = ACTIONS(960), + [anon_sym_DOT_DOT] = ACTIONS(960), + [anon_sym_DOT_DOT_DOT] = ACTIONS(962), + [anon_sym_DOT_DOT_EQ] = ACTIONS(962), + [anon_sym_COLON_COLON] = ACTIONS(962), + [anon_sym_DASH_GT] = ACTIONS(962), + [anon_sym_POUND] = ACTIONS(962), + [anon_sym_SQUOTE] = ACTIONS(960), + [anon_sym_as] = ACTIONS(960), + [anon_sym_async] = ACTIONS(960), + [anon_sym_await] = ACTIONS(960), + [anon_sym_break] = ACTIONS(960), + [anon_sym_const] = ACTIONS(960), + [anon_sym_continue] = ACTIONS(960), + [anon_sym_default] = ACTIONS(960), + [anon_sym_enum] = ACTIONS(960), + [anon_sym_fn] = ACTIONS(960), + [anon_sym_for] = ACTIONS(960), + [anon_sym_if] = ACTIONS(960), + [anon_sym_impl] = ACTIONS(960), + [anon_sym_let] = ACTIONS(960), + [anon_sym_loop] = ACTIONS(960), + [anon_sym_match] = ACTIONS(960), + [anon_sym_mod] = ACTIONS(960), + [anon_sym_pub] = ACTIONS(960), + [anon_sym_return] = ACTIONS(960), + [anon_sym_static] = ACTIONS(960), + [anon_sym_struct] = ACTIONS(960), + [anon_sym_trait] = ACTIONS(960), + [anon_sym_type] = ACTIONS(960), + [anon_sym_union] = ACTIONS(960), + [anon_sym_unsafe] = ACTIONS(960), + [anon_sym_use] = ACTIONS(960), + [anon_sym_where] = ACTIONS(960), + [anon_sym_while] = ACTIONS(960), + [sym_mutable_specifier] = ACTIONS(960), + [sym_integer_literal] = ACTIONS(962), + [aux_sym_string_literal_token1] = ACTIONS(962), + [sym_char_literal] = ACTIONS(962), + [anon_sym_true] = ACTIONS(960), + [anon_sym_false] = ACTIONS(960), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(960), + [sym_super] = ACTIONS(960), + [sym_crate] = ACTIONS(960), + [sym__raw_string_literal_start] = ACTIONS(962), + [sym_float_literal] = ACTIONS(962), }, [215] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1806), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_attribute_item] = STATE(1023), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1622), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1419), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(215), [sym_block_comment] = STATE(215), - [aux_sym_tuple_expression_repeat1] = STATE(221), - [sym_identifier] = ACTIONS(334), + [aux_sym_enum_variant_list_repeat1] = STATE(1022), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1037), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_POUND] = ACTIONS(774), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(365), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [216] = { - [sym_bracketed_type] = STATE(3498), - [sym_generic_function] = STATE(1637), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1604), - [sym__expression] = STATE(1757), - [sym_macro_invocation] = STATE(1641), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3100), - [sym_range_expression] = STATE(1639), - [sym_unary_expression] = STATE(1637), - [sym_try_expression] = STATE(1637), - [sym_reference_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_assignment_expression] = STATE(1637), - [sym_compound_assignment_expr] = STATE(1637), - [sym_type_cast_expression] = STATE(1637), - [sym_return_expression] = STATE(1637), - [sym_yield_expression] = STATE(1637), - [sym_call_expression] = STATE(1637), - [sym_array_expression] = STATE(1637), - [sym_parenthesized_expression] = STATE(1637), - [sym_tuple_expression] = STATE(1637), - [sym_unit_expression] = STATE(1637), - [sym_struct_expression] = STATE(1637), - [sym_if_expression] = STATE(1637), - [sym_let_condition] = STATE(2662), - [sym_match_expression] = STATE(1637), - [sym_while_expression] = STATE(1637), - [sym_loop_expression] = STATE(1637), - [sym_for_expression] = STATE(1637), - [sym_const_block] = STATE(1637), - [sym_closure_expression] = STATE(1637), - [sym_closure_parameters] = STATE(237), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1637), - [sym_continue_expression] = STATE(1637), - [sym_index_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_field_expression] = STATE(1620), - [sym_unsafe_block] = STATE(1637), - [sym_async_block] = STATE(1637), - [sym_try_block] = STATE(1637), - [sym_block] = STATE(1637), - [sym__literal] = STATE(1637), - [sym_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_boolean_literal] = STATE(1778), + [sym_attribute_item] = STATE(1023), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1665), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1419), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(216), [sym_block_comment] = STATE(216), - [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_STAR] = ACTIONS(1021), - [anon_sym_u8] = ACTIONS(404), - [anon_sym_i8] = ACTIONS(404), - [anon_sym_u16] = ACTIONS(404), - [anon_sym_i16] = ACTIONS(404), - [anon_sym_u32] = ACTIONS(404), - [anon_sym_i32] = ACTIONS(404), - [anon_sym_u64] = ACTIONS(404), - [anon_sym_i64] = ACTIONS(404), - [anon_sym_u128] = ACTIONS(404), - [anon_sym_i128] = ACTIONS(404), - [anon_sym_isize] = ACTIONS(404), - [anon_sym_usize] = ACTIONS(404), - [anon_sym_f32] = ACTIONS(404), - [anon_sym_f64] = ACTIONS(404), - [anon_sym_bool] = ACTIONS(404), - [anon_sym_str] = ACTIONS(404), - [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_BANG] = ACTIONS(1021), - [anon_sym_AMP] = ACTIONS(1023), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1039), - [anon_sym_COLON_COLON] = ACTIONS(408), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_const] = ACTIONS(414), - [anon_sym_continue] = ACTIONS(416), - [anon_sym_default] = ACTIONS(418), - [anon_sym_for] = ACTIONS(420), - [anon_sym_if] = ACTIONS(422), - [anon_sym_let] = ACTIONS(1027), - [anon_sym_loop] = ACTIONS(424), - [anon_sym_match] = ACTIONS(426), - [anon_sym_return] = ACTIONS(428), - [anon_sym_static] = ACTIONS(430), - [anon_sym_union] = ACTIONS(418), - [anon_sym_unsafe] = ACTIONS(432), - [anon_sym_while] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_move] = ACTIONS(438), - [anon_sym_try] = ACTIONS(440), - [sym_integer_literal] = ACTIONS(442), - [aux_sym_string_literal_token1] = ACTIONS(444), - [sym_char_literal] = ACTIONS(442), - [anon_sym_true] = ACTIONS(446), - [anon_sym_false] = ACTIONS(446), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(448), - [sym_super] = ACTIONS(450), - [sym_crate] = ACTIONS(450), - [sym_metavariable] = ACTIONS(452), - [sym__raw_string_literal_start] = ACTIONS(454), - [sym_float_literal] = ACTIONS(442), + [aux_sym_enum_variant_list_repeat1] = STATE(1022), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_POUND] = ACTIONS(774), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(365), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [217] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1711), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1214), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_attribute_item] = STATE(1023), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1659), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1419), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(217), [sym_block_comment] = STATE(217), - [sym_identifier] = ACTIONS(456), + [aux_sym_enum_variant_list_repeat1] = STATE(1022), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(1041), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(460), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_AMP] = ACTIONS(1043), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1045), - [anon_sym_DOT_DOT] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_DASH_GT] = ACTIONS(1049), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(464), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(468), - [anon_sym_static] = ACTIONS(470), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(472), - [anon_sym_move] = ACTIONS(474), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_POUND] = ACTIONS(774), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(365), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [218] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1803), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_attribute_item] = STATE(1023), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1880), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1419), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(218), [sym_block_comment] = STATE(218), - [aux_sym_tuple_expression_repeat1] = STATE(222), - [sym_identifier] = ACTIONS(334), + [aux_sym_enum_variant_list_repeat1] = STATE(1022), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1051), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_POUND] = ACTIONS(774), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(365), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [219] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1803), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_attribute_item] = STATE(1023), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1877), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1419), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(219), [sym_block_comment] = STATE(219), - [aux_sym_tuple_expression_repeat1] = STATE(223), - [sym_identifier] = ACTIONS(334), + [aux_sym_enum_variant_list_repeat1] = STATE(1022), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1051), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_POUND] = ACTIONS(774), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(365), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [220] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1573), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1310), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_attribute_item] = STATE(1023), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1618), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1419), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(220), [sym_block_comment] = STATE(220), - [sym_identifier] = ACTIONS(456), + [aux_sym_enum_variant_list_repeat1] = STATE(216), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(492), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1053), - [anon_sym_DOT_DOT] = ACTIONS(1055), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_DASH_GT] = ACTIONS(1057), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_POUND] = ACTIONS(774), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(365), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [221] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1682), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2791), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1839), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1574), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(241), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1388), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(221), [sym_block_comment] = STATE(221), - [aux_sym_tuple_expression_repeat1] = STATE(222), - [sym_identifier] = ACTIONS(334), + [sym_identifier] = ACTIONS(471), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1059), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1054), + [anon_sym_u8] = ACTIONS(473), + [anon_sym_i8] = ACTIONS(473), + [anon_sym_u16] = ACTIONS(473), + [anon_sym_i16] = ACTIONS(473), + [anon_sym_u32] = ACTIONS(473), + [anon_sym_i32] = ACTIONS(473), + [anon_sym_u64] = ACTIONS(473), + [anon_sym_i64] = ACTIONS(473), + [anon_sym_u128] = ACTIONS(473), + [anon_sym_i128] = ACTIONS(473), + [anon_sym_isize] = ACTIONS(473), + [anon_sym_usize] = ACTIONS(473), + [anon_sym_f32] = ACTIONS(473), + [anon_sym_f64] = ACTIONS(473), + [anon_sym_bool] = ACTIONS(473), + [anon_sym_str] = ACTIONS(473), + [anon_sym_char] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_BANG] = ACTIONS(1054), + [anon_sym_AMP] = ACTIONS(1056), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1058), + [anon_sym_DOT_DOT] = ACTIONS(1060), + [anon_sym_COLON_COLON] = ACTIONS(477), + [anon_sym_DASH_GT] = ACTIONS(1062), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(479), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(481), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(483), + [anon_sym_static] = ACTIONS(485), + [anon_sym_union] = ACTIONS(481), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(487), + [anon_sym_move] = ACTIONS(489), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [222] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1848), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1722), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1419), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(222), [sym_block_comment] = STATE(222), - [aux_sym_tuple_expression_repeat1] = STATE(222), - [sym_identifier] = ACTIONS(1061), - [anon_sym_LPAREN] = ACTIONS(1064), - [anon_sym_RPAREN] = ACTIONS(1067), - [anon_sym_LBRACK] = ACTIONS(1069), - [anon_sym_LBRACE] = ACTIONS(1072), - [anon_sym_STAR] = ACTIONS(1075), - [anon_sym_u8] = ACTIONS(1078), - [anon_sym_i8] = ACTIONS(1078), - [anon_sym_u16] = ACTIONS(1078), - [anon_sym_i16] = ACTIONS(1078), - [anon_sym_u32] = ACTIONS(1078), - [anon_sym_i32] = ACTIONS(1078), - [anon_sym_u64] = ACTIONS(1078), - [anon_sym_i64] = ACTIONS(1078), - [anon_sym_u128] = ACTIONS(1078), - [anon_sym_i128] = ACTIONS(1078), - [anon_sym_isize] = ACTIONS(1078), - [anon_sym_usize] = ACTIONS(1078), - [anon_sym_f32] = ACTIONS(1078), - [anon_sym_f64] = ACTIONS(1078), - [anon_sym_bool] = ACTIONS(1078), - [anon_sym_str] = ACTIONS(1078), - [anon_sym_char] = ACTIONS(1078), - [anon_sym_DASH] = ACTIONS(1075), - [anon_sym_BANG] = ACTIONS(1075), - [anon_sym_AMP] = ACTIONS(1081), - [anon_sym_PIPE] = ACTIONS(1084), - [anon_sym_LT] = ACTIONS(1087), - [anon_sym_DOT_DOT] = ACTIONS(1090), - [anon_sym_COLON_COLON] = ACTIONS(1093), - [anon_sym_SQUOTE] = ACTIONS(1096), - [anon_sym_async] = ACTIONS(1099), - [anon_sym_break] = ACTIONS(1102), - [anon_sym_const] = ACTIONS(1105), - [anon_sym_continue] = ACTIONS(1108), - [anon_sym_default] = ACTIONS(1111), - [anon_sym_for] = ACTIONS(1114), - [anon_sym_if] = ACTIONS(1117), - [anon_sym_loop] = ACTIONS(1120), - [anon_sym_match] = ACTIONS(1123), - [anon_sym_return] = ACTIONS(1126), - [anon_sym_static] = ACTIONS(1129), - [anon_sym_union] = ACTIONS(1111), - [anon_sym_unsafe] = ACTIONS(1132), - [anon_sym_while] = ACTIONS(1135), - [anon_sym_yield] = ACTIONS(1138), - [anon_sym_move] = ACTIONS(1141), - [anon_sym_try] = ACTIONS(1144), - [sym_integer_literal] = ACTIONS(1147), - [aux_sym_string_literal_token1] = ACTIONS(1150), - [sym_char_literal] = ACTIONS(1147), - [anon_sym_true] = ACTIONS(1153), - [anon_sym_false] = ACTIONS(1153), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1156), - [sym_super] = ACTIONS(1159), - [sym_crate] = ACTIONS(1159), - [sym_metavariable] = ACTIONS(1162), - [sym__raw_string_literal_start] = ACTIONS(1165), - [sym_float_literal] = ACTIONS(1147), + [aux_sym_tuple_expression_repeat1] = STATE(246), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1064), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(365), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [223] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1807), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1527), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1419), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1388), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(223), [sym_block_comment] = STATE(223), - [aux_sym_tuple_expression_repeat1] = STATE(222), - [sym_identifier] = ACTIONS(334), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1168), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(349), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1058), + [anon_sym_DOT_DOT] = ACTIONS(1066), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(1062), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(365), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [224] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1585), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1214), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_else_clause] = STATE(281), [sym_line_comment] = STATE(224), [sym_block_comment] = STATE(224), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(492), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1045), - [anon_sym_DOT_DOT] = ACTIONS(1055), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_DASH_GT] = ACTIONS(1049), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [ts_builtin_sym_end] = ACTIONS(1068), + [sym_identifier] = ACTIONS(1070), + [anon_sym_SEMI] = ACTIONS(1068), + [anon_sym_macro_rules_BANG] = ACTIONS(1068), + [anon_sym_LPAREN] = ACTIONS(1068), + [anon_sym_LBRACK] = ACTIONS(1068), + [anon_sym_LBRACE] = ACTIONS(1068), + [anon_sym_RBRACE] = ACTIONS(1068), + [anon_sym_macro] = ACTIONS(1070), + [anon_sym_PLUS] = ACTIONS(1070), + [anon_sym_STAR] = ACTIONS(1070), + [anon_sym_QMARK] = ACTIONS(1068), + [anon_sym_u8] = ACTIONS(1070), + [anon_sym_i8] = ACTIONS(1070), + [anon_sym_u16] = ACTIONS(1070), + [anon_sym_i16] = ACTIONS(1070), + [anon_sym_u32] = ACTIONS(1070), + [anon_sym_i32] = ACTIONS(1070), + [anon_sym_u64] = ACTIONS(1070), + [anon_sym_i64] = ACTIONS(1070), + [anon_sym_u128] = ACTIONS(1070), + [anon_sym_i128] = ACTIONS(1070), + [anon_sym_isize] = ACTIONS(1070), + [anon_sym_usize] = ACTIONS(1070), + [anon_sym_f32] = ACTIONS(1070), + [anon_sym_f64] = ACTIONS(1070), + [anon_sym_bool] = ACTIONS(1070), + [anon_sym_str] = ACTIONS(1070), + [anon_sym_char] = ACTIONS(1070), + [anon_sym_DASH] = ACTIONS(1070), + [anon_sym_SLASH] = ACTIONS(1070), + [anon_sym_PERCENT] = ACTIONS(1070), + [anon_sym_CARET] = ACTIONS(1070), + [anon_sym_BANG] = ACTIONS(1070), + [anon_sym_AMP] = ACTIONS(1070), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_AMP_AMP] = ACTIONS(1068), + [anon_sym_PIPE_PIPE] = ACTIONS(1068), + [anon_sym_LT_LT] = ACTIONS(1070), + [anon_sym_GT_GT] = ACTIONS(1070), + [anon_sym_PLUS_EQ] = ACTIONS(1068), + [anon_sym_DASH_EQ] = ACTIONS(1068), + [anon_sym_STAR_EQ] = ACTIONS(1068), + [anon_sym_SLASH_EQ] = ACTIONS(1068), + [anon_sym_PERCENT_EQ] = ACTIONS(1068), + [anon_sym_CARET_EQ] = ACTIONS(1068), + [anon_sym_AMP_EQ] = ACTIONS(1068), + [anon_sym_PIPE_EQ] = ACTIONS(1068), + [anon_sym_LT_LT_EQ] = ACTIONS(1068), + [anon_sym_GT_GT_EQ] = ACTIONS(1068), + [anon_sym_EQ] = ACTIONS(1070), + [anon_sym_EQ_EQ] = ACTIONS(1068), + [anon_sym_BANG_EQ] = ACTIONS(1068), + [anon_sym_GT] = ACTIONS(1070), + [anon_sym_LT] = ACTIONS(1070), + [anon_sym_GT_EQ] = ACTIONS(1068), + [anon_sym_LT_EQ] = ACTIONS(1068), + [anon_sym_DOT] = ACTIONS(1070), + [anon_sym_DOT_DOT] = ACTIONS(1070), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1068), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1068), + [anon_sym_COLON_COLON] = ACTIONS(1068), + [anon_sym_POUND] = ACTIONS(1068), + [anon_sym_SQUOTE] = ACTIONS(1070), + [anon_sym_as] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(1070), + [anon_sym_break] = ACTIONS(1070), + [anon_sym_const] = ACTIONS(1070), + [anon_sym_continue] = ACTIONS(1070), + [anon_sym_default] = ACTIONS(1070), + [anon_sym_enum] = ACTIONS(1070), + [anon_sym_fn] = ACTIONS(1070), + [anon_sym_for] = ACTIONS(1070), + [anon_sym_if] = ACTIONS(1070), + [anon_sym_impl] = ACTIONS(1070), + [anon_sym_let] = ACTIONS(1070), + [anon_sym_loop] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_mod] = ACTIONS(1070), + [anon_sym_pub] = ACTIONS(1070), + [anon_sym_return] = ACTIONS(1070), + [anon_sym_static] = ACTIONS(1070), + [anon_sym_struct] = ACTIONS(1070), + [anon_sym_trait] = ACTIONS(1070), + [anon_sym_type] = ACTIONS(1070), + [anon_sym_union] = ACTIONS(1070), + [anon_sym_unsafe] = ACTIONS(1070), + [anon_sym_use] = ACTIONS(1070), + [anon_sym_while] = ACTIONS(1070), + [anon_sym_extern] = ACTIONS(1070), + [anon_sym_else] = ACTIONS(1072), + [anon_sym_yield] = ACTIONS(1070), + [anon_sym_move] = ACTIONS(1070), + [anon_sym_try] = ACTIONS(1070), + [sym_integer_literal] = ACTIONS(1068), + [aux_sym_string_literal_token1] = ACTIONS(1068), + [sym_char_literal] = ACTIONS(1068), + [anon_sym_true] = ACTIONS(1070), + [anon_sym_false] = ACTIONS(1070), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1070), + [sym_super] = ACTIONS(1070), + [sym_crate] = ACTIONS(1070), + [sym_metavariable] = ACTIONS(1068), + [sym__raw_string_literal_start] = ACTIONS(1068), + [sym_float_literal] = ACTIONS(1068), }, [225] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1727), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1250), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2791), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1782), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1574), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_let_condition] = STATE(2560), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(249), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(225), [sym_block_comment] = STATE(225), - [sym_identifier] = ACTIONS(456), + [sym_identifier] = ACTIONS(471), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(1041), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(460), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_AMP] = ACTIONS(1043), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1170), - [anon_sym_DOT_DOT] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_DASH_GT] = ACTIONS(1172), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(464), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(468), - [anon_sym_static] = ACTIONS(470), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(472), - [anon_sym_move] = ACTIONS(474), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_u8] = ACTIONS(473), + [anon_sym_i8] = ACTIONS(473), + [anon_sym_u16] = ACTIONS(473), + [anon_sym_i16] = ACTIONS(473), + [anon_sym_u32] = ACTIONS(473), + [anon_sym_i32] = ACTIONS(473), + [anon_sym_u64] = ACTIONS(473), + [anon_sym_i64] = ACTIONS(473), + [anon_sym_u128] = ACTIONS(473), + [anon_sym_i128] = ACTIONS(473), + [anon_sym_isize] = ACTIONS(473), + [anon_sym_usize] = ACTIONS(473), + [anon_sym_f32] = ACTIONS(473), + [anon_sym_f64] = ACTIONS(473), + [anon_sym_bool] = ACTIONS(473), + [anon_sym_str] = ACTIONS(473), + [anon_sym_char] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(998), + [anon_sym_BANG] = ACTIONS(998), + [anon_sym_AMP] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_COLON_COLON] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(499), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_default] = ACTIONS(481), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_let] = ACTIONS(1004), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(503), + [anon_sym_static] = ACTIONS(505), + [anon_sym_union] = ACTIONS(481), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(507), + [anon_sym_move] = ACTIONS(509), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [226] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1704), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2791), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1636), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1574), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_let_condition] = STATE(2560), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(249), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(226), [sym_block_comment] = STATE(226), - [aux_sym_tuple_expression_repeat1] = STATE(222), - [sym_identifier] = ACTIONS(334), + [sym_identifier] = ACTIONS(471), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1174), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_u8] = ACTIONS(473), + [anon_sym_i8] = ACTIONS(473), + [anon_sym_u16] = ACTIONS(473), + [anon_sym_i16] = ACTIONS(473), + [anon_sym_u32] = ACTIONS(473), + [anon_sym_i32] = ACTIONS(473), + [anon_sym_u64] = ACTIONS(473), + [anon_sym_i64] = ACTIONS(473), + [anon_sym_u128] = ACTIONS(473), + [anon_sym_i128] = ACTIONS(473), + [anon_sym_isize] = ACTIONS(473), + [anon_sym_usize] = ACTIONS(473), + [anon_sym_f32] = ACTIONS(473), + [anon_sym_f64] = ACTIONS(473), + [anon_sym_bool] = ACTIONS(473), + [anon_sym_str] = ACTIONS(473), + [anon_sym_char] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(998), + [anon_sym_BANG] = ACTIONS(998), + [anon_sym_AMP] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1074), + [anon_sym_COLON_COLON] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(499), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_default] = ACTIONS(481), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_let] = ACTIONS(1004), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(503), + [anon_sym_static] = ACTIONS(505), + [anon_sym_union] = ACTIONS(481), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(507), + [anon_sym_move] = ACTIONS(509), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [227] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1682), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2791), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1823), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1574), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(241), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1480), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(227), [sym_block_comment] = STATE(227), - [aux_sym_tuple_expression_repeat1] = STATE(226), - [sym_identifier] = ACTIONS(334), + [sym_identifier] = ACTIONS(471), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1059), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1054), + [anon_sym_u8] = ACTIONS(473), + [anon_sym_i8] = ACTIONS(473), + [anon_sym_u16] = ACTIONS(473), + [anon_sym_i16] = ACTIONS(473), + [anon_sym_u32] = ACTIONS(473), + [anon_sym_i32] = ACTIONS(473), + [anon_sym_u64] = ACTIONS(473), + [anon_sym_i64] = ACTIONS(473), + [anon_sym_u128] = ACTIONS(473), + [anon_sym_i128] = ACTIONS(473), + [anon_sym_isize] = ACTIONS(473), + [anon_sym_usize] = ACTIONS(473), + [anon_sym_f32] = ACTIONS(473), + [anon_sym_f64] = ACTIONS(473), + [anon_sym_bool] = ACTIONS(473), + [anon_sym_str] = ACTIONS(473), + [anon_sym_char] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_BANG] = ACTIONS(1054), + [anon_sym_AMP] = ACTIONS(1056), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1076), + [anon_sym_DOT_DOT] = ACTIONS(1060), + [anon_sym_COLON_COLON] = ACTIONS(477), + [anon_sym_DASH_GT] = ACTIONS(1078), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(479), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(481), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(483), + [anon_sym_static] = ACTIONS(485), + [anon_sym_union] = ACTIONS(481), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(487), + [anon_sym_move] = ACTIONS(489), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [228] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1505), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), + [sym_bracketed_type] = STATE(3593), + [sym_generic_function] = STATE(1742), + [sym_generic_type_with_turbofish] = STATE(2901), + [sym__expression_except_range] = STATE(1655), + [sym__expression] = STATE(1761), + [sym_macro_invocation] = STATE(1752), + [sym_scoped_identifier] = STATE(1584), [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1214), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_range_expression] = STATE(1746), + [sym_unary_expression] = STATE(1742), + [sym_try_expression] = STATE(1742), + [sym_reference_expression] = STATE(1742), + [sym_binary_expression] = STATE(1742), + [sym_assignment_expression] = STATE(1742), + [sym_compound_assignment_expr] = STATE(1742), + [sym_type_cast_expression] = STATE(1742), + [sym_return_expression] = STATE(1742), + [sym_yield_expression] = STATE(1742), + [sym_call_expression] = STATE(1742), + [sym_array_expression] = STATE(1742), + [sym_parenthesized_expression] = STATE(1742), + [sym_tuple_expression] = STATE(1742), + [sym_unit_expression] = STATE(1742), + [sym_struct_expression] = STATE(1742), + [sym_if_expression] = STATE(1742), + [sym_match_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_loop_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_const_block] = STATE(1742), + [sym_closure_expression] = STATE(1742), + [sym_closure_parameters] = STATE(244), + [sym_label] = STATE(3682), + [sym_break_expression] = STATE(1742), + [sym_continue_expression] = STATE(1742), + [sym_index_expression] = STATE(1742), + [sym_await_expression] = STATE(1742), + [sym_field_expression] = STATE(1652), + [sym_unsafe_block] = STATE(1742), + [sym_async_block] = STATE(1742), + [sym_try_block] = STATE(1742), + [sym_block] = STATE(1857), + [sym__literal] = STATE(1742), + [sym_string_literal] = STATE(1723), + [sym_raw_string_literal] = STATE(1723), + [sym_boolean_literal] = STATE(1723), [sym_line_comment] = STATE(228), [sym_block_comment] = STATE(228), - [sym_identifier] = ACTIONS(334), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(344), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1045), - [anon_sym_DOT_DOT] = ACTIONS(1176), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_DASH_GT] = ACTIONS(1049), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [sym_identifier] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(461), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LBRACE] = ACTIONS(405), + [anon_sym_STAR] = ACTIONS(1020), + [anon_sym_u8] = ACTIONS(409), + [anon_sym_i8] = ACTIONS(409), + [anon_sym_u16] = ACTIONS(409), + [anon_sym_i16] = ACTIONS(409), + [anon_sym_u32] = ACTIONS(409), + [anon_sym_i32] = ACTIONS(409), + [anon_sym_u64] = ACTIONS(409), + [anon_sym_i64] = ACTIONS(409), + [anon_sym_u128] = ACTIONS(409), + [anon_sym_i128] = ACTIONS(409), + [anon_sym_isize] = ACTIONS(409), + [anon_sym_usize] = ACTIONS(409), + [anon_sym_f32] = ACTIONS(409), + [anon_sym_f64] = ACTIONS(409), + [anon_sym_bool] = ACTIONS(409), + [anon_sym_str] = ACTIONS(409), + [anon_sym_char] = ACTIONS(409), + [anon_sym_DASH] = ACTIONS(411), + [anon_sym_BANG] = ACTIONS(1020), + [anon_sym_AMP] = ACTIONS(1022), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1080), + [anon_sym_DOT_DOT] = ACTIONS(1082), + [anon_sym_COLON_COLON] = ACTIONS(413), + [anon_sym_DASH_GT] = ACTIONS(1084), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(415), + [anon_sym_break] = ACTIONS(417), + [anon_sym_const] = ACTIONS(419), + [anon_sym_continue] = ACTIONS(421), + [anon_sym_default] = ACTIONS(423), + [anon_sym_for] = ACTIONS(425), + [anon_sym_if] = ACTIONS(427), + [anon_sym_loop] = ACTIONS(429), + [anon_sym_match] = ACTIONS(431), + [anon_sym_return] = ACTIONS(433), + [anon_sym_static] = ACTIONS(435), + [anon_sym_union] = ACTIONS(423), + [anon_sym_unsafe] = ACTIONS(437), + [anon_sym_while] = ACTIONS(439), + [anon_sym_yield] = ACTIONS(441), + [anon_sym_move] = ACTIONS(443), + [anon_sym_try] = ACTIONS(445), + [sym_integer_literal] = ACTIONS(447), + [aux_sym_string_literal_token1] = ACTIONS(449), + [sym_char_literal] = ACTIONS(447), + [anon_sym_true] = ACTIONS(451), + [anon_sym_false] = ACTIONS(451), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(453), + [sym_super] = ACTIONS(455), + [sym_crate] = ACTIONS(455), + [sym_metavariable] = ACTIONS(457), + [sym__raw_string_literal_start] = ACTIONS(459), + [sym_float_literal] = ACTIONS(447), }, [229] = { - [sym_bracketed_type] = STATE(3498), - [sym_generic_function] = STATE(1637), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1604), - [sym__expression] = STATE(1847), - [sym_macro_invocation] = STATE(1641), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3100), - [sym_range_expression] = STATE(1639), - [sym_unary_expression] = STATE(1637), - [sym_try_expression] = STATE(1637), - [sym_reference_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_assignment_expression] = STATE(1637), - [sym_compound_assignment_expr] = STATE(1637), - [sym_type_cast_expression] = STATE(1637), - [sym_return_expression] = STATE(1637), - [sym_yield_expression] = STATE(1637), - [sym_call_expression] = STATE(1637), - [sym_array_expression] = STATE(1637), - [sym_parenthesized_expression] = STATE(1637), - [sym_tuple_expression] = STATE(1637), - [sym_unit_expression] = STATE(1637), - [sym_struct_expression] = STATE(1637), - [sym_if_expression] = STATE(1637), - [sym_let_condition] = STATE(2662), - [sym_match_expression] = STATE(1637), - [sym_while_expression] = STATE(1637), - [sym_loop_expression] = STATE(1637), - [sym_for_expression] = STATE(1637), - [sym_const_block] = STATE(1637), - [sym_closure_expression] = STATE(1637), - [sym_closure_parameters] = STATE(237), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1637), - [sym_continue_expression] = STATE(1637), - [sym_index_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_field_expression] = STATE(1620), - [sym_unsafe_block] = STATE(1637), - [sym_async_block] = STATE(1637), - [sym_try_block] = STATE(1637), - [sym_block] = STATE(1637), - [sym__literal] = STATE(1637), - [sym_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_boolean_literal] = STATE(1778), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1673), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1419), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(229), [sym_block_comment] = STATE(229), - [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_STAR] = ACTIONS(1021), - [anon_sym_u8] = ACTIONS(404), - [anon_sym_i8] = ACTIONS(404), - [anon_sym_u16] = ACTIONS(404), - [anon_sym_i16] = ACTIONS(404), - [anon_sym_u32] = ACTIONS(404), - [anon_sym_i32] = ACTIONS(404), - [anon_sym_u64] = ACTIONS(404), - [anon_sym_i64] = ACTIONS(404), - [anon_sym_u128] = ACTIONS(404), - [anon_sym_i128] = ACTIONS(404), - [anon_sym_isize] = ACTIONS(404), - [anon_sym_usize] = ACTIONS(404), - [anon_sym_f32] = ACTIONS(404), - [anon_sym_f64] = ACTIONS(404), - [anon_sym_bool] = ACTIONS(404), - [anon_sym_str] = ACTIONS(404), - [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_BANG] = ACTIONS(1021), - [anon_sym_AMP] = ACTIONS(1023), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(408), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_const] = ACTIONS(414), - [anon_sym_continue] = ACTIONS(416), - [anon_sym_default] = ACTIONS(418), - [anon_sym_for] = ACTIONS(420), - [anon_sym_if] = ACTIONS(422), - [anon_sym_let] = ACTIONS(1027), - [anon_sym_loop] = ACTIONS(424), - [anon_sym_match] = ACTIONS(426), - [anon_sym_return] = ACTIONS(428), - [anon_sym_static] = ACTIONS(430), - [anon_sym_union] = ACTIONS(418), - [anon_sym_unsafe] = ACTIONS(432), - [anon_sym_while] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_move] = ACTIONS(438), - [anon_sym_try] = ACTIONS(440), - [sym_integer_literal] = ACTIONS(442), - [aux_sym_string_literal_token1] = ACTIONS(444), - [sym_char_literal] = ACTIONS(442), - [anon_sym_true] = ACTIONS(446), - [anon_sym_false] = ACTIONS(446), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(448), - [sym_super] = ACTIONS(450), - [sym_crate] = ACTIONS(450), - [sym_metavariable] = ACTIONS(452), - [sym__raw_string_literal_start] = ACTIONS(454), - [sym_float_literal] = ACTIONS(442), + [aux_sym_tuple_expression_repeat1] = STATE(246), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1086), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(365), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [230] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1746), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1310), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1865), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1419), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1388), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(230), [sym_block_comment] = STATE(230), - [sym_identifier] = ACTIONS(334), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(344), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1053), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_DASH_GT] = ACTIONS(1057), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(349), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1058), + [anon_sym_DOT_DOT] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(1062), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(365), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [231] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1751), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1214), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1780), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1419), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(231), [sym_block_comment] = STATE(231), - [sym_identifier] = ACTIONS(334), + [aux_sym_tuple_expression_repeat1] = STATE(246), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1088), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(344), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1045), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_DASH_GT] = ACTIONS(1049), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(365), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [232] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1768), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1250), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1539), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1419), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(232), [sym_block_comment] = STATE(232), - [sym_identifier] = ACTIONS(334), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(344), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1170), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_DASH_GT] = ACTIONS(1172), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(349), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1090), + [anon_sym_DOT_DOT] = ACTIONS(1066), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(1092), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(365), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [233] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1496), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1310), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1722), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1419), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(233), [sym_block_comment] = STATE(233), - [sym_identifier] = ACTIONS(334), + [aux_sym_tuple_expression_repeat1] = STATE(234), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1064), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(344), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1053), - [anon_sym_DOT_DOT] = ACTIONS(1176), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_DASH_GT] = ACTIONS(1057), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(365), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [234] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1703), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1310), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1770), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1419), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(234), [sym_block_comment] = STATE(234), - [sym_identifier] = ACTIONS(456), + [aux_sym_tuple_expression_repeat1] = STATE(246), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1094), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(1041), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(460), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_AMP] = ACTIONS(1043), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1053), - [anon_sym_DOT_DOT] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_DASH_GT] = ACTIONS(1057), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(464), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(468), - [anon_sym_static] = ACTIONS(470), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(472), - [anon_sym_move] = ACTIONS(474), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(365), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [235] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1634), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1250), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1673), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1419), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(235), [sym_block_comment] = STATE(235), - [sym_identifier] = ACTIONS(456), + [aux_sym_tuple_expression_repeat1] = STATE(231), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1086), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(492), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1170), - [anon_sym_DOT_DOT] = ACTIONS(1055), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_DASH_GT] = ACTIONS(1172), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(365), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [236] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1487), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1250), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1686), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1419), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(236), [sym_block_comment] = STATE(236), - [sym_identifier] = ACTIONS(334), + [aux_sym_tuple_expression_repeat1] = STATE(229), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1096), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(344), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1170), - [anon_sym_DOT_DOT] = ACTIONS(1176), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_DASH_GT] = ACTIONS(1172), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(365), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [237] = { - [sym_bracketed_type] = STATE(3498), - [sym_generic_function] = STATE(1637), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1604), - [sym__expression] = STATE(1783), - [sym_macro_invocation] = STATE(1641), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3100), - [sym_range_expression] = STATE(1639), - [sym_unary_expression] = STATE(1637), - [sym_try_expression] = STATE(1637), - [sym_reference_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_assignment_expression] = STATE(1637), - [sym_compound_assignment_expr] = STATE(1637), - [sym_type_cast_expression] = STATE(1637), - [sym_return_expression] = STATE(1637), - [sym_yield_expression] = STATE(1637), - [sym_call_expression] = STATE(1637), - [sym_array_expression] = STATE(1637), - [sym_parenthesized_expression] = STATE(1637), - [sym_tuple_expression] = STATE(1637), - [sym_unit_expression] = STATE(1637), - [sym_struct_expression] = STATE(1637), - [sym_if_expression] = STATE(1637), - [sym_match_expression] = STATE(1637), - [sym_while_expression] = STATE(1637), - [sym_loop_expression] = STATE(1637), - [sym_for_expression] = STATE(1637), - [sym_const_block] = STATE(1637), - [sym_closure_expression] = STATE(1637), - [sym_closure_parameters] = STATE(237), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1637), - [sym_continue_expression] = STATE(1637), - [sym_index_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_field_expression] = STATE(1620), - [sym_unsafe_block] = STATE(1637), - [sym_async_block] = STATE(1637), - [sym_try_block] = STATE(1637), - [sym_block] = STATE(1656), - [sym__literal] = STATE(1637), - [sym_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_boolean_literal] = STATE(1778), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1864), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1419), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(237), [sym_block_comment] = STATE(237), - [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_STAR] = ACTIONS(1021), - [anon_sym_u8] = ACTIONS(404), - [anon_sym_i8] = ACTIONS(404), - [anon_sym_u16] = ACTIONS(404), - [anon_sym_i16] = ACTIONS(404), - [anon_sym_u32] = ACTIONS(404), - [anon_sym_i32] = ACTIONS(404), - [anon_sym_u64] = ACTIONS(404), - [anon_sym_i64] = ACTIONS(404), - [anon_sym_u128] = ACTIONS(404), - [anon_sym_i128] = ACTIONS(404), - [anon_sym_isize] = ACTIONS(404), - [anon_sym_usize] = ACTIONS(404), - [anon_sym_f32] = ACTIONS(404), - [anon_sym_f64] = ACTIONS(404), - [anon_sym_bool] = ACTIONS(404), - [anon_sym_str] = ACTIONS(404), - [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(406), - [anon_sym_BANG] = ACTIONS(1021), - [anon_sym_AMP] = ACTIONS(1023), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1178), - [anon_sym_DOT_DOT] = ACTIONS(1039), - [anon_sym_COLON_COLON] = ACTIONS(408), - [anon_sym_DASH_GT] = ACTIONS(1180), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_const] = ACTIONS(414), - [anon_sym_continue] = ACTIONS(416), - [anon_sym_default] = ACTIONS(418), - [anon_sym_for] = ACTIONS(420), - [anon_sym_if] = ACTIONS(422), - [anon_sym_loop] = ACTIONS(424), - [anon_sym_match] = ACTIONS(426), - [anon_sym_return] = ACTIONS(428), - [anon_sym_static] = ACTIONS(430), - [anon_sym_union] = ACTIONS(418), - [anon_sym_unsafe] = ACTIONS(432), - [anon_sym_while] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_move] = ACTIONS(438), - [anon_sym_try] = ACTIONS(440), - [sym_integer_literal] = ACTIONS(442), - [aux_sym_string_literal_token1] = ACTIONS(444), - [sym_char_literal] = ACTIONS(442), - [anon_sym_true] = ACTIONS(446), - [anon_sym_false] = ACTIONS(446), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(448), - [sym_super] = ACTIONS(450), - [sym_crate] = ACTIONS(450), - [sym_metavariable] = ACTIONS(452), - [sym__raw_string_literal_start] = ACTIONS(454), - [sym_float_literal] = ACTIONS(442), + [aux_sym_tuple_expression_repeat1] = STATE(222), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1098), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(365), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [238] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1800), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2791), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1654), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1574), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(249), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1480), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(238), [sym_block_comment] = STATE(238), - [aux_sym_tuple_expression_repeat1] = STATE(218), - [sym_identifier] = ACTIONS(334), + [sym_identifier] = ACTIONS(471), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1182), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_u8] = ACTIONS(473), + [anon_sym_i8] = ACTIONS(473), + [anon_sym_u16] = ACTIONS(473), + [anon_sym_i16] = ACTIONS(473), + [anon_sym_u32] = ACTIONS(473), + [anon_sym_i32] = ACTIONS(473), + [anon_sym_u64] = ACTIONS(473), + [anon_sym_i64] = ACTIONS(473), + [anon_sym_u128] = ACTIONS(473), + [anon_sym_i128] = ACTIONS(473), + [anon_sym_isize] = ACTIONS(473), + [anon_sym_usize] = ACTIONS(473), + [anon_sym_f32] = ACTIONS(473), + [anon_sym_f64] = ACTIONS(473), + [anon_sym_bool] = ACTIONS(473), + [anon_sym_str] = ACTIONS(473), + [anon_sym_char] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_BANG] = ACTIONS(998), + [anon_sym_AMP] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1076), + [anon_sym_DOT_DOT] = ACTIONS(1074), + [anon_sym_COLON_COLON] = ACTIONS(477), + [anon_sym_DASH_GT] = ACTIONS(1078), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(499), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_default] = ACTIONS(481), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(503), + [anon_sym_static] = ACTIONS(505), + [anon_sym_union] = ACTIONS(481), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(507), + [anon_sym_move] = ACTIONS(509), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [239] = { - [sym_bracketed_type] = STATE(3498), - [sym_generic_function] = STATE(1637), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1604), - [sym__expression] = STATE(1787), - [sym_macro_invocation] = STATE(1641), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3100), - [sym_range_expression] = STATE(1639), - [sym_unary_expression] = STATE(1637), - [sym_try_expression] = STATE(1637), - [sym_reference_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_assignment_expression] = STATE(1637), - [sym_compound_assignment_expr] = STATE(1637), - [sym_type_cast_expression] = STATE(1637), - [sym_return_expression] = STATE(1637), - [sym_yield_expression] = STATE(1637), - [sym_call_expression] = STATE(1637), - [sym_array_expression] = STATE(1637), - [sym_parenthesized_expression] = STATE(1637), - [sym_tuple_expression] = STATE(1637), - [sym_unit_expression] = STATE(1637), - [sym_struct_expression] = STATE(1637), - [sym_if_expression] = STATE(1637), - [sym_match_expression] = STATE(1637), - [sym_while_expression] = STATE(1637), - [sym_loop_expression] = STATE(1637), - [sym_for_expression] = STATE(1637), - [sym_const_block] = STATE(1637), - [sym_closure_expression] = STATE(1637), - [sym_closure_parameters] = STATE(237), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1637), - [sym_continue_expression] = STATE(1637), - [sym_index_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_field_expression] = STATE(1620), - [sym_unsafe_block] = STATE(1637), - [sym_async_block] = STATE(1637), - [sym_try_block] = STATE(1637), - [sym_block] = STATE(1662), - [sym__literal] = STATE(1637), - [sym_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_boolean_literal] = STATE(1778), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1528), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1419), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1480), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(239), [sym_block_comment] = STATE(239), - [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_STAR] = ACTIONS(1021), - [anon_sym_u8] = ACTIONS(404), - [anon_sym_i8] = ACTIONS(404), - [anon_sym_u16] = ACTIONS(404), - [anon_sym_i16] = ACTIONS(404), - [anon_sym_u32] = ACTIONS(404), - [anon_sym_i32] = ACTIONS(404), - [anon_sym_u64] = ACTIONS(404), - [anon_sym_i64] = ACTIONS(404), - [anon_sym_u128] = ACTIONS(404), - [anon_sym_i128] = ACTIONS(404), - [anon_sym_isize] = ACTIONS(404), - [anon_sym_usize] = ACTIONS(404), - [anon_sym_f32] = ACTIONS(404), - [anon_sym_f64] = ACTIONS(404), - [anon_sym_bool] = ACTIONS(404), - [anon_sym_str] = ACTIONS(404), - [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(406), - [anon_sym_BANG] = ACTIONS(1021), - [anon_sym_AMP] = ACTIONS(1023), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1184), - [anon_sym_DOT_DOT] = ACTIONS(1039), - [anon_sym_COLON_COLON] = ACTIONS(408), - [anon_sym_DASH_GT] = ACTIONS(1186), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_const] = ACTIONS(414), - [anon_sym_continue] = ACTIONS(416), - [anon_sym_default] = ACTIONS(418), - [anon_sym_for] = ACTIONS(420), - [anon_sym_if] = ACTIONS(422), - [anon_sym_loop] = ACTIONS(424), - [anon_sym_match] = ACTIONS(426), - [anon_sym_return] = ACTIONS(428), - [anon_sym_static] = ACTIONS(430), - [anon_sym_union] = ACTIONS(418), - [anon_sym_unsafe] = ACTIONS(432), - [anon_sym_while] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_move] = ACTIONS(438), - [anon_sym_try] = ACTIONS(440), - [sym_integer_literal] = ACTIONS(442), - [aux_sym_string_literal_token1] = ACTIONS(444), - [sym_char_literal] = ACTIONS(442), - [anon_sym_true] = ACTIONS(446), - [anon_sym_false] = ACTIONS(446), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(448), - [sym_super] = ACTIONS(450), - [sym_crate] = ACTIONS(450), - [sym_metavariable] = ACTIONS(452), - [sym__raw_string_literal_start] = ACTIONS(454), - [sym_float_literal] = ACTIONS(442), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(349), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1076), + [anon_sym_DOT_DOT] = ACTIONS(1066), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(1078), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(365), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [240] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1590), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_let_condition] = STATE(2662), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1692), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1419), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1480), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(240), [sym_block_comment] = STATE(240), - [sym_identifier] = ACTIONS(456), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1055), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_let] = ACTIONS(979), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(349), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1076), + [anon_sym_DOT_DOT] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(1078), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(365), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [241] = { - [sym_bracketed_type] = STATE(3498), - [sym_generic_function] = STATE(1637), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1604), - [sym__expression] = STATE(1790), - [sym_macro_invocation] = STATE(1641), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3100), - [sym_range_expression] = STATE(1639), - [sym_unary_expression] = STATE(1637), - [sym_try_expression] = STATE(1637), - [sym_reference_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_assignment_expression] = STATE(1637), - [sym_compound_assignment_expr] = STATE(1637), - [sym_type_cast_expression] = STATE(1637), - [sym_return_expression] = STATE(1637), - [sym_yield_expression] = STATE(1637), - [sym_call_expression] = STATE(1637), - [sym_array_expression] = STATE(1637), - [sym_parenthesized_expression] = STATE(1637), - [sym_tuple_expression] = STATE(1637), - [sym_unit_expression] = STATE(1637), - [sym_struct_expression] = STATE(1637), - [sym_if_expression] = STATE(1637), - [sym_match_expression] = STATE(1637), - [sym_while_expression] = STATE(1637), - [sym_loop_expression] = STATE(1637), - [sym_for_expression] = STATE(1637), - [sym_const_block] = STATE(1637), - [sym_closure_expression] = STATE(1637), - [sym_closure_parameters] = STATE(237), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1637), - [sym_continue_expression] = STATE(1637), - [sym_index_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_field_expression] = STATE(1620), - [sym_unsafe_block] = STATE(1637), - [sym_async_block] = STATE(1637), - [sym_try_block] = STATE(1637), - [sym_block] = STATE(1673), - [sym__literal] = STATE(1637), - [sym_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_boolean_literal] = STATE(1778), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2791), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1771), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1574), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(241), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(241), [sym_block_comment] = STATE(241), - [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_STAR] = ACTIONS(1021), - [anon_sym_u8] = ACTIONS(404), - [anon_sym_i8] = ACTIONS(404), - [anon_sym_u16] = ACTIONS(404), - [anon_sym_i16] = ACTIONS(404), - [anon_sym_u32] = ACTIONS(404), - [anon_sym_i32] = ACTIONS(404), - [anon_sym_u64] = ACTIONS(404), - [anon_sym_i64] = ACTIONS(404), - [anon_sym_u128] = ACTIONS(404), - [anon_sym_i128] = ACTIONS(404), - [anon_sym_isize] = ACTIONS(404), - [anon_sym_usize] = ACTIONS(404), - [anon_sym_f32] = ACTIONS(404), - [anon_sym_f64] = ACTIONS(404), - [anon_sym_bool] = ACTIONS(404), - [anon_sym_str] = ACTIONS(404), - [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(406), - [anon_sym_BANG] = ACTIONS(1021), - [anon_sym_AMP] = ACTIONS(1023), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1188), - [anon_sym_DOT_DOT] = ACTIONS(1039), - [anon_sym_COLON_COLON] = ACTIONS(408), - [anon_sym_DASH_GT] = ACTIONS(1190), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_const] = ACTIONS(414), - [anon_sym_continue] = ACTIONS(416), - [anon_sym_default] = ACTIONS(418), - [anon_sym_for] = ACTIONS(420), - [anon_sym_if] = ACTIONS(422), - [anon_sym_loop] = ACTIONS(424), - [anon_sym_match] = ACTIONS(426), - [anon_sym_return] = ACTIONS(428), - [anon_sym_static] = ACTIONS(430), - [anon_sym_union] = ACTIONS(418), - [anon_sym_unsafe] = ACTIONS(432), - [anon_sym_while] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_move] = ACTIONS(438), - [anon_sym_try] = ACTIONS(440), - [sym_integer_literal] = ACTIONS(442), - [aux_sym_string_literal_token1] = ACTIONS(444), - [sym_char_literal] = ACTIONS(442), - [anon_sym_true] = ACTIONS(446), - [anon_sym_false] = ACTIONS(446), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(448), - [sym_super] = ACTIONS(450), - [sym_crate] = ACTIONS(450), - [sym_metavariable] = ACTIONS(452), - [sym__raw_string_literal_start] = ACTIONS(454), - [sym_float_literal] = ACTIONS(442), + [sym_identifier] = ACTIONS(471), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1054), + [anon_sym_u8] = ACTIONS(473), + [anon_sym_i8] = ACTIONS(473), + [anon_sym_u16] = ACTIONS(473), + [anon_sym_i16] = ACTIONS(473), + [anon_sym_u32] = ACTIONS(473), + [anon_sym_i32] = ACTIONS(473), + [anon_sym_u64] = ACTIONS(473), + [anon_sym_i64] = ACTIONS(473), + [anon_sym_u128] = ACTIONS(473), + [anon_sym_i128] = ACTIONS(473), + [anon_sym_isize] = ACTIONS(473), + [anon_sym_usize] = ACTIONS(473), + [anon_sym_f32] = ACTIONS(473), + [anon_sym_f64] = ACTIONS(473), + [anon_sym_bool] = ACTIONS(473), + [anon_sym_str] = ACTIONS(473), + [anon_sym_char] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_BANG] = ACTIONS(1054), + [anon_sym_AMP] = ACTIONS(1056), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1090), + [anon_sym_DOT_DOT] = ACTIONS(1060), + [anon_sym_COLON_COLON] = ACTIONS(477), + [anon_sym_DASH_GT] = ACTIONS(1092), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(479), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(481), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(483), + [anon_sym_static] = ACTIONS(485), + [anon_sym_union] = ACTIONS(481), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(487), + [anon_sym_move] = ACTIONS(489), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [242] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1638), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), + [sym_bracketed_type] = STATE(3593), + [sym_generic_function] = STATE(1742), + [sym_generic_type_with_turbofish] = STATE(2901), + [sym__expression_except_range] = STATE(1655), + [sym__expression] = STATE(1907), + [sym_macro_invocation] = STATE(1752), + [sym_scoped_identifier] = STATE(1584), [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_let_condition] = STATE(2662), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_range_expression] = STATE(1746), + [sym_unary_expression] = STATE(1742), + [sym_try_expression] = STATE(1742), + [sym_reference_expression] = STATE(1742), + [sym_binary_expression] = STATE(1742), + [sym_assignment_expression] = STATE(1742), + [sym_compound_assignment_expr] = STATE(1742), + [sym_type_cast_expression] = STATE(1742), + [sym_return_expression] = STATE(1742), + [sym_yield_expression] = STATE(1742), + [sym_call_expression] = STATE(1742), + [sym_array_expression] = STATE(1742), + [sym_parenthesized_expression] = STATE(1742), + [sym_tuple_expression] = STATE(1742), + [sym_unit_expression] = STATE(1742), + [sym_struct_expression] = STATE(1742), + [sym_if_expression] = STATE(1742), + [sym_let_condition] = STATE(2560), + [sym_match_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_loop_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_const_block] = STATE(1742), + [sym_closure_expression] = STATE(1742), + [sym_closure_parameters] = STATE(244), + [sym_label] = STATE(3682), + [sym_break_expression] = STATE(1742), + [sym_continue_expression] = STATE(1742), + [sym_index_expression] = STATE(1742), + [sym_await_expression] = STATE(1742), + [sym_field_expression] = STATE(1652), + [sym_unsafe_block] = STATE(1742), + [sym_async_block] = STATE(1742), + [sym_try_block] = STATE(1742), + [sym_block] = STATE(1742), + [sym__literal] = STATE(1742), + [sym_string_literal] = STATE(1723), + [sym_raw_string_literal] = STATE(1723), + [sym_boolean_literal] = STATE(1723), [sym_line_comment] = STATE(242), [sym_block_comment] = STATE(242), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(977), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_let] = ACTIONS(979), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [sym_identifier] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(461), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LBRACE] = ACTIONS(405), + [anon_sym_STAR] = ACTIONS(1020), + [anon_sym_u8] = ACTIONS(409), + [anon_sym_i8] = ACTIONS(409), + [anon_sym_u16] = ACTIONS(409), + [anon_sym_i16] = ACTIONS(409), + [anon_sym_u32] = ACTIONS(409), + [anon_sym_i32] = ACTIONS(409), + [anon_sym_u64] = ACTIONS(409), + [anon_sym_i64] = ACTIONS(409), + [anon_sym_u128] = ACTIONS(409), + [anon_sym_i128] = ACTIONS(409), + [anon_sym_isize] = ACTIONS(409), + [anon_sym_usize] = ACTIONS(409), + [anon_sym_f32] = ACTIONS(409), + [anon_sym_f64] = ACTIONS(409), + [anon_sym_bool] = ACTIONS(409), + [anon_sym_str] = ACTIONS(409), + [anon_sym_char] = ACTIONS(409), + [anon_sym_DASH] = ACTIONS(1020), + [anon_sym_BANG] = ACTIONS(1020), + [anon_sym_AMP] = ACTIONS(1022), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1024), + [anon_sym_COLON_COLON] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(415), + [anon_sym_break] = ACTIONS(417), + [anon_sym_const] = ACTIONS(419), + [anon_sym_continue] = ACTIONS(421), + [anon_sym_default] = ACTIONS(423), + [anon_sym_for] = ACTIONS(425), + [anon_sym_if] = ACTIONS(427), + [anon_sym_let] = ACTIONS(1026), + [anon_sym_loop] = ACTIONS(429), + [anon_sym_match] = ACTIONS(431), + [anon_sym_return] = ACTIONS(433), + [anon_sym_static] = ACTIONS(435), + [anon_sym_union] = ACTIONS(423), + [anon_sym_unsafe] = ACTIONS(437), + [anon_sym_while] = ACTIONS(439), + [anon_sym_yield] = ACTIONS(441), + [anon_sym_move] = ACTIONS(443), + [anon_sym_try] = ACTIONS(445), + [sym_integer_literal] = ACTIONS(447), + [aux_sym_string_literal_token1] = ACTIONS(449), + [sym_char_literal] = ACTIONS(447), + [anon_sym_true] = ACTIONS(451), + [anon_sym_false] = ACTIONS(451), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(453), + [sym_super] = ACTIONS(455), + [sym_crate] = ACTIONS(455), + [sym_metavariable] = ACTIONS(457), + [sym__raw_string_literal_start] = ACTIONS(459), + [sym_float_literal] = ACTIONS(447), }, [243] = { - [sym_bracketed_type] = STATE(3498), - [sym_generic_function] = STATE(1637), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1604), - [sym__expression] = STATE(1644), - [sym_macro_invocation] = STATE(1641), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3100), - [sym_range_expression] = STATE(1639), - [sym_unary_expression] = STATE(1637), - [sym_try_expression] = STATE(1637), - [sym_reference_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_assignment_expression] = STATE(1637), - [sym_compound_assignment_expr] = STATE(1637), - [sym_type_cast_expression] = STATE(1637), - [sym_return_expression] = STATE(1637), - [sym_yield_expression] = STATE(1637), - [sym_call_expression] = STATE(1637), - [sym_array_expression] = STATE(1637), - [sym_parenthesized_expression] = STATE(1637), - [sym_tuple_expression] = STATE(1637), - [sym_unit_expression] = STATE(1637), - [sym_struct_expression] = STATE(1637), - [sym_if_expression] = STATE(1637), - [sym_match_expression] = STATE(1637), - [sym_while_expression] = STATE(1637), - [sym_loop_expression] = STATE(1637), - [sym_for_expression] = STATE(1637), - [sym_const_block] = STATE(1637), - [sym_closure_expression] = STATE(1637), - [sym_closure_parameters] = STATE(237), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1637), - [sym_continue_expression] = STATE(1637), - [sym_index_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_field_expression] = STATE(1620), - [sym_unsafe_block] = STATE(1637), - [sym_async_block] = STATE(1637), - [sym_try_block] = STATE(1637), - [sym_block] = STATE(1637), - [sym__literal] = STATE(1637), - [sym_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_boolean_literal] = STATE(1778), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2791), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1613), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1574), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(249), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1388), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(243), [sym_block_comment] = STATE(243), - [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_STAR] = ACTIONS(1021), - [anon_sym_u8] = ACTIONS(404), - [anon_sym_i8] = ACTIONS(404), - [anon_sym_u16] = ACTIONS(404), - [anon_sym_i16] = ACTIONS(404), - [anon_sym_u32] = ACTIONS(404), - [anon_sym_i32] = ACTIONS(404), - [anon_sym_u64] = ACTIONS(404), - [anon_sym_i64] = ACTIONS(404), - [anon_sym_u128] = ACTIONS(404), - [anon_sym_i128] = ACTIONS(404), - [anon_sym_isize] = ACTIONS(404), - [anon_sym_usize] = ACTIONS(404), - [anon_sym_f32] = ACTIONS(404), - [anon_sym_f64] = ACTIONS(404), - [anon_sym_bool] = ACTIONS(404), - [anon_sym_str] = ACTIONS(404), - [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_BANG] = ACTIONS(1021), - [anon_sym_AMP] = ACTIONS(1023), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1039), - [anon_sym_COLON_COLON] = ACTIONS(408), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_const] = ACTIONS(414), - [anon_sym_continue] = ACTIONS(416), - [anon_sym_default] = ACTIONS(418), - [anon_sym_for] = ACTIONS(420), - [anon_sym_if] = ACTIONS(422), - [anon_sym_loop] = ACTIONS(424), - [anon_sym_match] = ACTIONS(426), - [anon_sym_return] = ACTIONS(428), - [anon_sym_static] = ACTIONS(430), - [anon_sym_union] = ACTIONS(418), - [anon_sym_unsafe] = ACTIONS(432), - [anon_sym_while] = ACTIONS(434), - [sym_mutable_specifier] = ACTIONS(1192), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_move] = ACTIONS(438), - [anon_sym_try] = ACTIONS(440), - [sym_integer_literal] = ACTIONS(442), - [aux_sym_string_literal_token1] = ACTIONS(444), - [sym_char_literal] = ACTIONS(442), - [anon_sym_true] = ACTIONS(446), - [anon_sym_false] = ACTIONS(446), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(448), - [sym_super] = ACTIONS(450), - [sym_crate] = ACTIONS(450), - [sym_metavariable] = ACTIONS(452), - [sym__raw_string_literal_start] = ACTIONS(454), - [sym_float_literal] = ACTIONS(442), + [sym_identifier] = ACTIONS(471), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_u8] = ACTIONS(473), + [anon_sym_i8] = ACTIONS(473), + [anon_sym_u16] = ACTIONS(473), + [anon_sym_i16] = ACTIONS(473), + [anon_sym_u32] = ACTIONS(473), + [anon_sym_i32] = ACTIONS(473), + [anon_sym_u64] = ACTIONS(473), + [anon_sym_i64] = ACTIONS(473), + [anon_sym_u128] = ACTIONS(473), + [anon_sym_i128] = ACTIONS(473), + [anon_sym_isize] = ACTIONS(473), + [anon_sym_usize] = ACTIONS(473), + [anon_sym_f32] = ACTIONS(473), + [anon_sym_f64] = ACTIONS(473), + [anon_sym_bool] = ACTIONS(473), + [anon_sym_str] = ACTIONS(473), + [anon_sym_char] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_BANG] = ACTIONS(998), + [anon_sym_AMP] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1058), + [anon_sym_DOT_DOT] = ACTIONS(1074), + [anon_sym_COLON_COLON] = ACTIONS(477), + [anon_sym_DASH_GT] = ACTIONS(1062), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(499), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_default] = ACTIONS(481), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(503), + [anon_sym_static] = ACTIONS(505), + [anon_sym_union] = ACTIONS(481), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(507), + [anon_sym_move] = ACTIONS(509), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [244] = { - [sym_else_clause] = STATE(385), + [sym_bracketed_type] = STATE(3593), + [sym_generic_function] = STATE(1742), + [sym_generic_type_with_turbofish] = STATE(2901), + [sym__expression_except_range] = STATE(1655), + [sym__expression] = STATE(1833), + [sym_macro_invocation] = STATE(1752), + [sym_scoped_identifier] = STATE(1584), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1746), + [sym_unary_expression] = STATE(1742), + [sym_try_expression] = STATE(1742), + [sym_reference_expression] = STATE(1742), + [sym_binary_expression] = STATE(1742), + [sym_assignment_expression] = STATE(1742), + [sym_compound_assignment_expr] = STATE(1742), + [sym_type_cast_expression] = STATE(1742), + [sym_return_expression] = STATE(1742), + [sym_yield_expression] = STATE(1742), + [sym_call_expression] = STATE(1742), + [sym_array_expression] = STATE(1742), + [sym_parenthesized_expression] = STATE(1742), + [sym_tuple_expression] = STATE(1742), + [sym_unit_expression] = STATE(1742), + [sym_struct_expression] = STATE(1742), + [sym_if_expression] = STATE(1742), + [sym_match_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_loop_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_const_block] = STATE(1742), + [sym_closure_expression] = STATE(1742), + [sym_closure_parameters] = STATE(244), + [sym_label] = STATE(3682), + [sym_break_expression] = STATE(1742), + [sym_continue_expression] = STATE(1742), + [sym_index_expression] = STATE(1742), + [sym_await_expression] = STATE(1742), + [sym_field_expression] = STATE(1652), + [sym_unsafe_block] = STATE(1742), + [sym_async_block] = STATE(1742), + [sym_try_block] = STATE(1742), + [sym_block] = STATE(1816), + [sym__literal] = STATE(1742), + [sym_string_literal] = STATE(1723), + [sym_raw_string_literal] = STATE(1723), + [sym_boolean_literal] = STATE(1723), [sym_line_comment] = STATE(244), [sym_block_comment] = STATE(244), - [ts_builtin_sym_end] = ACTIONS(1194), - [sym_identifier] = ACTIONS(1196), - [anon_sym_SEMI] = ACTIONS(1194), - [anon_sym_macro_rules_BANG] = ACTIONS(1194), - [anon_sym_LPAREN] = ACTIONS(1194), - [anon_sym_LBRACK] = ACTIONS(1194), - [anon_sym_LBRACE] = ACTIONS(1194), - [anon_sym_RBRACE] = ACTIONS(1194), - [anon_sym_PLUS] = ACTIONS(1196), - [anon_sym_STAR] = ACTIONS(1196), - [anon_sym_QMARK] = ACTIONS(1194), - [anon_sym_u8] = ACTIONS(1196), - [anon_sym_i8] = ACTIONS(1196), - [anon_sym_u16] = ACTIONS(1196), - [anon_sym_i16] = ACTIONS(1196), - [anon_sym_u32] = ACTIONS(1196), - [anon_sym_i32] = ACTIONS(1196), - [anon_sym_u64] = ACTIONS(1196), - [anon_sym_i64] = ACTIONS(1196), - [anon_sym_u128] = ACTIONS(1196), - [anon_sym_i128] = ACTIONS(1196), - [anon_sym_isize] = ACTIONS(1196), - [anon_sym_usize] = ACTIONS(1196), - [anon_sym_f32] = ACTIONS(1196), - [anon_sym_f64] = ACTIONS(1196), - [anon_sym_bool] = ACTIONS(1196), - [anon_sym_str] = ACTIONS(1196), - [anon_sym_char] = ACTIONS(1196), - [anon_sym_DASH] = ACTIONS(1196), - [anon_sym_SLASH] = ACTIONS(1196), - [anon_sym_PERCENT] = ACTIONS(1196), - [anon_sym_CARET] = ACTIONS(1196), - [anon_sym_BANG] = ACTIONS(1196), - [anon_sym_AMP] = ACTIONS(1196), - [anon_sym_PIPE] = ACTIONS(1196), - [anon_sym_AMP_AMP] = ACTIONS(1194), - [anon_sym_PIPE_PIPE] = ACTIONS(1194), - [anon_sym_LT_LT] = ACTIONS(1196), - [anon_sym_GT_GT] = ACTIONS(1196), - [anon_sym_PLUS_EQ] = ACTIONS(1194), - [anon_sym_DASH_EQ] = ACTIONS(1194), - [anon_sym_STAR_EQ] = ACTIONS(1194), - [anon_sym_SLASH_EQ] = ACTIONS(1194), - [anon_sym_PERCENT_EQ] = ACTIONS(1194), - [anon_sym_CARET_EQ] = ACTIONS(1194), - [anon_sym_AMP_EQ] = ACTIONS(1194), - [anon_sym_PIPE_EQ] = ACTIONS(1194), - [anon_sym_LT_LT_EQ] = ACTIONS(1194), - [anon_sym_GT_GT_EQ] = ACTIONS(1194), - [anon_sym_EQ] = ACTIONS(1196), - [anon_sym_EQ_EQ] = ACTIONS(1194), - [anon_sym_BANG_EQ] = ACTIONS(1194), - [anon_sym_GT] = ACTIONS(1196), - [anon_sym_LT] = ACTIONS(1196), - [anon_sym_GT_EQ] = ACTIONS(1194), - [anon_sym_LT_EQ] = ACTIONS(1194), - [anon_sym_DOT] = ACTIONS(1196), - [anon_sym_DOT_DOT] = ACTIONS(1196), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1194), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1194), - [anon_sym_COLON_COLON] = ACTIONS(1194), - [anon_sym_POUND] = ACTIONS(1194), - [anon_sym_SQUOTE] = ACTIONS(1196), - [anon_sym_as] = ACTIONS(1196), - [anon_sym_async] = ACTIONS(1196), - [anon_sym_break] = ACTIONS(1196), - [anon_sym_const] = ACTIONS(1196), - [anon_sym_continue] = ACTIONS(1196), - [anon_sym_default] = ACTIONS(1196), - [anon_sym_enum] = ACTIONS(1196), - [anon_sym_fn] = ACTIONS(1196), - [anon_sym_for] = ACTIONS(1196), - [anon_sym_if] = ACTIONS(1196), - [anon_sym_impl] = ACTIONS(1196), - [anon_sym_let] = ACTIONS(1196), - [anon_sym_loop] = ACTIONS(1196), - [anon_sym_match] = ACTIONS(1196), - [anon_sym_mod] = ACTIONS(1196), - [anon_sym_pub] = ACTIONS(1196), - [anon_sym_return] = ACTIONS(1196), - [anon_sym_static] = ACTIONS(1196), - [anon_sym_struct] = ACTIONS(1196), - [anon_sym_trait] = ACTIONS(1196), - [anon_sym_type] = ACTIONS(1196), - [anon_sym_union] = ACTIONS(1196), - [anon_sym_unsafe] = ACTIONS(1196), - [anon_sym_use] = ACTIONS(1196), - [anon_sym_while] = ACTIONS(1196), - [anon_sym_extern] = ACTIONS(1196), - [anon_sym_else] = ACTIONS(1198), - [anon_sym_yield] = ACTIONS(1196), - [anon_sym_move] = ACTIONS(1196), - [anon_sym_try] = ACTIONS(1196), - [sym_integer_literal] = ACTIONS(1194), - [aux_sym_string_literal_token1] = ACTIONS(1194), - [sym_char_literal] = ACTIONS(1194), - [anon_sym_true] = ACTIONS(1196), - [anon_sym_false] = ACTIONS(1196), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1196), - [sym_super] = ACTIONS(1196), - [sym_crate] = ACTIONS(1196), - [sym_metavariable] = ACTIONS(1194), - [sym__raw_string_literal_start] = ACTIONS(1194), - [sym_float_literal] = ACTIONS(1194), + [sym_identifier] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(461), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LBRACE] = ACTIONS(405), + [anon_sym_STAR] = ACTIONS(1020), + [anon_sym_u8] = ACTIONS(409), + [anon_sym_i8] = ACTIONS(409), + [anon_sym_u16] = ACTIONS(409), + [anon_sym_i16] = ACTIONS(409), + [anon_sym_u32] = ACTIONS(409), + [anon_sym_i32] = ACTIONS(409), + [anon_sym_u64] = ACTIONS(409), + [anon_sym_i64] = ACTIONS(409), + [anon_sym_u128] = ACTIONS(409), + [anon_sym_i128] = ACTIONS(409), + [anon_sym_isize] = ACTIONS(409), + [anon_sym_usize] = ACTIONS(409), + [anon_sym_f32] = ACTIONS(409), + [anon_sym_f64] = ACTIONS(409), + [anon_sym_bool] = ACTIONS(409), + [anon_sym_str] = ACTIONS(409), + [anon_sym_char] = ACTIONS(409), + [anon_sym_DASH] = ACTIONS(411), + [anon_sym_BANG] = ACTIONS(1020), + [anon_sym_AMP] = ACTIONS(1022), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1100), + [anon_sym_DOT_DOT] = ACTIONS(1082), + [anon_sym_COLON_COLON] = ACTIONS(413), + [anon_sym_DASH_GT] = ACTIONS(1102), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(415), + [anon_sym_break] = ACTIONS(417), + [anon_sym_const] = ACTIONS(419), + [anon_sym_continue] = ACTIONS(421), + [anon_sym_default] = ACTIONS(423), + [anon_sym_for] = ACTIONS(425), + [anon_sym_if] = ACTIONS(427), + [anon_sym_loop] = ACTIONS(429), + [anon_sym_match] = ACTIONS(431), + [anon_sym_return] = ACTIONS(433), + [anon_sym_static] = ACTIONS(435), + [anon_sym_union] = ACTIONS(423), + [anon_sym_unsafe] = ACTIONS(437), + [anon_sym_while] = ACTIONS(439), + [anon_sym_yield] = ACTIONS(441), + [anon_sym_move] = ACTIONS(443), + [anon_sym_try] = ACTIONS(445), + [sym_integer_literal] = ACTIONS(447), + [aux_sym_string_literal_token1] = ACTIONS(449), + [sym_char_literal] = ACTIONS(447), + [anon_sym_true] = ACTIONS(451), + [anon_sym_false] = ACTIONS(451), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(453), + [sym_super] = ACTIONS(455), + [sym_crate] = ACTIONS(455), + [sym_metavariable] = ACTIONS(457), + [sym__raw_string_literal_start] = ACTIONS(459), + [sym_float_literal] = ACTIONS(447), }, [245] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1337), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), + [sym_bracketed_type] = STATE(3593), + [sym_generic_function] = STATE(1742), + [sym_generic_type_with_turbofish] = STATE(2901), + [sym__expression_except_range] = STATE(1655), + [sym__expression] = STATE(1783), + [sym_macro_invocation] = STATE(1752), + [sym_scoped_identifier] = STATE(1584), [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_range_expression] = STATE(1746), + [sym_unary_expression] = STATE(1742), + [sym_try_expression] = STATE(1742), + [sym_reference_expression] = STATE(1742), + [sym_binary_expression] = STATE(1742), + [sym_assignment_expression] = STATE(1742), + [sym_compound_assignment_expr] = STATE(1742), + [sym_type_cast_expression] = STATE(1742), + [sym_return_expression] = STATE(1742), + [sym_yield_expression] = STATE(1742), + [sym_call_expression] = STATE(1742), + [sym_array_expression] = STATE(1742), + [sym_parenthesized_expression] = STATE(1742), + [sym_tuple_expression] = STATE(1742), + [sym_unit_expression] = STATE(1742), + [sym_struct_expression] = STATE(1742), + [sym_if_expression] = STATE(1742), + [sym_match_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_loop_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_const_block] = STATE(1742), + [sym_closure_expression] = STATE(1742), + [sym_closure_parameters] = STATE(244), + [sym_label] = STATE(3682), + [sym_break_expression] = STATE(1742), + [sym_continue_expression] = STATE(1742), + [sym_index_expression] = STATE(1742), + [sym_await_expression] = STATE(1742), + [sym_field_expression] = STATE(1652), + [sym_unsafe_block] = STATE(1742), + [sym_async_block] = STATE(1742), + [sym_try_block] = STATE(1742), + [sym_block] = STATE(1756), + [sym__literal] = STATE(1742), + [sym_string_literal] = STATE(1723), + [sym_raw_string_literal] = STATE(1723), + [sym_boolean_literal] = STATE(1723), [sym_line_comment] = STATE(245), [sym_block_comment] = STATE(245), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(1041), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(1041), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_AMP] = ACTIONS(1043), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(464), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(468), - [anon_sym_static] = ACTIONS(470), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [sym_mutable_specifier] = ACTIONS(1200), - [anon_sym_yield] = ACTIONS(472), - [anon_sym_move] = ACTIONS(474), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [sym_identifier] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(461), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LBRACE] = ACTIONS(405), + [anon_sym_STAR] = ACTIONS(1020), + [anon_sym_u8] = ACTIONS(409), + [anon_sym_i8] = ACTIONS(409), + [anon_sym_u16] = ACTIONS(409), + [anon_sym_i16] = ACTIONS(409), + [anon_sym_u32] = ACTIONS(409), + [anon_sym_i32] = ACTIONS(409), + [anon_sym_u64] = ACTIONS(409), + [anon_sym_i64] = ACTIONS(409), + [anon_sym_u128] = ACTIONS(409), + [anon_sym_i128] = ACTIONS(409), + [anon_sym_isize] = ACTIONS(409), + [anon_sym_usize] = ACTIONS(409), + [anon_sym_f32] = ACTIONS(409), + [anon_sym_f64] = ACTIONS(409), + [anon_sym_bool] = ACTIONS(409), + [anon_sym_str] = ACTIONS(409), + [anon_sym_char] = ACTIONS(409), + [anon_sym_DASH] = ACTIONS(411), + [anon_sym_BANG] = ACTIONS(1020), + [anon_sym_AMP] = ACTIONS(1022), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1104), + [anon_sym_DOT_DOT] = ACTIONS(1082), + [anon_sym_COLON_COLON] = ACTIONS(413), + [anon_sym_DASH_GT] = ACTIONS(1106), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(415), + [anon_sym_break] = ACTIONS(417), + [anon_sym_const] = ACTIONS(419), + [anon_sym_continue] = ACTIONS(421), + [anon_sym_default] = ACTIONS(423), + [anon_sym_for] = ACTIONS(425), + [anon_sym_if] = ACTIONS(427), + [anon_sym_loop] = ACTIONS(429), + [anon_sym_match] = ACTIONS(431), + [anon_sym_return] = ACTIONS(433), + [anon_sym_static] = ACTIONS(435), + [anon_sym_union] = ACTIONS(423), + [anon_sym_unsafe] = ACTIONS(437), + [anon_sym_while] = ACTIONS(439), + [anon_sym_yield] = ACTIONS(441), + [anon_sym_move] = ACTIONS(443), + [anon_sym_try] = ACTIONS(445), + [sym_integer_literal] = ACTIONS(447), + [aux_sym_string_literal_token1] = ACTIONS(449), + [sym_char_literal] = ACTIONS(447), + [anon_sym_true] = ACTIONS(451), + [anon_sym_false] = ACTIONS(451), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(453), + [sym_super] = ACTIONS(455), + [sym_crate] = ACTIONS(455), + [sym_metavariable] = ACTIONS(457), + [sym__raw_string_literal_start] = ACTIONS(459), + [sym_float_literal] = ACTIONS(447), }, [246] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1337), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1903), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1419), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(246), [sym_block_comment] = STATE(246), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1055), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [sym_mutable_specifier] = ACTIONS(1202), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [aux_sym_tuple_expression_repeat1] = STATE(246), + [sym_identifier] = ACTIONS(1108), + [anon_sym_LPAREN] = ACTIONS(1111), + [anon_sym_RPAREN] = ACTIONS(1114), + [anon_sym_LBRACK] = ACTIONS(1116), + [anon_sym_LBRACE] = ACTIONS(1119), + [anon_sym_STAR] = ACTIONS(1122), + [anon_sym_u8] = ACTIONS(1125), + [anon_sym_i8] = ACTIONS(1125), + [anon_sym_u16] = ACTIONS(1125), + [anon_sym_i16] = ACTIONS(1125), + [anon_sym_u32] = ACTIONS(1125), + [anon_sym_i32] = ACTIONS(1125), + [anon_sym_u64] = ACTIONS(1125), + [anon_sym_i64] = ACTIONS(1125), + [anon_sym_u128] = ACTIONS(1125), + [anon_sym_i128] = ACTIONS(1125), + [anon_sym_isize] = ACTIONS(1125), + [anon_sym_usize] = ACTIONS(1125), + [anon_sym_f32] = ACTIONS(1125), + [anon_sym_f64] = ACTIONS(1125), + [anon_sym_bool] = ACTIONS(1125), + [anon_sym_str] = ACTIONS(1125), + [anon_sym_char] = ACTIONS(1125), + [anon_sym_DASH] = ACTIONS(1122), + [anon_sym_BANG] = ACTIONS(1122), + [anon_sym_AMP] = ACTIONS(1128), + [anon_sym_PIPE] = ACTIONS(1131), + [anon_sym_LT] = ACTIONS(1134), + [anon_sym_DOT_DOT] = ACTIONS(1137), + [anon_sym_COLON_COLON] = ACTIONS(1140), + [anon_sym_SQUOTE] = ACTIONS(1143), + [anon_sym_async] = ACTIONS(1146), + [anon_sym_break] = ACTIONS(1149), + [anon_sym_const] = ACTIONS(1152), + [anon_sym_continue] = ACTIONS(1155), + [anon_sym_default] = ACTIONS(1158), + [anon_sym_for] = ACTIONS(1161), + [anon_sym_if] = ACTIONS(1164), + [anon_sym_loop] = ACTIONS(1167), + [anon_sym_match] = ACTIONS(1170), + [anon_sym_return] = ACTIONS(1173), + [anon_sym_static] = ACTIONS(1176), + [anon_sym_union] = ACTIONS(1158), + [anon_sym_unsafe] = ACTIONS(1179), + [anon_sym_while] = ACTIONS(1182), + [anon_sym_yield] = ACTIONS(1185), + [anon_sym_move] = ACTIONS(1188), + [anon_sym_try] = ACTIONS(1191), + [sym_integer_literal] = ACTIONS(1194), + [aux_sym_string_literal_token1] = ACTIONS(1197), + [sym_char_literal] = ACTIONS(1194), + [anon_sym_true] = ACTIONS(1200), + [anon_sym_false] = ACTIONS(1200), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1203), + [sym_super] = ACTIONS(1206), + [sym_crate] = ACTIONS(1206), + [sym_metavariable] = ACTIONS(1209), + [sym__raw_string_literal_start] = ACTIONS(1212), + [sym_float_literal] = ACTIONS(1194), }, [247] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1337), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1800), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1419), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(247), [sym_block_comment] = STATE(247), - [sym_identifier] = ACTIONS(334), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1176), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [sym_mutable_specifier] = ACTIONS(1204), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(349), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1090), + [anon_sym_DOT_DOT] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(1092), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(365), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [248] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1654), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), + [sym_bracketed_type] = STATE(3593), + [sym_generic_function] = STATE(1742), + [sym_generic_type_with_turbofish] = STATE(2901), + [sym__expression_except_range] = STATE(1655), + [sym__expression] = STATE(1682), + [sym_macro_invocation] = STATE(1752), + [sym_scoped_identifier] = STATE(1584), [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_range_expression] = STATE(1746), + [sym_unary_expression] = STATE(1742), + [sym_try_expression] = STATE(1742), + [sym_reference_expression] = STATE(1742), + [sym_binary_expression] = STATE(1742), + [sym_assignment_expression] = STATE(1742), + [sym_compound_assignment_expr] = STATE(1742), + [sym_type_cast_expression] = STATE(1742), + [sym_return_expression] = STATE(1742), + [sym_yield_expression] = STATE(1742), + [sym_call_expression] = STATE(1742), + [sym_array_expression] = STATE(1742), + [sym_parenthesized_expression] = STATE(1742), + [sym_tuple_expression] = STATE(1742), + [sym_unit_expression] = STATE(1742), + [sym_struct_expression] = STATE(1742), + [sym_if_expression] = STATE(1742), + [sym_let_condition] = STATE(2560), + [sym_match_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_loop_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_const_block] = STATE(1742), + [sym_closure_expression] = STATE(1742), + [sym_closure_parameters] = STATE(244), + [sym_label] = STATE(3682), + [sym_break_expression] = STATE(1742), + [sym_continue_expression] = STATE(1742), + [sym_index_expression] = STATE(1742), + [sym_await_expression] = STATE(1742), + [sym_field_expression] = STATE(1652), + [sym_unsafe_block] = STATE(1742), + [sym_async_block] = STATE(1742), + [sym_try_block] = STATE(1742), + [sym_block] = STATE(1742), + [sym__literal] = STATE(1742), + [sym_string_literal] = STATE(1723), + [sym_raw_string_literal] = STATE(1723), + [sym_boolean_literal] = STATE(1723), [sym_line_comment] = STATE(248), [sym_block_comment] = STATE(248), - [sym_identifier] = ACTIONS(334), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [sym_identifier] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(461), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LBRACE] = ACTIONS(405), + [anon_sym_STAR] = ACTIONS(1020), + [anon_sym_u8] = ACTIONS(409), + [anon_sym_i8] = ACTIONS(409), + [anon_sym_u16] = ACTIONS(409), + [anon_sym_i16] = ACTIONS(409), + [anon_sym_u32] = ACTIONS(409), + [anon_sym_i32] = ACTIONS(409), + [anon_sym_u64] = ACTIONS(409), + [anon_sym_i64] = ACTIONS(409), + [anon_sym_u128] = ACTIONS(409), + [anon_sym_i128] = ACTIONS(409), + [anon_sym_isize] = ACTIONS(409), + [anon_sym_usize] = ACTIONS(409), + [anon_sym_f32] = ACTIONS(409), + [anon_sym_f64] = ACTIONS(409), + [anon_sym_bool] = ACTIONS(409), + [anon_sym_str] = ACTIONS(409), + [anon_sym_char] = ACTIONS(409), + [anon_sym_DASH] = ACTIONS(1020), + [anon_sym_BANG] = ACTIONS(1020), + [anon_sym_AMP] = ACTIONS(1022), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1082), + [anon_sym_COLON_COLON] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(415), + [anon_sym_break] = ACTIONS(417), + [anon_sym_const] = ACTIONS(419), + [anon_sym_continue] = ACTIONS(421), + [anon_sym_default] = ACTIONS(423), + [anon_sym_for] = ACTIONS(425), + [anon_sym_if] = ACTIONS(427), + [anon_sym_let] = ACTIONS(1026), + [anon_sym_loop] = ACTIONS(429), + [anon_sym_match] = ACTIONS(431), + [anon_sym_return] = ACTIONS(433), + [anon_sym_static] = ACTIONS(435), + [anon_sym_union] = ACTIONS(423), + [anon_sym_unsafe] = ACTIONS(437), + [anon_sym_while] = ACTIONS(439), + [anon_sym_yield] = ACTIONS(441), + [anon_sym_move] = ACTIONS(443), + [anon_sym_try] = ACTIONS(445), + [sym_integer_literal] = ACTIONS(447), + [aux_sym_string_literal_token1] = ACTIONS(449), + [sym_char_literal] = ACTIONS(447), + [anon_sym_true] = ACTIONS(451), + [anon_sym_false] = ACTIONS(451), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(453), + [sym_super] = ACTIONS(455), + [sym_crate] = ACTIONS(455), + [sym_metavariable] = ACTIONS(457), + [sym__raw_string_literal_start] = ACTIONS(459), + [sym_float_literal] = ACTIONS(447), }, [249] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1714), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2791), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1628), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1574), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(249), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(249), [sym_block_comment] = STATE(249), - [sym_identifier] = ACTIONS(456), + [sym_identifier] = ACTIONS(471), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(1041), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(1041), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_AMP] = ACTIONS(1043), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(464), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(468), - [anon_sym_static] = ACTIONS(470), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(472), - [anon_sym_move] = ACTIONS(474), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_u8] = ACTIONS(473), + [anon_sym_i8] = ACTIONS(473), + [anon_sym_u16] = ACTIONS(473), + [anon_sym_i16] = ACTIONS(473), + [anon_sym_u32] = ACTIONS(473), + [anon_sym_i32] = ACTIONS(473), + [anon_sym_u64] = ACTIONS(473), + [anon_sym_i64] = ACTIONS(473), + [anon_sym_u128] = ACTIONS(473), + [anon_sym_i128] = ACTIONS(473), + [anon_sym_isize] = ACTIONS(473), + [anon_sym_usize] = ACTIONS(473), + [anon_sym_f32] = ACTIONS(473), + [anon_sym_f64] = ACTIONS(473), + [anon_sym_bool] = ACTIONS(473), + [anon_sym_str] = ACTIONS(473), + [anon_sym_char] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_BANG] = ACTIONS(998), + [anon_sym_AMP] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1090), + [anon_sym_DOT_DOT] = ACTIONS(1074), + [anon_sym_COLON_COLON] = ACTIONS(477), + [anon_sym_DASH_GT] = ACTIONS(1092), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(499), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_default] = ACTIONS(481), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(503), + [anon_sym_static] = ACTIONS(505), + [anon_sym_union] = ACTIONS(481), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(507), + [anon_sym_move] = ACTIONS(509), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [250] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1715), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2791), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1456), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1574), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(249), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(250), [sym_block_comment] = STATE(250), - [sym_identifier] = ACTIONS(456), + [sym_identifier] = ACTIONS(471), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(1041), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(1041), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_AMP] = ACTIONS(1043), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(464), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(468), - [anon_sym_static] = ACTIONS(470), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(472), - [anon_sym_move] = ACTIONS(474), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_u8] = ACTIONS(473), + [anon_sym_i8] = ACTIONS(473), + [anon_sym_u16] = ACTIONS(473), + [anon_sym_i16] = ACTIONS(473), + [anon_sym_u32] = ACTIONS(473), + [anon_sym_i32] = ACTIONS(473), + [anon_sym_u64] = ACTIONS(473), + [anon_sym_i64] = ACTIONS(473), + [anon_sym_u128] = ACTIONS(473), + [anon_sym_i128] = ACTIONS(473), + [anon_sym_isize] = ACTIONS(473), + [anon_sym_usize] = ACTIONS(473), + [anon_sym_f32] = ACTIONS(473), + [anon_sym_f64] = ACTIONS(473), + [anon_sym_bool] = ACTIONS(473), + [anon_sym_str] = ACTIONS(473), + [anon_sym_char] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(998), + [anon_sym_BANG] = ACTIONS(998), + [anon_sym_AMP] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1074), + [anon_sym_COLON_COLON] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(499), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_default] = ACTIONS(481), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(503), + [anon_sym_static] = ACTIONS(505), + [anon_sym_union] = ACTIONS(481), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [sym_mutable_specifier] = ACTIONS(1215), + [anon_sym_yield] = ACTIONS(507), + [anon_sym_move] = ACTIONS(509), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [251] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1590), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2791), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1456), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1574), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(241), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(251), [sym_block_comment] = STATE(251), - [sym_identifier] = ACTIONS(456), + [sym_identifier] = ACTIONS(471), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1055), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1054), + [anon_sym_u8] = ACTIONS(473), + [anon_sym_i8] = ACTIONS(473), + [anon_sym_u16] = ACTIONS(473), + [anon_sym_i16] = ACTIONS(473), + [anon_sym_u32] = ACTIONS(473), + [anon_sym_i32] = ACTIONS(473), + [anon_sym_u64] = ACTIONS(473), + [anon_sym_i64] = ACTIONS(473), + [anon_sym_u128] = ACTIONS(473), + [anon_sym_i128] = ACTIONS(473), + [anon_sym_isize] = ACTIONS(473), + [anon_sym_usize] = ACTIONS(473), + [anon_sym_f32] = ACTIONS(473), + [anon_sym_f64] = ACTIONS(473), + [anon_sym_bool] = ACTIONS(473), + [anon_sym_str] = ACTIONS(473), + [anon_sym_char] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(1054), + [anon_sym_BANG] = ACTIONS(1054), + [anon_sym_AMP] = ACTIONS(1056), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1060), + [anon_sym_COLON_COLON] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(479), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(481), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(483), + [anon_sym_static] = ACTIONS(485), + [anon_sym_union] = ACTIONS(481), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [sym_mutable_specifier] = ACTIONS(1217), + [anon_sym_yield] = ACTIONS(487), + [anon_sym_move] = ACTIONS(489), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [252] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1717), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(252), [sym_block_comment] = STATE(252), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(1041), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(1041), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_AMP] = ACTIONS(1043), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(464), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(468), - [anon_sym_static] = ACTIONS(470), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(472), - [anon_sym_move] = ACTIONS(474), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [ts_builtin_sym_end] = ACTIONS(1219), + [sym_identifier] = ACTIONS(1221), + [anon_sym_SEMI] = ACTIONS(1219), + [anon_sym_macro_rules_BANG] = ACTIONS(1219), + [anon_sym_LPAREN] = ACTIONS(1219), + [anon_sym_LBRACK] = ACTIONS(1219), + [anon_sym_LBRACE] = ACTIONS(1219), + [anon_sym_RBRACE] = ACTIONS(1219), + [anon_sym_macro] = ACTIONS(1221), + [anon_sym_PLUS] = ACTIONS(1221), + [anon_sym_STAR] = ACTIONS(1221), + [anon_sym_QMARK] = ACTIONS(1219), + [anon_sym_u8] = ACTIONS(1221), + [anon_sym_i8] = ACTIONS(1221), + [anon_sym_u16] = ACTIONS(1221), + [anon_sym_i16] = ACTIONS(1221), + [anon_sym_u32] = ACTIONS(1221), + [anon_sym_i32] = ACTIONS(1221), + [anon_sym_u64] = ACTIONS(1221), + [anon_sym_i64] = ACTIONS(1221), + [anon_sym_u128] = ACTIONS(1221), + [anon_sym_i128] = ACTIONS(1221), + [anon_sym_isize] = ACTIONS(1221), + [anon_sym_usize] = ACTIONS(1221), + [anon_sym_f32] = ACTIONS(1221), + [anon_sym_f64] = ACTIONS(1221), + [anon_sym_bool] = ACTIONS(1221), + [anon_sym_str] = ACTIONS(1221), + [anon_sym_char] = ACTIONS(1221), + [anon_sym_DASH] = ACTIONS(1221), + [anon_sym_SLASH] = ACTIONS(1221), + [anon_sym_PERCENT] = ACTIONS(1221), + [anon_sym_CARET] = ACTIONS(1221), + [anon_sym_BANG] = ACTIONS(1221), + [anon_sym_AMP] = ACTIONS(1221), + [anon_sym_PIPE] = ACTIONS(1221), + [anon_sym_AMP_AMP] = ACTIONS(1219), + [anon_sym_PIPE_PIPE] = ACTIONS(1219), + [anon_sym_LT_LT] = ACTIONS(1221), + [anon_sym_GT_GT] = ACTIONS(1221), + [anon_sym_PLUS_EQ] = ACTIONS(1219), + [anon_sym_DASH_EQ] = ACTIONS(1219), + [anon_sym_STAR_EQ] = ACTIONS(1219), + [anon_sym_SLASH_EQ] = ACTIONS(1219), + [anon_sym_PERCENT_EQ] = ACTIONS(1219), + [anon_sym_CARET_EQ] = ACTIONS(1219), + [anon_sym_AMP_EQ] = ACTIONS(1219), + [anon_sym_PIPE_EQ] = ACTIONS(1219), + [anon_sym_LT_LT_EQ] = ACTIONS(1219), + [anon_sym_GT_GT_EQ] = ACTIONS(1219), + [anon_sym_EQ] = ACTIONS(1221), + [anon_sym_EQ_EQ] = ACTIONS(1219), + [anon_sym_BANG_EQ] = ACTIONS(1219), + [anon_sym_GT] = ACTIONS(1221), + [anon_sym_LT] = ACTIONS(1221), + [anon_sym_GT_EQ] = ACTIONS(1219), + [anon_sym_LT_EQ] = ACTIONS(1219), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_DOT_DOT] = ACTIONS(1221), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1219), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1219), + [anon_sym_COLON_COLON] = ACTIONS(1219), + [anon_sym_POUND] = ACTIONS(1219), + [anon_sym_SQUOTE] = ACTIONS(1221), + [anon_sym_as] = ACTIONS(1221), + [anon_sym_async] = ACTIONS(1221), + [anon_sym_break] = ACTIONS(1221), + [anon_sym_const] = ACTIONS(1221), + [anon_sym_continue] = ACTIONS(1221), + [anon_sym_default] = ACTIONS(1221), + [anon_sym_enum] = ACTIONS(1221), + [anon_sym_fn] = ACTIONS(1221), + [anon_sym_for] = ACTIONS(1221), + [anon_sym_if] = ACTIONS(1221), + [anon_sym_impl] = ACTIONS(1221), + [anon_sym_let] = ACTIONS(1221), + [anon_sym_loop] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1221), + [anon_sym_mod] = ACTIONS(1221), + [anon_sym_pub] = ACTIONS(1221), + [anon_sym_return] = ACTIONS(1221), + [anon_sym_static] = ACTIONS(1221), + [anon_sym_struct] = ACTIONS(1221), + [anon_sym_trait] = ACTIONS(1221), + [anon_sym_type] = ACTIONS(1221), + [anon_sym_union] = ACTIONS(1221), + [anon_sym_unsafe] = ACTIONS(1221), + [anon_sym_use] = ACTIONS(1221), + [anon_sym_while] = ACTIONS(1221), + [anon_sym_extern] = ACTIONS(1221), + [anon_sym_else] = ACTIONS(1221), + [anon_sym_yield] = ACTIONS(1221), + [anon_sym_move] = ACTIONS(1221), + [anon_sym_try] = ACTIONS(1221), + [sym_integer_literal] = ACTIONS(1219), + [aux_sym_string_literal_token1] = ACTIONS(1219), + [sym_char_literal] = ACTIONS(1219), + [anon_sym_true] = ACTIONS(1221), + [anon_sym_false] = ACTIONS(1221), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1221), + [sym_super] = ACTIONS(1221), + [sym_crate] = ACTIONS(1221), + [sym_metavariable] = ACTIONS(1219), + [sym__raw_string_literal_start] = ACTIONS(1219), + [sym_float_literal] = ACTIONS(1219), }, [253] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1718), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(253), [sym_block_comment] = STATE(253), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(1041), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(1041), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_AMP] = ACTIONS(1043), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(464), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(468), - [anon_sym_static] = ACTIONS(470), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(472), - [anon_sym_move] = ACTIONS(474), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [ts_builtin_sym_end] = ACTIONS(1223), + [sym_identifier] = ACTIONS(1225), + [anon_sym_SEMI] = ACTIONS(1223), + [anon_sym_macro_rules_BANG] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1223), + [anon_sym_LBRACK] = ACTIONS(1223), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_RBRACE] = ACTIONS(1223), + [anon_sym_macro] = ACTIONS(1225), + [anon_sym_PLUS] = ACTIONS(1225), + [anon_sym_STAR] = ACTIONS(1225), + [anon_sym_QMARK] = ACTIONS(1223), + [anon_sym_u8] = ACTIONS(1225), + [anon_sym_i8] = ACTIONS(1225), + [anon_sym_u16] = ACTIONS(1225), + [anon_sym_i16] = ACTIONS(1225), + [anon_sym_u32] = ACTIONS(1225), + [anon_sym_i32] = ACTIONS(1225), + [anon_sym_u64] = ACTIONS(1225), + [anon_sym_i64] = ACTIONS(1225), + [anon_sym_u128] = ACTIONS(1225), + [anon_sym_i128] = ACTIONS(1225), + [anon_sym_isize] = ACTIONS(1225), + [anon_sym_usize] = ACTIONS(1225), + [anon_sym_f32] = ACTIONS(1225), + [anon_sym_f64] = ACTIONS(1225), + [anon_sym_bool] = ACTIONS(1225), + [anon_sym_str] = ACTIONS(1225), + [anon_sym_char] = ACTIONS(1225), + [anon_sym_DASH] = ACTIONS(1225), + [anon_sym_SLASH] = ACTIONS(1225), + [anon_sym_PERCENT] = ACTIONS(1225), + [anon_sym_CARET] = ACTIONS(1225), + [anon_sym_BANG] = ACTIONS(1225), + [anon_sym_AMP] = ACTIONS(1225), + [anon_sym_PIPE] = ACTIONS(1225), + [anon_sym_AMP_AMP] = ACTIONS(1223), + [anon_sym_PIPE_PIPE] = ACTIONS(1223), + [anon_sym_LT_LT] = ACTIONS(1225), + [anon_sym_GT_GT] = ACTIONS(1225), + [anon_sym_PLUS_EQ] = ACTIONS(1223), + [anon_sym_DASH_EQ] = ACTIONS(1223), + [anon_sym_STAR_EQ] = ACTIONS(1223), + [anon_sym_SLASH_EQ] = ACTIONS(1223), + [anon_sym_PERCENT_EQ] = ACTIONS(1223), + [anon_sym_CARET_EQ] = ACTIONS(1223), + [anon_sym_AMP_EQ] = ACTIONS(1223), + [anon_sym_PIPE_EQ] = ACTIONS(1223), + [anon_sym_LT_LT_EQ] = ACTIONS(1223), + [anon_sym_GT_GT_EQ] = ACTIONS(1223), + [anon_sym_EQ] = ACTIONS(1225), + [anon_sym_EQ_EQ] = ACTIONS(1223), + [anon_sym_BANG_EQ] = ACTIONS(1223), + [anon_sym_GT] = ACTIONS(1225), + [anon_sym_LT] = ACTIONS(1225), + [anon_sym_GT_EQ] = ACTIONS(1223), + [anon_sym_LT_EQ] = ACTIONS(1223), + [anon_sym_DOT] = ACTIONS(1225), + [anon_sym_DOT_DOT] = ACTIONS(1225), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1223), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), + [anon_sym_COLON_COLON] = ACTIONS(1223), + [anon_sym_POUND] = ACTIONS(1223), + [anon_sym_SQUOTE] = ACTIONS(1225), + [anon_sym_as] = ACTIONS(1225), + [anon_sym_async] = ACTIONS(1225), + [anon_sym_break] = ACTIONS(1225), + [anon_sym_const] = ACTIONS(1225), + [anon_sym_continue] = ACTIONS(1225), + [anon_sym_default] = ACTIONS(1225), + [anon_sym_enum] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1225), + [anon_sym_for] = ACTIONS(1225), + [anon_sym_if] = ACTIONS(1225), + [anon_sym_impl] = ACTIONS(1225), + [anon_sym_let] = ACTIONS(1225), + [anon_sym_loop] = ACTIONS(1225), + [anon_sym_match] = ACTIONS(1225), + [anon_sym_mod] = ACTIONS(1225), + [anon_sym_pub] = ACTIONS(1225), + [anon_sym_return] = ACTIONS(1225), + [anon_sym_static] = ACTIONS(1225), + [anon_sym_struct] = ACTIONS(1225), + [anon_sym_trait] = ACTIONS(1225), + [anon_sym_type] = ACTIONS(1225), + [anon_sym_union] = ACTIONS(1225), + [anon_sym_unsafe] = ACTIONS(1225), + [anon_sym_use] = ACTIONS(1225), + [anon_sym_while] = ACTIONS(1225), + [anon_sym_extern] = ACTIONS(1225), + [anon_sym_else] = ACTIONS(1225), + [anon_sym_yield] = ACTIONS(1225), + [anon_sym_move] = ACTIONS(1225), + [anon_sym_try] = ACTIONS(1225), + [sym_integer_literal] = ACTIONS(1223), + [aux_sym_string_literal_token1] = ACTIONS(1223), + [sym_char_literal] = ACTIONS(1223), + [anon_sym_true] = ACTIONS(1225), + [anon_sym_false] = ACTIONS(1225), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1225), + [sym_super] = ACTIONS(1225), + [sym_crate] = ACTIONS(1225), + [sym_metavariable] = ACTIONS(1223), + [sym__raw_string_literal_start] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1223), }, [254] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1719), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(254), [sym_block_comment] = STATE(254), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(1041), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(1041), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_AMP] = ACTIONS(1043), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(464), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(468), - [anon_sym_static] = ACTIONS(470), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(472), - [anon_sym_move] = ACTIONS(474), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [ts_builtin_sym_end] = ACTIONS(1227), + [sym_identifier] = ACTIONS(1229), + [anon_sym_SEMI] = ACTIONS(1227), + [anon_sym_macro_rules_BANG] = ACTIONS(1227), + [anon_sym_LPAREN] = ACTIONS(1227), + [anon_sym_LBRACK] = ACTIONS(1227), + [anon_sym_LBRACE] = ACTIONS(1227), + [anon_sym_RBRACE] = ACTIONS(1227), + [anon_sym_macro] = ACTIONS(1229), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1229), + [anon_sym_QMARK] = ACTIONS(1227), + [anon_sym_u8] = ACTIONS(1229), + [anon_sym_i8] = ACTIONS(1229), + [anon_sym_u16] = ACTIONS(1229), + [anon_sym_i16] = ACTIONS(1229), + [anon_sym_u32] = ACTIONS(1229), + [anon_sym_i32] = ACTIONS(1229), + [anon_sym_u64] = ACTIONS(1229), + [anon_sym_i64] = ACTIONS(1229), + [anon_sym_u128] = ACTIONS(1229), + [anon_sym_i128] = ACTIONS(1229), + [anon_sym_isize] = ACTIONS(1229), + [anon_sym_usize] = ACTIONS(1229), + [anon_sym_f32] = ACTIONS(1229), + [anon_sym_f64] = ACTIONS(1229), + [anon_sym_bool] = ACTIONS(1229), + [anon_sym_str] = ACTIONS(1229), + [anon_sym_char] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_SLASH] = ACTIONS(1229), + [anon_sym_PERCENT] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_BANG] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(1229), + [anon_sym_PIPE] = ACTIONS(1229), + [anon_sym_AMP_AMP] = ACTIONS(1227), + [anon_sym_PIPE_PIPE] = ACTIONS(1227), + [anon_sym_LT_LT] = ACTIONS(1229), + [anon_sym_GT_GT] = ACTIONS(1229), + [anon_sym_PLUS_EQ] = ACTIONS(1227), + [anon_sym_DASH_EQ] = ACTIONS(1227), + [anon_sym_STAR_EQ] = ACTIONS(1227), + [anon_sym_SLASH_EQ] = ACTIONS(1227), + [anon_sym_PERCENT_EQ] = ACTIONS(1227), + [anon_sym_CARET_EQ] = ACTIONS(1227), + [anon_sym_AMP_EQ] = ACTIONS(1227), + [anon_sym_PIPE_EQ] = ACTIONS(1227), + [anon_sym_LT_LT_EQ] = ACTIONS(1227), + [anon_sym_GT_GT_EQ] = ACTIONS(1227), + [anon_sym_EQ] = ACTIONS(1229), + [anon_sym_EQ_EQ] = ACTIONS(1227), + [anon_sym_BANG_EQ] = ACTIONS(1227), + [anon_sym_GT] = ACTIONS(1229), + [anon_sym_LT] = ACTIONS(1229), + [anon_sym_GT_EQ] = ACTIONS(1227), + [anon_sym_LT_EQ] = ACTIONS(1227), + [anon_sym_DOT] = ACTIONS(1229), + [anon_sym_DOT_DOT] = ACTIONS(1229), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1227), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1227), + [anon_sym_COLON_COLON] = ACTIONS(1227), + [anon_sym_POUND] = ACTIONS(1227), + [anon_sym_SQUOTE] = ACTIONS(1229), + [anon_sym_as] = ACTIONS(1229), + [anon_sym_async] = ACTIONS(1229), + [anon_sym_break] = ACTIONS(1229), + [anon_sym_const] = ACTIONS(1229), + [anon_sym_continue] = ACTIONS(1229), + [anon_sym_default] = ACTIONS(1229), + [anon_sym_enum] = ACTIONS(1229), + [anon_sym_fn] = ACTIONS(1229), + [anon_sym_for] = ACTIONS(1229), + [anon_sym_if] = ACTIONS(1229), + [anon_sym_impl] = ACTIONS(1229), + [anon_sym_let] = ACTIONS(1229), + [anon_sym_loop] = ACTIONS(1229), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_mod] = ACTIONS(1229), + [anon_sym_pub] = ACTIONS(1229), + [anon_sym_return] = ACTIONS(1229), + [anon_sym_static] = ACTIONS(1229), + [anon_sym_struct] = ACTIONS(1229), + [anon_sym_trait] = ACTIONS(1229), + [anon_sym_type] = ACTIONS(1229), + [anon_sym_union] = ACTIONS(1229), + [anon_sym_unsafe] = ACTIONS(1229), + [anon_sym_use] = ACTIONS(1229), + [anon_sym_while] = ACTIONS(1229), + [anon_sym_extern] = ACTIONS(1229), + [anon_sym_else] = ACTIONS(1229), + [anon_sym_yield] = ACTIONS(1229), + [anon_sym_move] = ACTIONS(1229), + [anon_sym_try] = ACTIONS(1229), + [sym_integer_literal] = ACTIONS(1227), + [aux_sym_string_literal_token1] = ACTIONS(1227), + [sym_char_literal] = ACTIONS(1227), + [anon_sym_true] = ACTIONS(1229), + [anon_sym_false] = ACTIONS(1229), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1229), + [sym_super] = ACTIONS(1229), + [sym_crate] = ACTIONS(1229), + [sym_metavariable] = ACTIONS(1227), + [sym__raw_string_literal_start] = ACTIONS(1227), + [sym_float_literal] = ACTIONS(1227), }, [255] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1720), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), + [sym_bracketed_type] = STATE(3593), + [sym_generic_function] = STATE(1742), + [sym_generic_type_with_turbofish] = STATE(2901), + [sym__expression_except_range] = STATE(1655), + [sym__expression] = STATE(1757), + [sym_macro_invocation] = STATE(1752), + [sym_scoped_identifier] = STATE(1584), [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_range_expression] = STATE(1746), + [sym_unary_expression] = STATE(1742), + [sym_try_expression] = STATE(1742), + [sym_reference_expression] = STATE(1742), + [sym_binary_expression] = STATE(1742), + [sym_assignment_expression] = STATE(1742), + [sym_compound_assignment_expr] = STATE(1742), + [sym_type_cast_expression] = STATE(1742), + [sym_return_expression] = STATE(1742), + [sym_yield_expression] = STATE(1742), + [sym_call_expression] = STATE(1742), + [sym_array_expression] = STATE(1742), + [sym_parenthesized_expression] = STATE(1742), + [sym_tuple_expression] = STATE(1742), + [sym_unit_expression] = STATE(1742), + [sym_struct_expression] = STATE(1742), + [sym_if_expression] = STATE(1742), + [sym_match_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_loop_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_const_block] = STATE(1742), + [sym_closure_expression] = STATE(1742), + [sym_closure_parameters] = STATE(244), + [sym_label] = STATE(3682), + [sym_break_expression] = STATE(1742), + [sym_continue_expression] = STATE(1742), + [sym_index_expression] = STATE(1742), + [sym_await_expression] = STATE(1742), + [sym_field_expression] = STATE(1652), + [sym_unsafe_block] = STATE(1742), + [sym_async_block] = STATE(1742), + [sym_try_block] = STATE(1742), + [sym_block] = STATE(1742), + [sym__literal] = STATE(1742), + [sym_string_literal] = STATE(1723), + [sym_raw_string_literal] = STATE(1723), + [sym_boolean_literal] = STATE(1723), [sym_line_comment] = STATE(255), [sym_block_comment] = STATE(255), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(1041), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(1041), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_AMP] = ACTIONS(1043), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(464), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(468), - [anon_sym_static] = ACTIONS(470), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(472), - [anon_sym_move] = ACTIONS(474), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [sym_identifier] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(461), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LBRACE] = ACTIONS(405), + [anon_sym_STAR] = ACTIONS(1020), + [anon_sym_u8] = ACTIONS(409), + [anon_sym_i8] = ACTIONS(409), + [anon_sym_u16] = ACTIONS(409), + [anon_sym_i16] = ACTIONS(409), + [anon_sym_u32] = ACTIONS(409), + [anon_sym_i32] = ACTIONS(409), + [anon_sym_u64] = ACTIONS(409), + [anon_sym_i64] = ACTIONS(409), + [anon_sym_u128] = ACTIONS(409), + [anon_sym_i128] = ACTIONS(409), + [anon_sym_isize] = ACTIONS(409), + [anon_sym_usize] = ACTIONS(409), + [anon_sym_f32] = ACTIONS(409), + [anon_sym_f64] = ACTIONS(409), + [anon_sym_bool] = ACTIONS(409), + [anon_sym_str] = ACTIONS(409), + [anon_sym_char] = ACTIONS(409), + [anon_sym_DASH] = ACTIONS(1020), + [anon_sym_BANG] = ACTIONS(1020), + [anon_sym_AMP] = ACTIONS(1022), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1082), + [anon_sym_COLON_COLON] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(415), + [anon_sym_break] = ACTIONS(417), + [anon_sym_const] = ACTIONS(419), + [anon_sym_continue] = ACTIONS(421), + [anon_sym_default] = ACTIONS(423), + [anon_sym_for] = ACTIONS(425), + [anon_sym_if] = ACTIONS(427), + [anon_sym_loop] = ACTIONS(429), + [anon_sym_match] = ACTIONS(431), + [anon_sym_return] = ACTIONS(433), + [anon_sym_static] = ACTIONS(435), + [anon_sym_union] = ACTIONS(423), + [anon_sym_unsafe] = ACTIONS(437), + [anon_sym_while] = ACTIONS(439), + [sym_mutable_specifier] = ACTIONS(1231), + [anon_sym_yield] = ACTIONS(441), + [anon_sym_move] = ACTIONS(443), + [anon_sym_try] = ACTIONS(445), + [sym_integer_literal] = ACTIONS(447), + [aux_sym_string_literal_token1] = ACTIONS(449), + [sym_char_literal] = ACTIONS(447), + [anon_sym_true] = ACTIONS(451), + [anon_sym_false] = ACTIONS(451), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(453), + [sym_super] = ACTIONS(455), + [sym_crate] = ACTIONS(455), + [sym_metavariable] = ACTIONS(457), + [sym__raw_string_literal_start] = ACTIONS(459), + [sym_float_literal] = ACTIONS(447), }, [256] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1721), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1456), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1419), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(256), [sym_block_comment] = STATE(256), - [sym_identifier] = ACTIONS(456), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(1041), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(1041), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_AMP] = ACTIONS(1043), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(464), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(468), - [anon_sym_static] = ACTIONS(470), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(472), - [anon_sym_move] = ACTIONS(474), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1066), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(365), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [sym_mutable_specifier] = ACTIONS(1233), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [257] = { - [sym_bracketed_type] = STATE(3498), - [sym_generic_function] = STATE(1637), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1604), - [sym__expression] = STATE(1643), - [sym_macro_invocation] = STATE(1641), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3100), - [sym_range_expression] = STATE(1639), - [sym_unary_expression] = STATE(1637), - [sym_try_expression] = STATE(1637), - [sym_reference_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_assignment_expression] = STATE(1637), - [sym_compound_assignment_expr] = STATE(1637), - [sym_type_cast_expression] = STATE(1637), - [sym_return_expression] = STATE(1637), - [sym_yield_expression] = STATE(1637), - [sym_call_expression] = STATE(1637), - [sym_array_expression] = STATE(1637), - [sym_parenthesized_expression] = STATE(1637), - [sym_tuple_expression] = STATE(1637), - [sym_unit_expression] = STATE(1637), - [sym_struct_expression] = STATE(1637), - [sym_if_expression] = STATE(1637), - [sym_match_expression] = STATE(1637), - [sym_while_expression] = STATE(1637), - [sym_loop_expression] = STATE(1637), - [sym_for_expression] = STATE(1637), - [sym_const_block] = STATE(1637), - [sym_closure_expression] = STATE(1637), - [sym_closure_parameters] = STATE(237), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1637), - [sym_continue_expression] = STATE(1637), - [sym_index_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_field_expression] = STATE(1620), - [sym_unsafe_block] = STATE(1637), - [sym_async_block] = STATE(1637), - [sym_try_block] = STATE(1637), - [sym_block] = STATE(1637), - [sym__literal] = STATE(1637), - [sym_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_boolean_literal] = STATE(1778), [sym_line_comment] = STATE(257), [sym_block_comment] = STATE(257), - [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_STAR] = ACTIONS(1021), - [anon_sym_u8] = ACTIONS(404), - [anon_sym_i8] = ACTIONS(404), - [anon_sym_u16] = ACTIONS(404), - [anon_sym_i16] = ACTIONS(404), - [anon_sym_u32] = ACTIONS(404), - [anon_sym_i32] = ACTIONS(404), - [anon_sym_u64] = ACTIONS(404), - [anon_sym_i64] = ACTIONS(404), - [anon_sym_u128] = ACTIONS(404), - [anon_sym_i128] = ACTIONS(404), - [anon_sym_isize] = ACTIONS(404), - [anon_sym_usize] = ACTIONS(404), - [anon_sym_f32] = ACTIONS(404), - [anon_sym_f64] = ACTIONS(404), - [anon_sym_bool] = ACTIONS(404), - [anon_sym_str] = ACTIONS(404), - [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_BANG] = ACTIONS(1021), - [anon_sym_AMP] = ACTIONS(1023), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1039), - [anon_sym_COLON_COLON] = ACTIONS(408), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_const] = ACTIONS(414), - [anon_sym_continue] = ACTIONS(416), - [anon_sym_default] = ACTIONS(418), - [anon_sym_for] = ACTIONS(420), - [anon_sym_if] = ACTIONS(422), - [anon_sym_loop] = ACTIONS(424), - [anon_sym_match] = ACTIONS(426), - [anon_sym_return] = ACTIONS(428), - [anon_sym_static] = ACTIONS(430), - [anon_sym_union] = ACTIONS(418), - [anon_sym_unsafe] = ACTIONS(432), - [anon_sym_while] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_move] = ACTIONS(438), - [anon_sym_try] = ACTIONS(440), - [sym_integer_literal] = ACTIONS(442), - [aux_sym_string_literal_token1] = ACTIONS(444), - [sym_char_literal] = ACTIONS(442), - [anon_sym_true] = ACTIONS(446), - [anon_sym_false] = ACTIONS(446), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(448), - [sym_super] = ACTIONS(450), - [sym_crate] = ACTIONS(450), - [sym_metavariable] = ACTIONS(452), - [sym__raw_string_literal_start] = ACTIONS(454), - [sym_float_literal] = ACTIONS(442), + [ts_builtin_sym_end] = ACTIONS(1235), + [sym_identifier] = ACTIONS(1237), + [anon_sym_SEMI] = ACTIONS(1235), + [anon_sym_macro_rules_BANG] = ACTIONS(1235), + [anon_sym_LPAREN] = ACTIONS(1235), + [anon_sym_LBRACK] = ACTIONS(1235), + [anon_sym_LBRACE] = ACTIONS(1235), + [anon_sym_RBRACE] = ACTIONS(1235), + [anon_sym_macro] = ACTIONS(1237), + [anon_sym_PLUS] = ACTIONS(1237), + [anon_sym_STAR] = ACTIONS(1237), + [anon_sym_QMARK] = ACTIONS(1235), + [anon_sym_u8] = ACTIONS(1237), + [anon_sym_i8] = ACTIONS(1237), + [anon_sym_u16] = ACTIONS(1237), + [anon_sym_i16] = ACTIONS(1237), + [anon_sym_u32] = ACTIONS(1237), + [anon_sym_i32] = ACTIONS(1237), + [anon_sym_u64] = ACTIONS(1237), + [anon_sym_i64] = ACTIONS(1237), + [anon_sym_u128] = ACTIONS(1237), + [anon_sym_i128] = ACTIONS(1237), + [anon_sym_isize] = ACTIONS(1237), + [anon_sym_usize] = ACTIONS(1237), + [anon_sym_f32] = ACTIONS(1237), + [anon_sym_f64] = ACTIONS(1237), + [anon_sym_bool] = ACTIONS(1237), + [anon_sym_str] = ACTIONS(1237), + [anon_sym_char] = ACTIONS(1237), + [anon_sym_DASH] = ACTIONS(1237), + [anon_sym_SLASH] = ACTIONS(1237), + [anon_sym_PERCENT] = ACTIONS(1237), + [anon_sym_CARET] = ACTIONS(1237), + [anon_sym_BANG] = ACTIONS(1237), + [anon_sym_AMP] = ACTIONS(1237), + [anon_sym_PIPE] = ACTIONS(1237), + [anon_sym_AMP_AMP] = ACTIONS(1235), + [anon_sym_PIPE_PIPE] = ACTIONS(1235), + [anon_sym_LT_LT] = ACTIONS(1237), + [anon_sym_GT_GT] = ACTIONS(1237), + [anon_sym_PLUS_EQ] = ACTIONS(1235), + [anon_sym_DASH_EQ] = ACTIONS(1235), + [anon_sym_STAR_EQ] = ACTIONS(1235), + [anon_sym_SLASH_EQ] = ACTIONS(1235), + [anon_sym_PERCENT_EQ] = ACTIONS(1235), + [anon_sym_CARET_EQ] = ACTIONS(1235), + [anon_sym_AMP_EQ] = ACTIONS(1235), + [anon_sym_PIPE_EQ] = ACTIONS(1235), + [anon_sym_LT_LT_EQ] = ACTIONS(1235), + [anon_sym_GT_GT_EQ] = ACTIONS(1235), + [anon_sym_EQ] = ACTIONS(1237), + [anon_sym_EQ_EQ] = ACTIONS(1235), + [anon_sym_BANG_EQ] = ACTIONS(1235), + [anon_sym_GT] = ACTIONS(1237), + [anon_sym_LT] = ACTIONS(1237), + [anon_sym_GT_EQ] = ACTIONS(1235), + [anon_sym_LT_EQ] = ACTIONS(1235), + [anon_sym_DOT] = ACTIONS(1237), + [anon_sym_DOT_DOT] = ACTIONS(1237), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1235), + [anon_sym_COLON_COLON] = ACTIONS(1235), + [anon_sym_POUND] = ACTIONS(1235), + [anon_sym_SQUOTE] = ACTIONS(1237), + [anon_sym_as] = ACTIONS(1237), + [anon_sym_async] = ACTIONS(1237), + [anon_sym_break] = ACTIONS(1237), + [anon_sym_const] = ACTIONS(1237), + [anon_sym_continue] = ACTIONS(1237), + [anon_sym_default] = ACTIONS(1237), + [anon_sym_enum] = ACTIONS(1237), + [anon_sym_fn] = ACTIONS(1237), + [anon_sym_for] = ACTIONS(1237), + [anon_sym_if] = ACTIONS(1237), + [anon_sym_impl] = ACTIONS(1237), + [anon_sym_let] = ACTIONS(1237), + [anon_sym_loop] = ACTIONS(1237), + [anon_sym_match] = ACTIONS(1237), + [anon_sym_mod] = ACTIONS(1237), + [anon_sym_pub] = ACTIONS(1237), + [anon_sym_return] = ACTIONS(1237), + [anon_sym_static] = ACTIONS(1237), + [anon_sym_struct] = ACTIONS(1237), + [anon_sym_trait] = ACTIONS(1237), + [anon_sym_type] = ACTIONS(1237), + [anon_sym_union] = ACTIONS(1237), + [anon_sym_unsafe] = ACTIONS(1237), + [anon_sym_use] = ACTIONS(1237), + [anon_sym_while] = ACTIONS(1237), + [anon_sym_extern] = ACTIONS(1237), + [anon_sym_else] = ACTIONS(1237), + [anon_sym_yield] = ACTIONS(1237), + [anon_sym_move] = ACTIONS(1237), + [anon_sym_try] = ACTIONS(1237), + [sym_integer_literal] = ACTIONS(1235), + [aux_sym_string_literal_token1] = ACTIONS(1235), + [sym_char_literal] = ACTIONS(1235), + [anon_sym_true] = ACTIONS(1237), + [anon_sym_false] = ACTIONS(1237), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1237), + [sym_super] = ACTIONS(1237), + [sym_crate] = ACTIONS(1237), + [sym_metavariable] = ACTIONS(1235), + [sym__raw_string_literal_start] = ACTIONS(1235), + [sym_float_literal] = ACTIONS(1235), }, [258] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1579), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(258), [sym_block_comment] = STATE(258), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(977), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [ts_builtin_sym_end] = ACTIONS(1239), + [sym_identifier] = ACTIONS(1241), + [anon_sym_SEMI] = ACTIONS(1239), + [anon_sym_macro_rules_BANG] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(1239), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LBRACE] = ACTIONS(1239), + [anon_sym_RBRACE] = ACTIONS(1239), + [anon_sym_macro] = ACTIONS(1241), + [anon_sym_PLUS] = ACTIONS(1241), + [anon_sym_STAR] = ACTIONS(1241), + [anon_sym_QMARK] = ACTIONS(1239), + [anon_sym_u8] = ACTIONS(1241), + [anon_sym_i8] = ACTIONS(1241), + [anon_sym_u16] = ACTIONS(1241), + [anon_sym_i16] = ACTIONS(1241), + [anon_sym_u32] = ACTIONS(1241), + [anon_sym_i32] = ACTIONS(1241), + [anon_sym_u64] = ACTIONS(1241), + [anon_sym_i64] = ACTIONS(1241), + [anon_sym_u128] = ACTIONS(1241), + [anon_sym_i128] = ACTIONS(1241), + [anon_sym_isize] = ACTIONS(1241), + [anon_sym_usize] = ACTIONS(1241), + [anon_sym_f32] = ACTIONS(1241), + [anon_sym_f64] = ACTIONS(1241), + [anon_sym_bool] = ACTIONS(1241), + [anon_sym_str] = ACTIONS(1241), + [anon_sym_char] = ACTIONS(1241), + [anon_sym_DASH] = ACTIONS(1241), + [anon_sym_SLASH] = ACTIONS(1241), + [anon_sym_PERCENT] = ACTIONS(1241), + [anon_sym_CARET] = ACTIONS(1241), + [anon_sym_BANG] = ACTIONS(1241), + [anon_sym_AMP] = ACTIONS(1241), + [anon_sym_PIPE] = ACTIONS(1241), + [anon_sym_AMP_AMP] = ACTIONS(1239), + [anon_sym_PIPE_PIPE] = ACTIONS(1239), + [anon_sym_LT_LT] = ACTIONS(1241), + [anon_sym_GT_GT] = ACTIONS(1241), + [anon_sym_PLUS_EQ] = ACTIONS(1239), + [anon_sym_DASH_EQ] = ACTIONS(1239), + [anon_sym_STAR_EQ] = ACTIONS(1239), + [anon_sym_SLASH_EQ] = ACTIONS(1239), + [anon_sym_PERCENT_EQ] = ACTIONS(1239), + [anon_sym_CARET_EQ] = ACTIONS(1239), + [anon_sym_AMP_EQ] = ACTIONS(1239), + [anon_sym_PIPE_EQ] = ACTIONS(1239), + [anon_sym_LT_LT_EQ] = ACTIONS(1239), + [anon_sym_GT_GT_EQ] = ACTIONS(1239), + [anon_sym_EQ] = ACTIONS(1241), + [anon_sym_EQ_EQ] = ACTIONS(1239), + [anon_sym_BANG_EQ] = ACTIONS(1239), + [anon_sym_GT] = ACTIONS(1241), + [anon_sym_LT] = ACTIONS(1241), + [anon_sym_GT_EQ] = ACTIONS(1239), + [anon_sym_LT_EQ] = ACTIONS(1239), + [anon_sym_DOT] = ACTIONS(1241), + [anon_sym_DOT_DOT] = ACTIONS(1241), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1239), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), + [anon_sym_COLON_COLON] = ACTIONS(1239), + [anon_sym_POUND] = ACTIONS(1239), + [anon_sym_SQUOTE] = ACTIONS(1241), + [anon_sym_as] = ACTIONS(1241), + [anon_sym_async] = ACTIONS(1241), + [anon_sym_break] = ACTIONS(1241), + [anon_sym_const] = ACTIONS(1241), + [anon_sym_continue] = ACTIONS(1241), + [anon_sym_default] = ACTIONS(1241), + [anon_sym_enum] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1241), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_if] = ACTIONS(1241), + [anon_sym_impl] = ACTIONS(1241), + [anon_sym_let] = ACTIONS(1241), + [anon_sym_loop] = ACTIONS(1241), + [anon_sym_match] = ACTIONS(1241), + [anon_sym_mod] = ACTIONS(1241), + [anon_sym_pub] = ACTIONS(1241), + [anon_sym_return] = ACTIONS(1241), + [anon_sym_static] = ACTIONS(1241), + [anon_sym_struct] = ACTIONS(1241), + [anon_sym_trait] = ACTIONS(1241), + [anon_sym_type] = ACTIONS(1241), + [anon_sym_union] = ACTIONS(1241), + [anon_sym_unsafe] = ACTIONS(1241), + [anon_sym_use] = ACTIONS(1241), + [anon_sym_while] = ACTIONS(1241), + [anon_sym_extern] = ACTIONS(1241), + [anon_sym_else] = ACTIONS(1241), + [anon_sym_yield] = ACTIONS(1241), + [anon_sym_move] = ACTIONS(1241), + [anon_sym_try] = ACTIONS(1241), + [sym_integer_literal] = ACTIONS(1239), + [aux_sym_string_literal_token1] = ACTIONS(1239), + [sym_char_literal] = ACTIONS(1239), + [anon_sym_true] = ACTIONS(1241), + [anon_sym_false] = ACTIONS(1241), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1241), + [sym_super] = ACTIONS(1241), + [sym_crate] = ACTIONS(1241), + [sym_metavariable] = ACTIONS(1239), + [sym__raw_string_literal_start] = ACTIONS(1239), + [sym_float_literal] = ACTIONS(1239), }, [259] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1839), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2791), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1405), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1574), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(249), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(259), [sym_block_comment] = STATE(259), - [sym_identifier] = ACTIONS(334), + [sym_identifier] = ACTIONS(471), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_u8] = ACTIONS(473), + [anon_sym_i8] = ACTIONS(473), + [anon_sym_u16] = ACTIONS(473), + [anon_sym_i16] = ACTIONS(473), + [anon_sym_u32] = ACTIONS(473), + [anon_sym_i32] = ACTIONS(473), + [anon_sym_u64] = ACTIONS(473), + [anon_sym_i64] = ACTIONS(473), + [anon_sym_u128] = ACTIONS(473), + [anon_sym_i128] = ACTIONS(473), + [anon_sym_isize] = ACTIONS(473), + [anon_sym_usize] = ACTIONS(473), + [anon_sym_f32] = ACTIONS(473), + [anon_sym_f64] = ACTIONS(473), + [anon_sym_bool] = ACTIONS(473), + [anon_sym_str] = ACTIONS(473), + [anon_sym_char] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(998), + [anon_sym_BANG] = ACTIONS(998), + [anon_sym_AMP] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1074), + [anon_sym_COLON_COLON] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(499), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_default] = ACTIONS(481), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(503), + [anon_sym_static] = ACTIONS(505), + [anon_sym_union] = ACTIONS(481), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(507), + [anon_sym_move] = ACTIONS(509), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [260] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1860), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1878), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1419), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(260), [sym_block_comment] = STATE(260), - [sym_identifier] = ACTIONS(334), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(365), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [261] = { + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1890), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1419), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(261), [sym_block_comment] = STATE(261), - [ts_builtin_sym_end] = ACTIONS(1206), - [sym_identifier] = ACTIONS(1208), - [anon_sym_SEMI] = ACTIONS(1206), - [anon_sym_macro_rules_BANG] = ACTIONS(1206), - [anon_sym_LPAREN] = ACTIONS(1206), - [anon_sym_LBRACK] = ACTIONS(1206), - [anon_sym_LBRACE] = ACTIONS(1206), - [anon_sym_RBRACE] = ACTIONS(1206), - [anon_sym_PLUS] = ACTIONS(1208), - [anon_sym_STAR] = ACTIONS(1208), - [anon_sym_QMARK] = ACTIONS(1206), - [anon_sym_u8] = ACTIONS(1208), - [anon_sym_i8] = ACTIONS(1208), - [anon_sym_u16] = ACTIONS(1208), - [anon_sym_i16] = ACTIONS(1208), - [anon_sym_u32] = ACTIONS(1208), - [anon_sym_i32] = ACTIONS(1208), - [anon_sym_u64] = ACTIONS(1208), - [anon_sym_i64] = ACTIONS(1208), - [anon_sym_u128] = ACTIONS(1208), - [anon_sym_i128] = ACTIONS(1208), - [anon_sym_isize] = ACTIONS(1208), - [anon_sym_usize] = ACTIONS(1208), - [anon_sym_f32] = ACTIONS(1208), - [anon_sym_f64] = ACTIONS(1208), - [anon_sym_bool] = ACTIONS(1208), - [anon_sym_str] = ACTIONS(1208), - [anon_sym_char] = ACTIONS(1208), - [anon_sym_DASH] = ACTIONS(1208), - [anon_sym_SLASH] = ACTIONS(1208), - [anon_sym_PERCENT] = ACTIONS(1208), - [anon_sym_CARET] = ACTIONS(1208), - [anon_sym_BANG] = ACTIONS(1208), - [anon_sym_AMP] = ACTIONS(1208), - [anon_sym_PIPE] = ACTIONS(1208), - [anon_sym_AMP_AMP] = ACTIONS(1206), - [anon_sym_PIPE_PIPE] = ACTIONS(1206), - [anon_sym_LT_LT] = ACTIONS(1208), - [anon_sym_GT_GT] = ACTIONS(1208), - [anon_sym_PLUS_EQ] = ACTIONS(1206), - [anon_sym_DASH_EQ] = ACTIONS(1206), - [anon_sym_STAR_EQ] = ACTIONS(1206), - [anon_sym_SLASH_EQ] = ACTIONS(1206), - [anon_sym_PERCENT_EQ] = ACTIONS(1206), - [anon_sym_CARET_EQ] = ACTIONS(1206), - [anon_sym_AMP_EQ] = ACTIONS(1206), - [anon_sym_PIPE_EQ] = ACTIONS(1206), - [anon_sym_LT_LT_EQ] = ACTIONS(1206), - [anon_sym_GT_GT_EQ] = ACTIONS(1206), - [anon_sym_EQ] = ACTIONS(1208), - [anon_sym_EQ_EQ] = ACTIONS(1206), - [anon_sym_BANG_EQ] = ACTIONS(1206), - [anon_sym_GT] = ACTIONS(1208), - [anon_sym_LT] = ACTIONS(1208), - [anon_sym_GT_EQ] = ACTIONS(1206), - [anon_sym_LT_EQ] = ACTIONS(1206), - [anon_sym_DOT] = ACTIONS(1208), - [anon_sym_DOT_DOT] = ACTIONS(1208), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1206), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1206), - [anon_sym_COLON_COLON] = ACTIONS(1206), - [anon_sym_POUND] = ACTIONS(1206), - [anon_sym_SQUOTE] = ACTIONS(1208), - [anon_sym_as] = ACTIONS(1208), - [anon_sym_async] = ACTIONS(1208), - [anon_sym_break] = ACTIONS(1208), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_continue] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(1208), - [anon_sym_enum] = ACTIONS(1208), - [anon_sym_fn] = ACTIONS(1208), - [anon_sym_for] = ACTIONS(1208), - [anon_sym_if] = ACTIONS(1208), - [anon_sym_impl] = ACTIONS(1208), - [anon_sym_let] = ACTIONS(1208), - [anon_sym_loop] = ACTIONS(1208), - [anon_sym_match] = ACTIONS(1208), - [anon_sym_mod] = ACTIONS(1208), - [anon_sym_pub] = ACTIONS(1208), - [anon_sym_return] = ACTIONS(1208), - [anon_sym_static] = ACTIONS(1208), - [anon_sym_struct] = ACTIONS(1208), - [anon_sym_trait] = ACTIONS(1208), - [anon_sym_type] = ACTIONS(1208), - [anon_sym_union] = ACTIONS(1208), - [anon_sym_unsafe] = ACTIONS(1208), - [anon_sym_use] = ACTIONS(1208), - [anon_sym_while] = ACTIONS(1208), - [anon_sym_extern] = ACTIONS(1208), - [anon_sym_else] = ACTIONS(1208), - [anon_sym_yield] = ACTIONS(1208), - [anon_sym_move] = ACTIONS(1208), - [anon_sym_try] = ACTIONS(1208), - [sym_integer_literal] = ACTIONS(1206), - [aux_sym_string_literal_token1] = ACTIONS(1206), - [sym_char_literal] = ACTIONS(1206), - [anon_sym_true] = ACTIONS(1208), - [anon_sym_false] = ACTIONS(1208), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1208), - [sym_super] = ACTIONS(1208), - [sym_crate] = ACTIONS(1208), - [sym_metavariable] = ACTIONS(1206), - [sym__raw_string_literal_start] = ACTIONS(1206), - [sym_float_literal] = ACTIONS(1206), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(365), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [262] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1867), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1893), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1419), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(262), [sym_block_comment] = STATE(262), - [sym_identifier] = ACTIONS(334), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(365), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [263] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1873), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(464), - [sym_match_expression] = STATE(464), - [sym_while_expression] = STATE(464), - [sym_loop_expression] = STATE(464), - [sym_for_expression] = STATE(464), - [sym_const_block] = STATE(464), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3579), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(464), - [sym_async_block] = STATE(464), - [sym_try_block] = STATE(464), - [sym_block] = STATE(464), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2791), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1403), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1574), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(249), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(263), [sym_block_comment] = STATE(263), - [sym_identifier] = ACTIONS(334), + [sym_identifier] = ACTIONS(471), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(1210), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(1212), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(1214), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(1216), - [anon_sym_if] = ACTIONS(1218), - [anon_sym_loop] = ACTIONS(1220), - [anon_sym_match] = ACTIONS(1222), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(1224), - [anon_sym_while] = ACTIONS(1226), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(1228), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_u8] = ACTIONS(473), + [anon_sym_i8] = ACTIONS(473), + [anon_sym_u16] = ACTIONS(473), + [anon_sym_i16] = ACTIONS(473), + [anon_sym_u32] = ACTIONS(473), + [anon_sym_i32] = ACTIONS(473), + [anon_sym_u64] = ACTIONS(473), + [anon_sym_i64] = ACTIONS(473), + [anon_sym_u128] = ACTIONS(473), + [anon_sym_i128] = ACTIONS(473), + [anon_sym_isize] = ACTIONS(473), + [anon_sym_usize] = ACTIONS(473), + [anon_sym_f32] = ACTIONS(473), + [anon_sym_f64] = ACTIONS(473), + [anon_sym_bool] = ACTIONS(473), + [anon_sym_str] = ACTIONS(473), + [anon_sym_char] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(998), + [anon_sym_BANG] = ACTIONS(998), + [anon_sym_AMP] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1074), + [anon_sym_COLON_COLON] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(499), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_default] = ACTIONS(481), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(503), + [anon_sym_static] = ACTIONS(505), + [anon_sym_union] = ACTIONS(481), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(507), + [anon_sym_move] = ACTIONS(509), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [264] = { - [sym_bracketed_type] = STATE(3498), - [sym_generic_function] = STATE(1637), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1604), - [sym__expression] = STATE(1659), - [sym_macro_invocation] = STATE(1641), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3100), - [sym_range_expression] = STATE(1639), - [sym_unary_expression] = STATE(1637), - [sym_try_expression] = STATE(1637), - [sym_reference_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_assignment_expression] = STATE(1637), - [sym_compound_assignment_expr] = STATE(1637), - [sym_type_cast_expression] = STATE(1637), - [sym_return_expression] = STATE(1637), - [sym_yield_expression] = STATE(1637), - [sym_call_expression] = STATE(1637), - [sym_array_expression] = STATE(1637), - [sym_parenthesized_expression] = STATE(1637), - [sym_tuple_expression] = STATE(1637), - [sym_unit_expression] = STATE(1637), - [sym_struct_expression] = STATE(1637), - [sym_if_expression] = STATE(1637), - [sym_match_expression] = STATE(1637), - [sym_while_expression] = STATE(1637), - [sym_loop_expression] = STATE(1637), - [sym_for_expression] = STATE(1637), - [sym_const_block] = STATE(1637), - [sym_closure_expression] = STATE(1637), - [sym_closure_parameters] = STATE(237), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1637), - [sym_continue_expression] = STATE(1637), - [sym_index_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_field_expression] = STATE(1620), - [sym_unsafe_block] = STATE(1637), - [sym_async_block] = STATE(1637), - [sym_try_block] = STATE(1637), - [sym_block] = STATE(1637), - [sym__literal] = STATE(1637), - [sym_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_boolean_literal] = STATE(1778), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1887), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1419), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(264), [sym_block_comment] = STATE(264), - [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_STAR] = ACTIONS(1021), - [anon_sym_u8] = ACTIONS(404), - [anon_sym_i8] = ACTIONS(404), - [anon_sym_u16] = ACTIONS(404), - [anon_sym_i16] = ACTIONS(404), - [anon_sym_u32] = ACTIONS(404), - [anon_sym_i32] = ACTIONS(404), - [anon_sym_u64] = ACTIONS(404), - [anon_sym_i64] = ACTIONS(404), - [anon_sym_u128] = ACTIONS(404), - [anon_sym_i128] = ACTIONS(404), - [anon_sym_isize] = ACTIONS(404), - [anon_sym_usize] = ACTIONS(404), - [anon_sym_f32] = ACTIONS(404), - [anon_sym_f64] = ACTIONS(404), - [anon_sym_bool] = ACTIONS(404), - [anon_sym_str] = ACTIONS(404), - [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_BANG] = ACTIONS(1021), - [anon_sym_AMP] = ACTIONS(1023), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1039), - [anon_sym_COLON_COLON] = ACTIONS(408), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_const] = ACTIONS(414), - [anon_sym_continue] = ACTIONS(416), - [anon_sym_default] = ACTIONS(418), - [anon_sym_for] = ACTIONS(420), - [anon_sym_if] = ACTIONS(422), - [anon_sym_loop] = ACTIONS(424), - [anon_sym_match] = ACTIONS(426), - [anon_sym_return] = ACTIONS(428), - [anon_sym_static] = ACTIONS(430), - [anon_sym_union] = ACTIONS(418), - [anon_sym_unsafe] = ACTIONS(432), - [anon_sym_while] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_move] = ACTIONS(438), - [anon_sym_try] = ACTIONS(440), - [sym_integer_literal] = ACTIONS(442), - [aux_sym_string_literal_token1] = ACTIONS(444), - [sym_char_literal] = ACTIONS(442), - [anon_sym_true] = ACTIONS(446), - [anon_sym_false] = ACTIONS(446), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(448), - [sym_super] = ACTIONS(450), - [sym_crate] = ACTIONS(450), - [sym_metavariable] = ACTIONS(452), - [sym__raw_string_literal_start] = ACTIONS(454), - [sym_float_literal] = ACTIONS(442), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(365), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [265] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1353), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1517), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1419), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(265), [sym_block_comment] = STATE(265), - [sym_identifier] = ACTIONS(456), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1055), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1066), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(365), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [266] = { - [sym_bracketed_type] = STATE(3498), - [sym_generic_function] = STATE(1637), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1604), - [sym__expression] = STATE(1753), - [sym_macro_invocation] = STATE(1641), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3100), - [sym_range_expression] = STATE(1639), - [sym_unary_expression] = STATE(1637), - [sym_try_expression] = STATE(1637), - [sym_reference_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_assignment_expression] = STATE(1637), - [sym_compound_assignment_expr] = STATE(1637), - [sym_type_cast_expression] = STATE(1637), - [sym_return_expression] = STATE(1637), - [sym_yield_expression] = STATE(1637), - [sym_call_expression] = STATE(1637), - [sym_array_expression] = STATE(1637), - [sym_parenthesized_expression] = STATE(1637), - [sym_tuple_expression] = STATE(1637), - [sym_unit_expression] = STATE(1637), - [sym_struct_expression] = STATE(1637), - [sym_if_expression] = STATE(1637), - [sym_match_expression] = STATE(1637), - [sym_while_expression] = STATE(1637), - [sym_loop_expression] = STATE(1637), - [sym_for_expression] = STATE(1637), - [sym_const_block] = STATE(1637), - [sym_closure_expression] = STATE(1637), - [sym_closure_parameters] = STATE(237), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1637), - [sym_continue_expression] = STATE(1637), - [sym_index_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_field_expression] = STATE(1620), - [sym_unsafe_block] = STATE(1637), - [sym_async_block] = STATE(1637), - [sym_try_block] = STATE(1637), - [sym_block] = STATE(1637), - [sym__literal] = STATE(1637), - [sym_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_boolean_literal] = STATE(1778), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1478), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1419), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(266), [sym_block_comment] = STATE(266), - [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_STAR] = ACTIONS(1021), - [anon_sym_u8] = ACTIONS(404), - [anon_sym_i8] = ACTIONS(404), - [anon_sym_u16] = ACTIONS(404), - [anon_sym_i16] = ACTIONS(404), - [anon_sym_u32] = ACTIONS(404), - [anon_sym_i32] = ACTIONS(404), - [anon_sym_u64] = ACTIONS(404), - [anon_sym_i64] = ACTIONS(404), - [anon_sym_u128] = ACTIONS(404), - [anon_sym_i128] = ACTIONS(404), - [anon_sym_isize] = ACTIONS(404), - [anon_sym_usize] = ACTIONS(404), - [anon_sym_f32] = ACTIONS(404), - [anon_sym_f64] = ACTIONS(404), - [anon_sym_bool] = ACTIONS(404), - [anon_sym_str] = ACTIONS(404), - [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_BANG] = ACTIONS(1021), - [anon_sym_AMP] = ACTIONS(1023), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1039), - [anon_sym_COLON_COLON] = ACTIONS(408), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_const] = ACTIONS(414), - [anon_sym_continue] = ACTIONS(416), - [anon_sym_default] = ACTIONS(418), - [anon_sym_for] = ACTIONS(420), - [anon_sym_if] = ACTIONS(422), - [anon_sym_loop] = ACTIONS(424), - [anon_sym_match] = ACTIONS(426), - [anon_sym_return] = ACTIONS(428), - [anon_sym_static] = ACTIONS(430), - [anon_sym_union] = ACTIONS(418), - [anon_sym_unsafe] = ACTIONS(432), - [anon_sym_while] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_move] = ACTIONS(438), - [anon_sym_try] = ACTIONS(440), - [sym_integer_literal] = ACTIONS(442), - [aux_sym_string_literal_token1] = ACTIONS(444), - [sym_char_literal] = ACTIONS(442), - [anon_sym_true] = ACTIONS(446), - [anon_sym_false] = ACTIONS(446), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(448), - [sym_super] = ACTIONS(450), - [sym_crate] = ACTIONS(450), - [sym_metavariable] = ACTIONS(452), - [sym__raw_string_literal_start] = ACTIONS(454), - [sym_float_literal] = ACTIONS(442), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1066), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(365), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [267] = { - [sym_bracketed_type] = STATE(3498), - [sym_generic_function] = STATE(1637), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1604), - [sym__expression] = STATE(1665), - [sym_macro_invocation] = STATE(1641), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3100), - [sym_range_expression] = STATE(1639), - [sym_unary_expression] = STATE(1637), - [sym_try_expression] = STATE(1637), - [sym_reference_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_assignment_expression] = STATE(1637), - [sym_compound_assignment_expr] = STATE(1637), - [sym_type_cast_expression] = STATE(1637), - [sym_return_expression] = STATE(1637), - [sym_yield_expression] = STATE(1637), - [sym_call_expression] = STATE(1637), - [sym_array_expression] = STATE(1637), - [sym_parenthesized_expression] = STATE(1637), - [sym_tuple_expression] = STATE(1637), - [sym_unit_expression] = STATE(1637), - [sym_struct_expression] = STATE(1637), - [sym_if_expression] = STATE(1637), - [sym_match_expression] = STATE(1637), - [sym_while_expression] = STATE(1637), - [sym_loop_expression] = STATE(1637), - [sym_for_expression] = STATE(1637), - [sym_const_block] = STATE(1637), - [sym_closure_expression] = STATE(1637), - [sym_closure_parameters] = STATE(237), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1637), - [sym_continue_expression] = STATE(1637), - [sym_index_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_field_expression] = STATE(1620), - [sym_unsafe_block] = STATE(1637), - [sym_async_block] = STATE(1637), - [sym_try_block] = STATE(1637), - [sym_block] = STATE(1637), - [sym__literal] = STATE(1637), - [sym_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_boolean_literal] = STATE(1778), [sym_line_comment] = STATE(267), [sym_block_comment] = STATE(267), - [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_STAR] = ACTIONS(1021), - [anon_sym_u8] = ACTIONS(404), - [anon_sym_i8] = ACTIONS(404), - [anon_sym_u16] = ACTIONS(404), - [anon_sym_i16] = ACTIONS(404), - [anon_sym_u32] = ACTIONS(404), - [anon_sym_i32] = ACTIONS(404), - [anon_sym_u64] = ACTIONS(404), - [anon_sym_i64] = ACTIONS(404), - [anon_sym_u128] = ACTIONS(404), - [anon_sym_i128] = ACTIONS(404), - [anon_sym_isize] = ACTIONS(404), - [anon_sym_usize] = ACTIONS(404), - [anon_sym_f32] = ACTIONS(404), - [anon_sym_f64] = ACTIONS(404), - [anon_sym_bool] = ACTIONS(404), - [anon_sym_str] = ACTIONS(404), - [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_BANG] = ACTIONS(1021), - [anon_sym_AMP] = ACTIONS(1023), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1039), - [anon_sym_COLON_COLON] = ACTIONS(408), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_const] = ACTIONS(414), - [anon_sym_continue] = ACTIONS(416), - [anon_sym_default] = ACTIONS(418), - [anon_sym_for] = ACTIONS(420), - [anon_sym_if] = ACTIONS(422), - [anon_sym_loop] = ACTIONS(424), - [anon_sym_match] = ACTIONS(426), - [anon_sym_return] = ACTIONS(428), - [anon_sym_static] = ACTIONS(430), - [anon_sym_union] = ACTIONS(418), - [anon_sym_unsafe] = ACTIONS(432), - [anon_sym_while] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_move] = ACTIONS(438), - [anon_sym_try] = ACTIONS(440), - [sym_integer_literal] = ACTIONS(442), - [aux_sym_string_literal_token1] = ACTIONS(444), - [sym_char_literal] = ACTIONS(442), - [anon_sym_true] = ACTIONS(446), - [anon_sym_false] = ACTIONS(446), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(448), - [sym_super] = ACTIONS(450), - [sym_crate] = ACTIONS(450), - [sym_metavariable] = ACTIONS(452), - [sym__raw_string_literal_start] = ACTIONS(454), - [sym_float_literal] = ACTIONS(442), + [ts_builtin_sym_end] = ACTIONS(1243), + [sym_identifier] = ACTIONS(1245), + [anon_sym_SEMI] = ACTIONS(1243), + [anon_sym_macro_rules_BANG] = ACTIONS(1243), + [anon_sym_LPAREN] = ACTIONS(1243), + [anon_sym_LBRACK] = ACTIONS(1243), + [anon_sym_LBRACE] = ACTIONS(1243), + [anon_sym_RBRACE] = ACTIONS(1243), + [anon_sym_macro] = ACTIONS(1245), + [anon_sym_PLUS] = ACTIONS(1245), + [anon_sym_STAR] = ACTIONS(1245), + [anon_sym_QMARK] = ACTIONS(1243), + [anon_sym_u8] = ACTIONS(1245), + [anon_sym_i8] = ACTIONS(1245), + [anon_sym_u16] = ACTIONS(1245), + [anon_sym_i16] = ACTIONS(1245), + [anon_sym_u32] = ACTIONS(1245), + [anon_sym_i32] = ACTIONS(1245), + [anon_sym_u64] = ACTIONS(1245), + [anon_sym_i64] = ACTIONS(1245), + [anon_sym_u128] = ACTIONS(1245), + [anon_sym_i128] = ACTIONS(1245), + [anon_sym_isize] = ACTIONS(1245), + [anon_sym_usize] = ACTIONS(1245), + [anon_sym_f32] = ACTIONS(1245), + [anon_sym_f64] = ACTIONS(1245), + [anon_sym_bool] = ACTIONS(1245), + [anon_sym_str] = ACTIONS(1245), + [anon_sym_char] = ACTIONS(1245), + [anon_sym_DASH] = ACTIONS(1245), + [anon_sym_SLASH] = ACTIONS(1245), + [anon_sym_PERCENT] = ACTIONS(1245), + [anon_sym_CARET] = ACTIONS(1245), + [anon_sym_BANG] = ACTIONS(1245), + [anon_sym_AMP] = ACTIONS(1245), + [anon_sym_PIPE] = ACTIONS(1245), + [anon_sym_AMP_AMP] = ACTIONS(1243), + [anon_sym_PIPE_PIPE] = ACTIONS(1243), + [anon_sym_LT_LT] = ACTIONS(1245), + [anon_sym_GT_GT] = ACTIONS(1245), + [anon_sym_PLUS_EQ] = ACTIONS(1243), + [anon_sym_DASH_EQ] = ACTIONS(1243), + [anon_sym_STAR_EQ] = ACTIONS(1243), + [anon_sym_SLASH_EQ] = ACTIONS(1243), + [anon_sym_PERCENT_EQ] = ACTIONS(1243), + [anon_sym_CARET_EQ] = ACTIONS(1243), + [anon_sym_AMP_EQ] = ACTIONS(1243), + [anon_sym_PIPE_EQ] = ACTIONS(1243), + [anon_sym_LT_LT_EQ] = ACTIONS(1243), + [anon_sym_GT_GT_EQ] = ACTIONS(1243), + [anon_sym_EQ] = ACTIONS(1245), + [anon_sym_EQ_EQ] = ACTIONS(1243), + [anon_sym_BANG_EQ] = ACTIONS(1243), + [anon_sym_GT] = ACTIONS(1245), + [anon_sym_LT] = ACTIONS(1245), + [anon_sym_GT_EQ] = ACTIONS(1243), + [anon_sym_LT_EQ] = ACTIONS(1243), + [anon_sym_DOT] = ACTIONS(1245), + [anon_sym_DOT_DOT] = ACTIONS(1245), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1243), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1243), + [anon_sym_COLON_COLON] = ACTIONS(1243), + [anon_sym_POUND] = ACTIONS(1243), + [anon_sym_SQUOTE] = ACTIONS(1245), + [anon_sym_as] = ACTIONS(1245), + [anon_sym_async] = ACTIONS(1245), + [anon_sym_break] = ACTIONS(1245), + [anon_sym_const] = ACTIONS(1245), + [anon_sym_continue] = ACTIONS(1245), + [anon_sym_default] = ACTIONS(1245), + [anon_sym_enum] = ACTIONS(1245), + [anon_sym_fn] = ACTIONS(1245), + [anon_sym_for] = ACTIONS(1245), + [anon_sym_if] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_let] = ACTIONS(1245), + [anon_sym_loop] = ACTIONS(1245), + [anon_sym_match] = ACTIONS(1245), + [anon_sym_mod] = ACTIONS(1245), + [anon_sym_pub] = ACTIONS(1245), + [anon_sym_return] = ACTIONS(1245), + [anon_sym_static] = ACTIONS(1245), + [anon_sym_struct] = ACTIONS(1245), + [anon_sym_trait] = ACTIONS(1245), + [anon_sym_type] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1245), + [anon_sym_unsafe] = ACTIONS(1245), + [anon_sym_use] = ACTIONS(1245), + [anon_sym_while] = ACTIONS(1245), + [anon_sym_extern] = ACTIONS(1245), + [anon_sym_yield] = ACTIONS(1245), + [anon_sym_move] = ACTIONS(1245), + [anon_sym_try] = ACTIONS(1245), + [sym_integer_literal] = ACTIONS(1243), + [aux_sym_string_literal_token1] = ACTIONS(1243), + [sym_char_literal] = ACTIONS(1243), + [anon_sym_true] = ACTIONS(1245), + [anon_sym_false] = ACTIONS(1245), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1245), + [sym_super] = ACTIONS(1245), + [sym_crate] = ACTIONS(1245), + [sym_metavariable] = ACTIONS(1243), + [sym__raw_string_literal_start] = ACTIONS(1243), + [sym_float_literal] = ACTIONS(1243), }, [268] = { - [sym_bracketed_type] = STATE(3498), - [sym_generic_function] = STATE(1637), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1604), - [sym__expression] = STATE(1754), - [sym_macro_invocation] = STATE(1641), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3100), - [sym_range_expression] = STATE(1639), - [sym_unary_expression] = STATE(1637), - [sym_try_expression] = STATE(1637), - [sym_reference_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_assignment_expression] = STATE(1637), - [sym_compound_assignment_expr] = STATE(1637), - [sym_type_cast_expression] = STATE(1637), - [sym_return_expression] = STATE(1637), - [sym_yield_expression] = STATE(1637), - [sym_call_expression] = STATE(1637), - [sym_array_expression] = STATE(1637), - [sym_parenthesized_expression] = STATE(1637), - [sym_tuple_expression] = STATE(1637), - [sym_unit_expression] = STATE(1637), - [sym_struct_expression] = STATE(1637), - [sym_if_expression] = STATE(1637), - [sym_match_expression] = STATE(1637), - [sym_while_expression] = STATE(1637), - [sym_loop_expression] = STATE(1637), - [sym_for_expression] = STATE(1637), - [sym_const_block] = STATE(1637), - [sym_closure_expression] = STATE(1637), - [sym_closure_parameters] = STATE(237), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1637), - [sym_continue_expression] = STATE(1637), - [sym_index_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_field_expression] = STATE(1620), - [sym_unsafe_block] = STATE(1637), - [sym_async_block] = STATE(1637), - [sym_try_block] = STATE(1637), - [sym_block] = STATE(1637), - [sym__literal] = STATE(1637), - [sym_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_boolean_literal] = STATE(1778), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1516), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1419), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(268), [sym_block_comment] = STATE(268), - [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_STAR] = ACTIONS(1021), - [anon_sym_u8] = ACTIONS(404), - [anon_sym_i8] = ACTIONS(404), - [anon_sym_u16] = ACTIONS(404), - [anon_sym_i16] = ACTIONS(404), - [anon_sym_u32] = ACTIONS(404), - [anon_sym_i32] = ACTIONS(404), - [anon_sym_u64] = ACTIONS(404), - [anon_sym_i64] = ACTIONS(404), - [anon_sym_u128] = ACTIONS(404), - [anon_sym_i128] = ACTIONS(404), - [anon_sym_isize] = ACTIONS(404), - [anon_sym_usize] = ACTIONS(404), - [anon_sym_f32] = ACTIONS(404), - [anon_sym_f64] = ACTIONS(404), - [anon_sym_bool] = ACTIONS(404), - [anon_sym_str] = ACTIONS(404), - [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_BANG] = ACTIONS(1021), - [anon_sym_AMP] = ACTIONS(1023), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1039), - [anon_sym_COLON_COLON] = ACTIONS(408), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_const] = ACTIONS(414), - [anon_sym_continue] = ACTIONS(416), - [anon_sym_default] = ACTIONS(418), - [anon_sym_for] = ACTIONS(420), - [anon_sym_if] = ACTIONS(422), - [anon_sym_loop] = ACTIONS(424), - [anon_sym_match] = ACTIONS(426), - [anon_sym_return] = ACTIONS(428), - [anon_sym_static] = ACTIONS(430), - [anon_sym_union] = ACTIONS(418), - [anon_sym_unsafe] = ACTIONS(432), - [anon_sym_while] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_move] = ACTIONS(438), - [anon_sym_try] = ACTIONS(440), - [sym_integer_literal] = ACTIONS(442), - [aux_sym_string_literal_token1] = ACTIONS(444), - [sym_char_literal] = ACTIONS(442), - [anon_sym_true] = ACTIONS(446), - [anon_sym_false] = ACTIONS(446), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(448), - [sym_super] = ACTIONS(450), - [sym_crate] = ACTIONS(450), - [sym_metavariable] = ACTIONS(452), - [sym__raw_string_literal_start] = ACTIONS(454), - [sym_float_literal] = ACTIONS(442), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1066), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(365), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [269] = { - [sym_bracketed_type] = STATE(3498), - [sym_generic_function] = STATE(1637), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1604), - [sym__expression] = STATE(1755), - [sym_macro_invocation] = STATE(1641), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3100), - [sym_range_expression] = STATE(1639), - [sym_unary_expression] = STATE(1637), - [sym_try_expression] = STATE(1637), - [sym_reference_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_assignment_expression] = STATE(1637), - [sym_compound_assignment_expr] = STATE(1637), - [sym_type_cast_expression] = STATE(1637), - [sym_return_expression] = STATE(1637), - [sym_yield_expression] = STATE(1637), - [sym_call_expression] = STATE(1637), - [sym_array_expression] = STATE(1637), - [sym_parenthesized_expression] = STATE(1637), - [sym_tuple_expression] = STATE(1637), - [sym_unit_expression] = STATE(1637), - [sym_struct_expression] = STATE(1637), - [sym_if_expression] = STATE(1637), - [sym_match_expression] = STATE(1637), - [sym_while_expression] = STATE(1637), - [sym_loop_expression] = STATE(1637), - [sym_for_expression] = STATE(1637), - [sym_const_block] = STATE(1637), - [sym_closure_expression] = STATE(1637), - [sym_closure_parameters] = STATE(237), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1637), - [sym_continue_expression] = STATE(1637), - [sym_index_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_field_expression] = STATE(1620), - [sym_unsafe_block] = STATE(1637), - [sym_async_block] = STATE(1637), - [sym_try_block] = STATE(1637), - [sym_block] = STATE(1637), - [sym__literal] = STATE(1637), - [sym_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_boolean_literal] = STATE(1778), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1525), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1419), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(269), [sym_block_comment] = STATE(269), - [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_STAR] = ACTIONS(1021), - [anon_sym_u8] = ACTIONS(404), - [anon_sym_i8] = ACTIONS(404), - [anon_sym_u16] = ACTIONS(404), - [anon_sym_i16] = ACTIONS(404), - [anon_sym_u32] = ACTIONS(404), - [anon_sym_i32] = ACTIONS(404), - [anon_sym_u64] = ACTIONS(404), - [anon_sym_i64] = ACTIONS(404), - [anon_sym_u128] = ACTIONS(404), - [anon_sym_i128] = ACTIONS(404), - [anon_sym_isize] = ACTIONS(404), - [anon_sym_usize] = ACTIONS(404), - [anon_sym_f32] = ACTIONS(404), - [anon_sym_f64] = ACTIONS(404), - [anon_sym_bool] = ACTIONS(404), - [anon_sym_str] = ACTIONS(404), - [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_BANG] = ACTIONS(1021), - [anon_sym_AMP] = ACTIONS(1023), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1039), - [anon_sym_COLON_COLON] = ACTIONS(408), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_const] = ACTIONS(414), - [anon_sym_continue] = ACTIONS(416), - [anon_sym_default] = ACTIONS(418), - [anon_sym_for] = ACTIONS(420), - [anon_sym_if] = ACTIONS(422), - [anon_sym_loop] = ACTIONS(424), - [anon_sym_match] = ACTIONS(426), - [anon_sym_return] = ACTIONS(428), - [anon_sym_static] = ACTIONS(430), - [anon_sym_union] = ACTIONS(418), - [anon_sym_unsafe] = ACTIONS(432), - [anon_sym_while] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_move] = ACTIONS(438), - [anon_sym_try] = ACTIONS(440), - [sym_integer_literal] = ACTIONS(442), - [aux_sym_string_literal_token1] = ACTIONS(444), - [sym_char_literal] = ACTIONS(442), - [anon_sym_true] = ACTIONS(446), - [anon_sym_false] = ACTIONS(446), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(448), - [sym_super] = ACTIONS(450), - [sym_crate] = ACTIONS(450), - [sym_metavariable] = ACTIONS(452), - [sym__raw_string_literal_start] = ACTIONS(454), - [sym_float_literal] = ACTIONS(442), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1066), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(365), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [270] = { - [sym_bracketed_type] = STATE(3498), - [sym_generic_function] = STATE(1637), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1604), - [sym__expression] = STATE(1756), - [sym_macro_invocation] = STATE(1641), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3100), - [sym_range_expression] = STATE(1639), - [sym_unary_expression] = STATE(1637), - [sym_try_expression] = STATE(1637), - [sym_reference_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_assignment_expression] = STATE(1637), - [sym_compound_assignment_expr] = STATE(1637), - [sym_type_cast_expression] = STATE(1637), - [sym_return_expression] = STATE(1637), - [sym_yield_expression] = STATE(1637), - [sym_call_expression] = STATE(1637), - [sym_array_expression] = STATE(1637), - [sym_parenthesized_expression] = STATE(1637), - [sym_tuple_expression] = STATE(1637), - [sym_unit_expression] = STATE(1637), - [sym_struct_expression] = STATE(1637), - [sym_if_expression] = STATE(1637), - [sym_match_expression] = STATE(1637), - [sym_while_expression] = STATE(1637), - [sym_loop_expression] = STATE(1637), - [sym_for_expression] = STATE(1637), - [sym_const_block] = STATE(1637), - [sym_closure_expression] = STATE(1637), - [sym_closure_parameters] = STATE(237), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1637), - [sym_continue_expression] = STATE(1637), - [sym_index_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_field_expression] = STATE(1620), - [sym_unsafe_block] = STATE(1637), - [sym_async_block] = STATE(1637), - [sym_try_block] = STATE(1637), - [sym_block] = STATE(1637), - [sym__literal] = STATE(1637), - [sym_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_boolean_literal] = STATE(1778), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1524), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1419), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(270), [sym_block_comment] = STATE(270), - [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_STAR] = ACTIONS(1021), - [anon_sym_u8] = ACTIONS(404), - [anon_sym_i8] = ACTIONS(404), - [anon_sym_u16] = ACTIONS(404), - [anon_sym_i16] = ACTIONS(404), - [anon_sym_u32] = ACTIONS(404), - [anon_sym_i32] = ACTIONS(404), - [anon_sym_u64] = ACTIONS(404), - [anon_sym_i64] = ACTIONS(404), - [anon_sym_u128] = ACTIONS(404), - [anon_sym_i128] = ACTIONS(404), - [anon_sym_isize] = ACTIONS(404), - [anon_sym_usize] = ACTIONS(404), - [anon_sym_f32] = ACTIONS(404), - [anon_sym_f64] = ACTIONS(404), - [anon_sym_bool] = ACTIONS(404), - [anon_sym_str] = ACTIONS(404), - [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_BANG] = ACTIONS(1021), - [anon_sym_AMP] = ACTIONS(1023), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1039), - [anon_sym_COLON_COLON] = ACTIONS(408), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_const] = ACTIONS(414), - [anon_sym_continue] = ACTIONS(416), - [anon_sym_default] = ACTIONS(418), - [anon_sym_for] = ACTIONS(420), - [anon_sym_if] = ACTIONS(422), - [anon_sym_loop] = ACTIONS(424), - [anon_sym_match] = ACTIONS(426), - [anon_sym_return] = ACTIONS(428), - [anon_sym_static] = ACTIONS(430), - [anon_sym_union] = ACTIONS(418), - [anon_sym_unsafe] = ACTIONS(432), - [anon_sym_while] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_move] = ACTIONS(438), - [anon_sym_try] = ACTIONS(440), - [sym_integer_literal] = ACTIONS(442), - [aux_sym_string_literal_token1] = ACTIONS(444), - [sym_char_literal] = ACTIONS(442), - [anon_sym_true] = ACTIONS(446), - [anon_sym_false] = ACTIONS(446), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(448), - [sym_super] = ACTIONS(450), - [sym_crate] = ACTIONS(450), - [sym_metavariable] = ACTIONS(452), - [sym__raw_string_literal_start] = ACTIONS(454), - [sym_float_literal] = ACTIONS(442), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1066), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(365), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [271] = { - [sym_bracketed_type] = STATE(3498), - [sym_generic_function] = STATE(1637), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1604), - [sym__expression] = STATE(1757), - [sym_macro_invocation] = STATE(1641), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3100), - [sym_range_expression] = STATE(1639), - [sym_unary_expression] = STATE(1637), - [sym_try_expression] = STATE(1637), - [sym_reference_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_assignment_expression] = STATE(1637), - [sym_compound_assignment_expr] = STATE(1637), - [sym_type_cast_expression] = STATE(1637), - [sym_return_expression] = STATE(1637), - [sym_yield_expression] = STATE(1637), - [sym_call_expression] = STATE(1637), - [sym_array_expression] = STATE(1637), - [sym_parenthesized_expression] = STATE(1637), - [sym_tuple_expression] = STATE(1637), - [sym_unit_expression] = STATE(1637), - [sym_struct_expression] = STATE(1637), - [sym_if_expression] = STATE(1637), - [sym_match_expression] = STATE(1637), - [sym_while_expression] = STATE(1637), - [sym_loop_expression] = STATE(1637), - [sym_for_expression] = STATE(1637), - [sym_const_block] = STATE(1637), - [sym_closure_expression] = STATE(1637), - [sym_closure_parameters] = STATE(237), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1637), - [sym_continue_expression] = STATE(1637), - [sym_index_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_field_expression] = STATE(1620), - [sym_unsafe_block] = STATE(1637), - [sym_async_block] = STATE(1637), - [sym_try_block] = STATE(1637), - [sym_block] = STATE(1637), - [sym__literal] = STATE(1637), - [sym_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_boolean_literal] = STATE(1778), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1520), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1419), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(271), [sym_block_comment] = STATE(271), - [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_STAR] = ACTIONS(1021), - [anon_sym_u8] = ACTIONS(404), - [anon_sym_i8] = ACTIONS(404), - [anon_sym_u16] = ACTIONS(404), - [anon_sym_i16] = ACTIONS(404), - [anon_sym_u32] = ACTIONS(404), - [anon_sym_i32] = ACTIONS(404), - [anon_sym_u64] = ACTIONS(404), - [anon_sym_i64] = ACTIONS(404), - [anon_sym_u128] = ACTIONS(404), - [anon_sym_i128] = ACTIONS(404), - [anon_sym_isize] = ACTIONS(404), - [anon_sym_usize] = ACTIONS(404), - [anon_sym_f32] = ACTIONS(404), - [anon_sym_f64] = ACTIONS(404), - [anon_sym_bool] = ACTIONS(404), - [anon_sym_str] = ACTIONS(404), - [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_BANG] = ACTIONS(1021), - [anon_sym_AMP] = ACTIONS(1023), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1039), - [anon_sym_COLON_COLON] = ACTIONS(408), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_const] = ACTIONS(414), - [anon_sym_continue] = ACTIONS(416), - [anon_sym_default] = ACTIONS(418), - [anon_sym_for] = ACTIONS(420), - [anon_sym_if] = ACTIONS(422), - [anon_sym_loop] = ACTIONS(424), - [anon_sym_match] = ACTIONS(426), - [anon_sym_return] = ACTIONS(428), - [anon_sym_static] = ACTIONS(430), - [anon_sym_union] = ACTIONS(418), - [anon_sym_unsafe] = ACTIONS(432), - [anon_sym_while] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_move] = ACTIONS(438), - [anon_sym_try] = ACTIONS(440), - [sym_integer_literal] = ACTIONS(442), - [aux_sym_string_literal_token1] = ACTIONS(444), - [sym_char_literal] = ACTIONS(442), - [anon_sym_true] = ACTIONS(446), - [anon_sym_false] = ACTIONS(446), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(448), - [sym_super] = ACTIONS(450), - [sym_crate] = ACTIONS(450), - [sym_metavariable] = ACTIONS(452), - [sym__raw_string_literal_start] = ACTIONS(454), - [sym_float_literal] = ACTIONS(442), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1066), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(365), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [272] = { - [sym_bracketed_type] = STATE(3498), - [sym_generic_function] = STATE(1637), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1604), - [sym__expression] = STATE(1758), - [sym_macro_invocation] = STATE(1641), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3100), - [sym_range_expression] = STATE(1639), - [sym_unary_expression] = STATE(1637), - [sym_try_expression] = STATE(1637), - [sym_reference_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_assignment_expression] = STATE(1637), - [sym_compound_assignment_expr] = STATE(1637), - [sym_type_cast_expression] = STATE(1637), - [sym_return_expression] = STATE(1637), - [sym_yield_expression] = STATE(1637), - [sym_call_expression] = STATE(1637), - [sym_array_expression] = STATE(1637), - [sym_parenthesized_expression] = STATE(1637), - [sym_tuple_expression] = STATE(1637), - [sym_unit_expression] = STATE(1637), - [sym_struct_expression] = STATE(1637), - [sym_if_expression] = STATE(1637), - [sym_match_expression] = STATE(1637), - [sym_while_expression] = STATE(1637), - [sym_loop_expression] = STATE(1637), - [sym_for_expression] = STATE(1637), - [sym_const_block] = STATE(1637), - [sym_closure_expression] = STATE(1637), - [sym_closure_parameters] = STATE(237), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1637), - [sym_continue_expression] = STATE(1637), - [sym_index_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_field_expression] = STATE(1620), - [sym_unsafe_block] = STATE(1637), - [sym_async_block] = STATE(1637), - [sym_try_block] = STATE(1637), - [sym_block] = STATE(1637), - [sym__literal] = STATE(1637), - [sym_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_boolean_literal] = STATE(1778), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1533), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1419), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(272), [sym_block_comment] = STATE(272), - [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_STAR] = ACTIONS(1021), - [anon_sym_u8] = ACTIONS(404), - [anon_sym_i8] = ACTIONS(404), - [anon_sym_u16] = ACTIONS(404), - [anon_sym_i16] = ACTIONS(404), - [anon_sym_u32] = ACTIONS(404), - [anon_sym_i32] = ACTIONS(404), - [anon_sym_u64] = ACTIONS(404), - [anon_sym_i64] = ACTIONS(404), - [anon_sym_u128] = ACTIONS(404), - [anon_sym_i128] = ACTIONS(404), - [anon_sym_isize] = ACTIONS(404), - [anon_sym_usize] = ACTIONS(404), - [anon_sym_f32] = ACTIONS(404), - [anon_sym_f64] = ACTIONS(404), - [anon_sym_bool] = ACTIONS(404), - [anon_sym_str] = ACTIONS(404), - [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_BANG] = ACTIONS(1021), - [anon_sym_AMP] = ACTIONS(1023), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1039), - [anon_sym_COLON_COLON] = ACTIONS(408), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_const] = ACTIONS(414), - [anon_sym_continue] = ACTIONS(416), - [anon_sym_default] = ACTIONS(418), - [anon_sym_for] = ACTIONS(420), - [anon_sym_if] = ACTIONS(422), - [anon_sym_loop] = ACTIONS(424), - [anon_sym_match] = ACTIONS(426), - [anon_sym_return] = ACTIONS(428), - [anon_sym_static] = ACTIONS(430), - [anon_sym_union] = ACTIONS(418), - [anon_sym_unsafe] = ACTIONS(432), - [anon_sym_while] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_move] = ACTIONS(438), - [anon_sym_try] = ACTIONS(440), - [sym_integer_literal] = ACTIONS(442), - [aux_sym_string_literal_token1] = ACTIONS(444), - [sym_char_literal] = ACTIONS(442), - [anon_sym_true] = ACTIONS(446), - [anon_sym_false] = ACTIONS(446), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(448), - [sym_super] = ACTIONS(450), - [sym_crate] = ACTIONS(450), - [sym_metavariable] = ACTIONS(452), - [sym__raw_string_literal_start] = ACTIONS(454), - [sym_float_literal] = ACTIONS(442), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1066), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(365), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [273] = { - [sym_bracketed_type] = STATE(3498), - [sym_generic_function] = STATE(1637), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1604), - [sym__expression] = STATE(1759), - [sym_macro_invocation] = STATE(1641), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3100), - [sym_range_expression] = STATE(1639), - [sym_unary_expression] = STATE(1637), - [sym_try_expression] = STATE(1637), - [sym_reference_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_assignment_expression] = STATE(1637), - [sym_compound_assignment_expr] = STATE(1637), - [sym_type_cast_expression] = STATE(1637), - [sym_return_expression] = STATE(1637), - [sym_yield_expression] = STATE(1637), - [sym_call_expression] = STATE(1637), - [sym_array_expression] = STATE(1637), - [sym_parenthesized_expression] = STATE(1637), - [sym_tuple_expression] = STATE(1637), - [sym_unit_expression] = STATE(1637), - [sym_struct_expression] = STATE(1637), - [sym_if_expression] = STATE(1637), - [sym_match_expression] = STATE(1637), - [sym_while_expression] = STATE(1637), - [sym_loop_expression] = STATE(1637), - [sym_for_expression] = STATE(1637), - [sym_const_block] = STATE(1637), - [sym_closure_expression] = STATE(1637), - [sym_closure_parameters] = STATE(237), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1637), - [sym_continue_expression] = STATE(1637), - [sym_index_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_field_expression] = STATE(1620), - [sym_unsafe_block] = STATE(1637), - [sym_async_block] = STATE(1637), - [sym_try_block] = STATE(1637), - [sym_block] = STATE(1637), - [sym__literal] = STATE(1637), - [sym_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_boolean_literal] = STATE(1778), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1537), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1419), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(273), [sym_block_comment] = STATE(273), - [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_STAR] = ACTIONS(1021), - [anon_sym_u8] = ACTIONS(404), - [anon_sym_i8] = ACTIONS(404), - [anon_sym_u16] = ACTIONS(404), - [anon_sym_i16] = ACTIONS(404), - [anon_sym_u32] = ACTIONS(404), - [anon_sym_i32] = ACTIONS(404), - [anon_sym_u64] = ACTIONS(404), - [anon_sym_i64] = ACTIONS(404), - [anon_sym_u128] = ACTIONS(404), - [anon_sym_i128] = ACTIONS(404), - [anon_sym_isize] = ACTIONS(404), - [anon_sym_usize] = ACTIONS(404), - [anon_sym_f32] = ACTIONS(404), - [anon_sym_f64] = ACTIONS(404), - [anon_sym_bool] = ACTIONS(404), - [anon_sym_str] = ACTIONS(404), - [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_BANG] = ACTIONS(1021), - [anon_sym_AMP] = ACTIONS(1023), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1039), - [anon_sym_COLON_COLON] = ACTIONS(408), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_const] = ACTIONS(414), - [anon_sym_continue] = ACTIONS(416), - [anon_sym_default] = ACTIONS(418), - [anon_sym_for] = ACTIONS(420), - [anon_sym_if] = ACTIONS(422), - [anon_sym_loop] = ACTIONS(424), - [anon_sym_match] = ACTIONS(426), - [anon_sym_return] = ACTIONS(428), - [anon_sym_static] = ACTIONS(430), - [anon_sym_union] = ACTIONS(418), - [anon_sym_unsafe] = ACTIONS(432), - [anon_sym_while] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_move] = ACTIONS(438), - [anon_sym_try] = ACTIONS(440), - [sym_integer_literal] = ACTIONS(442), - [aux_sym_string_literal_token1] = ACTIONS(444), - [sym_char_literal] = ACTIONS(442), - [anon_sym_true] = ACTIONS(446), - [anon_sym_false] = ACTIONS(446), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(448), - [sym_super] = ACTIONS(450), - [sym_crate] = ACTIONS(450), - [sym_metavariable] = ACTIONS(452), - [sym__raw_string_literal_start] = ACTIONS(454), - [sym_float_literal] = ACTIONS(442), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1066), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(365), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [274] = { - [sym_bracketed_type] = STATE(3498), - [sym_generic_function] = STATE(1637), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1604), - [sym__expression] = STATE(1760), - [sym_macro_invocation] = STATE(1641), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3100), - [sym_range_expression] = STATE(1639), - [sym_unary_expression] = STATE(1637), - [sym_try_expression] = STATE(1637), - [sym_reference_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_assignment_expression] = STATE(1637), - [sym_compound_assignment_expr] = STATE(1637), - [sym_type_cast_expression] = STATE(1637), - [sym_return_expression] = STATE(1637), - [sym_yield_expression] = STATE(1637), - [sym_call_expression] = STATE(1637), - [sym_array_expression] = STATE(1637), - [sym_parenthesized_expression] = STATE(1637), - [sym_tuple_expression] = STATE(1637), - [sym_unit_expression] = STATE(1637), - [sym_struct_expression] = STATE(1637), - [sym_if_expression] = STATE(1637), - [sym_match_expression] = STATE(1637), - [sym_while_expression] = STATE(1637), - [sym_loop_expression] = STATE(1637), - [sym_for_expression] = STATE(1637), - [sym_const_block] = STATE(1637), - [sym_closure_expression] = STATE(1637), - [sym_closure_parameters] = STATE(237), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1637), - [sym_continue_expression] = STATE(1637), - [sym_index_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_field_expression] = STATE(1620), - [sym_unsafe_block] = STATE(1637), - [sym_async_block] = STATE(1637), - [sym_try_block] = STATE(1637), - [sym_block] = STATE(1637), - [sym__literal] = STATE(1637), - [sym_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_boolean_literal] = STATE(1778), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1536), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1419), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(274), [sym_block_comment] = STATE(274), - [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_STAR] = ACTIONS(1021), - [anon_sym_u8] = ACTIONS(404), - [anon_sym_i8] = ACTIONS(404), - [anon_sym_u16] = ACTIONS(404), - [anon_sym_i16] = ACTIONS(404), - [anon_sym_u32] = ACTIONS(404), - [anon_sym_i32] = ACTIONS(404), - [anon_sym_u64] = ACTIONS(404), - [anon_sym_i64] = ACTIONS(404), - [anon_sym_u128] = ACTIONS(404), - [anon_sym_i128] = ACTIONS(404), - [anon_sym_isize] = ACTIONS(404), - [anon_sym_usize] = ACTIONS(404), - [anon_sym_f32] = ACTIONS(404), - [anon_sym_f64] = ACTIONS(404), - [anon_sym_bool] = ACTIONS(404), - [anon_sym_str] = ACTIONS(404), - [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_BANG] = ACTIONS(1021), - [anon_sym_AMP] = ACTIONS(1023), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1039), - [anon_sym_COLON_COLON] = ACTIONS(408), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_const] = ACTIONS(414), - [anon_sym_continue] = ACTIONS(416), - [anon_sym_default] = ACTIONS(418), - [anon_sym_for] = ACTIONS(420), - [anon_sym_if] = ACTIONS(422), - [anon_sym_loop] = ACTIONS(424), - [anon_sym_match] = ACTIONS(426), - [anon_sym_return] = ACTIONS(428), - [anon_sym_static] = ACTIONS(430), - [anon_sym_union] = ACTIONS(418), - [anon_sym_unsafe] = ACTIONS(432), - [anon_sym_while] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_move] = ACTIONS(438), - [anon_sym_try] = ACTIONS(440), - [sym_integer_literal] = ACTIONS(442), - [aux_sym_string_literal_token1] = ACTIONS(444), - [sym_char_literal] = ACTIONS(442), - [anon_sym_true] = ACTIONS(446), - [anon_sym_false] = ACTIONS(446), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(448), - [sym_super] = ACTIONS(450), - [sym_crate] = ACTIONS(450), - [sym_metavariable] = ACTIONS(452), - [sym__raw_string_literal_start] = ACTIONS(454), - [sym_float_literal] = ACTIONS(442), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1066), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(365), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [275] = { - [sym_bracketed_type] = STATE(3498), - [sym_generic_function] = STATE(1637), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1604), - [sym__expression] = STATE(1761), - [sym_macro_invocation] = STATE(1641), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3100), - [sym_range_expression] = STATE(1639), - [sym_unary_expression] = STATE(1637), - [sym_try_expression] = STATE(1637), - [sym_reference_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_assignment_expression] = STATE(1637), - [sym_compound_assignment_expr] = STATE(1637), - [sym_type_cast_expression] = STATE(1637), - [sym_return_expression] = STATE(1637), - [sym_yield_expression] = STATE(1637), - [sym_call_expression] = STATE(1637), - [sym_array_expression] = STATE(1637), - [sym_parenthesized_expression] = STATE(1637), - [sym_tuple_expression] = STATE(1637), - [sym_unit_expression] = STATE(1637), - [sym_struct_expression] = STATE(1637), - [sym_if_expression] = STATE(1637), - [sym_match_expression] = STATE(1637), - [sym_while_expression] = STATE(1637), - [sym_loop_expression] = STATE(1637), - [sym_for_expression] = STATE(1637), - [sym_const_block] = STATE(1637), - [sym_closure_expression] = STATE(1637), - [sym_closure_parameters] = STATE(237), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1637), - [sym_continue_expression] = STATE(1637), - [sym_index_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_field_expression] = STATE(1620), - [sym_unsafe_block] = STATE(1637), - [sym_async_block] = STATE(1637), - [sym_try_block] = STATE(1637), - [sym_block] = STATE(1637), - [sym__literal] = STATE(1637), - [sym_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_boolean_literal] = STATE(1778), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1522), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1419), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(275), [sym_block_comment] = STATE(275), - [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_STAR] = ACTIONS(1021), - [anon_sym_u8] = ACTIONS(404), - [anon_sym_i8] = ACTIONS(404), - [anon_sym_u16] = ACTIONS(404), - [anon_sym_i16] = ACTIONS(404), - [anon_sym_u32] = ACTIONS(404), - [anon_sym_i32] = ACTIONS(404), - [anon_sym_u64] = ACTIONS(404), - [anon_sym_i64] = ACTIONS(404), - [anon_sym_u128] = ACTIONS(404), - [anon_sym_i128] = ACTIONS(404), - [anon_sym_isize] = ACTIONS(404), - [anon_sym_usize] = ACTIONS(404), - [anon_sym_f32] = ACTIONS(404), - [anon_sym_f64] = ACTIONS(404), - [anon_sym_bool] = ACTIONS(404), - [anon_sym_str] = ACTIONS(404), - [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_BANG] = ACTIONS(1021), - [anon_sym_AMP] = ACTIONS(1023), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1039), - [anon_sym_COLON_COLON] = ACTIONS(408), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_const] = ACTIONS(414), - [anon_sym_continue] = ACTIONS(416), - [anon_sym_default] = ACTIONS(418), - [anon_sym_for] = ACTIONS(420), - [anon_sym_if] = ACTIONS(422), - [anon_sym_loop] = ACTIONS(424), - [anon_sym_match] = ACTIONS(426), - [anon_sym_return] = ACTIONS(428), - [anon_sym_static] = ACTIONS(430), - [anon_sym_union] = ACTIONS(418), - [anon_sym_unsafe] = ACTIONS(432), - [anon_sym_while] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_move] = ACTIONS(438), - [anon_sym_try] = ACTIONS(440), - [sym_integer_literal] = ACTIONS(442), - [aux_sym_string_literal_token1] = ACTIONS(444), - [sym_char_literal] = ACTIONS(442), - [anon_sym_true] = ACTIONS(446), - [anon_sym_false] = ACTIONS(446), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(448), - [sym_super] = ACTIONS(450), - [sym_crate] = ACTIONS(450), - [sym_metavariable] = ACTIONS(452), - [sym__raw_string_literal_start] = ACTIONS(454), - [sym_float_literal] = ACTIONS(442), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1066), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(365), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [276] = { - [sym_bracketed_type] = STATE(3498), - [sym_generic_function] = STATE(1637), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1604), - [sym__expression] = STATE(1762), - [sym_macro_invocation] = STATE(1641), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3100), - [sym_range_expression] = STATE(1639), - [sym_unary_expression] = STATE(1637), - [sym_try_expression] = STATE(1637), - [sym_reference_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_assignment_expression] = STATE(1637), - [sym_compound_assignment_expr] = STATE(1637), - [sym_type_cast_expression] = STATE(1637), - [sym_return_expression] = STATE(1637), - [sym_yield_expression] = STATE(1637), - [sym_call_expression] = STATE(1637), - [sym_array_expression] = STATE(1637), - [sym_parenthesized_expression] = STATE(1637), - [sym_tuple_expression] = STATE(1637), - [sym_unit_expression] = STATE(1637), - [sym_struct_expression] = STATE(1637), - [sym_if_expression] = STATE(1637), - [sym_match_expression] = STATE(1637), - [sym_while_expression] = STATE(1637), - [sym_loop_expression] = STATE(1637), - [sym_for_expression] = STATE(1637), - [sym_const_block] = STATE(1637), - [sym_closure_expression] = STATE(1637), - [sym_closure_parameters] = STATE(237), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1637), - [sym_continue_expression] = STATE(1637), - [sym_index_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_field_expression] = STATE(1620), - [sym_unsafe_block] = STATE(1637), - [sym_async_block] = STATE(1637), - [sym_try_block] = STATE(1637), - [sym_block] = STATE(1637), - [sym__literal] = STATE(1637), - [sym_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_boolean_literal] = STATE(1778), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1523), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1419), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(276), [sym_block_comment] = STATE(276), - [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_STAR] = ACTIONS(1021), - [anon_sym_u8] = ACTIONS(404), - [anon_sym_i8] = ACTIONS(404), - [anon_sym_u16] = ACTIONS(404), - [anon_sym_i16] = ACTIONS(404), - [anon_sym_u32] = ACTIONS(404), - [anon_sym_i32] = ACTIONS(404), - [anon_sym_u64] = ACTIONS(404), - [anon_sym_i64] = ACTIONS(404), - [anon_sym_u128] = ACTIONS(404), - [anon_sym_i128] = ACTIONS(404), - [anon_sym_isize] = ACTIONS(404), - [anon_sym_usize] = ACTIONS(404), - [anon_sym_f32] = ACTIONS(404), - [anon_sym_f64] = ACTIONS(404), - [anon_sym_bool] = ACTIONS(404), - [anon_sym_str] = ACTIONS(404), - [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_BANG] = ACTIONS(1021), - [anon_sym_AMP] = ACTIONS(1023), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1039), - [anon_sym_COLON_COLON] = ACTIONS(408), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_const] = ACTIONS(414), - [anon_sym_continue] = ACTIONS(416), - [anon_sym_default] = ACTIONS(418), - [anon_sym_for] = ACTIONS(420), - [anon_sym_if] = ACTIONS(422), - [anon_sym_loop] = ACTIONS(424), - [anon_sym_match] = ACTIONS(426), - [anon_sym_return] = ACTIONS(428), - [anon_sym_static] = ACTIONS(430), - [anon_sym_union] = ACTIONS(418), - [anon_sym_unsafe] = ACTIONS(432), - [anon_sym_while] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_move] = ACTIONS(438), - [anon_sym_try] = ACTIONS(440), - [sym_integer_literal] = ACTIONS(442), - [aux_sym_string_literal_token1] = ACTIONS(444), - [sym_char_literal] = ACTIONS(442), - [anon_sym_true] = ACTIONS(446), - [anon_sym_false] = ACTIONS(446), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(448), - [sym_super] = ACTIONS(450), - [sym_crate] = ACTIONS(450), - [sym_metavariable] = ACTIONS(452), - [sym__raw_string_literal_start] = ACTIONS(454), - [sym_float_literal] = ACTIONS(442), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1066), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(365), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [277] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1722), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1876), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1419), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(277), [sym_block_comment] = STATE(277), - [sym_identifier] = ACTIONS(456), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(1041), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(1041), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_AMP] = ACTIONS(1043), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1230), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(464), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(468), - [anon_sym_static] = ACTIONS(470), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(472), - [anon_sym_move] = ACTIONS(474), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(365), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [278] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1843), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1696), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1419), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(278), [sym_block_comment] = STATE(278), - [sym_identifier] = ACTIONS(334), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(365), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [279] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1844), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1534), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1419), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(279), [sym_block_comment] = STATE(279), - [sym_identifier] = ACTIONS(334), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(365), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [280] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1629), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2791), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1862), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1574), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(241), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(280), [sym_block_comment] = STATE(280), - [sym_identifier] = ACTIONS(456), + [sym_identifier] = ACTIONS(471), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1055), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1054), + [anon_sym_u8] = ACTIONS(473), + [anon_sym_i8] = ACTIONS(473), + [anon_sym_u16] = ACTIONS(473), + [anon_sym_i16] = ACTIONS(473), + [anon_sym_u32] = ACTIONS(473), + [anon_sym_i32] = ACTIONS(473), + [anon_sym_u64] = ACTIONS(473), + [anon_sym_i64] = ACTIONS(473), + [anon_sym_u128] = ACTIONS(473), + [anon_sym_i128] = ACTIONS(473), + [anon_sym_isize] = ACTIONS(473), + [anon_sym_usize] = ACTIONS(473), + [anon_sym_f32] = ACTIONS(473), + [anon_sym_f64] = ACTIONS(473), + [anon_sym_bool] = ACTIONS(473), + [anon_sym_str] = ACTIONS(473), + [anon_sym_char] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(1054), + [anon_sym_BANG] = ACTIONS(1054), + [anon_sym_AMP] = ACTIONS(1056), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1247), + [anon_sym_COLON_COLON] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(479), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(481), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(483), + [anon_sym_static] = ACTIONS(485), + [anon_sym_union] = ACTIONS(481), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(487), + [anon_sym_move] = ACTIONS(489), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [281] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1251), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(281), [sym_block_comment] = STATE(281), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1055), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [ts_builtin_sym_end] = ACTIONS(1249), + [sym_identifier] = ACTIONS(1251), + [anon_sym_SEMI] = ACTIONS(1249), + [anon_sym_macro_rules_BANG] = ACTIONS(1249), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_LBRACK] = ACTIONS(1249), + [anon_sym_LBRACE] = ACTIONS(1249), + [anon_sym_RBRACE] = ACTIONS(1249), + [anon_sym_macro] = ACTIONS(1251), + [anon_sym_PLUS] = ACTIONS(1251), + [anon_sym_STAR] = ACTIONS(1251), + [anon_sym_QMARK] = ACTIONS(1249), + [anon_sym_u8] = ACTIONS(1251), + [anon_sym_i8] = ACTIONS(1251), + [anon_sym_u16] = ACTIONS(1251), + [anon_sym_i16] = ACTIONS(1251), + [anon_sym_u32] = ACTIONS(1251), + [anon_sym_i32] = ACTIONS(1251), + [anon_sym_u64] = ACTIONS(1251), + [anon_sym_i64] = ACTIONS(1251), + [anon_sym_u128] = ACTIONS(1251), + [anon_sym_i128] = ACTIONS(1251), + [anon_sym_isize] = ACTIONS(1251), + [anon_sym_usize] = ACTIONS(1251), + [anon_sym_f32] = ACTIONS(1251), + [anon_sym_f64] = ACTIONS(1251), + [anon_sym_bool] = ACTIONS(1251), + [anon_sym_str] = ACTIONS(1251), + [anon_sym_char] = ACTIONS(1251), + [anon_sym_DASH] = ACTIONS(1251), + [anon_sym_SLASH] = ACTIONS(1251), + [anon_sym_PERCENT] = ACTIONS(1251), + [anon_sym_CARET] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(1251), + [anon_sym_AMP] = ACTIONS(1251), + [anon_sym_PIPE] = ACTIONS(1251), + [anon_sym_AMP_AMP] = ACTIONS(1249), + [anon_sym_PIPE_PIPE] = ACTIONS(1249), + [anon_sym_LT_LT] = ACTIONS(1251), + [anon_sym_GT_GT] = ACTIONS(1251), + [anon_sym_PLUS_EQ] = ACTIONS(1249), + [anon_sym_DASH_EQ] = ACTIONS(1249), + [anon_sym_STAR_EQ] = ACTIONS(1249), + [anon_sym_SLASH_EQ] = ACTIONS(1249), + [anon_sym_PERCENT_EQ] = ACTIONS(1249), + [anon_sym_CARET_EQ] = ACTIONS(1249), + [anon_sym_AMP_EQ] = ACTIONS(1249), + [anon_sym_PIPE_EQ] = ACTIONS(1249), + [anon_sym_LT_LT_EQ] = ACTIONS(1249), + [anon_sym_GT_GT_EQ] = ACTIONS(1249), + [anon_sym_EQ] = ACTIONS(1251), + [anon_sym_EQ_EQ] = ACTIONS(1249), + [anon_sym_BANG_EQ] = ACTIONS(1249), + [anon_sym_GT] = ACTIONS(1251), + [anon_sym_LT] = ACTIONS(1251), + [anon_sym_GT_EQ] = ACTIONS(1249), + [anon_sym_LT_EQ] = ACTIONS(1249), + [anon_sym_DOT] = ACTIONS(1251), + [anon_sym_DOT_DOT] = ACTIONS(1251), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1249), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1249), + [anon_sym_COLON_COLON] = ACTIONS(1249), + [anon_sym_POUND] = ACTIONS(1249), + [anon_sym_SQUOTE] = ACTIONS(1251), + [anon_sym_as] = ACTIONS(1251), + [anon_sym_async] = ACTIONS(1251), + [anon_sym_break] = ACTIONS(1251), + [anon_sym_const] = ACTIONS(1251), + [anon_sym_continue] = ACTIONS(1251), + [anon_sym_default] = ACTIONS(1251), + [anon_sym_enum] = ACTIONS(1251), + [anon_sym_fn] = ACTIONS(1251), + [anon_sym_for] = ACTIONS(1251), + [anon_sym_if] = ACTIONS(1251), + [anon_sym_impl] = ACTIONS(1251), + [anon_sym_let] = ACTIONS(1251), + [anon_sym_loop] = ACTIONS(1251), + [anon_sym_match] = ACTIONS(1251), + [anon_sym_mod] = ACTIONS(1251), + [anon_sym_pub] = ACTIONS(1251), + [anon_sym_return] = ACTIONS(1251), + [anon_sym_static] = ACTIONS(1251), + [anon_sym_struct] = ACTIONS(1251), + [anon_sym_trait] = ACTIONS(1251), + [anon_sym_type] = ACTIONS(1251), + [anon_sym_union] = ACTIONS(1251), + [anon_sym_unsafe] = ACTIONS(1251), + [anon_sym_use] = ACTIONS(1251), + [anon_sym_while] = ACTIONS(1251), + [anon_sym_extern] = ACTIONS(1251), + [anon_sym_yield] = ACTIONS(1251), + [anon_sym_move] = ACTIONS(1251), + [anon_sym_try] = ACTIONS(1251), + [sym_integer_literal] = ACTIONS(1249), + [aux_sym_string_literal_token1] = ACTIONS(1249), + [sym_char_literal] = ACTIONS(1249), + [anon_sym_true] = ACTIONS(1251), + [anon_sym_false] = ACTIONS(1251), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1251), + [sym_super] = ACTIONS(1251), + [sym_crate] = ACTIONS(1251), + [sym_metavariable] = ACTIONS(1249), + [sym__raw_string_literal_start] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1249), }, [282] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1630), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2791), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1405), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1574), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(241), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(282), [sym_block_comment] = STATE(282), - [sym_identifier] = ACTIONS(456), + [sym_identifier] = ACTIONS(471), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1055), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1054), + [anon_sym_u8] = ACTIONS(473), + [anon_sym_i8] = ACTIONS(473), + [anon_sym_u16] = ACTIONS(473), + [anon_sym_i16] = ACTIONS(473), + [anon_sym_u32] = ACTIONS(473), + [anon_sym_i32] = ACTIONS(473), + [anon_sym_u64] = ACTIONS(473), + [anon_sym_i64] = ACTIONS(473), + [anon_sym_u128] = ACTIONS(473), + [anon_sym_i128] = ACTIONS(473), + [anon_sym_isize] = ACTIONS(473), + [anon_sym_usize] = ACTIONS(473), + [anon_sym_f32] = ACTIONS(473), + [anon_sym_f64] = ACTIONS(473), + [anon_sym_bool] = ACTIONS(473), + [anon_sym_str] = ACTIONS(473), + [anon_sym_char] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(1054), + [anon_sym_BANG] = ACTIONS(1054), + [anon_sym_AMP] = ACTIONS(1056), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1060), + [anon_sym_COLON_COLON] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(479), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(481), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(483), + [anon_sym_static] = ACTIONS(485), + [anon_sym_union] = ACTIONS(481), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(487), + [anon_sym_move] = ACTIONS(489), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [283] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1579), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1896), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1419), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(283), [sym_block_comment] = STATE(283), - [sym_identifier] = ACTIONS(456), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1055), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(365), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [284] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1580), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2791), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1778), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1574), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(249), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(284), [sym_block_comment] = STATE(284), - [sym_identifier] = ACTIONS(456), + [sym_identifier] = ACTIONS(471), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1055), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_u8] = ACTIONS(473), + [anon_sym_i8] = ACTIONS(473), + [anon_sym_u16] = ACTIONS(473), + [anon_sym_i16] = ACTIONS(473), + [anon_sym_u32] = ACTIONS(473), + [anon_sym_i32] = ACTIONS(473), + [anon_sym_u64] = ACTIONS(473), + [anon_sym_i64] = ACTIONS(473), + [anon_sym_u128] = ACTIONS(473), + [anon_sym_i128] = ACTIONS(473), + [anon_sym_isize] = ACTIONS(473), + [anon_sym_usize] = ACTIONS(473), + [anon_sym_f32] = ACTIONS(473), + [anon_sym_f64] = ACTIONS(473), + [anon_sym_bool] = ACTIONS(473), + [anon_sym_str] = ACTIONS(473), + [anon_sym_char] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(998), + [anon_sym_BANG] = ACTIONS(998), + [anon_sym_AMP] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_COLON_COLON] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(499), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_default] = ACTIONS(481), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(503), + [anon_sym_static] = ACTIONS(505), + [anon_sym_union] = ACTIONS(481), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(507), + [anon_sym_move] = ACTIONS(509), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [285] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1588), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(285), [sym_block_comment] = STATE(285), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1055), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [ts_builtin_sym_end] = ACTIONS(1253), + [sym_identifier] = ACTIONS(1255), + [anon_sym_SEMI] = ACTIONS(1253), + [anon_sym_macro_rules_BANG] = ACTIONS(1253), + [anon_sym_LPAREN] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1253), + [anon_sym_LBRACE] = ACTIONS(1253), + [anon_sym_RBRACE] = ACTIONS(1253), + [anon_sym_macro] = ACTIONS(1255), + [anon_sym_PLUS] = ACTIONS(1255), + [anon_sym_STAR] = ACTIONS(1255), + [anon_sym_QMARK] = ACTIONS(1253), + [anon_sym_u8] = ACTIONS(1255), + [anon_sym_i8] = ACTIONS(1255), + [anon_sym_u16] = ACTIONS(1255), + [anon_sym_i16] = ACTIONS(1255), + [anon_sym_u32] = ACTIONS(1255), + [anon_sym_i32] = ACTIONS(1255), + [anon_sym_u64] = ACTIONS(1255), + [anon_sym_i64] = ACTIONS(1255), + [anon_sym_u128] = ACTIONS(1255), + [anon_sym_i128] = ACTIONS(1255), + [anon_sym_isize] = ACTIONS(1255), + [anon_sym_usize] = ACTIONS(1255), + [anon_sym_f32] = ACTIONS(1255), + [anon_sym_f64] = ACTIONS(1255), + [anon_sym_bool] = ACTIONS(1255), + [anon_sym_str] = ACTIONS(1255), + [anon_sym_char] = ACTIONS(1255), + [anon_sym_DASH] = ACTIONS(1255), + [anon_sym_SLASH] = ACTIONS(1255), + [anon_sym_PERCENT] = ACTIONS(1255), + [anon_sym_CARET] = ACTIONS(1255), + [anon_sym_BANG] = ACTIONS(1255), + [anon_sym_AMP] = ACTIONS(1255), + [anon_sym_PIPE] = ACTIONS(1255), + [anon_sym_AMP_AMP] = ACTIONS(1253), + [anon_sym_PIPE_PIPE] = ACTIONS(1253), + [anon_sym_LT_LT] = ACTIONS(1255), + [anon_sym_GT_GT] = ACTIONS(1255), + [anon_sym_PLUS_EQ] = ACTIONS(1253), + [anon_sym_DASH_EQ] = ACTIONS(1253), + [anon_sym_STAR_EQ] = ACTIONS(1253), + [anon_sym_SLASH_EQ] = ACTIONS(1253), + [anon_sym_PERCENT_EQ] = ACTIONS(1253), + [anon_sym_CARET_EQ] = ACTIONS(1253), + [anon_sym_AMP_EQ] = ACTIONS(1253), + [anon_sym_PIPE_EQ] = ACTIONS(1253), + [anon_sym_LT_LT_EQ] = ACTIONS(1253), + [anon_sym_GT_GT_EQ] = ACTIONS(1253), + [anon_sym_EQ] = ACTIONS(1255), + [anon_sym_EQ_EQ] = ACTIONS(1253), + [anon_sym_BANG_EQ] = ACTIONS(1253), + [anon_sym_GT] = ACTIONS(1255), + [anon_sym_LT] = ACTIONS(1255), + [anon_sym_GT_EQ] = ACTIONS(1253), + [anon_sym_LT_EQ] = ACTIONS(1253), + [anon_sym_DOT] = ACTIONS(1255), + [anon_sym_DOT_DOT] = ACTIONS(1255), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1253), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1253), + [anon_sym_COLON_COLON] = ACTIONS(1253), + [anon_sym_POUND] = ACTIONS(1253), + [anon_sym_SQUOTE] = ACTIONS(1255), + [anon_sym_as] = ACTIONS(1255), + [anon_sym_async] = ACTIONS(1255), + [anon_sym_break] = ACTIONS(1255), + [anon_sym_const] = ACTIONS(1255), + [anon_sym_continue] = ACTIONS(1255), + [anon_sym_default] = ACTIONS(1255), + [anon_sym_enum] = ACTIONS(1255), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1255), + [anon_sym_if] = ACTIONS(1255), + [anon_sym_impl] = ACTIONS(1255), + [anon_sym_let] = ACTIONS(1255), + [anon_sym_loop] = ACTIONS(1255), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_mod] = ACTIONS(1255), + [anon_sym_pub] = ACTIONS(1255), + [anon_sym_return] = ACTIONS(1255), + [anon_sym_static] = ACTIONS(1255), + [anon_sym_struct] = ACTIONS(1255), + [anon_sym_trait] = ACTIONS(1255), + [anon_sym_type] = ACTIONS(1255), + [anon_sym_union] = ACTIONS(1255), + [anon_sym_unsafe] = ACTIONS(1255), + [anon_sym_use] = ACTIONS(1255), + [anon_sym_while] = ACTIONS(1255), + [anon_sym_extern] = ACTIONS(1255), + [anon_sym_yield] = ACTIONS(1255), + [anon_sym_move] = ACTIONS(1255), + [anon_sym_try] = ACTIONS(1255), + [sym_integer_literal] = ACTIONS(1253), + [aux_sym_string_literal_token1] = ACTIONS(1253), + [sym_char_literal] = ACTIONS(1253), + [anon_sym_true] = ACTIONS(1255), + [anon_sym_false] = ACTIONS(1255), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1255), + [sym_super] = ACTIONS(1255), + [sym_crate] = ACTIONS(1255), + [sym_metavariable] = ACTIONS(1253), + [sym__raw_string_literal_start] = ACTIONS(1253), + [sym_float_literal] = ACTIONS(1253), }, [286] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1722), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1405), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1419), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(286), [sym_block_comment] = STATE(286), - [sym_identifier] = ACTIONS(456), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(1041), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(1041), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_AMP] = ACTIONS(1043), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(464), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(468), - [anon_sym_static] = ACTIONS(470), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(472), - [anon_sym_move] = ACTIONS(474), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1066), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(365), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [287] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1716), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(287), [sym_block_comment] = STATE(287), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(1041), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(1041), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_AMP] = ACTIONS(1043), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(464), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(468), - [anon_sym_static] = ACTIONS(470), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(472), - [anon_sym_move] = ACTIONS(474), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [ts_builtin_sym_end] = ACTIONS(1257), + [sym_identifier] = ACTIONS(1259), + [anon_sym_SEMI] = ACTIONS(1257), + [anon_sym_macro_rules_BANG] = ACTIONS(1257), + [anon_sym_LPAREN] = ACTIONS(1257), + [anon_sym_LBRACK] = ACTIONS(1257), + [anon_sym_LBRACE] = ACTIONS(1257), + [anon_sym_RBRACE] = ACTIONS(1257), + [anon_sym_macro] = ACTIONS(1259), + [anon_sym_PLUS] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1259), + [anon_sym_QMARK] = ACTIONS(1257), + [anon_sym_u8] = ACTIONS(1259), + [anon_sym_i8] = ACTIONS(1259), + [anon_sym_u16] = ACTIONS(1259), + [anon_sym_i16] = ACTIONS(1259), + [anon_sym_u32] = ACTIONS(1259), + [anon_sym_i32] = ACTIONS(1259), + [anon_sym_u64] = ACTIONS(1259), + [anon_sym_i64] = ACTIONS(1259), + [anon_sym_u128] = ACTIONS(1259), + [anon_sym_i128] = ACTIONS(1259), + [anon_sym_isize] = ACTIONS(1259), + [anon_sym_usize] = ACTIONS(1259), + [anon_sym_f32] = ACTIONS(1259), + [anon_sym_f64] = ACTIONS(1259), + [anon_sym_bool] = ACTIONS(1259), + [anon_sym_str] = ACTIONS(1259), + [anon_sym_char] = ACTIONS(1259), + [anon_sym_DASH] = ACTIONS(1259), + [anon_sym_SLASH] = ACTIONS(1259), + [anon_sym_PERCENT] = ACTIONS(1259), + [anon_sym_CARET] = ACTIONS(1259), + [anon_sym_BANG] = ACTIONS(1259), + [anon_sym_AMP] = ACTIONS(1259), + [anon_sym_PIPE] = ACTIONS(1259), + [anon_sym_AMP_AMP] = ACTIONS(1257), + [anon_sym_PIPE_PIPE] = ACTIONS(1257), + [anon_sym_LT_LT] = ACTIONS(1259), + [anon_sym_GT_GT] = ACTIONS(1259), + [anon_sym_PLUS_EQ] = ACTIONS(1257), + [anon_sym_DASH_EQ] = ACTIONS(1257), + [anon_sym_STAR_EQ] = ACTIONS(1257), + [anon_sym_SLASH_EQ] = ACTIONS(1257), + [anon_sym_PERCENT_EQ] = ACTIONS(1257), + [anon_sym_CARET_EQ] = ACTIONS(1257), + [anon_sym_AMP_EQ] = ACTIONS(1257), + [anon_sym_PIPE_EQ] = ACTIONS(1257), + [anon_sym_LT_LT_EQ] = ACTIONS(1257), + [anon_sym_GT_GT_EQ] = ACTIONS(1257), + [anon_sym_EQ] = ACTIONS(1259), + [anon_sym_EQ_EQ] = ACTIONS(1257), + [anon_sym_BANG_EQ] = ACTIONS(1257), + [anon_sym_GT] = ACTIONS(1259), + [anon_sym_LT] = ACTIONS(1259), + [anon_sym_GT_EQ] = ACTIONS(1257), + [anon_sym_LT_EQ] = ACTIONS(1257), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_DOT_DOT] = ACTIONS(1259), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1257), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1257), + [anon_sym_COLON_COLON] = ACTIONS(1257), + [anon_sym_POUND] = ACTIONS(1257), + [anon_sym_SQUOTE] = ACTIONS(1259), + [anon_sym_as] = ACTIONS(1259), + [anon_sym_async] = ACTIONS(1259), + [anon_sym_break] = ACTIONS(1259), + [anon_sym_const] = ACTIONS(1259), + [anon_sym_continue] = ACTIONS(1259), + [anon_sym_default] = ACTIONS(1259), + [anon_sym_enum] = ACTIONS(1259), + [anon_sym_fn] = ACTIONS(1259), + [anon_sym_for] = ACTIONS(1259), + [anon_sym_if] = ACTIONS(1259), + [anon_sym_impl] = ACTIONS(1259), + [anon_sym_let] = ACTIONS(1259), + [anon_sym_loop] = ACTIONS(1259), + [anon_sym_match] = ACTIONS(1259), + [anon_sym_mod] = ACTIONS(1259), + [anon_sym_pub] = ACTIONS(1259), + [anon_sym_return] = ACTIONS(1259), + [anon_sym_static] = ACTIONS(1259), + [anon_sym_struct] = ACTIONS(1259), + [anon_sym_trait] = ACTIONS(1259), + [anon_sym_type] = ACTIONS(1259), + [anon_sym_union] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1259), + [anon_sym_use] = ACTIONS(1259), + [anon_sym_while] = ACTIONS(1259), + [anon_sym_extern] = ACTIONS(1259), + [anon_sym_yield] = ACTIONS(1259), + [anon_sym_move] = ACTIONS(1259), + [anon_sym_try] = ACTIONS(1259), + [sym_integer_literal] = ACTIONS(1257), + [aux_sym_string_literal_token1] = ACTIONS(1257), + [sym_char_literal] = ACTIONS(1257), + [anon_sym_true] = ACTIONS(1259), + [anon_sym_false] = ACTIONS(1259), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1259), + [sym_super] = ACTIONS(1259), + [sym_crate] = ACTIONS(1259), + [sym_metavariable] = ACTIONS(1257), + [sym__raw_string_literal_start] = ACTIONS(1257), + [sym_float_literal] = ACTIONS(1257), }, [288] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1593), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1797), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1419), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(288), [sym_block_comment] = STATE(288), - [sym_identifier] = ACTIONS(456), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1055), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(365), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [289] = { - [sym_bracketed_type] = STATE(3498), - [sym_generic_function] = STATE(1637), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1604), - [sym__expression] = STATE(1763), - [sym_macro_invocation] = STATE(1641), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3100), - [sym_range_expression] = STATE(1639), - [sym_unary_expression] = STATE(1637), - [sym_try_expression] = STATE(1637), - [sym_reference_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_assignment_expression] = STATE(1637), - [sym_compound_assignment_expr] = STATE(1637), - [sym_type_cast_expression] = STATE(1637), - [sym_return_expression] = STATE(1637), - [sym_yield_expression] = STATE(1637), - [sym_call_expression] = STATE(1637), - [sym_array_expression] = STATE(1637), - [sym_parenthesized_expression] = STATE(1637), - [sym_tuple_expression] = STATE(1637), - [sym_unit_expression] = STATE(1637), - [sym_struct_expression] = STATE(1637), - [sym_if_expression] = STATE(1637), - [sym_match_expression] = STATE(1637), - [sym_while_expression] = STATE(1637), - [sym_loop_expression] = STATE(1637), - [sym_for_expression] = STATE(1637), - [sym_const_block] = STATE(1637), - [sym_closure_expression] = STATE(1637), - [sym_closure_parameters] = STATE(237), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1637), - [sym_continue_expression] = STATE(1637), - [sym_index_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_field_expression] = STATE(1620), - [sym_unsafe_block] = STATE(1637), - [sym_async_block] = STATE(1637), - [sym_try_block] = STATE(1637), - [sym_block] = STATE(1637), - [sym__literal] = STATE(1637), - [sym_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_boolean_literal] = STATE(1778), + [sym_bracketed_type] = STATE(3593), + [sym_generic_function] = STATE(1742), + [sym_generic_type_with_turbofish] = STATE(2901), + [sym__expression_except_range] = STATE(1655), + [sym__expression] = STATE(1831), + [sym_macro_invocation] = STATE(1752), + [sym_scoped_identifier] = STATE(1584), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1746), + [sym_unary_expression] = STATE(1742), + [sym_try_expression] = STATE(1742), + [sym_reference_expression] = STATE(1742), + [sym_binary_expression] = STATE(1742), + [sym_assignment_expression] = STATE(1742), + [sym_compound_assignment_expr] = STATE(1742), + [sym_type_cast_expression] = STATE(1742), + [sym_return_expression] = STATE(1742), + [sym_yield_expression] = STATE(1742), + [sym_call_expression] = STATE(1742), + [sym_array_expression] = STATE(1742), + [sym_parenthesized_expression] = STATE(1742), + [sym_tuple_expression] = STATE(1742), + [sym_unit_expression] = STATE(1742), + [sym_struct_expression] = STATE(1742), + [sym_if_expression] = STATE(1742), + [sym_match_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_loop_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_const_block] = STATE(1742), + [sym_closure_expression] = STATE(1742), + [sym_closure_parameters] = STATE(244), + [sym_label] = STATE(3682), + [sym_break_expression] = STATE(1742), + [sym_continue_expression] = STATE(1742), + [sym_index_expression] = STATE(1742), + [sym_await_expression] = STATE(1742), + [sym_field_expression] = STATE(1652), + [sym_unsafe_block] = STATE(1742), + [sym_async_block] = STATE(1742), + [sym_try_block] = STATE(1742), + [sym_block] = STATE(1742), + [sym__literal] = STATE(1742), + [sym_string_literal] = STATE(1723), + [sym_raw_string_literal] = STATE(1723), + [sym_boolean_literal] = STATE(1723), [sym_line_comment] = STATE(289), [sym_block_comment] = STATE(289), - [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_STAR] = ACTIONS(1021), - [anon_sym_u8] = ACTIONS(404), - [anon_sym_i8] = ACTIONS(404), - [anon_sym_u16] = ACTIONS(404), - [anon_sym_i16] = ACTIONS(404), - [anon_sym_u32] = ACTIONS(404), - [anon_sym_i32] = ACTIONS(404), - [anon_sym_u64] = ACTIONS(404), - [anon_sym_i64] = ACTIONS(404), - [anon_sym_u128] = ACTIONS(404), - [anon_sym_i128] = ACTIONS(404), - [anon_sym_isize] = ACTIONS(404), - [anon_sym_usize] = ACTIONS(404), - [anon_sym_f32] = ACTIONS(404), - [anon_sym_f64] = ACTIONS(404), - [anon_sym_bool] = ACTIONS(404), - [anon_sym_str] = ACTIONS(404), - [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_BANG] = ACTIONS(1021), - [anon_sym_AMP] = ACTIONS(1023), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(408), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_const] = ACTIONS(414), - [anon_sym_continue] = ACTIONS(416), - [anon_sym_default] = ACTIONS(418), - [anon_sym_for] = ACTIONS(420), - [anon_sym_if] = ACTIONS(422), - [anon_sym_loop] = ACTIONS(424), - [anon_sym_match] = ACTIONS(426), - [anon_sym_return] = ACTIONS(428), - [anon_sym_static] = ACTIONS(430), - [anon_sym_union] = ACTIONS(418), - [anon_sym_unsafe] = ACTIONS(432), - [anon_sym_while] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_move] = ACTIONS(438), - [anon_sym_try] = ACTIONS(440), - [sym_integer_literal] = ACTIONS(442), - [aux_sym_string_literal_token1] = ACTIONS(444), - [sym_char_literal] = ACTIONS(442), - [anon_sym_true] = ACTIONS(446), - [anon_sym_false] = ACTIONS(446), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(448), - [sym_super] = ACTIONS(450), - [sym_crate] = ACTIONS(450), - [sym_metavariable] = ACTIONS(452), - [sym__raw_string_literal_start] = ACTIONS(454), - [sym_float_literal] = ACTIONS(442), + [sym_identifier] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(461), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LBRACE] = ACTIONS(405), + [anon_sym_STAR] = ACTIONS(1020), + [anon_sym_u8] = ACTIONS(409), + [anon_sym_i8] = ACTIONS(409), + [anon_sym_u16] = ACTIONS(409), + [anon_sym_i16] = ACTIONS(409), + [anon_sym_u32] = ACTIONS(409), + [anon_sym_i32] = ACTIONS(409), + [anon_sym_u64] = ACTIONS(409), + [anon_sym_i64] = ACTIONS(409), + [anon_sym_u128] = ACTIONS(409), + [anon_sym_i128] = ACTIONS(409), + [anon_sym_isize] = ACTIONS(409), + [anon_sym_usize] = ACTIONS(409), + [anon_sym_f32] = ACTIONS(409), + [anon_sym_f64] = ACTIONS(409), + [anon_sym_bool] = ACTIONS(409), + [anon_sym_str] = ACTIONS(409), + [anon_sym_char] = ACTIONS(409), + [anon_sym_DASH] = ACTIONS(1020), + [anon_sym_BANG] = ACTIONS(1020), + [anon_sym_AMP] = ACTIONS(1022), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1082), + [anon_sym_COLON_COLON] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(415), + [anon_sym_break] = ACTIONS(417), + [anon_sym_const] = ACTIONS(419), + [anon_sym_continue] = ACTIONS(421), + [anon_sym_default] = ACTIONS(423), + [anon_sym_for] = ACTIONS(425), + [anon_sym_if] = ACTIONS(427), + [anon_sym_loop] = ACTIONS(429), + [anon_sym_match] = ACTIONS(431), + [anon_sym_return] = ACTIONS(433), + [anon_sym_static] = ACTIONS(435), + [anon_sym_union] = ACTIONS(423), + [anon_sym_unsafe] = ACTIONS(437), + [anon_sym_while] = ACTIONS(439), + [anon_sym_yield] = ACTIONS(441), + [anon_sym_move] = ACTIONS(443), + [anon_sym_try] = ACTIONS(445), + [sym_integer_literal] = ACTIONS(447), + [aux_sym_string_literal_token1] = ACTIONS(449), + [sym_char_literal] = ACTIONS(447), + [anon_sym_true] = ACTIONS(451), + [anon_sym_false] = ACTIONS(451), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(453), + [sym_super] = ACTIONS(455), + [sym_crate] = ACTIONS(455), + [sym_metavariable] = ACTIONS(457), + [sym__raw_string_literal_start] = ACTIONS(459), + [sym_float_literal] = ACTIONS(447), }, [290] = { - [sym_bracketed_type] = STATE(3498), - [sym_generic_function] = STATE(1637), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1604), - [sym__expression] = STATE(1763), - [sym_macro_invocation] = STATE(1641), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3100), - [sym_range_expression] = STATE(1639), - [sym_unary_expression] = STATE(1637), - [sym_try_expression] = STATE(1637), - [sym_reference_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_assignment_expression] = STATE(1637), - [sym_compound_assignment_expr] = STATE(1637), - [sym_type_cast_expression] = STATE(1637), - [sym_return_expression] = STATE(1637), - [sym_yield_expression] = STATE(1637), - [sym_call_expression] = STATE(1637), - [sym_array_expression] = STATE(1637), - [sym_parenthesized_expression] = STATE(1637), - [sym_tuple_expression] = STATE(1637), - [sym_unit_expression] = STATE(1637), - [sym_struct_expression] = STATE(1637), - [sym_if_expression] = STATE(1637), - [sym_match_expression] = STATE(1637), - [sym_while_expression] = STATE(1637), - [sym_loop_expression] = STATE(1637), - [sym_for_expression] = STATE(1637), - [sym_const_block] = STATE(1637), - [sym_closure_expression] = STATE(1637), - [sym_closure_parameters] = STATE(237), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1637), - [sym_continue_expression] = STATE(1637), - [sym_index_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_field_expression] = STATE(1620), - [sym_unsafe_block] = STATE(1637), - [sym_async_block] = STATE(1637), - [sym_try_block] = STATE(1637), - [sym_block] = STATE(1637), - [sym__literal] = STATE(1637), - [sym_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_boolean_literal] = STATE(1778), + [sym_bracketed_type] = STATE(3593), + [sym_generic_function] = STATE(1742), + [sym_generic_type_with_turbofish] = STATE(2901), + [sym__expression_except_range] = STATE(1655), + [sym__expression] = STATE(1834), + [sym_macro_invocation] = STATE(1752), + [sym_scoped_identifier] = STATE(1584), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1746), + [sym_unary_expression] = STATE(1742), + [sym_try_expression] = STATE(1742), + [sym_reference_expression] = STATE(1742), + [sym_binary_expression] = STATE(1742), + [sym_assignment_expression] = STATE(1742), + [sym_compound_assignment_expr] = STATE(1742), + [sym_type_cast_expression] = STATE(1742), + [sym_return_expression] = STATE(1742), + [sym_yield_expression] = STATE(1742), + [sym_call_expression] = STATE(1742), + [sym_array_expression] = STATE(1742), + [sym_parenthesized_expression] = STATE(1742), + [sym_tuple_expression] = STATE(1742), + [sym_unit_expression] = STATE(1742), + [sym_struct_expression] = STATE(1742), + [sym_if_expression] = STATE(1742), + [sym_match_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_loop_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_const_block] = STATE(1742), + [sym_closure_expression] = STATE(1742), + [sym_closure_parameters] = STATE(244), + [sym_label] = STATE(3682), + [sym_break_expression] = STATE(1742), + [sym_continue_expression] = STATE(1742), + [sym_index_expression] = STATE(1742), + [sym_await_expression] = STATE(1742), + [sym_field_expression] = STATE(1652), + [sym_unsafe_block] = STATE(1742), + [sym_async_block] = STATE(1742), + [sym_try_block] = STATE(1742), + [sym_block] = STATE(1742), + [sym__literal] = STATE(1742), + [sym_string_literal] = STATE(1723), + [sym_raw_string_literal] = STATE(1723), + [sym_boolean_literal] = STATE(1723), [sym_line_comment] = STATE(290), [sym_block_comment] = STATE(290), - [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_STAR] = ACTIONS(1021), - [anon_sym_u8] = ACTIONS(404), - [anon_sym_i8] = ACTIONS(404), - [anon_sym_u16] = ACTIONS(404), - [anon_sym_i16] = ACTIONS(404), - [anon_sym_u32] = ACTIONS(404), - [anon_sym_i32] = ACTIONS(404), - [anon_sym_u64] = ACTIONS(404), - [anon_sym_i64] = ACTIONS(404), - [anon_sym_u128] = ACTIONS(404), - [anon_sym_i128] = ACTIONS(404), - [anon_sym_isize] = ACTIONS(404), - [anon_sym_usize] = ACTIONS(404), - [anon_sym_f32] = ACTIONS(404), - [anon_sym_f64] = ACTIONS(404), - [anon_sym_bool] = ACTIONS(404), - [anon_sym_str] = ACTIONS(404), - [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_BANG] = ACTIONS(1021), - [anon_sym_AMP] = ACTIONS(1023), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1039), - [anon_sym_COLON_COLON] = ACTIONS(408), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_const] = ACTIONS(414), - [anon_sym_continue] = ACTIONS(416), - [anon_sym_default] = ACTIONS(418), - [anon_sym_for] = ACTIONS(420), - [anon_sym_if] = ACTIONS(422), - [anon_sym_loop] = ACTIONS(424), - [anon_sym_match] = ACTIONS(426), - [anon_sym_return] = ACTIONS(428), - [anon_sym_static] = ACTIONS(430), - [anon_sym_union] = ACTIONS(418), - [anon_sym_unsafe] = ACTIONS(432), - [anon_sym_while] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_move] = ACTIONS(438), - [anon_sym_try] = ACTIONS(440), - [sym_integer_literal] = ACTIONS(442), - [aux_sym_string_literal_token1] = ACTIONS(444), - [sym_char_literal] = ACTIONS(442), - [anon_sym_true] = ACTIONS(446), - [anon_sym_false] = ACTIONS(446), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(448), - [sym_super] = ACTIONS(450), - [sym_crate] = ACTIONS(450), - [sym_metavariable] = ACTIONS(452), - [sym__raw_string_literal_start] = ACTIONS(454), - [sym_float_literal] = ACTIONS(442), + [sym_identifier] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(461), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LBRACE] = ACTIONS(405), + [anon_sym_STAR] = ACTIONS(1020), + [anon_sym_u8] = ACTIONS(409), + [anon_sym_i8] = ACTIONS(409), + [anon_sym_u16] = ACTIONS(409), + [anon_sym_i16] = ACTIONS(409), + [anon_sym_u32] = ACTIONS(409), + [anon_sym_i32] = ACTIONS(409), + [anon_sym_u64] = ACTIONS(409), + [anon_sym_i64] = ACTIONS(409), + [anon_sym_u128] = ACTIONS(409), + [anon_sym_i128] = ACTIONS(409), + [anon_sym_isize] = ACTIONS(409), + [anon_sym_usize] = ACTIONS(409), + [anon_sym_f32] = ACTIONS(409), + [anon_sym_f64] = ACTIONS(409), + [anon_sym_bool] = ACTIONS(409), + [anon_sym_str] = ACTIONS(409), + [anon_sym_char] = ACTIONS(409), + [anon_sym_DASH] = ACTIONS(1020), + [anon_sym_BANG] = ACTIONS(1020), + [anon_sym_AMP] = ACTIONS(1022), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1082), + [anon_sym_COLON_COLON] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(415), + [anon_sym_break] = ACTIONS(417), + [anon_sym_const] = ACTIONS(419), + [anon_sym_continue] = ACTIONS(421), + [anon_sym_default] = ACTIONS(423), + [anon_sym_for] = ACTIONS(425), + [anon_sym_if] = ACTIONS(427), + [anon_sym_loop] = ACTIONS(429), + [anon_sym_match] = ACTIONS(431), + [anon_sym_return] = ACTIONS(433), + [anon_sym_static] = ACTIONS(435), + [anon_sym_union] = ACTIONS(423), + [anon_sym_unsafe] = ACTIONS(437), + [anon_sym_while] = ACTIONS(439), + [anon_sym_yield] = ACTIONS(441), + [anon_sym_move] = ACTIONS(443), + [anon_sym_try] = ACTIONS(445), + [sym_integer_literal] = ACTIONS(447), + [aux_sym_string_literal_token1] = ACTIONS(449), + [sym_char_literal] = ACTIONS(447), + [anon_sym_true] = ACTIONS(451), + [anon_sym_false] = ACTIONS(451), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(453), + [sym_super] = ACTIONS(455), + [sym_crate] = ACTIONS(455), + [sym_metavariable] = ACTIONS(457), + [sym__raw_string_literal_start] = ACTIONS(459), + [sym_float_literal] = ACTIONS(447), }, [291] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1606), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), + [sym_bracketed_type] = STATE(3593), + [sym_generic_function] = STATE(1742), + [sym_generic_type_with_turbofish] = STATE(2901), + [sym__expression_except_range] = STATE(1655), + [sym__expression] = STATE(1838), + [sym_macro_invocation] = STATE(1752), + [sym_scoped_identifier] = STATE(1584), [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_range_expression] = STATE(1746), + [sym_unary_expression] = STATE(1742), + [sym_try_expression] = STATE(1742), + [sym_reference_expression] = STATE(1742), + [sym_binary_expression] = STATE(1742), + [sym_assignment_expression] = STATE(1742), + [sym_compound_assignment_expr] = STATE(1742), + [sym_type_cast_expression] = STATE(1742), + [sym_return_expression] = STATE(1742), + [sym_yield_expression] = STATE(1742), + [sym_call_expression] = STATE(1742), + [sym_array_expression] = STATE(1742), + [sym_parenthesized_expression] = STATE(1742), + [sym_tuple_expression] = STATE(1742), + [sym_unit_expression] = STATE(1742), + [sym_struct_expression] = STATE(1742), + [sym_if_expression] = STATE(1742), + [sym_match_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_loop_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_const_block] = STATE(1742), + [sym_closure_expression] = STATE(1742), + [sym_closure_parameters] = STATE(244), + [sym_label] = STATE(3682), + [sym_break_expression] = STATE(1742), + [sym_continue_expression] = STATE(1742), + [sym_index_expression] = STATE(1742), + [sym_await_expression] = STATE(1742), + [sym_field_expression] = STATE(1652), + [sym_unsafe_block] = STATE(1742), + [sym_async_block] = STATE(1742), + [sym_try_block] = STATE(1742), + [sym_block] = STATE(1742), + [sym__literal] = STATE(1742), + [sym_string_literal] = STATE(1723), + [sym_raw_string_literal] = STATE(1723), + [sym_boolean_literal] = STATE(1723), [sym_line_comment] = STATE(291), [sym_block_comment] = STATE(291), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1055), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [sym_identifier] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(461), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LBRACE] = ACTIONS(405), + [anon_sym_STAR] = ACTIONS(1020), + [anon_sym_u8] = ACTIONS(409), + [anon_sym_i8] = ACTIONS(409), + [anon_sym_u16] = ACTIONS(409), + [anon_sym_i16] = ACTIONS(409), + [anon_sym_u32] = ACTIONS(409), + [anon_sym_i32] = ACTIONS(409), + [anon_sym_u64] = ACTIONS(409), + [anon_sym_i64] = ACTIONS(409), + [anon_sym_u128] = ACTIONS(409), + [anon_sym_i128] = ACTIONS(409), + [anon_sym_isize] = ACTIONS(409), + [anon_sym_usize] = ACTIONS(409), + [anon_sym_f32] = ACTIONS(409), + [anon_sym_f64] = ACTIONS(409), + [anon_sym_bool] = ACTIONS(409), + [anon_sym_str] = ACTIONS(409), + [anon_sym_char] = ACTIONS(409), + [anon_sym_DASH] = ACTIONS(1020), + [anon_sym_BANG] = ACTIONS(1020), + [anon_sym_AMP] = ACTIONS(1022), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1082), + [anon_sym_COLON_COLON] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(415), + [anon_sym_break] = ACTIONS(417), + [anon_sym_const] = ACTIONS(419), + [anon_sym_continue] = ACTIONS(421), + [anon_sym_default] = ACTIONS(423), + [anon_sym_for] = ACTIONS(425), + [anon_sym_if] = ACTIONS(427), + [anon_sym_loop] = ACTIONS(429), + [anon_sym_match] = ACTIONS(431), + [anon_sym_return] = ACTIONS(433), + [anon_sym_static] = ACTIONS(435), + [anon_sym_union] = ACTIONS(423), + [anon_sym_unsafe] = ACTIONS(437), + [anon_sym_while] = ACTIONS(439), + [anon_sym_yield] = ACTIONS(441), + [anon_sym_move] = ACTIONS(443), + [anon_sym_try] = ACTIONS(445), + [sym_integer_literal] = ACTIONS(447), + [aux_sym_string_literal_token1] = ACTIONS(449), + [sym_char_literal] = ACTIONS(447), + [anon_sym_true] = ACTIONS(451), + [anon_sym_false] = ACTIONS(451), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(453), + [sym_super] = ACTIONS(455), + [sym_crate] = ACTIONS(455), + [sym_metavariable] = ACTIONS(457), + [sym__raw_string_literal_start] = ACTIONS(459), + [sym_float_literal] = ACTIONS(447), }, [292] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1615), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), + [sym_bracketed_type] = STATE(3593), + [sym_generic_function] = STATE(1742), + [sym_generic_type_with_turbofish] = STATE(2901), + [sym__expression_except_range] = STATE(1655), + [sym__expression] = STATE(1850), + [sym_macro_invocation] = STATE(1752), + [sym_scoped_identifier] = STATE(1584), [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_range_expression] = STATE(1746), + [sym_unary_expression] = STATE(1742), + [sym_try_expression] = STATE(1742), + [sym_reference_expression] = STATE(1742), + [sym_binary_expression] = STATE(1742), + [sym_assignment_expression] = STATE(1742), + [sym_compound_assignment_expr] = STATE(1742), + [sym_type_cast_expression] = STATE(1742), + [sym_return_expression] = STATE(1742), + [sym_yield_expression] = STATE(1742), + [sym_call_expression] = STATE(1742), + [sym_array_expression] = STATE(1742), + [sym_parenthesized_expression] = STATE(1742), + [sym_tuple_expression] = STATE(1742), + [sym_unit_expression] = STATE(1742), + [sym_struct_expression] = STATE(1742), + [sym_if_expression] = STATE(1742), + [sym_match_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_loop_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_const_block] = STATE(1742), + [sym_closure_expression] = STATE(1742), + [sym_closure_parameters] = STATE(244), + [sym_label] = STATE(3682), + [sym_break_expression] = STATE(1742), + [sym_continue_expression] = STATE(1742), + [sym_index_expression] = STATE(1742), + [sym_await_expression] = STATE(1742), + [sym_field_expression] = STATE(1652), + [sym_unsafe_block] = STATE(1742), + [sym_async_block] = STATE(1742), + [sym_try_block] = STATE(1742), + [sym_block] = STATE(1742), + [sym__literal] = STATE(1742), + [sym_string_literal] = STATE(1723), + [sym_raw_string_literal] = STATE(1723), + [sym_boolean_literal] = STATE(1723), [sym_line_comment] = STATE(292), [sym_block_comment] = STATE(292), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1055), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [sym_identifier] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(461), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LBRACE] = ACTIONS(405), + [anon_sym_STAR] = ACTIONS(1020), + [anon_sym_u8] = ACTIONS(409), + [anon_sym_i8] = ACTIONS(409), + [anon_sym_u16] = ACTIONS(409), + [anon_sym_i16] = ACTIONS(409), + [anon_sym_u32] = ACTIONS(409), + [anon_sym_i32] = ACTIONS(409), + [anon_sym_u64] = ACTIONS(409), + [anon_sym_i64] = ACTIONS(409), + [anon_sym_u128] = ACTIONS(409), + [anon_sym_i128] = ACTIONS(409), + [anon_sym_isize] = ACTIONS(409), + [anon_sym_usize] = ACTIONS(409), + [anon_sym_f32] = ACTIONS(409), + [anon_sym_f64] = ACTIONS(409), + [anon_sym_bool] = ACTIONS(409), + [anon_sym_str] = ACTIONS(409), + [anon_sym_char] = ACTIONS(409), + [anon_sym_DASH] = ACTIONS(1020), + [anon_sym_BANG] = ACTIONS(1020), + [anon_sym_AMP] = ACTIONS(1022), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1082), + [anon_sym_COLON_COLON] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(415), + [anon_sym_break] = ACTIONS(417), + [anon_sym_const] = ACTIONS(419), + [anon_sym_continue] = ACTIONS(421), + [anon_sym_default] = ACTIONS(423), + [anon_sym_for] = ACTIONS(425), + [anon_sym_if] = ACTIONS(427), + [anon_sym_loop] = ACTIONS(429), + [anon_sym_match] = ACTIONS(431), + [anon_sym_return] = ACTIONS(433), + [anon_sym_static] = ACTIONS(435), + [anon_sym_union] = ACTIONS(423), + [anon_sym_unsafe] = ACTIONS(437), + [anon_sym_while] = ACTIONS(439), + [anon_sym_yield] = ACTIONS(441), + [anon_sym_move] = ACTIONS(443), + [anon_sym_try] = ACTIONS(445), + [sym_integer_literal] = ACTIONS(447), + [aux_sym_string_literal_token1] = ACTIONS(449), + [sym_char_literal] = ACTIONS(447), + [anon_sym_true] = ACTIONS(451), + [anon_sym_false] = ACTIONS(451), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(453), + [sym_super] = ACTIONS(455), + [sym_crate] = ACTIONS(455), + [sym_metavariable] = ACTIONS(457), + [sym__raw_string_literal_start] = ACTIONS(459), + [sym_float_literal] = ACTIONS(447), }, [293] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1323), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), + [sym_bracketed_type] = STATE(3593), + [sym_generic_function] = STATE(1742), + [sym_generic_type_with_turbofish] = STATE(2901), + [sym__expression_except_range] = STATE(1655), + [sym__expression] = STATE(1681), + [sym_macro_invocation] = STATE(1752), + [sym_scoped_identifier] = STATE(1584), [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_range_expression] = STATE(1746), + [sym_unary_expression] = STATE(1742), + [sym_try_expression] = STATE(1742), + [sym_reference_expression] = STATE(1742), + [sym_binary_expression] = STATE(1742), + [sym_assignment_expression] = STATE(1742), + [sym_compound_assignment_expr] = STATE(1742), + [sym_type_cast_expression] = STATE(1742), + [sym_return_expression] = STATE(1742), + [sym_yield_expression] = STATE(1742), + [sym_call_expression] = STATE(1742), + [sym_array_expression] = STATE(1742), + [sym_parenthesized_expression] = STATE(1742), + [sym_tuple_expression] = STATE(1742), + [sym_unit_expression] = STATE(1742), + [sym_struct_expression] = STATE(1742), + [sym_if_expression] = STATE(1742), + [sym_match_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_loop_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_const_block] = STATE(1742), + [sym_closure_expression] = STATE(1742), + [sym_closure_parameters] = STATE(244), + [sym_label] = STATE(3682), + [sym_break_expression] = STATE(1742), + [sym_continue_expression] = STATE(1742), + [sym_index_expression] = STATE(1742), + [sym_await_expression] = STATE(1742), + [sym_field_expression] = STATE(1652), + [sym_unsafe_block] = STATE(1742), + [sym_async_block] = STATE(1742), + [sym_try_block] = STATE(1742), + [sym_block] = STATE(1742), + [sym__literal] = STATE(1742), + [sym_string_literal] = STATE(1723), + [sym_raw_string_literal] = STATE(1723), + [sym_boolean_literal] = STATE(1723), [sym_line_comment] = STATE(293), [sym_block_comment] = STATE(293), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1055), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [sym_identifier] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(461), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LBRACE] = ACTIONS(405), + [anon_sym_STAR] = ACTIONS(1020), + [anon_sym_u8] = ACTIONS(409), + [anon_sym_i8] = ACTIONS(409), + [anon_sym_u16] = ACTIONS(409), + [anon_sym_i16] = ACTIONS(409), + [anon_sym_u32] = ACTIONS(409), + [anon_sym_i32] = ACTIONS(409), + [anon_sym_u64] = ACTIONS(409), + [anon_sym_i64] = ACTIONS(409), + [anon_sym_u128] = ACTIONS(409), + [anon_sym_i128] = ACTIONS(409), + [anon_sym_isize] = ACTIONS(409), + [anon_sym_usize] = ACTIONS(409), + [anon_sym_f32] = ACTIONS(409), + [anon_sym_f64] = ACTIONS(409), + [anon_sym_bool] = ACTIONS(409), + [anon_sym_str] = ACTIONS(409), + [anon_sym_char] = ACTIONS(409), + [anon_sym_DASH] = ACTIONS(1020), + [anon_sym_BANG] = ACTIONS(1020), + [anon_sym_AMP] = ACTIONS(1022), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1082), + [anon_sym_COLON_COLON] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(415), + [anon_sym_break] = ACTIONS(417), + [anon_sym_const] = ACTIONS(419), + [anon_sym_continue] = ACTIONS(421), + [anon_sym_default] = ACTIONS(423), + [anon_sym_for] = ACTIONS(425), + [anon_sym_if] = ACTIONS(427), + [anon_sym_loop] = ACTIONS(429), + [anon_sym_match] = ACTIONS(431), + [anon_sym_return] = ACTIONS(433), + [anon_sym_static] = ACTIONS(435), + [anon_sym_union] = ACTIONS(423), + [anon_sym_unsafe] = ACTIONS(437), + [anon_sym_while] = ACTIONS(439), + [anon_sym_yield] = ACTIONS(441), + [anon_sym_move] = ACTIONS(443), + [anon_sym_try] = ACTIONS(445), + [sym_integer_literal] = ACTIONS(447), + [aux_sym_string_literal_token1] = ACTIONS(449), + [sym_char_literal] = ACTIONS(447), + [anon_sym_true] = ACTIONS(451), + [anon_sym_false] = ACTIONS(451), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(453), + [sym_super] = ACTIONS(455), + [sym_crate] = ACTIONS(455), + [sym_metavariable] = ACTIONS(457), + [sym__raw_string_literal_start] = ACTIONS(459), + [sym_float_literal] = ACTIONS(447), }, [294] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1616), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1848), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1419), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(294), [sym_block_comment] = STATE(294), - [sym_identifier] = ACTIONS(456), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1055), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(365), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [295] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1690), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1846), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1419), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(295), [sym_block_comment] = STATE(295), - [sym_identifier] = ACTIONS(456), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(977), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(365), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [296] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1695), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), + [sym_bracketed_type] = STATE(3593), + [sym_generic_function] = STATE(1742), + [sym_generic_type_with_turbofish] = STATE(2901), + [sym__expression_except_range] = STATE(1655), + [sym__expression] = STATE(1682), + [sym_macro_invocation] = STATE(1752), + [sym_scoped_identifier] = STATE(1584), [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_range_expression] = STATE(1746), + [sym_unary_expression] = STATE(1742), + [sym_try_expression] = STATE(1742), + [sym_reference_expression] = STATE(1742), + [sym_binary_expression] = STATE(1742), + [sym_assignment_expression] = STATE(1742), + [sym_compound_assignment_expr] = STATE(1742), + [sym_type_cast_expression] = STATE(1742), + [sym_return_expression] = STATE(1742), + [sym_yield_expression] = STATE(1742), + [sym_call_expression] = STATE(1742), + [sym_array_expression] = STATE(1742), + [sym_parenthesized_expression] = STATE(1742), + [sym_tuple_expression] = STATE(1742), + [sym_unit_expression] = STATE(1742), + [sym_struct_expression] = STATE(1742), + [sym_if_expression] = STATE(1742), + [sym_match_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_loop_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_const_block] = STATE(1742), + [sym_closure_expression] = STATE(1742), + [sym_closure_parameters] = STATE(244), + [sym_label] = STATE(3682), + [sym_break_expression] = STATE(1742), + [sym_continue_expression] = STATE(1742), + [sym_index_expression] = STATE(1742), + [sym_await_expression] = STATE(1742), + [sym_field_expression] = STATE(1652), + [sym_unsafe_block] = STATE(1742), + [sym_async_block] = STATE(1742), + [sym_try_block] = STATE(1742), + [sym_block] = STATE(1742), + [sym__literal] = STATE(1742), + [sym_string_literal] = STATE(1723), + [sym_raw_string_literal] = STATE(1723), + [sym_boolean_literal] = STATE(1723), [sym_line_comment] = STATE(296), [sym_block_comment] = STATE(296), - [sym_identifier] = ACTIONS(334), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [sym_identifier] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(461), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LBRACE] = ACTIONS(405), + [anon_sym_STAR] = ACTIONS(1020), + [anon_sym_u8] = ACTIONS(409), + [anon_sym_i8] = ACTIONS(409), + [anon_sym_u16] = ACTIONS(409), + [anon_sym_i16] = ACTIONS(409), + [anon_sym_u32] = ACTIONS(409), + [anon_sym_i32] = ACTIONS(409), + [anon_sym_u64] = ACTIONS(409), + [anon_sym_i64] = ACTIONS(409), + [anon_sym_u128] = ACTIONS(409), + [anon_sym_i128] = ACTIONS(409), + [anon_sym_isize] = ACTIONS(409), + [anon_sym_usize] = ACTIONS(409), + [anon_sym_f32] = ACTIONS(409), + [anon_sym_f64] = ACTIONS(409), + [anon_sym_bool] = ACTIONS(409), + [anon_sym_str] = ACTIONS(409), + [anon_sym_char] = ACTIONS(409), + [anon_sym_DASH] = ACTIONS(1020), + [anon_sym_BANG] = ACTIONS(1020), + [anon_sym_AMP] = ACTIONS(1022), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1082), + [anon_sym_COLON_COLON] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(415), + [anon_sym_break] = ACTIONS(417), + [anon_sym_const] = ACTIONS(419), + [anon_sym_continue] = ACTIONS(421), + [anon_sym_default] = ACTIONS(423), + [anon_sym_for] = ACTIONS(425), + [anon_sym_if] = ACTIONS(427), + [anon_sym_loop] = ACTIONS(429), + [anon_sym_match] = ACTIONS(431), + [anon_sym_return] = ACTIONS(433), + [anon_sym_static] = ACTIONS(435), + [anon_sym_union] = ACTIONS(423), + [anon_sym_unsafe] = ACTIONS(437), + [anon_sym_while] = ACTIONS(439), + [anon_sym_yield] = ACTIONS(441), + [anon_sym_move] = ACTIONS(443), + [anon_sym_try] = ACTIONS(445), + [sym_integer_literal] = ACTIONS(447), + [aux_sym_string_literal_token1] = ACTIONS(449), + [sym_char_literal] = ACTIONS(447), + [anon_sym_true] = ACTIONS(451), + [anon_sym_false] = ACTIONS(451), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(453), + [sym_super] = ACTIONS(455), + [sym_crate] = ACTIONS(455), + [sym_metavariable] = ACTIONS(457), + [sym__raw_string_literal_start] = ACTIONS(459), + [sym_float_literal] = ACTIONS(447), }, [297] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1619), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1894), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1419), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(297), [sym_block_comment] = STATE(297), - [sym_identifier] = ACTIONS(456), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1055), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(365), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [298] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1697), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), + [sym_bracketed_type] = STATE(3593), + [sym_generic_function] = STATE(1742), + [sym_generic_type_with_turbofish] = STATE(2901), + [sym__expression_except_range] = STATE(1655), + [sym__expression] = STATE(1684), + [sym_macro_invocation] = STATE(1752), + [sym_scoped_identifier] = STATE(1584), [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_range_expression] = STATE(1746), + [sym_unary_expression] = STATE(1742), + [sym_try_expression] = STATE(1742), + [sym_reference_expression] = STATE(1742), + [sym_binary_expression] = STATE(1742), + [sym_assignment_expression] = STATE(1742), + [sym_compound_assignment_expr] = STATE(1742), + [sym_type_cast_expression] = STATE(1742), + [sym_return_expression] = STATE(1742), + [sym_yield_expression] = STATE(1742), + [sym_call_expression] = STATE(1742), + [sym_array_expression] = STATE(1742), + [sym_parenthesized_expression] = STATE(1742), + [sym_tuple_expression] = STATE(1742), + [sym_unit_expression] = STATE(1742), + [sym_struct_expression] = STATE(1742), + [sym_if_expression] = STATE(1742), + [sym_match_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_loop_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_const_block] = STATE(1742), + [sym_closure_expression] = STATE(1742), + [sym_closure_parameters] = STATE(244), + [sym_label] = STATE(3682), + [sym_break_expression] = STATE(1742), + [sym_continue_expression] = STATE(1742), + [sym_index_expression] = STATE(1742), + [sym_await_expression] = STATE(1742), + [sym_field_expression] = STATE(1652), + [sym_unsafe_block] = STATE(1742), + [sym_async_block] = STATE(1742), + [sym_try_block] = STATE(1742), + [sym_block] = STATE(1742), + [sym__literal] = STATE(1742), + [sym_string_literal] = STATE(1723), + [sym_raw_string_literal] = STATE(1723), + [sym_boolean_literal] = STATE(1723), [sym_line_comment] = STATE(298), [sym_block_comment] = STATE(298), - [sym_identifier] = ACTIONS(334), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [sym_identifier] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(461), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LBRACE] = ACTIONS(405), + [anon_sym_STAR] = ACTIONS(1020), + [anon_sym_u8] = ACTIONS(409), + [anon_sym_i8] = ACTIONS(409), + [anon_sym_u16] = ACTIONS(409), + [anon_sym_i16] = ACTIONS(409), + [anon_sym_u32] = ACTIONS(409), + [anon_sym_i32] = ACTIONS(409), + [anon_sym_u64] = ACTIONS(409), + [anon_sym_i64] = ACTIONS(409), + [anon_sym_u128] = ACTIONS(409), + [anon_sym_i128] = ACTIONS(409), + [anon_sym_isize] = ACTIONS(409), + [anon_sym_usize] = ACTIONS(409), + [anon_sym_f32] = ACTIONS(409), + [anon_sym_f64] = ACTIONS(409), + [anon_sym_bool] = ACTIONS(409), + [anon_sym_str] = ACTIONS(409), + [anon_sym_char] = ACTIONS(409), + [anon_sym_DASH] = ACTIONS(1020), + [anon_sym_BANG] = ACTIONS(1020), + [anon_sym_AMP] = ACTIONS(1022), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1082), + [anon_sym_COLON_COLON] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(415), + [anon_sym_break] = ACTIONS(417), + [anon_sym_const] = ACTIONS(419), + [anon_sym_continue] = ACTIONS(421), + [anon_sym_default] = ACTIONS(423), + [anon_sym_for] = ACTIONS(425), + [anon_sym_if] = ACTIONS(427), + [anon_sym_loop] = ACTIONS(429), + [anon_sym_match] = ACTIONS(431), + [anon_sym_return] = ACTIONS(433), + [anon_sym_static] = ACTIONS(435), + [anon_sym_union] = ACTIONS(423), + [anon_sym_unsafe] = ACTIONS(437), + [anon_sym_while] = ACTIONS(439), + [anon_sym_yield] = ACTIONS(441), + [anon_sym_move] = ACTIONS(443), + [anon_sym_try] = ACTIONS(445), + [sym_integer_literal] = ACTIONS(447), + [aux_sym_string_literal_token1] = ACTIONS(449), + [sym_char_literal] = ACTIONS(447), + [anon_sym_true] = ACTIONS(451), + [anon_sym_false] = ACTIONS(451), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(453), + [sym_super] = ACTIONS(455), + [sym_crate] = ACTIONS(455), + [sym_metavariable] = ACTIONS(457), + [sym__raw_string_literal_start] = ACTIONS(459), + [sym_float_literal] = ACTIONS(447), }, [299] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1698), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), + [sym_bracketed_type] = STATE(3593), + [sym_generic_function] = STATE(1742), + [sym_generic_type_with_turbofish] = STATE(2901), + [sym__expression_except_range] = STATE(1655), + [sym__expression] = STATE(1670), + [sym_macro_invocation] = STATE(1752), + [sym_scoped_identifier] = STATE(1584), [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_range_expression] = STATE(1746), + [sym_unary_expression] = STATE(1742), + [sym_try_expression] = STATE(1742), + [sym_reference_expression] = STATE(1742), + [sym_binary_expression] = STATE(1742), + [sym_assignment_expression] = STATE(1742), + [sym_compound_assignment_expr] = STATE(1742), + [sym_type_cast_expression] = STATE(1742), + [sym_return_expression] = STATE(1742), + [sym_yield_expression] = STATE(1742), + [sym_call_expression] = STATE(1742), + [sym_array_expression] = STATE(1742), + [sym_parenthesized_expression] = STATE(1742), + [sym_tuple_expression] = STATE(1742), + [sym_unit_expression] = STATE(1742), + [sym_struct_expression] = STATE(1742), + [sym_if_expression] = STATE(1742), + [sym_match_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_loop_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_const_block] = STATE(1742), + [sym_closure_expression] = STATE(1742), + [sym_closure_parameters] = STATE(244), + [sym_label] = STATE(3682), + [sym_break_expression] = STATE(1742), + [sym_continue_expression] = STATE(1742), + [sym_index_expression] = STATE(1742), + [sym_await_expression] = STATE(1742), + [sym_field_expression] = STATE(1652), + [sym_unsafe_block] = STATE(1742), + [sym_async_block] = STATE(1742), + [sym_try_block] = STATE(1742), + [sym_block] = STATE(1742), + [sym__literal] = STATE(1742), + [sym_string_literal] = STATE(1723), + [sym_raw_string_literal] = STATE(1723), + [sym_boolean_literal] = STATE(1723), [sym_line_comment] = STATE(299), [sym_block_comment] = STATE(299), - [sym_identifier] = ACTIONS(334), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [sym_identifier] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(461), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LBRACE] = ACTIONS(405), + [anon_sym_STAR] = ACTIONS(1020), + [anon_sym_u8] = ACTIONS(409), + [anon_sym_i8] = ACTIONS(409), + [anon_sym_u16] = ACTIONS(409), + [anon_sym_i16] = ACTIONS(409), + [anon_sym_u32] = ACTIONS(409), + [anon_sym_i32] = ACTIONS(409), + [anon_sym_u64] = ACTIONS(409), + [anon_sym_i64] = ACTIONS(409), + [anon_sym_u128] = ACTIONS(409), + [anon_sym_i128] = ACTIONS(409), + [anon_sym_isize] = ACTIONS(409), + [anon_sym_usize] = ACTIONS(409), + [anon_sym_f32] = ACTIONS(409), + [anon_sym_f64] = ACTIONS(409), + [anon_sym_bool] = ACTIONS(409), + [anon_sym_str] = ACTIONS(409), + [anon_sym_char] = ACTIONS(409), + [anon_sym_DASH] = ACTIONS(1020), + [anon_sym_BANG] = ACTIONS(1020), + [anon_sym_AMP] = ACTIONS(1022), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1082), + [anon_sym_COLON_COLON] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(415), + [anon_sym_break] = ACTIONS(417), + [anon_sym_const] = ACTIONS(419), + [anon_sym_continue] = ACTIONS(421), + [anon_sym_default] = ACTIONS(423), + [anon_sym_for] = ACTIONS(425), + [anon_sym_if] = ACTIONS(427), + [anon_sym_loop] = ACTIONS(429), + [anon_sym_match] = ACTIONS(431), + [anon_sym_return] = ACTIONS(433), + [anon_sym_static] = ACTIONS(435), + [anon_sym_union] = ACTIONS(423), + [anon_sym_unsafe] = ACTIONS(437), + [anon_sym_while] = ACTIONS(439), + [anon_sym_yield] = ACTIONS(441), + [anon_sym_move] = ACTIONS(443), + [anon_sym_try] = ACTIONS(445), + [sym_integer_literal] = ACTIONS(447), + [aux_sym_string_literal_token1] = ACTIONS(449), + [sym_char_literal] = ACTIONS(447), + [anon_sym_true] = ACTIONS(451), + [anon_sym_false] = ACTIONS(451), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(453), + [sym_super] = ACTIONS(455), + [sym_crate] = ACTIONS(455), + [sym_metavariable] = ACTIONS(457), + [sym__raw_string_literal_start] = ACTIONS(459), + [sym_float_literal] = ACTIONS(447), }, [300] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1482), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), + [sym_bracketed_type] = STATE(3593), + [sym_generic_function] = STATE(1742), + [sym_generic_type_with_turbofish] = STATE(2901), + [sym__expression_except_range] = STATE(1655), + [sym__expression] = STATE(1740), + [sym_macro_invocation] = STATE(1752), + [sym_scoped_identifier] = STATE(1584), [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_range_expression] = STATE(1746), + [sym_unary_expression] = STATE(1742), + [sym_try_expression] = STATE(1742), + [sym_reference_expression] = STATE(1742), + [sym_binary_expression] = STATE(1742), + [sym_assignment_expression] = STATE(1742), + [sym_compound_assignment_expr] = STATE(1742), + [sym_type_cast_expression] = STATE(1742), + [sym_return_expression] = STATE(1742), + [sym_yield_expression] = STATE(1742), + [sym_call_expression] = STATE(1742), + [sym_array_expression] = STATE(1742), + [sym_parenthesized_expression] = STATE(1742), + [sym_tuple_expression] = STATE(1742), + [sym_unit_expression] = STATE(1742), + [sym_struct_expression] = STATE(1742), + [sym_if_expression] = STATE(1742), + [sym_match_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_loop_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_const_block] = STATE(1742), + [sym_closure_expression] = STATE(1742), + [sym_closure_parameters] = STATE(244), + [sym_label] = STATE(3682), + [sym_break_expression] = STATE(1742), + [sym_continue_expression] = STATE(1742), + [sym_index_expression] = STATE(1742), + [sym_await_expression] = STATE(1742), + [sym_field_expression] = STATE(1652), + [sym_unsafe_block] = STATE(1742), + [sym_async_block] = STATE(1742), + [sym_try_block] = STATE(1742), + [sym_block] = STATE(1742), + [sym__literal] = STATE(1742), + [sym_string_literal] = STATE(1723), + [sym_raw_string_literal] = STATE(1723), + [sym_boolean_literal] = STATE(1723), [sym_line_comment] = STATE(300), [sym_block_comment] = STATE(300), - [sym_identifier] = ACTIONS(334), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1176), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [sym_identifier] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(461), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LBRACE] = ACTIONS(405), + [anon_sym_STAR] = ACTIONS(1020), + [anon_sym_u8] = ACTIONS(409), + [anon_sym_i8] = ACTIONS(409), + [anon_sym_u16] = ACTIONS(409), + [anon_sym_i16] = ACTIONS(409), + [anon_sym_u32] = ACTIONS(409), + [anon_sym_i32] = ACTIONS(409), + [anon_sym_u64] = ACTIONS(409), + [anon_sym_i64] = ACTIONS(409), + [anon_sym_u128] = ACTIONS(409), + [anon_sym_i128] = ACTIONS(409), + [anon_sym_isize] = ACTIONS(409), + [anon_sym_usize] = ACTIONS(409), + [anon_sym_f32] = ACTIONS(409), + [anon_sym_f64] = ACTIONS(409), + [anon_sym_bool] = ACTIONS(409), + [anon_sym_str] = ACTIONS(409), + [anon_sym_char] = ACTIONS(409), + [anon_sym_DASH] = ACTIONS(1020), + [anon_sym_BANG] = ACTIONS(1020), + [anon_sym_AMP] = ACTIONS(1022), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1082), + [anon_sym_COLON_COLON] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(415), + [anon_sym_break] = ACTIONS(417), + [anon_sym_const] = ACTIONS(419), + [anon_sym_continue] = ACTIONS(421), + [anon_sym_default] = ACTIONS(423), + [anon_sym_for] = ACTIONS(425), + [anon_sym_if] = ACTIONS(427), + [anon_sym_loop] = ACTIONS(429), + [anon_sym_match] = ACTIONS(431), + [anon_sym_return] = ACTIONS(433), + [anon_sym_static] = ACTIONS(435), + [anon_sym_union] = ACTIONS(423), + [anon_sym_unsafe] = ACTIONS(437), + [anon_sym_while] = ACTIONS(439), + [anon_sym_yield] = ACTIONS(441), + [anon_sym_move] = ACTIONS(443), + [anon_sym_try] = ACTIONS(445), + [sym_integer_literal] = ACTIONS(447), + [aux_sym_string_literal_token1] = ACTIONS(449), + [sym_char_literal] = ACTIONS(447), + [anon_sym_true] = ACTIONS(451), + [anon_sym_false] = ACTIONS(451), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(453), + [sym_super] = ACTIONS(455), + [sym_crate] = ACTIONS(455), + [sym_metavariable] = ACTIONS(457), + [sym__raw_string_literal_start] = ACTIONS(459), + [sym_float_literal] = ACTIONS(447), }, [301] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1842), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), + [sym_bracketed_type] = STATE(3593), + [sym_generic_function] = STATE(1742), + [sym_generic_type_with_turbofish] = STATE(2901), + [sym__expression_except_range] = STATE(1655), + [sym__expression] = STATE(1806), + [sym_macro_invocation] = STATE(1752), + [sym_scoped_identifier] = STATE(1584), [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_range_expression] = STATE(1746), + [sym_unary_expression] = STATE(1742), + [sym_try_expression] = STATE(1742), + [sym_reference_expression] = STATE(1742), + [sym_binary_expression] = STATE(1742), + [sym_assignment_expression] = STATE(1742), + [sym_compound_assignment_expr] = STATE(1742), + [sym_type_cast_expression] = STATE(1742), + [sym_return_expression] = STATE(1742), + [sym_yield_expression] = STATE(1742), + [sym_call_expression] = STATE(1742), + [sym_array_expression] = STATE(1742), + [sym_parenthesized_expression] = STATE(1742), + [sym_tuple_expression] = STATE(1742), + [sym_unit_expression] = STATE(1742), + [sym_struct_expression] = STATE(1742), + [sym_if_expression] = STATE(1742), + [sym_match_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_loop_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_const_block] = STATE(1742), + [sym_closure_expression] = STATE(1742), + [sym_closure_parameters] = STATE(244), + [sym_label] = STATE(3682), + [sym_break_expression] = STATE(1742), + [sym_continue_expression] = STATE(1742), + [sym_index_expression] = STATE(1742), + [sym_await_expression] = STATE(1742), + [sym_field_expression] = STATE(1652), + [sym_unsafe_block] = STATE(1742), + [sym_async_block] = STATE(1742), + [sym_try_block] = STATE(1742), + [sym_block] = STATE(1742), + [sym__literal] = STATE(1742), + [sym_string_literal] = STATE(1723), + [sym_raw_string_literal] = STATE(1723), + [sym_boolean_literal] = STATE(1723), [sym_line_comment] = STATE(301), [sym_block_comment] = STATE(301), - [sym_identifier] = ACTIONS(334), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [sym_identifier] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(461), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LBRACE] = ACTIONS(405), + [anon_sym_STAR] = ACTIONS(1020), + [anon_sym_u8] = ACTIONS(409), + [anon_sym_i8] = ACTIONS(409), + [anon_sym_u16] = ACTIONS(409), + [anon_sym_i16] = ACTIONS(409), + [anon_sym_u32] = ACTIONS(409), + [anon_sym_i32] = ACTIONS(409), + [anon_sym_u64] = ACTIONS(409), + [anon_sym_i64] = ACTIONS(409), + [anon_sym_u128] = ACTIONS(409), + [anon_sym_i128] = ACTIONS(409), + [anon_sym_isize] = ACTIONS(409), + [anon_sym_usize] = ACTIONS(409), + [anon_sym_f32] = ACTIONS(409), + [anon_sym_f64] = ACTIONS(409), + [anon_sym_bool] = ACTIONS(409), + [anon_sym_str] = ACTIONS(409), + [anon_sym_char] = ACTIONS(409), + [anon_sym_DASH] = ACTIONS(1020), + [anon_sym_BANG] = ACTIONS(1020), + [anon_sym_AMP] = ACTIONS(1022), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1082), + [anon_sym_COLON_COLON] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(415), + [anon_sym_break] = ACTIONS(417), + [anon_sym_const] = ACTIONS(419), + [anon_sym_continue] = ACTIONS(421), + [anon_sym_default] = ACTIONS(423), + [anon_sym_for] = ACTIONS(425), + [anon_sym_if] = ACTIONS(427), + [anon_sym_loop] = ACTIONS(429), + [anon_sym_match] = ACTIONS(431), + [anon_sym_return] = ACTIONS(433), + [anon_sym_static] = ACTIONS(435), + [anon_sym_union] = ACTIONS(423), + [anon_sym_unsafe] = ACTIONS(437), + [anon_sym_while] = ACTIONS(439), + [anon_sym_yield] = ACTIONS(441), + [anon_sym_move] = ACTIONS(443), + [anon_sym_try] = ACTIONS(445), + [sym_integer_literal] = ACTIONS(447), + [aux_sym_string_literal_token1] = ACTIONS(449), + [sym_char_literal] = ACTIONS(447), + [anon_sym_true] = ACTIONS(451), + [anon_sym_false] = ACTIONS(451), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(453), + [sym_super] = ACTIONS(455), + [sym_crate] = ACTIONS(455), + [sym_metavariable] = ACTIONS(457), + [sym__raw_string_literal_start] = ACTIONS(459), + [sym_float_literal] = ACTIONS(447), }, [302] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1850), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), + [sym_bracketed_type] = STATE(3593), + [sym_generic_function] = STATE(1742), + [sym_generic_type_with_turbofish] = STATE(2901), + [sym__expression_except_range] = STATE(1655), + [sym__expression] = STATE(1671), + [sym_macro_invocation] = STATE(1752), + [sym_scoped_identifier] = STATE(1584), [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_range_expression] = STATE(1746), + [sym_unary_expression] = STATE(1742), + [sym_try_expression] = STATE(1742), + [sym_reference_expression] = STATE(1742), + [sym_binary_expression] = STATE(1742), + [sym_assignment_expression] = STATE(1742), + [sym_compound_assignment_expr] = STATE(1742), + [sym_type_cast_expression] = STATE(1742), + [sym_return_expression] = STATE(1742), + [sym_yield_expression] = STATE(1742), + [sym_call_expression] = STATE(1742), + [sym_array_expression] = STATE(1742), + [sym_parenthesized_expression] = STATE(1742), + [sym_tuple_expression] = STATE(1742), + [sym_unit_expression] = STATE(1742), + [sym_struct_expression] = STATE(1742), + [sym_if_expression] = STATE(1742), + [sym_match_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_loop_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_const_block] = STATE(1742), + [sym_closure_expression] = STATE(1742), + [sym_closure_parameters] = STATE(244), + [sym_label] = STATE(3682), + [sym_break_expression] = STATE(1742), + [sym_continue_expression] = STATE(1742), + [sym_index_expression] = STATE(1742), + [sym_await_expression] = STATE(1742), + [sym_field_expression] = STATE(1652), + [sym_unsafe_block] = STATE(1742), + [sym_async_block] = STATE(1742), + [sym_try_block] = STATE(1742), + [sym_block] = STATE(1742), + [sym__literal] = STATE(1742), + [sym_string_literal] = STATE(1723), + [sym_raw_string_literal] = STATE(1723), + [sym_boolean_literal] = STATE(1723), [sym_line_comment] = STATE(302), [sym_block_comment] = STATE(302), - [sym_identifier] = ACTIONS(334), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [sym_identifier] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(461), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LBRACE] = ACTIONS(405), + [anon_sym_STAR] = ACTIONS(1020), + [anon_sym_u8] = ACTIONS(409), + [anon_sym_i8] = ACTIONS(409), + [anon_sym_u16] = ACTIONS(409), + [anon_sym_i16] = ACTIONS(409), + [anon_sym_u32] = ACTIONS(409), + [anon_sym_i32] = ACTIONS(409), + [anon_sym_u64] = ACTIONS(409), + [anon_sym_i64] = ACTIONS(409), + [anon_sym_u128] = ACTIONS(409), + [anon_sym_i128] = ACTIONS(409), + [anon_sym_isize] = ACTIONS(409), + [anon_sym_usize] = ACTIONS(409), + [anon_sym_f32] = ACTIONS(409), + [anon_sym_f64] = ACTIONS(409), + [anon_sym_bool] = ACTIONS(409), + [anon_sym_str] = ACTIONS(409), + [anon_sym_char] = ACTIONS(409), + [anon_sym_DASH] = ACTIONS(1020), + [anon_sym_BANG] = ACTIONS(1020), + [anon_sym_AMP] = ACTIONS(1022), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1082), + [anon_sym_COLON_COLON] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(415), + [anon_sym_break] = ACTIONS(417), + [anon_sym_const] = ACTIONS(419), + [anon_sym_continue] = ACTIONS(421), + [anon_sym_default] = ACTIONS(423), + [anon_sym_for] = ACTIONS(425), + [anon_sym_if] = ACTIONS(427), + [anon_sym_loop] = ACTIONS(429), + [anon_sym_match] = ACTIONS(431), + [anon_sym_return] = ACTIONS(433), + [anon_sym_static] = ACTIONS(435), + [anon_sym_union] = ACTIONS(423), + [anon_sym_unsafe] = ACTIONS(437), + [anon_sym_while] = ACTIONS(439), + [anon_sym_yield] = ACTIONS(441), + [anon_sym_move] = ACTIONS(443), + [anon_sym_try] = ACTIONS(445), + [sym_integer_literal] = ACTIONS(447), + [aux_sym_string_literal_token1] = ACTIONS(449), + [sym_char_literal] = ACTIONS(447), + [anon_sym_true] = ACTIONS(451), + [anon_sym_false] = ACTIONS(451), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(453), + [sym_super] = ACTIONS(455), + [sym_crate] = ACTIONS(455), + [sym_metavariable] = ACTIONS(457), + [sym__raw_string_literal_start] = ACTIONS(459), + [sym_float_literal] = ACTIONS(447), }, [303] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1495), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1693), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1419), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(303), [sym_block_comment] = STATE(303), - [sym_identifier] = ACTIONS(334), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1176), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(365), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [304] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1251), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), + [sym_bracketed_type] = STATE(3593), + [sym_generic_function] = STATE(1742), + [sym_generic_type_with_turbofish] = STATE(2901), + [sym__expression_except_range] = STATE(1655), + [sym__expression] = STATE(1824), + [sym_macro_invocation] = STATE(1752), + [sym_scoped_identifier] = STATE(1584), [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_range_expression] = STATE(1746), + [sym_unary_expression] = STATE(1742), + [sym_try_expression] = STATE(1742), + [sym_reference_expression] = STATE(1742), + [sym_binary_expression] = STATE(1742), + [sym_assignment_expression] = STATE(1742), + [sym_compound_assignment_expr] = STATE(1742), + [sym_type_cast_expression] = STATE(1742), + [sym_return_expression] = STATE(1742), + [sym_yield_expression] = STATE(1742), + [sym_call_expression] = STATE(1742), + [sym_array_expression] = STATE(1742), + [sym_parenthesized_expression] = STATE(1742), + [sym_tuple_expression] = STATE(1742), + [sym_unit_expression] = STATE(1742), + [sym_struct_expression] = STATE(1742), + [sym_if_expression] = STATE(1742), + [sym_match_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_loop_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_const_block] = STATE(1742), + [sym_closure_expression] = STATE(1742), + [sym_closure_parameters] = STATE(244), + [sym_label] = STATE(3682), + [sym_break_expression] = STATE(1742), + [sym_continue_expression] = STATE(1742), + [sym_index_expression] = STATE(1742), + [sym_await_expression] = STATE(1742), + [sym_field_expression] = STATE(1652), + [sym_unsafe_block] = STATE(1742), + [sym_async_block] = STATE(1742), + [sym_try_block] = STATE(1742), + [sym_block] = STATE(1742), + [sym__literal] = STATE(1742), + [sym_string_literal] = STATE(1723), + [sym_raw_string_literal] = STATE(1723), + [sym_boolean_literal] = STATE(1723), [sym_line_comment] = STATE(304), [sym_block_comment] = STATE(304), - [sym_identifier] = ACTIONS(334), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1176), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [sym_identifier] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(461), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LBRACE] = ACTIONS(405), + [anon_sym_STAR] = ACTIONS(1020), + [anon_sym_u8] = ACTIONS(409), + [anon_sym_i8] = ACTIONS(409), + [anon_sym_u16] = ACTIONS(409), + [anon_sym_i16] = ACTIONS(409), + [anon_sym_u32] = ACTIONS(409), + [anon_sym_i32] = ACTIONS(409), + [anon_sym_u64] = ACTIONS(409), + [anon_sym_i64] = ACTIONS(409), + [anon_sym_u128] = ACTIONS(409), + [anon_sym_i128] = ACTIONS(409), + [anon_sym_isize] = ACTIONS(409), + [anon_sym_usize] = ACTIONS(409), + [anon_sym_f32] = ACTIONS(409), + [anon_sym_f64] = ACTIONS(409), + [anon_sym_bool] = ACTIONS(409), + [anon_sym_str] = ACTIONS(409), + [anon_sym_char] = ACTIONS(409), + [anon_sym_DASH] = ACTIONS(1020), + [anon_sym_BANG] = ACTIONS(1020), + [anon_sym_AMP] = ACTIONS(1022), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1082), + [anon_sym_COLON_COLON] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(415), + [anon_sym_break] = ACTIONS(417), + [anon_sym_const] = ACTIONS(419), + [anon_sym_continue] = ACTIONS(421), + [anon_sym_default] = ACTIONS(423), + [anon_sym_for] = ACTIONS(425), + [anon_sym_if] = ACTIONS(427), + [anon_sym_loop] = ACTIONS(429), + [anon_sym_match] = ACTIONS(431), + [anon_sym_return] = ACTIONS(433), + [anon_sym_static] = ACTIONS(435), + [anon_sym_union] = ACTIONS(423), + [anon_sym_unsafe] = ACTIONS(437), + [anon_sym_while] = ACTIONS(439), + [anon_sym_yield] = ACTIONS(441), + [anon_sym_move] = ACTIONS(443), + [anon_sym_try] = ACTIONS(445), + [sym_integer_literal] = ACTIONS(447), + [aux_sym_string_literal_token1] = ACTIONS(449), + [sym_char_literal] = ACTIONS(447), + [anon_sym_true] = ACTIONS(451), + [anon_sym_false] = ACTIONS(451), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(453), + [sym_super] = ACTIONS(455), + [sym_crate] = ACTIONS(455), + [sym_metavariable] = ACTIONS(457), + [sym__raw_string_literal_start] = ACTIONS(459), + [sym_float_literal] = ACTIONS(447), }, [305] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1485), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(305), [sym_block_comment] = STATE(305), - [sym_identifier] = ACTIONS(334), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1176), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [ts_builtin_sym_end] = ACTIONS(996), + [sym_identifier] = ACTIONS(994), + [anon_sym_SEMI] = ACTIONS(996), + [anon_sym_macro_rules_BANG] = ACTIONS(996), + [anon_sym_LPAREN] = ACTIONS(996), + [anon_sym_LBRACK] = ACTIONS(996), + [anon_sym_LBRACE] = ACTIONS(996), + [anon_sym_RBRACE] = ACTIONS(996), + [anon_sym_macro] = ACTIONS(994), + [anon_sym_PLUS] = ACTIONS(994), + [anon_sym_STAR] = ACTIONS(994), + [anon_sym_QMARK] = ACTIONS(996), + [anon_sym_u8] = ACTIONS(994), + [anon_sym_i8] = ACTIONS(994), + [anon_sym_u16] = ACTIONS(994), + [anon_sym_i16] = ACTIONS(994), + [anon_sym_u32] = ACTIONS(994), + [anon_sym_i32] = ACTIONS(994), + [anon_sym_u64] = ACTIONS(994), + [anon_sym_i64] = ACTIONS(994), + [anon_sym_u128] = ACTIONS(994), + [anon_sym_i128] = ACTIONS(994), + [anon_sym_isize] = ACTIONS(994), + [anon_sym_usize] = ACTIONS(994), + [anon_sym_f32] = ACTIONS(994), + [anon_sym_f64] = ACTIONS(994), + [anon_sym_bool] = ACTIONS(994), + [anon_sym_str] = ACTIONS(994), + [anon_sym_char] = ACTIONS(994), + [anon_sym_DASH] = ACTIONS(994), + [anon_sym_SLASH] = ACTIONS(994), + [anon_sym_PERCENT] = ACTIONS(994), + [anon_sym_CARET] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(994), + [anon_sym_AMP] = ACTIONS(994), + [anon_sym_PIPE] = ACTIONS(994), + [anon_sym_AMP_AMP] = ACTIONS(996), + [anon_sym_PIPE_PIPE] = ACTIONS(996), + [anon_sym_LT_LT] = ACTIONS(994), + [anon_sym_GT_GT] = ACTIONS(994), + [anon_sym_PLUS_EQ] = ACTIONS(996), + [anon_sym_DASH_EQ] = ACTIONS(996), + [anon_sym_STAR_EQ] = ACTIONS(996), + [anon_sym_SLASH_EQ] = ACTIONS(996), + [anon_sym_PERCENT_EQ] = ACTIONS(996), + [anon_sym_CARET_EQ] = ACTIONS(996), + [anon_sym_AMP_EQ] = ACTIONS(996), + [anon_sym_PIPE_EQ] = ACTIONS(996), + [anon_sym_LT_LT_EQ] = ACTIONS(996), + [anon_sym_GT_GT_EQ] = ACTIONS(996), + [anon_sym_EQ] = ACTIONS(994), + [anon_sym_EQ_EQ] = ACTIONS(996), + [anon_sym_BANG_EQ] = ACTIONS(996), + [anon_sym_GT] = ACTIONS(994), + [anon_sym_LT] = ACTIONS(994), + [anon_sym_GT_EQ] = ACTIONS(996), + [anon_sym_LT_EQ] = ACTIONS(996), + [anon_sym_DOT] = ACTIONS(994), + [anon_sym_DOT_DOT] = ACTIONS(994), + [anon_sym_DOT_DOT_DOT] = ACTIONS(996), + [anon_sym_DOT_DOT_EQ] = ACTIONS(996), + [anon_sym_COLON_COLON] = ACTIONS(996), + [anon_sym_POUND] = ACTIONS(996), + [anon_sym_SQUOTE] = ACTIONS(994), + [anon_sym_as] = ACTIONS(994), + [anon_sym_async] = ACTIONS(994), + [anon_sym_break] = ACTIONS(994), + [anon_sym_const] = ACTIONS(994), + [anon_sym_continue] = ACTIONS(994), + [anon_sym_default] = ACTIONS(994), + [anon_sym_enum] = ACTIONS(994), + [anon_sym_fn] = ACTIONS(994), + [anon_sym_for] = ACTIONS(994), + [anon_sym_if] = ACTIONS(994), + [anon_sym_impl] = ACTIONS(994), + [anon_sym_let] = ACTIONS(994), + [anon_sym_loop] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_mod] = ACTIONS(994), + [anon_sym_pub] = ACTIONS(994), + [anon_sym_return] = ACTIONS(994), + [anon_sym_static] = ACTIONS(994), + [anon_sym_struct] = ACTIONS(994), + [anon_sym_trait] = ACTIONS(994), + [anon_sym_type] = ACTIONS(994), + [anon_sym_union] = ACTIONS(994), + [anon_sym_unsafe] = ACTIONS(994), + [anon_sym_use] = ACTIONS(994), + [anon_sym_while] = ACTIONS(994), + [anon_sym_extern] = ACTIONS(994), + [anon_sym_yield] = ACTIONS(994), + [anon_sym_move] = ACTIONS(994), + [anon_sym_try] = ACTIONS(994), + [sym_integer_literal] = ACTIONS(996), + [aux_sym_string_literal_token1] = ACTIONS(996), + [sym_char_literal] = ACTIONS(996), + [anon_sym_true] = ACTIONS(994), + [anon_sym_false] = ACTIONS(994), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(994), + [sym_super] = ACTIONS(994), + [sym_crate] = ACTIONS(994), + [sym_metavariable] = ACTIONS(996), + [sym__raw_string_literal_start] = ACTIONS(996), + [sym_float_literal] = ACTIONS(996), }, [306] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1486), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2791), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1630), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1574), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(249), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(306), [sym_block_comment] = STATE(306), - [sym_identifier] = ACTIONS(334), + [sym_identifier] = ACTIONS(471), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1176), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_u8] = ACTIONS(473), + [anon_sym_i8] = ACTIONS(473), + [anon_sym_u16] = ACTIONS(473), + [anon_sym_i16] = ACTIONS(473), + [anon_sym_u32] = ACTIONS(473), + [anon_sym_i32] = ACTIONS(473), + [anon_sym_u64] = ACTIONS(473), + [anon_sym_i64] = ACTIONS(473), + [anon_sym_u128] = ACTIONS(473), + [anon_sym_i128] = ACTIONS(473), + [anon_sym_isize] = ACTIONS(473), + [anon_sym_usize] = ACTIONS(473), + [anon_sym_f32] = ACTIONS(473), + [anon_sym_f64] = ACTIONS(473), + [anon_sym_bool] = ACTIONS(473), + [anon_sym_str] = ACTIONS(473), + [anon_sym_char] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(998), + [anon_sym_BANG] = ACTIONS(998), + [anon_sym_AMP] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1074), + [anon_sym_COLON_COLON] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(499), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_default] = ACTIONS(481), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(503), + [anon_sym_static] = ACTIONS(505), + [anon_sym_union] = ACTIONS(481), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(507), + [anon_sym_move] = ACTIONS(509), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [307] = { - [sym_bracketed_type] = STATE(3498), - [sym_generic_function] = STATE(1637), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1604), - [sym__expression] = STATE(1865), - [sym_macro_invocation] = STATE(1641), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3100), - [sym_range_expression] = STATE(1639), - [sym_unary_expression] = STATE(1637), - [sym_try_expression] = STATE(1637), - [sym_reference_expression] = STATE(1637), - [sym_binary_expression] = STATE(1637), - [sym_assignment_expression] = STATE(1637), - [sym_compound_assignment_expr] = STATE(1637), - [sym_type_cast_expression] = STATE(1637), - [sym_return_expression] = STATE(1637), - [sym_yield_expression] = STATE(1637), - [sym_call_expression] = STATE(1637), - [sym_array_expression] = STATE(1637), - [sym_parenthesized_expression] = STATE(1637), - [sym_tuple_expression] = STATE(1637), - [sym_unit_expression] = STATE(1637), - [sym_struct_expression] = STATE(1637), - [sym_if_expression] = STATE(1637), - [sym_match_expression] = STATE(1637), - [sym_while_expression] = STATE(1637), - [sym_loop_expression] = STATE(1637), - [sym_for_expression] = STATE(1637), - [sym_const_block] = STATE(1637), - [sym_closure_expression] = STATE(1637), - [sym_closure_parameters] = STATE(237), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1637), - [sym_continue_expression] = STATE(1637), - [sym_index_expression] = STATE(1637), - [sym_await_expression] = STATE(1637), - [sym_field_expression] = STATE(1620), - [sym_unsafe_block] = STATE(1637), - [sym_async_block] = STATE(1637), - [sym_try_block] = STATE(1637), - [sym_block] = STATE(1637), - [sym__literal] = STATE(1637), - [sym_string_literal] = STATE(1778), - [sym_raw_string_literal] = STATE(1778), - [sym_boolean_literal] = STATE(1778), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1882), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1419), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(307), [sym_block_comment] = STATE(307), - [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_STAR] = ACTIONS(1021), - [anon_sym_u8] = ACTIONS(404), - [anon_sym_i8] = ACTIONS(404), - [anon_sym_u16] = ACTIONS(404), - [anon_sym_i16] = ACTIONS(404), - [anon_sym_u32] = ACTIONS(404), - [anon_sym_i32] = ACTIONS(404), - [anon_sym_u64] = ACTIONS(404), - [anon_sym_i64] = ACTIONS(404), - [anon_sym_u128] = ACTIONS(404), - [anon_sym_i128] = ACTIONS(404), - [anon_sym_isize] = ACTIONS(404), - [anon_sym_usize] = ACTIONS(404), - [anon_sym_f32] = ACTIONS(404), - [anon_sym_f64] = ACTIONS(404), - [anon_sym_bool] = ACTIONS(404), - [anon_sym_str] = ACTIONS(404), - [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_BANG] = ACTIONS(1021), - [anon_sym_AMP] = ACTIONS(1023), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(408), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_const] = ACTIONS(414), - [anon_sym_continue] = ACTIONS(416), - [anon_sym_default] = ACTIONS(418), - [anon_sym_for] = ACTIONS(420), - [anon_sym_if] = ACTIONS(422), - [anon_sym_loop] = ACTIONS(424), - [anon_sym_match] = ACTIONS(426), - [anon_sym_return] = ACTIONS(428), - [anon_sym_static] = ACTIONS(430), - [anon_sym_union] = ACTIONS(418), - [anon_sym_unsafe] = ACTIONS(432), - [anon_sym_while] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_move] = ACTIONS(438), - [anon_sym_try] = ACTIONS(440), - [sym_integer_literal] = ACTIONS(442), - [aux_sym_string_literal_token1] = ACTIONS(444), - [sym_char_literal] = ACTIONS(442), - [anon_sym_true] = ACTIONS(446), - [anon_sym_false] = ACTIONS(446), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(448), - [sym_super] = ACTIONS(450), - [sym_crate] = ACTIONS(450), - [sym_metavariable] = ACTIONS(452), - [sym__raw_string_literal_start] = ACTIONS(454), - [sym_float_literal] = ACTIONS(442), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(365), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [308] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1671), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2791), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1712), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1574), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(241), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(308), [sym_block_comment] = STATE(308), - [sym_identifier] = ACTIONS(334), + [sym_identifier] = ACTIONS(471), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1054), + [anon_sym_u8] = ACTIONS(473), + [anon_sym_i8] = ACTIONS(473), + [anon_sym_u16] = ACTIONS(473), + [anon_sym_i16] = ACTIONS(473), + [anon_sym_u32] = ACTIONS(473), + [anon_sym_i32] = ACTIONS(473), + [anon_sym_u64] = ACTIONS(473), + [anon_sym_i64] = ACTIONS(473), + [anon_sym_u128] = ACTIONS(473), + [anon_sym_i128] = ACTIONS(473), + [anon_sym_isize] = ACTIONS(473), + [anon_sym_usize] = ACTIONS(473), + [anon_sym_f32] = ACTIONS(473), + [anon_sym_f64] = ACTIONS(473), + [anon_sym_bool] = ACTIONS(473), + [anon_sym_str] = ACTIONS(473), + [anon_sym_char] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(1054), + [anon_sym_BANG] = ACTIONS(1054), + [anon_sym_AMP] = ACTIONS(1056), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1247), + [anon_sym_COLON_COLON] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(479), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(481), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(483), + [anon_sym_static] = ACTIONS(485), + [anon_sym_union] = ACTIONS(481), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(487), + [anon_sym_move] = ACTIONS(489), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [309] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1853), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(458), - [sym_match_expression] = STATE(458), - [sym_while_expression] = STATE(458), - [sym_loop_expression] = STATE(458), - [sym_for_expression] = STATE(458), - [sym_const_block] = STATE(458), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3579), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(458), - [sym_async_block] = STATE(458), - [sym_try_block] = STATE(458), - [sym_block] = STATE(458), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1700), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1419), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(309), [sym_block_comment] = STATE(309), - [sym_identifier] = ACTIONS(334), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(1210), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(1212), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(1214), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(1216), - [anon_sym_if] = ACTIONS(1218), - [anon_sym_loop] = ACTIONS(1220), - [anon_sym_match] = ACTIONS(1222), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(1224), - [anon_sym_while] = ACTIONS(1226), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(1228), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(365), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [310] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1323), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1898), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1419), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(310), [sym_block_comment] = STATE(310), - [sym_identifier] = ACTIONS(456), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(1041), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(1041), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_AMP] = ACTIONS(1043), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(464), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(468), - [anon_sym_static] = ACTIONS(470), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(472), - [anon_sym_move] = ACTIONS(474), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(365), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [311] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1870), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2791), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1862), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1574), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(241), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(311), [sym_block_comment] = STATE(311), - [sym_identifier] = ACTIONS(334), + [sym_identifier] = ACTIONS(471), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1054), + [anon_sym_u8] = ACTIONS(473), + [anon_sym_i8] = ACTIONS(473), + [anon_sym_u16] = ACTIONS(473), + [anon_sym_i16] = ACTIONS(473), + [anon_sym_u32] = ACTIONS(473), + [anon_sym_i32] = ACTIONS(473), + [anon_sym_u64] = ACTIONS(473), + [anon_sym_i64] = ACTIONS(473), + [anon_sym_u128] = ACTIONS(473), + [anon_sym_i128] = ACTIONS(473), + [anon_sym_isize] = ACTIONS(473), + [anon_sym_usize] = ACTIONS(473), + [anon_sym_f32] = ACTIONS(473), + [anon_sym_f64] = ACTIONS(473), + [anon_sym_bool] = ACTIONS(473), + [anon_sym_str] = ACTIONS(473), + [anon_sym_char] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(1054), + [anon_sym_BANG] = ACTIONS(1054), + [anon_sym_AMP] = ACTIONS(1056), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1060), + [anon_sym_COLON_COLON] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(479), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(481), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(483), + [anon_sym_static] = ACTIONS(485), + [anon_sym_union] = ACTIONS(481), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(487), + [anon_sym_move] = ACTIONS(489), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [312] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1713), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(312), [sym_block_comment] = STATE(312), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(1041), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(1041), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_AMP] = ACTIONS(1043), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(464), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(468), - [anon_sym_static] = ACTIONS(470), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(472), - [anon_sym_move] = ACTIONS(474), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [ts_builtin_sym_end] = ACTIONS(1261), + [sym_identifier] = ACTIONS(1263), + [anon_sym_SEMI] = ACTIONS(1261), + [anon_sym_macro_rules_BANG] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1261), + [anon_sym_LBRACK] = ACTIONS(1261), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_RBRACE] = ACTIONS(1261), + [anon_sym_macro] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(1263), + [anon_sym_STAR] = ACTIONS(1263), + [anon_sym_QMARK] = ACTIONS(1261), + [anon_sym_u8] = ACTIONS(1263), + [anon_sym_i8] = ACTIONS(1263), + [anon_sym_u16] = ACTIONS(1263), + [anon_sym_i16] = ACTIONS(1263), + [anon_sym_u32] = ACTIONS(1263), + [anon_sym_i32] = ACTIONS(1263), + [anon_sym_u64] = ACTIONS(1263), + [anon_sym_i64] = ACTIONS(1263), + [anon_sym_u128] = ACTIONS(1263), + [anon_sym_i128] = ACTIONS(1263), + [anon_sym_isize] = ACTIONS(1263), + [anon_sym_usize] = ACTIONS(1263), + [anon_sym_f32] = ACTIONS(1263), + [anon_sym_f64] = ACTIONS(1263), + [anon_sym_bool] = ACTIONS(1263), + [anon_sym_str] = ACTIONS(1263), + [anon_sym_char] = ACTIONS(1263), + [anon_sym_DASH] = ACTIONS(1263), + [anon_sym_SLASH] = ACTIONS(1263), + [anon_sym_PERCENT] = ACTIONS(1263), + [anon_sym_CARET] = ACTIONS(1263), + [anon_sym_BANG] = ACTIONS(1263), + [anon_sym_AMP] = ACTIONS(1263), + [anon_sym_PIPE] = ACTIONS(1263), + [anon_sym_AMP_AMP] = ACTIONS(1261), + [anon_sym_PIPE_PIPE] = ACTIONS(1261), + [anon_sym_LT_LT] = ACTIONS(1263), + [anon_sym_GT_GT] = ACTIONS(1263), + [anon_sym_PLUS_EQ] = ACTIONS(1261), + [anon_sym_DASH_EQ] = ACTIONS(1261), + [anon_sym_STAR_EQ] = ACTIONS(1261), + [anon_sym_SLASH_EQ] = ACTIONS(1261), + [anon_sym_PERCENT_EQ] = ACTIONS(1261), + [anon_sym_CARET_EQ] = ACTIONS(1261), + [anon_sym_AMP_EQ] = ACTIONS(1261), + [anon_sym_PIPE_EQ] = ACTIONS(1261), + [anon_sym_LT_LT_EQ] = ACTIONS(1261), + [anon_sym_GT_GT_EQ] = ACTIONS(1261), + [anon_sym_EQ] = ACTIONS(1263), + [anon_sym_EQ_EQ] = ACTIONS(1261), + [anon_sym_BANG_EQ] = ACTIONS(1261), + [anon_sym_GT] = ACTIONS(1263), + [anon_sym_LT] = ACTIONS(1263), + [anon_sym_GT_EQ] = ACTIONS(1261), + [anon_sym_LT_EQ] = ACTIONS(1261), + [anon_sym_DOT] = ACTIONS(1263), + [anon_sym_DOT_DOT] = ACTIONS(1263), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1261), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1261), + [anon_sym_COLON_COLON] = ACTIONS(1261), + [anon_sym_POUND] = ACTIONS(1261), + [anon_sym_SQUOTE] = ACTIONS(1263), + [anon_sym_as] = ACTIONS(1263), + [anon_sym_async] = ACTIONS(1263), + [anon_sym_break] = ACTIONS(1263), + [anon_sym_const] = ACTIONS(1263), + [anon_sym_continue] = ACTIONS(1263), + [anon_sym_default] = ACTIONS(1263), + [anon_sym_enum] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1263), + [anon_sym_for] = ACTIONS(1263), + [anon_sym_if] = ACTIONS(1263), + [anon_sym_impl] = ACTIONS(1263), + [anon_sym_let] = ACTIONS(1263), + [anon_sym_loop] = ACTIONS(1263), + [anon_sym_match] = ACTIONS(1263), + [anon_sym_mod] = ACTIONS(1263), + [anon_sym_pub] = ACTIONS(1263), + [anon_sym_return] = ACTIONS(1263), + [anon_sym_static] = ACTIONS(1263), + [anon_sym_struct] = ACTIONS(1263), + [anon_sym_trait] = ACTIONS(1263), + [anon_sym_type] = ACTIONS(1263), + [anon_sym_union] = ACTIONS(1263), + [anon_sym_unsafe] = ACTIONS(1263), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_while] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1263), + [anon_sym_yield] = ACTIONS(1263), + [anon_sym_move] = ACTIONS(1263), + [anon_sym_try] = ACTIONS(1263), + [sym_integer_literal] = ACTIONS(1261), + [aux_sym_string_literal_token1] = ACTIONS(1261), + [sym_char_literal] = ACTIONS(1261), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1263), + [sym_super] = ACTIONS(1263), + [sym_crate] = ACTIONS(1263), + [sym_metavariable] = ACTIONS(1261), + [sym__raw_string_literal_start] = ACTIONS(1261), + [sym_float_literal] = ACTIONS(1261), }, [313] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1868), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1904), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1419), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(313), [sym_block_comment] = STATE(313), - [sym_identifier] = ACTIONS(334), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(365), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [314] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1488), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1701), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1419), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(314), [sym_block_comment] = STATE(314), - [sym_identifier] = ACTIONS(334), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1176), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(365), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [315] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1490), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(315), [sym_block_comment] = STATE(315), - [sym_identifier] = ACTIONS(334), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1176), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [ts_builtin_sym_end] = ACTIONS(1265), + [sym_identifier] = ACTIONS(1267), + [anon_sym_SEMI] = ACTIONS(1265), + [anon_sym_macro_rules_BANG] = ACTIONS(1265), + [anon_sym_LPAREN] = ACTIONS(1265), + [anon_sym_LBRACK] = ACTIONS(1265), + [anon_sym_LBRACE] = ACTIONS(1265), + [anon_sym_RBRACE] = ACTIONS(1265), + [anon_sym_macro] = ACTIONS(1267), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1267), + [anon_sym_QMARK] = ACTIONS(1265), + [anon_sym_u8] = ACTIONS(1267), + [anon_sym_i8] = ACTIONS(1267), + [anon_sym_u16] = ACTIONS(1267), + [anon_sym_i16] = ACTIONS(1267), + [anon_sym_u32] = ACTIONS(1267), + [anon_sym_i32] = ACTIONS(1267), + [anon_sym_u64] = ACTIONS(1267), + [anon_sym_i64] = ACTIONS(1267), + [anon_sym_u128] = ACTIONS(1267), + [anon_sym_i128] = ACTIONS(1267), + [anon_sym_isize] = ACTIONS(1267), + [anon_sym_usize] = ACTIONS(1267), + [anon_sym_f32] = ACTIONS(1267), + [anon_sym_f64] = ACTIONS(1267), + [anon_sym_bool] = ACTIONS(1267), + [anon_sym_str] = ACTIONS(1267), + [anon_sym_char] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_SLASH] = ACTIONS(1267), + [anon_sym_PERCENT] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1267), + [anon_sym_BANG] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(1267), + [anon_sym_PIPE] = ACTIONS(1267), + [anon_sym_AMP_AMP] = ACTIONS(1265), + [anon_sym_PIPE_PIPE] = ACTIONS(1265), + [anon_sym_LT_LT] = ACTIONS(1267), + [anon_sym_GT_GT] = ACTIONS(1267), + [anon_sym_PLUS_EQ] = ACTIONS(1265), + [anon_sym_DASH_EQ] = ACTIONS(1265), + [anon_sym_STAR_EQ] = ACTIONS(1265), + [anon_sym_SLASH_EQ] = ACTIONS(1265), + [anon_sym_PERCENT_EQ] = ACTIONS(1265), + [anon_sym_CARET_EQ] = ACTIONS(1265), + [anon_sym_AMP_EQ] = ACTIONS(1265), + [anon_sym_PIPE_EQ] = ACTIONS(1265), + [anon_sym_LT_LT_EQ] = ACTIONS(1265), + [anon_sym_GT_GT_EQ] = ACTIONS(1265), + [anon_sym_EQ] = ACTIONS(1267), + [anon_sym_EQ_EQ] = ACTIONS(1265), + [anon_sym_BANG_EQ] = ACTIONS(1265), + [anon_sym_GT] = ACTIONS(1267), + [anon_sym_LT] = ACTIONS(1267), + [anon_sym_GT_EQ] = ACTIONS(1265), + [anon_sym_LT_EQ] = ACTIONS(1265), + [anon_sym_DOT] = ACTIONS(1267), + [anon_sym_DOT_DOT] = ACTIONS(1267), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1265), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1265), + [anon_sym_COLON_COLON] = ACTIONS(1265), + [anon_sym_POUND] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_as] = ACTIONS(1267), + [anon_sym_async] = ACTIONS(1267), + [anon_sym_break] = ACTIONS(1267), + [anon_sym_const] = ACTIONS(1267), + [anon_sym_continue] = ACTIONS(1267), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_enum] = ACTIONS(1267), + [anon_sym_fn] = ACTIONS(1267), + [anon_sym_for] = ACTIONS(1267), + [anon_sym_if] = ACTIONS(1267), + [anon_sym_impl] = ACTIONS(1267), + [anon_sym_let] = ACTIONS(1267), + [anon_sym_loop] = ACTIONS(1267), + [anon_sym_match] = ACTIONS(1267), + [anon_sym_mod] = ACTIONS(1267), + [anon_sym_pub] = ACTIONS(1267), + [anon_sym_return] = ACTIONS(1267), + [anon_sym_static] = ACTIONS(1267), + [anon_sym_struct] = ACTIONS(1267), + [anon_sym_trait] = ACTIONS(1267), + [anon_sym_type] = ACTIONS(1267), + [anon_sym_union] = ACTIONS(1267), + [anon_sym_unsafe] = ACTIONS(1267), + [anon_sym_use] = ACTIONS(1267), + [anon_sym_while] = ACTIONS(1267), + [anon_sym_extern] = ACTIONS(1267), + [anon_sym_yield] = ACTIONS(1267), + [anon_sym_move] = ACTIONS(1267), + [anon_sym_try] = ACTIONS(1267), + [sym_integer_literal] = ACTIONS(1265), + [aux_sym_string_literal_token1] = ACTIONS(1265), + [sym_char_literal] = ACTIONS(1265), + [anon_sym_true] = ACTIONS(1267), + [anon_sym_false] = ACTIONS(1267), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1267), + [sym_super] = ACTIONS(1267), + [sym_crate] = ACTIONS(1267), + [sym_metavariable] = ACTIONS(1265), + [sym__raw_string_literal_start] = ACTIONS(1265), + [sym_float_literal] = ACTIONS(1265), }, [316] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1733), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(316), [sym_block_comment] = STATE(316), - [sym_identifier] = ACTIONS(334), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [ts_builtin_sym_end] = ACTIONS(1269), + [sym_identifier] = ACTIONS(1271), + [anon_sym_SEMI] = ACTIONS(1269), + [anon_sym_macro_rules_BANG] = ACTIONS(1269), + [anon_sym_LPAREN] = ACTIONS(1269), + [anon_sym_LBRACK] = ACTIONS(1269), + [anon_sym_LBRACE] = ACTIONS(1269), + [anon_sym_RBRACE] = ACTIONS(1269), + [anon_sym_macro] = ACTIONS(1271), + [anon_sym_PLUS] = ACTIONS(1271), + [anon_sym_STAR] = ACTIONS(1271), + [anon_sym_QMARK] = ACTIONS(1269), + [anon_sym_u8] = ACTIONS(1271), + [anon_sym_i8] = ACTIONS(1271), + [anon_sym_u16] = ACTIONS(1271), + [anon_sym_i16] = ACTIONS(1271), + [anon_sym_u32] = ACTIONS(1271), + [anon_sym_i32] = ACTIONS(1271), + [anon_sym_u64] = ACTIONS(1271), + [anon_sym_i64] = ACTIONS(1271), + [anon_sym_u128] = ACTIONS(1271), + [anon_sym_i128] = ACTIONS(1271), + [anon_sym_isize] = ACTIONS(1271), + [anon_sym_usize] = ACTIONS(1271), + [anon_sym_f32] = ACTIONS(1271), + [anon_sym_f64] = ACTIONS(1271), + [anon_sym_bool] = ACTIONS(1271), + [anon_sym_str] = ACTIONS(1271), + [anon_sym_char] = ACTIONS(1271), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_SLASH] = ACTIONS(1271), + [anon_sym_PERCENT] = ACTIONS(1271), + [anon_sym_CARET] = ACTIONS(1271), + [anon_sym_BANG] = ACTIONS(1271), + [anon_sym_AMP] = ACTIONS(1271), + [anon_sym_PIPE] = ACTIONS(1271), + [anon_sym_AMP_AMP] = ACTIONS(1269), + [anon_sym_PIPE_PIPE] = ACTIONS(1269), + [anon_sym_LT_LT] = ACTIONS(1271), + [anon_sym_GT_GT] = ACTIONS(1271), + [anon_sym_PLUS_EQ] = ACTIONS(1269), + [anon_sym_DASH_EQ] = ACTIONS(1269), + [anon_sym_STAR_EQ] = ACTIONS(1269), + [anon_sym_SLASH_EQ] = ACTIONS(1269), + [anon_sym_PERCENT_EQ] = ACTIONS(1269), + [anon_sym_CARET_EQ] = ACTIONS(1269), + [anon_sym_AMP_EQ] = ACTIONS(1269), + [anon_sym_PIPE_EQ] = ACTIONS(1269), + [anon_sym_LT_LT_EQ] = ACTIONS(1269), + [anon_sym_GT_GT_EQ] = ACTIONS(1269), + [anon_sym_EQ] = ACTIONS(1271), + [anon_sym_EQ_EQ] = ACTIONS(1269), + [anon_sym_BANG_EQ] = ACTIONS(1269), + [anon_sym_GT] = ACTIONS(1271), + [anon_sym_LT] = ACTIONS(1271), + [anon_sym_GT_EQ] = ACTIONS(1269), + [anon_sym_LT_EQ] = ACTIONS(1269), + [anon_sym_DOT] = ACTIONS(1271), + [anon_sym_DOT_DOT] = ACTIONS(1271), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1269), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1269), + [anon_sym_COLON_COLON] = ACTIONS(1269), + [anon_sym_POUND] = ACTIONS(1269), + [anon_sym_SQUOTE] = ACTIONS(1271), + [anon_sym_as] = ACTIONS(1271), + [anon_sym_async] = ACTIONS(1271), + [anon_sym_break] = ACTIONS(1271), + [anon_sym_const] = ACTIONS(1271), + [anon_sym_continue] = ACTIONS(1271), + [anon_sym_default] = ACTIONS(1271), + [anon_sym_enum] = ACTIONS(1271), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1271), + [anon_sym_if] = ACTIONS(1271), + [anon_sym_impl] = ACTIONS(1271), + [anon_sym_let] = ACTIONS(1271), + [anon_sym_loop] = ACTIONS(1271), + [anon_sym_match] = ACTIONS(1271), + [anon_sym_mod] = ACTIONS(1271), + [anon_sym_pub] = ACTIONS(1271), + [anon_sym_return] = ACTIONS(1271), + [anon_sym_static] = ACTIONS(1271), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_trait] = ACTIONS(1271), + [anon_sym_type] = ACTIONS(1271), + [anon_sym_union] = ACTIONS(1271), + [anon_sym_unsafe] = ACTIONS(1271), + [anon_sym_use] = ACTIONS(1271), + [anon_sym_while] = ACTIONS(1271), + [anon_sym_extern] = ACTIONS(1271), + [anon_sym_yield] = ACTIONS(1271), + [anon_sym_move] = ACTIONS(1271), + [anon_sym_try] = ACTIONS(1271), + [sym_integer_literal] = ACTIONS(1269), + [aux_sym_string_literal_token1] = ACTIONS(1269), + [sym_char_literal] = ACTIONS(1269), + [anon_sym_true] = ACTIONS(1271), + [anon_sym_false] = ACTIONS(1271), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1271), + [sym_super] = ACTIONS(1271), + [sym_crate] = ACTIONS(1271), + [sym_metavariable] = ACTIONS(1269), + [sym__raw_string_literal_start] = ACTIONS(1269), + [sym_float_literal] = ACTIONS(1269), }, [317] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1782), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1747), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1419), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(317), [sym_block_comment] = STATE(317), - [sym_identifier] = ACTIONS(334), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(365), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [318] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1786), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(464), - [sym_match_expression] = STATE(464), - [sym_while_expression] = STATE(464), - [sym_loop_expression] = STATE(464), - [sym_for_expression] = STATE(464), - [sym_const_block] = STATE(464), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3579), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(464), - [sym_async_block] = STATE(464), - [sym_try_block] = STATE(464), - [sym_block] = STATE(464), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2791), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1478), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1574), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(249), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(318), [sym_block_comment] = STATE(318), - [sym_identifier] = ACTIONS(334), + [sym_identifier] = ACTIONS(471), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(1210), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(1212), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(1214), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(1216), - [anon_sym_if] = ACTIONS(1218), - [anon_sym_loop] = ACTIONS(1220), - [anon_sym_match] = ACTIONS(1222), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(1224), - [anon_sym_while] = ACTIONS(1226), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(1228), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_u8] = ACTIONS(473), + [anon_sym_i8] = ACTIONS(473), + [anon_sym_u16] = ACTIONS(473), + [anon_sym_i16] = ACTIONS(473), + [anon_sym_u32] = ACTIONS(473), + [anon_sym_i32] = ACTIONS(473), + [anon_sym_u64] = ACTIONS(473), + [anon_sym_i64] = ACTIONS(473), + [anon_sym_u128] = ACTIONS(473), + [anon_sym_i128] = ACTIONS(473), + [anon_sym_isize] = ACTIONS(473), + [anon_sym_usize] = ACTIONS(473), + [anon_sym_f32] = ACTIONS(473), + [anon_sym_f64] = ACTIONS(473), + [anon_sym_bool] = ACTIONS(473), + [anon_sym_str] = ACTIONS(473), + [anon_sym_char] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(998), + [anon_sym_BANG] = ACTIONS(998), + [anon_sym_AMP] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1074), + [anon_sym_COLON_COLON] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(499), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_default] = ACTIONS(481), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(503), + [anon_sym_static] = ACTIONS(505), + [anon_sym_union] = ACTIONS(481), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(507), + [anon_sym_move] = ACTIONS(509), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [319] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1353), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1837), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1419), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(319), [sym_block_comment] = STATE(319), - [sym_identifier] = ACTIONS(334), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1176), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(365), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [320] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1849), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1909), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1419), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(320), [sym_block_comment] = STATE(320), - [sym_identifier] = ACTIONS(334), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(365), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [321] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1798), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2791), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1631), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1574), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(249), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(321), [sym_block_comment] = STATE(321), - [sym_identifier] = ACTIONS(334), + [sym_identifier] = ACTIONS(471), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_u8] = ACTIONS(473), + [anon_sym_i8] = ACTIONS(473), + [anon_sym_u16] = ACTIONS(473), + [anon_sym_i16] = ACTIONS(473), + [anon_sym_u32] = ACTIONS(473), + [anon_sym_i32] = ACTIONS(473), + [anon_sym_u64] = ACTIONS(473), + [anon_sym_i64] = ACTIONS(473), + [anon_sym_u128] = ACTIONS(473), + [anon_sym_i128] = ACTIONS(473), + [anon_sym_isize] = ACTIONS(473), + [anon_sym_usize] = ACTIONS(473), + [anon_sym_f32] = ACTIONS(473), + [anon_sym_f64] = ACTIONS(473), + [anon_sym_bool] = ACTIONS(473), + [anon_sym_str] = ACTIONS(473), + [anon_sym_char] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(998), + [anon_sym_BANG] = ACTIONS(998), + [anon_sym_AMP] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1074), + [anon_sym_COLON_COLON] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(499), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_default] = ACTIONS(481), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(503), + [anon_sym_static] = ACTIONS(505), + [anon_sym_union] = ACTIONS(481), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(507), + [anon_sym_move] = ACTIONS(509), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [322] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1799), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2791), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1632), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1574), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(249), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(322), [sym_block_comment] = STATE(322), - [sym_identifier] = ACTIONS(334), + [sym_identifier] = ACTIONS(471), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_u8] = ACTIONS(473), + [anon_sym_i8] = ACTIONS(473), + [anon_sym_u16] = ACTIONS(473), + [anon_sym_i16] = ACTIONS(473), + [anon_sym_u32] = ACTIONS(473), + [anon_sym_i32] = ACTIONS(473), + [anon_sym_u64] = ACTIONS(473), + [anon_sym_i64] = ACTIONS(473), + [anon_sym_u128] = ACTIONS(473), + [anon_sym_i128] = ACTIONS(473), + [anon_sym_isize] = ACTIONS(473), + [anon_sym_usize] = ACTIONS(473), + [anon_sym_f32] = ACTIONS(473), + [anon_sym_f64] = ACTIONS(473), + [anon_sym_bool] = ACTIONS(473), + [anon_sym_str] = ACTIONS(473), + [anon_sym_char] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(998), + [anon_sym_BANG] = ACTIONS(998), + [anon_sym_AMP] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1074), + [anon_sym_COLON_COLON] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(499), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_default] = ACTIONS(481), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(503), + [anon_sym_static] = ACTIONS(505), + [anon_sym_union] = ACTIONS(481), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(507), + [anon_sym_move] = ACTIONS(509), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [323] = { + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1777), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1419), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(323), [sym_block_comment] = STATE(323), - [ts_builtin_sym_end] = ACTIONS(1232), - [sym_identifier] = ACTIONS(1234), - [anon_sym_SEMI] = ACTIONS(1232), - [anon_sym_macro_rules_BANG] = ACTIONS(1232), - [anon_sym_LPAREN] = ACTIONS(1232), - [anon_sym_LBRACK] = ACTIONS(1232), - [anon_sym_LBRACE] = ACTIONS(1232), - [anon_sym_RBRACE] = ACTIONS(1232), - [anon_sym_PLUS] = ACTIONS(1234), - [anon_sym_STAR] = ACTIONS(1234), - [anon_sym_QMARK] = ACTIONS(1232), - [anon_sym_u8] = ACTIONS(1234), - [anon_sym_i8] = ACTIONS(1234), - [anon_sym_u16] = ACTIONS(1234), - [anon_sym_i16] = ACTIONS(1234), - [anon_sym_u32] = ACTIONS(1234), - [anon_sym_i32] = ACTIONS(1234), - [anon_sym_u64] = ACTIONS(1234), - [anon_sym_i64] = ACTIONS(1234), - [anon_sym_u128] = ACTIONS(1234), - [anon_sym_i128] = ACTIONS(1234), - [anon_sym_isize] = ACTIONS(1234), - [anon_sym_usize] = ACTIONS(1234), - [anon_sym_f32] = ACTIONS(1234), - [anon_sym_f64] = ACTIONS(1234), - [anon_sym_bool] = ACTIONS(1234), - [anon_sym_str] = ACTIONS(1234), - [anon_sym_char] = ACTIONS(1234), - [anon_sym_DASH] = ACTIONS(1234), - [anon_sym_SLASH] = ACTIONS(1234), - [anon_sym_PERCENT] = ACTIONS(1234), - [anon_sym_CARET] = ACTIONS(1234), - [anon_sym_BANG] = ACTIONS(1234), - [anon_sym_AMP] = ACTIONS(1234), - [anon_sym_PIPE] = ACTIONS(1234), - [anon_sym_AMP_AMP] = ACTIONS(1232), - [anon_sym_PIPE_PIPE] = ACTIONS(1232), - [anon_sym_LT_LT] = ACTIONS(1234), - [anon_sym_GT_GT] = ACTIONS(1234), - [anon_sym_PLUS_EQ] = ACTIONS(1232), - [anon_sym_DASH_EQ] = ACTIONS(1232), - [anon_sym_STAR_EQ] = ACTIONS(1232), - [anon_sym_SLASH_EQ] = ACTIONS(1232), - [anon_sym_PERCENT_EQ] = ACTIONS(1232), - [anon_sym_CARET_EQ] = ACTIONS(1232), - [anon_sym_AMP_EQ] = ACTIONS(1232), - [anon_sym_PIPE_EQ] = ACTIONS(1232), - [anon_sym_LT_LT_EQ] = ACTIONS(1232), - [anon_sym_GT_GT_EQ] = ACTIONS(1232), - [anon_sym_EQ] = ACTIONS(1234), - [anon_sym_EQ_EQ] = ACTIONS(1232), - [anon_sym_BANG_EQ] = ACTIONS(1232), - [anon_sym_GT] = ACTIONS(1234), - [anon_sym_LT] = ACTIONS(1234), - [anon_sym_GT_EQ] = ACTIONS(1232), - [anon_sym_LT_EQ] = ACTIONS(1232), - [anon_sym_DOT] = ACTIONS(1234), - [anon_sym_DOT_DOT] = ACTIONS(1234), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1232), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1232), - [anon_sym_COLON_COLON] = ACTIONS(1232), - [anon_sym_POUND] = ACTIONS(1232), - [anon_sym_SQUOTE] = ACTIONS(1234), - [anon_sym_as] = ACTIONS(1234), - [anon_sym_async] = ACTIONS(1234), - [anon_sym_break] = ACTIONS(1234), - [anon_sym_const] = ACTIONS(1234), - [anon_sym_continue] = ACTIONS(1234), - [anon_sym_default] = ACTIONS(1234), - [anon_sym_enum] = ACTIONS(1234), - [anon_sym_fn] = ACTIONS(1234), - [anon_sym_for] = ACTIONS(1234), - [anon_sym_if] = ACTIONS(1234), - [anon_sym_impl] = ACTIONS(1234), - [anon_sym_let] = ACTIONS(1234), - [anon_sym_loop] = ACTIONS(1234), - [anon_sym_match] = ACTIONS(1234), - [anon_sym_mod] = ACTIONS(1234), - [anon_sym_pub] = ACTIONS(1234), - [anon_sym_return] = ACTIONS(1234), - [anon_sym_static] = ACTIONS(1234), - [anon_sym_struct] = ACTIONS(1234), - [anon_sym_trait] = ACTIONS(1234), - [anon_sym_type] = ACTIONS(1234), - [anon_sym_union] = ACTIONS(1234), - [anon_sym_unsafe] = ACTIONS(1234), - [anon_sym_use] = ACTIONS(1234), - [anon_sym_while] = ACTIONS(1234), - [anon_sym_extern] = ACTIONS(1234), - [anon_sym_else] = ACTIONS(1234), - [anon_sym_yield] = ACTIONS(1234), - [anon_sym_move] = ACTIONS(1234), - [anon_sym_try] = ACTIONS(1234), - [sym_integer_literal] = ACTIONS(1232), - [aux_sym_string_literal_token1] = ACTIONS(1232), - [sym_char_literal] = ACTIONS(1232), - [anon_sym_true] = ACTIONS(1234), - [anon_sym_false] = ACTIONS(1234), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1234), - [sym_super] = ACTIONS(1234), - [sym_crate] = ACTIONS(1234), - [sym_metavariable] = ACTIONS(1232), - [sym__raw_string_literal_start] = ACTIONS(1232), - [sym_float_literal] = ACTIONS(1232), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(365), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [324] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1567), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1900), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1419), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(324), [sym_block_comment] = STATE(324), - [sym_identifier] = ACTIONS(456), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(977), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(365), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [325] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1500), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1883), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1419), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(325), [sym_block_comment] = STATE(325), - [sym_identifier] = ACTIONS(334), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1176), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(365), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [326] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1501), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2791), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1633), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1574), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(249), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(326), [sym_block_comment] = STATE(326), - [sym_identifier] = ACTIONS(334), + [sym_identifier] = ACTIONS(471), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1176), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_u8] = ACTIONS(473), + [anon_sym_i8] = ACTIONS(473), + [anon_sym_u16] = ACTIONS(473), + [anon_sym_i16] = ACTIONS(473), + [anon_sym_u32] = ACTIONS(473), + [anon_sym_i32] = ACTIONS(473), + [anon_sym_u64] = ACTIONS(473), + [anon_sym_i64] = ACTIONS(473), + [anon_sym_u128] = ACTIONS(473), + [anon_sym_i128] = ACTIONS(473), + [anon_sym_isize] = ACTIONS(473), + [anon_sym_usize] = ACTIONS(473), + [anon_sym_f32] = ACTIONS(473), + [anon_sym_f64] = ACTIONS(473), + [anon_sym_bool] = ACTIONS(473), + [anon_sym_str] = ACTIONS(473), + [anon_sym_char] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(998), + [anon_sym_BANG] = ACTIONS(998), + [anon_sym_AMP] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1074), + [anon_sym_COLON_COLON] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(499), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_default] = ACTIONS(481), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(503), + [anon_sym_static] = ACTIONS(505), + [anon_sym_union] = ACTIONS(481), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(507), + [anon_sym_move] = ACTIONS(509), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [327] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1494), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1899), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1419), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(463), + [sym_match_expression] = STATE(463), + [sym_while_expression] = STATE(463), + [sym_loop_expression] = STATE(463), + [sym_for_expression] = STATE(463), + [sym_const_block] = STATE(463), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3676), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(463), + [sym_async_block] = STATE(463), + [sym_try_block] = STATE(463), + [sym_block] = STATE(463), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(327), [sym_block_comment] = STATE(327), - [sym_identifier] = ACTIONS(334), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1176), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1273), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(1275), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(1277), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(1279), + [anon_sym_if] = ACTIONS(1281), + [anon_sym_loop] = ACTIONS(1283), + [anon_sym_match] = ACTIONS(1285), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(365), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(1287), + [anon_sym_while] = ACTIONS(1289), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(1291), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [328] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1503), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(328), [sym_block_comment] = STATE(328), - [sym_identifier] = ACTIONS(334), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1176), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [ts_builtin_sym_end] = ACTIONS(1293), + [sym_identifier] = ACTIONS(1295), + [anon_sym_SEMI] = ACTIONS(1293), + [anon_sym_macro_rules_BANG] = ACTIONS(1293), + [anon_sym_LPAREN] = ACTIONS(1293), + [anon_sym_LBRACK] = ACTIONS(1293), + [anon_sym_LBRACE] = ACTIONS(1293), + [anon_sym_RBRACE] = ACTIONS(1293), + [anon_sym_macro] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1295), + [anon_sym_STAR] = ACTIONS(1295), + [anon_sym_QMARK] = ACTIONS(1293), + [anon_sym_u8] = ACTIONS(1295), + [anon_sym_i8] = ACTIONS(1295), + [anon_sym_u16] = ACTIONS(1295), + [anon_sym_i16] = ACTIONS(1295), + [anon_sym_u32] = ACTIONS(1295), + [anon_sym_i32] = ACTIONS(1295), + [anon_sym_u64] = ACTIONS(1295), + [anon_sym_i64] = ACTIONS(1295), + [anon_sym_u128] = ACTIONS(1295), + [anon_sym_i128] = ACTIONS(1295), + [anon_sym_isize] = ACTIONS(1295), + [anon_sym_usize] = ACTIONS(1295), + [anon_sym_f32] = ACTIONS(1295), + [anon_sym_f64] = ACTIONS(1295), + [anon_sym_bool] = ACTIONS(1295), + [anon_sym_str] = ACTIONS(1295), + [anon_sym_char] = ACTIONS(1295), + [anon_sym_DASH] = ACTIONS(1295), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PERCENT] = ACTIONS(1295), + [anon_sym_CARET] = ACTIONS(1295), + [anon_sym_BANG] = ACTIONS(1295), + [anon_sym_AMP] = ACTIONS(1295), + [anon_sym_PIPE] = ACTIONS(1295), + [anon_sym_AMP_AMP] = ACTIONS(1293), + [anon_sym_PIPE_PIPE] = ACTIONS(1293), + [anon_sym_LT_LT] = ACTIONS(1295), + [anon_sym_GT_GT] = ACTIONS(1295), + [anon_sym_PLUS_EQ] = ACTIONS(1293), + [anon_sym_DASH_EQ] = ACTIONS(1293), + [anon_sym_STAR_EQ] = ACTIONS(1293), + [anon_sym_SLASH_EQ] = ACTIONS(1293), + [anon_sym_PERCENT_EQ] = ACTIONS(1293), + [anon_sym_CARET_EQ] = ACTIONS(1293), + [anon_sym_AMP_EQ] = ACTIONS(1293), + [anon_sym_PIPE_EQ] = ACTIONS(1293), + [anon_sym_LT_LT_EQ] = ACTIONS(1293), + [anon_sym_GT_GT_EQ] = ACTIONS(1293), + [anon_sym_EQ] = ACTIONS(1295), + [anon_sym_EQ_EQ] = ACTIONS(1293), + [anon_sym_BANG_EQ] = ACTIONS(1293), + [anon_sym_GT] = ACTIONS(1295), + [anon_sym_LT] = ACTIONS(1295), + [anon_sym_GT_EQ] = ACTIONS(1293), + [anon_sym_LT_EQ] = ACTIONS(1293), + [anon_sym_DOT] = ACTIONS(1295), + [anon_sym_DOT_DOT] = ACTIONS(1295), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1293), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1293), + [anon_sym_COLON_COLON] = ACTIONS(1293), + [anon_sym_POUND] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [anon_sym_as] = ACTIONS(1295), + [anon_sym_async] = ACTIONS(1295), + [anon_sym_break] = ACTIONS(1295), + [anon_sym_const] = ACTIONS(1295), + [anon_sym_continue] = ACTIONS(1295), + [anon_sym_default] = ACTIONS(1295), + [anon_sym_enum] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1295), + [anon_sym_for] = ACTIONS(1295), + [anon_sym_if] = ACTIONS(1295), + [anon_sym_impl] = ACTIONS(1295), + [anon_sym_let] = ACTIONS(1295), + [anon_sym_loop] = ACTIONS(1295), + [anon_sym_match] = ACTIONS(1295), + [anon_sym_mod] = ACTIONS(1295), + [anon_sym_pub] = ACTIONS(1295), + [anon_sym_return] = ACTIONS(1295), + [anon_sym_static] = ACTIONS(1295), + [anon_sym_struct] = ACTIONS(1295), + [anon_sym_trait] = ACTIONS(1295), + [anon_sym_type] = ACTIONS(1295), + [anon_sym_union] = ACTIONS(1295), + [anon_sym_unsafe] = ACTIONS(1295), + [anon_sym_use] = ACTIONS(1295), + [anon_sym_while] = ACTIONS(1295), + [anon_sym_extern] = ACTIONS(1295), + [anon_sym_yield] = ACTIONS(1295), + [anon_sym_move] = ACTIONS(1295), + [anon_sym_try] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [aux_sym_string_literal_token1] = ACTIONS(1293), + [sym_char_literal] = ACTIONS(1293), + [anon_sym_true] = ACTIONS(1295), + [anon_sym_false] = ACTIONS(1295), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1295), + [sym_super] = ACTIONS(1295), + [sym_crate] = ACTIONS(1295), + [sym_metavariable] = ACTIONS(1293), + [sym__raw_string_literal_start] = ACTIONS(1293), + [sym_float_literal] = ACTIONS(1293), }, [329] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1497), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1790), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1419), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(329), [sym_block_comment] = STATE(329), - [sym_identifier] = ACTIONS(334), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1176), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(365), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [330] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1817), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2791), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1605), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1574), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(249), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(330), [sym_block_comment] = STATE(330), - [sym_identifier] = ACTIONS(334), + [sym_identifier] = ACTIONS(471), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_u8] = ACTIONS(473), + [anon_sym_i8] = ACTIONS(473), + [anon_sym_u16] = ACTIONS(473), + [anon_sym_i16] = ACTIONS(473), + [anon_sym_u32] = ACTIONS(473), + [anon_sym_i32] = ACTIONS(473), + [anon_sym_u64] = ACTIONS(473), + [anon_sym_i64] = ACTIONS(473), + [anon_sym_u128] = ACTIONS(473), + [anon_sym_i128] = ACTIONS(473), + [anon_sym_isize] = ACTIONS(473), + [anon_sym_usize] = ACTIONS(473), + [anon_sym_f32] = ACTIONS(473), + [anon_sym_f64] = ACTIONS(473), + [anon_sym_bool] = ACTIONS(473), + [anon_sym_str] = ACTIONS(473), + [anon_sym_char] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(998), + [anon_sym_BANG] = ACTIONS(998), + [anon_sym_AMP] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_COLON_COLON] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(499), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_default] = ACTIONS(481), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(503), + [anon_sym_static] = ACTIONS(505), + [anon_sym_union] = ACTIONS(481), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(507), + [anon_sym_move] = ACTIONS(509), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [331] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1818), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(331), [sym_block_comment] = STATE(331), - [sym_identifier] = ACTIONS(334), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [ts_builtin_sym_end] = ACTIONS(1297), + [sym_identifier] = ACTIONS(1299), + [anon_sym_SEMI] = ACTIONS(1297), + [anon_sym_macro_rules_BANG] = ACTIONS(1297), + [anon_sym_LPAREN] = ACTIONS(1297), + [anon_sym_LBRACK] = ACTIONS(1297), + [anon_sym_LBRACE] = ACTIONS(1297), + [anon_sym_RBRACE] = ACTIONS(1297), + [anon_sym_macro] = ACTIONS(1299), + [anon_sym_PLUS] = ACTIONS(1299), + [anon_sym_STAR] = ACTIONS(1299), + [anon_sym_QMARK] = ACTIONS(1297), + [anon_sym_u8] = ACTIONS(1299), + [anon_sym_i8] = ACTIONS(1299), + [anon_sym_u16] = ACTIONS(1299), + [anon_sym_i16] = ACTIONS(1299), + [anon_sym_u32] = ACTIONS(1299), + [anon_sym_i32] = ACTIONS(1299), + [anon_sym_u64] = ACTIONS(1299), + [anon_sym_i64] = ACTIONS(1299), + [anon_sym_u128] = ACTIONS(1299), + [anon_sym_i128] = ACTIONS(1299), + [anon_sym_isize] = ACTIONS(1299), + [anon_sym_usize] = ACTIONS(1299), + [anon_sym_f32] = ACTIONS(1299), + [anon_sym_f64] = ACTIONS(1299), + [anon_sym_bool] = ACTIONS(1299), + [anon_sym_str] = ACTIONS(1299), + [anon_sym_char] = ACTIONS(1299), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_SLASH] = ACTIONS(1299), + [anon_sym_PERCENT] = ACTIONS(1299), + [anon_sym_CARET] = ACTIONS(1299), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_AMP] = ACTIONS(1299), + [anon_sym_PIPE] = ACTIONS(1299), + [anon_sym_AMP_AMP] = ACTIONS(1297), + [anon_sym_PIPE_PIPE] = ACTIONS(1297), + [anon_sym_LT_LT] = ACTIONS(1299), + [anon_sym_GT_GT] = ACTIONS(1299), + [anon_sym_PLUS_EQ] = ACTIONS(1297), + [anon_sym_DASH_EQ] = ACTIONS(1297), + [anon_sym_STAR_EQ] = ACTIONS(1297), + [anon_sym_SLASH_EQ] = ACTIONS(1297), + [anon_sym_PERCENT_EQ] = ACTIONS(1297), + [anon_sym_CARET_EQ] = ACTIONS(1297), + [anon_sym_AMP_EQ] = ACTIONS(1297), + [anon_sym_PIPE_EQ] = ACTIONS(1297), + [anon_sym_LT_LT_EQ] = ACTIONS(1297), + [anon_sym_GT_GT_EQ] = ACTIONS(1297), + [anon_sym_EQ] = ACTIONS(1299), + [anon_sym_EQ_EQ] = ACTIONS(1297), + [anon_sym_BANG_EQ] = ACTIONS(1297), + [anon_sym_GT] = ACTIONS(1299), + [anon_sym_LT] = ACTIONS(1299), + [anon_sym_GT_EQ] = ACTIONS(1297), + [anon_sym_LT_EQ] = ACTIONS(1297), + [anon_sym_DOT] = ACTIONS(1299), + [anon_sym_DOT_DOT] = ACTIONS(1299), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1297), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1297), + [anon_sym_COLON_COLON] = ACTIONS(1297), + [anon_sym_POUND] = ACTIONS(1297), + [anon_sym_SQUOTE] = ACTIONS(1299), + [anon_sym_as] = ACTIONS(1299), + [anon_sym_async] = ACTIONS(1299), + [anon_sym_break] = ACTIONS(1299), + [anon_sym_const] = ACTIONS(1299), + [anon_sym_continue] = ACTIONS(1299), + [anon_sym_default] = ACTIONS(1299), + [anon_sym_enum] = ACTIONS(1299), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1299), + [anon_sym_if] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1299), + [anon_sym_let] = ACTIONS(1299), + [anon_sym_loop] = ACTIONS(1299), + [anon_sym_match] = ACTIONS(1299), + [anon_sym_mod] = ACTIONS(1299), + [anon_sym_pub] = ACTIONS(1299), + [anon_sym_return] = ACTIONS(1299), + [anon_sym_static] = ACTIONS(1299), + [anon_sym_struct] = ACTIONS(1299), + [anon_sym_trait] = ACTIONS(1299), + [anon_sym_type] = ACTIONS(1299), + [anon_sym_union] = ACTIONS(1299), + [anon_sym_unsafe] = ACTIONS(1299), + [anon_sym_use] = ACTIONS(1299), + [anon_sym_while] = ACTIONS(1299), + [anon_sym_extern] = ACTIONS(1299), + [anon_sym_yield] = ACTIONS(1299), + [anon_sym_move] = ACTIONS(1299), + [anon_sym_try] = ACTIONS(1299), + [sym_integer_literal] = ACTIONS(1297), + [aux_sym_string_literal_token1] = ACTIONS(1297), + [sym_char_literal] = ACTIONS(1297), + [anon_sym_true] = ACTIONS(1299), + [anon_sym_false] = ACTIONS(1299), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1299), + [sym_super] = ACTIONS(1299), + [sym_crate] = ACTIONS(1299), + [sym_metavariable] = ACTIONS(1297), + [sym__raw_string_literal_start] = ACTIONS(1297), + [sym_float_literal] = ACTIONS(1297), }, [332] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1825), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2791), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1602), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1574), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(249), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(332), [sym_block_comment] = STATE(332), - [sym_identifier] = ACTIONS(334), + [sym_identifier] = ACTIONS(471), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_u8] = ACTIONS(473), + [anon_sym_i8] = ACTIONS(473), + [anon_sym_u16] = ACTIONS(473), + [anon_sym_i16] = ACTIONS(473), + [anon_sym_u32] = ACTIONS(473), + [anon_sym_i32] = ACTIONS(473), + [anon_sym_u64] = ACTIONS(473), + [anon_sym_i64] = ACTIONS(473), + [anon_sym_u128] = ACTIONS(473), + [anon_sym_i128] = ACTIONS(473), + [anon_sym_isize] = ACTIONS(473), + [anon_sym_usize] = ACTIONS(473), + [anon_sym_f32] = ACTIONS(473), + [anon_sym_f64] = ACTIONS(473), + [anon_sym_bool] = ACTIONS(473), + [anon_sym_str] = ACTIONS(473), + [anon_sym_char] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(998), + [anon_sym_BANG] = ACTIONS(998), + [anon_sym_AMP] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_COLON_COLON] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(499), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_default] = ACTIONS(481), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(503), + [anon_sym_static] = ACTIONS(505), + [anon_sym_union] = ACTIONS(481), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(507), + [anon_sym_move] = ACTIONS(509), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [333] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1829), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(458), - [sym_match_expression] = STATE(458), - [sym_while_expression] = STATE(458), - [sym_loop_expression] = STATE(458), - [sym_for_expression] = STATE(458), - [sym_const_block] = STATE(458), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3579), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(458), - [sym_async_block] = STATE(458), - [sym_try_block] = STATE(458), - [sym_block] = STATE(458), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2791), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1593), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1574), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(249), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(333), [sym_block_comment] = STATE(333), - [sym_identifier] = ACTIONS(334), + [sym_identifier] = ACTIONS(471), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(1210), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(1212), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(1214), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(1216), - [anon_sym_if] = ACTIONS(1218), - [anon_sym_loop] = ACTIONS(1220), - [anon_sym_match] = ACTIONS(1222), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(1224), - [anon_sym_while] = ACTIONS(1226), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(1228), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_u8] = ACTIONS(473), + [anon_sym_i8] = ACTIONS(473), + [anon_sym_u16] = ACTIONS(473), + [anon_sym_i16] = ACTIONS(473), + [anon_sym_u32] = ACTIONS(473), + [anon_sym_i32] = ACTIONS(473), + [anon_sym_u64] = ACTIONS(473), + [anon_sym_i64] = ACTIONS(473), + [anon_sym_u128] = ACTIONS(473), + [anon_sym_i128] = ACTIONS(473), + [anon_sym_isize] = ACTIONS(473), + [anon_sym_usize] = ACTIONS(473), + [anon_sym_f32] = ACTIONS(473), + [anon_sym_f64] = ACTIONS(473), + [anon_sym_bool] = ACTIONS(473), + [anon_sym_str] = ACTIONS(473), + [anon_sym_char] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(998), + [anon_sym_BANG] = ACTIONS(998), + [anon_sym_AMP] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_COLON_COLON] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(499), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_default] = ACTIONS(481), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(503), + [anon_sym_static] = ACTIONS(505), + [anon_sym_union] = ACTIONS(481), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(507), + [anon_sym_move] = ACTIONS(509), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [334] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1869), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2791), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1750), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1574), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(241), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(334), [sym_block_comment] = STATE(334), - [sym_identifier] = ACTIONS(334), + [sym_identifier] = ACTIONS(471), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1054), + [anon_sym_u8] = ACTIONS(473), + [anon_sym_i8] = ACTIONS(473), + [anon_sym_u16] = ACTIONS(473), + [anon_sym_i16] = ACTIONS(473), + [anon_sym_u32] = ACTIONS(473), + [anon_sym_i32] = ACTIONS(473), + [anon_sym_u64] = ACTIONS(473), + [anon_sym_i64] = ACTIONS(473), + [anon_sym_u128] = ACTIONS(473), + [anon_sym_i128] = ACTIONS(473), + [anon_sym_isize] = ACTIONS(473), + [anon_sym_usize] = ACTIONS(473), + [anon_sym_f32] = ACTIONS(473), + [anon_sym_f64] = ACTIONS(473), + [anon_sym_bool] = ACTIONS(473), + [anon_sym_str] = ACTIONS(473), + [anon_sym_char] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(1054), + [anon_sym_BANG] = ACTIONS(1054), + [anon_sym_AMP] = ACTIONS(1056), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1060), + [anon_sym_COLON_COLON] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(479), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(481), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(483), + [anon_sym_static] = ACTIONS(485), + [anon_sym_union] = ACTIONS(481), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(487), + [anon_sym_move] = ACTIONS(489), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [335] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1872), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2791), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1637), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1574), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(249), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(335), [sym_block_comment] = STATE(335), - [sym_identifier] = ACTIONS(334), + [sym_identifier] = ACTIONS(471), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_u8] = ACTIONS(473), + [anon_sym_i8] = ACTIONS(473), + [anon_sym_u16] = ACTIONS(473), + [anon_sym_i16] = ACTIONS(473), + [anon_sym_u32] = ACTIONS(473), + [anon_sym_i32] = ACTIONS(473), + [anon_sym_u64] = ACTIONS(473), + [anon_sym_i64] = ACTIONS(473), + [anon_sym_u128] = ACTIONS(473), + [anon_sym_i128] = ACTIONS(473), + [anon_sym_isize] = ACTIONS(473), + [anon_sym_usize] = ACTIONS(473), + [anon_sym_f32] = ACTIONS(473), + [anon_sym_f64] = ACTIONS(473), + [anon_sym_bool] = ACTIONS(473), + [anon_sym_str] = ACTIONS(473), + [anon_sym_char] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(998), + [anon_sym_BANG] = ACTIONS(998), + [anon_sym_AMP] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1074), + [anon_sym_COLON_COLON] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(499), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_default] = ACTIONS(481), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(503), + [anon_sym_static] = ACTIONS(505), + [anon_sym_union] = ACTIONS(481), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(507), + [anon_sym_move] = ACTIONS(509), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [336] = { + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1827), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1419), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(336), [sym_block_comment] = STATE(336), - [ts_builtin_sym_end] = ACTIONS(1236), - [sym_identifier] = ACTIONS(1238), - [anon_sym_SEMI] = ACTIONS(1236), - [anon_sym_macro_rules_BANG] = ACTIONS(1236), - [anon_sym_LPAREN] = ACTIONS(1236), - [anon_sym_LBRACK] = ACTIONS(1236), - [anon_sym_LBRACE] = ACTIONS(1236), - [anon_sym_RBRACE] = ACTIONS(1236), - [anon_sym_PLUS] = ACTIONS(1238), - [anon_sym_STAR] = ACTIONS(1238), - [anon_sym_QMARK] = ACTIONS(1236), - [anon_sym_u8] = ACTIONS(1238), - [anon_sym_i8] = ACTIONS(1238), - [anon_sym_u16] = ACTIONS(1238), - [anon_sym_i16] = ACTIONS(1238), - [anon_sym_u32] = ACTIONS(1238), - [anon_sym_i32] = ACTIONS(1238), - [anon_sym_u64] = ACTIONS(1238), - [anon_sym_i64] = ACTIONS(1238), - [anon_sym_u128] = ACTIONS(1238), - [anon_sym_i128] = ACTIONS(1238), - [anon_sym_isize] = ACTIONS(1238), - [anon_sym_usize] = ACTIONS(1238), - [anon_sym_f32] = ACTIONS(1238), - [anon_sym_f64] = ACTIONS(1238), - [anon_sym_bool] = ACTIONS(1238), - [anon_sym_str] = ACTIONS(1238), - [anon_sym_char] = ACTIONS(1238), - [anon_sym_DASH] = ACTIONS(1238), - [anon_sym_SLASH] = ACTIONS(1238), - [anon_sym_PERCENT] = ACTIONS(1238), - [anon_sym_CARET] = ACTIONS(1238), - [anon_sym_BANG] = ACTIONS(1238), - [anon_sym_AMP] = ACTIONS(1238), - [anon_sym_PIPE] = ACTIONS(1238), - [anon_sym_AMP_AMP] = ACTIONS(1236), - [anon_sym_PIPE_PIPE] = ACTIONS(1236), - [anon_sym_LT_LT] = ACTIONS(1238), - [anon_sym_GT_GT] = ACTIONS(1238), - [anon_sym_PLUS_EQ] = ACTIONS(1236), - [anon_sym_DASH_EQ] = ACTIONS(1236), - [anon_sym_STAR_EQ] = ACTIONS(1236), - [anon_sym_SLASH_EQ] = ACTIONS(1236), - [anon_sym_PERCENT_EQ] = ACTIONS(1236), - [anon_sym_CARET_EQ] = ACTIONS(1236), - [anon_sym_AMP_EQ] = ACTIONS(1236), - [anon_sym_PIPE_EQ] = ACTIONS(1236), - [anon_sym_LT_LT_EQ] = ACTIONS(1236), - [anon_sym_GT_GT_EQ] = ACTIONS(1236), - [anon_sym_EQ] = ACTIONS(1238), - [anon_sym_EQ_EQ] = ACTIONS(1236), - [anon_sym_BANG_EQ] = ACTIONS(1236), - [anon_sym_GT] = ACTIONS(1238), - [anon_sym_LT] = ACTIONS(1238), - [anon_sym_GT_EQ] = ACTIONS(1236), - [anon_sym_LT_EQ] = ACTIONS(1236), - [anon_sym_DOT] = ACTIONS(1238), - [anon_sym_DOT_DOT] = ACTIONS(1238), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1236), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1236), - [anon_sym_COLON_COLON] = ACTIONS(1236), - [anon_sym_POUND] = ACTIONS(1236), - [anon_sym_SQUOTE] = ACTIONS(1238), - [anon_sym_as] = ACTIONS(1238), - [anon_sym_async] = ACTIONS(1238), - [anon_sym_break] = ACTIONS(1238), - [anon_sym_const] = ACTIONS(1238), - [anon_sym_continue] = ACTIONS(1238), - [anon_sym_default] = ACTIONS(1238), - [anon_sym_enum] = ACTIONS(1238), - [anon_sym_fn] = ACTIONS(1238), - [anon_sym_for] = ACTIONS(1238), - [anon_sym_if] = ACTIONS(1238), - [anon_sym_impl] = ACTIONS(1238), - [anon_sym_let] = ACTIONS(1238), - [anon_sym_loop] = ACTIONS(1238), - [anon_sym_match] = ACTIONS(1238), - [anon_sym_mod] = ACTIONS(1238), - [anon_sym_pub] = ACTIONS(1238), - [anon_sym_return] = ACTIONS(1238), - [anon_sym_static] = ACTIONS(1238), - [anon_sym_struct] = ACTIONS(1238), - [anon_sym_trait] = ACTIONS(1238), - [anon_sym_type] = ACTIONS(1238), - [anon_sym_union] = ACTIONS(1238), - [anon_sym_unsafe] = ACTIONS(1238), - [anon_sym_use] = ACTIONS(1238), - [anon_sym_while] = ACTIONS(1238), - [anon_sym_extern] = ACTIONS(1238), - [anon_sym_else] = ACTIONS(1238), - [anon_sym_yield] = ACTIONS(1238), - [anon_sym_move] = ACTIONS(1238), - [anon_sym_try] = ACTIONS(1238), - [sym_integer_literal] = ACTIONS(1236), - [aux_sym_string_literal_token1] = ACTIONS(1236), - [sym_char_literal] = ACTIONS(1236), - [anon_sym_true] = ACTIONS(1238), - [anon_sym_false] = ACTIONS(1238), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1238), - [sym_super] = ACTIONS(1238), - [sym_crate] = ACTIONS(1238), - [sym_metavariable] = ACTIONS(1236), - [sym__raw_string_literal_start] = ACTIONS(1236), - [sym_float_literal] = ACTIONS(1236), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(365), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [337] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1482), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), + [sym_bracketed_type] = STATE(3593), + [sym_generic_function] = STATE(1742), + [sym_generic_type_with_turbofish] = STATE(2901), + [sym__expression_except_range] = STATE(1655), + [sym__expression] = STATE(1755), + [sym_macro_invocation] = STATE(1752), + [sym_scoped_identifier] = STATE(1584), [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_range_expression] = STATE(1746), + [sym_unary_expression] = STATE(1742), + [sym_try_expression] = STATE(1742), + [sym_reference_expression] = STATE(1742), + [sym_binary_expression] = STATE(1742), + [sym_assignment_expression] = STATE(1742), + [sym_compound_assignment_expr] = STATE(1742), + [sym_type_cast_expression] = STATE(1742), + [sym_return_expression] = STATE(1742), + [sym_yield_expression] = STATE(1742), + [sym_call_expression] = STATE(1742), + [sym_array_expression] = STATE(1742), + [sym_parenthesized_expression] = STATE(1742), + [sym_tuple_expression] = STATE(1742), + [sym_unit_expression] = STATE(1742), + [sym_struct_expression] = STATE(1742), + [sym_if_expression] = STATE(1742), + [sym_match_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_loop_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_const_block] = STATE(1742), + [sym_closure_expression] = STATE(1742), + [sym_closure_parameters] = STATE(244), + [sym_label] = STATE(3682), + [sym_break_expression] = STATE(1742), + [sym_continue_expression] = STATE(1742), + [sym_index_expression] = STATE(1742), + [sym_await_expression] = STATE(1742), + [sym_field_expression] = STATE(1652), + [sym_unsafe_block] = STATE(1742), + [sym_async_block] = STATE(1742), + [sym_try_block] = STATE(1742), + [sym_block] = STATE(1742), + [sym__literal] = STATE(1742), + [sym_string_literal] = STATE(1723), + [sym_raw_string_literal] = STATE(1723), + [sym_boolean_literal] = STATE(1723), [sym_line_comment] = STATE(337), [sym_block_comment] = STATE(337), - [sym_identifier] = ACTIONS(334), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [sym_identifier] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(461), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LBRACE] = ACTIONS(405), + [anon_sym_STAR] = ACTIONS(1020), + [anon_sym_u8] = ACTIONS(409), + [anon_sym_i8] = ACTIONS(409), + [anon_sym_u16] = ACTIONS(409), + [anon_sym_i16] = ACTIONS(409), + [anon_sym_u32] = ACTIONS(409), + [anon_sym_i32] = ACTIONS(409), + [anon_sym_u64] = ACTIONS(409), + [anon_sym_i64] = ACTIONS(409), + [anon_sym_u128] = ACTIONS(409), + [anon_sym_i128] = ACTIONS(409), + [anon_sym_isize] = ACTIONS(409), + [anon_sym_usize] = ACTIONS(409), + [anon_sym_f32] = ACTIONS(409), + [anon_sym_f64] = ACTIONS(409), + [anon_sym_bool] = ACTIONS(409), + [anon_sym_str] = ACTIONS(409), + [anon_sym_char] = ACTIONS(409), + [anon_sym_DASH] = ACTIONS(1020), + [anon_sym_BANG] = ACTIONS(1020), + [anon_sym_AMP] = ACTIONS(1022), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1082), + [anon_sym_COLON_COLON] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(415), + [anon_sym_break] = ACTIONS(417), + [anon_sym_const] = ACTIONS(419), + [anon_sym_continue] = ACTIONS(421), + [anon_sym_default] = ACTIONS(423), + [anon_sym_for] = ACTIONS(425), + [anon_sym_if] = ACTIONS(427), + [anon_sym_loop] = ACTIONS(429), + [anon_sym_match] = ACTIONS(431), + [anon_sym_return] = ACTIONS(433), + [anon_sym_static] = ACTIONS(435), + [anon_sym_union] = ACTIONS(423), + [anon_sym_unsafe] = ACTIONS(437), + [anon_sym_while] = ACTIONS(439), + [anon_sym_yield] = ACTIONS(441), + [anon_sym_move] = ACTIONS(443), + [anon_sym_try] = ACTIONS(445), + [sym_integer_literal] = ACTIONS(447), + [aux_sym_string_literal_token1] = ACTIONS(449), + [sym_char_literal] = ACTIONS(447), + [anon_sym_true] = ACTIONS(451), + [anon_sym_false] = ACTIONS(451), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(453), + [sym_super] = ACTIONS(455), + [sym_crate] = ACTIONS(455), + [sym_metavariable] = ACTIONS(457), + [sym__raw_string_literal_start] = ACTIONS(459), + [sym_float_literal] = ACTIONS(447), }, [338] = { + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2791), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1648), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1574), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(249), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(338), [sym_block_comment] = STATE(338), - [ts_builtin_sym_end] = ACTIONS(1240), - [sym_identifier] = ACTIONS(1242), - [anon_sym_SEMI] = ACTIONS(1240), - [anon_sym_macro_rules_BANG] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(1240), - [anon_sym_LBRACK] = ACTIONS(1240), - [anon_sym_LBRACE] = ACTIONS(1240), - [anon_sym_RBRACE] = ACTIONS(1240), - [anon_sym_PLUS] = ACTIONS(1242), - [anon_sym_STAR] = ACTIONS(1242), - [anon_sym_QMARK] = ACTIONS(1240), - [anon_sym_u8] = ACTIONS(1242), - [anon_sym_i8] = ACTIONS(1242), - [anon_sym_u16] = ACTIONS(1242), - [anon_sym_i16] = ACTIONS(1242), - [anon_sym_u32] = ACTIONS(1242), - [anon_sym_i32] = ACTIONS(1242), - [anon_sym_u64] = ACTIONS(1242), - [anon_sym_i64] = ACTIONS(1242), - [anon_sym_u128] = ACTIONS(1242), - [anon_sym_i128] = ACTIONS(1242), - [anon_sym_isize] = ACTIONS(1242), - [anon_sym_usize] = ACTIONS(1242), - [anon_sym_f32] = ACTIONS(1242), - [anon_sym_f64] = ACTIONS(1242), - [anon_sym_bool] = ACTIONS(1242), - [anon_sym_str] = ACTIONS(1242), - [anon_sym_char] = ACTIONS(1242), - [anon_sym_DASH] = ACTIONS(1242), - [anon_sym_SLASH] = ACTIONS(1242), - [anon_sym_PERCENT] = ACTIONS(1242), - [anon_sym_CARET] = ACTIONS(1242), - [anon_sym_BANG] = ACTIONS(1242), - [anon_sym_AMP] = ACTIONS(1242), - [anon_sym_PIPE] = ACTIONS(1242), - [anon_sym_AMP_AMP] = ACTIONS(1240), - [anon_sym_PIPE_PIPE] = ACTIONS(1240), - [anon_sym_LT_LT] = ACTIONS(1242), - [anon_sym_GT_GT] = ACTIONS(1242), - [anon_sym_PLUS_EQ] = ACTIONS(1240), - [anon_sym_DASH_EQ] = ACTIONS(1240), - [anon_sym_STAR_EQ] = ACTIONS(1240), - [anon_sym_SLASH_EQ] = ACTIONS(1240), - [anon_sym_PERCENT_EQ] = ACTIONS(1240), - [anon_sym_CARET_EQ] = ACTIONS(1240), - [anon_sym_AMP_EQ] = ACTIONS(1240), - [anon_sym_PIPE_EQ] = ACTIONS(1240), - [anon_sym_LT_LT_EQ] = ACTIONS(1240), - [anon_sym_GT_GT_EQ] = ACTIONS(1240), - [anon_sym_EQ] = ACTIONS(1242), - [anon_sym_EQ_EQ] = ACTIONS(1240), - [anon_sym_BANG_EQ] = ACTIONS(1240), - [anon_sym_GT] = ACTIONS(1242), - [anon_sym_LT] = ACTIONS(1242), - [anon_sym_GT_EQ] = ACTIONS(1240), - [anon_sym_LT_EQ] = ACTIONS(1240), - [anon_sym_DOT] = ACTIONS(1242), - [anon_sym_DOT_DOT] = ACTIONS(1242), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1240), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1240), - [anon_sym_COLON_COLON] = ACTIONS(1240), - [anon_sym_POUND] = ACTIONS(1240), - [anon_sym_SQUOTE] = ACTIONS(1242), - [anon_sym_as] = ACTIONS(1242), - [anon_sym_async] = ACTIONS(1242), - [anon_sym_break] = ACTIONS(1242), - [anon_sym_const] = ACTIONS(1242), - [anon_sym_continue] = ACTIONS(1242), - [anon_sym_default] = ACTIONS(1242), - [anon_sym_enum] = ACTIONS(1242), - [anon_sym_fn] = ACTIONS(1242), - [anon_sym_for] = ACTIONS(1242), - [anon_sym_if] = ACTIONS(1242), - [anon_sym_impl] = ACTIONS(1242), - [anon_sym_let] = ACTIONS(1242), - [anon_sym_loop] = ACTIONS(1242), - [anon_sym_match] = ACTIONS(1242), - [anon_sym_mod] = ACTIONS(1242), - [anon_sym_pub] = ACTIONS(1242), - [anon_sym_return] = ACTIONS(1242), - [anon_sym_static] = ACTIONS(1242), - [anon_sym_struct] = ACTIONS(1242), - [anon_sym_trait] = ACTIONS(1242), - [anon_sym_type] = ACTIONS(1242), - [anon_sym_union] = ACTIONS(1242), - [anon_sym_unsafe] = ACTIONS(1242), - [anon_sym_use] = ACTIONS(1242), - [anon_sym_while] = ACTIONS(1242), - [anon_sym_extern] = ACTIONS(1242), - [anon_sym_else] = ACTIONS(1242), - [anon_sym_yield] = ACTIONS(1242), - [anon_sym_move] = ACTIONS(1242), - [anon_sym_try] = ACTIONS(1242), - [sym_integer_literal] = ACTIONS(1240), - [aux_sym_string_literal_token1] = ACTIONS(1240), - [sym_char_literal] = ACTIONS(1240), - [anon_sym_true] = ACTIONS(1242), - [anon_sym_false] = ACTIONS(1242), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1242), - [sym_super] = ACTIONS(1242), - [sym_crate] = ACTIONS(1242), - [sym_metavariable] = ACTIONS(1240), - [sym__raw_string_literal_start] = ACTIONS(1240), - [sym_float_literal] = ACTIONS(1240), + [sym_identifier] = ACTIONS(471), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_u8] = ACTIONS(473), + [anon_sym_i8] = ACTIONS(473), + [anon_sym_u16] = ACTIONS(473), + [anon_sym_i16] = ACTIONS(473), + [anon_sym_u32] = ACTIONS(473), + [anon_sym_i32] = ACTIONS(473), + [anon_sym_u64] = ACTIONS(473), + [anon_sym_i64] = ACTIONS(473), + [anon_sym_u128] = ACTIONS(473), + [anon_sym_i128] = ACTIONS(473), + [anon_sym_isize] = ACTIONS(473), + [anon_sym_usize] = ACTIONS(473), + [anon_sym_f32] = ACTIONS(473), + [anon_sym_f64] = ACTIONS(473), + [anon_sym_bool] = ACTIONS(473), + [anon_sym_str] = ACTIONS(473), + [anon_sym_char] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(998), + [anon_sym_BANG] = ACTIONS(998), + [anon_sym_AMP] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_COLON_COLON] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(499), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_default] = ACTIONS(481), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(503), + [anon_sym_static] = ACTIONS(505), + [anon_sym_union] = ACTIONS(481), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(507), + [anon_sym_move] = ACTIONS(509), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [339] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1323), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2791), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1638), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1574), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(249), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(339), [sym_block_comment] = STATE(339), - [sym_identifier] = ACTIONS(334), + [sym_identifier] = ACTIONS(471), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1176), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_u8] = ACTIONS(473), + [anon_sym_i8] = ACTIONS(473), + [anon_sym_u16] = ACTIONS(473), + [anon_sym_i16] = ACTIONS(473), + [anon_sym_u32] = ACTIONS(473), + [anon_sym_i32] = ACTIONS(473), + [anon_sym_u64] = ACTIONS(473), + [anon_sym_i64] = ACTIONS(473), + [anon_sym_u128] = ACTIONS(473), + [anon_sym_i128] = ACTIONS(473), + [anon_sym_isize] = ACTIONS(473), + [anon_sym_usize] = ACTIONS(473), + [anon_sym_f32] = ACTIONS(473), + [anon_sym_f64] = ACTIONS(473), + [anon_sym_bool] = ACTIONS(473), + [anon_sym_str] = ACTIONS(473), + [anon_sym_char] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(998), + [anon_sym_BANG] = ACTIONS(998), + [anon_sym_AMP] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1074), + [anon_sym_COLON_COLON] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(499), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_default] = ACTIONS(481), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(503), + [anon_sym_static] = ACTIONS(505), + [anon_sym_union] = ACTIONS(481), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(507), + [anon_sym_move] = ACTIONS(509), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [340] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1857), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2791), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1860), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1574), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(241), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(340), [sym_block_comment] = STATE(340), - [sym_identifier] = ACTIONS(334), + [sym_identifier] = ACTIONS(471), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1054), + [anon_sym_u8] = ACTIONS(473), + [anon_sym_i8] = ACTIONS(473), + [anon_sym_u16] = ACTIONS(473), + [anon_sym_i16] = ACTIONS(473), + [anon_sym_u32] = ACTIONS(473), + [anon_sym_i32] = ACTIONS(473), + [anon_sym_u64] = ACTIONS(473), + [anon_sym_i64] = ACTIONS(473), + [anon_sym_u128] = ACTIONS(473), + [anon_sym_i128] = ACTIONS(473), + [anon_sym_isize] = ACTIONS(473), + [anon_sym_usize] = ACTIONS(473), + [anon_sym_f32] = ACTIONS(473), + [anon_sym_f64] = ACTIONS(473), + [anon_sym_bool] = ACTIONS(473), + [anon_sym_str] = ACTIONS(473), + [anon_sym_char] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(1054), + [anon_sym_BANG] = ACTIONS(1054), + [anon_sym_AMP] = ACTIONS(1056), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1060), + [anon_sym_COLON_COLON] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(479), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(481), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(483), + [anon_sym_static] = ACTIONS(485), + [anon_sym_union] = ACTIONS(481), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(487), + [anon_sym_move] = ACTIONS(489), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [341] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1353), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(341), [sym_block_comment] = STATE(341), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(1041), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(1041), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_AMP] = ACTIONS(1043), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(464), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(468), - [anon_sym_static] = ACTIONS(470), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(472), - [anon_sym_move] = ACTIONS(474), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [ts_builtin_sym_end] = ACTIONS(1301), + [sym_identifier] = ACTIONS(1303), + [anon_sym_SEMI] = ACTIONS(1305), + [anon_sym_macro_rules_BANG] = ACTIONS(1301), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LBRACE] = ACTIONS(1301), + [anon_sym_RBRACE] = ACTIONS(1305), + [anon_sym_macro] = ACTIONS(1303), + [anon_sym_PLUS] = ACTIONS(1307), + [anon_sym_STAR] = ACTIONS(1307), + [anon_sym_QMARK] = ACTIONS(1305), + [anon_sym_u8] = ACTIONS(1303), + [anon_sym_i8] = ACTIONS(1303), + [anon_sym_u16] = ACTIONS(1303), + [anon_sym_i16] = ACTIONS(1303), + [anon_sym_u32] = ACTIONS(1303), + [anon_sym_i32] = ACTIONS(1303), + [anon_sym_u64] = ACTIONS(1303), + [anon_sym_i64] = ACTIONS(1303), + [anon_sym_u128] = ACTIONS(1303), + [anon_sym_i128] = ACTIONS(1303), + [anon_sym_isize] = ACTIONS(1303), + [anon_sym_usize] = ACTIONS(1303), + [anon_sym_f32] = ACTIONS(1303), + [anon_sym_f64] = ACTIONS(1303), + [anon_sym_bool] = ACTIONS(1303), + [anon_sym_str] = ACTIONS(1303), + [anon_sym_char] = ACTIONS(1303), + [anon_sym_DASH] = ACTIONS(1307), + [anon_sym_SLASH] = ACTIONS(1307), + [anon_sym_PERCENT] = ACTIONS(1307), + [anon_sym_CARET] = ACTIONS(1307), + [anon_sym_BANG] = ACTIONS(1303), + [anon_sym_AMP] = ACTIONS(1307), + [anon_sym_PIPE] = ACTIONS(1307), + [anon_sym_AMP_AMP] = ACTIONS(1305), + [anon_sym_PIPE_PIPE] = ACTIONS(1305), + [anon_sym_LT_LT] = ACTIONS(1307), + [anon_sym_GT_GT] = ACTIONS(1307), + [anon_sym_PLUS_EQ] = ACTIONS(1305), + [anon_sym_DASH_EQ] = ACTIONS(1305), + [anon_sym_STAR_EQ] = ACTIONS(1305), + [anon_sym_SLASH_EQ] = ACTIONS(1305), + [anon_sym_PERCENT_EQ] = ACTIONS(1305), + [anon_sym_CARET_EQ] = ACTIONS(1305), + [anon_sym_AMP_EQ] = ACTIONS(1305), + [anon_sym_PIPE_EQ] = ACTIONS(1305), + [anon_sym_LT_LT_EQ] = ACTIONS(1305), + [anon_sym_GT_GT_EQ] = ACTIONS(1305), + [anon_sym_EQ] = ACTIONS(1307), + [anon_sym_EQ_EQ] = ACTIONS(1305), + [anon_sym_BANG_EQ] = ACTIONS(1305), + [anon_sym_GT] = ACTIONS(1307), + [anon_sym_LT] = ACTIONS(1307), + [anon_sym_GT_EQ] = ACTIONS(1305), + [anon_sym_LT_EQ] = ACTIONS(1305), + [anon_sym_DOT] = ACTIONS(1307), + [anon_sym_DOT_DOT] = ACTIONS(1307), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1305), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1305), + [anon_sym_COLON_COLON] = ACTIONS(1301), + [anon_sym_POUND] = ACTIONS(1301), + [anon_sym_SQUOTE] = ACTIONS(1303), + [anon_sym_as] = ACTIONS(1307), + [anon_sym_async] = ACTIONS(1303), + [anon_sym_break] = ACTIONS(1303), + [anon_sym_const] = ACTIONS(1303), + [anon_sym_continue] = ACTIONS(1303), + [anon_sym_default] = ACTIONS(1303), + [anon_sym_enum] = ACTIONS(1303), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1303), + [anon_sym_if] = ACTIONS(1303), + [anon_sym_impl] = ACTIONS(1303), + [anon_sym_let] = ACTIONS(1303), + [anon_sym_loop] = ACTIONS(1303), + [anon_sym_match] = ACTIONS(1303), + [anon_sym_mod] = ACTIONS(1303), + [anon_sym_pub] = ACTIONS(1303), + [anon_sym_return] = ACTIONS(1303), + [anon_sym_static] = ACTIONS(1303), + [anon_sym_struct] = ACTIONS(1303), + [anon_sym_trait] = ACTIONS(1303), + [anon_sym_type] = ACTIONS(1303), + [anon_sym_union] = ACTIONS(1303), + [anon_sym_unsafe] = ACTIONS(1303), + [anon_sym_use] = ACTIONS(1303), + [anon_sym_while] = ACTIONS(1303), + [anon_sym_extern] = ACTIONS(1303), + [anon_sym_yield] = ACTIONS(1303), + [anon_sym_move] = ACTIONS(1303), + [anon_sym_try] = ACTIONS(1303), + [sym_integer_literal] = ACTIONS(1301), + [aux_sym_string_literal_token1] = ACTIONS(1301), + [sym_char_literal] = ACTIONS(1301), + [anon_sym_true] = ACTIONS(1303), + [anon_sym_false] = ACTIONS(1303), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1303), + [sym_super] = ACTIONS(1303), + [sym_crate] = ACTIONS(1303), + [sym_metavariable] = ACTIONS(1301), + [sym__raw_string_literal_start] = ACTIONS(1301), + [sym_float_literal] = ACTIONS(1301), }, [342] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1796), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1902), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1419), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(342), [sym_block_comment] = STATE(342), - [sym_identifier] = ACTIONS(456), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(1041), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(1041), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_AMP] = ACTIONS(1043), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1230), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(464), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(468), - [anon_sym_static] = ACTIONS(470), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(472), - [anon_sym_move] = ACTIONS(474), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(365), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [343] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1851), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2791), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1859), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1574), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(241), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(343), [sym_block_comment] = STATE(343), - [sym_identifier] = ACTIONS(334), + [sym_identifier] = ACTIONS(471), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1054), + [anon_sym_u8] = ACTIONS(473), + [anon_sym_i8] = ACTIONS(473), + [anon_sym_u16] = ACTIONS(473), + [anon_sym_i16] = ACTIONS(473), + [anon_sym_u32] = ACTIONS(473), + [anon_sym_i32] = ACTIONS(473), + [anon_sym_u64] = ACTIONS(473), + [anon_sym_i64] = ACTIONS(473), + [anon_sym_u128] = ACTIONS(473), + [anon_sym_i128] = ACTIONS(473), + [anon_sym_isize] = ACTIONS(473), + [anon_sym_usize] = ACTIONS(473), + [anon_sym_f32] = ACTIONS(473), + [anon_sym_f64] = ACTIONS(473), + [anon_sym_bool] = ACTIONS(473), + [anon_sym_str] = ACTIONS(473), + [anon_sym_char] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(1054), + [anon_sym_BANG] = ACTIONS(1054), + [anon_sym_AMP] = ACTIONS(1056), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1060), + [anon_sym_COLON_COLON] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(479), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(481), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(483), + [anon_sym_static] = ACTIONS(485), + [anon_sym_union] = ACTIONS(481), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(487), + [anon_sym_move] = ACTIONS(489), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [344] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1852), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2791), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1858), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1574), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(241), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(344), [sym_block_comment] = STATE(344), - [sym_identifier] = ACTIONS(334), + [sym_identifier] = ACTIONS(471), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1054), + [anon_sym_u8] = ACTIONS(473), + [anon_sym_i8] = ACTIONS(473), + [anon_sym_u16] = ACTIONS(473), + [anon_sym_i16] = ACTIONS(473), + [anon_sym_u32] = ACTIONS(473), + [anon_sym_i32] = ACTIONS(473), + [anon_sym_u64] = ACTIONS(473), + [anon_sym_i64] = ACTIONS(473), + [anon_sym_u128] = ACTIONS(473), + [anon_sym_i128] = ACTIONS(473), + [anon_sym_isize] = ACTIONS(473), + [anon_sym_usize] = ACTIONS(473), + [anon_sym_f32] = ACTIONS(473), + [anon_sym_f64] = ACTIONS(473), + [anon_sym_bool] = ACTIONS(473), + [anon_sym_str] = ACTIONS(473), + [anon_sym_char] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(1054), + [anon_sym_BANG] = ACTIONS(1054), + [anon_sym_AMP] = ACTIONS(1056), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1060), + [anon_sym_COLON_COLON] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(479), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(481), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(483), + [anon_sym_static] = ACTIONS(485), + [anon_sym_union] = ACTIONS(481), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(487), + [anon_sym_move] = ACTIONS(489), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [345] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1571), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2791), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1724), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1574), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(241), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(345), [sym_block_comment] = STATE(345), - [sym_identifier] = ACTIONS(456), + [sym_identifier] = ACTIONS(471), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(977), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1054), + [anon_sym_u8] = ACTIONS(473), + [anon_sym_i8] = ACTIONS(473), + [anon_sym_u16] = ACTIONS(473), + [anon_sym_i16] = ACTIONS(473), + [anon_sym_u32] = ACTIONS(473), + [anon_sym_i32] = ACTIONS(473), + [anon_sym_u64] = ACTIONS(473), + [anon_sym_i64] = ACTIONS(473), + [anon_sym_u128] = ACTIONS(473), + [anon_sym_i128] = ACTIONS(473), + [anon_sym_isize] = ACTIONS(473), + [anon_sym_usize] = ACTIONS(473), + [anon_sym_f32] = ACTIONS(473), + [anon_sym_f64] = ACTIONS(473), + [anon_sym_bool] = ACTIONS(473), + [anon_sym_str] = ACTIONS(473), + [anon_sym_char] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(1054), + [anon_sym_BANG] = ACTIONS(1054), + [anon_sym_AMP] = ACTIONS(1056), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1247), + [anon_sym_COLON_COLON] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(479), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(481), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(483), + [anon_sym_static] = ACTIONS(485), + [anon_sym_union] = ACTIONS(481), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(487), + [anon_sym_move] = ACTIONS(489), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [346] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1801), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(346), [sym_block_comment] = STATE(346), - [sym_identifier] = ACTIONS(334), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [ts_builtin_sym_end] = ACTIONS(1309), + [sym_identifier] = ACTIONS(1311), + [anon_sym_SEMI] = ACTIONS(1309), + [anon_sym_macro_rules_BANG] = ACTIONS(1309), + [anon_sym_LPAREN] = ACTIONS(1309), + [anon_sym_LBRACK] = ACTIONS(1309), + [anon_sym_LBRACE] = ACTIONS(1309), + [anon_sym_RBRACE] = ACTIONS(1309), + [anon_sym_macro] = ACTIONS(1311), + [anon_sym_PLUS] = ACTIONS(1311), + [anon_sym_STAR] = ACTIONS(1311), + [anon_sym_QMARK] = ACTIONS(1309), + [anon_sym_u8] = ACTIONS(1311), + [anon_sym_i8] = ACTIONS(1311), + [anon_sym_u16] = ACTIONS(1311), + [anon_sym_i16] = ACTIONS(1311), + [anon_sym_u32] = ACTIONS(1311), + [anon_sym_i32] = ACTIONS(1311), + [anon_sym_u64] = ACTIONS(1311), + [anon_sym_i64] = ACTIONS(1311), + [anon_sym_u128] = ACTIONS(1311), + [anon_sym_i128] = ACTIONS(1311), + [anon_sym_isize] = ACTIONS(1311), + [anon_sym_usize] = ACTIONS(1311), + [anon_sym_f32] = ACTIONS(1311), + [anon_sym_f64] = ACTIONS(1311), + [anon_sym_bool] = ACTIONS(1311), + [anon_sym_str] = ACTIONS(1311), + [anon_sym_char] = ACTIONS(1311), + [anon_sym_DASH] = ACTIONS(1311), + [anon_sym_SLASH] = ACTIONS(1311), + [anon_sym_PERCENT] = ACTIONS(1311), + [anon_sym_CARET] = ACTIONS(1311), + [anon_sym_BANG] = ACTIONS(1311), + [anon_sym_AMP] = ACTIONS(1311), + [anon_sym_PIPE] = ACTIONS(1311), + [anon_sym_AMP_AMP] = ACTIONS(1309), + [anon_sym_PIPE_PIPE] = ACTIONS(1309), + [anon_sym_LT_LT] = ACTIONS(1311), + [anon_sym_GT_GT] = ACTIONS(1311), + [anon_sym_PLUS_EQ] = ACTIONS(1309), + [anon_sym_DASH_EQ] = ACTIONS(1309), + [anon_sym_STAR_EQ] = ACTIONS(1309), + [anon_sym_SLASH_EQ] = ACTIONS(1309), + [anon_sym_PERCENT_EQ] = ACTIONS(1309), + [anon_sym_CARET_EQ] = ACTIONS(1309), + [anon_sym_AMP_EQ] = ACTIONS(1309), + [anon_sym_PIPE_EQ] = ACTIONS(1309), + [anon_sym_LT_LT_EQ] = ACTIONS(1309), + [anon_sym_GT_GT_EQ] = ACTIONS(1309), + [anon_sym_EQ] = ACTIONS(1311), + [anon_sym_EQ_EQ] = ACTIONS(1309), + [anon_sym_BANG_EQ] = ACTIONS(1309), + [anon_sym_GT] = ACTIONS(1311), + [anon_sym_LT] = ACTIONS(1311), + [anon_sym_GT_EQ] = ACTIONS(1309), + [anon_sym_LT_EQ] = ACTIONS(1309), + [anon_sym_DOT] = ACTIONS(1311), + [anon_sym_DOT_DOT] = ACTIONS(1311), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1309), + [anon_sym_COLON_COLON] = ACTIONS(1309), + [anon_sym_POUND] = ACTIONS(1309), + [anon_sym_SQUOTE] = ACTIONS(1311), + [anon_sym_as] = ACTIONS(1311), + [anon_sym_async] = ACTIONS(1311), + [anon_sym_break] = ACTIONS(1311), + [anon_sym_const] = ACTIONS(1311), + [anon_sym_continue] = ACTIONS(1311), + [anon_sym_default] = ACTIONS(1311), + [anon_sym_enum] = ACTIONS(1311), + [anon_sym_fn] = ACTIONS(1311), + [anon_sym_for] = ACTIONS(1311), + [anon_sym_if] = ACTIONS(1311), + [anon_sym_impl] = ACTIONS(1311), + [anon_sym_let] = ACTIONS(1311), + [anon_sym_loop] = ACTIONS(1311), + [anon_sym_match] = ACTIONS(1311), + [anon_sym_mod] = ACTIONS(1311), + [anon_sym_pub] = ACTIONS(1311), + [anon_sym_return] = ACTIONS(1311), + [anon_sym_static] = ACTIONS(1311), + [anon_sym_struct] = ACTIONS(1311), + [anon_sym_trait] = ACTIONS(1311), + [anon_sym_type] = ACTIONS(1311), + [anon_sym_union] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1311), + [anon_sym_use] = ACTIONS(1311), + [anon_sym_while] = ACTIONS(1311), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_yield] = ACTIONS(1311), + [anon_sym_move] = ACTIONS(1311), + [anon_sym_try] = ACTIONS(1311), + [sym_integer_literal] = ACTIONS(1309), + [aux_sym_string_literal_token1] = ACTIONS(1309), + [sym_char_literal] = ACTIONS(1309), + [anon_sym_true] = ACTIONS(1311), + [anon_sym_false] = ACTIONS(1311), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1311), + [sym_super] = ACTIONS(1311), + [sym_crate] = ACTIONS(1311), + [sym_metavariable] = ACTIONS(1309), + [sym__raw_string_literal_start] = ACTIONS(1309), + [sym_float_literal] = ACTIONS(1309), }, [347] = { + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2791), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1856), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1574), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(241), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(347), [sym_block_comment] = STATE(347), - [ts_builtin_sym_end] = ACTIONS(1244), - [sym_identifier] = ACTIONS(1246), - [anon_sym_SEMI] = ACTIONS(1244), - [anon_sym_macro_rules_BANG] = ACTIONS(1244), - [anon_sym_LPAREN] = ACTIONS(1244), - [anon_sym_LBRACK] = ACTIONS(1244), - [anon_sym_LBRACE] = ACTIONS(1244), - [anon_sym_RBRACE] = ACTIONS(1244), - [anon_sym_PLUS] = ACTIONS(1246), - [anon_sym_STAR] = ACTIONS(1246), - [anon_sym_QMARK] = ACTIONS(1244), - [anon_sym_u8] = ACTIONS(1246), - [anon_sym_i8] = ACTIONS(1246), - [anon_sym_u16] = ACTIONS(1246), - [anon_sym_i16] = ACTIONS(1246), - [anon_sym_u32] = ACTIONS(1246), - [anon_sym_i32] = ACTIONS(1246), - [anon_sym_u64] = ACTIONS(1246), - [anon_sym_i64] = ACTIONS(1246), - [anon_sym_u128] = ACTIONS(1246), - [anon_sym_i128] = ACTIONS(1246), - [anon_sym_isize] = ACTIONS(1246), - [anon_sym_usize] = ACTIONS(1246), - [anon_sym_f32] = ACTIONS(1246), - [anon_sym_f64] = ACTIONS(1246), - [anon_sym_bool] = ACTIONS(1246), - [anon_sym_str] = ACTIONS(1246), - [anon_sym_char] = ACTIONS(1246), - [anon_sym_DASH] = ACTIONS(1246), - [anon_sym_SLASH] = ACTIONS(1246), - [anon_sym_PERCENT] = ACTIONS(1246), - [anon_sym_CARET] = ACTIONS(1246), - [anon_sym_BANG] = ACTIONS(1246), - [anon_sym_AMP] = ACTIONS(1246), - [anon_sym_PIPE] = ACTIONS(1246), - [anon_sym_AMP_AMP] = ACTIONS(1244), - [anon_sym_PIPE_PIPE] = ACTIONS(1244), - [anon_sym_LT_LT] = ACTIONS(1246), - [anon_sym_GT_GT] = ACTIONS(1246), - [anon_sym_PLUS_EQ] = ACTIONS(1244), - [anon_sym_DASH_EQ] = ACTIONS(1244), - [anon_sym_STAR_EQ] = ACTIONS(1244), - [anon_sym_SLASH_EQ] = ACTIONS(1244), - [anon_sym_PERCENT_EQ] = ACTIONS(1244), - [anon_sym_CARET_EQ] = ACTIONS(1244), - [anon_sym_AMP_EQ] = ACTIONS(1244), - [anon_sym_PIPE_EQ] = ACTIONS(1244), - [anon_sym_LT_LT_EQ] = ACTIONS(1244), - [anon_sym_GT_GT_EQ] = ACTIONS(1244), - [anon_sym_EQ] = ACTIONS(1246), - [anon_sym_EQ_EQ] = ACTIONS(1244), - [anon_sym_BANG_EQ] = ACTIONS(1244), - [anon_sym_GT] = ACTIONS(1246), - [anon_sym_LT] = ACTIONS(1246), - [anon_sym_GT_EQ] = ACTIONS(1244), - [anon_sym_LT_EQ] = ACTIONS(1244), - [anon_sym_DOT] = ACTIONS(1246), - [anon_sym_DOT_DOT] = ACTIONS(1246), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1244), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1244), - [anon_sym_COLON_COLON] = ACTIONS(1244), - [anon_sym_POUND] = ACTIONS(1244), - [anon_sym_SQUOTE] = ACTIONS(1246), - [anon_sym_as] = ACTIONS(1246), - [anon_sym_async] = ACTIONS(1246), - [anon_sym_break] = ACTIONS(1246), - [anon_sym_const] = ACTIONS(1246), - [anon_sym_continue] = ACTIONS(1246), - [anon_sym_default] = ACTIONS(1246), - [anon_sym_enum] = ACTIONS(1246), - [anon_sym_fn] = ACTIONS(1246), - [anon_sym_for] = ACTIONS(1246), - [anon_sym_if] = ACTIONS(1246), - [anon_sym_impl] = ACTIONS(1246), - [anon_sym_let] = ACTIONS(1246), - [anon_sym_loop] = ACTIONS(1246), - [anon_sym_match] = ACTIONS(1246), - [anon_sym_mod] = ACTIONS(1246), - [anon_sym_pub] = ACTIONS(1246), - [anon_sym_return] = ACTIONS(1246), - [anon_sym_static] = ACTIONS(1246), - [anon_sym_struct] = ACTIONS(1246), - [anon_sym_trait] = ACTIONS(1246), - [anon_sym_type] = ACTIONS(1246), - [anon_sym_union] = ACTIONS(1246), - [anon_sym_unsafe] = ACTIONS(1246), - [anon_sym_use] = ACTIONS(1246), - [anon_sym_while] = ACTIONS(1246), - [anon_sym_extern] = ACTIONS(1246), - [anon_sym_else] = ACTIONS(1246), - [anon_sym_yield] = ACTIONS(1246), - [anon_sym_move] = ACTIONS(1246), - [anon_sym_try] = ACTIONS(1246), - [sym_integer_literal] = ACTIONS(1244), - [aux_sym_string_literal_token1] = ACTIONS(1244), - [sym_char_literal] = ACTIONS(1244), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1246), - [sym_super] = ACTIONS(1246), - [sym_crate] = ACTIONS(1246), - [sym_metavariable] = ACTIONS(1244), - [sym__raw_string_literal_start] = ACTIONS(1244), - [sym_float_literal] = ACTIONS(1244), + [sym_identifier] = ACTIONS(471), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1054), + [anon_sym_u8] = ACTIONS(473), + [anon_sym_i8] = ACTIONS(473), + [anon_sym_u16] = ACTIONS(473), + [anon_sym_i16] = ACTIONS(473), + [anon_sym_u32] = ACTIONS(473), + [anon_sym_i32] = ACTIONS(473), + [anon_sym_u64] = ACTIONS(473), + [anon_sym_i64] = ACTIONS(473), + [anon_sym_u128] = ACTIONS(473), + [anon_sym_i128] = ACTIONS(473), + [anon_sym_isize] = ACTIONS(473), + [anon_sym_usize] = ACTIONS(473), + [anon_sym_f32] = ACTIONS(473), + [anon_sym_f64] = ACTIONS(473), + [anon_sym_bool] = ACTIONS(473), + [anon_sym_str] = ACTIONS(473), + [anon_sym_char] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(1054), + [anon_sym_BANG] = ACTIONS(1054), + [anon_sym_AMP] = ACTIONS(1056), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1060), + [anon_sym_COLON_COLON] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(479), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(481), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(483), + [anon_sym_static] = ACTIONS(485), + [anon_sym_union] = ACTIONS(481), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(487), + [anon_sym_move] = ACTIONS(489), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [348] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1855), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(348), [sym_block_comment] = STATE(348), - [sym_identifier] = ACTIONS(334), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [ts_builtin_sym_end] = ACTIONS(1313), + [sym_identifier] = ACTIONS(1315), + [anon_sym_SEMI] = ACTIONS(1313), + [anon_sym_macro_rules_BANG] = ACTIONS(1313), + [anon_sym_LPAREN] = ACTIONS(1313), + [anon_sym_LBRACK] = ACTIONS(1313), + [anon_sym_LBRACE] = ACTIONS(1313), + [anon_sym_RBRACE] = ACTIONS(1313), + [anon_sym_macro] = ACTIONS(1315), + [anon_sym_PLUS] = ACTIONS(1307), + [anon_sym_STAR] = ACTIONS(1315), + [anon_sym_QMARK] = ACTIONS(1305), + [anon_sym_u8] = ACTIONS(1315), + [anon_sym_i8] = ACTIONS(1315), + [anon_sym_u16] = ACTIONS(1315), + [anon_sym_i16] = ACTIONS(1315), + [anon_sym_u32] = ACTIONS(1315), + [anon_sym_i32] = ACTIONS(1315), + [anon_sym_u64] = ACTIONS(1315), + [anon_sym_i64] = ACTIONS(1315), + [anon_sym_u128] = ACTIONS(1315), + [anon_sym_i128] = ACTIONS(1315), + [anon_sym_isize] = ACTIONS(1315), + [anon_sym_usize] = ACTIONS(1315), + [anon_sym_f32] = ACTIONS(1315), + [anon_sym_f64] = ACTIONS(1315), + [anon_sym_bool] = ACTIONS(1315), + [anon_sym_str] = ACTIONS(1315), + [anon_sym_char] = ACTIONS(1315), + [anon_sym_DASH] = ACTIONS(1315), + [anon_sym_SLASH] = ACTIONS(1307), + [anon_sym_PERCENT] = ACTIONS(1307), + [anon_sym_CARET] = ACTIONS(1307), + [anon_sym_BANG] = ACTIONS(1315), + [anon_sym_AMP] = ACTIONS(1315), + [anon_sym_PIPE] = ACTIONS(1315), + [anon_sym_AMP_AMP] = ACTIONS(1305), + [anon_sym_PIPE_PIPE] = ACTIONS(1305), + [anon_sym_LT_LT] = ACTIONS(1307), + [anon_sym_GT_GT] = ACTIONS(1307), + [anon_sym_PLUS_EQ] = ACTIONS(1305), + [anon_sym_DASH_EQ] = ACTIONS(1305), + [anon_sym_STAR_EQ] = ACTIONS(1305), + [anon_sym_SLASH_EQ] = ACTIONS(1305), + [anon_sym_PERCENT_EQ] = ACTIONS(1305), + [anon_sym_CARET_EQ] = ACTIONS(1305), + [anon_sym_AMP_EQ] = ACTIONS(1305), + [anon_sym_PIPE_EQ] = ACTIONS(1305), + [anon_sym_LT_LT_EQ] = ACTIONS(1305), + [anon_sym_GT_GT_EQ] = ACTIONS(1305), + [anon_sym_EQ] = ACTIONS(1307), + [anon_sym_EQ_EQ] = ACTIONS(1305), + [anon_sym_BANG_EQ] = ACTIONS(1305), + [anon_sym_GT] = ACTIONS(1307), + [anon_sym_LT] = ACTIONS(1315), + [anon_sym_GT_EQ] = ACTIONS(1305), + [anon_sym_LT_EQ] = ACTIONS(1305), + [anon_sym_DOT] = ACTIONS(1307), + [anon_sym_DOT_DOT] = ACTIONS(1315), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1305), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1305), + [anon_sym_COLON_COLON] = ACTIONS(1313), + [anon_sym_POUND] = ACTIONS(1313), + [anon_sym_SQUOTE] = ACTIONS(1315), + [anon_sym_as] = ACTIONS(1307), + [anon_sym_async] = ACTIONS(1315), + [anon_sym_break] = ACTIONS(1315), + [anon_sym_const] = ACTIONS(1315), + [anon_sym_continue] = ACTIONS(1315), + [anon_sym_default] = ACTIONS(1315), + [anon_sym_enum] = ACTIONS(1315), + [anon_sym_fn] = ACTIONS(1315), + [anon_sym_for] = ACTIONS(1315), + [anon_sym_if] = ACTIONS(1315), + [anon_sym_impl] = ACTIONS(1315), + [anon_sym_let] = ACTIONS(1315), + [anon_sym_loop] = ACTIONS(1315), + [anon_sym_match] = ACTIONS(1315), + [anon_sym_mod] = ACTIONS(1315), + [anon_sym_pub] = ACTIONS(1315), + [anon_sym_return] = ACTIONS(1315), + [anon_sym_static] = ACTIONS(1315), + [anon_sym_struct] = ACTIONS(1315), + [anon_sym_trait] = ACTIONS(1315), + [anon_sym_type] = ACTIONS(1315), + [anon_sym_union] = ACTIONS(1315), + [anon_sym_unsafe] = ACTIONS(1315), + [anon_sym_use] = ACTIONS(1315), + [anon_sym_while] = ACTIONS(1315), + [anon_sym_extern] = ACTIONS(1315), + [anon_sym_yield] = ACTIONS(1315), + [anon_sym_move] = ACTIONS(1315), + [anon_sym_try] = ACTIONS(1315), + [sym_integer_literal] = ACTIONS(1313), + [aux_sym_string_literal_token1] = ACTIONS(1313), + [sym_char_literal] = ACTIONS(1313), + [anon_sym_true] = ACTIONS(1315), + [anon_sym_false] = ACTIONS(1315), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1315), + [sym_super] = ACTIONS(1315), + [sym_crate] = ACTIONS(1315), + [sym_metavariable] = ACTIONS(1313), + [sym__raw_string_literal_start] = ACTIONS(1313), + [sym_float_literal] = ACTIONS(1313), }, [349] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1856), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2791), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1855), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1574), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(241), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(349), [sym_block_comment] = STATE(349), - [sym_identifier] = ACTIONS(334), + [sym_identifier] = ACTIONS(471), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1054), + [anon_sym_u8] = ACTIONS(473), + [anon_sym_i8] = ACTIONS(473), + [anon_sym_u16] = ACTIONS(473), + [anon_sym_i16] = ACTIONS(473), + [anon_sym_u32] = ACTIONS(473), + [anon_sym_i32] = ACTIONS(473), + [anon_sym_u64] = ACTIONS(473), + [anon_sym_i64] = ACTIONS(473), + [anon_sym_u128] = ACTIONS(473), + [anon_sym_i128] = ACTIONS(473), + [anon_sym_isize] = ACTIONS(473), + [anon_sym_usize] = ACTIONS(473), + [anon_sym_f32] = ACTIONS(473), + [anon_sym_f64] = ACTIONS(473), + [anon_sym_bool] = ACTIONS(473), + [anon_sym_str] = ACTIONS(473), + [anon_sym_char] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(1054), + [anon_sym_BANG] = ACTIONS(1054), + [anon_sym_AMP] = ACTIONS(1056), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1060), + [anon_sym_COLON_COLON] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(479), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(481), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(483), + [anon_sym_static] = ACTIONS(485), + [anon_sym_union] = ACTIONS(481), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(487), + [anon_sym_move] = ACTIONS(489), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [350] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1804), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1767), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1419), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(350), [sym_block_comment] = STATE(350), - [sym_identifier] = ACTIONS(334), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(365), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [351] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1858), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1895), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1419), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(351), [sym_block_comment] = STATE(351), - [sym_identifier] = ACTIONS(334), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(365), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [352] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1808), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2791), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1640), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1574), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(249), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(352), [sym_block_comment] = STATE(352), - [sym_identifier] = ACTIONS(334), + [sym_identifier] = ACTIONS(471), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_u8] = ACTIONS(473), + [anon_sym_i8] = ACTIONS(473), + [anon_sym_u16] = ACTIONS(473), + [anon_sym_i16] = ACTIONS(473), + [anon_sym_u32] = ACTIONS(473), + [anon_sym_i32] = ACTIONS(473), + [anon_sym_u64] = ACTIONS(473), + [anon_sym_i64] = ACTIONS(473), + [anon_sym_u128] = ACTIONS(473), + [anon_sym_i128] = ACTIONS(473), + [anon_sym_isize] = ACTIONS(473), + [anon_sym_usize] = ACTIONS(473), + [anon_sym_f32] = ACTIONS(473), + [anon_sym_f64] = ACTIONS(473), + [anon_sym_bool] = ACTIONS(473), + [anon_sym_str] = ACTIONS(473), + [anon_sym_char] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(998), + [anon_sym_BANG] = ACTIONS(998), + [anon_sym_AMP] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1074), + [anon_sym_COLON_COLON] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(499), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_default] = ACTIONS(481), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(503), + [anon_sym_static] = ACTIONS(505), + [anon_sym_union] = ACTIONS(481), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(507), + [anon_sym_move] = ACTIONS(509), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [353] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1859), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2791), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1636), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1574), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(249), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(353), [sym_block_comment] = STATE(353), - [sym_identifier] = ACTIONS(334), + [sym_identifier] = ACTIONS(471), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_u8] = ACTIONS(473), + [anon_sym_i8] = ACTIONS(473), + [anon_sym_u16] = ACTIONS(473), + [anon_sym_i16] = ACTIONS(473), + [anon_sym_u32] = ACTIONS(473), + [anon_sym_i32] = ACTIONS(473), + [anon_sym_u64] = ACTIONS(473), + [anon_sym_i64] = ACTIONS(473), + [anon_sym_u128] = ACTIONS(473), + [anon_sym_i128] = ACTIONS(473), + [anon_sym_isize] = ACTIONS(473), + [anon_sym_usize] = ACTIONS(473), + [anon_sym_f32] = ACTIONS(473), + [anon_sym_f64] = ACTIONS(473), + [anon_sym_bool] = ACTIONS(473), + [anon_sym_str] = ACTIONS(473), + [anon_sym_char] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(998), + [anon_sym_BANG] = ACTIONS(998), + [anon_sym_AMP] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1074), + [anon_sym_COLON_COLON] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(499), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_default] = ACTIONS(481), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(503), + [anon_sym_static] = ACTIONS(505), + [anon_sym_union] = ACTIONS(481), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(507), + [anon_sym_move] = ACTIONS(509), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [354] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1562), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2791), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1849), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1574), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(241), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(354), [sym_block_comment] = STATE(354), - [sym_identifier] = ACTIONS(456), + [sym_identifier] = ACTIONS(471), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(977), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1054), + [anon_sym_u8] = ACTIONS(473), + [anon_sym_i8] = ACTIONS(473), + [anon_sym_u16] = ACTIONS(473), + [anon_sym_i16] = ACTIONS(473), + [anon_sym_u32] = ACTIONS(473), + [anon_sym_i32] = ACTIONS(473), + [anon_sym_u64] = ACTIONS(473), + [anon_sym_i64] = ACTIONS(473), + [anon_sym_u128] = ACTIONS(473), + [anon_sym_i128] = ACTIONS(473), + [anon_sym_isize] = ACTIONS(473), + [anon_sym_usize] = ACTIONS(473), + [anon_sym_f32] = ACTIONS(473), + [anon_sym_f64] = ACTIONS(473), + [anon_sym_bool] = ACTIONS(473), + [anon_sym_str] = ACTIONS(473), + [anon_sym_char] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(1054), + [anon_sym_BANG] = ACTIONS(1054), + [anon_sym_AMP] = ACTIONS(1056), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1060), + [anon_sym_COLON_COLON] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(479), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(481), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(483), + [anon_sym_static] = ACTIONS(485), + [anon_sym_union] = ACTIONS(481), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(487), + [anon_sym_move] = ACTIONS(489), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [355] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1809), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2791), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1844), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1574), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(241), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(355), [sym_block_comment] = STATE(355), - [sym_identifier] = ACTIONS(334), + [sym_identifier] = ACTIONS(471), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1054), + [anon_sym_u8] = ACTIONS(473), + [anon_sym_i8] = ACTIONS(473), + [anon_sym_u16] = ACTIONS(473), + [anon_sym_i16] = ACTIONS(473), + [anon_sym_u32] = ACTIONS(473), + [anon_sym_i32] = ACTIONS(473), + [anon_sym_u64] = ACTIONS(473), + [anon_sym_i64] = ACTIONS(473), + [anon_sym_u128] = ACTIONS(473), + [anon_sym_i128] = ACTIONS(473), + [anon_sym_isize] = ACTIONS(473), + [anon_sym_usize] = ACTIONS(473), + [anon_sym_f32] = ACTIONS(473), + [anon_sym_f64] = ACTIONS(473), + [anon_sym_bool] = ACTIONS(473), + [anon_sym_str] = ACTIONS(473), + [anon_sym_char] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(1054), + [anon_sym_BANG] = ACTIONS(1054), + [anon_sym_AMP] = ACTIONS(1056), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1060), + [anon_sym_COLON_COLON] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(479), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(481), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(483), + [anon_sym_static] = ACTIONS(485), + [anon_sym_union] = ACTIONS(481), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(487), + [anon_sym_move] = ACTIONS(489), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [356] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1861), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(356), [sym_block_comment] = STATE(356), - [sym_identifier] = ACTIONS(334), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [ts_builtin_sym_end] = ACTIONS(1317), + [sym_identifier] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(1317), + [anon_sym_macro_rules_BANG] = ACTIONS(1317), + [anon_sym_LPAREN] = ACTIONS(1317), + [anon_sym_LBRACK] = ACTIONS(1317), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_RBRACE] = ACTIONS(1317), + [anon_sym_macro] = ACTIONS(1319), + [anon_sym_PLUS] = ACTIONS(1319), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_QMARK] = ACTIONS(1317), + [anon_sym_u8] = ACTIONS(1319), + [anon_sym_i8] = ACTIONS(1319), + [anon_sym_u16] = ACTIONS(1319), + [anon_sym_i16] = ACTIONS(1319), + [anon_sym_u32] = ACTIONS(1319), + [anon_sym_i32] = ACTIONS(1319), + [anon_sym_u64] = ACTIONS(1319), + [anon_sym_i64] = ACTIONS(1319), + [anon_sym_u128] = ACTIONS(1319), + [anon_sym_i128] = ACTIONS(1319), + [anon_sym_isize] = ACTIONS(1319), + [anon_sym_usize] = ACTIONS(1319), + [anon_sym_f32] = ACTIONS(1319), + [anon_sym_f64] = ACTIONS(1319), + [anon_sym_bool] = ACTIONS(1319), + [anon_sym_str] = ACTIONS(1319), + [anon_sym_char] = ACTIONS(1319), + [anon_sym_DASH] = ACTIONS(1319), + [anon_sym_SLASH] = ACTIONS(1319), + [anon_sym_PERCENT] = ACTIONS(1319), + [anon_sym_CARET] = ACTIONS(1319), + [anon_sym_BANG] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_PIPE] = ACTIONS(1319), + [anon_sym_AMP_AMP] = ACTIONS(1317), + [anon_sym_PIPE_PIPE] = ACTIONS(1317), + [anon_sym_LT_LT] = ACTIONS(1319), + [anon_sym_GT_GT] = ACTIONS(1319), + [anon_sym_PLUS_EQ] = ACTIONS(1317), + [anon_sym_DASH_EQ] = ACTIONS(1317), + [anon_sym_STAR_EQ] = ACTIONS(1317), + [anon_sym_SLASH_EQ] = ACTIONS(1317), + [anon_sym_PERCENT_EQ] = ACTIONS(1317), + [anon_sym_CARET_EQ] = ACTIONS(1317), + [anon_sym_AMP_EQ] = ACTIONS(1317), + [anon_sym_PIPE_EQ] = ACTIONS(1317), + [anon_sym_LT_LT_EQ] = ACTIONS(1317), + [anon_sym_GT_GT_EQ] = ACTIONS(1317), + [anon_sym_EQ] = ACTIONS(1319), + [anon_sym_EQ_EQ] = ACTIONS(1317), + [anon_sym_BANG_EQ] = ACTIONS(1317), + [anon_sym_GT] = ACTIONS(1319), + [anon_sym_LT] = ACTIONS(1319), + [anon_sym_GT_EQ] = ACTIONS(1317), + [anon_sym_LT_EQ] = ACTIONS(1317), + [anon_sym_DOT] = ACTIONS(1319), + [anon_sym_DOT_DOT] = ACTIONS(1319), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1317), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1317), + [anon_sym_COLON_COLON] = ACTIONS(1317), + [anon_sym_POUND] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(1319), + [anon_sym_as] = ACTIONS(1319), + [anon_sym_async] = ACTIONS(1319), + [anon_sym_break] = ACTIONS(1319), + [anon_sym_const] = ACTIONS(1319), + [anon_sym_continue] = ACTIONS(1319), + [anon_sym_default] = ACTIONS(1319), + [anon_sym_enum] = ACTIONS(1319), + [anon_sym_fn] = ACTIONS(1319), + [anon_sym_for] = ACTIONS(1319), + [anon_sym_if] = ACTIONS(1319), + [anon_sym_impl] = ACTIONS(1319), + [anon_sym_let] = ACTIONS(1319), + [anon_sym_loop] = ACTIONS(1319), + [anon_sym_match] = ACTIONS(1319), + [anon_sym_mod] = ACTIONS(1319), + [anon_sym_pub] = ACTIONS(1319), + [anon_sym_return] = ACTIONS(1319), + [anon_sym_static] = ACTIONS(1319), + [anon_sym_struct] = ACTIONS(1319), + [anon_sym_trait] = ACTIONS(1319), + [anon_sym_type] = ACTIONS(1319), + [anon_sym_union] = ACTIONS(1319), + [anon_sym_unsafe] = ACTIONS(1319), + [anon_sym_use] = ACTIONS(1319), + [anon_sym_while] = ACTIONS(1319), + [anon_sym_extern] = ACTIONS(1319), + [anon_sym_yield] = ACTIONS(1319), + [anon_sym_move] = ACTIONS(1319), + [anon_sym_try] = ACTIONS(1319), + [sym_integer_literal] = ACTIONS(1317), + [aux_sym_string_literal_token1] = ACTIONS(1317), + [sym_char_literal] = ACTIONS(1317), + [anon_sym_true] = ACTIONS(1319), + [anon_sym_false] = ACTIONS(1319), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1319), + [sym_super] = ACTIONS(1319), + [sym_crate] = ACTIONS(1319), + [sym_metavariable] = ACTIONS(1317), + [sym__raw_string_literal_start] = ACTIONS(1317), + [sym_float_literal] = ACTIONS(1317), }, [357] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1862), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1854), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1419), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(474), + [sym_match_expression] = STATE(474), + [sym_while_expression] = STATE(474), + [sym_loop_expression] = STATE(474), + [sym_for_expression] = STATE(474), + [sym_const_block] = STATE(474), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3676), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(474), + [sym_async_block] = STATE(474), + [sym_try_block] = STATE(474), + [sym_block] = STATE(474), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(357), [sym_block_comment] = STATE(357), - [sym_identifier] = ACTIONS(334), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1273), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(1275), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(1277), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(1279), + [anon_sym_if] = ACTIONS(1281), + [anon_sym_loop] = ACTIONS(1283), + [anon_sym_match] = ACTIONS(1285), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(365), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(1287), + [anon_sym_while] = ACTIONS(1289), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(1291), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [358] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1863), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2791), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1675), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1574), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(241), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(358), [sym_block_comment] = STATE(358), - [sym_identifier] = ACTIONS(334), + [sym_identifier] = ACTIONS(471), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1054), + [anon_sym_u8] = ACTIONS(473), + [anon_sym_i8] = ACTIONS(473), + [anon_sym_u16] = ACTIONS(473), + [anon_sym_i16] = ACTIONS(473), + [anon_sym_u32] = ACTIONS(473), + [anon_sym_i32] = ACTIONS(473), + [anon_sym_u64] = ACTIONS(473), + [anon_sym_i64] = ACTIONS(473), + [anon_sym_u128] = ACTIONS(473), + [anon_sym_i128] = ACTIONS(473), + [anon_sym_isize] = ACTIONS(473), + [anon_sym_usize] = ACTIONS(473), + [anon_sym_f32] = ACTIONS(473), + [anon_sym_f64] = ACTIONS(473), + [anon_sym_bool] = ACTIONS(473), + [anon_sym_str] = ACTIONS(473), + [anon_sym_char] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(1054), + [anon_sym_BANG] = ACTIONS(1054), + [anon_sym_AMP] = ACTIONS(1056), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1247), + [anon_sym_COLON_COLON] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(479), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(481), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(483), + [anon_sym_static] = ACTIONS(485), + [anon_sym_union] = ACTIONS(481), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(487), + [anon_sym_move] = ACTIONS(489), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [359] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1864), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2791), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1642), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1574), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(249), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(359), [sym_block_comment] = STATE(359), - [sym_identifier] = ACTIONS(334), + [sym_identifier] = ACTIONS(471), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_u8] = ACTIONS(473), + [anon_sym_i8] = ACTIONS(473), + [anon_sym_u16] = ACTIONS(473), + [anon_sym_i16] = ACTIONS(473), + [anon_sym_u32] = ACTIONS(473), + [anon_sym_i32] = ACTIONS(473), + [anon_sym_u64] = ACTIONS(473), + [anon_sym_i64] = ACTIONS(473), + [anon_sym_u128] = ACTIONS(473), + [anon_sym_i128] = ACTIONS(473), + [anon_sym_isize] = ACTIONS(473), + [anon_sym_usize] = ACTIONS(473), + [anon_sym_f32] = ACTIONS(473), + [anon_sym_f64] = ACTIONS(473), + [anon_sym_bool] = ACTIONS(473), + [anon_sym_str] = ACTIONS(473), + [anon_sym_char] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(998), + [anon_sym_BANG] = ACTIONS(998), + [anon_sym_AMP] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1074), + [anon_sym_COLON_COLON] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(499), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_default] = ACTIONS(481), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(503), + [anon_sym_static] = ACTIONS(505), + [anon_sym_union] = ACTIONS(481), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(507), + [anon_sym_move] = ACTIONS(509), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [360] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1813), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2791), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1643), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1574), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(249), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(360), [sym_block_comment] = STATE(360), - [sym_identifier] = ACTIONS(456), + [sym_identifier] = ACTIONS(471), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(1041), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(1041), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_AMP] = ACTIONS(1043), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1230), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(464), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(468), - [anon_sym_static] = ACTIONS(470), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(472), - [anon_sym_move] = ACTIONS(474), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_u8] = ACTIONS(473), + [anon_sym_i8] = ACTIONS(473), + [anon_sym_u16] = ACTIONS(473), + [anon_sym_i16] = ACTIONS(473), + [anon_sym_u32] = ACTIONS(473), + [anon_sym_i32] = ACTIONS(473), + [anon_sym_u64] = ACTIONS(473), + [anon_sym_i64] = ACTIONS(473), + [anon_sym_u128] = ACTIONS(473), + [anon_sym_i128] = ACTIONS(473), + [anon_sym_isize] = ACTIONS(473), + [anon_sym_usize] = ACTIONS(473), + [anon_sym_f32] = ACTIONS(473), + [anon_sym_f64] = ACTIONS(473), + [anon_sym_bool] = ACTIONS(473), + [anon_sym_str] = ACTIONS(473), + [anon_sym_char] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(998), + [anon_sym_BANG] = ACTIONS(998), + [anon_sym_AMP] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1074), + [anon_sym_COLON_COLON] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(499), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_default] = ACTIONS(481), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(503), + [anon_sym_static] = ACTIONS(505), + [anon_sym_union] = ACTIONS(481), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(507), + [anon_sym_move] = ACTIONS(509), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [361] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1551), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), + [sym_bracketed_type] = STATE(3593), + [sym_generic_function] = STATE(1742), + [sym_generic_type_with_turbofish] = STATE(2901), + [sym__expression_except_range] = STATE(1655), + [sym__expression] = STATE(1815), + [sym_macro_invocation] = STATE(1752), + [sym_scoped_identifier] = STATE(1584), [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_range_expression] = STATE(1746), + [sym_unary_expression] = STATE(1742), + [sym_try_expression] = STATE(1742), + [sym_reference_expression] = STATE(1742), + [sym_binary_expression] = STATE(1742), + [sym_assignment_expression] = STATE(1742), + [sym_compound_assignment_expr] = STATE(1742), + [sym_type_cast_expression] = STATE(1742), + [sym_return_expression] = STATE(1742), + [sym_yield_expression] = STATE(1742), + [sym_call_expression] = STATE(1742), + [sym_array_expression] = STATE(1742), + [sym_parenthesized_expression] = STATE(1742), + [sym_tuple_expression] = STATE(1742), + [sym_unit_expression] = STATE(1742), + [sym_struct_expression] = STATE(1742), + [sym_if_expression] = STATE(1742), + [sym_match_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_loop_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_const_block] = STATE(1742), + [sym_closure_expression] = STATE(1742), + [sym_closure_parameters] = STATE(244), + [sym_label] = STATE(3682), + [sym_break_expression] = STATE(1742), + [sym_continue_expression] = STATE(1742), + [sym_index_expression] = STATE(1742), + [sym_await_expression] = STATE(1742), + [sym_field_expression] = STATE(1652), + [sym_unsafe_block] = STATE(1742), + [sym_async_block] = STATE(1742), + [sym_try_block] = STATE(1742), + [sym_block] = STATE(1742), + [sym__literal] = STATE(1742), + [sym_string_literal] = STATE(1723), + [sym_raw_string_literal] = STATE(1723), + [sym_boolean_literal] = STATE(1723), [sym_line_comment] = STATE(361), [sym_block_comment] = STATE(361), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(977), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [sym_identifier] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(461), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LBRACE] = ACTIONS(405), + [anon_sym_STAR] = ACTIONS(1020), + [anon_sym_u8] = ACTIONS(409), + [anon_sym_i8] = ACTIONS(409), + [anon_sym_u16] = ACTIONS(409), + [anon_sym_i16] = ACTIONS(409), + [anon_sym_u32] = ACTIONS(409), + [anon_sym_i32] = ACTIONS(409), + [anon_sym_u64] = ACTIONS(409), + [anon_sym_i64] = ACTIONS(409), + [anon_sym_u128] = ACTIONS(409), + [anon_sym_i128] = ACTIONS(409), + [anon_sym_isize] = ACTIONS(409), + [anon_sym_usize] = ACTIONS(409), + [anon_sym_f32] = ACTIONS(409), + [anon_sym_f64] = ACTIONS(409), + [anon_sym_bool] = ACTIONS(409), + [anon_sym_str] = ACTIONS(409), + [anon_sym_char] = ACTIONS(409), + [anon_sym_DASH] = ACTIONS(1020), + [anon_sym_BANG] = ACTIONS(1020), + [anon_sym_AMP] = ACTIONS(1022), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1024), + [anon_sym_COLON_COLON] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(415), + [anon_sym_break] = ACTIONS(417), + [anon_sym_const] = ACTIONS(419), + [anon_sym_continue] = ACTIONS(421), + [anon_sym_default] = ACTIONS(423), + [anon_sym_for] = ACTIONS(425), + [anon_sym_if] = ACTIONS(427), + [anon_sym_loop] = ACTIONS(429), + [anon_sym_match] = ACTIONS(431), + [anon_sym_return] = ACTIONS(433), + [anon_sym_static] = ACTIONS(435), + [anon_sym_union] = ACTIONS(423), + [anon_sym_unsafe] = ACTIONS(437), + [anon_sym_while] = ACTIONS(439), + [anon_sym_yield] = ACTIONS(441), + [anon_sym_move] = ACTIONS(443), + [anon_sym_try] = ACTIONS(445), + [sym_integer_literal] = ACTIONS(447), + [aux_sym_string_literal_token1] = ACTIONS(449), + [sym_char_literal] = ACTIONS(447), + [anon_sym_true] = ACTIONS(451), + [anon_sym_false] = ACTIONS(451), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(453), + [sym_super] = ACTIONS(455), + [sym_crate] = ACTIONS(455), + [sym_metavariable] = ACTIONS(457), + [sym__raw_string_literal_start] = ACTIONS(459), + [sym_float_literal] = ACTIONS(447), }, [362] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2808), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1866), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1393), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1534), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1419), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(362), [sym_block_comment] = STATE(362), - [sym_identifier] = ACTIONS(334), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1066), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(365), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [363] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1572), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1879), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1419), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(363), [sym_block_comment] = STATE(363), - [sym_identifier] = ACTIONS(456), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(977), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(365), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [364] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1560), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2791), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1597), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1574), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(249), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(364), [sym_block_comment] = STATE(364), - [sym_identifier] = ACTIONS(456), + [sym_identifier] = ACTIONS(471), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(977), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_u8] = ACTIONS(473), + [anon_sym_i8] = ACTIONS(473), + [anon_sym_u16] = ACTIONS(473), + [anon_sym_i16] = ACTIONS(473), + [anon_sym_u32] = ACTIONS(473), + [anon_sym_i32] = ACTIONS(473), + [anon_sym_u64] = ACTIONS(473), + [anon_sym_i64] = ACTIONS(473), + [anon_sym_u128] = ACTIONS(473), + [anon_sym_i128] = ACTIONS(473), + [anon_sym_isize] = ACTIONS(473), + [anon_sym_usize] = ACTIONS(473), + [anon_sym_f32] = ACTIONS(473), + [anon_sym_f64] = ACTIONS(473), + [anon_sym_bool] = ACTIONS(473), + [anon_sym_str] = ACTIONS(473), + [anon_sym_char] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(998), + [anon_sym_BANG] = ACTIONS(998), + [anon_sym_AMP] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_COLON_COLON] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(499), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_default] = ACTIONS(481), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(503), + [anon_sym_static] = ACTIONS(505), + [anon_sym_union] = ACTIONS(481), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(507), + [anon_sym_move] = ACTIONS(509), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [365] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1822), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(365), [sym_block_comment] = STATE(365), - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(1041), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(1041), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_AMP] = ACTIONS(1043), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1230), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(464), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(468), - [anon_sym_static] = ACTIONS(470), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(472), - [anon_sym_move] = ACTIONS(474), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [ts_builtin_sym_end] = ACTIONS(1321), + [sym_identifier] = ACTIONS(1323), + [anon_sym_SEMI] = ACTIONS(1321), + [anon_sym_macro_rules_BANG] = ACTIONS(1321), + [anon_sym_LPAREN] = ACTIONS(1321), + [anon_sym_LBRACK] = ACTIONS(1321), + [anon_sym_LBRACE] = ACTIONS(1321), + [anon_sym_RBRACE] = ACTIONS(1321), + [anon_sym_macro] = ACTIONS(1323), + [anon_sym_PLUS] = ACTIONS(1323), + [anon_sym_STAR] = ACTIONS(1323), + [anon_sym_QMARK] = ACTIONS(1321), + [anon_sym_u8] = ACTIONS(1323), + [anon_sym_i8] = ACTIONS(1323), + [anon_sym_u16] = ACTIONS(1323), + [anon_sym_i16] = ACTIONS(1323), + [anon_sym_u32] = ACTIONS(1323), + [anon_sym_i32] = ACTIONS(1323), + [anon_sym_u64] = ACTIONS(1323), + [anon_sym_i64] = ACTIONS(1323), + [anon_sym_u128] = ACTIONS(1323), + [anon_sym_i128] = ACTIONS(1323), + [anon_sym_isize] = ACTIONS(1323), + [anon_sym_usize] = ACTIONS(1323), + [anon_sym_f32] = ACTIONS(1323), + [anon_sym_f64] = ACTIONS(1323), + [anon_sym_bool] = ACTIONS(1323), + [anon_sym_str] = ACTIONS(1323), + [anon_sym_char] = ACTIONS(1323), + [anon_sym_DASH] = ACTIONS(1323), + [anon_sym_SLASH] = ACTIONS(1323), + [anon_sym_PERCENT] = ACTIONS(1323), + [anon_sym_CARET] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1323), + [anon_sym_AMP] = ACTIONS(1323), + [anon_sym_PIPE] = ACTIONS(1323), + [anon_sym_AMP_AMP] = ACTIONS(1321), + [anon_sym_PIPE_PIPE] = ACTIONS(1321), + [anon_sym_LT_LT] = ACTIONS(1323), + [anon_sym_GT_GT] = ACTIONS(1323), + [anon_sym_PLUS_EQ] = ACTIONS(1321), + [anon_sym_DASH_EQ] = ACTIONS(1321), + [anon_sym_STAR_EQ] = ACTIONS(1321), + [anon_sym_SLASH_EQ] = ACTIONS(1321), + [anon_sym_PERCENT_EQ] = ACTIONS(1321), + [anon_sym_CARET_EQ] = ACTIONS(1321), + [anon_sym_AMP_EQ] = ACTIONS(1321), + [anon_sym_PIPE_EQ] = ACTIONS(1321), + [anon_sym_LT_LT_EQ] = ACTIONS(1321), + [anon_sym_GT_GT_EQ] = ACTIONS(1321), + [anon_sym_EQ] = ACTIONS(1323), + [anon_sym_EQ_EQ] = ACTIONS(1321), + [anon_sym_BANG_EQ] = ACTIONS(1321), + [anon_sym_GT] = ACTIONS(1323), + [anon_sym_LT] = ACTIONS(1323), + [anon_sym_GT_EQ] = ACTIONS(1321), + [anon_sym_LT_EQ] = ACTIONS(1321), + [anon_sym_DOT] = ACTIONS(1323), + [anon_sym_DOT_DOT] = ACTIONS(1323), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1321), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1321), + [anon_sym_COLON_COLON] = ACTIONS(1321), + [anon_sym_POUND] = ACTIONS(1321), + [anon_sym_SQUOTE] = ACTIONS(1323), + [anon_sym_as] = ACTIONS(1323), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_break] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_continue] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1323), + [anon_sym_enum] = ACTIONS(1323), + [anon_sym_fn] = ACTIONS(1323), + [anon_sym_for] = ACTIONS(1323), + [anon_sym_if] = ACTIONS(1323), + [anon_sym_impl] = ACTIONS(1323), + [anon_sym_let] = ACTIONS(1323), + [anon_sym_loop] = ACTIONS(1323), + [anon_sym_match] = ACTIONS(1323), + [anon_sym_mod] = ACTIONS(1323), + [anon_sym_pub] = ACTIONS(1323), + [anon_sym_return] = ACTIONS(1323), + [anon_sym_static] = ACTIONS(1323), + [anon_sym_struct] = ACTIONS(1323), + [anon_sym_trait] = ACTIONS(1323), + [anon_sym_type] = ACTIONS(1323), + [anon_sym_union] = ACTIONS(1323), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1323), + [anon_sym_while] = ACTIONS(1323), + [anon_sym_extern] = ACTIONS(1323), + [anon_sym_yield] = ACTIONS(1323), + [anon_sym_move] = ACTIONS(1323), + [anon_sym_try] = ACTIONS(1323), + [sym_integer_literal] = ACTIONS(1321), + [aux_sym_string_literal_token1] = ACTIONS(1321), + [sym_char_literal] = ACTIONS(1321), + [anon_sym_true] = ACTIONS(1323), + [anon_sym_false] = ACTIONS(1323), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1323), + [sym_super] = ACTIONS(1323), + [sym_crate] = ACTIONS(1323), + [sym_metavariable] = ACTIONS(1321), + [sym__raw_string_literal_start] = ACTIONS(1321), + [sym_float_literal] = ACTIONS(1321), }, [366] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1712), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2791), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1842), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1574), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(241), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(366), [sym_block_comment] = STATE(366), - [sym_identifier] = ACTIONS(456), + [sym_identifier] = ACTIONS(471), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(1041), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(1041), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_AMP] = ACTIONS(1043), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(464), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(468), - [anon_sym_static] = ACTIONS(470), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(472), - [anon_sym_move] = ACTIONS(474), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1054), + [anon_sym_u8] = ACTIONS(473), + [anon_sym_i8] = ACTIONS(473), + [anon_sym_u16] = ACTIONS(473), + [anon_sym_i16] = ACTIONS(473), + [anon_sym_u32] = ACTIONS(473), + [anon_sym_i32] = ACTIONS(473), + [anon_sym_u64] = ACTIONS(473), + [anon_sym_i64] = ACTIONS(473), + [anon_sym_u128] = ACTIONS(473), + [anon_sym_i128] = ACTIONS(473), + [anon_sym_isize] = ACTIONS(473), + [anon_sym_usize] = ACTIONS(473), + [anon_sym_f32] = ACTIONS(473), + [anon_sym_f64] = ACTIONS(473), + [anon_sym_bool] = ACTIONS(473), + [anon_sym_str] = ACTIONS(473), + [anon_sym_char] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(1054), + [anon_sym_BANG] = ACTIONS(1054), + [anon_sym_AMP] = ACTIONS(1056), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1060), + [anon_sym_COLON_COLON] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(479), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(481), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(483), + [anon_sym_static] = ACTIONS(485), + [anon_sym_union] = ACTIONS(481), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(487), + [anon_sym_move] = ACTIONS(489), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [367] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1566), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1889), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1419), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(474), + [sym_match_expression] = STATE(474), + [sym_while_expression] = STATE(474), + [sym_loop_expression] = STATE(474), + [sym_for_expression] = STATE(474), + [sym_const_block] = STATE(474), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3676), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(474), + [sym_async_block] = STATE(474), + [sym_try_block] = STATE(474), + [sym_block] = STATE(474), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(367), [sym_block_comment] = STATE(367), - [sym_identifier] = ACTIONS(456), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(977), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1273), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(1275), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(1277), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(1279), + [anon_sym_if] = ACTIONS(1281), + [anon_sym_loop] = ACTIONS(1283), + [anon_sym_match] = ACTIONS(1285), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(365), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(1287), + [anon_sym_while] = ACTIONS(1289), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(1291), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [368] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1251), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2791), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1478), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1574), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(241), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(368), [sym_block_comment] = STATE(368), - [sym_identifier] = ACTIONS(456), + [sym_identifier] = ACTIONS(471), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(1041), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(1041), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_AMP] = ACTIONS(1043), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(464), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(468), - [anon_sym_static] = ACTIONS(470), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(472), - [anon_sym_move] = ACTIONS(474), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1054), + [anon_sym_u8] = ACTIONS(473), + [anon_sym_i8] = ACTIONS(473), + [anon_sym_u16] = ACTIONS(473), + [anon_sym_i16] = ACTIONS(473), + [anon_sym_u32] = ACTIONS(473), + [anon_sym_i32] = ACTIONS(473), + [anon_sym_u64] = ACTIONS(473), + [anon_sym_i64] = ACTIONS(473), + [anon_sym_u128] = ACTIONS(473), + [anon_sym_i128] = ACTIONS(473), + [anon_sym_isize] = ACTIONS(473), + [anon_sym_usize] = ACTIONS(473), + [anon_sym_f32] = ACTIONS(473), + [anon_sym_f64] = ACTIONS(473), + [anon_sym_bool] = ACTIONS(473), + [anon_sym_str] = ACTIONS(473), + [anon_sym_char] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(1054), + [anon_sym_BANG] = ACTIONS(1054), + [anon_sym_AMP] = ACTIONS(1056), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1060), + [anon_sym_COLON_COLON] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(479), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(481), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(483), + [anon_sym_static] = ACTIONS(485), + [anon_sym_union] = ACTIONS(481), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(487), + [anon_sym_move] = ACTIONS(489), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [369] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1563), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2791), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1841), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1574), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(241), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(369), [sym_block_comment] = STATE(369), - [sym_identifier] = ACTIONS(456), + [sym_identifier] = ACTIONS(471), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(977), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1054), + [anon_sym_u8] = ACTIONS(473), + [anon_sym_i8] = ACTIONS(473), + [anon_sym_u16] = ACTIONS(473), + [anon_sym_i16] = ACTIONS(473), + [anon_sym_u32] = ACTIONS(473), + [anon_sym_i32] = ACTIONS(473), + [anon_sym_u64] = ACTIONS(473), + [anon_sym_i64] = ACTIONS(473), + [anon_sym_u128] = ACTIONS(473), + [anon_sym_i128] = ACTIONS(473), + [anon_sym_isize] = ACTIONS(473), + [anon_sym_usize] = ACTIONS(473), + [anon_sym_f32] = ACTIONS(473), + [anon_sym_f64] = ACTIONS(473), + [anon_sym_bool] = ACTIONS(473), + [anon_sym_str] = ACTIONS(473), + [anon_sym_char] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(1054), + [anon_sym_BANG] = ACTIONS(1054), + [anon_sym_AMP] = ACTIONS(1056), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1060), + [anon_sym_COLON_COLON] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(479), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(481), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(483), + [anon_sym_static] = ACTIONS(485), + [anon_sym_union] = ACTIONS(481), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(487), + [anon_sym_move] = ACTIONS(489), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [370] = { - [sym_bracketed_type] = STATE(3495), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1055), - [sym__expression] = STATE(1740), - [sym_macro_invocation] = STATE(1241), - [sym_scoped_identifier] = STATE(1535), - [sym_scoped_type_identifier_in_expression_position] = STATE(3216), - [sym_range_expression] = STATE(1215), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_const_block] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3535), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(1073), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_try_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1462), - [sym_raw_string_literal] = STATE(1462), - [sym_boolean_literal] = STATE(1462), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2791), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1576), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1574), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(249), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(370), [sym_block_comment] = STATE(370), - [sym_identifier] = ACTIONS(456), + [sym_identifier] = ACTIONS(471), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(1041), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(1041), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_AMP] = ACTIONS(1043), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1230), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(464), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(466), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(468), - [anon_sym_static] = ACTIONS(470), - [anon_sym_union] = ACTIONS(466), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(472), - [anon_sym_move] = ACTIONS(474), - [anon_sym_try] = ACTIONS(366), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(480), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_u8] = ACTIONS(473), + [anon_sym_i8] = ACTIONS(473), + [anon_sym_u16] = ACTIONS(473), + [anon_sym_i16] = ACTIONS(473), + [anon_sym_u32] = ACTIONS(473), + [anon_sym_i32] = ACTIONS(473), + [anon_sym_u64] = ACTIONS(473), + [anon_sym_i64] = ACTIONS(473), + [anon_sym_u128] = ACTIONS(473), + [anon_sym_i128] = ACTIONS(473), + [anon_sym_isize] = ACTIONS(473), + [anon_sym_usize] = ACTIONS(473), + [anon_sym_f32] = ACTIONS(473), + [anon_sym_f64] = ACTIONS(473), + [anon_sym_bool] = ACTIONS(473), + [anon_sym_str] = ACTIONS(473), + [anon_sym_char] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(998), + [anon_sym_BANG] = ACTIONS(998), + [anon_sym_AMP] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_COLON_COLON] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(499), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_default] = ACTIONS(481), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(503), + [anon_sym_static] = ACTIONS(505), + [anon_sym_union] = ACTIONS(481), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(507), + [anon_sym_move] = ACTIONS(509), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [371] = { - [sym_attribute_item] = STATE(414), - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_self_parameter] = STATE(2981), - [sym_variadic_parameter] = STATE(2981), - [sym_parameter] = STATE(2981), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2705), - [sym_bracketed_type] = STATE(3527), - [sym_lifetime] = STATE(2985), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3273), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(2487), - [sym_scoped_identifier] = STATE(2113), - [sym_scoped_type_identifier] = STATE(2114), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2464), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2791), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1585), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1574), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(249), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(371), [sym_block_comment] = STATE(371), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1248), - [anon_sym_LPAREN] = ACTIONS(1250), - [anon_sym_RPAREN] = ACTIONS(1252), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = 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_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1266), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1270), - [anon_sym_DOT_DOT] = ACTIONS(1272), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1274), - [anon_sym_COMMA] = ACTIONS(1276), - [anon_sym_COLON_COLON] = ACTIONS(1278), - [anon_sym_POUND] = ACTIONS(1280), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1288), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1296), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(1304), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1312), - [sym_super] = ACTIONS(1314), - [sym_crate] = ACTIONS(1314), - [sym_metavariable] = ACTIONS(1316), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym_identifier] = ACTIONS(471), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_u8] = ACTIONS(473), + [anon_sym_i8] = ACTIONS(473), + [anon_sym_u16] = ACTIONS(473), + [anon_sym_i16] = ACTIONS(473), + [anon_sym_u32] = ACTIONS(473), + [anon_sym_i32] = ACTIONS(473), + [anon_sym_u64] = ACTIONS(473), + [anon_sym_i64] = ACTIONS(473), + [anon_sym_u128] = ACTIONS(473), + [anon_sym_i128] = ACTIONS(473), + [anon_sym_isize] = ACTIONS(473), + [anon_sym_usize] = ACTIONS(473), + [anon_sym_f32] = ACTIONS(473), + [anon_sym_f64] = ACTIONS(473), + [anon_sym_bool] = ACTIONS(473), + [anon_sym_str] = ACTIONS(473), + [anon_sym_char] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(998), + [anon_sym_BANG] = ACTIONS(998), + [anon_sym_AMP] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_COLON_COLON] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(499), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_default] = ACTIONS(481), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(503), + [anon_sym_static] = ACTIONS(505), + [anon_sym_union] = ACTIONS(481), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(507), + [anon_sym_move] = ACTIONS(509), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [372] = { + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2791), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1648), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1574), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(249), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(372), [sym_block_comment] = STATE(372), - [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_LBRACK] = ACTIONS(1320), - [anon_sym_LBRACE] = ACTIONS(1320), - [anon_sym_RBRACE] = ACTIONS(1320), - [anon_sym_PLUS] = ACTIONS(1322), - [anon_sym_STAR] = ACTIONS(1322), - [anon_sym_QMARK] = 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_DASH] = ACTIONS(1322), - [anon_sym_SLASH] = ACTIONS(1322), - [anon_sym_PERCENT] = ACTIONS(1322), - [anon_sym_CARET] = ACTIONS(1322), - [anon_sym_BANG] = ACTIONS(1322), - [anon_sym_AMP] = ACTIONS(1322), - [anon_sym_PIPE] = ACTIONS(1322), - [anon_sym_AMP_AMP] = ACTIONS(1320), - [anon_sym_PIPE_PIPE] = ACTIONS(1320), - [anon_sym_LT_LT] = ACTIONS(1322), - [anon_sym_GT_GT] = ACTIONS(1322), - [anon_sym_PLUS_EQ] = ACTIONS(1320), - [anon_sym_DASH_EQ] = ACTIONS(1320), - [anon_sym_STAR_EQ] = ACTIONS(1320), - [anon_sym_SLASH_EQ] = ACTIONS(1320), - [anon_sym_PERCENT_EQ] = ACTIONS(1320), - [anon_sym_CARET_EQ] = ACTIONS(1320), - [anon_sym_AMP_EQ] = ACTIONS(1320), - [anon_sym_PIPE_EQ] = ACTIONS(1320), - [anon_sym_LT_LT_EQ] = ACTIONS(1320), - [anon_sym_GT_GT_EQ] = ACTIONS(1320), - [anon_sym_EQ] = ACTIONS(1322), - [anon_sym_EQ_EQ] = ACTIONS(1320), - [anon_sym_BANG_EQ] = ACTIONS(1320), - [anon_sym_GT] = ACTIONS(1322), - [anon_sym_LT] = ACTIONS(1322), - [anon_sym_GT_EQ] = ACTIONS(1320), - [anon_sym_LT_EQ] = ACTIONS(1320), - [anon_sym_DOT] = ACTIONS(1322), - [anon_sym_DOT_DOT] = ACTIONS(1322), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1320), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1320), - [anon_sym_COLON_COLON] = ACTIONS(1320), - [anon_sym_POUND] = ACTIONS(1320), - [anon_sym_SQUOTE] = ACTIONS(1322), - [anon_sym_as] = 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_extern] = ACTIONS(1322), - [anon_sym_yield] = ACTIONS(1322), - [anon_sym_move] = ACTIONS(1322), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1322), - [sym_super] = ACTIONS(1322), - [sym_crate] = ACTIONS(1322), - [sym_metavariable] = ACTIONS(1320), - [sym__raw_string_literal_start] = ACTIONS(1320), - [sym_float_literal] = ACTIONS(1320), + [sym_identifier] = ACTIONS(471), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_u8] = ACTIONS(473), + [anon_sym_i8] = ACTIONS(473), + [anon_sym_u16] = ACTIONS(473), + [anon_sym_i16] = ACTIONS(473), + [anon_sym_u32] = ACTIONS(473), + [anon_sym_i32] = ACTIONS(473), + [anon_sym_u64] = ACTIONS(473), + [anon_sym_i64] = ACTIONS(473), + [anon_sym_u128] = ACTIONS(473), + [anon_sym_i128] = ACTIONS(473), + [anon_sym_isize] = ACTIONS(473), + [anon_sym_usize] = ACTIONS(473), + [anon_sym_f32] = ACTIONS(473), + [anon_sym_f64] = ACTIONS(473), + [anon_sym_bool] = ACTIONS(473), + [anon_sym_str] = ACTIONS(473), + [anon_sym_char] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(998), + [anon_sym_BANG] = ACTIONS(998), + [anon_sym_AMP] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1074), + [anon_sym_COLON_COLON] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(499), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_default] = ACTIONS(481), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(503), + [anon_sym_static] = ACTIONS(505), + [anon_sym_union] = ACTIONS(481), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(507), + [anon_sym_move] = ACTIONS(509), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [373] = { - [sym_attribute_item] = STATE(417), - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_self_parameter] = STATE(2798), - [sym_variadic_parameter] = STATE(2798), - [sym_parameter] = STATE(2798), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2610), - [sym_bracketed_type] = STATE(3520), - [sym_lifetime] = STATE(2985), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3198), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(2480), - [sym_scoped_identifier] = STATE(2216), - [sym_scoped_type_identifier] = STATE(2114), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(3268), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1881), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1419), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(373), [sym_block_comment] = STATE(373), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1326), - [anon_sym_RPAREN] = ACTIONS(1328), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1332), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1334), - [anon_sym_DOT_DOT] = ACTIONS(1272), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1274), - [anon_sym_COMMA] = ACTIONS(1336), - [anon_sym_COLON_COLON] = ACTIONS(1338), - [anon_sym_POUND] = ACTIONS(1280), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1340), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1342), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(1304), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1344), - [sym_super] = ACTIONS(1346), - [sym_crate] = ACTIONS(1346), - [sym_metavariable] = ACTIONS(1348), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(365), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [374] = { + [sym_bracketed_type] = STATE(3593), + [sym_generic_function] = STATE(1742), + [sym_generic_type_with_turbofish] = STATE(2901), + [sym__expression_except_range] = STATE(1655), + [sym__expression] = STATE(1891), + [sym_macro_invocation] = STATE(1752), + [sym_scoped_identifier] = STATE(1584), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1746), + [sym_unary_expression] = STATE(1742), + [sym_try_expression] = STATE(1742), + [sym_reference_expression] = STATE(1742), + [sym_binary_expression] = STATE(1742), + [sym_assignment_expression] = STATE(1742), + [sym_compound_assignment_expr] = STATE(1742), + [sym_type_cast_expression] = STATE(1742), + [sym_return_expression] = STATE(1742), + [sym_yield_expression] = STATE(1742), + [sym_call_expression] = STATE(1742), + [sym_array_expression] = STATE(1742), + [sym_parenthesized_expression] = STATE(1742), + [sym_tuple_expression] = STATE(1742), + [sym_unit_expression] = STATE(1742), + [sym_struct_expression] = STATE(1742), + [sym_if_expression] = STATE(1742), + [sym_match_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_loop_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_const_block] = STATE(1742), + [sym_closure_expression] = STATE(1742), + [sym_closure_parameters] = STATE(244), + [sym_label] = STATE(3682), + [sym_break_expression] = STATE(1742), + [sym_continue_expression] = STATE(1742), + [sym_index_expression] = STATE(1742), + [sym_await_expression] = STATE(1742), + [sym_field_expression] = STATE(1652), + [sym_unsafe_block] = STATE(1742), + [sym_async_block] = STATE(1742), + [sym_try_block] = STATE(1742), + [sym_block] = STATE(1742), + [sym__literal] = STATE(1742), + [sym_string_literal] = STATE(1723), + [sym_raw_string_literal] = STATE(1723), + [sym_boolean_literal] = STATE(1723), [sym_line_comment] = STATE(374), [sym_block_comment] = STATE(374), - [ts_builtin_sym_end] = ACTIONS(991), - [sym_identifier] = ACTIONS(989), - [anon_sym_SEMI] = ACTIONS(991), - [anon_sym_macro_rules_BANG] = ACTIONS(991), - [anon_sym_LPAREN] = ACTIONS(991), - [anon_sym_LBRACK] = ACTIONS(991), - [anon_sym_LBRACE] = ACTIONS(991), - [anon_sym_RBRACE] = ACTIONS(991), - [anon_sym_PLUS] = ACTIONS(989), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_QMARK] = ACTIONS(991), - [anon_sym_u8] = ACTIONS(989), - [anon_sym_i8] = ACTIONS(989), - [anon_sym_u16] = ACTIONS(989), - [anon_sym_i16] = ACTIONS(989), - [anon_sym_u32] = ACTIONS(989), - [anon_sym_i32] = ACTIONS(989), - [anon_sym_u64] = ACTIONS(989), - [anon_sym_i64] = ACTIONS(989), - [anon_sym_u128] = ACTIONS(989), - [anon_sym_i128] = ACTIONS(989), - [anon_sym_isize] = ACTIONS(989), - [anon_sym_usize] = ACTIONS(989), - [anon_sym_f32] = ACTIONS(989), - [anon_sym_f64] = ACTIONS(989), - [anon_sym_bool] = ACTIONS(989), - [anon_sym_str] = ACTIONS(989), - [anon_sym_char] = ACTIONS(989), - [anon_sym_DASH] = ACTIONS(989), - [anon_sym_SLASH] = ACTIONS(989), - [anon_sym_PERCENT] = ACTIONS(989), - [anon_sym_CARET] = ACTIONS(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(989), - [anon_sym_PIPE] = ACTIONS(989), - [anon_sym_AMP_AMP] = ACTIONS(991), - [anon_sym_PIPE_PIPE] = ACTIONS(991), - [anon_sym_LT_LT] = ACTIONS(989), - [anon_sym_GT_GT] = ACTIONS(989), - [anon_sym_PLUS_EQ] = ACTIONS(991), - [anon_sym_DASH_EQ] = ACTIONS(991), - [anon_sym_STAR_EQ] = ACTIONS(991), - [anon_sym_SLASH_EQ] = ACTIONS(991), - [anon_sym_PERCENT_EQ] = ACTIONS(991), - [anon_sym_CARET_EQ] = ACTIONS(991), - [anon_sym_AMP_EQ] = ACTIONS(991), - [anon_sym_PIPE_EQ] = ACTIONS(991), - [anon_sym_LT_LT_EQ] = ACTIONS(991), - [anon_sym_GT_GT_EQ] = ACTIONS(991), - [anon_sym_EQ] = ACTIONS(989), - [anon_sym_EQ_EQ] = ACTIONS(991), - [anon_sym_BANG_EQ] = ACTIONS(991), - [anon_sym_GT] = ACTIONS(989), - [anon_sym_LT] = ACTIONS(989), - [anon_sym_GT_EQ] = ACTIONS(991), - [anon_sym_LT_EQ] = ACTIONS(991), - [anon_sym_DOT] = ACTIONS(989), - [anon_sym_DOT_DOT] = ACTIONS(989), - [anon_sym_DOT_DOT_DOT] = ACTIONS(991), - [anon_sym_DOT_DOT_EQ] = ACTIONS(991), - [anon_sym_COLON_COLON] = ACTIONS(991), - [anon_sym_POUND] = ACTIONS(991), - [anon_sym_SQUOTE] = ACTIONS(989), - [anon_sym_as] = ACTIONS(989), - [anon_sym_async] = ACTIONS(989), - [anon_sym_break] = ACTIONS(989), - [anon_sym_const] = ACTIONS(989), - [anon_sym_continue] = ACTIONS(989), - [anon_sym_default] = ACTIONS(989), - [anon_sym_enum] = ACTIONS(989), - [anon_sym_fn] = ACTIONS(989), - [anon_sym_for] = ACTIONS(989), - [anon_sym_if] = ACTIONS(989), - [anon_sym_impl] = ACTIONS(989), - [anon_sym_let] = ACTIONS(989), - [anon_sym_loop] = ACTIONS(989), - [anon_sym_match] = ACTIONS(989), - [anon_sym_mod] = ACTIONS(989), - [anon_sym_pub] = ACTIONS(989), - [anon_sym_return] = ACTIONS(989), - [anon_sym_static] = ACTIONS(989), - [anon_sym_struct] = ACTIONS(989), - [anon_sym_trait] = ACTIONS(989), - [anon_sym_type] = ACTIONS(989), - [anon_sym_union] = ACTIONS(989), - [anon_sym_unsafe] = ACTIONS(989), - [anon_sym_use] = ACTIONS(989), - [anon_sym_while] = ACTIONS(989), - [anon_sym_extern] = ACTIONS(989), - [anon_sym_yield] = ACTIONS(989), - [anon_sym_move] = ACTIONS(989), - [anon_sym_try] = ACTIONS(989), - [sym_integer_literal] = ACTIONS(991), - [aux_sym_string_literal_token1] = ACTIONS(991), - [sym_char_literal] = ACTIONS(991), - [anon_sym_true] = ACTIONS(989), - [anon_sym_false] = ACTIONS(989), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(989), - [sym_super] = ACTIONS(989), - [sym_crate] = ACTIONS(989), - [sym_metavariable] = ACTIONS(991), - [sym__raw_string_literal_start] = ACTIONS(991), - [sym_float_literal] = ACTIONS(991), + [sym_identifier] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(461), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LBRACE] = ACTIONS(405), + [anon_sym_STAR] = ACTIONS(1020), + [anon_sym_u8] = ACTIONS(409), + [anon_sym_i8] = ACTIONS(409), + [anon_sym_u16] = ACTIONS(409), + [anon_sym_i16] = ACTIONS(409), + [anon_sym_u32] = ACTIONS(409), + [anon_sym_i32] = ACTIONS(409), + [anon_sym_u64] = ACTIONS(409), + [anon_sym_i64] = ACTIONS(409), + [anon_sym_u128] = ACTIONS(409), + [anon_sym_i128] = ACTIONS(409), + [anon_sym_isize] = ACTIONS(409), + [anon_sym_usize] = ACTIONS(409), + [anon_sym_f32] = ACTIONS(409), + [anon_sym_f64] = ACTIONS(409), + [anon_sym_bool] = ACTIONS(409), + [anon_sym_str] = ACTIONS(409), + [anon_sym_char] = ACTIONS(409), + [anon_sym_DASH] = ACTIONS(1020), + [anon_sym_BANG] = ACTIONS(1020), + [anon_sym_AMP] = ACTIONS(1022), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1024), + [anon_sym_COLON_COLON] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(415), + [anon_sym_break] = ACTIONS(417), + [anon_sym_const] = ACTIONS(419), + [anon_sym_continue] = ACTIONS(421), + [anon_sym_default] = ACTIONS(423), + [anon_sym_for] = ACTIONS(425), + [anon_sym_if] = ACTIONS(427), + [anon_sym_loop] = ACTIONS(429), + [anon_sym_match] = ACTIONS(431), + [anon_sym_return] = ACTIONS(433), + [anon_sym_static] = ACTIONS(435), + [anon_sym_union] = ACTIONS(423), + [anon_sym_unsafe] = ACTIONS(437), + [anon_sym_while] = ACTIONS(439), + [anon_sym_yield] = ACTIONS(441), + [anon_sym_move] = ACTIONS(443), + [anon_sym_try] = ACTIONS(445), + [sym_integer_literal] = ACTIONS(447), + [aux_sym_string_literal_token1] = ACTIONS(449), + [sym_char_literal] = ACTIONS(447), + [anon_sym_true] = ACTIONS(451), + [anon_sym_false] = ACTIONS(451), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(453), + [sym_super] = ACTIONS(455), + [sym_crate] = ACTIONS(455), + [sym_metavariable] = ACTIONS(457), + [sym__raw_string_literal_start] = ACTIONS(459), + [sym_float_literal] = ACTIONS(447), }, [375] = { + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1683), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1419), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(375), [sym_block_comment] = STATE(375), - [ts_builtin_sym_end] = ACTIONS(987), - [sym_identifier] = ACTIONS(985), - [anon_sym_SEMI] = ACTIONS(987), - [anon_sym_macro_rules_BANG] = ACTIONS(987), - [anon_sym_LPAREN] = ACTIONS(987), - [anon_sym_LBRACK] = ACTIONS(987), - [anon_sym_LBRACE] = ACTIONS(987), - [anon_sym_RBRACE] = ACTIONS(987), - [anon_sym_PLUS] = ACTIONS(985), - [anon_sym_STAR] = ACTIONS(985), - [anon_sym_QMARK] = ACTIONS(987), - [anon_sym_u8] = ACTIONS(985), - [anon_sym_i8] = ACTIONS(985), - [anon_sym_u16] = ACTIONS(985), - [anon_sym_i16] = ACTIONS(985), - [anon_sym_u32] = ACTIONS(985), - [anon_sym_i32] = ACTIONS(985), - [anon_sym_u64] = ACTIONS(985), - [anon_sym_i64] = ACTIONS(985), - [anon_sym_u128] = ACTIONS(985), - [anon_sym_i128] = ACTIONS(985), - [anon_sym_isize] = ACTIONS(985), - [anon_sym_usize] = ACTIONS(985), - [anon_sym_f32] = ACTIONS(985), - [anon_sym_f64] = ACTIONS(985), - [anon_sym_bool] = ACTIONS(985), - [anon_sym_str] = ACTIONS(985), - [anon_sym_char] = ACTIONS(985), - [anon_sym_DASH] = ACTIONS(985), - [anon_sym_SLASH] = ACTIONS(985), - [anon_sym_PERCENT] = ACTIONS(985), - [anon_sym_CARET] = ACTIONS(985), - [anon_sym_BANG] = ACTIONS(985), - [anon_sym_AMP] = ACTIONS(985), - [anon_sym_PIPE] = ACTIONS(985), - [anon_sym_AMP_AMP] = ACTIONS(987), - [anon_sym_PIPE_PIPE] = ACTIONS(987), - [anon_sym_LT_LT] = ACTIONS(985), - [anon_sym_GT_GT] = ACTIONS(985), - [anon_sym_PLUS_EQ] = ACTIONS(987), - [anon_sym_DASH_EQ] = ACTIONS(987), - [anon_sym_STAR_EQ] = ACTIONS(987), - [anon_sym_SLASH_EQ] = ACTIONS(987), - [anon_sym_PERCENT_EQ] = ACTIONS(987), - [anon_sym_CARET_EQ] = ACTIONS(987), - [anon_sym_AMP_EQ] = ACTIONS(987), - [anon_sym_PIPE_EQ] = ACTIONS(987), - [anon_sym_LT_LT_EQ] = ACTIONS(987), - [anon_sym_GT_GT_EQ] = ACTIONS(987), - [anon_sym_EQ] = ACTIONS(985), - [anon_sym_EQ_EQ] = ACTIONS(987), - [anon_sym_BANG_EQ] = ACTIONS(987), - [anon_sym_GT] = ACTIONS(985), - [anon_sym_LT] = ACTIONS(985), - [anon_sym_GT_EQ] = ACTIONS(987), - [anon_sym_LT_EQ] = ACTIONS(987), - [anon_sym_DOT] = ACTIONS(985), - [anon_sym_DOT_DOT] = ACTIONS(985), - [anon_sym_DOT_DOT_DOT] = ACTIONS(987), - [anon_sym_DOT_DOT_EQ] = ACTIONS(987), - [anon_sym_COLON_COLON] = ACTIONS(987), - [anon_sym_POUND] = ACTIONS(987), - [anon_sym_SQUOTE] = ACTIONS(985), - [anon_sym_as] = ACTIONS(985), - [anon_sym_async] = ACTIONS(985), - [anon_sym_break] = ACTIONS(985), - [anon_sym_const] = ACTIONS(985), - [anon_sym_continue] = ACTIONS(985), - [anon_sym_default] = ACTIONS(985), - [anon_sym_enum] = ACTIONS(985), - [anon_sym_fn] = ACTIONS(985), - [anon_sym_for] = ACTIONS(985), - [anon_sym_if] = ACTIONS(985), - [anon_sym_impl] = ACTIONS(985), - [anon_sym_let] = ACTIONS(985), - [anon_sym_loop] = ACTIONS(985), - [anon_sym_match] = ACTIONS(985), - [anon_sym_mod] = ACTIONS(985), - [anon_sym_pub] = ACTIONS(985), - [anon_sym_return] = ACTIONS(985), - [anon_sym_static] = ACTIONS(985), - [anon_sym_struct] = ACTIONS(985), - [anon_sym_trait] = ACTIONS(985), - [anon_sym_type] = ACTIONS(985), - [anon_sym_union] = ACTIONS(985), - [anon_sym_unsafe] = ACTIONS(985), - [anon_sym_use] = ACTIONS(985), - [anon_sym_while] = ACTIONS(985), - [anon_sym_extern] = ACTIONS(985), - [anon_sym_yield] = ACTIONS(985), - [anon_sym_move] = ACTIONS(985), - [anon_sym_try] = ACTIONS(985), - [sym_integer_literal] = ACTIONS(987), - [aux_sym_string_literal_token1] = ACTIONS(987), - [sym_char_literal] = ACTIONS(987), - [anon_sym_true] = ACTIONS(985), - [anon_sym_false] = ACTIONS(985), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(985), - [sym_super] = ACTIONS(985), - [sym_crate] = ACTIONS(985), - [sym_metavariable] = ACTIONS(987), - [sym__raw_string_literal_start] = ACTIONS(987), - [sym_float_literal] = ACTIONS(987), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(365), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [376] = { + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1765), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1419), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(376), [sym_block_comment] = STATE(376), - [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_LBRACK] = ACTIONS(1350), - [anon_sym_LBRACE] = ACTIONS(1350), - [anon_sym_RBRACE] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1352), - [anon_sym_STAR] = ACTIONS(1352), - [anon_sym_QMARK] = 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_DASH] = ACTIONS(1352), - [anon_sym_SLASH] = ACTIONS(1352), - [anon_sym_PERCENT] = ACTIONS(1352), - [anon_sym_CARET] = ACTIONS(1352), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_AMP] = ACTIONS(1352), - [anon_sym_PIPE] = ACTIONS(1352), - [anon_sym_AMP_AMP] = ACTIONS(1350), - [anon_sym_PIPE_PIPE] = ACTIONS(1350), - [anon_sym_LT_LT] = ACTIONS(1352), - [anon_sym_GT_GT] = ACTIONS(1352), - [anon_sym_PLUS_EQ] = ACTIONS(1350), - [anon_sym_DASH_EQ] = ACTIONS(1350), - [anon_sym_STAR_EQ] = ACTIONS(1350), - [anon_sym_SLASH_EQ] = ACTIONS(1350), - [anon_sym_PERCENT_EQ] = ACTIONS(1350), - [anon_sym_CARET_EQ] = ACTIONS(1350), - [anon_sym_AMP_EQ] = ACTIONS(1350), - [anon_sym_PIPE_EQ] = ACTIONS(1350), - [anon_sym_LT_LT_EQ] = ACTIONS(1350), - [anon_sym_GT_GT_EQ] = ACTIONS(1350), - [anon_sym_EQ] = ACTIONS(1352), - [anon_sym_EQ_EQ] = ACTIONS(1350), - [anon_sym_BANG_EQ] = ACTIONS(1350), - [anon_sym_GT] = ACTIONS(1352), - [anon_sym_LT] = ACTIONS(1352), - [anon_sym_GT_EQ] = ACTIONS(1350), - [anon_sym_LT_EQ] = ACTIONS(1350), - [anon_sym_DOT] = ACTIONS(1352), - [anon_sym_DOT_DOT] = ACTIONS(1352), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1350), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1350), - [anon_sym_COLON_COLON] = ACTIONS(1350), - [anon_sym_POUND] = ACTIONS(1350), - [anon_sym_SQUOTE] = ACTIONS(1352), - [anon_sym_as] = 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_extern] = ACTIONS(1352), - [anon_sym_yield] = ACTIONS(1352), - [anon_sym_move] = ACTIONS(1352), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1352), - [sym_super] = ACTIONS(1352), - [sym_crate] = ACTIONS(1352), - [sym_metavariable] = ACTIONS(1350), - [sym__raw_string_literal_start] = ACTIONS(1350), - [sym_float_literal] = ACTIONS(1350), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(365), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [377] = { + [sym_bracketed_type] = STATE(3593), + [sym_generic_function] = STATE(1742), + [sym_generic_type_with_turbofish] = STATE(2901), + [sym__expression_except_range] = STATE(1655), + [sym__expression] = STATE(1815), + [sym_macro_invocation] = STATE(1752), + [sym_scoped_identifier] = STATE(1584), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1746), + [sym_unary_expression] = STATE(1742), + [sym_try_expression] = STATE(1742), + [sym_reference_expression] = STATE(1742), + [sym_binary_expression] = STATE(1742), + [sym_assignment_expression] = STATE(1742), + [sym_compound_assignment_expr] = STATE(1742), + [sym_type_cast_expression] = STATE(1742), + [sym_return_expression] = STATE(1742), + [sym_yield_expression] = STATE(1742), + [sym_call_expression] = STATE(1742), + [sym_array_expression] = STATE(1742), + [sym_parenthesized_expression] = STATE(1742), + [sym_tuple_expression] = STATE(1742), + [sym_unit_expression] = STATE(1742), + [sym_struct_expression] = STATE(1742), + [sym_if_expression] = STATE(1742), + [sym_match_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_loop_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_const_block] = STATE(1742), + [sym_closure_expression] = STATE(1742), + [sym_closure_parameters] = STATE(244), + [sym_label] = STATE(3682), + [sym_break_expression] = STATE(1742), + [sym_continue_expression] = STATE(1742), + [sym_index_expression] = STATE(1742), + [sym_await_expression] = STATE(1742), + [sym_field_expression] = STATE(1652), + [sym_unsafe_block] = STATE(1742), + [sym_async_block] = STATE(1742), + [sym_try_block] = STATE(1742), + [sym_block] = STATE(1742), + [sym__literal] = STATE(1742), + [sym_string_literal] = STATE(1723), + [sym_raw_string_literal] = STATE(1723), + [sym_boolean_literal] = STATE(1723), [sym_line_comment] = STATE(377), [sym_block_comment] = STATE(377), - [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_LBRACK] = ACTIONS(1354), - [anon_sym_LBRACE] = ACTIONS(1354), - [anon_sym_RBRACE] = ACTIONS(1354), - [anon_sym_PLUS] = ACTIONS(1356), - [anon_sym_STAR] = ACTIONS(1356), - [anon_sym_QMARK] = 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_DASH] = ACTIONS(1356), - [anon_sym_SLASH] = ACTIONS(1356), - [anon_sym_PERCENT] = ACTIONS(1356), - [anon_sym_CARET] = ACTIONS(1356), - [anon_sym_BANG] = ACTIONS(1356), - [anon_sym_AMP] = ACTIONS(1356), - [anon_sym_PIPE] = ACTIONS(1356), - [anon_sym_AMP_AMP] = ACTIONS(1354), - [anon_sym_PIPE_PIPE] = ACTIONS(1354), - [anon_sym_LT_LT] = ACTIONS(1356), - [anon_sym_GT_GT] = ACTIONS(1356), - [anon_sym_PLUS_EQ] = ACTIONS(1354), - [anon_sym_DASH_EQ] = ACTIONS(1354), - [anon_sym_STAR_EQ] = ACTIONS(1354), - [anon_sym_SLASH_EQ] = ACTIONS(1354), - [anon_sym_PERCENT_EQ] = ACTIONS(1354), - [anon_sym_CARET_EQ] = ACTIONS(1354), - [anon_sym_AMP_EQ] = ACTIONS(1354), - [anon_sym_PIPE_EQ] = ACTIONS(1354), - [anon_sym_LT_LT_EQ] = ACTIONS(1354), - [anon_sym_GT_GT_EQ] = ACTIONS(1354), - [anon_sym_EQ] = ACTIONS(1356), - [anon_sym_EQ_EQ] = ACTIONS(1354), - [anon_sym_BANG_EQ] = ACTIONS(1354), - [anon_sym_GT] = ACTIONS(1356), - [anon_sym_LT] = ACTIONS(1356), - [anon_sym_GT_EQ] = ACTIONS(1354), - [anon_sym_LT_EQ] = ACTIONS(1354), - [anon_sym_DOT] = ACTIONS(1356), - [anon_sym_DOT_DOT] = ACTIONS(1356), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1354), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1354), - [anon_sym_COLON_COLON] = ACTIONS(1354), - [anon_sym_POUND] = ACTIONS(1354), - [anon_sym_SQUOTE] = ACTIONS(1356), - [anon_sym_as] = 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_extern] = ACTIONS(1356), - [anon_sym_yield] = ACTIONS(1356), - [anon_sym_move] = ACTIONS(1356), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1356), - [sym_super] = ACTIONS(1356), - [sym_crate] = ACTIONS(1356), - [sym_metavariable] = ACTIONS(1354), - [sym__raw_string_literal_start] = ACTIONS(1354), - [sym_float_literal] = ACTIONS(1354), + [sym_identifier] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(461), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LBRACE] = ACTIONS(405), + [anon_sym_STAR] = ACTIONS(1020), + [anon_sym_u8] = ACTIONS(409), + [anon_sym_i8] = ACTIONS(409), + [anon_sym_u16] = ACTIONS(409), + [anon_sym_i16] = ACTIONS(409), + [anon_sym_u32] = ACTIONS(409), + [anon_sym_i32] = ACTIONS(409), + [anon_sym_u64] = ACTIONS(409), + [anon_sym_i64] = ACTIONS(409), + [anon_sym_u128] = ACTIONS(409), + [anon_sym_i128] = ACTIONS(409), + [anon_sym_isize] = ACTIONS(409), + [anon_sym_usize] = ACTIONS(409), + [anon_sym_f32] = ACTIONS(409), + [anon_sym_f64] = ACTIONS(409), + [anon_sym_bool] = ACTIONS(409), + [anon_sym_str] = ACTIONS(409), + [anon_sym_char] = ACTIONS(409), + [anon_sym_DASH] = ACTIONS(1020), + [anon_sym_BANG] = ACTIONS(1020), + [anon_sym_AMP] = ACTIONS(1022), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1082), + [anon_sym_COLON_COLON] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(415), + [anon_sym_break] = ACTIONS(417), + [anon_sym_const] = ACTIONS(419), + [anon_sym_continue] = ACTIONS(421), + [anon_sym_default] = ACTIONS(423), + [anon_sym_for] = ACTIONS(425), + [anon_sym_if] = ACTIONS(427), + [anon_sym_loop] = ACTIONS(429), + [anon_sym_match] = ACTIONS(431), + [anon_sym_return] = ACTIONS(433), + [anon_sym_static] = ACTIONS(435), + [anon_sym_union] = ACTIONS(423), + [anon_sym_unsafe] = ACTIONS(437), + [anon_sym_while] = ACTIONS(439), + [anon_sym_yield] = ACTIONS(441), + [anon_sym_move] = ACTIONS(443), + [anon_sym_try] = ACTIONS(445), + [sym_integer_literal] = ACTIONS(447), + [aux_sym_string_literal_token1] = ACTIONS(449), + [sym_char_literal] = ACTIONS(447), + [anon_sym_true] = ACTIONS(451), + [anon_sym_false] = ACTIONS(451), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(453), + [sym_super] = ACTIONS(455), + [sym_crate] = ACTIONS(455), + [sym_metavariable] = ACTIONS(457), + [sym__raw_string_literal_start] = ACTIONS(459), + [sym_float_literal] = ACTIONS(447), }, [378] = { - [sym_attribute_item] = STATE(414), - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_self_parameter] = STATE(2981), - [sym_variadic_parameter] = STATE(2981), - [sym_parameter] = STATE(2981), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2705), - [sym_bracketed_type] = STATE(3527), - [sym_lifetime] = STATE(2985), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3273), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(2487), - [sym_scoped_identifier] = STATE(2113), - [sym_scoped_type_identifier] = STATE(2114), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2464), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1884), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1419), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(378), [sym_block_comment] = STATE(378), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1248), - [anon_sym_LPAREN] = ACTIONS(1250), - [anon_sym_RPAREN] = ACTIONS(1358), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = 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_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1266), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1270), - [anon_sym_DOT_DOT] = ACTIONS(1272), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1274), - [anon_sym_COMMA] = ACTIONS(1360), - [anon_sym_COLON_COLON] = ACTIONS(1278), - [anon_sym_POUND] = ACTIONS(1280), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1288), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1296), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(1304), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1312), - [sym_super] = ACTIONS(1314), - [sym_crate] = ACTIONS(1314), - [sym_metavariable] = ACTIONS(1316), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(365), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [379] = { + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2791), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1577), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1574), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(249), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(379), [sym_block_comment] = STATE(379), - [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_LBRACK] = ACTIONS(1362), - [anon_sym_LBRACE] = ACTIONS(1362), - [anon_sym_RBRACE] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1364), - [anon_sym_STAR] = ACTIONS(1364), - [anon_sym_QMARK] = 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_DASH] = ACTIONS(1364), - [anon_sym_SLASH] = ACTIONS(1364), - [anon_sym_PERCENT] = ACTIONS(1364), - [anon_sym_CARET] = ACTIONS(1364), - [anon_sym_BANG] = ACTIONS(1364), - [anon_sym_AMP] = ACTIONS(1364), - [anon_sym_PIPE] = ACTIONS(1364), - [anon_sym_AMP_AMP] = ACTIONS(1362), - [anon_sym_PIPE_PIPE] = ACTIONS(1362), - [anon_sym_LT_LT] = ACTIONS(1364), - [anon_sym_GT_GT] = ACTIONS(1364), - [anon_sym_PLUS_EQ] = ACTIONS(1362), - [anon_sym_DASH_EQ] = ACTIONS(1362), - [anon_sym_STAR_EQ] = ACTIONS(1362), - [anon_sym_SLASH_EQ] = ACTIONS(1362), - [anon_sym_PERCENT_EQ] = ACTIONS(1362), - [anon_sym_CARET_EQ] = ACTIONS(1362), - [anon_sym_AMP_EQ] = ACTIONS(1362), - [anon_sym_PIPE_EQ] = ACTIONS(1362), - [anon_sym_LT_LT_EQ] = ACTIONS(1362), - [anon_sym_GT_GT_EQ] = ACTIONS(1362), - [anon_sym_EQ] = ACTIONS(1364), - [anon_sym_EQ_EQ] = ACTIONS(1362), - [anon_sym_BANG_EQ] = ACTIONS(1362), - [anon_sym_GT] = ACTIONS(1364), - [anon_sym_LT] = ACTIONS(1364), - [anon_sym_GT_EQ] = ACTIONS(1362), - [anon_sym_LT_EQ] = ACTIONS(1362), - [anon_sym_DOT] = ACTIONS(1364), - [anon_sym_DOT_DOT] = ACTIONS(1364), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1362), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1362), - [anon_sym_COLON_COLON] = ACTIONS(1362), - [anon_sym_POUND] = ACTIONS(1362), - [anon_sym_SQUOTE] = ACTIONS(1364), - [anon_sym_as] = 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_extern] = ACTIONS(1364), - [anon_sym_yield] = ACTIONS(1364), - [anon_sym_move] = ACTIONS(1364), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1364), - [sym_super] = ACTIONS(1364), - [sym_crate] = ACTIONS(1364), - [sym_metavariable] = ACTIONS(1362), - [sym__raw_string_literal_start] = ACTIONS(1362), - [sym_float_literal] = ACTIONS(1362), + [sym_identifier] = ACTIONS(471), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_u8] = ACTIONS(473), + [anon_sym_i8] = ACTIONS(473), + [anon_sym_u16] = ACTIONS(473), + [anon_sym_i16] = ACTIONS(473), + [anon_sym_u32] = ACTIONS(473), + [anon_sym_i32] = ACTIONS(473), + [anon_sym_u64] = ACTIONS(473), + [anon_sym_i64] = ACTIONS(473), + [anon_sym_u128] = ACTIONS(473), + [anon_sym_i128] = ACTIONS(473), + [anon_sym_isize] = ACTIONS(473), + [anon_sym_usize] = ACTIONS(473), + [anon_sym_f32] = ACTIONS(473), + [anon_sym_f64] = ACTIONS(473), + [anon_sym_bool] = ACTIONS(473), + [anon_sym_str] = ACTIONS(473), + [anon_sym_char] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(998), + [anon_sym_BANG] = ACTIONS(998), + [anon_sym_AMP] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_COLON_COLON] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(499), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_default] = ACTIONS(481), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(503), + [anon_sym_static] = ACTIONS(505), + [anon_sym_union] = ACTIONS(481), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(507), + [anon_sym_move] = ACTIONS(509), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [380] = { + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1906), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1419), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(380), [sym_block_comment] = STATE(380), - [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_LBRACK] = ACTIONS(1366), - [anon_sym_LBRACE] = ACTIONS(1366), - [anon_sym_RBRACE] = ACTIONS(1366), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_QMARK] = 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_DASH] = ACTIONS(1368), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_PERCENT] = ACTIONS(1368), - [anon_sym_CARET] = ACTIONS(1368), - [anon_sym_BANG] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_PIPE] = ACTIONS(1368), - [anon_sym_AMP_AMP] = ACTIONS(1366), - [anon_sym_PIPE_PIPE] = ACTIONS(1366), - [anon_sym_LT_LT] = ACTIONS(1368), - [anon_sym_GT_GT] = ACTIONS(1368), - [anon_sym_PLUS_EQ] = ACTIONS(1366), - [anon_sym_DASH_EQ] = ACTIONS(1366), - [anon_sym_STAR_EQ] = ACTIONS(1366), - [anon_sym_SLASH_EQ] = ACTIONS(1366), - [anon_sym_PERCENT_EQ] = ACTIONS(1366), - [anon_sym_CARET_EQ] = ACTIONS(1366), - [anon_sym_AMP_EQ] = ACTIONS(1366), - [anon_sym_PIPE_EQ] = ACTIONS(1366), - [anon_sym_LT_LT_EQ] = ACTIONS(1366), - [anon_sym_GT_GT_EQ] = ACTIONS(1366), - [anon_sym_EQ] = ACTIONS(1368), - [anon_sym_EQ_EQ] = ACTIONS(1366), - [anon_sym_BANG_EQ] = ACTIONS(1366), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_LT] = ACTIONS(1368), - [anon_sym_GT_EQ] = ACTIONS(1366), - [anon_sym_LT_EQ] = ACTIONS(1366), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1366), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1366), - [anon_sym_COLON_COLON] = ACTIONS(1366), - [anon_sym_POUND] = ACTIONS(1366), - [anon_sym_SQUOTE] = ACTIONS(1368), - [anon_sym_as] = 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_extern] = ACTIONS(1368), - [anon_sym_yield] = ACTIONS(1368), - [anon_sym_move] = ACTIONS(1368), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1368), - [sym_super] = ACTIONS(1368), - [sym_crate] = ACTIONS(1368), - [sym_metavariable] = ACTIONS(1366), - [sym__raw_string_literal_start] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1366), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(365), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [381] = { [sym_line_comment] = STATE(381), [sym_block_comment] = STATE(381), - [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_LBRACK] = ACTIONS(1370), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_RBRACE] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1372), - [anon_sym_STAR] = ACTIONS(1372), - [anon_sym_QMARK] = 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_DASH] = ACTIONS(1372), - [anon_sym_SLASH] = ACTIONS(1372), - [anon_sym_PERCENT] = ACTIONS(1372), - [anon_sym_CARET] = ACTIONS(1372), - [anon_sym_BANG] = ACTIONS(1372), - [anon_sym_AMP] = ACTIONS(1372), - [anon_sym_PIPE] = ACTIONS(1372), - [anon_sym_AMP_AMP] = ACTIONS(1370), - [anon_sym_PIPE_PIPE] = ACTIONS(1370), - [anon_sym_LT_LT] = ACTIONS(1372), - [anon_sym_GT_GT] = ACTIONS(1372), - [anon_sym_PLUS_EQ] = ACTIONS(1370), - [anon_sym_DASH_EQ] = ACTIONS(1370), - [anon_sym_STAR_EQ] = ACTIONS(1370), - [anon_sym_SLASH_EQ] = ACTIONS(1370), - [anon_sym_PERCENT_EQ] = ACTIONS(1370), - [anon_sym_CARET_EQ] = ACTIONS(1370), - [anon_sym_AMP_EQ] = ACTIONS(1370), - [anon_sym_PIPE_EQ] = ACTIONS(1370), - [anon_sym_LT_LT_EQ] = ACTIONS(1370), - [anon_sym_GT_GT_EQ] = ACTIONS(1370), - [anon_sym_EQ] = ACTIONS(1372), - [anon_sym_EQ_EQ] = ACTIONS(1370), - [anon_sym_BANG_EQ] = ACTIONS(1370), - [anon_sym_GT] = ACTIONS(1372), - [anon_sym_LT] = ACTIONS(1372), - [anon_sym_GT_EQ] = ACTIONS(1370), - [anon_sym_LT_EQ] = ACTIONS(1370), - [anon_sym_DOT] = ACTIONS(1372), - [anon_sym_DOT_DOT] = ACTIONS(1372), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1370), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1370), - [anon_sym_COLON_COLON] = ACTIONS(1370), - [anon_sym_POUND] = ACTIONS(1370), - [anon_sym_SQUOTE] = ACTIONS(1372), - [anon_sym_as] = 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_extern] = ACTIONS(1372), - [anon_sym_yield] = ACTIONS(1372), - [anon_sym_move] = ACTIONS(1372), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1372), - [sym_super] = ACTIONS(1372), - [sym_crate] = ACTIONS(1372), - [sym_metavariable] = ACTIONS(1370), - [sym__raw_string_literal_start] = ACTIONS(1370), - [sym_float_literal] = ACTIONS(1370), + [ts_builtin_sym_end] = ACTIONS(1325), + [sym_identifier] = ACTIONS(1327), + [anon_sym_SEMI] = ACTIONS(1325), + [anon_sym_macro_rules_BANG] = ACTIONS(1325), + [anon_sym_LPAREN] = ACTIONS(1325), + [anon_sym_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(1325), + [anon_sym_RBRACE] = ACTIONS(1325), + [anon_sym_macro] = ACTIONS(1327), + [anon_sym_PLUS] = ACTIONS(1327), + [anon_sym_STAR] = ACTIONS(1327), + [anon_sym_QMARK] = ACTIONS(1325), + [anon_sym_u8] = ACTIONS(1327), + [anon_sym_i8] = ACTIONS(1327), + [anon_sym_u16] = ACTIONS(1327), + [anon_sym_i16] = ACTIONS(1327), + [anon_sym_u32] = ACTIONS(1327), + [anon_sym_i32] = ACTIONS(1327), + [anon_sym_u64] = ACTIONS(1327), + [anon_sym_i64] = ACTIONS(1327), + [anon_sym_u128] = ACTIONS(1327), + [anon_sym_i128] = ACTIONS(1327), + [anon_sym_isize] = ACTIONS(1327), + [anon_sym_usize] = ACTIONS(1327), + [anon_sym_f32] = ACTIONS(1327), + [anon_sym_f64] = ACTIONS(1327), + [anon_sym_bool] = ACTIONS(1327), + [anon_sym_str] = ACTIONS(1327), + [anon_sym_char] = ACTIONS(1327), + [anon_sym_DASH] = ACTIONS(1327), + [anon_sym_SLASH] = ACTIONS(1327), + [anon_sym_PERCENT] = ACTIONS(1327), + [anon_sym_CARET] = ACTIONS(1327), + [anon_sym_BANG] = ACTIONS(1327), + [anon_sym_AMP] = ACTIONS(1327), + [anon_sym_PIPE] = ACTIONS(1327), + [anon_sym_AMP_AMP] = ACTIONS(1325), + [anon_sym_PIPE_PIPE] = ACTIONS(1325), + [anon_sym_LT_LT] = ACTIONS(1327), + [anon_sym_GT_GT] = ACTIONS(1327), + [anon_sym_PLUS_EQ] = ACTIONS(1325), + [anon_sym_DASH_EQ] = ACTIONS(1325), + [anon_sym_STAR_EQ] = ACTIONS(1325), + [anon_sym_SLASH_EQ] = ACTIONS(1325), + [anon_sym_PERCENT_EQ] = ACTIONS(1325), + [anon_sym_CARET_EQ] = ACTIONS(1325), + [anon_sym_AMP_EQ] = ACTIONS(1325), + [anon_sym_PIPE_EQ] = ACTIONS(1325), + [anon_sym_LT_LT_EQ] = ACTIONS(1325), + [anon_sym_GT_GT_EQ] = ACTIONS(1325), + [anon_sym_EQ] = ACTIONS(1327), + [anon_sym_EQ_EQ] = ACTIONS(1325), + [anon_sym_BANG_EQ] = ACTIONS(1325), + [anon_sym_GT] = ACTIONS(1327), + [anon_sym_LT] = ACTIONS(1327), + [anon_sym_GT_EQ] = ACTIONS(1325), + [anon_sym_LT_EQ] = ACTIONS(1325), + [anon_sym_DOT] = ACTIONS(1327), + [anon_sym_DOT_DOT] = ACTIONS(1327), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1325), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1325), + [anon_sym_COLON_COLON] = ACTIONS(1325), + [anon_sym_POUND] = ACTIONS(1325), + [anon_sym_SQUOTE] = ACTIONS(1327), + [anon_sym_as] = ACTIONS(1327), + [anon_sym_async] = ACTIONS(1327), + [anon_sym_break] = ACTIONS(1327), + [anon_sym_const] = ACTIONS(1327), + [anon_sym_continue] = ACTIONS(1327), + [anon_sym_default] = ACTIONS(1327), + [anon_sym_enum] = ACTIONS(1327), + [anon_sym_fn] = ACTIONS(1327), + [anon_sym_for] = ACTIONS(1327), + [anon_sym_if] = ACTIONS(1327), + [anon_sym_impl] = ACTIONS(1327), + [anon_sym_let] = ACTIONS(1327), + [anon_sym_loop] = ACTIONS(1327), + [anon_sym_match] = ACTIONS(1327), + [anon_sym_mod] = ACTIONS(1327), + [anon_sym_pub] = ACTIONS(1327), + [anon_sym_return] = ACTIONS(1327), + [anon_sym_static] = ACTIONS(1327), + [anon_sym_struct] = ACTIONS(1327), + [anon_sym_trait] = ACTIONS(1327), + [anon_sym_type] = ACTIONS(1327), + [anon_sym_union] = ACTIONS(1327), + [anon_sym_unsafe] = ACTIONS(1327), + [anon_sym_use] = ACTIONS(1327), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_extern] = ACTIONS(1327), + [anon_sym_yield] = ACTIONS(1327), + [anon_sym_move] = ACTIONS(1327), + [anon_sym_try] = ACTIONS(1327), + [sym_integer_literal] = ACTIONS(1325), + [aux_sym_string_literal_token1] = ACTIONS(1325), + [sym_char_literal] = ACTIONS(1325), + [anon_sym_true] = ACTIONS(1327), + [anon_sym_false] = ACTIONS(1327), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1327), + [sym_super] = ACTIONS(1327), + [sym_crate] = ACTIONS(1327), + [sym_metavariable] = ACTIONS(1325), + [sym__raw_string_literal_start] = ACTIONS(1325), + [sym_float_literal] = ACTIONS(1325), }, [382] = { + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2791), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1835), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1574), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(241), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(382), [sym_block_comment] = STATE(382), - [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_LBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(1374), - [anon_sym_RBRACE] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1376), - [anon_sym_QMARK] = 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_DASH] = ACTIONS(1376), - [anon_sym_SLASH] = ACTIONS(1376), - [anon_sym_PERCENT] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_BANG] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1376), - [anon_sym_PIPE] = ACTIONS(1376), - [anon_sym_AMP_AMP] = ACTIONS(1374), - [anon_sym_PIPE_PIPE] = ACTIONS(1374), - [anon_sym_LT_LT] = ACTIONS(1376), - [anon_sym_GT_GT] = ACTIONS(1376), - [anon_sym_PLUS_EQ] = ACTIONS(1374), - [anon_sym_DASH_EQ] = ACTIONS(1374), - [anon_sym_STAR_EQ] = ACTIONS(1374), - [anon_sym_SLASH_EQ] = ACTIONS(1374), - [anon_sym_PERCENT_EQ] = ACTIONS(1374), - [anon_sym_CARET_EQ] = ACTIONS(1374), - [anon_sym_AMP_EQ] = ACTIONS(1374), - [anon_sym_PIPE_EQ] = ACTIONS(1374), - [anon_sym_LT_LT_EQ] = ACTIONS(1374), - [anon_sym_GT_GT_EQ] = ACTIONS(1374), - [anon_sym_EQ] = ACTIONS(1376), - [anon_sym_EQ_EQ] = ACTIONS(1374), - [anon_sym_BANG_EQ] = ACTIONS(1374), - [anon_sym_GT] = ACTIONS(1376), - [anon_sym_LT] = ACTIONS(1376), - [anon_sym_GT_EQ] = ACTIONS(1374), - [anon_sym_LT_EQ] = ACTIONS(1374), - [anon_sym_DOT] = ACTIONS(1376), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1374), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1374), - [anon_sym_COLON_COLON] = ACTIONS(1374), - [anon_sym_POUND] = ACTIONS(1374), - [anon_sym_SQUOTE] = ACTIONS(1376), - [anon_sym_as] = ACTIONS(1376), - [anon_sym_async] = ACTIONS(1376), - [anon_sym_break] = ACTIONS(1376), - [anon_sym_const] = ACTIONS(1376), - [anon_sym_continue] = ACTIONS(1376), - [anon_sym_default] = ACTIONS(1376), - [anon_sym_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_extern] = ACTIONS(1376), - [anon_sym_yield] = ACTIONS(1376), - [anon_sym_move] = ACTIONS(1376), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1376), - [sym_super] = ACTIONS(1376), - [sym_crate] = ACTIONS(1376), - [sym_metavariable] = ACTIONS(1374), - [sym__raw_string_literal_start] = ACTIONS(1374), - [sym_float_literal] = ACTIONS(1374), + [sym_identifier] = ACTIONS(471), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1054), + [anon_sym_u8] = ACTIONS(473), + [anon_sym_i8] = ACTIONS(473), + [anon_sym_u16] = ACTIONS(473), + [anon_sym_i16] = ACTIONS(473), + [anon_sym_u32] = ACTIONS(473), + [anon_sym_i32] = ACTIONS(473), + [anon_sym_u64] = ACTIONS(473), + [anon_sym_i64] = ACTIONS(473), + [anon_sym_u128] = ACTIONS(473), + [anon_sym_i128] = ACTIONS(473), + [anon_sym_isize] = ACTIONS(473), + [anon_sym_usize] = ACTIONS(473), + [anon_sym_f32] = ACTIONS(473), + [anon_sym_f64] = ACTIONS(473), + [anon_sym_bool] = ACTIONS(473), + [anon_sym_str] = ACTIONS(473), + [anon_sym_char] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(1054), + [anon_sym_BANG] = ACTIONS(1054), + [anon_sym_AMP] = ACTIONS(1056), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1247), + [anon_sym_COLON_COLON] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(479), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(481), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(483), + [anon_sym_static] = ACTIONS(485), + [anon_sym_union] = ACTIONS(481), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(487), + [anon_sym_move] = ACTIONS(489), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [383] = { + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1897), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1419), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(383), [sym_block_comment] = STATE(383), - [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_LBRACK] = ACTIONS(1378), - [anon_sym_LBRACE] = ACTIONS(1378), - [anon_sym_RBRACE] = ACTIONS(1378), - [anon_sym_PLUS] = ACTIONS(1380), - [anon_sym_STAR] = ACTIONS(1380), - [anon_sym_QMARK] = 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_DASH] = ACTIONS(1380), - [anon_sym_SLASH] = ACTIONS(1380), - [anon_sym_PERCENT] = ACTIONS(1380), - [anon_sym_CARET] = ACTIONS(1380), - [anon_sym_BANG] = ACTIONS(1380), - [anon_sym_AMP] = ACTIONS(1380), - [anon_sym_PIPE] = ACTIONS(1380), - [anon_sym_AMP_AMP] = ACTIONS(1378), - [anon_sym_PIPE_PIPE] = ACTIONS(1378), - [anon_sym_LT_LT] = ACTIONS(1380), - [anon_sym_GT_GT] = ACTIONS(1380), - [anon_sym_PLUS_EQ] = ACTIONS(1378), - [anon_sym_DASH_EQ] = ACTIONS(1378), - [anon_sym_STAR_EQ] = ACTIONS(1378), - [anon_sym_SLASH_EQ] = ACTIONS(1378), - [anon_sym_PERCENT_EQ] = ACTIONS(1378), - [anon_sym_CARET_EQ] = ACTIONS(1378), - [anon_sym_AMP_EQ] = ACTIONS(1378), - [anon_sym_PIPE_EQ] = ACTIONS(1378), - [anon_sym_LT_LT_EQ] = ACTIONS(1378), - [anon_sym_GT_GT_EQ] = ACTIONS(1378), - [anon_sym_EQ] = ACTIONS(1380), - [anon_sym_EQ_EQ] = ACTIONS(1378), - [anon_sym_BANG_EQ] = ACTIONS(1378), - [anon_sym_GT] = ACTIONS(1380), - [anon_sym_LT] = ACTIONS(1380), - [anon_sym_GT_EQ] = ACTIONS(1378), - [anon_sym_LT_EQ] = ACTIONS(1378), - [anon_sym_DOT] = ACTIONS(1380), - [anon_sym_DOT_DOT] = ACTIONS(1380), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1378), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1378), - [anon_sym_COLON_COLON] = ACTIONS(1378), - [anon_sym_POUND] = ACTIONS(1378), - [anon_sym_SQUOTE] = ACTIONS(1380), - [anon_sym_as] = 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_extern] = ACTIONS(1380), - [anon_sym_yield] = ACTIONS(1380), - [anon_sym_move] = ACTIONS(1380), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1380), - [sym_super] = ACTIONS(1380), - [sym_crate] = ACTIONS(1380), - [sym_metavariable] = ACTIONS(1378), - [sym__raw_string_literal_start] = ACTIONS(1378), - [sym_float_literal] = ACTIONS(1378), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(365), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [384] = { [sym_line_comment] = STATE(384), [sym_block_comment] = STATE(384), - [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_LBRACK] = ACTIONS(1382), - [anon_sym_LBRACE] = ACTIONS(1382), - [anon_sym_RBRACE] = ACTIONS(1382), - [anon_sym_PLUS] = ACTIONS(1384), - [anon_sym_STAR] = ACTIONS(1384), - [anon_sym_QMARK] = 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_DASH] = ACTIONS(1384), - [anon_sym_SLASH] = ACTIONS(1384), - [anon_sym_PERCENT] = ACTIONS(1384), - [anon_sym_CARET] = ACTIONS(1384), - [anon_sym_BANG] = ACTIONS(1384), - [anon_sym_AMP] = ACTIONS(1384), - [anon_sym_PIPE] = ACTIONS(1384), - [anon_sym_AMP_AMP] = ACTIONS(1382), - [anon_sym_PIPE_PIPE] = ACTIONS(1382), - [anon_sym_LT_LT] = ACTIONS(1384), - [anon_sym_GT_GT] = ACTIONS(1384), - [anon_sym_PLUS_EQ] = ACTIONS(1382), - [anon_sym_DASH_EQ] = ACTIONS(1382), - [anon_sym_STAR_EQ] = ACTIONS(1382), - [anon_sym_SLASH_EQ] = ACTIONS(1382), - [anon_sym_PERCENT_EQ] = ACTIONS(1382), - [anon_sym_CARET_EQ] = ACTIONS(1382), - [anon_sym_AMP_EQ] = ACTIONS(1382), - [anon_sym_PIPE_EQ] = ACTIONS(1382), - [anon_sym_LT_LT_EQ] = ACTIONS(1382), - [anon_sym_GT_GT_EQ] = ACTIONS(1382), - [anon_sym_EQ] = ACTIONS(1384), - [anon_sym_EQ_EQ] = ACTIONS(1382), - [anon_sym_BANG_EQ] = ACTIONS(1382), - [anon_sym_GT] = ACTIONS(1384), - [anon_sym_LT] = ACTIONS(1384), - [anon_sym_GT_EQ] = ACTIONS(1382), - [anon_sym_LT_EQ] = ACTIONS(1382), - [anon_sym_DOT] = ACTIONS(1384), - [anon_sym_DOT_DOT] = ACTIONS(1384), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1382), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1382), - [anon_sym_COLON_COLON] = ACTIONS(1382), - [anon_sym_POUND] = ACTIONS(1382), - [anon_sym_SQUOTE] = ACTIONS(1384), - [anon_sym_as] = 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_extern] = ACTIONS(1384), - [anon_sym_yield] = ACTIONS(1384), - [anon_sym_move] = ACTIONS(1384), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1384), - [sym_super] = ACTIONS(1384), - [sym_crate] = ACTIONS(1384), - [sym_metavariable] = ACTIONS(1382), - [sym__raw_string_literal_start] = ACTIONS(1382), - [sym_float_literal] = ACTIONS(1382), + [ts_builtin_sym_end] = ACTIONS(1046), + [sym_identifier] = ACTIONS(1044), + [anon_sym_SEMI] = ACTIONS(1046), + [anon_sym_macro_rules_BANG] = ACTIONS(1046), + [anon_sym_LPAREN] = ACTIONS(1046), + [anon_sym_LBRACK] = ACTIONS(1046), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_RBRACE] = ACTIONS(1046), + [anon_sym_macro] = ACTIONS(1044), + [anon_sym_PLUS] = ACTIONS(1044), + [anon_sym_STAR] = ACTIONS(1044), + [anon_sym_QMARK] = ACTIONS(1046), + [anon_sym_u8] = ACTIONS(1044), + [anon_sym_i8] = ACTIONS(1044), + [anon_sym_u16] = ACTIONS(1044), + [anon_sym_i16] = ACTIONS(1044), + [anon_sym_u32] = ACTIONS(1044), + [anon_sym_i32] = ACTIONS(1044), + [anon_sym_u64] = ACTIONS(1044), + [anon_sym_i64] = ACTIONS(1044), + [anon_sym_u128] = ACTIONS(1044), + [anon_sym_i128] = ACTIONS(1044), + [anon_sym_isize] = ACTIONS(1044), + [anon_sym_usize] = ACTIONS(1044), + [anon_sym_f32] = ACTIONS(1044), + [anon_sym_f64] = ACTIONS(1044), + [anon_sym_bool] = ACTIONS(1044), + [anon_sym_str] = ACTIONS(1044), + [anon_sym_char] = ACTIONS(1044), + [anon_sym_DASH] = ACTIONS(1044), + [anon_sym_SLASH] = ACTIONS(1044), + [anon_sym_PERCENT] = ACTIONS(1044), + [anon_sym_CARET] = ACTIONS(1044), + [anon_sym_BANG] = ACTIONS(1044), + [anon_sym_AMP] = ACTIONS(1044), + [anon_sym_PIPE] = ACTIONS(1044), + [anon_sym_AMP_AMP] = ACTIONS(1046), + [anon_sym_PIPE_PIPE] = ACTIONS(1046), + [anon_sym_LT_LT] = ACTIONS(1044), + [anon_sym_GT_GT] = ACTIONS(1044), + [anon_sym_PLUS_EQ] = ACTIONS(1046), + [anon_sym_DASH_EQ] = ACTIONS(1046), + [anon_sym_STAR_EQ] = ACTIONS(1046), + [anon_sym_SLASH_EQ] = ACTIONS(1046), + [anon_sym_PERCENT_EQ] = ACTIONS(1046), + [anon_sym_CARET_EQ] = ACTIONS(1046), + [anon_sym_AMP_EQ] = ACTIONS(1046), + [anon_sym_PIPE_EQ] = ACTIONS(1046), + [anon_sym_LT_LT_EQ] = ACTIONS(1046), + [anon_sym_GT_GT_EQ] = ACTIONS(1046), + [anon_sym_EQ] = ACTIONS(1044), + [anon_sym_EQ_EQ] = ACTIONS(1046), + [anon_sym_BANG_EQ] = ACTIONS(1046), + [anon_sym_GT] = ACTIONS(1044), + [anon_sym_LT] = ACTIONS(1044), + [anon_sym_GT_EQ] = ACTIONS(1046), + [anon_sym_LT_EQ] = ACTIONS(1046), + [anon_sym_DOT] = ACTIONS(1044), + [anon_sym_DOT_DOT] = ACTIONS(1044), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1046), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1046), + [anon_sym_COLON_COLON] = ACTIONS(1046), + [anon_sym_POUND] = ACTIONS(1046), + [anon_sym_SQUOTE] = ACTIONS(1044), + [anon_sym_as] = ACTIONS(1044), + [anon_sym_async] = ACTIONS(1044), + [anon_sym_break] = ACTIONS(1044), + [anon_sym_const] = ACTIONS(1044), + [anon_sym_continue] = ACTIONS(1044), + [anon_sym_default] = ACTIONS(1044), + [anon_sym_enum] = ACTIONS(1044), + [anon_sym_fn] = ACTIONS(1044), + [anon_sym_for] = ACTIONS(1044), + [anon_sym_if] = ACTIONS(1044), + [anon_sym_impl] = ACTIONS(1044), + [anon_sym_let] = ACTIONS(1044), + [anon_sym_loop] = ACTIONS(1044), + [anon_sym_match] = ACTIONS(1044), + [anon_sym_mod] = ACTIONS(1044), + [anon_sym_pub] = ACTIONS(1044), + [anon_sym_return] = ACTIONS(1044), + [anon_sym_static] = ACTIONS(1044), + [anon_sym_struct] = ACTIONS(1044), + [anon_sym_trait] = ACTIONS(1044), + [anon_sym_type] = ACTIONS(1044), + [anon_sym_union] = ACTIONS(1044), + [anon_sym_unsafe] = ACTIONS(1044), + [anon_sym_use] = ACTIONS(1044), + [anon_sym_while] = ACTIONS(1044), + [anon_sym_extern] = ACTIONS(1044), + [anon_sym_yield] = ACTIONS(1044), + [anon_sym_move] = ACTIONS(1044), + [anon_sym_try] = ACTIONS(1044), + [sym_integer_literal] = ACTIONS(1046), + [aux_sym_string_literal_token1] = ACTIONS(1046), + [sym_char_literal] = ACTIONS(1046), + [anon_sym_true] = ACTIONS(1044), + [anon_sym_false] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1044), + [sym_super] = ACTIONS(1044), + [sym_crate] = ACTIONS(1044), + [sym_metavariable] = ACTIONS(1046), + [sym__raw_string_literal_start] = ACTIONS(1046), + [sym_float_literal] = ACTIONS(1046), }, [385] = { + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1729), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1419), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(385), [sym_block_comment] = STATE(385), - [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_LBRACK] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(1386), - [anon_sym_RBRACE] = ACTIONS(1386), - [anon_sym_PLUS] = ACTIONS(1388), - [anon_sym_STAR] = ACTIONS(1388), - [anon_sym_QMARK] = 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_DASH] = ACTIONS(1388), - [anon_sym_SLASH] = ACTIONS(1388), - [anon_sym_PERCENT] = ACTIONS(1388), - [anon_sym_CARET] = ACTIONS(1388), - [anon_sym_BANG] = ACTIONS(1388), - [anon_sym_AMP] = ACTIONS(1388), - [anon_sym_PIPE] = ACTIONS(1388), - [anon_sym_AMP_AMP] = ACTIONS(1386), - [anon_sym_PIPE_PIPE] = ACTIONS(1386), - [anon_sym_LT_LT] = ACTIONS(1388), - [anon_sym_GT_GT] = ACTIONS(1388), - [anon_sym_PLUS_EQ] = ACTIONS(1386), - [anon_sym_DASH_EQ] = ACTIONS(1386), - [anon_sym_STAR_EQ] = ACTIONS(1386), - [anon_sym_SLASH_EQ] = ACTIONS(1386), - [anon_sym_PERCENT_EQ] = ACTIONS(1386), - [anon_sym_CARET_EQ] = ACTIONS(1386), - [anon_sym_AMP_EQ] = ACTIONS(1386), - [anon_sym_PIPE_EQ] = ACTIONS(1386), - [anon_sym_LT_LT_EQ] = ACTIONS(1386), - [anon_sym_GT_GT_EQ] = ACTIONS(1386), - [anon_sym_EQ] = ACTIONS(1388), - [anon_sym_EQ_EQ] = ACTIONS(1386), - [anon_sym_BANG_EQ] = ACTIONS(1386), - [anon_sym_GT] = ACTIONS(1388), - [anon_sym_LT] = ACTIONS(1388), - [anon_sym_GT_EQ] = ACTIONS(1386), - [anon_sym_LT_EQ] = ACTIONS(1386), - [anon_sym_DOT] = ACTIONS(1388), - [anon_sym_DOT_DOT] = ACTIONS(1388), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1386), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1386), - [anon_sym_COLON_COLON] = ACTIONS(1386), - [anon_sym_POUND] = ACTIONS(1386), - [anon_sym_SQUOTE] = ACTIONS(1388), - [anon_sym_as] = 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_extern] = ACTIONS(1388), - [anon_sym_yield] = ACTIONS(1388), - [anon_sym_move] = ACTIONS(1388), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1388), - [sym_super] = ACTIONS(1388), - [sym_crate] = ACTIONS(1388), - [sym_metavariable] = ACTIONS(1386), - [sym__raw_string_literal_start] = ACTIONS(1386), - [sym_float_literal] = ACTIONS(1386), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(365), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [386] = { + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1888), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1419), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(386), [sym_block_comment] = STATE(386), - [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_LBRACK] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1390), - [anon_sym_RBRACE] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1392), - [anon_sym_STAR] = ACTIONS(1392), - [anon_sym_QMARK] = 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_DASH] = ACTIONS(1392), - [anon_sym_SLASH] = ACTIONS(1392), - [anon_sym_PERCENT] = ACTIONS(1392), - [anon_sym_CARET] = ACTIONS(1392), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_PIPE] = ACTIONS(1392), - [anon_sym_AMP_AMP] = ACTIONS(1390), - [anon_sym_PIPE_PIPE] = ACTIONS(1390), - [anon_sym_LT_LT] = ACTIONS(1392), - [anon_sym_GT_GT] = ACTIONS(1392), - [anon_sym_PLUS_EQ] = ACTIONS(1390), - [anon_sym_DASH_EQ] = ACTIONS(1390), - [anon_sym_STAR_EQ] = ACTIONS(1390), - [anon_sym_SLASH_EQ] = ACTIONS(1390), - [anon_sym_PERCENT_EQ] = ACTIONS(1390), - [anon_sym_CARET_EQ] = ACTIONS(1390), - [anon_sym_AMP_EQ] = ACTIONS(1390), - [anon_sym_PIPE_EQ] = ACTIONS(1390), - [anon_sym_LT_LT_EQ] = ACTIONS(1390), - [anon_sym_GT_GT_EQ] = ACTIONS(1390), - [anon_sym_EQ] = ACTIONS(1392), - [anon_sym_EQ_EQ] = ACTIONS(1390), - [anon_sym_BANG_EQ] = ACTIONS(1390), - [anon_sym_GT] = ACTIONS(1392), - [anon_sym_LT] = ACTIONS(1392), - [anon_sym_GT_EQ] = ACTIONS(1390), - [anon_sym_LT_EQ] = ACTIONS(1390), - [anon_sym_DOT] = ACTIONS(1392), - [anon_sym_DOT_DOT] = ACTIONS(1392), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1390), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1390), - [anon_sym_COLON_COLON] = ACTIONS(1390), - [anon_sym_POUND] = ACTIONS(1390), - [anon_sym_SQUOTE] = ACTIONS(1392), - [anon_sym_as] = 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_extern] = ACTIONS(1392), - [anon_sym_yield] = ACTIONS(1392), - [anon_sym_move] = ACTIONS(1392), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1392), - [sym_super] = ACTIONS(1392), - [sym_crate] = ACTIONS(1392), - [sym_metavariable] = ACTIONS(1390), - [sym__raw_string_literal_start] = ACTIONS(1390), - [sym_float_literal] = ACTIONS(1390), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(365), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [387] = { [sym_line_comment] = STATE(387), [sym_block_comment] = STATE(387), - [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_LBRACK] = ACTIONS(1394), - [anon_sym_LBRACE] = ACTIONS(1394), - [anon_sym_RBRACE] = ACTIONS(1394), - [anon_sym_PLUS] = ACTIONS(1396), - [anon_sym_STAR] = ACTIONS(1396), - [anon_sym_QMARK] = 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_DASH] = ACTIONS(1396), - [anon_sym_SLASH] = ACTIONS(1396), - [anon_sym_PERCENT] = ACTIONS(1396), - [anon_sym_CARET] = ACTIONS(1396), - [anon_sym_BANG] = ACTIONS(1396), - [anon_sym_AMP] = ACTIONS(1396), - [anon_sym_PIPE] = ACTIONS(1396), - [anon_sym_AMP_AMP] = ACTIONS(1394), - [anon_sym_PIPE_PIPE] = ACTIONS(1394), - [anon_sym_LT_LT] = ACTIONS(1396), - [anon_sym_GT_GT] = ACTIONS(1396), - [anon_sym_PLUS_EQ] = ACTIONS(1394), - [anon_sym_DASH_EQ] = ACTIONS(1394), - [anon_sym_STAR_EQ] = ACTIONS(1394), - [anon_sym_SLASH_EQ] = ACTIONS(1394), - [anon_sym_PERCENT_EQ] = ACTIONS(1394), - [anon_sym_CARET_EQ] = ACTIONS(1394), - [anon_sym_AMP_EQ] = ACTIONS(1394), - [anon_sym_PIPE_EQ] = ACTIONS(1394), - [anon_sym_LT_LT_EQ] = ACTIONS(1394), - [anon_sym_GT_GT_EQ] = ACTIONS(1394), - [anon_sym_EQ] = ACTIONS(1396), - [anon_sym_EQ_EQ] = ACTIONS(1394), - [anon_sym_BANG_EQ] = ACTIONS(1394), - [anon_sym_GT] = ACTIONS(1396), - [anon_sym_LT] = ACTIONS(1396), - [anon_sym_GT_EQ] = ACTIONS(1394), - [anon_sym_LT_EQ] = ACTIONS(1394), - [anon_sym_DOT] = ACTIONS(1396), - [anon_sym_DOT_DOT] = ACTIONS(1396), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1394), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1394), - [anon_sym_COLON_COLON] = ACTIONS(1394), - [anon_sym_POUND] = ACTIONS(1394), - [anon_sym_SQUOTE] = ACTIONS(1396), - [anon_sym_as] = 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_extern] = ACTIONS(1396), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_move] = ACTIONS(1396), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1396), - [sym_super] = ACTIONS(1396), - [sym_crate] = ACTIONS(1396), - [sym_metavariable] = ACTIONS(1394), - [sym__raw_string_literal_start] = ACTIONS(1394), - [sym_float_literal] = ACTIONS(1394), + [ts_builtin_sym_end] = ACTIONS(1329), + [sym_identifier] = ACTIONS(1331), + [anon_sym_SEMI] = ACTIONS(1329), + [anon_sym_macro_rules_BANG] = ACTIONS(1329), + [anon_sym_LPAREN] = ACTIONS(1329), + [anon_sym_LBRACK] = ACTIONS(1329), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_RBRACE] = ACTIONS(1329), + [anon_sym_macro] = ACTIONS(1331), + [anon_sym_PLUS] = ACTIONS(1331), + [anon_sym_STAR] = ACTIONS(1331), + [anon_sym_QMARK] = ACTIONS(1329), + [anon_sym_u8] = ACTIONS(1331), + [anon_sym_i8] = ACTIONS(1331), + [anon_sym_u16] = ACTIONS(1331), + [anon_sym_i16] = ACTIONS(1331), + [anon_sym_u32] = ACTIONS(1331), + [anon_sym_i32] = ACTIONS(1331), + [anon_sym_u64] = ACTIONS(1331), + [anon_sym_i64] = ACTIONS(1331), + [anon_sym_u128] = ACTIONS(1331), + [anon_sym_i128] = ACTIONS(1331), + [anon_sym_isize] = ACTIONS(1331), + [anon_sym_usize] = ACTIONS(1331), + [anon_sym_f32] = ACTIONS(1331), + [anon_sym_f64] = ACTIONS(1331), + [anon_sym_bool] = ACTIONS(1331), + [anon_sym_str] = ACTIONS(1331), + [anon_sym_char] = ACTIONS(1331), + [anon_sym_DASH] = ACTIONS(1331), + [anon_sym_SLASH] = ACTIONS(1331), + [anon_sym_PERCENT] = ACTIONS(1331), + [anon_sym_CARET] = ACTIONS(1331), + [anon_sym_BANG] = ACTIONS(1331), + [anon_sym_AMP] = ACTIONS(1331), + [anon_sym_PIPE] = ACTIONS(1331), + [anon_sym_AMP_AMP] = ACTIONS(1329), + [anon_sym_PIPE_PIPE] = ACTIONS(1329), + [anon_sym_LT_LT] = ACTIONS(1331), + [anon_sym_GT_GT] = ACTIONS(1331), + [anon_sym_PLUS_EQ] = ACTIONS(1329), + [anon_sym_DASH_EQ] = ACTIONS(1329), + [anon_sym_STAR_EQ] = ACTIONS(1329), + [anon_sym_SLASH_EQ] = ACTIONS(1329), + [anon_sym_PERCENT_EQ] = ACTIONS(1329), + [anon_sym_CARET_EQ] = ACTIONS(1329), + [anon_sym_AMP_EQ] = ACTIONS(1329), + [anon_sym_PIPE_EQ] = ACTIONS(1329), + [anon_sym_LT_LT_EQ] = ACTIONS(1329), + [anon_sym_GT_GT_EQ] = ACTIONS(1329), + [anon_sym_EQ] = ACTIONS(1331), + [anon_sym_EQ_EQ] = ACTIONS(1329), + [anon_sym_BANG_EQ] = ACTIONS(1329), + [anon_sym_GT] = ACTIONS(1331), + [anon_sym_LT] = ACTIONS(1331), + [anon_sym_GT_EQ] = ACTIONS(1329), + [anon_sym_LT_EQ] = ACTIONS(1329), + [anon_sym_DOT] = ACTIONS(1331), + [anon_sym_DOT_DOT] = ACTIONS(1331), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1329), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1329), + [anon_sym_COLON_COLON] = ACTIONS(1329), + [anon_sym_POUND] = ACTIONS(1329), + [anon_sym_SQUOTE] = ACTIONS(1331), + [anon_sym_as] = ACTIONS(1331), + [anon_sym_async] = ACTIONS(1331), + [anon_sym_break] = ACTIONS(1331), + [anon_sym_const] = ACTIONS(1331), + [anon_sym_continue] = ACTIONS(1331), + [anon_sym_default] = ACTIONS(1331), + [anon_sym_enum] = ACTIONS(1331), + [anon_sym_fn] = ACTIONS(1331), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_if] = ACTIONS(1331), + [anon_sym_impl] = ACTIONS(1331), + [anon_sym_let] = ACTIONS(1331), + [anon_sym_loop] = ACTIONS(1331), + [anon_sym_match] = ACTIONS(1331), + [anon_sym_mod] = ACTIONS(1331), + [anon_sym_pub] = ACTIONS(1331), + [anon_sym_return] = ACTIONS(1331), + [anon_sym_static] = ACTIONS(1331), + [anon_sym_struct] = ACTIONS(1331), + [anon_sym_trait] = ACTIONS(1331), + [anon_sym_type] = ACTIONS(1331), + [anon_sym_union] = ACTIONS(1331), + [anon_sym_unsafe] = ACTIONS(1331), + [anon_sym_use] = ACTIONS(1331), + [anon_sym_while] = ACTIONS(1331), + [anon_sym_extern] = ACTIONS(1331), + [anon_sym_yield] = ACTIONS(1331), + [anon_sym_move] = ACTIONS(1331), + [anon_sym_try] = ACTIONS(1331), + [sym_integer_literal] = ACTIONS(1329), + [aux_sym_string_literal_token1] = ACTIONS(1329), + [sym_char_literal] = ACTIONS(1329), + [anon_sym_true] = ACTIONS(1331), + [anon_sym_false] = ACTIONS(1331), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1331), + [sym_super] = ACTIONS(1331), + [sym_crate] = ACTIONS(1331), + [sym_metavariable] = ACTIONS(1329), + [sym__raw_string_literal_start] = ACTIONS(1329), + [sym_float_literal] = ACTIONS(1329), }, [388] = { + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1886), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1419), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(388), [sym_block_comment] = STATE(388), - [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_LBRACK] = ACTIONS(1398), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_RBRACE] = ACTIONS(1398), - [anon_sym_PLUS] = ACTIONS(1400), - [anon_sym_STAR] = ACTIONS(1400), - [anon_sym_QMARK] = 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_DASH] = ACTIONS(1400), - [anon_sym_SLASH] = ACTIONS(1400), - [anon_sym_PERCENT] = ACTIONS(1400), - [anon_sym_CARET] = ACTIONS(1400), - [anon_sym_BANG] = ACTIONS(1400), - [anon_sym_AMP] = ACTIONS(1400), - [anon_sym_PIPE] = ACTIONS(1400), - [anon_sym_AMP_AMP] = ACTIONS(1398), - [anon_sym_PIPE_PIPE] = ACTIONS(1398), - [anon_sym_LT_LT] = ACTIONS(1400), - [anon_sym_GT_GT] = ACTIONS(1400), - [anon_sym_PLUS_EQ] = ACTIONS(1398), - [anon_sym_DASH_EQ] = ACTIONS(1398), - [anon_sym_STAR_EQ] = ACTIONS(1398), - [anon_sym_SLASH_EQ] = ACTIONS(1398), - [anon_sym_PERCENT_EQ] = ACTIONS(1398), - [anon_sym_CARET_EQ] = ACTIONS(1398), - [anon_sym_AMP_EQ] = ACTIONS(1398), - [anon_sym_PIPE_EQ] = ACTIONS(1398), - [anon_sym_LT_LT_EQ] = ACTIONS(1398), - [anon_sym_GT_GT_EQ] = ACTIONS(1398), - [anon_sym_EQ] = ACTIONS(1400), - [anon_sym_EQ_EQ] = ACTIONS(1398), - [anon_sym_BANG_EQ] = ACTIONS(1398), - [anon_sym_GT] = ACTIONS(1400), - [anon_sym_LT] = ACTIONS(1400), - [anon_sym_GT_EQ] = ACTIONS(1398), - [anon_sym_LT_EQ] = ACTIONS(1398), - [anon_sym_DOT] = ACTIONS(1400), - [anon_sym_DOT_DOT] = ACTIONS(1400), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1398), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1398), - [anon_sym_COLON_COLON] = ACTIONS(1398), - [anon_sym_POUND] = ACTIONS(1398), - [anon_sym_SQUOTE] = ACTIONS(1400), - [anon_sym_as] = 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_extern] = ACTIONS(1400), - [anon_sym_yield] = ACTIONS(1400), - [anon_sym_move] = ACTIONS(1400), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1400), - [sym_super] = ACTIONS(1400), - [sym_crate] = ACTIONS(1400), - [sym_metavariable] = ACTIONS(1398), - [sym__raw_string_literal_start] = ACTIONS(1398), - [sym_float_literal] = ACTIONS(1398), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(365), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [389] = { + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1403), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1419), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(389), [sym_block_comment] = STATE(389), - [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_LBRACK] = ACTIONS(1402), - [anon_sym_LBRACE] = ACTIONS(1402), - [anon_sym_RBRACE] = ACTIONS(1402), - [anon_sym_PLUS] = ACTIONS(1404), - [anon_sym_STAR] = ACTIONS(1404), - [anon_sym_QMARK] = 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_DASH] = ACTIONS(1404), - [anon_sym_SLASH] = ACTIONS(1404), - [anon_sym_PERCENT] = ACTIONS(1404), - [anon_sym_CARET] = ACTIONS(1404), - [anon_sym_BANG] = ACTIONS(1404), - [anon_sym_AMP] = ACTIONS(1404), - [anon_sym_PIPE] = ACTIONS(1404), - [anon_sym_AMP_AMP] = ACTIONS(1402), - [anon_sym_PIPE_PIPE] = ACTIONS(1402), - [anon_sym_LT_LT] = ACTIONS(1404), - [anon_sym_GT_GT] = ACTIONS(1404), - [anon_sym_PLUS_EQ] = ACTIONS(1402), - [anon_sym_DASH_EQ] = ACTIONS(1402), - [anon_sym_STAR_EQ] = ACTIONS(1402), - [anon_sym_SLASH_EQ] = ACTIONS(1402), - [anon_sym_PERCENT_EQ] = ACTIONS(1402), - [anon_sym_CARET_EQ] = ACTIONS(1402), - [anon_sym_AMP_EQ] = ACTIONS(1402), - [anon_sym_PIPE_EQ] = ACTIONS(1402), - [anon_sym_LT_LT_EQ] = ACTIONS(1402), - [anon_sym_GT_GT_EQ] = ACTIONS(1402), - [anon_sym_EQ] = ACTIONS(1404), - [anon_sym_EQ_EQ] = ACTIONS(1402), - [anon_sym_BANG_EQ] = ACTIONS(1402), - [anon_sym_GT] = ACTIONS(1404), - [anon_sym_LT] = ACTIONS(1404), - [anon_sym_GT_EQ] = ACTIONS(1402), - [anon_sym_LT_EQ] = ACTIONS(1402), - [anon_sym_DOT] = ACTIONS(1404), - [anon_sym_DOT_DOT] = ACTIONS(1404), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1402), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1402), - [anon_sym_COLON_COLON] = ACTIONS(1402), - [anon_sym_POUND] = ACTIONS(1402), - [anon_sym_SQUOTE] = ACTIONS(1404), - [anon_sym_as] = 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_extern] = ACTIONS(1404), - [anon_sym_yield] = ACTIONS(1404), - [anon_sym_move] = ACTIONS(1404), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1404), - [sym_super] = ACTIONS(1404), - [sym_crate] = ACTIONS(1404), - [sym_metavariable] = ACTIONS(1402), - [sym__raw_string_literal_start] = ACTIONS(1402), - [sym_float_literal] = ACTIONS(1402), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1066), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(365), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [390] = { - [sym_attribute_item] = STATE(416), - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_self_parameter] = STATE(2751), - [sym_variadic_parameter] = STATE(2751), - [sym_parameter] = STATE(2751), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2526), - [sym_bracketed_type] = STATE(3520), - [sym_lifetime] = STATE(2985), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3198), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(2480), - [sym_scoped_identifier] = STATE(2216), - [sym_scoped_type_identifier] = STATE(2114), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(3268), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), [sym_line_comment] = STATE(390), [sym_block_comment] = STATE(390), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1326), - [anon_sym_RPAREN] = ACTIONS(1406), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1332), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1408), - [anon_sym_DOT_DOT] = ACTIONS(1272), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1274), - [anon_sym_COMMA] = ACTIONS(1410), - [anon_sym_COLON_COLON] = ACTIONS(1338), - [anon_sym_POUND] = ACTIONS(1280), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1340), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1342), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(1304), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1344), - [sym_super] = ACTIONS(1346), - [sym_crate] = ACTIONS(1346), - [sym_metavariable] = ACTIONS(1348), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [ts_builtin_sym_end] = ACTIONS(1333), + [sym_identifier] = ACTIONS(1335), + [anon_sym_SEMI] = ACTIONS(1333), + [anon_sym_macro_rules_BANG] = ACTIONS(1333), + [anon_sym_LPAREN] = ACTIONS(1333), + [anon_sym_LBRACK] = ACTIONS(1333), + [anon_sym_LBRACE] = ACTIONS(1333), + [anon_sym_RBRACE] = ACTIONS(1333), + [anon_sym_macro] = ACTIONS(1335), + [anon_sym_PLUS] = ACTIONS(1335), + [anon_sym_STAR] = ACTIONS(1335), + [anon_sym_QMARK] = ACTIONS(1333), + [anon_sym_u8] = ACTIONS(1335), + [anon_sym_i8] = ACTIONS(1335), + [anon_sym_u16] = ACTIONS(1335), + [anon_sym_i16] = ACTIONS(1335), + [anon_sym_u32] = ACTIONS(1335), + [anon_sym_i32] = ACTIONS(1335), + [anon_sym_u64] = ACTIONS(1335), + [anon_sym_i64] = ACTIONS(1335), + [anon_sym_u128] = ACTIONS(1335), + [anon_sym_i128] = ACTIONS(1335), + [anon_sym_isize] = ACTIONS(1335), + [anon_sym_usize] = ACTIONS(1335), + [anon_sym_f32] = ACTIONS(1335), + [anon_sym_f64] = ACTIONS(1335), + [anon_sym_bool] = ACTIONS(1335), + [anon_sym_str] = ACTIONS(1335), + [anon_sym_char] = ACTIONS(1335), + [anon_sym_DASH] = ACTIONS(1335), + [anon_sym_SLASH] = ACTIONS(1335), + [anon_sym_PERCENT] = ACTIONS(1335), + [anon_sym_CARET] = ACTIONS(1335), + [anon_sym_BANG] = ACTIONS(1335), + [anon_sym_AMP] = ACTIONS(1335), + [anon_sym_PIPE] = ACTIONS(1335), + [anon_sym_AMP_AMP] = ACTIONS(1333), + [anon_sym_PIPE_PIPE] = ACTIONS(1333), + [anon_sym_LT_LT] = ACTIONS(1335), + [anon_sym_GT_GT] = ACTIONS(1335), + [anon_sym_PLUS_EQ] = ACTIONS(1333), + [anon_sym_DASH_EQ] = ACTIONS(1333), + [anon_sym_STAR_EQ] = ACTIONS(1333), + [anon_sym_SLASH_EQ] = ACTIONS(1333), + [anon_sym_PERCENT_EQ] = ACTIONS(1333), + [anon_sym_CARET_EQ] = ACTIONS(1333), + [anon_sym_AMP_EQ] = ACTIONS(1333), + [anon_sym_PIPE_EQ] = ACTIONS(1333), + [anon_sym_LT_LT_EQ] = ACTIONS(1333), + [anon_sym_GT_GT_EQ] = ACTIONS(1333), + [anon_sym_EQ] = ACTIONS(1335), + [anon_sym_EQ_EQ] = ACTIONS(1333), + [anon_sym_BANG_EQ] = ACTIONS(1333), + [anon_sym_GT] = ACTIONS(1335), + [anon_sym_LT] = ACTIONS(1335), + [anon_sym_GT_EQ] = ACTIONS(1333), + [anon_sym_LT_EQ] = ACTIONS(1333), + [anon_sym_DOT] = ACTIONS(1335), + [anon_sym_DOT_DOT] = ACTIONS(1335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1333), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1333), + [anon_sym_COLON_COLON] = ACTIONS(1333), + [anon_sym_POUND] = ACTIONS(1333), + [anon_sym_SQUOTE] = ACTIONS(1335), + [anon_sym_as] = ACTIONS(1335), + [anon_sym_async] = ACTIONS(1335), + [anon_sym_break] = ACTIONS(1335), + [anon_sym_const] = ACTIONS(1335), + [anon_sym_continue] = ACTIONS(1335), + [anon_sym_default] = ACTIONS(1335), + [anon_sym_enum] = ACTIONS(1335), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1335), + [anon_sym_if] = ACTIONS(1335), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_let] = ACTIONS(1335), + [anon_sym_loop] = ACTIONS(1335), + [anon_sym_match] = ACTIONS(1335), + [anon_sym_mod] = ACTIONS(1335), + [anon_sym_pub] = ACTIONS(1335), + [anon_sym_return] = ACTIONS(1335), + [anon_sym_static] = ACTIONS(1335), + [anon_sym_struct] = ACTIONS(1335), + [anon_sym_trait] = ACTIONS(1335), + [anon_sym_type] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1335), + [anon_sym_use] = ACTIONS(1335), + [anon_sym_while] = ACTIONS(1335), + [anon_sym_extern] = ACTIONS(1335), + [anon_sym_yield] = ACTIONS(1335), + [anon_sym_move] = ACTIONS(1335), + [anon_sym_try] = ACTIONS(1335), + [sym_integer_literal] = ACTIONS(1333), + [aux_sym_string_literal_token1] = ACTIONS(1333), + [sym_char_literal] = ACTIONS(1333), + [anon_sym_true] = ACTIONS(1335), + [anon_sym_false] = ACTIONS(1335), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1335), + [sym_super] = ACTIONS(1335), + [sym_crate] = ACTIONS(1335), + [sym_metavariable] = ACTIONS(1333), + [sym__raw_string_literal_start] = ACTIONS(1333), + [sym_float_literal] = ACTIONS(1333), }, [391] = { [sym_line_comment] = STATE(391), [sym_block_comment] = STATE(391), - [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_LBRACK] = ACTIONS(1412), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_RBRACE] = ACTIONS(1412), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_STAR] = ACTIONS(1414), - [anon_sym_QMARK] = ACTIONS(1418), - [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_DASH] = ACTIONS(1414), - [anon_sym_SLASH] = ACTIONS(1416), - [anon_sym_PERCENT] = ACTIONS(1416), - [anon_sym_CARET] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(1414), - [anon_sym_AMP] = ACTIONS(1414), - [anon_sym_PIPE] = ACTIONS(1414), - [anon_sym_AMP_AMP] = ACTIONS(1418), - [anon_sym_PIPE_PIPE] = ACTIONS(1418), - [anon_sym_LT_LT] = ACTIONS(1416), - [anon_sym_GT_GT] = ACTIONS(1416), - [anon_sym_PLUS_EQ] = ACTIONS(1418), - [anon_sym_DASH_EQ] = ACTIONS(1418), - [anon_sym_STAR_EQ] = ACTIONS(1418), - [anon_sym_SLASH_EQ] = ACTIONS(1418), - [anon_sym_PERCENT_EQ] = ACTIONS(1418), - [anon_sym_CARET_EQ] = ACTIONS(1418), - [anon_sym_AMP_EQ] = ACTIONS(1418), - [anon_sym_PIPE_EQ] = ACTIONS(1418), - [anon_sym_LT_LT_EQ] = ACTIONS(1418), - [anon_sym_GT_GT_EQ] = ACTIONS(1418), - [anon_sym_EQ] = ACTIONS(1416), - [anon_sym_EQ_EQ] = ACTIONS(1418), - [anon_sym_BANG_EQ] = ACTIONS(1418), - [anon_sym_GT] = ACTIONS(1416), - [anon_sym_LT] = ACTIONS(1414), - [anon_sym_GT_EQ] = ACTIONS(1418), - [anon_sym_LT_EQ] = ACTIONS(1418), - [anon_sym_DOT] = ACTIONS(1416), - [anon_sym_DOT_DOT] = ACTIONS(1414), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1418), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(1412), - [anon_sym_POUND] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [anon_sym_as] = ACTIONS(1416), - [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_extern] = ACTIONS(1414), - [anon_sym_yield] = ACTIONS(1414), - [anon_sym_move] = ACTIONS(1414), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1414), - [sym_super] = ACTIONS(1414), - [sym_crate] = ACTIONS(1414), - [sym_metavariable] = ACTIONS(1412), - [sym__raw_string_literal_start] = ACTIONS(1412), - [sym_float_literal] = ACTIONS(1412), + [ts_builtin_sym_end] = ACTIONS(1337), + [sym_identifier] = ACTIONS(1339), + [anon_sym_SEMI] = ACTIONS(1337), + [anon_sym_macro_rules_BANG] = ACTIONS(1337), + [anon_sym_LPAREN] = ACTIONS(1337), + [anon_sym_LBRACK] = ACTIONS(1337), + [anon_sym_LBRACE] = ACTIONS(1337), + [anon_sym_RBRACE] = ACTIONS(1337), + [anon_sym_macro] = ACTIONS(1339), + [anon_sym_PLUS] = ACTIONS(1339), + [anon_sym_STAR] = ACTIONS(1339), + [anon_sym_QMARK] = ACTIONS(1337), + [anon_sym_u8] = ACTIONS(1339), + [anon_sym_i8] = ACTIONS(1339), + [anon_sym_u16] = ACTIONS(1339), + [anon_sym_i16] = ACTIONS(1339), + [anon_sym_u32] = ACTIONS(1339), + [anon_sym_i32] = ACTIONS(1339), + [anon_sym_u64] = ACTIONS(1339), + [anon_sym_i64] = ACTIONS(1339), + [anon_sym_u128] = ACTIONS(1339), + [anon_sym_i128] = ACTIONS(1339), + [anon_sym_isize] = ACTIONS(1339), + [anon_sym_usize] = ACTIONS(1339), + [anon_sym_f32] = ACTIONS(1339), + [anon_sym_f64] = ACTIONS(1339), + [anon_sym_bool] = ACTIONS(1339), + [anon_sym_str] = ACTIONS(1339), + [anon_sym_char] = ACTIONS(1339), + [anon_sym_DASH] = ACTIONS(1339), + [anon_sym_SLASH] = ACTIONS(1339), + [anon_sym_PERCENT] = ACTIONS(1339), + [anon_sym_CARET] = ACTIONS(1339), + [anon_sym_BANG] = ACTIONS(1339), + [anon_sym_AMP] = ACTIONS(1339), + [anon_sym_PIPE] = ACTIONS(1339), + [anon_sym_AMP_AMP] = ACTIONS(1337), + [anon_sym_PIPE_PIPE] = ACTIONS(1337), + [anon_sym_LT_LT] = ACTIONS(1339), + [anon_sym_GT_GT] = ACTIONS(1339), + [anon_sym_PLUS_EQ] = ACTIONS(1337), + [anon_sym_DASH_EQ] = ACTIONS(1337), + [anon_sym_STAR_EQ] = ACTIONS(1337), + [anon_sym_SLASH_EQ] = ACTIONS(1337), + [anon_sym_PERCENT_EQ] = ACTIONS(1337), + [anon_sym_CARET_EQ] = ACTIONS(1337), + [anon_sym_AMP_EQ] = ACTIONS(1337), + [anon_sym_PIPE_EQ] = ACTIONS(1337), + [anon_sym_LT_LT_EQ] = ACTIONS(1337), + [anon_sym_GT_GT_EQ] = ACTIONS(1337), + [anon_sym_EQ] = ACTIONS(1339), + [anon_sym_EQ_EQ] = ACTIONS(1337), + [anon_sym_BANG_EQ] = ACTIONS(1337), + [anon_sym_GT] = ACTIONS(1339), + [anon_sym_LT] = ACTIONS(1339), + [anon_sym_GT_EQ] = ACTIONS(1337), + [anon_sym_LT_EQ] = ACTIONS(1337), + [anon_sym_DOT] = ACTIONS(1339), + [anon_sym_DOT_DOT] = ACTIONS(1339), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1337), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1337), + [anon_sym_COLON_COLON] = ACTIONS(1337), + [anon_sym_POUND] = ACTIONS(1337), + [anon_sym_SQUOTE] = ACTIONS(1339), + [anon_sym_as] = ACTIONS(1339), + [anon_sym_async] = ACTIONS(1339), + [anon_sym_break] = ACTIONS(1339), + [anon_sym_const] = ACTIONS(1339), + [anon_sym_continue] = ACTIONS(1339), + [anon_sym_default] = ACTIONS(1339), + [anon_sym_enum] = ACTIONS(1339), + [anon_sym_fn] = ACTIONS(1339), + [anon_sym_for] = ACTIONS(1339), + [anon_sym_if] = ACTIONS(1339), + [anon_sym_impl] = ACTIONS(1339), + [anon_sym_let] = ACTIONS(1339), + [anon_sym_loop] = ACTIONS(1339), + [anon_sym_match] = ACTIONS(1339), + [anon_sym_mod] = ACTIONS(1339), + [anon_sym_pub] = ACTIONS(1339), + [anon_sym_return] = ACTIONS(1339), + [anon_sym_static] = ACTIONS(1339), + [anon_sym_struct] = ACTIONS(1339), + [anon_sym_trait] = ACTIONS(1339), + [anon_sym_type] = ACTIONS(1339), + [anon_sym_union] = ACTIONS(1339), + [anon_sym_unsafe] = ACTIONS(1339), + [anon_sym_use] = ACTIONS(1339), + [anon_sym_while] = ACTIONS(1339), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_yield] = ACTIONS(1339), + [anon_sym_move] = ACTIONS(1339), + [anon_sym_try] = ACTIONS(1339), + [sym_integer_literal] = ACTIONS(1337), + [aux_sym_string_literal_token1] = ACTIONS(1337), + [sym_char_literal] = ACTIONS(1337), + [anon_sym_true] = ACTIONS(1339), + [anon_sym_false] = ACTIONS(1339), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1339), + [sym_super] = ACTIONS(1339), + [sym_crate] = ACTIONS(1339), + [sym_metavariable] = ACTIONS(1337), + [sym__raw_string_literal_start] = ACTIONS(1337), + [sym_float_literal] = ACTIONS(1337), }, [392] = { + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2791), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1601), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1574), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(249), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(392), [sym_block_comment] = STATE(392), - [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_LBRACK] = ACTIONS(1420), - [anon_sym_LBRACE] = ACTIONS(1420), - [anon_sym_RBRACE] = ACTIONS(1420), - [anon_sym_PLUS] = ACTIONS(1422), - [anon_sym_STAR] = ACTIONS(1422), - [anon_sym_QMARK] = 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_DASH] = ACTIONS(1422), - [anon_sym_SLASH] = ACTIONS(1422), - [anon_sym_PERCENT] = ACTIONS(1422), - [anon_sym_CARET] = ACTIONS(1422), - [anon_sym_BANG] = ACTIONS(1422), - [anon_sym_AMP] = ACTIONS(1422), - [anon_sym_PIPE] = ACTIONS(1422), - [anon_sym_AMP_AMP] = ACTIONS(1420), - [anon_sym_PIPE_PIPE] = ACTIONS(1420), - [anon_sym_LT_LT] = ACTIONS(1422), - [anon_sym_GT_GT] = ACTIONS(1422), - [anon_sym_PLUS_EQ] = ACTIONS(1420), - [anon_sym_DASH_EQ] = ACTIONS(1420), - [anon_sym_STAR_EQ] = ACTIONS(1420), - [anon_sym_SLASH_EQ] = ACTIONS(1420), - [anon_sym_PERCENT_EQ] = ACTIONS(1420), - [anon_sym_CARET_EQ] = ACTIONS(1420), - [anon_sym_AMP_EQ] = ACTIONS(1420), - [anon_sym_PIPE_EQ] = ACTIONS(1420), - [anon_sym_LT_LT_EQ] = ACTIONS(1420), - [anon_sym_GT_GT_EQ] = ACTIONS(1420), - [anon_sym_EQ] = ACTIONS(1422), - [anon_sym_EQ_EQ] = ACTIONS(1420), - [anon_sym_BANG_EQ] = ACTIONS(1420), - [anon_sym_GT] = ACTIONS(1422), - [anon_sym_LT] = ACTIONS(1422), - [anon_sym_GT_EQ] = ACTIONS(1420), - [anon_sym_LT_EQ] = ACTIONS(1420), - [anon_sym_DOT] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1422), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1420), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1420), - [anon_sym_COLON_COLON] = ACTIONS(1420), - [anon_sym_POUND] = ACTIONS(1420), - [anon_sym_SQUOTE] = ACTIONS(1422), - [anon_sym_as] = 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_extern] = ACTIONS(1422), - [anon_sym_yield] = ACTIONS(1422), - [anon_sym_move] = ACTIONS(1422), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1422), - [sym_super] = ACTIONS(1422), - [sym_crate] = ACTIONS(1422), - [sym_metavariable] = ACTIONS(1420), - [sym__raw_string_literal_start] = ACTIONS(1420), - [sym_float_literal] = ACTIONS(1420), + [sym_identifier] = ACTIONS(471), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_u8] = ACTIONS(473), + [anon_sym_i8] = ACTIONS(473), + [anon_sym_u16] = ACTIONS(473), + [anon_sym_i16] = ACTIONS(473), + [anon_sym_u32] = ACTIONS(473), + [anon_sym_i32] = ACTIONS(473), + [anon_sym_u64] = ACTIONS(473), + [anon_sym_i64] = ACTIONS(473), + [anon_sym_u128] = ACTIONS(473), + [anon_sym_i128] = ACTIONS(473), + [anon_sym_isize] = ACTIONS(473), + [anon_sym_usize] = ACTIONS(473), + [anon_sym_f32] = ACTIONS(473), + [anon_sym_f64] = ACTIONS(473), + [anon_sym_bool] = ACTIONS(473), + [anon_sym_str] = ACTIONS(473), + [anon_sym_char] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(998), + [anon_sym_BANG] = ACTIONS(998), + [anon_sym_AMP] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_COLON_COLON] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(499), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_default] = ACTIONS(481), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(503), + [anon_sym_static] = ACTIONS(505), + [anon_sym_union] = ACTIONS(481), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(507), + [anon_sym_move] = ACTIONS(509), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [393] = { + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1892), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1419), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(393), [sym_block_comment] = STATE(393), - [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_LBRACK] = ACTIONS(1424), - [anon_sym_LBRACE] = ACTIONS(1424), - [anon_sym_RBRACE] = ACTIONS(1424), - [anon_sym_PLUS] = ACTIONS(1426), - [anon_sym_STAR] = ACTIONS(1426), - [anon_sym_QMARK] = 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_DASH] = ACTIONS(1426), - [anon_sym_SLASH] = ACTIONS(1426), - [anon_sym_PERCENT] = ACTIONS(1426), - [anon_sym_CARET] = ACTIONS(1426), - [anon_sym_BANG] = ACTIONS(1426), - [anon_sym_AMP] = ACTIONS(1426), - [anon_sym_PIPE] = ACTIONS(1426), - [anon_sym_AMP_AMP] = ACTIONS(1424), - [anon_sym_PIPE_PIPE] = ACTIONS(1424), - [anon_sym_LT_LT] = ACTIONS(1426), - [anon_sym_GT_GT] = ACTIONS(1426), - [anon_sym_PLUS_EQ] = ACTIONS(1424), - [anon_sym_DASH_EQ] = ACTIONS(1424), - [anon_sym_STAR_EQ] = ACTIONS(1424), - [anon_sym_SLASH_EQ] = ACTIONS(1424), - [anon_sym_PERCENT_EQ] = ACTIONS(1424), - [anon_sym_CARET_EQ] = ACTIONS(1424), - [anon_sym_AMP_EQ] = ACTIONS(1424), - [anon_sym_PIPE_EQ] = ACTIONS(1424), - [anon_sym_LT_LT_EQ] = ACTIONS(1424), - [anon_sym_GT_GT_EQ] = ACTIONS(1424), - [anon_sym_EQ] = ACTIONS(1426), - [anon_sym_EQ_EQ] = ACTIONS(1424), - [anon_sym_BANG_EQ] = ACTIONS(1424), - [anon_sym_GT] = ACTIONS(1426), - [anon_sym_LT] = ACTIONS(1426), - [anon_sym_GT_EQ] = ACTIONS(1424), - [anon_sym_LT_EQ] = ACTIONS(1424), - [anon_sym_DOT] = ACTIONS(1426), - [anon_sym_DOT_DOT] = ACTIONS(1426), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1424), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1424), - [anon_sym_COLON_COLON] = ACTIONS(1424), - [anon_sym_POUND] = ACTIONS(1424), - [anon_sym_SQUOTE] = ACTIONS(1426), - [anon_sym_as] = 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_extern] = ACTIONS(1426), - [anon_sym_yield] = ACTIONS(1426), - [anon_sym_move] = ACTIONS(1426), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1426), - [sym_super] = ACTIONS(1426), - [sym_crate] = ACTIONS(1426), - [sym_metavariable] = ACTIONS(1424), - [sym__raw_string_literal_start] = ACTIONS(1424), - [sym_float_literal] = ACTIONS(1424), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(365), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [394] = { [sym_line_comment] = STATE(394), [sym_block_comment] = STATE(394), - [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_LBRACK] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1428), - [anon_sym_RBRACE] = ACTIONS(1428), - [anon_sym_PLUS] = ACTIONS(1430), - [anon_sym_STAR] = ACTIONS(1430), - [anon_sym_QMARK] = 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_DASH] = ACTIONS(1430), - [anon_sym_SLASH] = ACTIONS(1430), - [anon_sym_PERCENT] = ACTIONS(1430), - [anon_sym_CARET] = ACTIONS(1430), - [anon_sym_BANG] = ACTIONS(1430), - [anon_sym_AMP] = ACTIONS(1430), - [anon_sym_PIPE] = ACTIONS(1430), - [anon_sym_AMP_AMP] = ACTIONS(1428), - [anon_sym_PIPE_PIPE] = ACTIONS(1428), - [anon_sym_LT_LT] = ACTIONS(1430), - [anon_sym_GT_GT] = ACTIONS(1430), - [anon_sym_PLUS_EQ] = ACTIONS(1428), - [anon_sym_DASH_EQ] = ACTIONS(1428), - [anon_sym_STAR_EQ] = ACTIONS(1428), - [anon_sym_SLASH_EQ] = ACTIONS(1428), - [anon_sym_PERCENT_EQ] = ACTIONS(1428), - [anon_sym_CARET_EQ] = ACTIONS(1428), - [anon_sym_AMP_EQ] = ACTIONS(1428), - [anon_sym_PIPE_EQ] = ACTIONS(1428), - [anon_sym_LT_LT_EQ] = ACTIONS(1428), - [anon_sym_GT_GT_EQ] = ACTIONS(1428), - [anon_sym_EQ] = ACTIONS(1430), - [anon_sym_EQ_EQ] = ACTIONS(1428), - [anon_sym_BANG_EQ] = ACTIONS(1428), - [anon_sym_GT] = ACTIONS(1430), - [anon_sym_LT] = ACTIONS(1430), - [anon_sym_GT_EQ] = ACTIONS(1428), - [anon_sym_LT_EQ] = ACTIONS(1428), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_DOT_DOT] = ACTIONS(1430), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1428), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1428), - [anon_sym_COLON_COLON] = ACTIONS(1428), - [anon_sym_POUND] = ACTIONS(1428), - [anon_sym_SQUOTE] = ACTIONS(1430), - [anon_sym_as] = 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_extern] = ACTIONS(1430), - [anon_sym_yield] = ACTIONS(1430), - [anon_sym_move] = ACTIONS(1430), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1430), - [sym_super] = ACTIONS(1430), - [sym_crate] = ACTIONS(1430), - [sym_metavariable] = ACTIONS(1428), - [sym__raw_string_literal_start] = ACTIONS(1428), - [sym_float_literal] = ACTIONS(1428), + [ts_builtin_sym_end] = ACTIONS(1341), + [sym_identifier] = ACTIONS(1343), + [anon_sym_SEMI] = ACTIONS(1341), + [anon_sym_macro_rules_BANG] = ACTIONS(1341), + [anon_sym_LPAREN] = ACTIONS(1341), + [anon_sym_LBRACK] = ACTIONS(1341), + [anon_sym_LBRACE] = ACTIONS(1341), + [anon_sym_RBRACE] = ACTIONS(1341), + [anon_sym_macro] = ACTIONS(1343), + [anon_sym_PLUS] = ACTIONS(1343), + [anon_sym_STAR] = ACTIONS(1343), + [anon_sym_QMARK] = ACTIONS(1341), + [anon_sym_u8] = ACTIONS(1343), + [anon_sym_i8] = ACTIONS(1343), + [anon_sym_u16] = ACTIONS(1343), + [anon_sym_i16] = ACTIONS(1343), + [anon_sym_u32] = ACTIONS(1343), + [anon_sym_i32] = ACTIONS(1343), + [anon_sym_u64] = ACTIONS(1343), + [anon_sym_i64] = ACTIONS(1343), + [anon_sym_u128] = ACTIONS(1343), + [anon_sym_i128] = ACTIONS(1343), + [anon_sym_isize] = ACTIONS(1343), + [anon_sym_usize] = ACTIONS(1343), + [anon_sym_f32] = ACTIONS(1343), + [anon_sym_f64] = ACTIONS(1343), + [anon_sym_bool] = ACTIONS(1343), + [anon_sym_str] = ACTIONS(1343), + [anon_sym_char] = ACTIONS(1343), + [anon_sym_DASH] = ACTIONS(1343), + [anon_sym_SLASH] = ACTIONS(1343), + [anon_sym_PERCENT] = ACTIONS(1343), + [anon_sym_CARET] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(1343), + [anon_sym_AMP] = ACTIONS(1343), + [anon_sym_PIPE] = ACTIONS(1343), + [anon_sym_AMP_AMP] = ACTIONS(1341), + [anon_sym_PIPE_PIPE] = ACTIONS(1341), + [anon_sym_LT_LT] = ACTIONS(1343), + [anon_sym_GT_GT] = ACTIONS(1343), + [anon_sym_PLUS_EQ] = ACTIONS(1341), + [anon_sym_DASH_EQ] = ACTIONS(1341), + [anon_sym_STAR_EQ] = ACTIONS(1341), + [anon_sym_SLASH_EQ] = ACTIONS(1341), + [anon_sym_PERCENT_EQ] = ACTIONS(1341), + [anon_sym_CARET_EQ] = ACTIONS(1341), + [anon_sym_AMP_EQ] = ACTIONS(1341), + [anon_sym_PIPE_EQ] = ACTIONS(1341), + [anon_sym_LT_LT_EQ] = ACTIONS(1341), + [anon_sym_GT_GT_EQ] = ACTIONS(1341), + [anon_sym_EQ] = ACTIONS(1343), + [anon_sym_EQ_EQ] = ACTIONS(1341), + [anon_sym_BANG_EQ] = ACTIONS(1341), + [anon_sym_GT] = ACTIONS(1343), + [anon_sym_LT] = ACTIONS(1343), + [anon_sym_GT_EQ] = ACTIONS(1341), + [anon_sym_LT_EQ] = ACTIONS(1341), + [anon_sym_DOT] = ACTIONS(1343), + [anon_sym_DOT_DOT] = ACTIONS(1343), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1341), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1341), + [anon_sym_COLON_COLON] = ACTIONS(1341), + [anon_sym_POUND] = ACTIONS(1341), + [anon_sym_SQUOTE] = ACTIONS(1343), + [anon_sym_as] = ACTIONS(1343), + [anon_sym_async] = ACTIONS(1343), + [anon_sym_break] = ACTIONS(1343), + [anon_sym_const] = ACTIONS(1343), + [anon_sym_continue] = ACTIONS(1343), + [anon_sym_default] = ACTIONS(1343), + [anon_sym_enum] = ACTIONS(1343), + [anon_sym_fn] = ACTIONS(1343), + [anon_sym_for] = ACTIONS(1343), + [anon_sym_if] = ACTIONS(1343), + [anon_sym_impl] = ACTIONS(1343), + [anon_sym_let] = ACTIONS(1343), + [anon_sym_loop] = ACTIONS(1343), + [anon_sym_match] = ACTIONS(1343), + [anon_sym_mod] = ACTIONS(1343), + [anon_sym_pub] = ACTIONS(1343), + [anon_sym_return] = ACTIONS(1343), + [anon_sym_static] = ACTIONS(1343), + [anon_sym_struct] = ACTIONS(1343), + [anon_sym_trait] = ACTIONS(1343), + [anon_sym_type] = ACTIONS(1343), + [anon_sym_union] = ACTIONS(1343), + [anon_sym_unsafe] = ACTIONS(1343), + [anon_sym_use] = ACTIONS(1343), + [anon_sym_while] = ACTIONS(1343), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_yield] = ACTIONS(1343), + [anon_sym_move] = ACTIONS(1343), + [anon_sym_try] = ACTIONS(1343), + [sym_integer_literal] = ACTIONS(1341), + [aux_sym_string_literal_token1] = ACTIONS(1341), + [sym_char_literal] = ACTIONS(1341), + [anon_sym_true] = ACTIONS(1343), + [anon_sym_false] = ACTIONS(1343), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1343), + [sym_super] = ACTIONS(1343), + [sym_crate] = ACTIONS(1343), + [sym_metavariable] = ACTIONS(1341), + [sym__raw_string_literal_start] = ACTIONS(1341), + [sym_float_literal] = ACTIONS(1341), }, [395] = { [sym_line_comment] = STATE(395), [sym_block_comment] = STATE(395), - [ts_builtin_sym_end] = ACTIONS(1432), - [sym_identifier] = ACTIONS(1434), - [anon_sym_SEMI] = ACTIONS(1418), - [anon_sym_macro_rules_BANG] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1418), - [anon_sym_LBRACK] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_RBRACE] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_STAR] = ACTIONS(1416), - [anon_sym_QMARK] = ACTIONS(1418), - [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_DASH] = ACTIONS(1416), - [anon_sym_SLASH] = ACTIONS(1416), - [anon_sym_PERCENT] = ACTIONS(1416), - [anon_sym_CARET] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(1434), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_PIPE] = ACTIONS(1416), - [anon_sym_AMP_AMP] = ACTIONS(1418), - [anon_sym_PIPE_PIPE] = ACTIONS(1418), - [anon_sym_LT_LT] = ACTIONS(1416), - [anon_sym_GT_GT] = ACTIONS(1416), - [anon_sym_PLUS_EQ] = ACTIONS(1418), - [anon_sym_DASH_EQ] = ACTIONS(1418), - [anon_sym_STAR_EQ] = ACTIONS(1418), - [anon_sym_SLASH_EQ] = ACTIONS(1418), - [anon_sym_PERCENT_EQ] = ACTIONS(1418), - [anon_sym_CARET_EQ] = ACTIONS(1418), - [anon_sym_AMP_EQ] = ACTIONS(1418), - [anon_sym_PIPE_EQ] = ACTIONS(1418), - [anon_sym_LT_LT_EQ] = ACTIONS(1418), - [anon_sym_GT_GT_EQ] = ACTIONS(1418), - [anon_sym_EQ] = ACTIONS(1416), - [anon_sym_EQ_EQ] = ACTIONS(1418), - [anon_sym_BANG_EQ] = ACTIONS(1418), - [anon_sym_GT] = ACTIONS(1416), - [anon_sym_LT] = ACTIONS(1416), - [anon_sym_GT_EQ] = ACTIONS(1418), - [anon_sym_LT_EQ] = ACTIONS(1418), - [anon_sym_DOT] = ACTIONS(1416), - [anon_sym_DOT_DOT] = ACTIONS(1416), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1418), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(1432), - [anon_sym_POUND] = ACTIONS(1432), - [anon_sym_SQUOTE] = ACTIONS(1434), - [anon_sym_as] = ACTIONS(1416), - [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_extern] = ACTIONS(1434), - [anon_sym_yield] = ACTIONS(1434), - [anon_sym_move] = ACTIONS(1434), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1434), - [sym_super] = ACTIONS(1434), - [sym_crate] = ACTIONS(1434), - [sym_metavariable] = ACTIONS(1432), - [sym__raw_string_literal_start] = ACTIONS(1432), - [sym_float_literal] = ACTIONS(1432), + [ts_builtin_sym_end] = ACTIONS(1345), + [sym_identifier] = ACTIONS(1347), + [anon_sym_SEMI] = ACTIONS(1345), + [anon_sym_macro_rules_BANG] = ACTIONS(1345), + [anon_sym_LPAREN] = ACTIONS(1345), + [anon_sym_LBRACK] = ACTIONS(1345), + [anon_sym_LBRACE] = ACTIONS(1345), + [anon_sym_RBRACE] = ACTIONS(1345), + [anon_sym_macro] = ACTIONS(1347), + [anon_sym_PLUS] = ACTIONS(1347), + [anon_sym_STAR] = ACTIONS(1347), + [anon_sym_QMARK] = ACTIONS(1345), + [anon_sym_u8] = ACTIONS(1347), + [anon_sym_i8] = ACTIONS(1347), + [anon_sym_u16] = ACTIONS(1347), + [anon_sym_i16] = ACTIONS(1347), + [anon_sym_u32] = ACTIONS(1347), + [anon_sym_i32] = ACTIONS(1347), + [anon_sym_u64] = ACTIONS(1347), + [anon_sym_i64] = ACTIONS(1347), + [anon_sym_u128] = ACTIONS(1347), + [anon_sym_i128] = ACTIONS(1347), + [anon_sym_isize] = ACTIONS(1347), + [anon_sym_usize] = ACTIONS(1347), + [anon_sym_f32] = ACTIONS(1347), + [anon_sym_f64] = ACTIONS(1347), + [anon_sym_bool] = ACTIONS(1347), + [anon_sym_str] = ACTIONS(1347), + [anon_sym_char] = ACTIONS(1347), + [anon_sym_DASH] = ACTIONS(1347), + [anon_sym_SLASH] = ACTIONS(1347), + [anon_sym_PERCENT] = ACTIONS(1347), + [anon_sym_CARET] = ACTIONS(1347), + [anon_sym_BANG] = ACTIONS(1347), + [anon_sym_AMP] = ACTIONS(1347), + [anon_sym_PIPE] = ACTIONS(1347), + [anon_sym_AMP_AMP] = ACTIONS(1345), + [anon_sym_PIPE_PIPE] = ACTIONS(1345), + [anon_sym_LT_LT] = ACTIONS(1347), + [anon_sym_GT_GT] = ACTIONS(1347), + [anon_sym_PLUS_EQ] = ACTIONS(1345), + [anon_sym_DASH_EQ] = ACTIONS(1345), + [anon_sym_STAR_EQ] = ACTIONS(1345), + [anon_sym_SLASH_EQ] = ACTIONS(1345), + [anon_sym_PERCENT_EQ] = ACTIONS(1345), + [anon_sym_CARET_EQ] = ACTIONS(1345), + [anon_sym_AMP_EQ] = ACTIONS(1345), + [anon_sym_PIPE_EQ] = ACTIONS(1345), + [anon_sym_LT_LT_EQ] = ACTIONS(1345), + [anon_sym_GT_GT_EQ] = ACTIONS(1345), + [anon_sym_EQ] = ACTIONS(1347), + [anon_sym_EQ_EQ] = ACTIONS(1345), + [anon_sym_BANG_EQ] = ACTIONS(1345), + [anon_sym_GT] = ACTIONS(1347), + [anon_sym_LT] = ACTIONS(1347), + [anon_sym_GT_EQ] = ACTIONS(1345), + [anon_sym_LT_EQ] = ACTIONS(1345), + [anon_sym_DOT] = ACTIONS(1347), + [anon_sym_DOT_DOT] = ACTIONS(1347), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1345), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1345), + [anon_sym_COLON_COLON] = ACTIONS(1345), + [anon_sym_POUND] = ACTIONS(1345), + [anon_sym_SQUOTE] = ACTIONS(1347), + [anon_sym_as] = ACTIONS(1347), + [anon_sym_async] = ACTIONS(1347), + [anon_sym_break] = ACTIONS(1347), + [anon_sym_const] = ACTIONS(1347), + [anon_sym_continue] = ACTIONS(1347), + [anon_sym_default] = ACTIONS(1347), + [anon_sym_enum] = ACTIONS(1347), + [anon_sym_fn] = ACTIONS(1347), + [anon_sym_for] = ACTIONS(1347), + [anon_sym_if] = ACTIONS(1347), + [anon_sym_impl] = ACTIONS(1347), + [anon_sym_let] = ACTIONS(1347), + [anon_sym_loop] = ACTIONS(1347), + [anon_sym_match] = ACTIONS(1347), + [anon_sym_mod] = ACTIONS(1347), + [anon_sym_pub] = ACTIONS(1347), + [anon_sym_return] = ACTIONS(1347), + [anon_sym_static] = ACTIONS(1347), + [anon_sym_struct] = ACTIONS(1347), + [anon_sym_trait] = ACTIONS(1347), + [anon_sym_type] = ACTIONS(1347), + [anon_sym_union] = ACTIONS(1347), + [anon_sym_unsafe] = ACTIONS(1347), + [anon_sym_use] = ACTIONS(1347), + [anon_sym_while] = ACTIONS(1347), + [anon_sym_extern] = ACTIONS(1347), + [anon_sym_yield] = ACTIONS(1347), + [anon_sym_move] = ACTIONS(1347), + [anon_sym_try] = ACTIONS(1347), + [sym_integer_literal] = ACTIONS(1345), + [aux_sym_string_literal_token1] = ACTIONS(1345), + [sym_char_literal] = ACTIONS(1345), + [anon_sym_true] = ACTIONS(1347), + [anon_sym_false] = ACTIONS(1347), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1347), + [sym_super] = ACTIONS(1347), + [sym_crate] = ACTIONS(1347), + [sym_metavariable] = ACTIONS(1345), + [sym__raw_string_literal_start] = ACTIONS(1345), + [sym_float_literal] = ACTIONS(1345), }, [396] = { - [sym_attribute_item] = STATE(414), - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_self_parameter] = STATE(2981), - [sym_variadic_parameter] = STATE(2981), - [sym_parameter] = STATE(2981), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2705), - [sym_bracketed_type] = STATE(3520), - [sym_lifetime] = STATE(2985), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3198), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(2480), - [sym_scoped_identifier] = STATE(2216), - [sym_scoped_type_identifier] = STATE(2114), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(3268), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1718), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1419), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(396), [sym_block_comment] = STATE(396), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1326), - [anon_sym_RPAREN] = ACTIONS(1436), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1332), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1438), - [anon_sym_DOT_DOT] = ACTIONS(1272), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1274), - [anon_sym_COMMA] = ACTIONS(1440), - [anon_sym_COLON_COLON] = ACTIONS(1338), - [anon_sym_POUND] = ACTIONS(1280), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1340), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1342), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(1304), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1344), - [sym_super] = ACTIONS(1346), - [sym_crate] = ACTIONS(1346), - [sym_metavariable] = ACTIONS(1348), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(365), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [397] = { + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2791), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1403), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1574), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(1470), + [sym_match_expression] = STATE(1470), + [sym_while_expression] = STATE(1470), + [sym_loop_expression] = STATE(1470), + [sym_for_expression] = STATE(1470), + [sym_const_block] = STATE(1470), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(241), + [sym_label] = STATE(3631), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(1470), + [sym_async_block] = STATE(1470), + [sym_try_block] = STATE(1470), + [sym_block] = STATE(1470), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(397), [sym_block_comment] = STATE(397), - [ts_builtin_sym_end] = ACTIONS(1442), - [sym_identifier] = ACTIONS(1444), - [anon_sym_SEMI] = ACTIONS(1442), - [anon_sym_macro_rules_BANG] = ACTIONS(1442), - [anon_sym_LPAREN] = ACTIONS(1442), - [anon_sym_LBRACK] = ACTIONS(1442), - [anon_sym_LBRACE] = ACTIONS(1442), - [anon_sym_RBRACE] = ACTIONS(1442), - [anon_sym_PLUS] = ACTIONS(1444), - [anon_sym_STAR] = ACTIONS(1444), - [anon_sym_QMARK] = ACTIONS(1442), - [anon_sym_u8] = ACTIONS(1444), - [anon_sym_i8] = ACTIONS(1444), - [anon_sym_u16] = ACTIONS(1444), - [anon_sym_i16] = ACTIONS(1444), - [anon_sym_u32] = ACTIONS(1444), - [anon_sym_i32] = ACTIONS(1444), - [anon_sym_u64] = ACTIONS(1444), - [anon_sym_i64] = ACTIONS(1444), - [anon_sym_u128] = ACTIONS(1444), - [anon_sym_i128] = ACTIONS(1444), - [anon_sym_isize] = ACTIONS(1444), - [anon_sym_usize] = ACTIONS(1444), - [anon_sym_f32] = ACTIONS(1444), - [anon_sym_f64] = ACTIONS(1444), - [anon_sym_bool] = ACTIONS(1444), - [anon_sym_str] = ACTIONS(1444), - [anon_sym_char] = ACTIONS(1444), - [anon_sym_DASH] = ACTIONS(1444), - [anon_sym_SLASH] = ACTIONS(1444), - [anon_sym_PERCENT] = ACTIONS(1444), - [anon_sym_CARET] = ACTIONS(1444), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_AMP] = ACTIONS(1444), - [anon_sym_PIPE] = ACTIONS(1444), - [anon_sym_AMP_AMP] = ACTIONS(1442), - [anon_sym_PIPE_PIPE] = ACTIONS(1442), - [anon_sym_LT_LT] = ACTIONS(1444), - [anon_sym_GT_GT] = ACTIONS(1444), - [anon_sym_PLUS_EQ] = ACTIONS(1442), - [anon_sym_DASH_EQ] = ACTIONS(1442), - [anon_sym_STAR_EQ] = ACTIONS(1442), - [anon_sym_SLASH_EQ] = ACTIONS(1442), - [anon_sym_PERCENT_EQ] = ACTIONS(1442), - [anon_sym_CARET_EQ] = ACTIONS(1442), - [anon_sym_AMP_EQ] = ACTIONS(1442), - [anon_sym_PIPE_EQ] = ACTIONS(1442), - [anon_sym_LT_LT_EQ] = ACTIONS(1442), - [anon_sym_GT_GT_EQ] = ACTIONS(1442), - [anon_sym_EQ] = ACTIONS(1444), - [anon_sym_EQ_EQ] = ACTIONS(1442), - [anon_sym_BANG_EQ] = ACTIONS(1442), - [anon_sym_GT] = ACTIONS(1444), - [anon_sym_LT] = ACTIONS(1444), - [anon_sym_GT_EQ] = ACTIONS(1442), - [anon_sym_LT_EQ] = ACTIONS(1442), - [anon_sym_DOT] = ACTIONS(1444), - [anon_sym_DOT_DOT] = ACTIONS(1444), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1442), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1442), - [anon_sym_COLON_COLON] = ACTIONS(1442), - [anon_sym_POUND] = ACTIONS(1442), - [anon_sym_SQUOTE] = ACTIONS(1444), - [anon_sym_as] = ACTIONS(1444), - [anon_sym_async] = ACTIONS(1444), - [anon_sym_break] = ACTIONS(1444), - [anon_sym_const] = ACTIONS(1444), - [anon_sym_continue] = ACTIONS(1444), - [anon_sym_default] = ACTIONS(1444), - [anon_sym_enum] = ACTIONS(1444), - [anon_sym_fn] = ACTIONS(1444), - [anon_sym_for] = ACTIONS(1444), - [anon_sym_if] = ACTIONS(1444), - [anon_sym_impl] = ACTIONS(1444), - [anon_sym_let] = ACTIONS(1444), - [anon_sym_loop] = ACTIONS(1444), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_mod] = ACTIONS(1444), - [anon_sym_pub] = ACTIONS(1444), - [anon_sym_return] = ACTIONS(1444), - [anon_sym_static] = ACTIONS(1444), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_trait] = ACTIONS(1444), - [anon_sym_type] = ACTIONS(1444), - [anon_sym_union] = ACTIONS(1444), - [anon_sym_unsafe] = ACTIONS(1444), - [anon_sym_use] = ACTIONS(1444), - [anon_sym_while] = ACTIONS(1444), - [anon_sym_extern] = ACTIONS(1444), - [anon_sym_yield] = ACTIONS(1444), - [anon_sym_move] = ACTIONS(1444), - [anon_sym_try] = ACTIONS(1444), - [sym_integer_literal] = ACTIONS(1442), - [aux_sym_string_literal_token1] = ACTIONS(1442), - [sym_char_literal] = ACTIONS(1442), - [anon_sym_true] = ACTIONS(1444), - [anon_sym_false] = ACTIONS(1444), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1444), - [sym_super] = ACTIONS(1444), - [sym_crate] = ACTIONS(1444), - [sym_metavariable] = ACTIONS(1442), - [sym__raw_string_literal_start] = ACTIONS(1442), - [sym_float_literal] = ACTIONS(1442), + [sym_identifier] = ACTIONS(471), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1054), + [anon_sym_u8] = ACTIONS(473), + [anon_sym_i8] = ACTIONS(473), + [anon_sym_u16] = ACTIONS(473), + [anon_sym_i16] = ACTIONS(473), + [anon_sym_u32] = ACTIONS(473), + [anon_sym_i32] = ACTIONS(473), + [anon_sym_u64] = ACTIONS(473), + [anon_sym_i64] = ACTIONS(473), + [anon_sym_u128] = ACTIONS(473), + [anon_sym_i128] = ACTIONS(473), + [anon_sym_isize] = ACTIONS(473), + [anon_sym_usize] = ACTIONS(473), + [anon_sym_f32] = ACTIONS(473), + [anon_sym_f64] = ACTIONS(473), + [anon_sym_bool] = ACTIONS(473), + [anon_sym_str] = ACTIONS(473), + [anon_sym_char] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(1054), + [anon_sym_BANG] = ACTIONS(1054), + [anon_sym_AMP] = ACTIONS(1056), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1060), + [anon_sym_COLON_COLON] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(479), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(481), + [anon_sym_for] = ACTIONS(357), + [anon_sym_if] = ACTIONS(359), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(363), + [anon_sym_return] = ACTIONS(483), + [anon_sym_static] = ACTIONS(485), + [anon_sym_union] = ACTIONS(481), + [anon_sym_unsafe] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(487), + [anon_sym_move] = ACTIONS(489), + [anon_sym_try] = ACTIONS(371), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [398] = { - [sym_attribute_item] = STATE(414), - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_self_parameter] = STATE(2981), - [sym_variadic_parameter] = STATE(2981), - [sym_parameter] = STATE(2981), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2705), - [sym_bracketed_type] = STATE(3527), - [sym_lifetime] = STATE(2985), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3273), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(2487), - [sym_scoped_identifier] = STATE(2113), - [sym_scoped_type_identifier] = STATE(2114), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2464), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), [sym_line_comment] = STATE(398), [sym_block_comment] = STATE(398), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1248), - [anon_sym_LPAREN] = ACTIONS(1250), - [anon_sym_RPAREN] = ACTIONS(1446), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = 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_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1266), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1270), - [anon_sym_DOT_DOT] = ACTIONS(1272), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1274), - [anon_sym_COMMA] = ACTIONS(1448), - [anon_sym_COLON_COLON] = ACTIONS(1278), - [anon_sym_POUND] = ACTIONS(1280), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1288), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1296), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(1304), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1312), - [sym_super] = ACTIONS(1314), - [sym_crate] = ACTIONS(1314), - [sym_metavariable] = ACTIONS(1316), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [ts_builtin_sym_end] = ACTIONS(1349), + [sym_identifier] = ACTIONS(1351), + [anon_sym_SEMI] = ACTIONS(1349), + [anon_sym_macro_rules_BANG] = ACTIONS(1349), + [anon_sym_LPAREN] = ACTIONS(1349), + [anon_sym_LBRACK] = ACTIONS(1349), + [anon_sym_LBRACE] = ACTIONS(1349), + [anon_sym_RBRACE] = ACTIONS(1349), + [anon_sym_macro] = ACTIONS(1351), + [anon_sym_PLUS] = ACTIONS(1351), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_QMARK] = ACTIONS(1349), + [anon_sym_u8] = ACTIONS(1351), + [anon_sym_i8] = ACTIONS(1351), + [anon_sym_u16] = ACTIONS(1351), + [anon_sym_i16] = ACTIONS(1351), + [anon_sym_u32] = ACTIONS(1351), + [anon_sym_i32] = ACTIONS(1351), + [anon_sym_u64] = ACTIONS(1351), + [anon_sym_i64] = ACTIONS(1351), + [anon_sym_u128] = ACTIONS(1351), + [anon_sym_i128] = ACTIONS(1351), + [anon_sym_isize] = ACTIONS(1351), + [anon_sym_usize] = ACTIONS(1351), + [anon_sym_f32] = ACTIONS(1351), + [anon_sym_f64] = ACTIONS(1351), + [anon_sym_bool] = ACTIONS(1351), + [anon_sym_str] = ACTIONS(1351), + [anon_sym_char] = ACTIONS(1351), + [anon_sym_DASH] = ACTIONS(1351), + [anon_sym_SLASH] = ACTIONS(1351), + [anon_sym_PERCENT] = ACTIONS(1351), + [anon_sym_CARET] = ACTIONS(1351), + [anon_sym_BANG] = ACTIONS(1351), + [anon_sym_AMP] = ACTIONS(1351), + [anon_sym_PIPE] = ACTIONS(1351), + [anon_sym_AMP_AMP] = ACTIONS(1349), + [anon_sym_PIPE_PIPE] = ACTIONS(1349), + [anon_sym_LT_LT] = ACTIONS(1351), + [anon_sym_GT_GT] = ACTIONS(1351), + [anon_sym_PLUS_EQ] = ACTIONS(1349), + [anon_sym_DASH_EQ] = ACTIONS(1349), + [anon_sym_STAR_EQ] = ACTIONS(1349), + [anon_sym_SLASH_EQ] = ACTIONS(1349), + [anon_sym_PERCENT_EQ] = ACTIONS(1349), + [anon_sym_CARET_EQ] = ACTIONS(1349), + [anon_sym_AMP_EQ] = ACTIONS(1349), + [anon_sym_PIPE_EQ] = ACTIONS(1349), + [anon_sym_LT_LT_EQ] = ACTIONS(1349), + [anon_sym_GT_GT_EQ] = ACTIONS(1349), + [anon_sym_EQ] = ACTIONS(1351), + [anon_sym_EQ_EQ] = ACTIONS(1349), + [anon_sym_BANG_EQ] = ACTIONS(1349), + [anon_sym_GT] = ACTIONS(1351), + [anon_sym_LT] = ACTIONS(1351), + [anon_sym_GT_EQ] = ACTIONS(1349), + [anon_sym_LT_EQ] = ACTIONS(1349), + [anon_sym_DOT] = ACTIONS(1351), + [anon_sym_DOT_DOT] = ACTIONS(1351), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1349), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1349), + [anon_sym_COLON_COLON] = ACTIONS(1349), + [anon_sym_POUND] = ACTIONS(1349), + [anon_sym_SQUOTE] = ACTIONS(1351), + [anon_sym_as] = ACTIONS(1351), + [anon_sym_async] = ACTIONS(1351), + [anon_sym_break] = ACTIONS(1351), + [anon_sym_const] = ACTIONS(1351), + [anon_sym_continue] = ACTIONS(1351), + [anon_sym_default] = ACTIONS(1351), + [anon_sym_enum] = ACTIONS(1351), + [anon_sym_fn] = ACTIONS(1351), + [anon_sym_for] = ACTIONS(1351), + [anon_sym_if] = ACTIONS(1351), + [anon_sym_impl] = ACTIONS(1351), + [anon_sym_let] = ACTIONS(1351), + [anon_sym_loop] = ACTIONS(1351), + [anon_sym_match] = ACTIONS(1351), + [anon_sym_mod] = ACTIONS(1351), + [anon_sym_pub] = ACTIONS(1351), + [anon_sym_return] = ACTIONS(1351), + [anon_sym_static] = ACTIONS(1351), + [anon_sym_struct] = ACTIONS(1351), + [anon_sym_trait] = ACTIONS(1351), + [anon_sym_type] = ACTIONS(1351), + [anon_sym_union] = ACTIONS(1351), + [anon_sym_unsafe] = ACTIONS(1351), + [anon_sym_use] = ACTIONS(1351), + [anon_sym_while] = ACTIONS(1351), + [anon_sym_extern] = ACTIONS(1351), + [anon_sym_yield] = ACTIONS(1351), + [anon_sym_move] = ACTIONS(1351), + [anon_sym_try] = ACTIONS(1351), + [sym_integer_literal] = ACTIONS(1349), + [aux_sym_string_literal_token1] = ACTIONS(1349), + [sym_char_literal] = ACTIONS(1349), + [anon_sym_true] = ACTIONS(1351), + [anon_sym_false] = ACTIONS(1351), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1351), + [sym_super] = ACTIONS(1351), + [sym_crate] = ACTIONS(1351), + [sym_metavariable] = ACTIONS(1349), + [sym__raw_string_literal_start] = ACTIONS(1349), + [sym_float_literal] = ACTIONS(1349), }, [399] = { + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1470), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1279), + [sym__expression] = STATE(1716), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(1419), + [sym_scoped_type_identifier_in_expression_position] = STATE(3148), + [sym_range_expression] = STATE(1432), + [sym_unary_expression] = STATE(1470), + [sym_try_expression] = STATE(1470), + [sym_reference_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1470), + [sym_compound_assignment_expr] = STATE(1470), + [sym_type_cast_expression] = STATE(1470), + [sym_return_expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_call_expression] = STATE(1470), + [sym_array_expression] = STATE(1470), + [sym_parenthesized_expression] = STATE(1470), + [sym_tuple_expression] = STATE(1470), + [sym_unit_expression] = STATE(1470), + [sym_struct_expression] = STATE(1470), + [sym_if_expression] = STATE(463), + [sym_match_expression] = STATE(463), + [sym_while_expression] = STATE(463), + [sym_loop_expression] = STATE(463), + [sym_for_expression] = STATE(463), + [sym_const_block] = STATE(463), + [sym_closure_expression] = STATE(1470), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3676), + [sym_break_expression] = STATE(1470), + [sym_continue_expression] = STATE(1470), + [sym_index_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_field_expression] = STATE(1284), + [sym_unsafe_block] = STATE(463), + [sym_async_block] = STATE(463), + [sym_try_block] = STATE(463), + [sym_block] = STATE(463), + [sym__literal] = STATE(1470), + [sym_string_literal] = STATE(1390), + [sym_raw_string_literal] = STATE(1390), + [sym_boolean_literal] = STATE(1390), [sym_line_comment] = STATE(399), [sym_block_comment] = STATE(399), - [ts_builtin_sym_end] = ACTIONS(1450), - [sym_identifier] = ACTIONS(1452), - [anon_sym_SEMI] = ACTIONS(1450), - [anon_sym_macro_rules_BANG] = ACTIONS(1450), - [anon_sym_LPAREN] = ACTIONS(1450), - [anon_sym_LBRACK] = ACTIONS(1450), - [anon_sym_LBRACE] = ACTIONS(1450), - [anon_sym_RBRACE] = ACTIONS(1450), - [anon_sym_PLUS] = ACTIONS(1452), - [anon_sym_STAR] = ACTIONS(1452), - [anon_sym_QMARK] = ACTIONS(1450), - [anon_sym_u8] = ACTIONS(1452), - [anon_sym_i8] = ACTIONS(1452), - [anon_sym_u16] = ACTIONS(1452), - [anon_sym_i16] = ACTIONS(1452), - [anon_sym_u32] = ACTIONS(1452), - [anon_sym_i32] = ACTIONS(1452), - [anon_sym_u64] = ACTIONS(1452), - [anon_sym_i64] = ACTIONS(1452), - [anon_sym_u128] = ACTIONS(1452), - [anon_sym_i128] = ACTIONS(1452), - [anon_sym_isize] = ACTIONS(1452), - [anon_sym_usize] = ACTIONS(1452), - [anon_sym_f32] = ACTIONS(1452), - [anon_sym_f64] = ACTIONS(1452), - [anon_sym_bool] = ACTIONS(1452), - [anon_sym_str] = ACTIONS(1452), - [anon_sym_char] = ACTIONS(1452), - [anon_sym_DASH] = ACTIONS(1452), - [anon_sym_SLASH] = ACTIONS(1452), - [anon_sym_PERCENT] = ACTIONS(1452), - [anon_sym_CARET] = ACTIONS(1452), - [anon_sym_BANG] = ACTIONS(1452), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_PIPE] = ACTIONS(1452), - [anon_sym_AMP_AMP] = ACTIONS(1450), - [anon_sym_PIPE_PIPE] = ACTIONS(1450), - [anon_sym_LT_LT] = ACTIONS(1452), - [anon_sym_GT_GT] = ACTIONS(1452), - [anon_sym_PLUS_EQ] = ACTIONS(1450), - [anon_sym_DASH_EQ] = ACTIONS(1450), - [anon_sym_STAR_EQ] = ACTIONS(1450), - [anon_sym_SLASH_EQ] = ACTIONS(1450), - [anon_sym_PERCENT_EQ] = ACTIONS(1450), - [anon_sym_CARET_EQ] = ACTIONS(1450), - [anon_sym_AMP_EQ] = ACTIONS(1450), - [anon_sym_PIPE_EQ] = ACTIONS(1450), - [anon_sym_LT_LT_EQ] = ACTIONS(1450), - [anon_sym_GT_GT_EQ] = ACTIONS(1450), - [anon_sym_EQ] = ACTIONS(1452), - [anon_sym_EQ_EQ] = ACTIONS(1450), - [anon_sym_BANG_EQ] = ACTIONS(1450), - [anon_sym_GT] = ACTIONS(1452), - [anon_sym_LT] = ACTIONS(1452), - [anon_sym_GT_EQ] = ACTIONS(1450), - [anon_sym_LT_EQ] = ACTIONS(1450), - [anon_sym_DOT] = ACTIONS(1452), - [anon_sym_DOT_DOT] = ACTIONS(1452), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1450), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1450), - [anon_sym_COLON_COLON] = ACTIONS(1450), - [anon_sym_POUND] = ACTIONS(1450), - [anon_sym_SQUOTE] = ACTIONS(1452), - [anon_sym_as] = ACTIONS(1452), - [anon_sym_async] = ACTIONS(1452), - [anon_sym_break] = ACTIONS(1452), - [anon_sym_const] = ACTIONS(1452), - [anon_sym_continue] = ACTIONS(1452), - [anon_sym_default] = ACTIONS(1452), - [anon_sym_enum] = ACTIONS(1452), - [anon_sym_fn] = ACTIONS(1452), - [anon_sym_for] = ACTIONS(1452), - [anon_sym_if] = ACTIONS(1452), - [anon_sym_impl] = ACTIONS(1452), - [anon_sym_let] = ACTIONS(1452), - [anon_sym_loop] = ACTIONS(1452), - [anon_sym_match] = ACTIONS(1452), - [anon_sym_mod] = ACTIONS(1452), - [anon_sym_pub] = ACTIONS(1452), - [anon_sym_return] = ACTIONS(1452), - [anon_sym_static] = ACTIONS(1452), - [anon_sym_struct] = ACTIONS(1452), - [anon_sym_trait] = ACTIONS(1452), - [anon_sym_type] = ACTIONS(1452), - [anon_sym_union] = ACTIONS(1452), - [anon_sym_unsafe] = ACTIONS(1452), - [anon_sym_use] = ACTIONS(1452), - [anon_sym_while] = ACTIONS(1452), - [anon_sym_extern] = ACTIONS(1452), - [anon_sym_yield] = ACTIONS(1452), - [anon_sym_move] = ACTIONS(1452), - [anon_sym_try] = ACTIONS(1452), - [sym_integer_literal] = ACTIONS(1450), - [aux_sym_string_literal_token1] = ACTIONS(1450), - [sym_char_literal] = ACTIONS(1450), - [anon_sym_true] = ACTIONS(1452), - [anon_sym_false] = ACTIONS(1452), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1452), - [sym_super] = ACTIONS(1452), - [sym_crate] = ACTIONS(1452), - [sym_metavariable] = ACTIONS(1450), - [sym__raw_string_literal_start] = ACTIONS(1450), - [sym_float_literal] = ACTIONS(1450), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(1273), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_u8] = ACTIONS(25), + [anon_sym_i8] = ACTIONS(25), + [anon_sym_u16] = ACTIONS(25), + [anon_sym_i16] = ACTIONS(25), + [anon_sym_u32] = ACTIONS(25), + [anon_sym_i32] = ACTIONS(25), + [anon_sym_u64] = ACTIONS(25), + [anon_sym_i64] = ACTIONS(25), + [anon_sym_u128] = ACTIONS(25), + [anon_sym_i128] = ACTIONS(25), + [anon_sym_isize] = ACTIONS(25), + [anon_sym_usize] = ACTIONS(25), + [anon_sym_f32] = ACTIONS(25), + [anon_sym_f64] = ACTIONS(25), + [anon_sym_bool] = ACTIONS(25), + [anon_sym_str] = ACTIONS(25), + [anon_sym_char] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_PIPE] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_async] = ACTIONS(1275), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(1277), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(1279), + [anon_sym_if] = ACTIONS(1281), + [anon_sym_loop] = ACTIONS(1283), + [anon_sym_match] = ACTIONS(1285), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(365), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(1287), + [anon_sym_while] = ACTIONS(1289), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(1291), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [400] = { - [sym_attribute_item] = STATE(415), - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_self_parameter] = STATE(3088), - [sym_variadic_parameter] = STATE(3088), - [sym_parameter] = STATE(3088), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2763), - [sym_bracketed_type] = STATE(3520), - [sym_lifetime] = STATE(2985), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3198), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(2480), - [sym_scoped_identifier] = STATE(2216), - [sym_scoped_type_identifier] = STATE(2114), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(3268), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), [sym_line_comment] = STATE(400), [sym_block_comment] = STATE(400), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1326), - [anon_sym_RPAREN] = ACTIONS(1454), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1332), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1456), - [anon_sym_DOT_DOT] = ACTIONS(1272), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1274), - [anon_sym_COLON_COLON] = ACTIONS(1338), - [anon_sym_POUND] = ACTIONS(1280), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1340), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1342), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(1304), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1344), - [sym_super] = ACTIONS(1346), - [sym_crate] = ACTIONS(1346), - [sym_metavariable] = ACTIONS(1348), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym_identifier] = ACTIONS(1303), + [anon_sym_SEMI] = ACTIONS(1305), + [anon_sym_macro_rules_BANG] = ACTIONS(1301), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_LBRACE] = ACTIONS(1301), + [anon_sym_RBRACE] = ACTIONS(1301), + [anon_sym_macro] = ACTIONS(1303), + [anon_sym_PLUS] = ACTIONS(1307), + [anon_sym_STAR] = ACTIONS(1307), + [anon_sym_QMARK] = ACTIONS(1305), + [anon_sym_u8] = ACTIONS(1303), + [anon_sym_i8] = ACTIONS(1303), + [anon_sym_u16] = ACTIONS(1303), + [anon_sym_i16] = ACTIONS(1303), + [anon_sym_u32] = ACTIONS(1303), + [anon_sym_i32] = ACTIONS(1303), + [anon_sym_u64] = ACTIONS(1303), + [anon_sym_i64] = ACTIONS(1303), + [anon_sym_u128] = ACTIONS(1303), + [anon_sym_i128] = ACTIONS(1303), + [anon_sym_isize] = ACTIONS(1303), + [anon_sym_usize] = ACTIONS(1303), + [anon_sym_f32] = ACTIONS(1303), + [anon_sym_f64] = ACTIONS(1303), + [anon_sym_bool] = ACTIONS(1303), + [anon_sym_str] = ACTIONS(1303), + [anon_sym_char] = ACTIONS(1303), + [anon_sym_DASH] = ACTIONS(1307), + [anon_sym_SLASH] = ACTIONS(1307), + [anon_sym_PERCENT] = ACTIONS(1307), + [anon_sym_CARET] = ACTIONS(1307), + [anon_sym_BANG] = ACTIONS(1303), + [anon_sym_AMP] = ACTIONS(1307), + [anon_sym_PIPE] = ACTIONS(1307), + [anon_sym_AMP_AMP] = ACTIONS(1305), + [anon_sym_PIPE_PIPE] = ACTIONS(1305), + [anon_sym_LT_LT] = ACTIONS(1307), + [anon_sym_GT_GT] = ACTIONS(1307), + [anon_sym_PLUS_EQ] = ACTIONS(1305), + [anon_sym_DASH_EQ] = ACTIONS(1305), + [anon_sym_STAR_EQ] = ACTIONS(1305), + [anon_sym_SLASH_EQ] = ACTIONS(1305), + [anon_sym_PERCENT_EQ] = ACTIONS(1305), + [anon_sym_CARET_EQ] = ACTIONS(1305), + [anon_sym_AMP_EQ] = ACTIONS(1305), + [anon_sym_PIPE_EQ] = ACTIONS(1305), + [anon_sym_LT_LT_EQ] = ACTIONS(1305), + [anon_sym_GT_GT_EQ] = ACTIONS(1305), + [anon_sym_EQ] = ACTIONS(1307), + [anon_sym_EQ_EQ] = ACTIONS(1305), + [anon_sym_BANG_EQ] = ACTIONS(1305), + [anon_sym_GT] = ACTIONS(1307), + [anon_sym_LT] = ACTIONS(1307), + [anon_sym_GT_EQ] = ACTIONS(1305), + [anon_sym_LT_EQ] = ACTIONS(1305), + [anon_sym_DOT] = ACTIONS(1307), + [anon_sym_DOT_DOT] = ACTIONS(1307), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1305), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1305), + [anon_sym_COLON_COLON] = ACTIONS(1301), + [anon_sym_POUND] = ACTIONS(1301), + [anon_sym_SQUOTE] = ACTIONS(1303), + [anon_sym_as] = ACTIONS(1307), + [anon_sym_async] = ACTIONS(1303), + [anon_sym_break] = ACTIONS(1303), + [anon_sym_const] = ACTIONS(1303), + [anon_sym_continue] = ACTIONS(1303), + [anon_sym_default] = ACTIONS(1303), + [anon_sym_enum] = ACTIONS(1303), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1303), + [anon_sym_if] = ACTIONS(1303), + [anon_sym_impl] = ACTIONS(1303), + [anon_sym_let] = ACTIONS(1303), + [anon_sym_loop] = ACTIONS(1303), + [anon_sym_match] = ACTIONS(1303), + [anon_sym_mod] = ACTIONS(1303), + [anon_sym_pub] = ACTIONS(1303), + [anon_sym_return] = ACTIONS(1303), + [anon_sym_static] = ACTIONS(1303), + [anon_sym_struct] = ACTIONS(1303), + [anon_sym_trait] = ACTIONS(1303), + [anon_sym_type] = ACTIONS(1303), + [anon_sym_union] = ACTIONS(1303), + [anon_sym_unsafe] = ACTIONS(1303), + [anon_sym_use] = ACTIONS(1303), + [anon_sym_while] = ACTIONS(1303), + [anon_sym_extern] = ACTIONS(1303), + [anon_sym_yield] = ACTIONS(1303), + [anon_sym_move] = ACTIONS(1303), + [anon_sym_try] = ACTIONS(1303), + [sym_integer_literal] = ACTIONS(1301), + [aux_sym_string_literal_token1] = ACTIONS(1301), + [sym_char_literal] = ACTIONS(1301), + [anon_sym_true] = ACTIONS(1303), + [anon_sym_false] = ACTIONS(1303), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1303), + [sym_super] = ACTIONS(1303), + [sym_crate] = ACTIONS(1303), + [sym_metavariable] = ACTIONS(1301), + [sym__raw_string_literal_start] = ACTIONS(1301), + [sym_float_literal] = ACTIONS(1301), }, [401] = { - [sym_attribute_item] = STATE(415), - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_self_parameter] = STATE(3088), - [sym_variadic_parameter] = STATE(3088), - [sym_parameter] = STATE(3088), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2763), - [sym_bracketed_type] = STATE(3520), - [sym_lifetime] = STATE(2985), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3198), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(2480), - [sym_scoped_identifier] = STATE(2216), - [sym_scoped_type_identifier] = STATE(2114), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(3268), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_attribute_item] = STATE(423), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_self_parameter] = STATE(2863), + [sym_variadic_parameter] = STATE(2863), + [sym_parameter] = STATE(2863), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2707), + [sym_bracketed_type] = STATE(3615), + [sym_lifetime] = STATE(3000), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3395), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2487), + [sym_scoped_identifier] = STATE(2249), + [sym_scoped_type_identifier] = STATE(2116), + [sym_const_block] = STATE(2160), + [sym__pattern] = STATE(3202), + [sym_tuple_pattern] = STATE(2160), + [sym_slice_pattern] = STATE(2160), + [sym_tuple_struct_pattern] = STATE(2160), + [sym_struct_pattern] = STATE(2160), + [sym_remaining_field_pattern] = STATE(2160), + [sym_mut_pattern] = STATE(2160), + [sym_range_pattern] = STATE(2160), + [sym_ref_pattern] = STATE(2160), + [sym_captured_pattern] = STATE(2160), + [sym_reference_pattern] = STATE(2160), + [sym_or_pattern] = STATE(2160), + [sym__literal_pattern] = STATE(2036), + [sym_negative_literal] = STATE(2048), + [sym_string_literal] = STATE(2048), + [sym_raw_string_literal] = STATE(2048), + [sym_boolean_literal] = STATE(2048), [sym_line_comment] = STATE(401), [sym_block_comment] = STATE(401), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1326), - [anon_sym_RPAREN] = ACTIONS(1458), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1332), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1456), - [anon_sym_DOT_DOT] = ACTIONS(1272), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1274), - [anon_sym_COLON_COLON] = ACTIONS(1338), - [anon_sym_POUND] = ACTIONS(1280), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1340), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1342), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(1304), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1344), - [sym_super] = ACTIONS(1346), - [sym_crate] = ACTIONS(1346), - [sym_metavariable] = ACTIONS(1348), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(1353), + [anon_sym_LPAREN] = ACTIONS(1355), + [anon_sym_RPAREN] = ACTIONS(1357), + [anon_sym_LBRACK] = ACTIONS(1359), + [anon_sym_COMMA] = ACTIONS(1361), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1367), + [anon_sym_i8] = ACTIONS(1367), + [anon_sym_u16] = ACTIONS(1367), + [anon_sym_i16] = ACTIONS(1367), + [anon_sym_u32] = ACTIONS(1367), + [anon_sym_i32] = ACTIONS(1367), + [anon_sym_u64] = ACTIONS(1367), + [anon_sym_i64] = ACTIONS(1367), + [anon_sym_u128] = ACTIONS(1367), + [anon_sym_i128] = ACTIONS(1367), + [anon_sym_isize] = ACTIONS(1367), + [anon_sym_usize] = ACTIONS(1367), + [anon_sym_f32] = ACTIONS(1367), + [anon_sym_f64] = ACTIONS(1367), + [anon_sym_bool] = ACTIONS(1367), + [anon_sym_str] = ACTIONS(1367), + [anon_sym_char] = ACTIONS(1367), + [anon_sym_DASH] = ACTIONS(1369), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1373), + [anon_sym_PIPE] = ACTIONS(1375), + [anon_sym_LT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1377), + [anon_sym_DOT_DOT] = ACTIONS(1379), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1381), + [anon_sym_COLON_COLON] = ACTIONS(1383), + [anon_sym_POUND] = ACTIONS(1385), + [anon_sym_SQUOTE] = ACTIONS(1387), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1391), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1401), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_ref] = ACTIONS(1405), + [anon_sym_dyn] = ACTIONS(1407), + [sym_mutable_specifier] = ACTIONS(1409), + [sym_integer_literal] = ACTIONS(1411), + [aux_sym_string_literal_token1] = ACTIONS(1413), + [sym_char_literal] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1415), + [anon_sym_false] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1417), + [sym_super] = ACTIONS(1419), + [sym_crate] = ACTIONS(1419), + [sym_metavariable] = ACTIONS(1421), + [sym__raw_string_literal_start] = ACTIONS(1423), + [sym_float_literal] = ACTIONS(1411), }, [402] = { - [sym_attribute_item] = STATE(415), - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_self_parameter] = STATE(3088), - [sym_variadic_parameter] = STATE(3088), - [sym_parameter] = STATE(3088), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2763), - [sym_bracketed_type] = STATE(3520), - [sym_lifetime] = STATE(2985), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3198), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(2480), - [sym_scoped_identifier] = STATE(2216), - [sym_scoped_type_identifier] = STATE(2114), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(3268), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_attribute_item] = STATE(421), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_self_parameter] = STATE(2990), + [sym_variadic_parameter] = STATE(2990), + [sym_parameter] = STATE(2990), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2606), + [sym_bracketed_type] = STATE(3622), + [sym_lifetime] = STATE(3000), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3185), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2542), + [sym_scoped_identifier] = STATE(2112), + [sym_scoped_type_identifier] = STATE(2116), + [sym_const_block] = STATE(2160), + [sym__pattern] = STATE(2515), + [sym_tuple_pattern] = STATE(2160), + [sym_slice_pattern] = STATE(2160), + [sym_tuple_struct_pattern] = STATE(2160), + [sym_struct_pattern] = STATE(2160), + [sym_remaining_field_pattern] = STATE(2160), + [sym_mut_pattern] = STATE(2160), + [sym_range_pattern] = STATE(2160), + [sym_ref_pattern] = STATE(2160), + [sym_captured_pattern] = STATE(2160), + [sym_reference_pattern] = STATE(2160), + [sym_or_pattern] = STATE(2160), + [sym__literal_pattern] = STATE(2036), + [sym_negative_literal] = STATE(2048), + [sym_string_literal] = STATE(2048), + [sym_raw_string_literal] = STATE(2048), + [sym_boolean_literal] = STATE(2048), [sym_line_comment] = STATE(402), [sym_block_comment] = STATE(402), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1326), - [anon_sym_RPAREN] = ACTIONS(1460), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1332), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1456), - [anon_sym_DOT_DOT] = ACTIONS(1272), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1274), - [anon_sym_COLON_COLON] = ACTIONS(1338), - [anon_sym_POUND] = ACTIONS(1280), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1340), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1342), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(1304), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1344), - [sym_super] = ACTIONS(1346), - [sym_crate] = ACTIONS(1346), - [sym_metavariable] = ACTIONS(1348), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1427), + [anon_sym_RPAREN] = ACTIONS(1429), + [anon_sym_LBRACK] = ACTIONS(1359), + [anon_sym_COMMA] = ACTIONS(1431), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1433), + [anon_sym_i8] = ACTIONS(1433), + [anon_sym_u16] = ACTIONS(1433), + [anon_sym_i16] = ACTIONS(1433), + [anon_sym_u32] = ACTIONS(1433), + [anon_sym_i32] = ACTIONS(1433), + [anon_sym_u64] = ACTIONS(1433), + [anon_sym_i64] = ACTIONS(1433), + [anon_sym_u128] = ACTIONS(1433), + [anon_sym_i128] = ACTIONS(1433), + [anon_sym_isize] = ACTIONS(1433), + [anon_sym_usize] = ACTIONS(1433), + [anon_sym_f32] = ACTIONS(1433), + [anon_sym_f64] = ACTIONS(1433), + [anon_sym_bool] = ACTIONS(1433), + [anon_sym_str] = ACTIONS(1433), + [anon_sym_char] = ACTIONS(1433), + [anon_sym_DASH] = ACTIONS(1369), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_PIPE] = ACTIONS(1375), + [anon_sym_LT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1437), + [anon_sym_DOT_DOT] = ACTIONS(1379), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1381), + [anon_sym_COLON_COLON] = ACTIONS(1439), + [anon_sym_POUND] = ACTIONS(1385), + [anon_sym_SQUOTE] = ACTIONS(1387), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1391), + [anon_sym_default] = ACTIONS(1441), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1443), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_ref] = ACTIONS(1405), + [anon_sym_dyn] = ACTIONS(1407), + [sym_mutable_specifier] = ACTIONS(1409), + [sym_integer_literal] = ACTIONS(1411), + [aux_sym_string_literal_token1] = ACTIONS(1413), + [sym_char_literal] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1415), + [anon_sym_false] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1445), + [sym_super] = ACTIONS(1447), + [sym_crate] = ACTIONS(1447), + [sym_metavariable] = ACTIONS(1449), + [sym__raw_string_literal_start] = ACTIONS(1423), + [sym_float_literal] = ACTIONS(1411), }, [403] = { - [sym_attribute_item] = STATE(415), - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_self_parameter] = STATE(3088), - [sym_variadic_parameter] = STATE(3088), - [sym_parameter] = STATE(3088), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2763), - [sym_bracketed_type] = STATE(3520), - [sym_lifetime] = STATE(2985), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3198), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(2480), - [sym_scoped_identifier] = STATE(2216), - [sym_scoped_type_identifier] = STATE(2114), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(3268), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_attribute_item] = STATE(421), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_self_parameter] = STATE(2990), + [sym_variadic_parameter] = STATE(2990), + [sym_parameter] = STATE(2990), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2606), + [sym_bracketed_type] = STATE(3615), + [sym_lifetime] = STATE(3000), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3395), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2487), + [sym_scoped_identifier] = STATE(2249), + [sym_scoped_type_identifier] = STATE(2116), + [sym_const_block] = STATE(2160), + [sym__pattern] = STATE(3202), + [sym_tuple_pattern] = STATE(2160), + [sym_slice_pattern] = STATE(2160), + [sym_tuple_struct_pattern] = STATE(2160), + [sym_struct_pattern] = STATE(2160), + [sym_remaining_field_pattern] = STATE(2160), + [sym_mut_pattern] = STATE(2160), + [sym_range_pattern] = STATE(2160), + [sym_ref_pattern] = STATE(2160), + [sym_captured_pattern] = STATE(2160), + [sym_reference_pattern] = STATE(2160), + [sym_or_pattern] = STATE(2160), + [sym__literal_pattern] = STATE(2036), + [sym_negative_literal] = STATE(2048), + [sym_string_literal] = STATE(2048), + [sym_raw_string_literal] = STATE(2048), + [sym_boolean_literal] = STATE(2048), [sym_line_comment] = STATE(403), [sym_block_comment] = STATE(403), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1326), - [anon_sym_RPAREN] = ACTIONS(1462), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1332), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1456), - [anon_sym_DOT_DOT] = ACTIONS(1272), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1274), - [anon_sym_COLON_COLON] = ACTIONS(1338), - [anon_sym_POUND] = ACTIONS(1280), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1340), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1342), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(1304), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1344), - [sym_super] = ACTIONS(1346), - [sym_crate] = ACTIONS(1346), - [sym_metavariable] = ACTIONS(1348), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(1353), + [anon_sym_LPAREN] = ACTIONS(1355), + [anon_sym_RPAREN] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1359), + [anon_sym_COMMA] = ACTIONS(1453), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1367), + [anon_sym_i8] = ACTIONS(1367), + [anon_sym_u16] = ACTIONS(1367), + [anon_sym_i16] = ACTIONS(1367), + [anon_sym_u32] = ACTIONS(1367), + [anon_sym_i32] = ACTIONS(1367), + [anon_sym_u64] = ACTIONS(1367), + [anon_sym_i64] = ACTIONS(1367), + [anon_sym_u128] = ACTIONS(1367), + [anon_sym_i128] = ACTIONS(1367), + [anon_sym_isize] = ACTIONS(1367), + [anon_sym_usize] = ACTIONS(1367), + [anon_sym_f32] = ACTIONS(1367), + [anon_sym_f64] = ACTIONS(1367), + [anon_sym_bool] = ACTIONS(1367), + [anon_sym_str] = ACTIONS(1367), + [anon_sym_char] = ACTIONS(1367), + [anon_sym_DASH] = ACTIONS(1369), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1373), + [anon_sym_PIPE] = ACTIONS(1375), + [anon_sym_LT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1455), + [anon_sym_DOT_DOT] = ACTIONS(1379), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1381), + [anon_sym_COLON_COLON] = ACTIONS(1383), + [anon_sym_POUND] = ACTIONS(1385), + [anon_sym_SQUOTE] = ACTIONS(1387), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1391), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1401), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_ref] = ACTIONS(1405), + [anon_sym_dyn] = ACTIONS(1407), + [sym_mutable_specifier] = ACTIONS(1409), + [sym_integer_literal] = ACTIONS(1411), + [aux_sym_string_literal_token1] = ACTIONS(1413), + [sym_char_literal] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1415), + [anon_sym_false] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1417), + [sym_super] = ACTIONS(1419), + [sym_crate] = ACTIONS(1419), + [sym_metavariable] = ACTIONS(1421), + [sym__raw_string_literal_start] = ACTIONS(1423), + [sym_float_literal] = ACTIONS(1411), }, [404] = { + [sym_attribute_item] = STATE(422), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_self_parameter] = STATE(2980), + [sym_variadic_parameter] = STATE(2980), + [sym_parameter] = STATE(2980), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2610), + [sym_bracketed_type] = STATE(3615), + [sym_lifetime] = STATE(3000), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3395), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2487), + [sym_scoped_identifier] = STATE(2249), + [sym_scoped_type_identifier] = STATE(2116), + [sym_const_block] = STATE(2160), + [sym__pattern] = STATE(3202), + [sym_tuple_pattern] = STATE(2160), + [sym_slice_pattern] = STATE(2160), + [sym_tuple_struct_pattern] = STATE(2160), + [sym_struct_pattern] = STATE(2160), + [sym_remaining_field_pattern] = STATE(2160), + [sym_mut_pattern] = STATE(2160), + [sym_range_pattern] = STATE(2160), + [sym_ref_pattern] = STATE(2160), + [sym_captured_pattern] = STATE(2160), + [sym_reference_pattern] = STATE(2160), + [sym_or_pattern] = STATE(2160), + [sym__literal_pattern] = STATE(2036), + [sym_negative_literal] = STATE(2048), + [sym_string_literal] = STATE(2048), + [sym_raw_string_literal] = STATE(2048), + [sym_boolean_literal] = STATE(2048), [sym_line_comment] = STATE(404), [sym_block_comment] = STATE(404), - [sym_identifier] = ACTIONS(1434), - [anon_sym_SEMI] = ACTIONS(1418), - [anon_sym_macro_rules_BANG] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1418), - [anon_sym_LBRACK] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_RBRACE] = ACTIONS(1432), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_STAR] = ACTIONS(1416), - [anon_sym_QMARK] = ACTIONS(1418), - [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_DASH] = ACTIONS(1416), - [anon_sym_SLASH] = ACTIONS(1416), - [anon_sym_PERCENT] = ACTIONS(1416), - [anon_sym_CARET] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(1434), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_PIPE] = ACTIONS(1416), - [anon_sym_AMP_AMP] = ACTIONS(1418), - [anon_sym_PIPE_PIPE] = ACTIONS(1418), - [anon_sym_LT_LT] = ACTIONS(1416), - [anon_sym_GT_GT] = ACTIONS(1416), - [anon_sym_PLUS_EQ] = ACTIONS(1418), - [anon_sym_DASH_EQ] = ACTIONS(1418), - [anon_sym_STAR_EQ] = ACTIONS(1418), - [anon_sym_SLASH_EQ] = ACTIONS(1418), - [anon_sym_PERCENT_EQ] = ACTIONS(1418), - [anon_sym_CARET_EQ] = ACTIONS(1418), - [anon_sym_AMP_EQ] = ACTIONS(1418), - [anon_sym_PIPE_EQ] = ACTIONS(1418), - [anon_sym_LT_LT_EQ] = ACTIONS(1418), - [anon_sym_GT_GT_EQ] = ACTIONS(1418), - [anon_sym_EQ] = ACTIONS(1416), - [anon_sym_EQ_EQ] = ACTIONS(1418), - [anon_sym_BANG_EQ] = ACTIONS(1418), - [anon_sym_GT] = ACTIONS(1416), - [anon_sym_LT] = ACTIONS(1416), - [anon_sym_GT_EQ] = ACTIONS(1418), - [anon_sym_LT_EQ] = ACTIONS(1418), - [anon_sym_DOT] = ACTIONS(1416), - [anon_sym_DOT_DOT] = ACTIONS(1416), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1418), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(1432), - [anon_sym_POUND] = ACTIONS(1432), - [anon_sym_SQUOTE] = ACTIONS(1434), - [anon_sym_as] = ACTIONS(1416), - [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_extern] = ACTIONS(1434), - [anon_sym_yield] = ACTIONS(1434), - [anon_sym_move] = ACTIONS(1434), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1434), - [sym_super] = ACTIONS(1434), - [sym_crate] = ACTIONS(1434), - [sym_metavariable] = ACTIONS(1432), - [sym__raw_string_literal_start] = ACTIONS(1432), - [sym_float_literal] = ACTIONS(1432), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(1353), + [anon_sym_LPAREN] = ACTIONS(1355), + [anon_sym_RPAREN] = ACTIONS(1457), + [anon_sym_LBRACK] = ACTIONS(1359), + [anon_sym_COMMA] = ACTIONS(1459), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1367), + [anon_sym_i8] = ACTIONS(1367), + [anon_sym_u16] = ACTIONS(1367), + [anon_sym_i16] = ACTIONS(1367), + [anon_sym_u32] = ACTIONS(1367), + [anon_sym_i32] = ACTIONS(1367), + [anon_sym_u64] = ACTIONS(1367), + [anon_sym_i64] = ACTIONS(1367), + [anon_sym_u128] = ACTIONS(1367), + [anon_sym_i128] = ACTIONS(1367), + [anon_sym_isize] = ACTIONS(1367), + [anon_sym_usize] = ACTIONS(1367), + [anon_sym_f32] = ACTIONS(1367), + [anon_sym_f64] = ACTIONS(1367), + [anon_sym_bool] = ACTIONS(1367), + [anon_sym_str] = ACTIONS(1367), + [anon_sym_char] = ACTIONS(1367), + [anon_sym_DASH] = ACTIONS(1369), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1373), + [anon_sym_PIPE] = ACTIONS(1375), + [anon_sym_LT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1461), + [anon_sym_DOT_DOT] = ACTIONS(1379), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1381), + [anon_sym_COLON_COLON] = ACTIONS(1383), + [anon_sym_POUND] = ACTIONS(1385), + [anon_sym_SQUOTE] = ACTIONS(1387), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1391), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1401), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_ref] = ACTIONS(1405), + [anon_sym_dyn] = ACTIONS(1407), + [sym_mutable_specifier] = ACTIONS(1409), + [sym_integer_literal] = ACTIONS(1411), + [aux_sym_string_literal_token1] = ACTIONS(1413), + [sym_char_literal] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1415), + [anon_sym_false] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1417), + [sym_super] = ACTIONS(1419), + [sym_crate] = ACTIONS(1419), + [sym_metavariable] = ACTIONS(1421), + [sym__raw_string_literal_start] = ACTIONS(1423), + [sym_float_literal] = ACTIONS(1411), }, [405] = { - [sym_attribute_item] = STATE(415), - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_self_parameter] = STATE(3088), - [sym_variadic_parameter] = STATE(3088), - [sym_parameter] = STATE(3088), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2763), - [sym_bracketed_type] = STATE(3520), - [sym_lifetime] = STATE(2985), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3198), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(2480), - [sym_scoped_identifier] = STATE(2216), - [sym_scoped_type_identifier] = STATE(2114), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(3268), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_attribute_item] = STATE(421), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_self_parameter] = STATE(2990), + [sym_variadic_parameter] = STATE(2990), + [sym_parameter] = STATE(2990), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2606), + [sym_bracketed_type] = STATE(3622), + [sym_lifetime] = STATE(3000), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3185), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2542), + [sym_scoped_identifier] = STATE(2112), + [sym_scoped_type_identifier] = STATE(2116), + [sym_const_block] = STATE(2160), + [sym__pattern] = STATE(2515), + [sym_tuple_pattern] = STATE(2160), + [sym_slice_pattern] = STATE(2160), + [sym_tuple_struct_pattern] = STATE(2160), + [sym_struct_pattern] = STATE(2160), + [sym_remaining_field_pattern] = STATE(2160), + [sym_mut_pattern] = STATE(2160), + [sym_range_pattern] = STATE(2160), + [sym_ref_pattern] = STATE(2160), + [sym_captured_pattern] = STATE(2160), + [sym_reference_pattern] = STATE(2160), + [sym_or_pattern] = STATE(2160), + [sym__literal_pattern] = STATE(2036), + [sym_negative_literal] = STATE(2048), + [sym_string_literal] = STATE(2048), + [sym_raw_string_literal] = STATE(2048), + [sym_boolean_literal] = STATE(2048), [sym_line_comment] = STATE(405), [sym_block_comment] = STATE(405), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1326), - [anon_sym_RPAREN] = ACTIONS(1464), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1332), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1456), - [anon_sym_DOT_DOT] = ACTIONS(1272), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1274), - [anon_sym_COLON_COLON] = ACTIONS(1338), - [anon_sym_POUND] = ACTIONS(1280), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1340), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1342), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(1304), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1344), - [sym_super] = ACTIONS(1346), - [sym_crate] = ACTIONS(1346), - [sym_metavariable] = ACTIONS(1348), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1427), + [anon_sym_RPAREN] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1359), + [anon_sym_COMMA] = ACTIONS(1465), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1433), + [anon_sym_i8] = ACTIONS(1433), + [anon_sym_u16] = ACTIONS(1433), + [anon_sym_i16] = ACTIONS(1433), + [anon_sym_u32] = ACTIONS(1433), + [anon_sym_i32] = ACTIONS(1433), + [anon_sym_u64] = ACTIONS(1433), + [anon_sym_i64] = ACTIONS(1433), + [anon_sym_u128] = ACTIONS(1433), + [anon_sym_i128] = ACTIONS(1433), + [anon_sym_isize] = ACTIONS(1433), + [anon_sym_usize] = ACTIONS(1433), + [anon_sym_f32] = ACTIONS(1433), + [anon_sym_f64] = ACTIONS(1433), + [anon_sym_bool] = ACTIONS(1433), + [anon_sym_str] = ACTIONS(1433), + [anon_sym_char] = ACTIONS(1433), + [anon_sym_DASH] = ACTIONS(1369), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_PIPE] = ACTIONS(1375), + [anon_sym_LT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1437), + [anon_sym_DOT_DOT] = ACTIONS(1379), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1381), + [anon_sym_COLON_COLON] = ACTIONS(1439), + [anon_sym_POUND] = ACTIONS(1385), + [anon_sym_SQUOTE] = ACTIONS(1387), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1391), + [anon_sym_default] = ACTIONS(1441), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1443), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_ref] = ACTIONS(1405), + [anon_sym_dyn] = ACTIONS(1407), + [sym_mutable_specifier] = ACTIONS(1409), + [sym_integer_literal] = ACTIONS(1411), + [aux_sym_string_literal_token1] = ACTIONS(1413), + [sym_char_literal] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1415), + [anon_sym_false] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1445), + [sym_super] = ACTIONS(1447), + [sym_crate] = ACTIONS(1447), + [sym_metavariable] = ACTIONS(1449), + [sym__raw_string_literal_start] = ACTIONS(1423), + [sym_float_literal] = ACTIONS(1411), }, [406] = { - [sym_attribute_item] = STATE(415), - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_self_parameter] = STATE(3088), - [sym_variadic_parameter] = STATE(3088), - [sym_parameter] = STATE(3088), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2763), - [sym_bracketed_type] = STATE(3520), - [sym_lifetime] = STATE(2985), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3198), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(2480), - [sym_scoped_identifier] = STATE(2216), - [sym_scoped_type_identifier] = STATE(2114), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(3268), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_attribute_item] = STATE(421), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_self_parameter] = STATE(2990), + [sym_variadic_parameter] = STATE(2990), + [sym_parameter] = STATE(2990), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2606), + [sym_bracketed_type] = STATE(3622), + [sym_lifetime] = STATE(3000), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3185), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2542), + [sym_scoped_identifier] = STATE(2112), + [sym_scoped_type_identifier] = STATE(2116), + [sym_const_block] = STATE(2160), + [sym__pattern] = STATE(2515), + [sym_tuple_pattern] = STATE(2160), + [sym_slice_pattern] = STATE(2160), + [sym_tuple_struct_pattern] = STATE(2160), + [sym_struct_pattern] = STATE(2160), + [sym_remaining_field_pattern] = STATE(2160), + [sym_mut_pattern] = STATE(2160), + [sym_range_pattern] = STATE(2160), + [sym_ref_pattern] = STATE(2160), + [sym_captured_pattern] = STATE(2160), + [sym_reference_pattern] = STATE(2160), + [sym_or_pattern] = STATE(2160), + [sym__literal_pattern] = STATE(2036), + [sym_negative_literal] = STATE(2048), + [sym_string_literal] = STATE(2048), + [sym_raw_string_literal] = STATE(2048), + [sym_boolean_literal] = STATE(2048), [sym_line_comment] = STATE(406), [sym_block_comment] = STATE(406), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1326), - [anon_sym_RPAREN] = ACTIONS(1466), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1332), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1456), - [anon_sym_DOT_DOT] = ACTIONS(1272), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1274), - [anon_sym_COLON_COLON] = ACTIONS(1338), - [anon_sym_POUND] = ACTIONS(1280), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1340), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1342), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(1304), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1344), - [sym_super] = ACTIONS(1346), - [sym_crate] = ACTIONS(1346), - [sym_metavariable] = ACTIONS(1348), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1427), + [anon_sym_RPAREN] = ACTIONS(1467), + [anon_sym_LBRACK] = ACTIONS(1359), + [anon_sym_COMMA] = ACTIONS(1469), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1433), + [anon_sym_i8] = ACTIONS(1433), + [anon_sym_u16] = ACTIONS(1433), + [anon_sym_i16] = ACTIONS(1433), + [anon_sym_u32] = ACTIONS(1433), + [anon_sym_i32] = ACTIONS(1433), + [anon_sym_u64] = ACTIONS(1433), + [anon_sym_i64] = ACTIONS(1433), + [anon_sym_u128] = ACTIONS(1433), + [anon_sym_i128] = ACTIONS(1433), + [anon_sym_isize] = ACTIONS(1433), + [anon_sym_usize] = ACTIONS(1433), + [anon_sym_f32] = ACTIONS(1433), + [anon_sym_f64] = ACTIONS(1433), + [anon_sym_bool] = ACTIONS(1433), + [anon_sym_str] = ACTIONS(1433), + [anon_sym_char] = ACTIONS(1433), + [anon_sym_DASH] = ACTIONS(1369), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_PIPE] = ACTIONS(1375), + [anon_sym_LT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1437), + [anon_sym_DOT_DOT] = ACTIONS(1379), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1381), + [anon_sym_COLON_COLON] = ACTIONS(1439), + [anon_sym_POUND] = ACTIONS(1385), + [anon_sym_SQUOTE] = ACTIONS(1387), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1391), + [anon_sym_default] = ACTIONS(1441), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1443), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_ref] = ACTIONS(1405), + [anon_sym_dyn] = ACTIONS(1407), + [sym_mutable_specifier] = ACTIONS(1409), + [sym_integer_literal] = ACTIONS(1411), + [aux_sym_string_literal_token1] = ACTIONS(1413), + [sym_char_literal] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1415), + [anon_sym_false] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1445), + [sym_super] = ACTIONS(1447), + [sym_crate] = ACTIONS(1447), + [sym_metavariable] = ACTIONS(1449), + [sym__raw_string_literal_start] = ACTIONS(1423), + [sym_float_literal] = ACTIONS(1411), }, [407] = { - [sym_attribute_item] = STATE(415), - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_self_parameter] = STATE(3088), - [sym_variadic_parameter] = STATE(3088), - [sym_parameter] = STATE(3088), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2763), - [sym_bracketed_type] = STATE(3520), - [sym_lifetime] = STATE(2985), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3198), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(2480), - [sym_scoped_identifier] = STATE(2216), - [sym_scoped_type_identifier] = STATE(2114), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(3268), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_attribute_item] = STATE(420), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_self_parameter] = STATE(3301), + [sym_variadic_parameter] = STATE(3301), + [sym_parameter] = STATE(3301), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2823), + [sym_bracketed_type] = STATE(3615), + [sym_lifetime] = STATE(3000), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3395), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2487), + [sym_scoped_identifier] = STATE(2249), + [sym_scoped_type_identifier] = STATE(2116), + [sym_const_block] = STATE(2160), + [sym__pattern] = STATE(3202), + [sym_tuple_pattern] = STATE(2160), + [sym_slice_pattern] = STATE(2160), + [sym_tuple_struct_pattern] = STATE(2160), + [sym_struct_pattern] = STATE(2160), + [sym_remaining_field_pattern] = STATE(2160), + [sym_mut_pattern] = STATE(2160), + [sym_range_pattern] = STATE(2160), + [sym_ref_pattern] = STATE(2160), + [sym_captured_pattern] = STATE(2160), + [sym_reference_pattern] = STATE(2160), + [sym_or_pattern] = STATE(2160), + [sym__literal_pattern] = STATE(2036), + [sym_negative_literal] = STATE(2048), + [sym_string_literal] = STATE(2048), + [sym_raw_string_literal] = STATE(2048), + [sym_boolean_literal] = STATE(2048), [sym_line_comment] = STATE(407), [sym_block_comment] = STATE(407), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1326), - [anon_sym_RPAREN] = ACTIONS(1468), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1332), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1456), - [anon_sym_DOT_DOT] = ACTIONS(1272), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1274), - [anon_sym_COLON_COLON] = ACTIONS(1338), - [anon_sym_POUND] = ACTIONS(1280), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1340), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1342), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(1304), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1344), - [sym_super] = ACTIONS(1346), - [sym_crate] = ACTIONS(1346), - [sym_metavariable] = ACTIONS(1348), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(1353), + [anon_sym_LPAREN] = ACTIONS(1355), + [anon_sym_RPAREN] = ACTIONS(1471), + [anon_sym_LBRACK] = ACTIONS(1359), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1367), + [anon_sym_i8] = ACTIONS(1367), + [anon_sym_u16] = ACTIONS(1367), + [anon_sym_i16] = ACTIONS(1367), + [anon_sym_u32] = ACTIONS(1367), + [anon_sym_i32] = ACTIONS(1367), + [anon_sym_u64] = ACTIONS(1367), + [anon_sym_i64] = ACTIONS(1367), + [anon_sym_u128] = ACTIONS(1367), + [anon_sym_i128] = ACTIONS(1367), + [anon_sym_isize] = ACTIONS(1367), + [anon_sym_usize] = ACTIONS(1367), + [anon_sym_f32] = ACTIONS(1367), + [anon_sym_f64] = ACTIONS(1367), + [anon_sym_bool] = ACTIONS(1367), + [anon_sym_str] = ACTIONS(1367), + [anon_sym_char] = ACTIONS(1367), + [anon_sym_DASH] = ACTIONS(1369), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1373), + [anon_sym_PIPE] = ACTIONS(1375), + [anon_sym_LT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1473), + [anon_sym_DOT_DOT] = ACTIONS(1379), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1381), + [anon_sym_COLON_COLON] = ACTIONS(1383), + [anon_sym_POUND] = ACTIONS(1385), + [anon_sym_SQUOTE] = ACTIONS(1387), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1391), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1401), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_ref] = ACTIONS(1405), + [anon_sym_dyn] = ACTIONS(1407), + [sym_mutable_specifier] = ACTIONS(1409), + [sym_integer_literal] = ACTIONS(1411), + [aux_sym_string_literal_token1] = ACTIONS(1413), + [sym_char_literal] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1415), + [anon_sym_false] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1417), + [sym_super] = ACTIONS(1419), + [sym_crate] = ACTIONS(1419), + [sym_metavariable] = ACTIONS(1421), + [sym__raw_string_literal_start] = ACTIONS(1423), + [sym_float_literal] = ACTIONS(1411), }, [408] = { - [sym_attribute_item] = STATE(415), - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_self_parameter] = STATE(3088), - [sym_variadic_parameter] = STATE(3088), - [sym_parameter] = STATE(3088), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2763), - [sym_bracketed_type] = STATE(3520), - [sym_lifetime] = STATE(2985), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3198), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(2480), - [sym_scoped_identifier] = STATE(2216), - [sym_scoped_type_identifier] = STATE(2114), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(3268), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_attribute_item] = STATE(420), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_self_parameter] = STATE(3301), + [sym_variadic_parameter] = STATE(3301), + [sym_parameter] = STATE(3301), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2823), + [sym_bracketed_type] = STATE(3615), + [sym_lifetime] = STATE(3000), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3395), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2487), + [sym_scoped_identifier] = STATE(2249), + [sym_scoped_type_identifier] = STATE(2116), + [sym_const_block] = STATE(2160), + [sym__pattern] = STATE(3202), + [sym_tuple_pattern] = STATE(2160), + [sym_slice_pattern] = STATE(2160), + [sym_tuple_struct_pattern] = STATE(2160), + [sym_struct_pattern] = STATE(2160), + [sym_remaining_field_pattern] = STATE(2160), + [sym_mut_pattern] = STATE(2160), + [sym_range_pattern] = STATE(2160), + [sym_ref_pattern] = STATE(2160), + [sym_captured_pattern] = STATE(2160), + [sym_reference_pattern] = STATE(2160), + [sym_or_pattern] = STATE(2160), + [sym__literal_pattern] = STATE(2036), + [sym_negative_literal] = STATE(2048), + [sym_string_literal] = STATE(2048), + [sym_raw_string_literal] = STATE(2048), + [sym_boolean_literal] = STATE(2048), [sym_line_comment] = STATE(408), [sym_block_comment] = STATE(408), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1326), - [anon_sym_RPAREN] = ACTIONS(1470), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1332), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1456), - [anon_sym_DOT_DOT] = ACTIONS(1272), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1274), - [anon_sym_COLON_COLON] = ACTIONS(1338), - [anon_sym_POUND] = ACTIONS(1280), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1340), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1342), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(1304), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1344), - [sym_super] = ACTIONS(1346), - [sym_crate] = ACTIONS(1346), - [sym_metavariable] = ACTIONS(1348), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(1353), + [anon_sym_LPAREN] = ACTIONS(1355), + [anon_sym_RPAREN] = ACTIONS(1475), + [anon_sym_LBRACK] = ACTIONS(1359), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1367), + [anon_sym_i8] = ACTIONS(1367), + [anon_sym_u16] = ACTIONS(1367), + [anon_sym_i16] = ACTIONS(1367), + [anon_sym_u32] = ACTIONS(1367), + [anon_sym_i32] = ACTIONS(1367), + [anon_sym_u64] = ACTIONS(1367), + [anon_sym_i64] = ACTIONS(1367), + [anon_sym_u128] = ACTIONS(1367), + [anon_sym_i128] = ACTIONS(1367), + [anon_sym_isize] = ACTIONS(1367), + [anon_sym_usize] = ACTIONS(1367), + [anon_sym_f32] = ACTIONS(1367), + [anon_sym_f64] = ACTIONS(1367), + [anon_sym_bool] = ACTIONS(1367), + [anon_sym_str] = ACTIONS(1367), + [anon_sym_char] = ACTIONS(1367), + [anon_sym_DASH] = ACTIONS(1369), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1373), + [anon_sym_PIPE] = ACTIONS(1375), + [anon_sym_LT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1473), + [anon_sym_DOT_DOT] = ACTIONS(1379), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1381), + [anon_sym_COLON_COLON] = ACTIONS(1383), + [anon_sym_POUND] = ACTIONS(1385), + [anon_sym_SQUOTE] = ACTIONS(1387), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1391), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1401), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_ref] = ACTIONS(1405), + [anon_sym_dyn] = ACTIONS(1407), + [sym_mutable_specifier] = ACTIONS(1409), + [sym_integer_literal] = ACTIONS(1411), + [aux_sym_string_literal_token1] = ACTIONS(1413), + [sym_char_literal] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1415), + [anon_sym_false] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1417), + [sym_super] = ACTIONS(1419), + [sym_crate] = ACTIONS(1419), + [sym_metavariable] = ACTIONS(1421), + [sym__raw_string_literal_start] = ACTIONS(1423), + [sym_float_literal] = ACTIONS(1411), }, [409] = { - [sym_attribute_item] = STATE(415), - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_self_parameter] = STATE(3088), - [sym_variadic_parameter] = STATE(3088), - [sym_parameter] = STATE(3088), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2763), - [sym_bracketed_type] = STATE(3520), - [sym_lifetime] = STATE(2985), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3198), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(2480), - [sym_scoped_identifier] = STATE(2216), - [sym_scoped_type_identifier] = STATE(2114), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(3268), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_attribute_item] = STATE(420), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_self_parameter] = STATE(3301), + [sym_variadic_parameter] = STATE(3301), + [sym_parameter] = STATE(3301), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2823), + [sym_bracketed_type] = STATE(3615), + [sym_lifetime] = STATE(3000), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3395), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2487), + [sym_scoped_identifier] = STATE(2249), + [sym_scoped_type_identifier] = STATE(2116), + [sym_const_block] = STATE(2160), + [sym__pattern] = STATE(3202), + [sym_tuple_pattern] = STATE(2160), + [sym_slice_pattern] = STATE(2160), + [sym_tuple_struct_pattern] = STATE(2160), + [sym_struct_pattern] = STATE(2160), + [sym_remaining_field_pattern] = STATE(2160), + [sym_mut_pattern] = STATE(2160), + [sym_range_pattern] = STATE(2160), + [sym_ref_pattern] = STATE(2160), + [sym_captured_pattern] = STATE(2160), + [sym_reference_pattern] = STATE(2160), + [sym_or_pattern] = STATE(2160), + [sym__literal_pattern] = STATE(2036), + [sym_negative_literal] = STATE(2048), + [sym_string_literal] = STATE(2048), + [sym_raw_string_literal] = STATE(2048), + [sym_boolean_literal] = STATE(2048), [sym_line_comment] = STATE(409), [sym_block_comment] = STATE(409), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1326), - [anon_sym_RPAREN] = ACTIONS(1472), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1332), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1456), - [anon_sym_DOT_DOT] = ACTIONS(1272), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1274), - [anon_sym_COLON_COLON] = ACTIONS(1338), - [anon_sym_POUND] = ACTIONS(1280), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1340), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1342), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(1304), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1344), - [sym_super] = ACTIONS(1346), - [sym_crate] = ACTIONS(1346), - [sym_metavariable] = ACTIONS(1348), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(1353), + [anon_sym_LPAREN] = ACTIONS(1355), + [anon_sym_RPAREN] = ACTIONS(1477), + [anon_sym_LBRACK] = ACTIONS(1359), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1367), + [anon_sym_i8] = ACTIONS(1367), + [anon_sym_u16] = ACTIONS(1367), + [anon_sym_i16] = ACTIONS(1367), + [anon_sym_u32] = ACTIONS(1367), + [anon_sym_i32] = ACTIONS(1367), + [anon_sym_u64] = ACTIONS(1367), + [anon_sym_i64] = ACTIONS(1367), + [anon_sym_u128] = ACTIONS(1367), + [anon_sym_i128] = ACTIONS(1367), + [anon_sym_isize] = ACTIONS(1367), + [anon_sym_usize] = ACTIONS(1367), + [anon_sym_f32] = ACTIONS(1367), + [anon_sym_f64] = ACTIONS(1367), + [anon_sym_bool] = ACTIONS(1367), + [anon_sym_str] = ACTIONS(1367), + [anon_sym_char] = ACTIONS(1367), + [anon_sym_DASH] = ACTIONS(1369), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1373), + [anon_sym_PIPE] = ACTIONS(1375), + [anon_sym_LT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1473), + [anon_sym_DOT_DOT] = ACTIONS(1379), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1381), + [anon_sym_COLON_COLON] = ACTIONS(1383), + [anon_sym_POUND] = ACTIONS(1385), + [anon_sym_SQUOTE] = ACTIONS(1387), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1391), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1401), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_ref] = ACTIONS(1405), + [anon_sym_dyn] = ACTIONS(1407), + [sym_mutable_specifier] = ACTIONS(1409), + [sym_integer_literal] = ACTIONS(1411), + [aux_sym_string_literal_token1] = ACTIONS(1413), + [sym_char_literal] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1415), + [anon_sym_false] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1417), + [sym_super] = ACTIONS(1419), + [sym_crate] = ACTIONS(1419), + [sym_metavariable] = ACTIONS(1421), + [sym__raw_string_literal_start] = ACTIONS(1423), + [sym_float_literal] = ACTIONS(1411), }, [410] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2576), - [sym_bracketed_type] = STATE(3527), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3273), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), + [sym_attribute_item] = STATE(420), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_self_parameter] = STATE(3301), + [sym_variadic_parameter] = STATE(3301), + [sym_parameter] = STATE(3301), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2823), + [sym_bracketed_type] = STATE(3615), + [sym_lifetime] = STATE(3000), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3395), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), [sym_macro_invocation] = STATE(2487), - [sym_scoped_identifier] = STATE(2113), - [sym_scoped_type_identifier] = STATE(2114), - [sym_const_block] = STATE(2079), - [sym_closure_expression] = STATE(2855), - [sym_closure_parameters] = STATE(230), - [sym__pattern] = STATE(2640), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_scoped_identifier] = STATE(2249), + [sym_scoped_type_identifier] = STATE(2116), + [sym_const_block] = STATE(2160), + [sym__pattern] = STATE(3202), + [sym_tuple_pattern] = STATE(2160), + [sym_slice_pattern] = STATE(2160), + [sym_tuple_struct_pattern] = STATE(2160), + [sym_struct_pattern] = STATE(2160), + [sym_remaining_field_pattern] = STATE(2160), + [sym_mut_pattern] = STATE(2160), + [sym_range_pattern] = STATE(2160), + [sym_ref_pattern] = STATE(2160), + [sym_captured_pattern] = STATE(2160), + [sym_reference_pattern] = STATE(2160), + [sym_or_pattern] = STATE(2160), + [sym__literal_pattern] = STATE(2036), + [sym_negative_literal] = STATE(2048), + [sym_string_literal] = STATE(2048), + [sym_raw_string_literal] = STATE(2048), + [sym_boolean_literal] = STATE(2048), [sym_line_comment] = STATE(410), [sym_block_comment] = STATE(410), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1248), - [anon_sym_LPAREN] = ACTIONS(1250), - [anon_sym_RPAREN] = ACTIONS(1474), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = 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_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1476), - [anon_sym_PIPE] = ACTIONS(1478), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COMMA] = ACTIONS(1484), - [anon_sym_COLON_COLON] = ACTIONS(1278), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1288), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_static] = ACTIONS(1486), - [anon_sym_union] = ACTIONS(1296), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(1488), - [anon_sym_move] = ACTIONS(1490), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1314), - [sym_super] = ACTIONS(1314), - [sym_crate] = ACTIONS(1314), - [sym_metavariable] = ACTIONS(1316), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(1353), + [anon_sym_LPAREN] = ACTIONS(1355), + [anon_sym_RPAREN] = ACTIONS(1479), + [anon_sym_LBRACK] = ACTIONS(1359), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1367), + [anon_sym_i8] = ACTIONS(1367), + [anon_sym_u16] = ACTIONS(1367), + [anon_sym_i16] = ACTIONS(1367), + [anon_sym_u32] = ACTIONS(1367), + [anon_sym_i32] = ACTIONS(1367), + [anon_sym_u64] = ACTIONS(1367), + [anon_sym_i64] = ACTIONS(1367), + [anon_sym_u128] = ACTIONS(1367), + [anon_sym_i128] = ACTIONS(1367), + [anon_sym_isize] = ACTIONS(1367), + [anon_sym_usize] = ACTIONS(1367), + [anon_sym_f32] = ACTIONS(1367), + [anon_sym_f64] = ACTIONS(1367), + [anon_sym_bool] = ACTIONS(1367), + [anon_sym_str] = ACTIONS(1367), + [anon_sym_char] = ACTIONS(1367), + [anon_sym_DASH] = ACTIONS(1369), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1373), + [anon_sym_PIPE] = ACTIONS(1375), + [anon_sym_LT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1473), + [anon_sym_DOT_DOT] = ACTIONS(1379), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1381), + [anon_sym_COLON_COLON] = ACTIONS(1383), + [anon_sym_POUND] = ACTIONS(1385), + [anon_sym_SQUOTE] = ACTIONS(1387), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1391), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1401), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_ref] = ACTIONS(1405), + [anon_sym_dyn] = ACTIONS(1407), + [sym_mutable_specifier] = ACTIONS(1409), + [sym_integer_literal] = ACTIONS(1411), + [aux_sym_string_literal_token1] = ACTIONS(1413), + [sym_char_literal] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1415), + [anon_sym_false] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1417), + [sym_super] = ACTIONS(1419), + [sym_crate] = ACTIONS(1419), + [sym_metavariable] = ACTIONS(1421), + [sym__raw_string_literal_start] = ACTIONS(1423), + [sym_float_literal] = ACTIONS(1411), }, [411] = { - [sym_attribute_item] = STATE(415), - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_self_parameter] = STATE(3088), - [sym_variadic_parameter] = STATE(3088), - [sym_parameter] = STATE(3088), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2763), - [sym_bracketed_type] = STATE(3520), - [sym_lifetime] = STATE(2985), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3198), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(2480), - [sym_scoped_identifier] = STATE(2216), - [sym_scoped_type_identifier] = STATE(2114), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(3268), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_attribute_item] = STATE(420), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_self_parameter] = STATE(3301), + [sym_variadic_parameter] = STATE(3301), + [sym_parameter] = STATE(3301), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2823), + [sym_bracketed_type] = STATE(3615), + [sym_lifetime] = STATE(3000), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3395), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2487), + [sym_scoped_identifier] = STATE(2249), + [sym_scoped_type_identifier] = STATE(2116), + [sym_const_block] = STATE(2160), + [sym__pattern] = STATE(3202), + [sym_tuple_pattern] = STATE(2160), + [sym_slice_pattern] = STATE(2160), + [sym_tuple_struct_pattern] = STATE(2160), + [sym_struct_pattern] = STATE(2160), + [sym_remaining_field_pattern] = STATE(2160), + [sym_mut_pattern] = STATE(2160), + [sym_range_pattern] = STATE(2160), + [sym_ref_pattern] = STATE(2160), + [sym_captured_pattern] = STATE(2160), + [sym_reference_pattern] = STATE(2160), + [sym_or_pattern] = STATE(2160), + [sym__literal_pattern] = STATE(2036), + [sym_negative_literal] = STATE(2048), + [sym_string_literal] = STATE(2048), + [sym_raw_string_literal] = STATE(2048), + [sym_boolean_literal] = STATE(2048), [sym_line_comment] = STATE(411), [sym_block_comment] = STATE(411), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1326), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1332), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1456), - [anon_sym_DOT_DOT] = ACTIONS(1272), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1274), - [anon_sym_COLON_COLON] = ACTIONS(1338), - [anon_sym_POUND] = ACTIONS(1280), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1340), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1342), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(1304), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1344), - [sym_super] = ACTIONS(1346), - [sym_crate] = ACTIONS(1346), - [sym_metavariable] = ACTIONS(1348), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(1353), + [anon_sym_LPAREN] = ACTIONS(1355), + [anon_sym_RPAREN] = ACTIONS(1481), + [anon_sym_LBRACK] = ACTIONS(1359), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1367), + [anon_sym_i8] = ACTIONS(1367), + [anon_sym_u16] = ACTIONS(1367), + [anon_sym_i16] = ACTIONS(1367), + [anon_sym_u32] = ACTIONS(1367), + [anon_sym_i32] = ACTIONS(1367), + [anon_sym_u64] = ACTIONS(1367), + [anon_sym_i64] = ACTIONS(1367), + [anon_sym_u128] = ACTIONS(1367), + [anon_sym_i128] = ACTIONS(1367), + [anon_sym_isize] = ACTIONS(1367), + [anon_sym_usize] = ACTIONS(1367), + [anon_sym_f32] = ACTIONS(1367), + [anon_sym_f64] = ACTIONS(1367), + [anon_sym_bool] = ACTIONS(1367), + [anon_sym_str] = ACTIONS(1367), + [anon_sym_char] = ACTIONS(1367), + [anon_sym_DASH] = ACTIONS(1369), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1373), + [anon_sym_PIPE] = ACTIONS(1375), + [anon_sym_LT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1473), + [anon_sym_DOT_DOT] = ACTIONS(1379), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1381), + [anon_sym_COLON_COLON] = ACTIONS(1383), + [anon_sym_POUND] = ACTIONS(1385), + [anon_sym_SQUOTE] = ACTIONS(1387), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1391), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1401), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_ref] = ACTIONS(1405), + [anon_sym_dyn] = ACTIONS(1407), + [sym_mutable_specifier] = ACTIONS(1409), + [sym_integer_literal] = ACTIONS(1411), + [aux_sym_string_literal_token1] = ACTIONS(1413), + [sym_char_literal] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1415), + [anon_sym_false] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1417), + [sym_super] = ACTIONS(1419), + [sym_crate] = ACTIONS(1419), + [sym_metavariable] = ACTIONS(1421), + [sym__raw_string_literal_start] = ACTIONS(1423), + [sym_float_literal] = ACTIONS(1411), }, [412] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2576), - [sym_bracketed_type] = STATE(3527), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3273), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), + [sym_attribute_item] = STATE(420), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_self_parameter] = STATE(3301), + [sym_variadic_parameter] = STATE(3301), + [sym_parameter] = STATE(3301), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2823), + [sym_bracketed_type] = STATE(3615), + [sym_lifetime] = STATE(3000), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3395), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), [sym_macro_invocation] = STATE(2487), - [sym_scoped_identifier] = STATE(2113), - [sym_scoped_type_identifier] = STATE(2114), - [sym_const_block] = STATE(2079), - [sym_closure_expression] = STATE(2855), - [sym_closure_parameters] = STATE(230), - [sym__pattern] = STATE(2640), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_scoped_identifier] = STATE(2249), + [sym_scoped_type_identifier] = STATE(2116), + [sym_const_block] = STATE(2160), + [sym__pattern] = STATE(3202), + [sym_tuple_pattern] = STATE(2160), + [sym_slice_pattern] = STATE(2160), + [sym_tuple_struct_pattern] = STATE(2160), + [sym_struct_pattern] = STATE(2160), + [sym_remaining_field_pattern] = STATE(2160), + [sym_mut_pattern] = STATE(2160), + [sym_range_pattern] = STATE(2160), + [sym_ref_pattern] = STATE(2160), + [sym_captured_pattern] = STATE(2160), + [sym_reference_pattern] = STATE(2160), + [sym_or_pattern] = STATE(2160), + [sym__literal_pattern] = STATE(2036), + [sym_negative_literal] = STATE(2048), + [sym_string_literal] = STATE(2048), + [sym_raw_string_literal] = STATE(2048), + [sym_boolean_literal] = STATE(2048), [sym_line_comment] = STATE(412), [sym_block_comment] = STATE(412), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1248), - [anon_sym_LPAREN] = ACTIONS(1250), - [anon_sym_RPAREN] = ACTIONS(1492), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = 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_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1476), - [anon_sym_PIPE] = ACTIONS(1478), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COMMA] = ACTIONS(1484), - [anon_sym_COLON_COLON] = ACTIONS(1278), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1288), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_static] = ACTIONS(1486), - [anon_sym_union] = ACTIONS(1296), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(1488), - [anon_sym_move] = ACTIONS(1490), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1314), - [sym_super] = ACTIONS(1314), - [sym_crate] = ACTIONS(1314), - [sym_metavariable] = ACTIONS(1316), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(1353), + [anon_sym_LPAREN] = ACTIONS(1355), + [anon_sym_RPAREN] = ACTIONS(1483), + [anon_sym_LBRACK] = ACTIONS(1359), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1367), + [anon_sym_i8] = ACTIONS(1367), + [anon_sym_u16] = ACTIONS(1367), + [anon_sym_i16] = ACTIONS(1367), + [anon_sym_u32] = ACTIONS(1367), + [anon_sym_i32] = ACTIONS(1367), + [anon_sym_u64] = ACTIONS(1367), + [anon_sym_i64] = ACTIONS(1367), + [anon_sym_u128] = ACTIONS(1367), + [anon_sym_i128] = ACTIONS(1367), + [anon_sym_isize] = ACTIONS(1367), + [anon_sym_usize] = ACTIONS(1367), + [anon_sym_f32] = ACTIONS(1367), + [anon_sym_f64] = ACTIONS(1367), + [anon_sym_bool] = ACTIONS(1367), + [anon_sym_str] = ACTIONS(1367), + [anon_sym_char] = ACTIONS(1367), + [anon_sym_DASH] = ACTIONS(1369), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1373), + [anon_sym_PIPE] = ACTIONS(1375), + [anon_sym_LT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1473), + [anon_sym_DOT_DOT] = ACTIONS(1379), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1381), + [anon_sym_COLON_COLON] = ACTIONS(1383), + [anon_sym_POUND] = ACTIONS(1385), + [anon_sym_SQUOTE] = ACTIONS(1387), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1391), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1401), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_ref] = ACTIONS(1405), + [anon_sym_dyn] = ACTIONS(1407), + [sym_mutable_specifier] = ACTIONS(1409), + [sym_integer_literal] = ACTIONS(1411), + [aux_sym_string_literal_token1] = ACTIONS(1413), + [sym_char_literal] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1415), + [anon_sym_false] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1417), + [sym_super] = ACTIONS(1419), + [sym_crate] = ACTIONS(1419), + [sym_metavariable] = ACTIONS(1421), + [sym__raw_string_literal_start] = ACTIONS(1423), + [sym_float_literal] = ACTIONS(1411), }, [413] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2576), - [sym_bracketed_type] = STATE(3527), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3273), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), + [sym_attribute_item] = STATE(420), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_self_parameter] = STATE(3301), + [sym_variadic_parameter] = STATE(3301), + [sym_parameter] = STATE(3301), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2823), + [sym_bracketed_type] = STATE(3615), + [sym_lifetime] = STATE(3000), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3395), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), [sym_macro_invocation] = STATE(2487), - [sym_scoped_identifier] = STATE(2113), - [sym_scoped_type_identifier] = STATE(2114), - [sym_const_block] = STATE(2079), - [sym_closure_expression] = STATE(2855), - [sym_closure_parameters] = STATE(230), - [sym__pattern] = STATE(2640), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_scoped_identifier] = STATE(2249), + [sym_scoped_type_identifier] = STATE(2116), + [sym_const_block] = STATE(2160), + [sym__pattern] = STATE(3202), + [sym_tuple_pattern] = STATE(2160), + [sym_slice_pattern] = STATE(2160), + [sym_tuple_struct_pattern] = STATE(2160), + [sym_struct_pattern] = STATE(2160), + [sym_remaining_field_pattern] = STATE(2160), + [sym_mut_pattern] = STATE(2160), + [sym_range_pattern] = STATE(2160), + [sym_ref_pattern] = STATE(2160), + [sym_captured_pattern] = STATE(2160), + [sym_reference_pattern] = STATE(2160), + [sym_or_pattern] = STATE(2160), + [sym__literal_pattern] = STATE(2036), + [sym_negative_literal] = STATE(2048), + [sym_string_literal] = STATE(2048), + [sym_raw_string_literal] = STATE(2048), + [sym_boolean_literal] = STATE(2048), [sym_line_comment] = STATE(413), [sym_block_comment] = STATE(413), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1248), - [anon_sym_LPAREN] = ACTIONS(1250), - [anon_sym_RPAREN] = ACTIONS(1494), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = 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_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1476), - [anon_sym_PIPE] = ACTIONS(1478), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COMMA] = ACTIONS(1484), - [anon_sym_COLON_COLON] = ACTIONS(1278), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1288), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_static] = ACTIONS(1486), - [anon_sym_union] = ACTIONS(1296), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(1488), - [anon_sym_move] = ACTIONS(1490), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1314), - [sym_super] = ACTIONS(1314), - [sym_crate] = ACTIONS(1314), - [sym_metavariable] = ACTIONS(1316), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(1353), + [anon_sym_LPAREN] = ACTIONS(1355), + [anon_sym_RPAREN] = ACTIONS(1485), + [anon_sym_LBRACK] = ACTIONS(1359), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1367), + [anon_sym_i8] = ACTIONS(1367), + [anon_sym_u16] = ACTIONS(1367), + [anon_sym_i16] = ACTIONS(1367), + [anon_sym_u32] = ACTIONS(1367), + [anon_sym_i32] = ACTIONS(1367), + [anon_sym_u64] = ACTIONS(1367), + [anon_sym_i64] = ACTIONS(1367), + [anon_sym_u128] = ACTIONS(1367), + [anon_sym_i128] = ACTIONS(1367), + [anon_sym_isize] = ACTIONS(1367), + [anon_sym_usize] = ACTIONS(1367), + [anon_sym_f32] = ACTIONS(1367), + [anon_sym_f64] = ACTIONS(1367), + [anon_sym_bool] = ACTIONS(1367), + [anon_sym_str] = ACTIONS(1367), + [anon_sym_char] = ACTIONS(1367), + [anon_sym_DASH] = ACTIONS(1369), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1373), + [anon_sym_PIPE] = ACTIONS(1375), + [anon_sym_LT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1473), + [anon_sym_DOT_DOT] = ACTIONS(1379), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1381), + [anon_sym_COLON_COLON] = ACTIONS(1383), + [anon_sym_POUND] = ACTIONS(1385), + [anon_sym_SQUOTE] = ACTIONS(1387), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1391), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1401), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_ref] = ACTIONS(1405), + [anon_sym_dyn] = ACTIONS(1407), + [sym_mutable_specifier] = ACTIONS(1409), + [sym_integer_literal] = ACTIONS(1411), + [aux_sym_string_literal_token1] = ACTIONS(1413), + [sym_char_literal] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1415), + [anon_sym_false] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1417), + [sym_super] = ACTIONS(1419), + [sym_crate] = ACTIONS(1419), + [sym_metavariable] = ACTIONS(1421), + [sym__raw_string_literal_start] = ACTIONS(1423), + [sym_float_literal] = ACTIONS(1411), }, [414] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_self_parameter] = STATE(2883), - [sym_variadic_parameter] = STATE(2883), - [sym_parameter] = STATE(2883), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2555), - [sym_bracketed_type] = STATE(3520), - [sym_lifetime] = STATE(2985), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3198), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(2480), - [sym_scoped_identifier] = STATE(2216), - [sym_scoped_type_identifier] = STATE(2114), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(3268), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_attribute_item] = STATE(420), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_self_parameter] = STATE(3301), + [sym_variadic_parameter] = STATE(3301), + [sym_parameter] = STATE(3301), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2823), + [sym_bracketed_type] = STATE(3615), + [sym_lifetime] = STATE(3000), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3395), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2487), + [sym_scoped_identifier] = STATE(2249), + [sym_scoped_type_identifier] = STATE(2116), + [sym_const_block] = STATE(2160), + [sym__pattern] = STATE(3202), + [sym_tuple_pattern] = STATE(2160), + [sym_slice_pattern] = STATE(2160), + [sym_tuple_struct_pattern] = STATE(2160), + [sym_struct_pattern] = STATE(2160), + [sym_remaining_field_pattern] = STATE(2160), + [sym_mut_pattern] = STATE(2160), + [sym_range_pattern] = STATE(2160), + [sym_ref_pattern] = STATE(2160), + [sym_captured_pattern] = STATE(2160), + [sym_reference_pattern] = STATE(2160), + [sym_or_pattern] = STATE(2160), + [sym__literal_pattern] = STATE(2036), + [sym_negative_literal] = STATE(2048), + [sym_string_literal] = STATE(2048), + [sym_raw_string_literal] = STATE(2048), + [sym_boolean_literal] = STATE(2048), [sym_line_comment] = STATE(414), [sym_block_comment] = STATE(414), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1326), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1332), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1496), - [anon_sym_DOT_DOT] = ACTIONS(1272), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1274), - [anon_sym_COLON_COLON] = ACTIONS(1338), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1340), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1342), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(1304), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1344), - [sym_super] = ACTIONS(1346), - [sym_crate] = ACTIONS(1346), - [sym_metavariable] = ACTIONS(1348), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(1353), + [anon_sym_LPAREN] = ACTIONS(1355), + [anon_sym_RPAREN] = ACTIONS(1487), + [anon_sym_LBRACK] = ACTIONS(1359), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1367), + [anon_sym_i8] = ACTIONS(1367), + [anon_sym_u16] = ACTIONS(1367), + [anon_sym_i16] = ACTIONS(1367), + [anon_sym_u32] = ACTIONS(1367), + [anon_sym_i32] = ACTIONS(1367), + [anon_sym_u64] = ACTIONS(1367), + [anon_sym_i64] = ACTIONS(1367), + [anon_sym_u128] = ACTIONS(1367), + [anon_sym_i128] = ACTIONS(1367), + [anon_sym_isize] = ACTIONS(1367), + [anon_sym_usize] = ACTIONS(1367), + [anon_sym_f32] = ACTIONS(1367), + [anon_sym_f64] = ACTIONS(1367), + [anon_sym_bool] = ACTIONS(1367), + [anon_sym_str] = ACTIONS(1367), + [anon_sym_char] = ACTIONS(1367), + [anon_sym_DASH] = ACTIONS(1369), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1373), + [anon_sym_PIPE] = ACTIONS(1375), + [anon_sym_LT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1473), + [anon_sym_DOT_DOT] = ACTIONS(1379), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1381), + [anon_sym_COLON_COLON] = ACTIONS(1383), + [anon_sym_POUND] = ACTIONS(1385), + [anon_sym_SQUOTE] = ACTIONS(1387), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1391), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1401), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_ref] = ACTIONS(1405), + [anon_sym_dyn] = ACTIONS(1407), + [sym_mutable_specifier] = ACTIONS(1409), + [sym_integer_literal] = ACTIONS(1411), + [aux_sym_string_literal_token1] = ACTIONS(1413), + [sym_char_literal] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1415), + [anon_sym_false] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1417), + [sym_super] = ACTIONS(1419), + [sym_crate] = ACTIONS(1419), + [sym_metavariable] = ACTIONS(1421), + [sym__raw_string_literal_start] = ACTIONS(1423), + [sym_float_literal] = ACTIONS(1411), }, [415] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_self_parameter] = STATE(3049), - [sym_variadic_parameter] = STATE(3049), - [sym_parameter] = STATE(3049), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2760), - [sym_bracketed_type] = STATE(3520), - [sym_lifetime] = STATE(2985), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3198), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(2480), - [sym_scoped_identifier] = STATE(2216), - [sym_scoped_type_identifier] = STATE(2114), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(3268), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_attribute_item] = STATE(420), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_self_parameter] = STATE(3301), + [sym_variadic_parameter] = STATE(3301), + [sym_parameter] = STATE(3301), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2823), + [sym_bracketed_type] = STATE(3615), + [sym_lifetime] = STATE(3000), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3395), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2487), + [sym_scoped_identifier] = STATE(2249), + [sym_scoped_type_identifier] = STATE(2116), + [sym_const_block] = STATE(2160), + [sym__pattern] = STATE(3202), + [sym_tuple_pattern] = STATE(2160), + [sym_slice_pattern] = STATE(2160), + [sym_tuple_struct_pattern] = STATE(2160), + [sym_struct_pattern] = STATE(2160), + [sym_remaining_field_pattern] = STATE(2160), + [sym_mut_pattern] = STATE(2160), + [sym_range_pattern] = STATE(2160), + [sym_ref_pattern] = STATE(2160), + [sym_captured_pattern] = STATE(2160), + [sym_reference_pattern] = STATE(2160), + [sym_or_pattern] = STATE(2160), + [sym__literal_pattern] = STATE(2036), + [sym_negative_literal] = STATE(2048), + [sym_string_literal] = STATE(2048), + [sym_raw_string_literal] = STATE(2048), + [sym_boolean_literal] = STATE(2048), [sym_line_comment] = STATE(415), [sym_block_comment] = STATE(415), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1326), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1332), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1498), - [anon_sym_DOT_DOT] = ACTIONS(1272), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1274), - [anon_sym_COLON_COLON] = ACTIONS(1338), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1340), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1342), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(1304), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1344), - [sym_super] = ACTIONS(1346), - [sym_crate] = ACTIONS(1346), - [sym_metavariable] = ACTIONS(1348), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(1353), + [anon_sym_LPAREN] = ACTIONS(1355), + [anon_sym_RPAREN] = ACTIONS(1489), + [anon_sym_LBRACK] = ACTIONS(1359), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1367), + [anon_sym_i8] = ACTIONS(1367), + [anon_sym_u16] = ACTIONS(1367), + [anon_sym_i16] = ACTIONS(1367), + [anon_sym_u32] = ACTIONS(1367), + [anon_sym_i32] = ACTIONS(1367), + [anon_sym_u64] = ACTIONS(1367), + [anon_sym_i64] = ACTIONS(1367), + [anon_sym_u128] = ACTIONS(1367), + [anon_sym_i128] = ACTIONS(1367), + [anon_sym_isize] = ACTIONS(1367), + [anon_sym_usize] = ACTIONS(1367), + [anon_sym_f32] = ACTIONS(1367), + [anon_sym_f64] = ACTIONS(1367), + [anon_sym_bool] = ACTIONS(1367), + [anon_sym_str] = ACTIONS(1367), + [anon_sym_char] = ACTIONS(1367), + [anon_sym_DASH] = ACTIONS(1369), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1373), + [anon_sym_PIPE] = ACTIONS(1375), + [anon_sym_LT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1473), + [anon_sym_DOT_DOT] = ACTIONS(1379), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1381), + [anon_sym_COLON_COLON] = ACTIONS(1383), + [anon_sym_POUND] = ACTIONS(1385), + [anon_sym_SQUOTE] = ACTIONS(1387), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1391), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1401), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_ref] = ACTIONS(1405), + [anon_sym_dyn] = ACTIONS(1407), + [sym_mutable_specifier] = ACTIONS(1409), + [sym_integer_literal] = ACTIONS(1411), + [aux_sym_string_literal_token1] = ACTIONS(1413), + [sym_char_literal] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1415), + [anon_sym_false] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1417), + [sym_super] = ACTIONS(1419), + [sym_crate] = ACTIONS(1419), + [sym_metavariable] = ACTIONS(1421), + [sym__raw_string_literal_start] = ACTIONS(1423), + [sym_float_literal] = ACTIONS(1411), }, [416] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_self_parameter] = STATE(2879), - [sym_variadic_parameter] = STATE(2879), - [sym_parameter] = STATE(2879), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2554), - [sym_bracketed_type] = STATE(3520), - [sym_lifetime] = STATE(2985), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3198), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(2480), - [sym_scoped_identifier] = STATE(2216), - [sym_scoped_type_identifier] = STATE(2114), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(3268), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2769), + [sym_bracketed_type] = STATE(3622), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3185), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2542), + [sym_scoped_identifier] = STATE(2112), + [sym_scoped_type_identifier] = STATE(2116), + [sym_const_block] = STATE(2160), + [sym_closure_expression] = STATE(2810), + [sym_closure_parameters] = STATE(247), + [sym__pattern] = STATE(2753), + [sym_tuple_pattern] = STATE(2160), + [sym_slice_pattern] = STATE(2160), + [sym_tuple_struct_pattern] = STATE(2160), + [sym_struct_pattern] = STATE(2160), + [sym_remaining_field_pattern] = STATE(2160), + [sym_mut_pattern] = STATE(2160), + [sym_range_pattern] = STATE(2160), + [sym_ref_pattern] = STATE(2160), + [sym_captured_pattern] = STATE(2160), + [sym_reference_pattern] = STATE(2160), + [sym_or_pattern] = STATE(2160), + [sym__literal_pattern] = STATE(2036), + [sym_negative_literal] = STATE(2048), + [sym_string_literal] = STATE(2048), + [sym_raw_string_literal] = STATE(2048), + [sym_boolean_literal] = STATE(2048), [sym_line_comment] = STATE(416), [sym_block_comment] = STATE(416), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1326), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1332), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1500), - [anon_sym_DOT_DOT] = ACTIONS(1272), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1274), - [anon_sym_COLON_COLON] = ACTIONS(1338), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1340), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1342), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(1304), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1344), - [sym_super] = ACTIONS(1346), - [sym_crate] = ACTIONS(1346), - [sym_metavariable] = ACTIONS(1348), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1427), + [anon_sym_RPAREN] = ACTIONS(1491), + [anon_sym_LBRACK] = ACTIONS(1359), + [anon_sym_COMMA] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1433), + [anon_sym_i8] = ACTIONS(1433), + [anon_sym_u16] = ACTIONS(1433), + [anon_sym_i16] = ACTIONS(1433), + [anon_sym_u32] = ACTIONS(1433), + [anon_sym_i32] = ACTIONS(1433), + [anon_sym_u64] = ACTIONS(1433), + [anon_sym_i64] = ACTIONS(1433), + [anon_sym_u128] = ACTIONS(1433), + [anon_sym_i128] = ACTIONS(1433), + [anon_sym_isize] = ACTIONS(1433), + [anon_sym_usize] = ACTIONS(1433), + [anon_sym_f32] = ACTIONS(1433), + [anon_sym_f64] = ACTIONS(1433), + [anon_sym_bool] = ACTIONS(1433), + [anon_sym_str] = ACTIONS(1433), + [anon_sym_char] = ACTIONS(1433), + [anon_sym_DASH] = ACTIONS(1369), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PIPE] = ACTIONS(1497), + [anon_sym_LT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1499), + [anon_sym_DOT_DOT] = ACTIONS(1501), + [anon_sym_COLON_COLON] = ACTIONS(1439), + [anon_sym_SQUOTE] = ACTIONS(1387), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1391), + [anon_sym_default] = ACTIONS(1441), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_static] = ACTIONS(1503), + [anon_sym_union] = ACTIONS(1443), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_ref] = ACTIONS(1405), + [anon_sym_dyn] = ACTIONS(1407), + [sym_mutable_specifier] = ACTIONS(1505), + [anon_sym_move] = ACTIONS(1507), + [sym_integer_literal] = ACTIONS(1411), + [aux_sym_string_literal_token1] = ACTIONS(1413), + [sym_char_literal] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1415), + [anon_sym_false] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1447), + [sym_super] = ACTIONS(1447), + [sym_crate] = ACTIONS(1447), + [sym_metavariable] = ACTIONS(1449), + [sym__raw_string_literal_start] = ACTIONS(1423), + [sym_float_literal] = ACTIONS(1411), }, [417] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_self_parameter] = STATE(2812), - [sym_variadic_parameter] = STATE(2812), - [sym_parameter] = STATE(2812), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2614), - [sym_bracketed_type] = STATE(3520), - [sym_lifetime] = STATE(2985), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3198), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(2480), - [sym_scoped_identifier] = STATE(2216), - [sym_scoped_type_identifier] = STATE(2114), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(3268), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2769), + [sym_bracketed_type] = STATE(3622), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3185), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2542), + [sym_scoped_identifier] = STATE(2112), + [sym_scoped_type_identifier] = STATE(2116), + [sym_const_block] = STATE(2160), + [sym_closure_expression] = STATE(2810), + [sym_closure_parameters] = STATE(247), + [sym__pattern] = STATE(2753), + [sym_tuple_pattern] = STATE(2160), + [sym_slice_pattern] = STATE(2160), + [sym_tuple_struct_pattern] = STATE(2160), + [sym_struct_pattern] = STATE(2160), + [sym_remaining_field_pattern] = STATE(2160), + [sym_mut_pattern] = STATE(2160), + [sym_range_pattern] = STATE(2160), + [sym_ref_pattern] = STATE(2160), + [sym_captured_pattern] = STATE(2160), + [sym_reference_pattern] = STATE(2160), + [sym_or_pattern] = STATE(2160), + [sym__literal_pattern] = STATE(2036), + [sym_negative_literal] = STATE(2048), + [sym_string_literal] = STATE(2048), + [sym_raw_string_literal] = STATE(2048), + [sym_boolean_literal] = STATE(2048), [sym_line_comment] = STATE(417), [sym_block_comment] = STATE(417), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1326), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1332), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1502), - [anon_sym_DOT_DOT] = ACTIONS(1272), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1274), - [anon_sym_COLON_COLON] = ACTIONS(1338), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1340), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1342), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(1304), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1344), - [sym_super] = ACTIONS(1346), - [sym_crate] = ACTIONS(1346), - [sym_metavariable] = ACTIONS(1348), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1427), + [anon_sym_RPAREN] = ACTIONS(1509), + [anon_sym_LBRACK] = ACTIONS(1359), + [anon_sym_COMMA] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1433), + [anon_sym_i8] = ACTIONS(1433), + [anon_sym_u16] = ACTIONS(1433), + [anon_sym_i16] = ACTIONS(1433), + [anon_sym_u32] = ACTIONS(1433), + [anon_sym_i32] = ACTIONS(1433), + [anon_sym_u64] = ACTIONS(1433), + [anon_sym_i64] = ACTIONS(1433), + [anon_sym_u128] = ACTIONS(1433), + [anon_sym_i128] = ACTIONS(1433), + [anon_sym_isize] = ACTIONS(1433), + [anon_sym_usize] = ACTIONS(1433), + [anon_sym_f32] = ACTIONS(1433), + [anon_sym_f64] = ACTIONS(1433), + [anon_sym_bool] = ACTIONS(1433), + [anon_sym_str] = ACTIONS(1433), + [anon_sym_char] = ACTIONS(1433), + [anon_sym_DASH] = ACTIONS(1369), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PIPE] = ACTIONS(1497), + [anon_sym_LT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1499), + [anon_sym_DOT_DOT] = ACTIONS(1501), + [anon_sym_COLON_COLON] = ACTIONS(1439), + [anon_sym_SQUOTE] = ACTIONS(1387), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1391), + [anon_sym_default] = ACTIONS(1441), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_static] = ACTIONS(1503), + [anon_sym_union] = ACTIONS(1443), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_ref] = ACTIONS(1405), + [anon_sym_dyn] = ACTIONS(1407), + [sym_mutable_specifier] = ACTIONS(1505), + [anon_sym_move] = ACTIONS(1507), + [sym_integer_literal] = ACTIONS(1411), + [aux_sym_string_literal_token1] = ACTIONS(1413), + [sym_char_literal] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1415), + [anon_sym_false] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1447), + [sym_super] = ACTIONS(1447), + [sym_crate] = ACTIONS(1447), + [sym_metavariable] = ACTIONS(1449), + [sym__raw_string_literal_start] = ACTIONS(1423), + [sym_float_literal] = ACTIONS(1411), }, [418] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2734), - [sym_bracketed_type] = STATE(3528), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3278), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(2424), - [sym_scoped_identifier] = STATE(2157), - [sym_scoped_type_identifier] = STATE(2114), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2672), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_attribute_item] = STATE(420), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_self_parameter] = STATE(3301), + [sym_variadic_parameter] = STATE(3301), + [sym_parameter] = STATE(3301), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2823), + [sym_bracketed_type] = STATE(3615), + [sym_lifetime] = STATE(3000), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3395), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2487), + [sym_scoped_identifier] = STATE(2249), + [sym_scoped_type_identifier] = STATE(2116), + [sym_const_block] = STATE(2160), + [sym__pattern] = STATE(3202), + [sym_tuple_pattern] = STATE(2160), + [sym_slice_pattern] = STATE(2160), + [sym_tuple_struct_pattern] = STATE(2160), + [sym_struct_pattern] = STATE(2160), + [sym_remaining_field_pattern] = STATE(2160), + [sym_mut_pattern] = STATE(2160), + [sym_range_pattern] = STATE(2160), + [sym_ref_pattern] = STATE(2160), + [sym_captured_pattern] = STATE(2160), + [sym_reference_pattern] = STATE(2160), + [sym_or_pattern] = STATE(2160), + [sym__literal_pattern] = STATE(2036), + [sym_negative_literal] = STATE(2048), + [sym_string_literal] = STATE(2048), + [sym_raw_string_literal] = STATE(2048), + [sym_boolean_literal] = STATE(2048), [sym_line_comment] = STATE(418), [sym_block_comment] = STATE(418), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1504), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_RBRACK] = ACTIONS(1508), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1510), - [anon_sym_i8] = ACTIONS(1510), - [anon_sym_u16] = ACTIONS(1510), - [anon_sym_i16] = ACTIONS(1510), - [anon_sym_u32] = ACTIONS(1510), - [anon_sym_i32] = ACTIONS(1510), - [anon_sym_u64] = ACTIONS(1510), - [anon_sym_i64] = ACTIONS(1510), - [anon_sym_u128] = ACTIONS(1510), - [anon_sym_i128] = ACTIONS(1510), - [anon_sym_isize] = ACTIONS(1510), - [anon_sym_usize] = ACTIONS(1510), - [anon_sym_f32] = ACTIONS(1510), - [anon_sym_f64] = ACTIONS(1510), - [anon_sym_bool] = ACTIONS(1510), - [anon_sym_str] = ACTIONS(1510), - [anon_sym_char] = ACTIONS(1510), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1512), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COMMA] = ACTIONS(1514), - [anon_sym_COLON_COLON] = ACTIONS(1516), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1518), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1520), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1522), - [sym_super] = ACTIONS(1522), - [sym_crate] = ACTIONS(1522), - [sym_metavariable] = ACTIONS(1524), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(1353), + [anon_sym_LPAREN] = ACTIONS(1355), + [anon_sym_LBRACK] = ACTIONS(1359), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1367), + [anon_sym_i8] = ACTIONS(1367), + [anon_sym_u16] = ACTIONS(1367), + [anon_sym_i16] = ACTIONS(1367), + [anon_sym_u32] = ACTIONS(1367), + [anon_sym_i32] = ACTIONS(1367), + [anon_sym_u64] = ACTIONS(1367), + [anon_sym_i64] = ACTIONS(1367), + [anon_sym_u128] = ACTIONS(1367), + [anon_sym_i128] = ACTIONS(1367), + [anon_sym_isize] = ACTIONS(1367), + [anon_sym_usize] = ACTIONS(1367), + [anon_sym_f32] = ACTIONS(1367), + [anon_sym_f64] = ACTIONS(1367), + [anon_sym_bool] = ACTIONS(1367), + [anon_sym_str] = ACTIONS(1367), + [anon_sym_char] = ACTIONS(1367), + [anon_sym_DASH] = ACTIONS(1369), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1373), + [anon_sym_PIPE] = ACTIONS(1375), + [anon_sym_LT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1473), + [anon_sym_DOT_DOT] = ACTIONS(1379), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1381), + [anon_sym_COLON_COLON] = ACTIONS(1383), + [anon_sym_POUND] = ACTIONS(1385), + [anon_sym_SQUOTE] = ACTIONS(1387), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1391), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1401), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_ref] = ACTIONS(1405), + [anon_sym_dyn] = ACTIONS(1407), + [sym_mutable_specifier] = ACTIONS(1409), + [sym_integer_literal] = ACTIONS(1411), + [aux_sym_string_literal_token1] = ACTIONS(1413), + [sym_char_literal] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1415), + [anon_sym_false] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1417), + [sym_super] = ACTIONS(1419), + [sym_crate] = ACTIONS(1419), + [sym_metavariable] = ACTIONS(1421), + [sym__raw_string_literal_start] = ACTIONS(1423), + [sym_float_literal] = ACTIONS(1411), }, [419] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1983), - [sym_bracketed_type] = STATE(3520), - [sym_lifetime] = STATE(829), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3198), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(2480), - [sym_scoped_identifier] = STATE(2216), - [sym_scoped_type_identifier] = STATE(2114), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2093), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2769), + [sym_bracketed_type] = STATE(3622), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3185), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2542), + [sym_scoped_identifier] = STATE(2112), + [sym_scoped_type_identifier] = STATE(2116), + [sym_const_block] = STATE(2160), + [sym_closure_expression] = STATE(2810), + [sym_closure_parameters] = STATE(247), + [sym__pattern] = STATE(2753), + [sym_tuple_pattern] = STATE(2160), + [sym_slice_pattern] = STATE(2160), + [sym_tuple_struct_pattern] = STATE(2160), + [sym_struct_pattern] = STATE(2160), + [sym_remaining_field_pattern] = STATE(2160), + [sym_mut_pattern] = STATE(2160), + [sym_range_pattern] = STATE(2160), + [sym_ref_pattern] = STATE(2160), + [sym_captured_pattern] = STATE(2160), + [sym_reference_pattern] = STATE(2160), + [sym_or_pattern] = STATE(2160), + [sym__literal_pattern] = STATE(2036), + [sym_negative_literal] = STATE(2048), + [sym_string_literal] = STATE(2048), + [sym_raw_string_literal] = STATE(2048), + [sym_boolean_literal] = STATE(2048), [sym_line_comment] = STATE(419), [sym_block_comment] = STATE(419), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1326), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1526), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(1338), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1340), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1342), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(1528), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1530), - [sym_super] = ACTIONS(1346), - [sym_crate] = ACTIONS(1346), - [sym_metavariable] = ACTIONS(1348), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1427), + [anon_sym_RPAREN] = ACTIONS(1511), + [anon_sym_LBRACK] = ACTIONS(1359), + [anon_sym_COMMA] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1433), + [anon_sym_i8] = ACTIONS(1433), + [anon_sym_u16] = ACTIONS(1433), + [anon_sym_i16] = ACTIONS(1433), + [anon_sym_u32] = ACTIONS(1433), + [anon_sym_i32] = ACTIONS(1433), + [anon_sym_u64] = ACTIONS(1433), + [anon_sym_i64] = ACTIONS(1433), + [anon_sym_u128] = ACTIONS(1433), + [anon_sym_i128] = ACTIONS(1433), + [anon_sym_isize] = ACTIONS(1433), + [anon_sym_usize] = ACTIONS(1433), + [anon_sym_f32] = ACTIONS(1433), + [anon_sym_f64] = ACTIONS(1433), + [anon_sym_bool] = ACTIONS(1433), + [anon_sym_str] = ACTIONS(1433), + [anon_sym_char] = ACTIONS(1433), + [anon_sym_DASH] = ACTIONS(1369), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PIPE] = ACTIONS(1497), + [anon_sym_LT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1499), + [anon_sym_DOT_DOT] = ACTIONS(1501), + [anon_sym_COLON_COLON] = ACTIONS(1439), + [anon_sym_SQUOTE] = ACTIONS(1387), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1391), + [anon_sym_default] = ACTIONS(1441), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_static] = ACTIONS(1503), + [anon_sym_union] = ACTIONS(1443), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_ref] = ACTIONS(1405), + [anon_sym_dyn] = ACTIONS(1407), + [sym_mutable_specifier] = ACTIONS(1505), + [anon_sym_move] = ACTIONS(1507), + [sym_integer_literal] = ACTIONS(1411), + [aux_sym_string_literal_token1] = ACTIONS(1413), + [sym_char_literal] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1415), + [anon_sym_false] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1447), + [sym_super] = ACTIONS(1447), + [sym_crate] = ACTIONS(1447), + [sym_metavariable] = ACTIONS(1449), + [sym__raw_string_literal_start] = ACTIONS(1423), + [sym_float_literal] = ACTIONS(1411), }, [420] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1976), - [sym_bracketed_type] = STATE(3527), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3273), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_self_parameter] = STATE(3165), + [sym_variadic_parameter] = STATE(3165), + [sym_parameter] = STATE(3165), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2919), + [sym_bracketed_type] = STATE(3615), + [sym_lifetime] = STATE(3000), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3395), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), [sym_macro_invocation] = STATE(2487), - [sym_scoped_identifier] = STATE(2113), - [sym_scoped_type_identifier] = STATE(2114), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2081), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_scoped_identifier] = STATE(2249), + [sym_scoped_type_identifier] = STATE(2116), + [sym_const_block] = STATE(2160), + [sym__pattern] = STATE(3202), + [sym_tuple_pattern] = STATE(2160), + [sym_slice_pattern] = STATE(2160), + [sym_tuple_struct_pattern] = STATE(2160), + [sym_struct_pattern] = STATE(2160), + [sym_remaining_field_pattern] = STATE(2160), + [sym_mut_pattern] = STATE(2160), + [sym_range_pattern] = STATE(2160), + [sym_ref_pattern] = STATE(2160), + [sym_captured_pattern] = STATE(2160), + [sym_reference_pattern] = STATE(2160), + [sym_or_pattern] = STATE(2160), + [sym__literal_pattern] = STATE(2036), + [sym_negative_literal] = STATE(2048), + [sym_string_literal] = STATE(2048), + [sym_raw_string_literal] = STATE(2048), + [sym_boolean_literal] = STATE(2048), [sym_line_comment] = STATE(420), [sym_block_comment] = STATE(420), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1248), - [anon_sym_LPAREN] = ACTIONS(1250), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = 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_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1476), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(1278), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1288), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1296), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1314), - [sym_super] = ACTIONS(1314), - [sym_crate] = ACTIONS(1314), - [sym_metavariable] = ACTIONS(1316), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(1353), + [anon_sym_LPAREN] = ACTIONS(1355), + [anon_sym_LBRACK] = ACTIONS(1359), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1367), + [anon_sym_i8] = ACTIONS(1367), + [anon_sym_u16] = ACTIONS(1367), + [anon_sym_i16] = ACTIONS(1367), + [anon_sym_u32] = ACTIONS(1367), + [anon_sym_i32] = ACTIONS(1367), + [anon_sym_u64] = ACTIONS(1367), + [anon_sym_i64] = ACTIONS(1367), + [anon_sym_u128] = ACTIONS(1367), + [anon_sym_i128] = ACTIONS(1367), + [anon_sym_isize] = ACTIONS(1367), + [anon_sym_usize] = ACTIONS(1367), + [anon_sym_f32] = ACTIONS(1367), + [anon_sym_f64] = ACTIONS(1367), + [anon_sym_bool] = ACTIONS(1367), + [anon_sym_str] = ACTIONS(1367), + [anon_sym_char] = ACTIONS(1367), + [anon_sym_DASH] = ACTIONS(1369), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1373), + [anon_sym_PIPE] = ACTIONS(1375), + [anon_sym_LT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1513), + [anon_sym_DOT_DOT] = ACTIONS(1379), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1381), + [anon_sym_COLON_COLON] = ACTIONS(1383), + [anon_sym_SQUOTE] = ACTIONS(1387), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1391), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1401), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_ref] = ACTIONS(1405), + [anon_sym_dyn] = ACTIONS(1407), + [sym_mutable_specifier] = ACTIONS(1409), + [sym_integer_literal] = ACTIONS(1411), + [aux_sym_string_literal_token1] = ACTIONS(1413), + [sym_char_literal] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1415), + [anon_sym_false] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1417), + [sym_super] = ACTIONS(1419), + [sym_crate] = ACTIONS(1419), + [sym_metavariable] = ACTIONS(1421), + [sym__raw_string_literal_start] = ACTIONS(1423), + [sym_float_literal] = ACTIONS(1411), }, [421] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1983), - [sym_bracketed_type] = STATE(3527), - [sym_lifetime] = STATE(833), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3273), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_self_parameter] = STATE(2924), + [sym_variadic_parameter] = STATE(2924), + [sym_parameter] = STATE(2924), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2636), + [sym_bracketed_type] = STATE(3615), + [sym_lifetime] = STATE(3000), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3395), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), [sym_macro_invocation] = STATE(2487), - [sym_scoped_identifier] = STATE(2113), - [sym_scoped_type_identifier] = STATE(2114), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2093), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_scoped_identifier] = STATE(2249), + [sym_scoped_type_identifier] = STATE(2116), + [sym_const_block] = STATE(2160), + [sym__pattern] = STATE(3202), + [sym_tuple_pattern] = STATE(2160), + [sym_slice_pattern] = STATE(2160), + [sym_tuple_struct_pattern] = STATE(2160), + [sym_struct_pattern] = STATE(2160), + [sym_remaining_field_pattern] = STATE(2160), + [sym_mut_pattern] = STATE(2160), + [sym_range_pattern] = STATE(2160), + [sym_ref_pattern] = STATE(2160), + [sym_captured_pattern] = STATE(2160), + [sym_reference_pattern] = STATE(2160), + [sym_or_pattern] = STATE(2160), + [sym__literal_pattern] = STATE(2036), + [sym_negative_literal] = STATE(2048), + [sym_string_literal] = STATE(2048), + [sym_raw_string_literal] = STATE(2048), + [sym_boolean_literal] = STATE(2048), [sym_line_comment] = STATE(421), [sym_block_comment] = STATE(421), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1248), - [anon_sym_LPAREN] = ACTIONS(1250), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = 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_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1476), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(1278), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1288), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1296), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(1532), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1314), - [sym_super] = ACTIONS(1314), - [sym_crate] = ACTIONS(1314), - [sym_metavariable] = ACTIONS(1316), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(1353), + [anon_sym_LPAREN] = ACTIONS(1355), + [anon_sym_LBRACK] = ACTIONS(1359), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1367), + [anon_sym_i8] = ACTIONS(1367), + [anon_sym_u16] = ACTIONS(1367), + [anon_sym_i16] = ACTIONS(1367), + [anon_sym_u32] = ACTIONS(1367), + [anon_sym_i32] = ACTIONS(1367), + [anon_sym_u64] = ACTIONS(1367), + [anon_sym_i64] = ACTIONS(1367), + [anon_sym_u128] = ACTIONS(1367), + [anon_sym_i128] = ACTIONS(1367), + [anon_sym_isize] = ACTIONS(1367), + [anon_sym_usize] = ACTIONS(1367), + [anon_sym_f32] = ACTIONS(1367), + [anon_sym_f64] = ACTIONS(1367), + [anon_sym_bool] = ACTIONS(1367), + [anon_sym_str] = ACTIONS(1367), + [anon_sym_char] = ACTIONS(1367), + [anon_sym_DASH] = ACTIONS(1369), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1373), + [anon_sym_PIPE] = ACTIONS(1375), + [anon_sym_LT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1515), + [anon_sym_DOT_DOT] = ACTIONS(1379), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1381), + [anon_sym_COLON_COLON] = ACTIONS(1383), + [anon_sym_SQUOTE] = ACTIONS(1387), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1391), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1401), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_ref] = ACTIONS(1405), + [anon_sym_dyn] = ACTIONS(1407), + [sym_mutable_specifier] = ACTIONS(1409), + [sym_integer_literal] = ACTIONS(1411), + [aux_sym_string_literal_token1] = ACTIONS(1413), + [sym_char_literal] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1415), + [anon_sym_false] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1417), + [sym_super] = ACTIONS(1419), + [sym_crate] = ACTIONS(1419), + [sym_metavariable] = ACTIONS(1421), + [sym__raw_string_literal_start] = ACTIONS(1423), + [sym_float_literal] = ACTIONS(1411), }, [422] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1976), - [sym_bracketed_type] = STATE(3520), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3198), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(2480), - [sym_scoped_identifier] = STATE(2216), - [sym_scoped_type_identifier] = STATE(2114), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2081), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_self_parameter] = STATE(2952), + [sym_variadic_parameter] = STATE(2952), + [sym_parameter] = STATE(2952), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2621), + [sym_bracketed_type] = STATE(3615), + [sym_lifetime] = STATE(3000), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3395), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2487), + [sym_scoped_identifier] = STATE(2249), + [sym_scoped_type_identifier] = STATE(2116), + [sym_const_block] = STATE(2160), + [sym__pattern] = STATE(3202), + [sym_tuple_pattern] = STATE(2160), + [sym_slice_pattern] = STATE(2160), + [sym_tuple_struct_pattern] = STATE(2160), + [sym_struct_pattern] = STATE(2160), + [sym_remaining_field_pattern] = STATE(2160), + [sym_mut_pattern] = STATE(2160), + [sym_range_pattern] = STATE(2160), + [sym_ref_pattern] = STATE(2160), + [sym_captured_pattern] = STATE(2160), + [sym_reference_pattern] = STATE(2160), + [sym_or_pattern] = STATE(2160), + [sym__literal_pattern] = STATE(2036), + [sym_negative_literal] = STATE(2048), + [sym_string_literal] = STATE(2048), + [sym_raw_string_literal] = STATE(2048), + [sym_boolean_literal] = STATE(2048), [sym_line_comment] = STATE(422), [sym_block_comment] = STATE(422), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1326), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1526), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(1338), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1340), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1342), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1534), - [sym_super] = ACTIONS(1346), - [sym_crate] = ACTIONS(1346), - [sym_metavariable] = ACTIONS(1348), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(1353), + [anon_sym_LPAREN] = ACTIONS(1355), + [anon_sym_LBRACK] = ACTIONS(1359), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1367), + [anon_sym_i8] = ACTIONS(1367), + [anon_sym_u16] = ACTIONS(1367), + [anon_sym_i16] = ACTIONS(1367), + [anon_sym_u32] = ACTIONS(1367), + [anon_sym_i32] = ACTIONS(1367), + [anon_sym_u64] = ACTIONS(1367), + [anon_sym_i64] = ACTIONS(1367), + [anon_sym_u128] = ACTIONS(1367), + [anon_sym_i128] = ACTIONS(1367), + [anon_sym_isize] = ACTIONS(1367), + [anon_sym_usize] = ACTIONS(1367), + [anon_sym_f32] = ACTIONS(1367), + [anon_sym_f64] = ACTIONS(1367), + [anon_sym_bool] = ACTIONS(1367), + [anon_sym_str] = ACTIONS(1367), + [anon_sym_char] = ACTIONS(1367), + [anon_sym_DASH] = ACTIONS(1369), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1373), + [anon_sym_PIPE] = ACTIONS(1375), + [anon_sym_LT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1517), + [anon_sym_DOT_DOT] = ACTIONS(1379), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1381), + [anon_sym_COLON_COLON] = ACTIONS(1383), + [anon_sym_SQUOTE] = ACTIONS(1387), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1391), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1401), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_ref] = ACTIONS(1405), + [anon_sym_dyn] = ACTIONS(1407), + [sym_mutable_specifier] = ACTIONS(1409), + [sym_integer_literal] = ACTIONS(1411), + [aux_sym_string_literal_token1] = ACTIONS(1413), + [sym_char_literal] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1415), + [anon_sym_false] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1417), + [sym_super] = ACTIONS(1419), + [sym_crate] = ACTIONS(1419), + [sym_metavariable] = ACTIONS(1421), + [sym__raw_string_literal_start] = ACTIONS(1423), + [sym_float_literal] = ACTIONS(1411), }, [423] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1983), - [sym_bracketed_type] = STATE(3520), - [sym_lifetime] = STATE(833), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3198), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(2480), - [sym_scoped_identifier] = STATE(2216), - [sym_scoped_type_identifier] = STATE(2114), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2093), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_self_parameter] = STATE(2984), + [sym_variadic_parameter] = STATE(2984), + [sym_parameter] = STATE(2984), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2609), + [sym_bracketed_type] = STATE(3615), + [sym_lifetime] = STATE(3000), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3395), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2487), + [sym_scoped_identifier] = STATE(2249), + [sym_scoped_type_identifier] = STATE(2116), + [sym_const_block] = STATE(2160), + [sym__pattern] = STATE(3202), + [sym_tuple_pattern] = STATE(2160), + [sym_slice_pattern] = STATE(2160), + [sym_tuple_struct_pattern] = STATE(2160), + [sym_struct_pattern] = STATE(2160), + [sym_remaining_field_pattern] = STATE(2160), + [sym_mut_pattern] = STATE(2160), + [sym_range_pattern] = STATE(2160), + [sym_ref_pattern] = STATE(2160), + [sym_captured_pattern] = STATE(2160), + [sym_reference_pattern] = STATE(2160), + [sym_or_pattern] = STATE(2160), + [sym__literal_pattern] = STATE(2036), + [sym_negative_literal] = STATE(2048), + [sym_string_literal] = STATE(2048), + [sym_raw_string_literal] = STATE(2048), + [sym_boolean_literal] = STATE(2048), [sym_line_comment] = STATE(423), [sym_block_comment] = STATE(423), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1326), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1526), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(1338), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1340), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1342), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(1536), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1346), - [sym_super] = ACTIONS(1346), - [sym_crate] = ACTIONS(1346), - [sym_metavariable] = ACTIONS(1348), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(1353), + [anon_sym_LPAREN] = ACTIONS(1355), + [anon_sym_LBRACK] = ACTIONS(1359), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1367), + [anon_sym_i8] = ACTIONS(1367), + [anon_sym_u16] = ACTIONS(1367), + [anon_sym_i16] = ACTIONS(1367), + [anon_sym_u32] = ACTIONS(1367), + [anon_sym_i32] = ACTIONS(1367), + [anon_sym_u64] = ACTIONS(1367), + [anon_sym_i64] = ACTIONS(1367), + [anon_sym_u128] = ACTIONS(1367), + [anon_sym_i128] = ACTIONS(1367), + [anon_sym_isize] = ACTIONS(1367), + [anon_sym_usize] = ACTIONS(1367), + [anon_sym_f32] = ACTIONS(1367), + [anon_sym_f64] = ACTIONS(1367), + [anon_sym_bool] = ACTIONS(1367), + [anon_sym_str] = ACTIONS(1367), + [anon_sym_char] = ACTIONS(1367), + [anon_sym_DASH] = ACTIONS(1369), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1373), + [anon_sym_PIPE] = ACTIONS(1375), + [anon_sym_LT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1519), + [anon_sym_DOT_DOT] = ACTIONS(1379), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1381), + [anon_sym_COLON_COLON] = ACTIONS(1383), + [anon_sym_SQUOTE] = ACTIONS(1387), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1391), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1401), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_ref] = ACTIONS(1405), + [anon_sym_dyn] = ACTIONS(1407), + [sym_mutable_specifier] = ACTIONS(1409), + [sym_integer_literal] = ACTIONS(1411), + [aux_sym_string_literal_token1] = ACTIONS(1413), + [sym_char_literal] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1415), + [anon_sym_false] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1417), + [sym_super] = ACTIONS(1419), + [sym_crate] = ACTIONS(1419), + [sym_metavariable] = ACTIONS(1421), + [sym__raw_string_literal_start] = ACTIONS(1423), + [sym_float_literal] = ACTIONS(1411), }, [424] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1976), - [sym_bracketed_type] = STATE(3527), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3273), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(2487), - [sym_scoped_identifier] = STATE(2113), - [sym_scoped_type_identifier] = STATE(2114), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2081), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2798), + [sym_bracketed_type] = STATE(3623), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3169), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2528), + [sym_scoped_identifier] = STATE(2170), + [sym_scoped_type_identifier] = STATE(2116), + [sym_const_block] = STATE(2160), + [sym__pattern] = STATE(2754), + [sym_tuple_pattern] = STATE(2160), + [sym_slice_pattern] = STATE(2160), + [sym_tuple_struct_pattern] = STATE(2160), + [sym_struct_pattern] = STATE(2160), + [sym_remaining_field_pattern] = STATE(2160), + [sym_mut_pattern] = STATE(2160), + [sym_range_pattern] = STATE(2160), + [sym_ref_pattern] = STATE(2160), + [sym_captured_pattern] = STATE(2160), + [sym_reference_pattern] = STATE(2160), + [sym_or_pattern] = STATE(2160), + [sym__literal_pattern] = STATE(2036), + [sym_negative_literal] = STATE(2048), + [sym_string_literal] = STATE(2048), + [sym_raw_string_literal] = STATE(2048), + [sym_boolean_literal] = STATE(2048), [sym_line_comment] = STATE(424), [sym_block_comment] = STATE(424), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1248), - [anon_sym_LPAREN] = ACTIONS(1250), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = 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_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1476), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(1278), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1288), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1296), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1538), - [sym_super] = ACTIONS(1314), - [sym_crate] = ACTIONS(1314), - [sym_metavariable] = ACTIONS(1316), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1523), + [anon_sym_LBRACK] = ACTIONS(1359), + [anon_sym_RBRACK] = ACTIONS(1525), + [anon_sym_COMMA] = ACTIONS(1527), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_DASH] = ACTIONS(1369), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1531), + [anon_sym_PIPE] = ACTIONS(1375), + [anon_sym_LT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1499), + [anon_sym_DOT_DOT] = ACTIONS(1501), + [anon_sym_COLON_COLON] = ACTIONS(1533), + [anon_sym_SQUOTE] = ACTIONS(1387), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1391), + [anon_sym_default] = ACTIONS(1535), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1537), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_ref] = ACTIONS(1405), + [anon_sym_dyn] = ACTIONS(1407), + [sym_mutable_specifier] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1411), + [aux_sym_string_literal_token1] = ACTIONS(1413), + [sym_char_literal] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1415), + [anon_sym_false] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1539), + [sym_super] = ACTIONS(1539), + [sym_crate] = ACTIONS(1539), + [sym_metavariable] = ACTIONS(1541), + [sym__raw_string_literal_start] = ACTIONS(1423), + [sym_float_literal] = ACTIONS(1411), }, [425] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1983), - [sym_bracketed_type] = STATE(3527), - [sym_lifetime] = STATE(829), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3273), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(2487), - [sym_scoped_identifier] = STATE(2113), - [sym_scoped_type_identifier] = STATE(2114), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2093), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2006), + [sym_bracketed_type] = STATE(3622), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3185), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2542), + [sym_scoped_identifier] = STATE(2112), + [sym_scoped_type_identifier] = STATE(2116), + [sym_const_block] = STATE(2160), + [sym__pattern] = STATE(2144), + [sym_tuple_pattern] = STATE(2160), + [sym_slice_pattern] = STATE(2160), + [sym_tuple_struct_pattern] = STATE(2160), + [sym_struct_pattern] = STATE(2160), + [sym_remaining_field_pattern] = STATE(2160), + [sym_mut_pattern] = STATE(2160), + [sym_range_pattern] = STATE(2160), + [sym_ref_pattern] = STATE(2160), + [sym_captured_pattern] = STATE(2160), + [sym_reference_pattern] = STATE(2160), + [sym_or_pattern] = STATE(2160), + [sym__literal_pattern] = STATE(2036), + [sym_negative_literal] = STATE(2048), + [sym_string_literal] = STATE(2048), + [sym_raw_string_literal] = STATE(2048), + [sym_boolean_literal] = STATE(2048), [sym_line_comment] = STATE(425), [sym_block_comment] = STATE(425), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1248), - [anon_sym_LPAREN] = ACTIONS(1250), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = 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_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1476), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(1278), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1288), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1296), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(1540), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1542), - [sym_super] = ACTIONS(1314), - [sym_crate] = ACTIONS(1314), - [sym_metavariable] = ACTIONS(1316), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1359), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1433), + [anon_sym_i8] = ACTIONS(1433), + [anon_sym_u16] = ACTIONS(1433), + [anon_sym_i16] = ACTIONS(1433), + [anon_sym_u32] = ACTIONS(1433), + [anon_sym_i32] = ACTIONS(1433), + [anon_sym_u64] = ACTIONS(1433), + [anon_sym_i64] = ACTIONS(1433), + [anon_sym_u128] = ACTIONS(1433), + [anon_sym_i128] = ACTIONS(1433), + [anon_sym_isize] = ACTIONS(1433), + [anon_sym_usize] = ACTIONS(1433), + [anon_sym_f32] = ACTIONS(1433), + [anon_sym_f64] = ACTIONS(1433), + [anon_sym_bool] = ACTIONS(1433), + [anon_sym_str] = ACTIONS(1433), + [anon_sym_char] = ACTIONS(1433), + [anon_sym_DASH] = ACTIONS(1369), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PIPE] = ACTIONS(1375), + [anon_sym_LT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1499), + [anon_sym_DOT_DOT] = ACTIONS(1501), + [anon_sym_COLON_COLON] = ACTIONS(1439), + [anon_sym_SQUOTE] = ACTIONS(1387), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1391), + [anon_sym_default] = ACTIONS(1441), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1443), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_ref] = ACTIONS(1405), + [anon_sym_dyn] = ACTIONS(1407), + [sym_mutable_specifier] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1411), + [aux_sym_string_literal_token1] = ACTIONS(1413), + [sym_char_literal] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1415), + [anon_sym_false] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1543), + [sym_super] = ACTIONS(1447), + [sym_crate] = ACTIONS(1447), + [sym_metavariable] = ACTIONS(1449), + [sym__raw_string_literal_start] = ACTIONS(1423), + [sym_float_literal] = ACTIONS(1411), }, [426] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1983), - [sym_bracketed_type] = STATE(3528), - [sym_lifetime] = STATE(833), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3278), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(2424), - [sym_scoped_identifier] = STATE(2157), - [sym_scoped_type_identifier] = STATE(2114), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2093), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2019), + [sym_bracketed_type] = STATE(3622), + [sym_lifetime] = STATE(853), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3185), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2542), + [sym_scoped_identifier] = STATE(2112), + [sym_scoped_type_identifier] = STATE(2116), + [sym_const_block] = STATE(2160), + [sym__pattern] = STATE(2137), + [sym_tuple_pattern] = STATE(2160), + [sym_slice_pattern] = STATE(2160), + [sym_tuple_struct_pattern] = STATE(2160), + [sym_struct_pattern] = STATE(2160), + [sym_remaining_field_pattern] = STATE(2160), + [sym_mut_pattern] = STATE(2160), + [sym_range_pattern] = STATE(2160), + [sym_ref_pattern] = STATE(2160), + [sym_captured_pattern] = STATE(2160), + [sym_reference_pattern] = STATE(2160), + [sym_or_pattern] = STATE(2160), + [sym__literal_pattern] = STATE(2036), + [sym_negative_literal] = STATE(2048), + [sym_string_literal] = STATE(2048), + [sym_raw_string_literal] = STATE(2048), + [sym_boolean_literal] = STATE(2048), [sym_line_comment] = STATE(426), [sym_block_comment] = STATE(426), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1504), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1510), - [anon_sym_i8] = ACTIONS(1510), - [anon_sym_u16] = ACTIONS(1510), - [anon_sym_i16] = ACTIONS(1510), - [anon_sym_u32] = ACTIONS(1510), - [anon_sym_i32] = ACTIONS(1510), - [anon_sym_u64] = ACTIONS(1510), - [anon_sym_i64] = ACTIONS(1510), - [anon_sym_u128] = ACTIONS(1510), - [anon_sym_i128] = ACTIONS(1510), - [anon_sym_isize] = ACTIONS(1510), - [anon_sym_usize] = ACTIONS(1510), - [anon_sym_f32] = ACTIONS(1510), - [anon_sym_f64] = ACTIONS(1510), - [anon_sym_bool] = ACTIONS(1510), - [anon_sym_str] = ACTIONS(1510), - [anon_sym_char] = ACTIONS(1510), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1512), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(1516), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1518), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1520), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(1544), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1522), - [sym_super] = ACTIONS(1522), - [sym_crate] = ACTIONS(1522), - [sym_metavariable] = ACTIONS(1524), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1359), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1433), + [anon_sym_i8] = ACTIONS(1433), + [anon_sym_u16] = ACTIONS(1433), + [anon_sym_i16] = ACTIONS(1433), + [anon_sym_u32] = ACTIONS(1433), + [anon_sym_i32] = ACTIONS(1433), + [anon_sym_u64] = ACTIONS(1433), + [anon_sym_i64] = ACTIONS(1433), + [anon_sym_u128] = ACTIONS(1433), + [anon_sym_i128] = ACTIONS(1433), + [anon_sym_isize] = ACTIONS(1433), + [anon_sym_usize] = ACTIONS(1433), + [anon_sym_f32] = ACTIONS(1433), + [anon_sym_f64] = ACTIONS(1433), + [anon_sym_bool] = ACTIONS(1433), + [anon_sym_str] = ACTIONS(1433), + [anon_sym_char] = ACTIONS(1433), + [anon_sym_DASH] = ACTIONS(1369), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PIPE] = ACTIONS(1375), + [anon_sym_LT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1499), + [anon_sym_DOT_DOT] = ACTIONS(1501), + [anon_sym_COLON_COLON] = ACTIONS(1439), + [anon_sym_SQUOTE] = ACTIONS(1387), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1391), + [anon_sym_default] = ACTIONS(1441), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1443), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_ref] = ACTIONS(1405), + [anon_sym_dyn] = ACTIONS(1407), + [sym_mutable_specifier] = ACTIONS(1545), + [sym_integer_literal] = ACTIONS(1411), + [aux_sym_string_literal_token1] = ACTIONS(1413), + [sym_char_literal] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1415), + [anon_sym_false] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1447), + [sym_super] = ACTIONS(1447), + [sym_crate] = ACTIONS(1447), + [sym_metavariable] = ACTIONS(1449), + [sym__raw_string_literal_start] = ACTIONS(1423), + [sym_float_literal] = ACTIONS(1411), }, [427] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1976), - [sym_bracketed_type] = STATE(3520), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3198), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(2480), - [sym_scoped_identifier] = STATE(2216), - [sym_scoped_type_identifier] = STATE(2114), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2081), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2006), + [sym_bracketed_type] = STATE(3623), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3169), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2528), + [sym_scoped_identifier] = STATE(2170), + [sym_scoped_type_identifier] = STATE(2116), + [sym_const_block] = STATE(2160), + [sym__pattern] = STATE(2144), + [sym_tuple_pattern] = STATE(2160), + [sym_slice_pattern] = STATE(2160), + [sym_tuple_struct_pattern] = STATE(2160), + [sym_struct_pattern] = STATE(2160), + [sym_remaining_field_pattern] = STATE(2160), + [sym_mut_pattern] = STATE(2160), + [sym_range_pattern] = STATE(2160), + [sym_ref_pattern] = STATE(2160), + [sym_captured_pattern] = STATE(2160), + [sym_reference_pattern] = STATE(2160), + [sym_or_pattern] = STATE(2160), + [sym__literal_pattern] = STATE(2036), + [sym_negative_literal] = STATE(2048), + [sym_string_literal] = STATE(2048), + [sym_raw_string_literal] = STATE(2048), + [sym_boolean_literal] = STATE(2048), [sym_line_comment] = STATE(427), [sym_block_comment] = STATE(427), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1326), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1526), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(1338), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1340), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1342), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1346), - [sym_super] = ACTIONS(1346), - [sym_crate] = ACTIONS(1346), - [sym_metavariable] = ACTIONS(1348), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1523), + [anon_sym_LBRACK] = ACTIONS(1359), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_DASH] = ACTIONS(1369), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1531), + [anon_sym_PIPE] = ACTIONS(1375), + [anon_sym_LT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1499), + [anon_sym_DOT_DOT] = ACTIONS(1501), + [anon_sym_COLON_COLON] = ACTIONS(1533), + [anon_sym_SQUOTE] = ACTIONS(1387), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1391), + [anon_sym_default] = ACTIONS(1535), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1537), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_ref] = ACTIONS(1405), + [anon_sym_dyn] = ACTIONS(1407), + [sym_mutable_specifier] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1411), + [aux_sym_string_literal_token1] = ACTIONS(1413), + [sym_char_literal] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1415), + [anon_sym_false] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1539), + [sym_super] = ACTIONS(1539), + [sym_crate] = ACTIONS(1539), + [sym_metavariable] = ACTIONS(1541), + [sym__raw_string_literal_start] = ACTIONS(1423), + [sym_float_literal] = ACTIONS(1411), }, [428] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1976), - [sym_bracketed_type] = STATE(3528), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3278), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(2424), - [sym_scoped_identifier] = STATE(2157), - [sym_scoped_type_identifier] = STATE(2114), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2081), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2006), + [sym_bracketed_type] = STATE(3615), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3395), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2487), + [sym_scoped_identifier] = STATE(2249), + [sym_scoped_type_identifier] = STATE(2116), + [sym_const_block] = STATE(2160), + [sym__pattern] = STATE(2144), + [sym_tuple_pattern] = STATE(2160), + [sym_slice_pattern] = STATE(2160), + [sym_tuple_struct_pattern] = STATE(2160), + [sym_struct_pattern] = STATE(2160), + [sym_remaining_field_pattern] = STATE(2160), + [sym_mut_pattern] = STATE(2160), + [sym_range_pattern] = STATE(2160), + [sym_ref_pattern] = STATE(2160), + [sym_captured_pattern] = STATE(2160), + [sym_reference_pattern] = STATE(2160), + [sym_or_pattern] = STATE(2160), + [sym__literal_pattern] = STATE(2036), + [sym_negative_literal] = STATE(2048), + [sym_string_literal] = STATE(2048), + [sym_raw_string_literal] = STATE(2048), + [sym_boolean_literal] = STATE(2048), [sym_line_comment] = STATE(428), [sym_block_comment] = STATE(428), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1504), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1510), - [anon_sym_i8] = ACTIONS(1510), - [anon_sym_u16] = ACTIONS(1510), - [anon_sym_i16] = ACTIONS(1510), - [anon_sym_u32] = ACTIONS(1510), - [anon_sym_i32] = ACTIONS(1510), - [anon_sym_u64] = ACTIONS(1510), - [anon_sym_i64] = ACTIONS(1510), - [anon_sym_u128] = ACTIONS(1510), - [anon_sym_i128] = ACTIONS(1510), - [anon_sym_isize] = ACTIONS(1510), - [anon_sym_usize] = ACTIONS(1510), - [anon_sym_f32] = ACTIONS(1510), - [anon_sym_f64] = ACTIONS(1510), - [anon_sym_bool] = ACTIONS(1510), - [anon_sym_str] = ACTIONS(1510), - [anon_sym_char] = ACTIONS(1510), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1512), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(1516), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1518), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1520), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_ref] = ACTIONS(1300), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1522), - [sym_super] = ACTIONS(1522), - [sym_crate] = ACTIONS(1522), - [sym_metavariable] = ACTIONS(1524), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(1353), + [anon_sym_LPAREN] = ACTIONS(1355), + [anon_sym_LBRACK] = ACTIONS(1359), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1367), + [anon_sym_i8] = ACTIONS(1367), + [anon_sym_u16] = ACTIONS(1367), + [anon_sym_i16] = ACTIONS(1367), + [anon_sym_u32] = ACTIONS(1367), + [anon_sym_i32] = ACTIONS(1367), + [anon_sym_u64] = ACTIONS(1367), + [anon_sym_i64] = ACTIONS(1367), + [anon_sym_u128] = ACTIONS(1367), + [anon_sym_i128] = ACTIONS(1367), + [anon_sym_isize] = ACTIONS(1367), + [anon_sym_usize] = ACTIONS(1367), + [anon_sym_f32] = ACTIONS(1367), + [anon_sym_f64] = ACTIONS(1367), + [anon_sym_bool] = ACTIONS(1367), + [anon_sym_str] = ACTIONS(1367), + [anon_sym_char] = ACTIONS(1367), + [anon_sym_DASH] = ACTIONS(1369), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1547), + [anon_sym_PIPE] = ACTIONS(1375), + [anon_sym_LT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1499), + [anon_sym_DOT_DOT] = ACTIONS(1501), + [anon_sym_COLON_COLON] = ACTIONS(1383), + [anon_sym_SQUOTE] = ACTIONS(1387), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1391), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1401), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_ref] = ACTIONS(1405), + [anon_sym_dyn] = ACTIONS(1407), + [sym_mutable_specifier] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1411), + [aux_sym_string_literal_token1] = ACTIONS(1413), + [sym_char_literal] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1415), + [anon_sym_false] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1419), + [sym_super] = ACTIONS(1419), + [sym_crate] = ACTIONS(1419), + [sym_metavariable] = ACTIONS(1421), + [sym__raw_string_literal_start] = ACTIONS(1423), + [sym_float_literal] = ACTIONS(1411), }, [429] = { + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2019), + [sym_bracketed_type] = STATE(3615), + [sym_lifetime] = STATE(853), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3395), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2487), + [sym_scoped_identifier] = STATE(2249), + [sym_scoped_type_identifier] = STATE(2116), + [sym_const_block] = STATE(2160), + [sym__pattern] = STATE(2137), + [sym_tuple_pattern] = STATE(2160), + [sym_slice_pattern] = STATE(2160), + [sym_tuple_struct_pattern] = STATE(2160), + [sym_struct_pattern] = STATE(2160), + [sym_remaining_field_pattern] = STATE(2160), + [sym_mut_pattern] = STATE(2160), + [sym_range_pattern] = STATE(2160), + [sym_ref_pattern] = STATE(2160), + [sym_captured_pattern] = STATE(2160), + [sym_reference_pattern] = STATE(2160), + [sym_or_pattern] = STATE(2160), + [sym__literal_pattern] = STATE(2036), + [sym_negative_literal] = STATE(2048), + [sym_string_literal] = STATE(2048), + [sym_raw_string_literal] = STATE(2048), + [sym_boolean_literal] = STATE(2048), [sym_line_comment] = STATE(429), [sym_block_comment] = STATE(429), - [sym_identifier] = ACTIONS(1546), - [anon_sym_SEMI] = ACTIONS(1548), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_RPAREN] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1548), - [anon_sym_RBRACK] = ACTIONS(1548), - [anon_sym_LBRACE] = ACTIONS(1548), - [anon_sym_RBRACE] = ACTIONS(1548), - [anon_sym_COLON] = ACTIONS(1546), - [anon_sym_PLUS] = ACTIONS(1546), - [anon_sym_STAR] = ACTIONS(1546), - [anon_sym_QMARK] = ACTIONS(1548), - [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_DASH] = ACTIONS(1546), - [anon_sym_SLASH] = ACTIONS(1546), - [anon_sym_PERCENT] = ACTIONS(1546), - [anon_sym_CARET] = ACTIONS(1546), - [anon_sym_BANG] = ACTIONS(1546), - [anon_sym_AMP] = ACTIONS(1546), - [anon_sym_PIPE] = ACTIONS(1546), - [anon_sym_AMP_AMP] = ACTIONS(1548), - [anon_sym_PIPE_PIPE] = ACTIONS(1548), - [anon_sym_LT_LT] = ACTIONS(1546), - [anon_sym_GT_GT] = ACTIONS(1546), - [anon_sym_PLUS_EQ] = ACTIONS(1548), - [anon_sym_DASH_EQ] = ACTIONS(1548), - [anon_sym_STAR_EQ] = ACTIONS(1548), - [anon_sym_SLASH_EQ] = ACTIONS(1548), - [anon_sym_PERCENT_EQ] = ACTIONS(1548), - [anon_sym_CARET_EQ] = ACTIONS(1548), - [anon_sym_AMP_EQ] = ACTIONS(1548), - [anon_sym_PIPE_EQ] = ACTIONS(1548), - [anon_sym_LT_LT_EQ] = ACTIONS(1548), - [anon_sym_GT_GT_EQ] = ACTIONS(1548), - [anon_sym_EQ] = ACTIONS(1546), - [anon_sym_EQ_EQ] = ACTIONS(1548), - [anon_sym_BANG_EQ] = ACTIONS(1548), - [anon_sym_GT] = ACTIONS(1546), - [anon_sym_LT] = ACTIONS(1546), - [anon_sym_GT_EQ] = ACTIONS(1548), - [anon_sym_LT_EQ] = ACTIONS(1548), - [anon_sym_DOT] = ACTIONS(1546), - [anon_sym_DOT_DOT] = ACTIONS(1546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1548), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1548), - [anon_sym_COMMA] = ACTIONS(1548), - [anon_sym_COLON_COLON] = ACTIONS(1548), - [anon_sym_SQUOTE] = ACTIONS(1546), - [anon_sym_as] = 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_for] = ACTIONS(1546), - [anon_sym_if] = ACTIONS(1546), - [anon_sym_loop] = ACTIONS(1546), - [anon_sym_match] = ACTIONS(1546), - [anon_sym_return] = ACTIONS(1546), - [anon_sym_static] = ACTIONS(1546), - [anon_sym_union] = ACTIONS(1546), - [anon_sym_unsafe] = ACTIONS(1546), - [anon_sym_while] = ACTIONS(1546), - [anon_sym_else] = ACTIONS(1546), - [anon_sym_yield] = ACTIONS(1546), - [anon_sym_move] = ACTIONS(1546), - [anon_sym_try] = ACTIONS(1546), - [sym_integer_literal] = ACTIONS(1548), - [aux_sym_string_literal_token1] = ACTIONS(1548), - [sym_char_literal] = ACTIONS(1548), - [anon_sym_true] = ACTIONS(1546), - [anon_sym_false] = ACTIONS(1546), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1546), - [sym_super] = ACTIONS(1546), - [sym_crate] = ACTIONS(1546), - [sym_metavariable] = ACTIONS(1548), - [sym__raw_string_literal_start] = ACTIONS(1548), - [sym_float_literal] = ACTIONS(1548), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(1353), + [anon_sym_LPAREN] = ACTIONS(1355), + [anon_sym_LBRACK] = ACTIONS(1359), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1367), + [anon_sym_i8] = ACTIONS(1367), + [anon_sym_u16] = ACTIONS(1367), + [anon_sym_i16] = ACTIONS(1367), + [anon_sym_u32] = ACTIONS(1367), + [anon_sym_i32] = ACTIONS(1367), + [anon_sym_u64] = ACTIONS(1367), + [anon_sym_i64] = ACTIONS(1367), + [anon_sym_u128] = ACTIONS(1367), + [anon_sym_i128] = ACTIONS(1367), + [anon_sym_isize] = ACTIONS(1367), + [anon_sym_usize] = ACTIONS(1367), + [anon_sym_f32] = ACTIONS(1367), + [anon_sym_f64] = ACTIONS(1367), + [anon_sym_bool] = ACTIONS(1367), + [anon_sym_str] = ACTIONS(1367), + [anon_sym_char] = ACTIONS(1367), + [anon_sym_DASH] = ACTIONS(1369), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1547), + [anon_sym_PIPE] = ACTIONS(1375), + [anon_sym_LT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1499), + [anon_sym_DOT_DOT] = ACTIONS(1501), + [anon_sym_COLON_COLON] = ACTIONS(1383), + [anon_sym_SQUOTE] = ACTIONS(1387), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1391), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1401), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_ref] = ACTIONS(1405), + [anon_sym_dyn] = ACTIONS(1407), + [sym_mutable_specifier] = ACTIONS(1549), + [sym_integer_literal] = ACTIONS(1411), + [aux_sym_string_literal_token1] = ACTIONS(1413), + [sym_char_literal] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1415), + [anon_sym_false] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1419), + [sym_super] = ACTIONS(1419), + [sym_crate] = ACTIONS(1419), + [sym_metavariable] = ACTIONS(1421), + [sym__raw_string_literal_start] = ACTIONS(1423), + [sym_float_literal] = ACTIONS(1411), }, [430] = { + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2006), + [sym_bracketed_type] = STATE(3615), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3395), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2487), + [sym_scoped_identifier] = STATE(2249), + [sym_scoped_type_identifier] = STATE(2116), + [sym_const_block] = STATE(2160), + [sym__pattern] = STATE(2144), + [sym_tuple_pattern] = STATE(2160), + [sym_slice_pattern] = STATE(2160), + [sym_tuple_struct_pattern] = STATE(2160), + [sym_struct_pattern] = STATE(2160), + [sym_remaining_field_pattern] = STATE(2160), + [sym_mut_pattern] = STATE(2160), + [sym_range_pattern] = STATE(2160), + [sym_ref_pattern] = STATE(2160), + [sym_captured_pattern] = STATE(2160), + [sym_reference_pattern] = STATE(2160), + [sym_or_pattern] = STATE(2160), + [sym__literal_pattern] = STATE(2036), + [sym_negative_literal] = STATE(2048), + [sym_string_literal] = STATE(2048), + [sym_raw_string_literal] = STATE(2048), + [sym_boolean_literal] = STATE(2048), [sym_line_comment] = STATE(430), [sym_block_comment] = STATE(430), - [sym_identifier] = ACTIONS(1546), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1548), - [anon_sym_LBRACE] = ACTIONS(1548), - [anon_sym_EQ_GT] = ACTIONS(1548), - [anon_sym_COLON] = ACTIONS(1546), - [anon_sym_PLUS] = ACTIONS(1546), - [anon_sym_STAR] = ACTIONS(1546), - [anon_sym_QMARK] = ACTIONS(1548), - [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_DASH] = ACTIONS(1546), - [anon_sym_SLASH] = ACTIONS(1546), - [anon_sym_PERCENT] = ACTIONS(1546), - [anon_sym_CARET] = ACTIONS(1546), - [anon_sym_BANG] = ACTIONS(1546), - [anon_sym_AMP] = ACTIONS(1546), - [anon_sym_PIPE] = ACTIONS(1546), - [anon_sym_AMP_AMP] = ACTIONS(1548), - [anon_sym_PIPE_PIPE] = ACTIONS(1548), - [anon_sym_LT_LT] = ACTIONS(1546), - [anon_sym_GT_GT] = ACTIONS(1546), - [anon_sym_PLUS_EQ] = ACTIONS(1548), - [anon_sym_DASH_EQ] = ACTIONS(1548), - [anon_sym_STAR_EQ] = ACTIONS(1548), - [anon_sym_SLASH_EQ] = ACTIONS(1548), - [anon_sym_PERCENT_EQ] = ACTIONS(1548), - [anon_sym_CARET_EQ] = ACTIONS(1548), - [anon_sym_AMP_EQ] = ACTIONS(1548), - [anon_sym_PIPE_EQ] = ACTIONS(1548), - [anon_sym_LT_LT_EQ] = ACTIONS(1548), - [anon_sym_GT_GT_EQ] = ACTIONS(1548), - [anon_sym_EQ] = ACTIONS(1546), - [anon_sym_EQ_EQ] = ACTIONS(1548), - [anon_sym_BANG_EQ] = ACTIONS(1548), - [anon_sym_GT] = ACTIONS(1546), - [anon_sym_LT] = ACTIONS(1546), - [anon_sym_GT_EQ] = ACTIONS(1548), - [anon_sym_LT_EQ] = ACTIONS(1548), - [anon_sym_DOT] = ACTIONS(1546), - [anon_sym_DOT_DOT] = ACTIONS(1546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1548), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1548), - [anon_sym_COLON_COLON] = ACTIONS(1548), - [anon_sym_SQUOTE] = ACTIONS(1546), - [anon_sym_as] = 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_for] = ACTIONS(1546), - [anon_sym_if] = ACTIONS(1546), - [anon_sym_loop] = ACTIONS(1546), - [anon_sym_match] = ACTIONS(1546), - [anon_sym_return] = ACTIONS(1546), - [anon_sym_static] = ACTIONS(1546), - [anon_sym_union] = ACTIONS(1546), - [anon_sym_unsafe] = ACTIONS(1546), - [anon_sym_while] = ACTIONS(1546), - [anon_sym_yield] = ACTIONS(1546), - [anon_sym_move] = ACTIONS(1546), - [anon_sym_try] = ACTIONS(1546), - [sym_integer_literal] = ACTIONS(1548), - [aux_sym_string_literal_token1] = ACTIONS(1548), - [sym_char_literal] = ACTIONS(1548), - [anon_sym_true] = ACTIONS(1546), - [anon_sym_false] = ACTIONS(1546), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1546), - [sym_super] = ACTIONS(1546), - [sym_crate] = ACTIONS(1546), - [sym_metavariable] = ACTIONS(1548), - [sym__raw_string_literal_start] = ACTIONS(1548), - [sym_float_literal] = ACTIONS(1548), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(1353), + [anon_sym_LPAREN] = ACTIONS(1355), + [anon_sym_LBRACK] = ACTIONS(1359), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1367), + [anon_sym_i8] = ACTIONS(1367), + [anon_sym_u16] = ACTIONS(1367), + [anon_sym_i16] = ACTIONS(1367), + [anon_sym_u32] = ACTIONS(1367), + [anon_sym_i32] = ACTIONS(1367), + [anon_sym_u64] = ACTIONS(1367), + [anon_sym_i64] = ACTIONS(1367), + [anon_sym_u128] = ACTIONS(1367), + [anon_sym_i128] = ACTIONS(1367), + [anon_sym_isize] = ACTIONS(1367), + [anon_sym_usize] = ACTIONS(1367), + [anon_sym_f32] = ACTIONS(1367), + [anon_sym_f64] = ACTIONS(1367), + [anon_sym_bool] = ACTIONS(1367), + [anon_sym_str] = ACTIONS(1367), + [anon_sym_char] = ACTIONS(1367), + [anon_sym_DASH] = ACTIONS(1369), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1547), + [anon_sym_PIPE] = ACTIONS(1375), + [anon_sym_LT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1499), + [anon_sym_DOT_DOT] = ACTIONS(1501), + [anon_sym_COLON_COLON] = ACTIONS(1383), + [anon_sym_SQUOTE] = ACTIONS(1387), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1391), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1401), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_ref] = ACTIONS(1405), + [anon_sym_dyn] = ACTIONS(1407), + [sym_mutable_specifier] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1411), + [aux_sym_string_literal_token1] = ACTIONS(1413), + [sym_char_literal] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1415), + [anon_sym_false] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1419), + [sym_crate] = ACTIONS(1419), + [sym_metavariable] = ACTIONS(1421), + [sym__raw_string_literal_start] = ACTIONS(1423), + [sym_float_literal] = ACTIONS(1411), }, [431] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2112), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2019), + [sym_bracketed_type] = STATE(3615), + [sym_lifetime] = STATE(849), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3395), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2487), + [sym_scoped_identifier] = STATE(2249), + [sym_scoped_type_identifier] = STATE(2116), + [sym_const_block] = STATE(2160), + [sym__pattern] = STATE(2137), + [sym_tuple_pattern] = STATE(2160), + [sym_slice_pattern] = STATE(2160), + [sym_tuple_struct_pattern] = STATE(2160), + [sym_struct_pattern] = STATE(2160), + [sym_remaining_field_pattern] = STATE(2160), + [sym_mut_pattern] = STATE(2160), + [sym_range_pattern] = STATE(2160), + [sym_ref_pattern] = STATE(2160), + [sym_captured_pattern] = STATE(2160), + [sym_reference_pattern] = STATE(2160), + [sym_or_pattern] = STATE(2160), + [sym__literal_pattern] = STATE(2036), + [sym_negative_literal] = STATE(2048), + [sym_string_literal] = STATE(2048), + [sym_raw_string_literal] = STATE(2048), + [sym_boolean_literal] = STATE(2048), [sym_line_comment] = STATE(431), [sym_block_comment] = STATE(431), - [sym_identifier] = ACTIONS(1550), - [anon_sym_LPAREN] = ACTIONS(1552), - [anon_sym_LBRACK] = ACTIONS(1552), - [anon_sym_LBRACE] = ACTIONS(1552), - [anon_sym_STAR] = ACTIONS(1552), - [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_DASH] = ACTIONS(1550), - [anon_sym_BANG] = ACTIONS(1552), - [anon_sym_AMP] = ACTIONS(1552), - [anon_sym_PIPE] = ACTIONS(1552), - [anon_sym_LT] = ACTIONS(1552), - [anon_sym__] = ACTIONS(1550), - [anon_sym_DOT_DOT] = ACTIONS(1552), - [anon_sym_COLON_COLON] = ACTIONS(1552), - [anon_sym_DASH_GT] = ACTIONS(1552), - [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_for] = ACTIONS(1550), - [anon_sym_if] = ACTIONS(1550), - [anon_sym_loop] = ACTIONS(1550), - [anon_sym_match] = ACTIONS(1550), - [anon_sym_return] = ACTIONS(1550), - [anon_sym_static] = ACTIONS(1550), - [anon_sym_union] = ACTIONS(1550), - [anon_sym_unsafe] = ACTIONS(1550), - [anon_sym_while] = ACTIONS(1550), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [anon_sym_yield] = ACTIONS(1550), - [anon_sym_move] = ACTIONS(1550), - [anon_sym_try] = ACTIONS(1550), - [sym_integer_literal] = ACTIONS(1552), - [aux_sym_string_literal_token1] = ACTIONS(1552), - [sym_char_literal] = ACTIONS(1552), - [anon_sym_true] = ACTIONS(1550), - [anon_sym_false] = ACTIONS(1550), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1550), - [sym_super] = ACTIONS(1550), - [sym_crate] = ACTIONS(1550), - [sym_metavariable] = ACTIONS(1552), - [sym__raw_string_literal_start] = ACTIONS(1552), - [sym_float_literal] = ACTIONS(1552), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(1353), + [anon_sym_LPAREN] = ACTIONS(1355), + [anon_sym_LBRACK] = ACTIONS(1359), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1367), + [anon_sym_i8] = ACTIONS(1367), + [anon_sym_u16] = ACTIONS(1367), + [anon_sym_i16] = ACTIONS(1367), + [anon_sym_u32] = ACTIONS(1367), + [anon_sym_i32] = ACTIONS(1367), + [anon_sym_u64] = ACTIONS(1367), + [anon_sym_i64] = ACTIONS(1367), + [anon_sym_u128] = ACTIONS(1367), + [anon_sym_i128] = ACTIONS(1367), + [anon_sym_isize] = ACTIONS(1367), + [anon_sym_usize] = ACTIONS(1367), + [anon_sym_f32] = ACTIONS(1367), + [anon_sym_f64] = ACTIONS(1367), + [anon_sym_bool] = ACTIONS(1367), + [anon_sym_str] = ACTIONS(1367), + [anon_sym_char] = ACTIONS(1367), + [anon_sym_DASH] = ACTIONS(1369), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1547), + [anon_sym_PIPE] = ACTIONS(1375), + [anon_sym_LT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1499), + [anon_sym_DOT_DOT] = ACTIONS(1501), + [anon_sym_COLON_COLON] = ACTIONS(1383), + [anon_sym_SQUOTE] = ACTIONS(1387), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1391), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1401), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_ref] = ACTIONS(1405), + [anon_sym_dyn] = ACTIONS(1407), + [sym_mutable_specifier] = ACTIONS(1553), + [sym_integer_literal] = ACTIONS(1411), + [aux_sym_string_literal_token1] = ACTIONS(1413), + [sym_char_literal] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1415), + [anon_sym_false] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1555), + [sym_super] = ACTIONS(1419), + [sym_crate] = ACTIONS(1419), + [sym_metavariable] = ACTIONS(1421), + [sym__raw_string_literal_start] = ACTIONS(1423), + [sym_float_literal] = ACTIONS(1411), }, [432] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2103), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2019), + [sym_bracketed_type] = STATE(3623), + [sym_lifetime] = STATE(853), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3169), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2528), + [sym_scoped_identifier] = STATE(2170), + [sym_scoped_type_identifier] = STATE(2116), + [sym_const_block] = STATE(2160), + [sym__pattern] = STATE(2137), + [sym_tuple_pattern] = STATE(2160), + [sym_slice_pattern] = STATE(2160), + [sym_tuple_struct_pattern] = STATE(2160), + [sym_struct_pattern] = STATE(2160), + [sym_remaining_field_pattern] = STATE(2160), + [sym_mut_pattern] = STATE(2160), + [sym_range_pattern] = STATE(2160), + [sym_ref_pattern] = STATE(2160), + [sym_captured_pattern] = STATE(2160), + [sym_reference_pattern] = STATE(2160), + [sym_or_pattern] = STATE(2160), + [sym__literal_pattern] = STATE(2036), + [sym_negative_literal] = STATE(2048), + [sym_string_literal] = STATE(2048), + [sym_raw_string_literal] = STATE(2048), + [sym_boolean_literal] = STATE(2048), [sym_line_comment] = STATE(432), [sym_block_comment] = STATE(432), - [sym_identifier] = ACTIONS(1554), - [anon_sym_LPAREN] = ACTIONS(1556), - [anon_sym_LBRACK] = ACTIONS(1556), - [anon_sym_LBRACE] = ACTIONS(1556), - [anon_sym_STAR] = ACTIONS(1556), - [anon_sym_u8] = ACTIONS(1554), - [anon_sym_i8] = ACTIONS(1554), - [anon_sym_u16] = ACTIONS(1554), - [anon_sym_i16] = ACTIONS(1554), - [anon_sym_u32] = ACTIONS(1554), - [anon_sym_i32] = ACTIONS(1554), - [anon_sym_u64] = ACTIONS(1554), - [anon_sym_i64] = ACTIONS(1554), - [anon_sym_u128] = ACTIONS(1554), - [anon_sym_i128] = ACTIONS(1554), - [anon_sym_isize] = ACTIONS(1554), - [anon_sym_usize] = ACTIONS(1554), - [anon_sym_f32] = ACTIONS(1554), - [anon_sym_f64] = ACTIONS(1554), - [anon_sym_bool] = ACTIONS(1554), - [anon_sym_str] = ACTIONS(1554), - [anon_sym_char] = ACTIONS(1554), - [anon_sym_DASH] = ACTIONS(1554), - [anon_sym_BANG] = ACTIONS(1556), - [anon_sym_AMP] = ACTIONS(1556), - [anon_sym_PIPE] = ACTIONS(1556), - [anon_sym_LT] = ACTIONS(1556), - [anon_sym__] = ACTIONS(1554), - [anon_sym_DOT_DOT] = ACTIONS(1556), - [anon_sym_COLON_COLON] = ACTIONS(1556), - [anon_sym_DASH_GT] = ACTIONS(1556), - [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_for] = ACTIONS(1554), - [anon_sym_if] = ACTIONS(1554), - [anon_sym_loop] = ACTIONS(1554), - [anon_sym_match] = ACTIONS(1554), - [anon_sym_return] = ACTIONS(1554), - [anon_sym_static] = ACTIONS(1554), - [anon_sym_union] = ACTIONS(1554), - [anon_sym_unsafe] = ACTIONS(1554), - [anon_sym_while] = ACTIONS(1554), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [anon_sym_yield] = ACTIONS(1554), - [anon_sym_move] = ACTIONS(1554), - [anon_sym_try] = ACTIONS(1554), - [sym_integer_literal] = ACTIONS(1556), - [aux_sym_string_literal_token1] = ACTIONS(1556), - [sym_char_literal] = ACTIONS(1556), - [anon_sym_true] = ACTIONS(1554), - [anon_sym_false] = ACTIONS(1554), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1554), - [sym_super] = ACTIONS(1554), - [sym_crate] = ACTIONS(1554), - [sym_metavariable] = ACTIONS(1556), - [sym__raw_string_literal_start] = ACTIONS(1556), - [sym_float_literal] = ACTIONS(1556), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1523), + [anon_sym_LBRACK] = ACTIONS(1359), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_DASH] = ACTIONS(1369), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1531), + [anon_sym_PIPE] = ACTIONS(1375), + [anon_sym_LT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1499), + [anon_sym_DOT_DOT] = ACTIONS(1501), + [anon_sym_COLON_COLON] = ACTIONS(1533), + [anon_sym_SQUOTE] = ACTIONS(1387), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1391), + [anon_sym_default] = ACTIONS(1535), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1537), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_ref] = ACTIONS(1405), + [anon_sym_dyn] = ACTIONS(1407), + [sym_mutable_specifier] = ACTIONS(1557), + [sym_integer_literal] = ACTIONS(1411), + [aux_sym_string_literal_token1] = ACTIONS(1413), + [sym_char_literal] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1415), + [anon_sym_false] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1539), + [sym_super] = ACTIONS(1539), + [sym_crate] = ACTIONS(1539), + [sym_metavariable] = ACTIONS(1541), + [sym__raw_string_literal_start] = ACTIONS(1423), + [sym_float_literal] = ACTIONS(1411), }, [433] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2391), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(2396), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_type_binding] = STATE(2575), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), - [sym_label] = STATE(3582), - [sym_block] = STATE(2575), - [sym__literal] = STATE(2575), - [sym_string_literal] = STATE(2861), - [sym_raw_string_literal] = STATE(2861), - [sym_boolean_literal] = STATE(2861), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2006), + [sym_bracketed_type] = STATE(3622), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3185), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2542), + [sym_scoped_identifier] = STATE(2112), + [sym_scoped_type_identifier] = STATE(2116), + [sym_const_block] = STATE(2160), + [sym__pattern] = STATE(2144), + [sym_tuple_pattern] = STATE(2160), + [sym_slice_pattern] = STATE(2160), + [sym_tuple_struct_pattern] = STATE(2160), + [sym_struct_pattern] = STATE(2160), + [sym_remaining_field_pattern] = STATE(2160), + [sym_mut_pattern] = STATE(2160), + [sym_range_pattern] = STATE(2160), + [sym_ref_pattern] = STATE(2160), + [sym_captured_pattern] = STATE(2160), + [sym_reference_pattern] = STATE(2160), + [sym_or_pattern] = STATE(2160), + [sym__literal_pattern] = STATE(2036), + [sym_negative_literal] = STATE(2048), + [sym_string_literal] = STATE(2048), + [sym_raw_string_literal] = STATE(2048), + [sym_boolean_literal] = STATE(2048), [sym_line_comment] = STATE(433), [sym_block_comment] = STATE(433), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1558), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_LBRACE] = ACTIONS(1564), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_GT] = ACTIONS(1570), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(1574), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [sym_integer_literal] = ACTIONS(1580), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1580), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1580), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1359), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1433), + [anon_sym_i8] = ACTIONS(1433), + [anon_sym_u16] = ACTIONS(1433), + [anon_sym_i16] = ACTIONS(1433), + [anon_sym_u32] = ACTIONS(1433), + [anon_sym_i32] = ACTIONS(1433), + [anon_sym_u64] = ACTIONS(1433), + [anon_sym_i64] = ACTIONS(1433), + [anon_sym_u128] = ACTIONS(1433), + [anon_sym_i128] = ACTIONS(1433), + [anon_sym_isize] = ACTIONS(1433), + [anon_sym_usize] = ACTIONS(1433), + [anon_sym_f32] = ACTIONS(1433), + [anon_sym_f64] = ACTIONS(1433), + [anon_sym_bool] = ACTIONS(1433), + [anon_sym_str] = ACTIONS(1433), + [anon_sym_char] = ACTIONS(1433), + [anon_sym_DASH] = ACTIONS(1369), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PIPE] = ACTIONS(1375), + [anon_sym_LT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1499), + [anon_sym_DOT_DOT] = ACTIONS(1501), + [anon_sym_COLON_COLON] = ACTIONS(1439), + [anon_sym_SQUOTE] = ACTIONS(1387), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1391), + [anon_sym_default] = ACTIONS(1441), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1443), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_ref] = ACTIONS(1405), + [anon_sym_dyn] = ACTIONS(1407), + [sym_mutable_specifier] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1411), + [aux_sym_string_literal_token1] = ACTIONS(1413), + [sym_char_literal] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1415), + [anon_sym_false] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1447), + [sym_super] = ACTIONS(1447), + [sym_crate] = ACTIONS(1447), + [sym_metavariable] = ACTIONS(1449), + [sym__raw_string_literal_start] = ACTIONS(1423), + [sym_float_literal] = ACTIONS(1411), }, [434] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2391), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(2396), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_type_binding] = STATE(2575), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), - [sym_label] = STATE(3582), - [sym_block] = STATE(2575), - [sym__literal] = STATE(2575), - [sym_string_literal] = STATE(2861), - [sym_raw_string_literal] = STATE(2861), - [sym_boolean_literal] = STATE(2861), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2019), + [sym_bracketed_type] = STATE(3622), + [sym_lifetime] = STATE(849), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3185), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2542), + [sym_scoped_identifier] = STATE(2112), + [sym_scoped_type_identifier] = STATE(2116), + [sym_const_block] = STATE(2160), + [sym__pattern] = STATE(2137), + [sym_tuple_pattern] = STATE(2160), + [sym_slice_pattern] = STATE(2160), + [sym_tuple_struct_pattern] = STATE(2160), + [sym_struct_pattern] = STATE(2160), + [sym_remaining_field_pattern] = STATE(2160), + [sym_mut_pattern] = STATE(2160), + [sym_range_pattern] = STATE(2160), + [sym_ref_pattern] = STATE(2160), + [sym_captured_pattern] = STATE(2160), + [sym_reference_pattern] = STATE(2160), + [sym_or_pattern] = STATE(2160), + [sym__literal_pattern] = STATE(2036), + [sym_negative_literal] = STATE(2048), + [sym_string_literal] = STATE(2048), + [sym_raw_string_literal] = STATE(2048), + [sym_boolean_literal] = STATE(2048), [sym_line_comment] = STATE(434), [sym_block_comment] = STATE(434), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1558), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_LBRACE] = ACTIONS(1564), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_GT] = ACTIONS(1586), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(1574), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [sym_integer_literal] = ACTIONS(1580), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1580), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1580), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1359), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1433), + [anon_sym_i8] = ACTIONS(1433), + [anon_sym_u16] = ACTIONS(1433), + [anon_sym_i16] = ACTIONS(1433), + [anon_sym_u32] = ACTIONS(1433), + [anon_sym_i32] = ACTIONS(1433), + [anon_sym_u64] = ACTIONS(1433), + [anon_sym_i64] = ACTIONS(1433), + [anon_sym_u128] = ACTIONS(1433), + [anon_sym_i128] = ACTIONS(1433), + [anon_sym_isize] = ACTIONS(1433), + [anon_sym_usize] = ACTIONS(1433), + [anon_sym_f32] = ACTIONS(1433), + [anon_sym_f64] = ACTIONS(1433), + [anon_sym_bool] = ACTIONS(1433), + [anon_sym_str] = ACTIONS(1433), + [anon_sym_char] = ACTIONS(1433), + [anon_sym_DASH] = ACTIONS(1369), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PIPE] = ACTIONS(1375), + [anon_sym_LT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1499), + [anon_sym_DOT_DOT] = ACTIONS(1501), + [anon_sym_COLON_COLON] = ACTIONS(1439), + [anon_sym_SQUOTE] = ACTIONS(1387), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1391), + [anon_sym_default] = ACTIONS(1441), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1443), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_ref] = ACTIONS(1405), + [anon_sym_dyn] = ACTIONS(1407), + [sym_mutable_specifier] = ACTIONS(1559), + [sym_integer_literal] = ACTIONS(1411), + [aux_sym_string_literal_token1] = ACTIONS(1413), + [sym_char_literal] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1415), + [anon_sym_false] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1561), + [sym_super] = ACTIONS(1447), + [sym_crate] = ACTIONS(1447), + [sym_metavariable] = ACTIONS(1449), + [sym__raw_string_literal_start] = ACTIONS(1423), + [sym_float_literal] = ACTIONS(1411), }, [435] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2391), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(2396), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_type_binding] = STATE(2575), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), - [sym_label] = STATE(3582), - [sym_block] = STATE(2575), - [sym__literal] = STATE(2575), - [sym_string_literal] = STATE(2861), - [sym_raw_string_literal] = STATE(2861), - [sym_boolean_literal] = STATE(2861), [sym_line_comment] = STATE(435), [sym_block_comment] = STATE(435), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1558), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_LBRACE] = ACTIONS(1564), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_GT] = ACTIONS(1588), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(1574), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [sym_integer_literal] = ACTIONS(1580), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1580), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1580), + [sym_identifier] = ACTIONS(1563), + [anon_sym_SEMI] = ACTIONS(1565), + [anon_sym_LPAREN] = ACTIONS(1565), + [anon_sym_RPAREN] = ACTIONS(1565), + [anon_sym_LBRACK] = ACTIONS(1565), + [anon_sym_RBRACK] = ACTIONS(1565), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_RBRACE] = ACTIONS(1565), + [anon_sym_COMMA] = ACTIONS(1565), + [anon_sym_COLON] = ACTIONS(1563), + [anon_sym_PLUS] = ACTIONS(1563), + [anon_sym_STAR] = ACTIONS(1563), + [anon_sym_QMARK] = ACTIONS(1565), + [anon_sym_u8] = ACTIONS(1563), + [anon_sym_i8] = ACTIONS(1563), + [anon_sym_u16] = ACTIONS(1563), + [anon_sym_i16] = ACTIONS(1563), + [anon_sym_u32] = ACTIONS(1563), + [anon_sym_i32] = ACTIONS(1563), + [anon_sym_u64] = ACTIONS(1563), + [anon_sym_i64] = ACTIONS(1563), + [anon_sym_u128] = ACTIONS(1563), + [anon_sym_i128] = ACTIONS(1563), + [anon_sym_isize] = ACTIONS(1563), + [anon_sym_usize] = ACTIONS(1563), + [anon_sym_f32] = ACTIONS(1563), + [anon_sym_f64] = ACTIONS(1563), + [anon_sym_bool] = ACTIONS(1563), + [anon_sym_str] = ACTIONS(1563), + [anon_sym_char] = ACTIONS(1563), + [anon_sym_DASH] = ACTIONS(1563), + [anon_sym_SLASH] = ACTIONS(1563), + [anon_sym_PERCENT] = ACTIONS(1563), + [anon_sym_CARET] = ACTIONS(1563), + [anon_sym_BANG] = ACTIONS(1563), + [anon_sym_AMP] = ACTIONS(1563), + [anon_sym_PIPE] = ACTIONS(1563), + [anon_sym_AMP_AMP] = ACTIONS(1565), + [anon_sym_PIPE_PIPE] = ACTIONS(1565), + [anon_sym_LT_LT] = ACTIONS(1563), + [anon_sym_GT_GT] = ACTIONS(1563), + [anon_sym_PLUS_EQ] = ACTIONS(1565), + [anon_sym_DASH_EQ] = ACTIONS(1565), + [anon_sym_STAR_EQ] = ACTIONS(1565), + [anon_sym_SLASH_EQ] = ACTIONS(1565), + [anon_sym_PERCENT_EQ] = ACTIONS(1565), + [anon_sym_CARET_EQ] = ACTIONS(1565), + [anon_sym_AMP_EQ] = ACTIONS(1565), + [anon_sym_PIPE_EQ] = ACTIONS(1565), + [anon_sym_LT_LT_EQ] = ACTIONS(1565), + [anon_sym_GT_GT_EQ] = ACTIONS(1565), + [anon_sym_EQ] = ACTIONS(1563), + [anon_sym_EQ_EQ] = ACTIONS(1565), + [anon_sym_BANG_EQ] = ACTIONS(1565), + [anon_sym_GT] = ACTIONS(1563), + [anon_sym_LT] = ACTIONS(1563), + [anon_sym_GT_EQ] = ACTIONS(1565), + [anon_sym_LT_EQ] = ACTIONS(1565), + [anon_sym_DOT] = ACTIONS(1563), + [anon_sym_DOT_DOT] = ACTIONS(1563), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1565), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1565), + [anon_sym_COLON_COLON] = ACTIONS(1565), + [anon_sym_SQUOTE] = ACTIONS(1563), + [anon_sym_as] = ACTIONS(1563), + [anon_sym_async] = ACTIONS(1563), + [anon_sym_break] = ACTIONS(1563), + [anon_sym_const] = ACTIONS(1563), + [anon_sym_continue] = ACTIONS(1563), + [anon_sym_default] = ACTIONS(1563), + [anon_sym_for] = ACTIONS(1563), + [anon_sym_if] = ACTIONS(1563), + [anon_sym_loop] = ACTIONS(1563), + [anon_sym_match] = ACTIONS(1563), + [anon_sym_return] = ACTIONS(1563), + [anon_sym_static] = ACTIONS(1563), + [anon_sym_union] = ACTIONS(1563), + [anon_sym_unsafe] = ACTIONS(1563), + [anon_sym_while] = ACTIONS(1563), + [anon_sym_else] = ACTIONS(1563), + [anon_sym_yield] = ACTIONS(1563), + [anon_sym_move] = ACTIONS(1563), + [anon_sym_try] = ACTIONS(1563), + [sym_integer_literal] = ACTIONS(1565), + [aux_sym_string_literal_token1] = ACTIONS(1565), + [sym_char_literal] = ACTIONS(1565), + [anon_sym_true] = ACTIONS(1563), + [anon_sym_false] = ACTIONS(1563), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1563), + [sym_super] = ACTIONS(1563), + [sym_crate] = ACTIONS(1563), + [sym_metavariable] = ACTIONS(1565), + [sym__raw_string_literal_start] = ACTIONS(1565), + [sym_float_literal] = ACTIONS(1565), }, [436] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2391), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(2396), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_type_binding] = STATE(2575), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), - [sym_label] = STATE(3582), - [sym_block] = STATE(2575), - [sym__literal] = STATE(2575), - [sym_string_literal] = STATE(2861), - [sym_raw_string_literal] = STATE(2861), - [sym_boolean_literal] = STATE(2861), [sym_line_comment] = STATE(436), [sym_block_comment] = STATE(436), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1558), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_LBRACE] = ACTIONS(1564), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_GT] = ACTIONS(1590), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(1574), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [sym_integer_literal] = ACTIONS(1580), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1580), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1580), + [sym_identifier] = ACTIONS(1563), + [anon_sym_LPAREN] = ACTIONS(1565), + [anon_sym_LBRACK] = ACTIONS(1565), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_EQ_GT] = ACTIONS(1565), + [anon_sym_COLON] = ACTIONS(1563), + [anon_sym_PLUS] = ACTIONS(1563), + [anon_sym_STAR] = ACTIONS(1563), + [anon_sym_QMARK] = ACTIONS(1565), + [anon_sym_u8] = ACTIONS(1563), + [anon_sym_i8] = ACTIONS(1563), + [anon_sym_u16] = ACTIONS(1563), + [anon_sym_i16] = ACTIONS(1563), + [anon_sym_u32] = ACTIONS(1563), + [anon_sym_i32] = ACTIONS(1563), + [anon_sym_u64] = ACTIONS(1563), + [anon_sym_i64] = ACTIONS(1563), + [anon_sym_u128] = ACTIONS(1563), + [anon_sym_i128] = ACTIONS(1563), + [anon_sym_isize] = ACTIONS(1563), + [anon_sym_usize] = ACTIONS(1563), + [anon_sym_f32] = ACTIONS(1563), + [anon_sym_f64] = ACTIONS(1563), + [anon_sym_bool] = ACTIONS(1563), + [anon_sym_str] = ACTIONS(1563), + [anon_sym_char] = ACTIONS(1563), + [anon_sym_DASH] = ACTIONS(1563), + [anon_sym_SLASH] = ACTIONS(1563), + [anon_sym_PERCENT] = ACTIONS(1563), + [anon_sym_CARET] = ACTIONS(1563), + [anon_sym_BANG] = ACTIONS(1563), + [anon_sym_AMP] = ACTIONS(1563), + [anon_sym_PIPE] = ACTIONS(1563), + [anon_sym_AMP_AMP] = ACTIONS(1565), + [anon_sym_PIPE_PIPE] = ACTIONS(1565), + [anon_sym_LT_LT] = ACTIONS(1563), + [anon_sym_GT_GT] = ACTIONS(1563), + [anon_sym_PLUS_EQ] = ACTIONS(1565), + [anon_sym_DASH_EQ] = ACTIONS(1565), + [anon_sym_STAR_EQ] = ACTIONS(1565), + [anon_sym_SLASH_EQ] = ACTIONS(1565), + [anon_sym_PERCENT_EQ] = ACTIONS(1565), + [anon_sym_CARET_EQ] = ACTIONS(1565), + [anon_sym_AMP_EQ] = ACTIONS(1565), + [anon_sym_PIPE_EQ] = ACTIONS(1565), + [anon_sym_LT_LT_EQ] = ACTIONS(1565), + [anon_sym_GT_GT_EQ] = ACTIONS(1565), + [anon_sym_EQ] = ACTIONS(1563), + [anon_sym_EQ_EQ] = ACTIONS(1565), + [anon_sym_BANG_EQ] = ACTIONS(1565), + [anon_sym_GT] = ACTIONS(1563), + [anon_sym_LT] = ACTIONS(1563), + [anon_sym_GT_EQ] = ACTIONS(1565), + [anon_sym_LT_EQ] = ACTIONS(1565), + [anon_sym_DOT] = ACTIONS(1563), + [anon_sym_DOT_DOT] = ACTIONS(1563), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1565), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1565), + [anon_sym_COLON_COLON] = ACTIONS(1565), + [anon_sym_SQUOTE] = ACTIONS(1563), + [anon_sym_as] = ACTIONS(1563), + [anon_sym_async] = ACTIONS(1563), + [anon_sym_break] = ACTIONS(1563), + [anon_sym_const] = ACTIONS(1563), + [anon_sym_continue] = ACTIONS(1563), + [anon_sym_default] = ACTIONS(1563), + [anon_sym_for] = ACTIONS(1563), + [anon_sym_if] = ACTIONS(1563), + [anon_sym_loop] = ACTIONS(1563), + [anon_sym_match] = ACTIONS(1563), + [anon_sym_return] = ACTIONS(1563), + [anon_sym_static] = ACTIONS(1563), + [anon_sym_union] = ACTIONS(1563), + [anon_sym_unsafe] = ACTIONS(1563), + [anon_sym_while] = ACTIONS(1563), + [anon_sym_yield] = ACTIONS(1563), + [anon_sym_move] = ACTIONS(1563), + [anon_sym_try] = ACTIONS(1563), + [sym_integer_literal] = ACTIONS(1565), + [aux_sym_string_literal_token1] = ACTIONS(1565), + [sym_char_literal] = ACTIONS(1565), + [anon_sym_true] = ACTIONS(1563), + [anon_sym_false] = ACTIONS(1563), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1563), + [sym_super] = ACTIONS(1563), + [sym_crate] = ACTIONS(1563), + [sym_metavariable] = ACTIONS(1565), + [sym__raw_string_literal_start] = ACTIONS(1565), + [sym_float_literal] = ACTIONS(1565), }, [437] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2391), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(2396), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_type_binding] = STATE(2575), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), - [sym_label] = STATE(3582), - [sym_block] = STATE(2575), - [sym__literal] = STATE(2575), - [sym_string_literal] = STATE(2861), - [sym_raw_string_literal] = STATE(2861), - [sym_boolean_literal] = STATE(2861), + [sym_bracketed_type] = STATE(3574), + [sym_generic_type] = STATE(3491), + [sym_generic_type_with_turbofish] = STATE(3212), + [sym_macro_invocation] = STATE(2160), + [sym_scoped_identifier] = STATE(1997), + [sym_scoped_type_identifier] = STATE(2902), + [sym_const_block] = STATE(2160), + [sym__pattern] = STATE(2136), + [sym_tuple_pattern] = STATE(2160), + [sym_slice_pattern] = STATE(2160), + [sym_tuple_struct_pattern] = STATE(2160), + [sym_struct_pattern] = STATE(2160), + [sym_remaining_field_pattern] = STATE(2160), + [sym_mut_pattern] = STATE(2160), + [sym_range_pattern] = STATE(2160), + [sym_ref_pattern] = STATE(2160), + [sym_captured_pattern] = STATE(2160), + [sym_reference_pattern] = STATE(2160), + [sym_or_pattern] = STATE(2160), + [sym__literal_pattern] = STATE(2036), + [sym_negative_literal] = STATE(2048), + [sym_string_literal] = STATE(2048), + [sym_raw_string_literal] = STATE(2048), + [sym_boolean_literal] = STATE(2048), [sym_line_comment] = STATE(437), [sym_block_comment] = STATE(437), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1558), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_LBRACE] = ACTIONS(1564), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_GT] = ACTIONS(1592), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(1574), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [sym_integer_literal] = ACTIONS(1580), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1580), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1580), + [sym_identifier] = ACTIONS(1567), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1569), + [anon_sym_LBRACE] = ACTIONS(1569), + [anon_sym_STAR] = ACTIONS(1569), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u128] = ACTIONS(1567), + [anon_sym_i128] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_str] = ACTIONS(1567), + [anon_sym_char] = ACTIONS(1567), + [anon_sym_DASH] = ACTIONS(1567), + [anon_sym_BANG] = ACTIONS(1569), + [anon_sym_AMP] = ACTIONS(1569), + [anon_sym_PIPE] = ACTIONS(1569), + [anon_sym_LT] = ACTIONS(1569), + [anon_sym__] = ACTIONS(1567), + [anon_sym_DOT_DOT] = ACTIONS(1569), + [anon_sym_COLON_COLON] = ACTIONS(1569), + [anon_sym_DASH_GT] = ACTIONS(1569), + [anon_sym_SQUOTE] = ACTIONS(1567), + [anon_sym_async] = ACTIONS(1567), + [anon_sym_break] = ACTIONS(1567), + [anon_sym_const] = ACTIONS(1567), + [anon_sym_continue] = ACTIONS(1567), + [anon_sym_default] = ACTIONS(1567), + [anon_sym_for] = ACTIONS(1567), + [anon_sym_if] = ACTIONS(1567), + [anon_sym_loop] = ACTIONS(1567), + [anon_sym_match] = ACTIONS(1567), + [anon_sym_return] = ACTIONS(1567), + [anon_sym_static] = ACTIONS(1567), + [anon_sym_union] = ACTIONS(1567), + [anon_sym_unsafe] = ACTIONS(1567), + [anon_sym_while] = ACTIONS(1567), + [anon_sym_ref] = ACTIONS(1405), + [sym_mutable_specifier] = ACTIONS(1505), + [anon_sym_yield] = ACTIONS(1567), + [anon_sym_move] = ACTIONS(1567), + [anon_sym_try] = ACTIONS(1567), + [sym_integer_literal] = ACTIONS(1569), + [aux_sym_string_literal_token1] = ACTIONS(1569), + [sym_char_literal] = ACTIONS(1569), + [anon_sym_true] = ACTIONS(1567), + [anon_sym_false] = ACTIONS(1567), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1567), + [sym_super] = ACTIONS(1567), + [sym_crate] = ACTIONS(1567), + [sym_metavariable] = ACTIONS(1569), + [sym__raw_string_literal_start] = ACTIONS(1569), + [sym_float_literal] = ACTIONS(1569), }, [438] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2391), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(2396), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_type_binding] = STATE(2575), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), - [sym_label] = STATE(3582), - [sym_block] = STATE(2575), - [sym__literal] = STATE(2575), - [sym_string_literal] = STATE(2861), - [sym_raw_string_literal] = STATE(2861), - [sym_boolean_literal] = STATE(2861), + [sym_bracketed_type] = STATE(3574), + [sym_generic_type] = STATE(3491), + [sym_generic_type_with_turbofish] = STATE(3212), + [sym_macro_invocation] = STATE(2160), + [sym_scoped_identifier] = STATE(1997), + [sym_scoped_type_identifier] = STATE(2902), + [sym_const_block] = STATE(2160), + [sym__pattern] = STATE(2133), + [sym_tuple_pattern] = STATE(2160), + [sym_slice_pattern] = STATE(2160), + [sym_tuple_struct_pattern] = STATE(2160), + [sym_struct_pattern] = STATE(2160), + [sym_remaining_field_pattern] = STATE(2160), + [sym_mut_pattern] = STATE(2160), + [sym_range_pattern] = STATE(2160), + [sym_ref_pattern] = STATE(2160), + [sym_captured_pattern] = STATE(2160), + [sym_reference_pattern] = STATE(2160), + [sym_or_pattern] = STATE(2160), + [sym__literal_pattern] = STATE(2036), + [sym_negative_literal] = STATE(2048), + [sym_string_literal] = STATE(2048), + [sym_raw_string_literal] = STATE(2048), + [sym_boolean_literal] = STATE(2048), [sym_line_comment] = STATE(438), [sym_block_comment] = STATE(438), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1558), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_LBRACE] = ACTIONS(1564), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_GT] = ACTIONS(1594), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(1574), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [sym_integer_literal] = ACTIONS(1580), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1580), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1580), + [sym_identifier] = ACTIONS(1571), + [anon_sym_LPAREN] = ACTIONS(1573), + [anon_sym_LBRACK] = ACTIONS(1573), + [anon_sym_LBRACE] = ACTIONS(1573), + [anon_sym_STAR] = ACTIONS(1573), + [anon_sym_u8] = ACTIONS(1571), + [anon_sym_i8] = ACTIONS(1571), + [anon_sym_u16] = ACTIONS(1571), + [anon_sym_i16] = ACTIONS(1571), + [anon_sym_u32] = ACTIONS(1571), + [anon_sym_i32] = ACTIONS(1571), + [anon_sym_u64] = ACTIONS(1571), + [anon_sym_i64] = ACTIONS(1571), + [anon_sym_u128] = ACTIONS(1571), + [anon_sym_i128] = ACTIONS(1571), + [anon_sym_isize] = ACTIONS(1571), + [anon_sym_usize] = ACTIONS(1571), + [anon_sym_f32] = ACTIONS(1571), + [anon_sym_f64] = ACTIONS(1571), + [anon_sym_bool] = ACTIONS(1571), + [anon_sym_str] = ACTIONS(1571), + [anon_sym_char] = ACTIONS(1571), + [anon_sym_DASH] = ACTIONS(1571), + [anon_sym_BANG] = ACTIONS(1573), + [anon_sym_AMP] = ACTIONS(1573), + [anon_sym_PIPE] = ACTIONS(1573), + [anon_sym_LT] = ACTIONS(1573), + [anon_sym__] = ACTIONS(1571), + [anon_sym_DOT_DOT] = ACTIONS(1573), + [anon_sym_COLON_COLON] = ACTIONS(1573), + [anon_sym_DASH_GT] = ACTIONS(1573), + [anon_sym_SQUOTE] = ACTIONS(1571), + [anon_sym_async] = ACTIONS(1571), + [anon_sym_break] = ACTIONS(1571), + [anon_sym_const] = ACTIONS(1571), + [anon_sym_continue] = ACTIONS(1571), + [anon_sym_default] = ACTIONS(1571), + [anon_sym_for] = ACTIONS(1571), + [anon_sym_if] = ACTIONS(1571), + [anon_sym_loop] = ACTIONS(1571), + [anon_sym_match] = ACTIONS(1571), + [anon_sym_return] = ACTIONS(1571), + [anon_sym_static] = ACTIONS(1571), + [anon_sym_union] = ACTIONS(1571), + [anon_sym_unsafe] = ACTIONS(1571), + [anon_sym_while] = ACTIONS(1571), + [anon_sym_ref] = ACTIONS(1405), + [sym_mutable_specifier] = ACTIONS(1505), + [anon_sym_yield] = ACTIONS(1571), + [anon_sym_move] = ACTIONS(1571), + [anon_sym_try] = ACTIONS(1571), + [sym_integer_literal] = ACTIONS(1573), + [aux_sym_string_literal_token1] = ACTIONS(1573), + [sym_char_literal] = ACTIONS(1573), + [anon_sym_true] = ACTIONS(1571), + [anon_sym_false] = ACTIONS(1571), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1571), + [sym_super] = ACTIONS(1571), + [sym_crate] = ACTIONS(1571), + [sym_metavariable] = ACTIONS(1573), + [sym__raw_string_literal_start] = ACTIONS(1573), + [sym_float_literal] = ACTIONS(1573), }, [439] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2391), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(2396), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_type_binding] = STATE(2575), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), - [sym_label] = STATE(3582), - [sym_block] = STATE(2575), - [sym__literal] = STATE(2575), - [sym_string_literal] = STATE(2861), - [sym_raw_string_literal] = STATE(2861), - [sym_boolean_literal] = STATE(2861), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2518), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(2522), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_type_binding] = STATE(2763), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), + [sym_label] = STATE(3679), + [sym_block] = STATE(2763), + [sym__literal] = STATE(2763), + [sym_string_literal] = STATE(3088), + [sym_raw_string_literal] = STATE(3088), + [sym_boolean_literal] = STATE(3088), [sym_line_comment] = STATE(439), [sym_block_comment] = STATE(439), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1558), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_LBRACE] = ACTIONS(1564), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_GT] = ACTIONS(1596), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(1574), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [sym_integer_literal] = ACTIONS(1580), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1580), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1580), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(1575), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_GT] = ACTIONS(1587), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [sym_integer_literal] = ACTIONS(1597), + [aux_sym_string_literal_token1] = ACTIONS(1413), + [sym_char_literal] = ACTIONS(1597), + [anon_sym_true] = ACTIONS(1415), + [anon_sym_false] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), + [sym__raw_string_literal_start] = ACTIONS(1423), + [sym_float_literal] = ACTIONS(1597), }, [440] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2391), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(2396), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_type_binding] = STATE(2575), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), - [sym_label] = STATE(3582), - [sym_block] = STATE(2575), - [sym__literal] = STATE(2575), - [sym_string_literal] = STATE(2861), - [sym_raw_string_literal] = STATE(2861), - [sym_boolean_literal] = STATE(2861), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2518), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(2522), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_type_binding] = STATE(2763), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), + [sym_label] = STATE(3679), + [sym_block] = STATE(2763), + [sym__literal] = STATE(2763), + [sym_string_literal] = STATE(3088), + [sym_raw_string_literal] = STATE(3088), + [sym_boolean_literal] = STATE(3088), [sym_line_comment] = STATE(440), [sym_block_comment] = STATE(440), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1558), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_LBRACE] = ACTIONS(1564), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_GT] = ACTIONS(1598), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(1574), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [sym_integer_literal] = ACTIONS(1580), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1580), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1580), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(1575), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_GT] = ACTIONS(1603), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [sym_integer_literal] = ACTIONS(1597), + [aux_sym_string_literal_token1] = ACTIONS(1413), + [sym_char_literal] = ACTIONS(1597), + [anon_sym_true] = ACTIONS(1415), + [anon_sym_false] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), + [sym__raw_string_literal_start] = ACTIONS(1423), + [sym_float_literal] = ACTIONS(1597), }, [441] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2391), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(2396), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_type_binding] = STATE(2575), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), - [sym_label] = STATE(3582), - [sym_block] = STATE(2575), - [sym__literal] = STATE(2575), - [sym_string_literal] = STATE(2861), - [sym_raw_string_literal] = STATE(2861), - [sym_boolean_literal] = STATE(2861), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2518), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(2522), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_type_binding] = STATE(2763), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), + [sym_label] = STATE(3679), + [sym_block] = STATE(2763), + [sym__literal] = STATE(2763), + [sym_string_literal] = STATE(3088), + [sym_raw_string_literal] = STATE(3088), + [sym_boolean_literal] = STATE(3088), [sym_line_comment] = STATE(441), [sym_block_comment] = STATE(441), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1558), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_LBRACE] = ACTIONS(1564), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_GT] = ACTIONS(1600), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(1574), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [sym_integer_literal] = ACTIONS(1580), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1580), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1580), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(1575), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_GT] = ACTIONS(1605), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [sym_integer_literal] = ACTIONS(1597), + [aux_sym_string_literal_token1] = ACTIONS(1413), + [sym_char_literal] = ACTIONS(1597), + [anon_sym_true] = ACTIONS(1415), + [anon_sym_false] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), + [sym__raw_string_literal_start] = ACTIONS(1423), + [sym_float_literal] = ACTIONS(1597), }, [442] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2391), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(2396), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_type_binding] = STATE(2575), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), - [sym_label] = STATE(3582), - [sym_block] = STATE(2575), - [sym__literal] = STATE(2575), - [sym_string_literal] = STATE(2861), - [sym_raw_string_literal] = STATE(2861), - [sym_boolean_literal] = STATE(2861), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2518), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(2522), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_type_binding] = STATE(2763), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), + [sym_label] = STATE(3679), + [sym_block] = STATE(2763), + [sym__literal] = STATE(2763), + [sym_string_literal] = STATE(3088), + [sym_raw_string_literal] = STATE(3088), + [sym_boolean_literal] = STATE(3088), [sym_line_comment] = STATE(442), [sym_block_comment] = STATE(442), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1558), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_LBRACE] = ACTIONS(1564), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(1574), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [sym_integer_literal] = ACTIONS(1580), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1580), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1580), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(1575), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_GT] = ACTIONS(1607), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [sym_integer_literal] = ACTIONS(1597), + [aux_sym_string_literal_token1] = ACTIONS(1413), + [sym_char_literal] = ACTIONS(1597), + [anon_sym_true] = ACTIONS(1415), + [anon_sym_false] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), + [sym__raw_string_literal_start] = ACTIONS(1423), + [sym_float_literal] = ACTIONS(1597), }, [443] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2300), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(2301), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_type_binding] = STATE(2426), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), - [sym_label] = STATE(3582), - [sym_block] = STATE(2426), - [sym__literal] = STATE(2426), - [sym_string_literal] = STATE(2861), - [sym_raw_string_literal] = STATE(2861), - [sym_boolean_literal] = STATE(2861), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2518), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(2522), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_type_binding] = STATE(2763), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), + [sym_label] = STATE(3679), + [sym_block] = STATE(2763), + [sym__literal] = STATE(2763), + [sym_string_literal] = STATE(3088), + [sym_raw_string_literal] = STATE(3088), + [sym_boolean_literal] = STATE(3088), [sym_line_comment] = STATE(443), [sym_block_comment] = STATE(443), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1558), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_LBRACE] = ACTIONS(1564), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(1574), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [sym_integer_literal] = ACTIONS(1580), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1580), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1580), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(1575), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_GT] = ACTIONS(1609), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [sym_integer_literal] = ACTIONS(1597), + [aux_sym_string_literal_token1] = ACTIONS(1413), + [sym_char_literal] = ACTIONS(1597), + [anon_sym_true] = ACTIONS(1415), + [anon_sym_false] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), + [sym__raw_string_literal_start] = ACTIONS(1423), + [sym_float_literal] = ACTIONS(1597), }, [444] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2345), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(2346), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_type_binding] = STATE(2425), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), - [sym_label] = STATE(3582), - [sym_block] = STATE(2425), - [sym__literal] = STATE(2425), - [sym_string_literal] = STATE(2861), - [sym_raw_string_literal] = STATE(2861), - [sym_boolean_literal] = STATE(2861), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2518), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(2522), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_type_binding] = STATE(2763), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), + [sym_label] = STATE(3679), + [sym_block] = STATE(2763), + [sym__literal] = STATE(2763), + [sym_string_literal] = STATE(3088), + [sym_raw_string_literal] = STATE(3088), + [sym_boolean_literal] = STATE(3088), [sym_line_comment] = STATE(444), [sym_block_comment] = STATE(444), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1558), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_LBRACE] = ACTIONS(1564), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(1574), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [sym_integer_literal] = ACTIONS(1580), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1580), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1580), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(1575), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_GT] = ACTIONS(1611), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [sym_integer_literal] = ACTIONS(1597), + [aux_sym_string_literal_token1] = ACTIONS(1413), + [sym_char_literal] = ACTIONS(1597), + [anon_sym_true] = ACTIONS(1415), + [anon_sym_false] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), + [sym__raw_string_literal_start] = ACTIONS(1423), + [sym_float_literal] = ACTIONS(1597), }, [445] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2352), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(2353), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_type_binding] = STATE(2441), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), - [sym_label] = STATE(3582), - [sym_block] = STATE(2441), - [sym__literal] = STATE(2441), - [sym_string_literal] = STATE(2861), - [sym_raw_string_literal] = STATE(2861), - [sym_boolean_literal] = STATE(2861), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2518), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(2522), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_type_binding] = STATE(2763), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), + [sym_label] = STATE(3679), + [sym_block] = STATE(2763), + [sym__literal] = STATE(2763), + [sym_string_literal] = STATE(3088), + [sym_raw_string_literal] = STATE(3088), + [sym_boolean_literal] = STATE(3088), [sym_line_comment] = STATE(445), [sym_block_comment] = STATE(445), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(1558), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_LBRACE] = ACTIONS(1564), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(1574), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [sym_integer_literal] = ACTIONS(1580), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1580), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1580), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(1575), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_GT] = ACTIONS(1613), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [sym_integer_literal] = ACTIONS(1597), + [aux_sym_string_literal_token1] = ACTIONS(1413), + [sym_char_literal] = ACTIONS(1597), + [anon_sym_true] = ACTIONS(1415), + [anon_sym_false] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), + [sym__raw_string_literal_start] = ACTIONS(1423), + [sym_float_literal] = ACTIONS(1597), }, [446] = { - [sym_else_clause] = STATE(455), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2518), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(2522), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_type_binding] = STATE(2763), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), + [sym_label] = STATE(3679), + [sym_block] = STATE(2763), + [sym__literal] = STATE(2763), + [sym_string_literal] = STATE(3088), + [sym_raw_string_literal] = STATE(3088), + [sym_boolean_literal] = STATE(3088), [sym_line_comment] = STATE(446), [sym_block_comment] = STATE(446), - [sym_identifier] = ACTIONS(1196), - [anon_sym_LPAREN] = ACTIONS(1194), - [anon_sym_LBRACK] = ACTIONS(1194), - [anon_sym_RBRACE] = ACTIONS(1194), - [anon_sym_PLUS] = ACTIONS(1196), - [anon_sym_STAR] = ACTIONS(1196), - [anon_sym_QMARK] = ACTIONS(1194), - [anon_sym_u8] = ACTIONS(1196), - [anon_sym_i8] = ACTIONS(1196), - [anon_sym_u16] = ACTIONS(1196), - [anon_sym_i16] = ACTIONS(1196), - [anon_sym_u32] = ACTIONS(1196), - [anon_sym_i32] = ACTIONS(1196), - [anon_sym_u64] = ACTIONS(1196), - [anon_sym_i64] = ACTIONS(1196), - [anon_sym_u128] = ACTIONS(1196), - [anon_sym_i128] = ACTIONS(1196), - [anon_sym_isize] = ACTIONS(1196), - [anon_sym_usize] = ACTIONS(1196), - [anon_sym_f32] = ACTIONS(1196), - [anon_sym_f64] = ACTIONS(1196), - [anon_sym_bool] = ACTIONS(1196), - [anon_sym_str] = ACTIONS(1196), - [anon_sym_char] = ACTIONS(1196), - [anon_sym_DASH] = ACTIONS(1196), - [anon_sym_SLASH] = ACTIONS(1196), - [anon_sym_PERCENT] = ACTIONS(1196), - [anon_sym_CARET] = ACTIONS(1196), - [anon_sym_AMP] = ACTIONS(1196), - [anon_sym_PIPE] = ACTIONS(1196), - [anon_sym_AMP_AMP] = ACTIONS(1194), - [anon_sym_PIPE_PIPE] = ACTIONS(1194), - [anon_sym_LT_LT] = ACTIONS(1196), - [anon_sym_GT_GT] = ACTIONS(1196), - [anon_sym_PLUS_EQ] = ACTIONS(1194), - [anon_sym_DASH_EQ] = ACTIONS(1194), - [anon_sym_STAR_EQ] = ACTIONS(1194), - [anon_sym_SLASH_EQ] = ACTIONS(1194), - [anon_sym_PERCENT_EQ] = ACTIONS(1194), - [anon_sym_CARET_EQ] = ACTIONS(1194), - [anon_sym_AMP_EQ] = ACTIONS(1194), - [anon_sym_PIPE_EQ] = ACTIONS(1194), - [anon_sym_LT_LT_EQ] = ACTIONS(1194), - [anon_sym_GT_GT_EQ] = ACTIONS(1194), - [anon_sym_EQ] = ACTIONS(1196), - [anon_sym_EQ_EQ] = ACTIONS(1194), - [anon_sym_BANG_EQ] = ACTIONS(1194), - [anon_sym_GT] = ACTIONS(1196), - [anon_sym_LT] = ACTIONS(1196), - [anon_sym_GT_EQ] = ACTIONS(1194), - [anon_sym_LT_EQ] = ACTIONS(1194), - [anon_sym__] = ACTIONS(1196), - [anon_sym_DOT] = ACTIONS(1196), - [anon_sym_DOT_DOT] = ACTIONS(1196), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1194), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1194), - [anon_sym_COMMA] = ACTIONS(1194), - [anon_sym_COLON_COLON] = ACTIONS(1194), - [anon_sym_POUND] = ACTIONS(1194), - [anon_sym_as] = ACTIONS(1196), - [anon_sym_const] = ACTIONS(1196), - [anon_sym_default] = ACTIONS(1196), - [anon_sym_union] = ACTIONS(1196), - [anon_sym_ref] = ACTIONS(1196), - [anon_sym_else] = ACTIONS(1602), - [sym_mutable_specifier] = ACTIONS(1196), - [sym_integer_literal] = ACTIONS(1194), - [aux_sym_string_literal_token1] = ACTIONS(1194), - [sym_char_literal] = ACTIONS(1194), - [anon_sym_true] = ACTIONS(1196), - [anon_sym_false] = ACTIONS(1196), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1196), - [sym_super] = ACTIONS(1196), - [sym_crate] = ACTIONS(1196), - [sym_metavariable] = ACTIONS(1194), - [sym__raw_string_literal_start] = ACTIONS(1194), - [sym_float_literal] = ACTIONS(1194), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(1575), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_GT] = ACTIONS(1615), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [sym_integer_literal] = ACTIONS(1597), + [aux_sym_string_literal_token1] = ACTIONS(1413), + [sym_char_literal] = ACTIONS(1597), + [anon_sym_true] = ACTIONS(1415), + [anon_sym_false] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), + [sym__raw_string_literal_start] = ACTIONS(1423), + [sym_float_literal] = ACTIONS(1597), }, [447] = { + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2518), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(2522), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_type_binding] = STATE(2763), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), + [sym_label] = STATE(3679), + [sym_block] = STATE(2763), + [sym__literal] = STATE(2763), + [sym_string_literal] = STATE(3088), + [sym_raw_string_literal] = STATE(3088), + [sym_boolean_literal] = STATE(3088), [sym_line_comment] = STATE(447), [sym_block_comment] = STATE(447), - [sym_identifier] = ACTIONS(1242), - [anon_sym_LPAREN] = ACTIONS(1240), - [anon_sym_LBRACK] = ACTIONS(1240), - [anon_sym_RBRACE] = ACTIONS(1240), - [anon_sym_PLUS] = ACTIONS(1242), - [anon_sym_STAR] = ACTIONS(1242), - [anon_sym_QMARK] = ACTIONS(1240), - [anon_sym_u8] = ACTIONS(1242), - [anon_sym_i8] = ACTIONS(1242), - [anon_sym_u16] = ACTIONS(1242), - [anon_sym_i16] = ACTIONS(1242), - [anon_sym_u32] = ACTIONS(1242), - [anon_sym_i32] = ACTIONS(1242), - [anon_sym_u64] = ACTIONS(1242), - [anon_sym_i64] = ACTIONS(1242), - [anon_sym_u128] = ACTIONS(1242), - [anon_sym_i128] = ACTIONS(1242), - [anon_sym_isize] = ACTIONS(1242), - [anon_sym_usize] = ACTIONS(1242), - [anon_sym_f32] = ACTIONS(1242), - [anon_sym_f64] = ACTIONS(1242), - [anon_sym_bool] = ACTIONS(1242), - [anon_sym_str] = ACTIONS(1242), - [anon_sym_char] = ACTIONS(1242), - [anon_sym_DASH] = ACTIONS(1242), - [anon_sym_SLASH] = ACTIONS(1242), - [anon_sym_PERCENT] = ACTIONS(1242), - [anon_sym_CARET] = ACTIONS(1242), - [anon_sym_AMP] = ACTIONS(1242), - [anon_sym_PIPE] = ACTIONS(1242), - [anon_sym_AMP_AMP] = ACTIONS(1240), - [anon_sym_PIPE_PIPE] = ACTIONS(1240), - [anon_sym_LT_LT] = ACTIONS(1242), - [anon_sym_GT_GT] = ACTIONS(1242), - [anon_sym_PLUS_EQ] = ACTIONS(1240), - [anon_sym_DASH_EQ] = ACTIONS(1240), - [anon_sym_STAR_EQ] = ACTIONS(1240), - [anon_sym_SLASH_EQ] = ACTIONS(1240), - [anon_sym_PERCENT_EQ] = ACTIONS(1240), - [anon_sym_CARET_EQ] = ACTIONS(1240), - [anon_sym_AMP_EQ] = ACTIONS(1240), - [anon_sym_PIPE_EQ] = ACTIONS(1240), - [anon_sym_LT_LT_EQ] = ACTIONS(1240), - [anon_sym_GT_GT_EQ] = ACTIONS(1240), - [anon_sym_EQ] = ACTIONS(1242), - [anon_sym_EQ_EQ] = ACTIONS(1240), - [anon_sym_BANG_EQ] = ACTIONS(1240), - [anon_sym_GT] = ACTIONS(1242), - [anon_sym_LT] = ACTIONS(1242), - [anon_sym_GT_EQ] = ACTIONS(1240), - [anon_sym_LT_EQ] = ACTIONS(1240), - [anon_sym__] = ACTIONS(1242), - [anon_sym_DOT] = ACTIONS(1242), - [anon_sym_DOT_DOT] = ACTIONS(1242), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1240), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1240), - [anon_sym_COMMA] = ACTIONS(1240), - [anon_sym_COLON_COLON] = ACTIONS(1240), - [anon_sym_POUND] = ACTIONS(1240), - [anon_sym_as] = ACTIONS(1242), - [anon_sym_const] = ACTIONS(1242), - [anon_sym_default] = ACTIONS(1242), - [anon_sym_union] = ACTIONS(1242), - [anon_sym_ref] = ACTIONS(1242), - [anon_sym_else] = ACTIONS(1242), - [sym_mutable_specifier] = ACTIONS(1242), - [sym_integer_literal] = ACTIONS(1240), - [aux_sym_string_literal_token1] = ACTIONS(1240), - [sym_char_literal] = ACTIONS(1240), - [anon_sym_true] = ACTIONS(1242), - [anon_sym_false] = ACTIONS(1242), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1242), - [sym_super] = ACTIONS(1242), - [sym_crate] = ACTIONS(1242), - [sym_metavariable] = ACTIONS(1240), - [sym__raw_string_literal_start] = ACTIONS(1240), - [sym_float_literal] = ACTIONS(1240), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(1575), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_GT] = ACTIONS(1617), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [sym_integer_literal] = ACTIONS(1597), + [aux_sym_string_literal_token1] = ACTIONS(1413), + [sym_char_literal] = ACTIONS(1597), + [anon_sym_true] = ACTIONS(1415), + [anon_sym_false] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), + [sym__raw_string_literal_start] = ACTIONS(1423), + [sym_float_literal] = ACTIONS(1597), }, [448] = { + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2390), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(2387), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_type_binding] = STATE(2493), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), + [sym_label] = STATE(3679), + [sym_block] = STATE(2493), + [sym__literal] = STATE(2493), + [sym_string_literal] = STATE(3088), + [sym_raw_string_literal] = STATE(3088), + [sym_boolean_literal] = STATE(3088), [sym_line_comment] = STATE(448), [sym_block_comment] = STATE(448), - [sym_identifier] = ACTIONS(1246), - [anon_sym_LPAREN] = ACTIONS(1244), - [anon_sym_LBRACK] = ACTIONS(1244), - [anon_sym_RBRACE] = ACTIONS(1244), - [anon_sym_PLUS] = ACTIONS(1246), - [anon_sym_STAR] = ACTIONS(1246), - [anon_sym_QMARK] = ACTIONS(1244), - [anon_sym_u8] = ACTIONS(1246), - [anon_sym_i8] = ACTIONS(1246), - [anon_sym_u16] = ACTIONS(1246), - [anon_sym_i16] = ACTIONS(1246), - [anon_sym_u32] = ACTIONS(1246), - [anon_sym_i32] = ACTIONS(1246), - [anon_sym_u64] = ACTIONS(1246), - [anon_sym_i64] = ACTIONS(1246), - [anon_sym_u128] = ACTIONS(1246), - [anon_sym_i128] = ACTIONS(1246), - [anon_sym_isize] = ACTIONS(1246), - [anon_sym_usize] = ACTIONS(1246), - [anon_sym_f32] = ACTIONS(1246), - [anon_sym_f64] = ACTIONS(1246), - [anon_sym_bool] = ACTIONS(1246), - [anon_sym_str] = ACTIONS(1246), - [anon_sym_char] = ACTIONS(1246), - [anon_sym_DASH] = ACTIONS(1246), - [anon_sym_SLASH] = ACTIONS(1246), - [anon_sym_PERCENT] = ACTIONS(1246), - [anon_sym_CARET] = ACTIONS(1246), - [anon_sym_AMP] = ACTIONS(1246), - [anon_sym_PIPE] = ACTIONS(1246), - [anon_sym_AMP_AMP] = ACTIONS(1244), - [anon_sym_PIPE_PIPE] = ACTIONS(1244), - [anon_sym_LT_LT] = ACTIONS(1246), - [anon_sym_GT_GT] = ACTIONS(1246), - [anon_sym_PLUS_EQ] = ACTIONS(1244), - [anon_sym_DASH_EQ] = ACTIONS(1244), - [anon_sym_STAR_EQ] = ACTIONS(1244), - [anon_sym_SLASH_EQ] = ACTIONS(1244), - [anon_sym_PERCENT_EQ] = ACTIONS(1244), - [anon_sym_CARET_EQ] = ACTIONS(1244), - [anon_sym_AMP_EQ] = ACTIONS(1244), - [anon_sym_PIPE_EQ] = ACTIONS(1244), - [anon_sym_LT_LT_EQ] = ACTIONS(1244), - [anon_sym_GT_GT_EQ] = ACTIONS(1244), - [anon_sym_EQ] = ACTIONS(1246), - [anon_sym_EQ_EQ] = ACTIONS(1244), - [anon_sym_BANG_EQ] = ACTIONS(1244), - [anon_sym_GT] = ACTIONS(1246), - [anon_sym_LT] = ACTIONS(1246), - [anon_sym_GT_EQ] = ACTIONS(1244), - [anon_sym_LT_EQ] = ACTIONS(1244), - [anon_sym__] = ACTIONS(1246), - [anon_sym_DOT] = ACTIONS(1246), - [anon_sym_DOT_DOT] = ACTIONS(1246), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1244), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1244), - [anon_sym_COMMA] = ACTIONS(1244), - [anon_sym_COLON_COLON] = ACTIONS(1244), - [anon_sym_POUND] = ACTIONS(1244), - [anon_sym_as] = ACTIONS(1246), - [anon_sym_const] = ACTIONS(1246), - [anon_sym_default] = ACTIONS(1246), - [anon_sym_union] = ACTIONS(1246), - [anon_sym_ref] = ACTIONS(1246), - [anon_sym_else] = ACTIONS(1246), - [sym_mutable_specifier] = ACTIONS(1246), - [sym_integer_literal] = ACTIONS(1244), - [aux_sym_string_literal_token1] = ACTIONS(1244), - [sym_char_literal] = ACTIONS(1244), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1246), - [sym_super] = ACTIONS(1246), - [sym_crate] = ACTIONS(1246), - [sym_metavariable] = ACTIONS(1244), - [sym__raw_string_literal_start] = ACTIONS(1244), - [sym_float_literal] = ACTIONS(1244), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(1575), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [sym_integer_literal] = ACTIONS(1597), + [aux_sym_string_literal_token1] = ACTIONS(1413), + [sym_char_literal] = ACTIONS(1597), + [anon_sym_true] = ACTIONS(1415), + [anon_sym_false] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), + [sym__raw_string_literal_start] = ACTIONS(1423), + [sym_float_literal] = ACTIONS(1597), }, [449] = { + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2396), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(2428), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_type_binding] = STATE(2444), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), + [sym_label] = STATE(3679), + [sym_block] = STATE(2444), + [sym__literal] = STATE(2444), + [sym_string_literal] = STATE(3088), + [sym_raw_string_literal] = STATE(3088), + [sym_boolean_literal] = STATE(3088), [sym_line_comment] = STATE(449), [sym_block_comment] = STATE(449), - [sym_identifier] = ACTIONS(1208), - [anon_sym_LPAREN] = ACTIONS(1206), - [anon_sym_LBRACK] = ACTIONS(1206), - [anon_sym_RBRACE] = ACTIONS(1206), - [anon_sym_PLUS] = ACTIONS(1208), - [anon_sym_STAR] = ACTIONS(1208), - [anon_sym_QMARK] = ACTIONS(1206), - [anon_sym_u8] = ACTIONS(1208), - [anon_sym_i8] = ACTIONS(1208), - [anon_sym_u16] = ACTIONS(1208), - [anon_sym_i16] = ACTIONS(1208), - [anon_sym_u32] = ACTIONS(1208), - [anon_sym_i32] = ACTIONS(1208), - [anon_sym_u64] = ACTIONS(1208), - [anon_sym_i64] = ACTIONS(1208), - [anon_sym_u128] = ACTIONS(1208), - [anon_sym_i128] = ACTIONS(1208), - [anon_sym_isize] = ACTIONS(1208), - [anon_sym_usize] = ACTIONS(1208), - [anon_sym_f32] = ACTIONS(1208), - [anon_sym_f64] = ACTIONS(1208), - [anon_sym_bool] = ACTIONS(1208), - [anon_sym_str] = ACTIONS(1208), - [anon_sym_char] = ACTIONS(1208), - [anon_sym_DASH] = ACTIONS(1208), - [anon_sym_SLASH] = ACTIONS(1208), - [anon_sym_PERCENT] = ACTIONS(1208), - [anon_sym_CARET] = ACTIONS(1208), - [anon_sym_AMP] = ACTIONS(1208), - [anon_sym_PIPE] = ACTIONS(1208), - [anon_sym_AMP_AMP] = ACTIONS(1206), - [anon_sym_PIPE_PIPE] = ACTIONS(1206), - [anon_sym_LT_LT] = ACTIONS(1208), - [anon_sym_GT_GT] = ACTIONS(1208), - [anon_sym_PLUS_EQ] = ACTIONS(1206), - [anon_sym_DASH_EQ] = ACTIONS(1206), - [anon_sym_STAR_EQ] = ACTIONS(1206), - [anon_sym_SLASH_EQ] = ACTIONS(1206), - [anon_sym_PERCENT_EQ] = ACTIONS(1206), - [anon_sym_CARET_EQ] = ACTIONS(1206), - [anon_sym_AMP_EQ] = ACTIONS(1206), - [anon_sym_PIPE_EQ] = ACTIONS(1206), - [anon_sym_LT_LT_EQ] = ACTIONS(1206), - [anon_sym_GT_GT_EQ] = ACTIONS(1206), - [anon_sym_EQ] = ACTIONS(1208), - [anon_sym_EQ_EQ] = ACTIONS(1206), - [anon_sym_BANG_EQ] = ACTIONS(1206), - [anon_sym_GT] = ACTIONS(1208), - [anon_sym_LT] = ACTIONS(1208), - [anon_sym_GT_EQ] = ACTIONS(1206), - [anon_sym_LT_EQ] = ACTIONS(1206), - [anon_sym__] = ACTIONS(1208), - [anon_sym_DOT] = ACTIONS(1208), - [anon_sym_DOT_DOT] = ACTIONS(1208), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1206), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1206), - [anon_sym_COMMA] = ACTIONS(1206), - [anon_sym_COLON_COLON] = ACTIONS(1206), - [anon_sym_POUND] = ACTIONS(1206), - [anon_sym_as] = ACTIONS(1208), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(1208), - [anon_sym_union] = ACTIONS(1208), - [anon_sym_ref] = ACTIONS(1208), - [anon_sym_else] = ACTIONS(1208), - [sym_mutable_specifier] = ACTIONS(1208), - [sym_integer_literal] = ACTIONS(1206), - [aux_sym_string_literal_token1] = ACTIONS(1206), - [sym_char_literal] = ACTIONS(1206), - [anon_sym_true] = ACTIONS(1208), - [anon_sym_false] = ACTIONS(1208), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1208), - [sym_super] = ACTIONS(1208), - [sym_crate] = ACTIONS(1208), - [sym_metavariable] = ACTIONS(1206), - [sym__raw_string_literal_start] = ACTIONS(1206), - [sym_float_literal] = ACTIONS(1206), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(1575), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [sym_integer_literal] = ACTIONS(1597), + [aux_sym_string_literal_token1] = ACTIONS(1413), + [sym_char_literal] = ACTIONS(1597), + [anon_sym_true] = ACTIONS(1415), + [anon_sym_false] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), + [sym__raw_string_literal_start] = ACTIONS(1423), + [sym_float_literal] = ACTIONS(1597), }, [450] = { + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2422), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(2419), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_type_binding] = STATE(2466), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), + [sym_label] = STATE(3679), + [sym_block] = STATE(2466), + [sym__literal] = STATE(2466), + [sym_string_literal] = STATE(3088), + [sym_raw_string_literal] = STATE(3088), + [sym_boolean_literal] = STATE(3088), [sym_line_comment] = STATE(450), [sym_block_comment] = STATE(450), - [sym_identifier] = ACTIONS(1234), - [anon_sym_LPAREN] = ACTIONS(1232), - [anon_sym_LBRACK] = ACTIONS(1232), - [anon_sym_RBRACE] = ACTIONS(1232), - [anon_sym_PLUS] = ACTIONS(1234), - [anon_sym_STAR] = ACTIONS(1234), - [anon_sym_QMARK] = ACTIONS(1232), - [anon_sym_u8] = ACTIONS(1234), - [anon_sym_i8] = ACTIONS(1234), - [anon_sym_u16] = ACTIONS(1234), - [anon_sym_i16] = ACTIONS(1234), - [anon_sym_u32] = ACTIONS(1234), - [anon_sym_i32] = ACTIONS(1234), - [anon_sym_u64] = ACTIONS(1234), - [anon_sym_i64] = ACTIONS(1234), - [anon_sym_u128] = ACTIONS(1234), - [anon_sym_i128] = ACTIONS(1234), - [anon_sym_isize] = ACTIONS(1234), - [anon_sym_usize] = ACTIONS(1234), - [anon_sym_f32] = ACTIONS(1234), - [anon_sym_f64] = ACTIONS(1234), - [anon_sym_bool] = ACTIONS(1234), - [anon_sym_str] = ACTIONS(1234), - [anon_sym_char] = ACTIONS(1234), - [anon_sym_DASH] = ACTIONS(1234), - [anon_sym_SLASH] = ACTIONS(1234), - [anon_sym_PERCENT] = ACTIONS(1234), - [anon_sym_CARET] = ACTIONS(1234), - [anon_sym_AMP] = ACTIONS(1234), - [anon_sym_PIPE] = ACTIONS(1234), - [anon_sym_AMP_AMP] = ACTIONS(1232), - [anon_sym_PIPE_PIPE] = ACTIONS(1232), - [anon_sym_LT_LT] = ACTIONS(1234), - [anon_sym_GT_GT] = ACTIONS(1234), - [anon_sym_PLUS_EQ] = ACTIONS(1232), - [anon_sym_DASH_EQ] = ACTIONS(1232), - [anon_sym_STAR_EQ] = ACTIONS(1232), - [anon_sym_SLASH_EQ] = ACTIONS(1232), - [anon_sym_PERCENT_EQ] = ACTIONS(1232), - [anon_sym_CARET_EQ] = ACTIONS(1232), - [anon_sym_AMP_EQ] = ACTIONS(1232), - [anon_sym_PIPE_EQ] = ACTIONS(1232), - [anon_sym_LT_LT_EQ] = ACTIONS(1232), - [anon_sym_GT_GT_EQ] = ACTIONS(1232), - [anon_sym_EQ] = ACTIONS(1234), - [anon_sym_EQ_EQ] = ACTIONS(1232), - [anon_sym_BANG_EQ] = ACTIONS(1232), - [anon_sym_GT] = ACTIONS(1234), - [anon_sym_LT] = ACTIONS(1234), - [anon_sym_GT_EQ] = ACTIONS(1232), - [anon_sym_LT_EQ] = ACTIONS(1232), - [anon_sym__] = ACTIONS(1234), - [anon_sym_DOT] = ACTIONS(1234), - [anon_sym_DOT_DOT] = ACTIONS(1234), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1232), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1232), - [anon_sym_COMMA] = ACTIONS(1232), - [anon_sym_COLON_COLON] = ACTIONS(1232), - [anon_sym_POUND] = ACTIONS(1232), - [anon_sym_as] = ACTIONS(1234), - [anon_sym_const] = ACTIONS(1234), - [anon_sym_default] = ACTIONS(1234), - [anon_sym_union] = ACTIONS(1234), - [anon_sym_ref] = ACTIONS(1234), - [anon_sym_else] = ACTIONS(1234), - [sym_mutable_specifier] = ACTIONS(1234), - [sym_integer_literal] = ACTIONS(1232), - [aux_sym_string_literal_token1] = ACTIONS(1232), - [sym_char_literal] = ACTIONS(1232), - [anon_sym_true] = ACTIONS(1234), - [anon_sym_false] = ACTIONS(1234), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1234), - [sym_super] = ACTIONS(1234), - [sym_crate] = ACTIONS(1234), - [sym_metavariable] = ACTIONS(1232), - [sym__raw_string_literal_start] = ACTIONS(1232), - [sym_float_literal] = ACTIONS(1232), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(1575), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [sym_integer_literal] = ACTIONS(1597), + [aux_sym_string_literal_token1] = ACTIONS(1413), + [sym_char_literal] = ACTIONS(1597), + [anon_sym_true] = ACTIONS(1415), + [anon_sym_false] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), + [sym__raw_string_literal_start] = ACTIONS(1423), + [sym_float_literal] = ACTIONS(1597), }, [451] = { + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2518), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(2522), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_type_binding] = STATE(2763), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), + [sym_label] = STATE(3679), + [sym_block] = STATE(2763), + [sym__literal] = STATE(2763), + [sym_string_literal] = STATE(3088), + [sym_raw_string_literal] = STATE(3088), + [sym_boolean_literal] = STATE(3088), [sym_line_comment] = STATE(451), [sym_block_comment] = STATE(451), - [sym_identifier] = ACTIONS(1238), - [anon_sym_LPAREN] = ACTIONS(1236), - [anon_sym_LBRACK] = ACTIONS(1236), - [anon_sym_RBRACE] = ACTIONS(1236), - [anon_sym_PLUS] = ACTIONS(1238), - [anon_sym_STAR] = ACTIONS(1238), - [anon_sym_QMARK] = ACTIONS(1236), - [anon_sym_u8] = ACTIONS(1238), - [anon_sym_i8] = ACTIONS(1238), - [anon_sym_u16] = ACTIONS(1238), - [anon_sym_i16] = ACTIONS(1238), - [anon_sym_u32] = ACTIONS(1238), - [anon_sym_i32] = ACTIONS(1238), - [anon_sym_u64] = ACTIONS(1238), - [anon_sym_i64] = ACTIONS(1238), - [anon_sym_u128] = ACTIONS(1238), - [anon_sym_i128] = ACTIONS(1238), - [anon_sym_isize] = ACTIONS(1238), - [anon_sym_usize] = ACTIONS(1238), - [anon_sym_f32] = ACTIONS(1238), - [anon_sym_f64] = ACTIONS(1238), - [anon_sym_bool] = ACTIONS(1238), - [anon_sym_str] = ACTIONS(1238), - [anon_sym_char] = ACTIONS(1238), - [anon_sym_DASH] = ACTIONS(1238), - [anon_sym_SLASH] = ACTIONS(1238), - [anon_sym_PERCENT] = ACTIONS(1238), - [anon_sym_CARET] = ACTIONS(1238), - [anon_sym_AMP] = ACTIONS(1238), - [anon_sym_PIPE] = ACTIONS(1238), - [anon_sym_AMP_AMP] = ACTIONS(1236), - [anon_sym_PIPE_PIPE] = ACTIONS(1236), - [anon_sym_LT_LT] = ACTIONS(1238), - [anon_sym_GT_GT] = ACTIONS(1238), - [anon_sym_PLUS_EQ] = ACTIONS(1236), - [anon_sym_DASH_EQ] = ACTIONS(1236), - [anon_sym_STAR_EQ] = ACTIONS(1236), - [anon_sym_SLASH_EQ] = ACTIONS(1236), - [anon_sym_PERCENT_EQ] = ACTIONS(1236), - [anon_sym_CARET_EQ] = ACTIONS(1236), - [anon_sym_AMP_EQ] = ACTIONS(1236), - [anon_sym_PIPE_EQ] = ACTIONS(1236), - [anon_sym_LT_LT_EQ] = ACTIONS(1236), - [anon_sym_GT_GT_EQ] = ACTIONS(1236), - [anon_sym_EQ] = ACTIONS(1238), - [anon_sym_EQ_EQ] = ACTIONS(1236), - [anon_sym_BANG_EQ] = ACTIONS(1236), - [anon_sym_GT] = ACTIONS(1238), - [anon_sym_LT] = ACTIONS(1238), - [anon_sym_GT_EQ] = ACTIONS(1236), - [anon_sym_LT_EQ] = ACTIONS(1236), - [anon_sym__] = ACTIONS(1238), - [anon_sym_DOT] = ACTIONS(1238), - [anon_sym_DOT_DOT] = ACTIONS(1238), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1236), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1236), - [anon_sym_COMMA] = ACTIONS(1236), - [anon_sym_COLON_COLON] = ACTIONS(1236), - [anon_sym_POUND] = ACTIONS(1236), - [anon_sym_as] = ACTIONS(1238), - [anon_sym_const] = ACTIONS(1238), - [anon_sym_default] = ACTIONS(1238), - [anon_sym_union] = ACTIONS(1238), - [anon_sym_ref] = ACTIONS(1238), - [anon_sym_else] = ACTIONS(1238), - [sym_mutable_specifier] = ACTIONS(1238), - [sym_integer_literal] = ACTIONS(1236), - [aux_sym_string_literal_token1] = ACTIONS(1236), - [sym_char_literal] = ACTIONS(1236), - [anon_sym_true] = ACTIONS(1238), - [anon_sym_false] = ACTIONS(1238), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1238), - [sym_super] = ACTIONS(1238), - [sym_crate] = ACTIONS(1238), - [sym_metavariable] = ACTIONS(1236), - [sym__raw_string_literal_start] = ACTIONS(1236), - [sym_float_literal] = ACTIONS(1236), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(1575), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [sym_integer_literal] = ACTIONS(1597), + [aux_sym_string_literal_token1] = ACTIONS(1413), + [sym_char_literal] = ACTIONS(1597), + [anon_sym_true] = ACTIONS(1415), + [anon_sym_false] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), + [sym__raw_string_literal_start] = ACTIONS(1423), + [sym_float_literal] = ACTIONS(1597), }, [452] = { + [sym_else_clause] = STATE(472), [sym_line_comment] = STATE(452), [sym_block_comment] = STATE(452), - [sym_identifier] = ACTIONS(1364), - [anon_sym_LPAREN] = ACTIONS(1362), - [anon_sym_LBRACK] = ACTIONS(1362), - [anon_sym_RBRACE] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1364), - [anon_sym_STAR] = ACTIONS(1364), - [anon_sym_QMARK] = 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_DASH] = ACTIONS(1364), - [anon_sym_SLASH] = ACTIONS(1364), - [anon_sym_PERCENT] = ACTIONS(1364), - [anon_sym_CARET] = ACTIONS(1364), - [anon_sym_AMP] = ACTIONS(1364), - [anon_sym_PIPE] = ACTIONS(1364), - [anon_sym_AMP_AMP] = ACTIONS(1362), - [anon_sym_PIPE_PIPE] = ACTIONS(1362), - [anon_sym_LT_LT] = ACTIONS(1364), - [anon_sym_GT_GT] = ACTIONS(1364), - [anon_sym_PLUS_EQ] = ACTIONS(1362), - [anon_sym_DASH_EQ] = ACTIONS(1362), - [anon_sym_STAR_EQ] = ACTIONS(1362), - [anon_sym_SLASH_EQ] = ACTIONS(1362), - [anon_sym_PERCENT_EQ] = ACTIONS(1362), - [anon_sym_CARET_EQ] = ACTIONS(1362), - [anon_sym_AMP_EQ] = ACTIONS(1362), - [anon_sym_PIPE_EQ] = ACTIONS(1362), - [anon_sym_LT_LT_EQ] = ACTIONS(1362), - [anon_sym_GT_GT_EQ] = ACTIONS(1362), - [anon_sym_EQ] = ACTIONS(1364), - [anon_sym_EQ_EQ] = ACTIONS(1362), - [anon_sym_BANG_EQ] = ACTIONS(1362), - [anon_sym_GT] = ACTIONS(1364), - [anon_sym_LT] = ACTIONS(1364), - [anon_sym_GT_EQ] = ACTIONS(1362), - [anon_sym_LT_EQ] = ACTIONS(1362), - [anon_sym__] = ACTIONS(1364), - [anon_sym_DOT] = ACTIONS(1364), - [anon_sym_DOT_DOT] = ACTIONS(1364), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1362), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1362), - [anon_sym_COMMA] = ACTIONS(1362), - [anon_sym_COLON_COLON] = ACTIONS(1362), - [anon_sym_POUND] = ACTIONS(1362), - [anon_sym_as] = ACTIONS(1364), - [anon_sym_const] = ACTIONS(1364), - [anon_sym_default] = ACTIONS(1364), - [anon_sym_union] = ACTIONS(1364), - [anon_sym_ref] = ACTIONS(1364), - [sym_mutable_specifier] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1364), - [sym_super] = ACTIONS(1364), - [sym_crate] = ACTIONS(1364), - [sym_metavariable] = ACTIONS(1362), - [sym__raw_string_literal_start] = ACTIONS(1362), - [sym_float_literal] = ACTIONS(1362), + [sym_identifier] = ACTIONS(1070), + [anon_sym_LPAREN] = ACTIONS(1068), + [anon_sym_LBRACK] = ACTIONS(1068), + [anon_sym_RBRACE] = ACTIONS(1068), + [anon_sym_COMMA] = ACTIONS(1068), + [anon_sym_PLUS] = ACTIONS(1070), + [anon_sym_STAR] = ACTIONS(1070), + [anon_sym_QMARK] = ACTIONS(1068), + [anon_sym_u8] = ACTIONS(1070), + [anon_sym_i8] = ACTIONS(1070), + [anon_sym_u16] = ACTIONS(1070), + [anon_sym_i16] = ACTIONS(1070), + [anon_sym_u32] = ACTIONS(1070), + [anon_sym_i32] = ACTIONS(1070), + [anon_sym_u64] = ACTIONS(1070), + [anon_sym_i64] = ACTIONS(1070), + [anon_sym_u128] = ACTIONS(1070), + [anon_sym_i128] = ACTIONS(1070), + [anon_sym_isize] = ACTIONS(1070), + [anon_sym_usize] = ACTIONS(1070), + [anon_sym_f32] = ACTIONS(1070), + [anon_sym_f64] = ACTIONS(1070), + [anon_sym_bool] = ACTIONS(1070), + [anon_sym_str] = ACTIONS(1070), + [anon_sym_char] = ACTIONS(1070), + [anon_sym_DASH] = ACTIONS(1070), + [anon_sym_SLASH] = ACTIONS(1070), + [anon_sym_PERCENT] = ACTIONS(1070), + [anon_sym_CARET] = ACTIONS(1070), + [anon_sym_AMP] = ACTIONS(1070), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_AMP_AMP] = ACTIONS(1068), + [anon_sym_PIPE_PIPE] = ACTIONS(1068), + [anon_sym_LT_LT] = ACTIONS(1070), + [anon_sym_GT_GT] = ACTIONS(1070), + [anon_sym_PLUS_EQ] = ACTIONS(1068), + [anon_sym_DASH_EQ] = ACTIONS(1068), + [anon_sym_STAR_EQ] = ACTIONS(1068), + [anon_sym_SLASH_EQ] = ACTIONS(1068), + [anon_sym_PERCENT_EQ] = ACTIONS(1068), + [anon_sym_CARET_EQ] = ACTIONS(1068), + [anon_sym_AMP_EQ] = ACTIONS(1068), + [anon_sym_PIPE_EQ] = ACTIONS(1068), + [anon_sym_LT_LT_EQ] = ACTIONS(1068), + [anon_sym_GT_GT_EQ] = ACTIONS(1068), + [anon_sym_EQ] = ACTIONS(1070), + [anon_sym_EQ_EQ] = ACTIONS(1068), + [anon_sym_BANG_EQ] = ACTIONS(1068), + [anon_sym_GT] = ACTIONS(1070), + [anon_sym_LT] = ACTIONS(1070), + [anon_sym_GT_EQ] = ACTIONS(1068), + [anon_sym_LT_EQ] = ACTIONS(1068), + [anon_sym__] = ACTIONS(1070), + [anon_sym_DOT] = ACTIONS(1070), + [anon_sym_DOT_DOT] = ACTIONS(1070), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1068), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1068), + [anon_sym_COLON_COLON] = ACTIONS(1068), + [anon_sym_POUND] = ACTIONS(1068), + [anon_sym_as] = ACTIONS(1070), + [anon_sym_const] = ACTIONS(1070), + [anon_sym_default] = ACTIONS(1070), + [anon_sym_union] = ACTIONS(1070), + [anon_sym_ref] = ACTIONS(1070), + [anon_sym_else] = ACTIONS(1619), + [sym_mutable_specifier] = ACTIONS(1070), + [sym_integer_literal] = ACTIONS(1068), + [aux_sym_string_literal_token1] = ACTIONS(1068), + [sym_char_literal] = ACTIONS(1068), + [anon_sym_true] = ACTIONS(1070), + [anon_sym_false] = ACTIONS(1070), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1070), + [sym_super] = ACTIONS(1070), + [sym_crate] = ACTIONS(1070), + [sym_metavariable] = ACTIONS(1068), + [sym__raw_string_literal_start] = ACTIONS(1068), + [sym_float_literal] = ACTIONS(1068), }, [453] = { [sym_line_comment] = STATE(453), [sym_block_comment] = STATE(453), - [sym_identifier] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1428), - [anon_sym_LBRACK] = ACTIONS(1428), - [anon_sym_RBRACE] = ACTIONS(1428), - [anon_sym_PLUS] = ACTIONS(1430), - [anon_sym_STAR] = ACTIONS(1430), - [anon_sym_QMARK] = 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_DASH] = ACTIONS(1430), - [anon_sym_SLASH] = ACTIONS(1430), - [anon_sym_PERCENT] = ACTIONS(1430), - [anon_sym_CARET] = ACTIONS(1430), - [anon_sym_AMP] = ACTIONS(1430), - [anon_sym_PIPE] = ACTIONS(1430), - [anon_sym_AMP_AMP] = ACTIONS(1428), - [anon_sym_PIPE_PIPE] = ACTIONS(1428), - [anon_sym_LT_LT] = ACTIONS(1430), - [anon_sym_GT_GT] = ACTIONS(1430), - [anon_sym_PLUS_EQ] = ACTIONS(1428), - [anon_sym_DASH_EQ] = ACTIONS(1428), - [anon_sym_STAR_EQ] = ACTIONS(1428), - [anon_sym_SLASH_EQ] = ACTIONS(1428), - [anon_sym_PERCENT_EQ] = ACTIONS(1428), - [anon_sym_CARET_EQ] = ACTIONS(1428), - [anon_sym_AMP_EQ] = ACTIONS(1428), - [anon_sym_PIPE_EQ] = ACTIONS(1428), - [anon_sym_LT_LT_EQ] = ACTIONS(1428), - [anon_sym_GT_GT_EQ] = ACTIONS(1428), - [anon_sym_EQ] = ACTIONS(1430), - [anon_sym_EQ_EQ] = ACTIONS(1428), - [anon_sym_BANG_EQ] = ACTIONS(1428), - [anon_sym_GT] = ACTIONS(1430), - [anon_sym_LT] = ACTIONS(1430), - [anon_sym_GT_EQ] = ACTIONS(1428), - [anon_sym_LT_EQ] = ACTIONS(1428), - [anon_sym__] = ACTIONS(1430), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_DOT_DOT] = ACTIONS(1430), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1428), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1428), - [anon_sym_COMMA] = ACTIONS(1428), - [anon_sym_COLON_COLON] = ACTIONS(1428), - [anon_sym_POUND] = ACTIONS(1428), - [anon_sym_as] = ACTIONS(1430), - [anon_sym_const] = ACTIONS(1430), - [anon_sym_default] = ACTIONS(1430), - [anon_sym_union] = ACTIONS(1430), - [anon_sym_ref] = ACTIONS(1430), - [sym_mutable_specifier] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1430), - [sym_super] = ACTIONS(1430), - [sym_crate] = ACTIONS(1430), - [sym_metavariable] = ACTIONS(1428), - [sym__raw_string_literal_start] = ACTIONS(1428), - [sym_float_literal] = ACTIONS(1428), + [sym_identifier] = ACTIONS(1225), + [anon_sym_LPAREN] = ACTIONS(1223), + [anon_sym_LBRACK] = ACTIONS(1223), + [anon_sym_RBRACE] = ACTIONS(1223), + [anon_sym_COMMA] = ACTIONS(1223), + [anon_sym_PLUS] = ACTIONS(1225), + [anon_sym_STAR] = ACTIONS(1225), + [anon_sym_QMARK] = ACTIONS(1223), + [anon_sym_u8] = ACTIONS(1225), + [anon_sym_i8] = ACTIONS(1225), + [anon_sym_u16] = ACTIONS(1225), + [anon_sym_i16] = ACTIONS(1225), + [anon_sym_u32] = ACTIONS(1225), + [anon_sym_i32] = ACTIONS(1225), + [anon_sym_u64] = ACTIONS(1225), + [anon_sym_i64] = ACTIONS(1225), + [anon_sym_u128] = ACTIONS(1225), + [anon_sym_i128] = ACTIONS(1225), + [anon_sym_isize] = ACTIONS(1225), + [anon_sym_usize] = ACTIONS(1225), + [anon_sym_f32] = ACTIONS(1225), + [anon_sym_f64] = ACTIONS(1225), + [anon_sym_bool] = ACTIONS(1225), + [anon_sym_str] = ACTIONS(1225), + [anon_sym_char] = ACTIONS(1225), + [anon_sym_DASH] = ACTIONS(1225), + [anon_sym_SLASH] = ACTIONS(1225), + [anon_sym_PERCENT] = ACTIONS(1225), + [anon_sym_CARET] = ACTIONS(1225), + [anon_sym_AMP] = ACTIONS(1225), + [anon_sym_PIPE] = ACTIONS(1225), + [anon_sym_AMP_AMP] = ACTIONS(1223), + [anon_sym_PIPE_PIPE] = ACTIONS(1223), + [anon_sym_LT_LT] = ACTIONS(1225), + [anon_sym_GT_GT] = ACTIONS(1225), + [anon_sym_PLUS_EQ] = ACTIONS(1223), + [anon_sym_DASH_EQ] = ACTIONS(1223), + [anon_sym_STAR_EQ] = ACTIONS(1223), + [anon_sym_SLASH_EQ] = ACTIONS(1223), + [anon_sym_PERCENT_EQ] = ACTIONS(1223), + [anon_sym_CARET_EQ] = ACTIONS(1223), + [anon_sym_AMP_EQ] = ACTIONS(1223), + [anon_sym_PIPE_EQ] = ACTIONS(1223), + [anon_sym_LT_LT_EQ] = ACTIONS(1223), + [anon_sym_GT_GT_EQ] = ACTIONS(1223), + [anon_sym_EQ] = ACTIONS(1225), + [anon_sym_EQ_EQ] = ACTIONS(1223), + [anon_sym_BANG_EQ] = ACTIONS(1223), + [anon_sym_GT] = ACTIONS(1225), + [anon_sym_LT] = ACTIONS(1225), + [anon_sym_GT_EQ] = ACTIONS(1223), + [anon_sym_LT_EQ] = ACTIONS(1223), + [anon_sym__] = ACTIONS(1225), + [anon_sym_DOT] = ACTIONS(1225), + [anon_sym_DOT_DOT] = ACTIONS(1225), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1223), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), + [anon_sym_COLON_COLON] = ACTIONS(1223), + [anon_sym_POUND] = ACTIONS(1223), + [anon_sym_as] = ACTIONS(1225), + [anon_sym_const] = ACTIONS(1225), + [anon_sym_default] = ACTIONS(1225), + [anon_sym_union] = ACTIONS(1225), + [anon_sym_ref] = ACTIONS(1225), + [anon_sym_else] = ACTIONS(1225), + [sym_mutable_specifier] = ACTIONS(1225), + [sym_integer_literal] = ACTIONS(1223), + [aux_sym_string_literal_token1] = ACTIONS(1223), + [sym_char_literal] = ACTIONS(1223), + [anon_sym_true] = ACTIONS(1225), + [anon_sym_false] = ACTIONS(1225), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1225), + [sym_super] = ACTIONS(1225), + [sym_crate] = ACTIONS(1225), + [sym_metavariable] = ACTIONS(1223), + [sym__raw_string_literal_start] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1223), }, [454] = { [sym_line_comment] = STATE(454), [sym_block_comment] = STATE(454), - [sym_identifier] = ACTIONS(1372), - [anon_sym_LPAREN] = ACTIONS(1370), - [anon_sym_LBRACK] = ACTIONS(1370), - [anon_sym_RBRACE] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1372), - [anon_sym_STAR] = ACTIONS(1372), - [anon_sym_QMARK] = 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_DASH] = ACTIONS(1372), - [anon_sym_SLASH] = ACTIONS(1372), - [anon_sym_PERCENT] = ACTIONS(1372), - [anon_sym_CARET] = ACTIONS(1372), - [anon_sym_AMP] = ACTIONS(1372), - [anon_sym_PIPE] = ACTIONS(1372), - [anon_sym_AMP_AMP] = ACTIONS(1370), - [anon_sym_PIPE_PIPE] = ACTIONS(1370), - [anon_sym_LT_LT] = ACTIONS(1372), - [anon_sym_GT_GT] = ACTIONS(1372), - [anon_sym_PLUS_EQ] = ACTIONS(1370), - [anon_sym_DASH_EQ] = ACTIONS(1370), - [anon_sym_STAR_EQ] = ACTIONS(1370), - [anon_sym_SLASH_EQ] = ACTIONS(1370), - [anon_sym_PERCENT_EQ] = ACTIONS(1370), - [anon_sym_CARET_EQ] = ACTIONS(1370), - [anon_sym_AMP_EQ] = ACTIONS(1370), - [anon_sym_PIPE_EQ] = ACTIONS(1370), - [anon_sym_LT_LT_EQ] = ACTIONS(1370), - [anon_sym_GT_GT_EQ] = ACTIONS(1370), - [anon_sym_EQ] = ACTIONS(1372), - [anon_sym_EQ_EQ] = ACTIONS(1370), - [anon_sym_BANG_EQ] = ACTIONS(1370), - [anon_sym_GT] = ACTIONS(1372), - [anon_sym_LT] = ACTIONS(1372), - [anon_sym_GT_EQ] = ACTIONS(1370), - [anon_sym_LT_EQ] = ACTIONS(1370), - [anon_sym__] = ACTIONS(1372), - [anon_sym_DOT] = ACTIONS(1372), - [anon_sym_DOT_DOT] = ACTIONS(1372), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1370), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1370), - [anon_sym_COMMA] = ACTIONS(1370), - [anon_sym_COLON_COLON] = ACTIONS(1370), - [anon_sym_POUND] = ACTIONS(1370), - [anon_sym_as] = ACTIONS(1372), - [anon_sym_const] = ACTIONS(1372), - [anon_sym_default] = ACTIONS(1372), - [anon_sym_union] = ACTIONS(1372), - [anon_sym_ref] = ACTIONS(1372), - [sym_mutable_specifier] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1372), - [sym_super] = ACTIONS(1372), - [sym_crate] = ACTIONS(1372), - [sym_metavariable] = ACTIONS(1370), - [sym__raw_string_literal_start] = ACTIONS(1370), - [sym_float_literal] = ACTIONS(1370), + [sym_identifier] = ACTIONS(1237), + [anon_sym_LPAREN] = ACTIONS(1235), + [anon_sym_LBRACK] = ACTIONS(1235), + [anon_sym_RBRACE] = ACTIONS(1235), + [anon_sym_COMMA] = ACTIONS(1235), + [anon_sym_PLUS] = ACTIONS(1237), + [anon_sym_STAR] = ACTIONS(1237), + [anon_sym_QMARK] = ACTIONS(1235), + [anon_sym_u8] = ACTIONS(1237), + [anon_sym_i8] = ACTIONS(1237), + [anon_sym_u16] = ACTIONS(1237), + [anon_sym_i16] = ACTIONS(1237), + [anon_sym_u32] = ACTIONS(1237), + [anon_sym_i32] = ACTIONS(1237), + [anon_sym_u64] = ACTIONS(1237), + [anon_sym_i64] = ACTIONS(1237), + [anon_sym_u128] = ACTIONS(1237), + [anon_sym_i128] = ACTIONS(1237), + [anon_sym_isize] = ACTIONS(1237), + [anon_sym_usize] = ACTIONS(1237), + [anon_sym_f32] = ACTIONS(1237), + [anon_sym_f64] = ACTIONS(1237), + [anon_sym_bool] = ACTIONS(1237), + [anon_sym_str] = ACTIONS(1237), + [anon_sym_char] = ACTIONS(1237), + [anon_sym_DASH] = ACTIONS(1237), + [anon_sym_SLASH] = ACTIONS(1237), + [anon_sym_PERCENT] = ACTIONS(1237), + [anon_sym_CARET] = ACTIONS(1237), + [anon_sym_AMP] = ACTIONS(1237), + [anon_sym_PIPE] = ACTIONS(1237), + [anon_sym_AMP_AMP] = ACTIONS(1235), + [anon_sym_PIPE_PIPE] = ACTIONS(1235), + [anon_sym_LT_LT] = ACTIONS(1237), + [anon_sym_GT_GT] = ACTIONS(1237), + [anon_sym_PLUS_EQ] = ACTIONS(1235), + [anon_sym_DASH_EQ] = ACTIONS(1235), + [anon_sym_STAR_EQ] = ACTIONS(1235), + [anon_sym_SLASH_EQ] = ACTIONS(1235), + [anon_sym_PERCENT_EQ] = ACTIONS(1235), + [anon_sym_CARET_EQ] = ACTIONS(1235), + [anon_sym_AMP_EQ] = ACTIONS(1235), + [anon_sym_PIPE_EQ] = ACTIONS(1235), + [anon_sym_LT_LT_EQ] = ACTIONS(1235), + [anon_sym_GT_GT_EQ] = ACTIONS(1235), + [anon_sym_EQ] = ACTIONS(1237), + [anon_sym_EQ_EQ] = ACTIONS(1235), + [anon_sym_BANG_EQ] = ACTIONS(1235), + [anon_sym_GT] = ACTIONS(1237), + [anon_sym_LT] = ACTIONS(1237), + [anon_sym_GT_EQ] = ACTIONS(1235), + [anon_sym_LT_EQ] = ACTIONS(1235), + [anon_sym__] = ACTIONS(1237), + [anon_sym_DOT] = ACTIONS(1237), + [anon_sym_DOT_DOT] = ACTIONS(1237), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1235), + [anon_sym_COLON_COLON] = ACTIONS(1235), + [anon_sym_POUND] = ACTIONS(1235), + [anon_sym_as] = ACTIONS(1237), + [anon_sym_const] = ACTIONS(1237), + [anon_sym_default] = ACTIONS(1237), + [anon_sym_union] = ACTIONS(1237), + [anon_sym_ref] = ACTIONS(1237), + [anon_sym_else] = ACTIONS(1237), + [sym_mutable_specifier] = ACTIONS(1237), + [sym_integer_literal] = ACTIONS(1235), + [aux_sym_string_literal_token1] = ACTIONS(1235), + [sym_char_literal] = ACTIONS(1235), + [anon_sym_true] = ACTIONS(1237), + [anon_sym_false] = ACTIONS(1237), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1237), + [sym_super] = ACTIONS(1237), + [sym_crate] = ACTIONS(1237), + [sym_metavariable] = ACTIONS(1235), + [sym__raw_string_literal_start] = ACTIONS(1235), + [sym_float_literal] = ACTIONS(1235), }, [455] = { [sym_line_comment] = STATE(455), [sym_block_comment] = STATE(455), - [sym_identifier] = ACTIONS(1388), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_LBRACK] = ACTIONS(1386), - [anon_sym_RBRACE] = ACTIONS(1386), - [anon_sym_PLUS] = ACTIONS(1388), - [anon_sym_STAR] = ACTIONS(1388), - [anon_sym_QMARK] = 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_DASH] = ACTIONS(1388), - [anon_sym_SLASH] = ACTIONS(1388), - [anon_sym_PERCENT] = ACTIONS(1388), - [anon_sym_CARET] = ACTIONS(1388), - [anon_sym_AMP] = ACTIONS(1388), - [anon_sym_PIPE] = ACTIONS(1388), - [anon_sym_AMP_AMP] = ACTIONS(1386), - [anon_sym_PIPE_PIPE] = ACTIONS(1386), - [anon_sym_LT_LT] = ACTIONS(1388), - [anon_sym_GT_GT] = ACTIONS(1388), - [anon_sym_PLUS_EQ] = ACTIONS(1386), - [anon_sym_DASH_EQ] = ACTIONS(1386), - [anon_sym_STAR_EQ] = ACTIONS(1386), - [anon_sym_SLASH_EQ] = ACTIONS(1386), - [anon_sym_PERCENT_EQ] = ACTIONS(1386), - [anon_sym_CARET_EQ] = ACTIONS(1386), - [anon_sym_AMP_EQ] = ACTIONS(1386), - [anon_sym_PIPE_EQ] = ACTIONS(1386), - [anon_sym_LT_LT_EQ] = ACTIONS(1386), - [anon_sym_GT_GT_EQ] = ACTIONS(1386), - [anon_sym_EQ] = ACTIONS(1388), - [anon_sym_EQ_EQ] = ACTIONS(1386), - [anon_sym_BANG_EQ] = ACTIONS(1386), - [anon_sym_GT] = ACTIONS(1388), - [anon_sym_LT] = ACTIONS(1388), - [anon_sym_GT_EQ] = ACTIONS(1386), - [anon_sym_LT_EQ] = ACTIONS(1386), - [anon_sym__] = ACTIONS(1388), - [anon_sym_DOT] = ACTIONS(1388), - [anon_sym_DOT_DOT] = ACTIONS(1388), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1386), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1386), - [anon_sym_COLON_COLON] = ACTIONS(1386), - [anon_sym_POUND] = ACTIONS(1386), - [anon_sym_as] = ACTIONS(1388), - [anon_sym_const] = ACTIONS(1388), - [anon_sym_default] = ACTIONS(1388), - [anon_sym_union] = ACTIONS(1388), - [anon_sym_ref] = ACTIONS(1388), - [sym_mutable_specifier] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1388), - [sym_super] = ACTIONS(1388), - [sym_crate] = ACTIONS(1388), - [sym_metavariable] = ACTIONS(1386), - [sym__raw_string_literal_start] = ACTIONS(1386), - [sym_float_literal] = ACTIONS(1386), + [sym_identifier] = ACTIONS(1241), + [anon_sym_LPAREN] = ACTIONS(1239), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_RBRACE] = ACTIONS(1239), + [anon_sym_COMMA] = ACTIONS(1239), + [anon_sym_PLUS] = ACTIONS(1241), + [anon_sym_STAR] = ACTIONS(1241), + [anon_sym_QMARK] = ACTIONS(1239), + [anon_sym_u8] = ACTIONS(1241), + [anon_sym_i8] = ACTIONS(1241), + [anon_sym_u16] = ACTIONS(1241), + [anon_sym_i16] = ACTIONS(1241), + [anon_sym_u32] = ACTIONS(1241), + [anon_sym_i32] = ACTIONS(1241), + [anon_sym_u64] = ACTIONS(1241), + [anon_sym_i64] = ACTIONS(1241), + [anon_sym_u128] = ACTIONS(1241), + [anon_sym_i128] = ACTIONS(1241), + [anon_sym_isize] = ACTIONS(1241), + [anon_sym_usize] = ACTIONS(1241), + [anon_sym_f32] = ACTIONS(1241), + [anon_sym_f64] = ACTIONS(1241), + [anon_sym_bool] = ACTIONS(1241), + [anon_sym_str] = ACTIONS(1241), + [anon_sym_char] = ACTIONS(1241), + [anon_sym_DASH] = ACTIONS(1241), + [anon_sym_SLASH] = ACTIONS(1241), + [anon_sym_PERCENT] = ACTIONS(1241), + [anon_sym_CARET] = ACTIONS(1241), + [anon_sym_AMP] = ACTIONS(1241), + [anon_sym_PIPE] = ACTIONS(1241), + [anon_sym_AMP_AMP] = ACTIONS(1239), + [anon_sym_PIPE_PIPE] = ACTIONS(1239), + [anon_sym_LT_LT] = ACTIONS(1241), + [anon_sym_GT_GT] = ACTIONS(1241), + [anon_sym_PLUS_EQ] = ACTIONS(1239), + [anon_sym_DASH_EQ] = ACTIONS(1239), + [anon_sym_STAR_EQ] = ACTIONS(1239), + [anon_sym_SLASH_EQ] = ACTIONS(1239), + [anon_sym_PERCENT_EQ] = ACTIONS(1239), + [anon_sym_CARET_EQ] = ACTIONS(1239), + [anon_sym_AMP_EQ] = ACTIONS(1239), + [anon_sym_PIPE_EQ] = ACTIONS(1239), + [anon_sym_LT_LT_EQ] = ACTIONS(1239), + [anon_sym_GT_GT_EQ] = ACTIONS(1239), + [anon_sym_EQ] = ACTIONS(1241), + [anon_sym_EQ_EQ] = ACTIONS(1239), + [anon_sym_BANG_EQ] = ACTIONS(1239), + [anon_sym_GT] = ACTIONS(1241), + [anon_sym_LT] = ACTIONS(1241), + [anon_sym_GT_EQ] = ACTIONS(1239), + [anon_sym_LT_EQ] = ACTIONS(1239), + [anon_sym__] = ACTIONS(1241), + [anon_sym_DOT] = ACTIONS(1241), + [anon_sym_DOT_DOT] = ACTIONS(1241), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1239), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), + [anon_sym_COLON_COLON] = ACTIONS(1239), + [anon_sym_POUND] = ACTIONS(1239), + [anon_sym_as] = ACTIONS(1241), + [anon_sym_const] = ACTIONS(1241), + [anon_sym_default] = ACTIONS(1241), + [anon_sym_union] = ACTIONS(1241), + [anon_sym_ref] = ACTIONS(1241), + [anon_sym_else] = ACTIONS(1241), + [sym_mutable_specifier] = ACTIONS(1241), + [sym_integer_literal] = ACTIONS(1239), + [aux_sym_string_literal_token1] = ACTIONS(1239), + [sym_char_literal] = ACTIONS(1239), + [anon_sym_true] = ACTIONS(1241), + [anon_sym_false] = ACTIONS(1241), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1241), + [sym_super] = ACTIONS(1241), + [sym_crate] = ACTIONS(1241), + [sym_metavariable] = ACTIONS(1239), + [sym__raw_string_literal_start] = ACTIONS(1239), + [sym_float_literal] = ACTIONS(1239), }, [456] = { - [sym_attribute_item] = STATE(1479), - [sym_inner_attribute_item] = STATE(1479), - [sym_bracketed_type] = STATE(3523), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3262), - [sym_macro_invocation] = STATE(2877), - [sym_scoped_identifier] = STATE(2130), - [sym_scoped_type_identifier] = STATE(2908), - [sym_match_arm] = STATE(1471), - [sym_last_match_arm] = STATE(3546), - [sym_match_pattern] = STATE(3345), - [sym_const_block] = STATE(2877), - [sym__pattern] = STATE(2919), - [sym_tuple_pattern] = STATE(2877), - [sym_slice_pattern] = STATE(2877), - [sym_tuple_struct_pattern] = STATE(2877), - [sym_struct_pattern] = STATE(2877), - [sym_remaining_field_pattern] = STATE(2877), - [sym_mut_pattern] = STATE(2877), - [sym_range_pattern] = STATE(2877), - [sym_ref_pattern] = STATE(2877), - [sym_captured_pattern] = STATE(2877), - [sym_reference_pattern] = STATE(2877), - [sym_or_pattern] = STATE(2877), - [sym__literal_pattern] = STATE(2387), - [sym_negative_literal] = STATE(2299), - [sym_string_literal] = STATE(2299), - [sym_raw_string_literal] = STATE(2299), - [sym_boolean_literal] = STATE(2299), [sym_line_comment] = STATE(456), [sym_block_comment] = STATE(456), - [aux_sym_match_block_repeat1] = STATE(478), - [aux_sym_match_arm_repeat1] = STATE(759), - [sym_identifier] = ACTIONS(1604), - [anon_sym_LPAREN] = ACTIONS(1606), - [anon_sym_LBRACK] = ACTIONS(1608), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(1614), - [anon_sym_AMP] = ACTIONS(1616), - [anon_sym_PIPE] = ACTIONS(1618), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1620), - [anon_sym_DOT_DOT] = ACTIONS(1622), - [anon_sym_COLON_COLON] = ACTIONS(1624), - [anon_sym_POUND] = ACTIONS(1626), - [anon_sym_const] = ACTIONS(1628), - [anon_sym_default] = ACTIONS(1630), - [anon_sym_union] = ACTIONS(1630), - [anon_sym_ref] = ACTIONS(1632), - [sym_mutable_specifier] = ACTIONS(1634), - [sym_integer_literal] = ACTIONS(1636), - [aux_sym_string_literal_token1] = ACTIONS(1638), - [sym_char_literal] = ACTIONS(1636), - [anon_sym_true] = ACTIONS(1640), - [anon_sym_false] = ACTIONS(1640), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1642), - [sym_super] = ACTIONS(1642), - [sym_crate] = ACTIONS(1642), - [sym_metavariable] = ACTIONS(1644), - [sym__raw_string_literal_start] = ACTIONS(1646), - [sym_float_literal] = ACTIONS(1636), + [sym_identifier] = ACTIONS(1221), + [anon_sym_LPAREN] = ACTIONS(1219), + [anon_sym_LBRACK] = ACTIONS(1219), + [anon_sym_RBRACE] = ACTIONS(1219), + [anon_sym_COMMA] = ACTIONS(1219), + [anon_sym_PLUS] = ACTIONS(1221), + [anon_sym_STAR] = ACTIONS(1221), + [anon_sym_QMARK] = ACTIONS(1219), + [anon_sym_u8] = ACTIONS(1221), + [anon_sym_i8] = ACTIONS(1221), + [anon_sym_u16] = ACTIONS(1221), + [anon_sym_i16] = ACTIONS(1221), + [anon_sym_u32] = ACTIONS(1221), + [anon_sym_i32] = ACTIONS(1221), + [anon_sym_u64] = ACTIONS(1221), + [anon_sym_i64] = ACTIONS(1221), + [anon_sym_u128] = ACTIONS(1221), + [anon_sym_i128] = ACTIONS(1221), + [anon_sym_isize] = ACTIONS(1221), + [anon_sym_usize] = ACTIONS(1221), + [anon_sym_f32] = ACTIONS(1221), + [anon_sym_f64] = ACTIONS(1221), + [anon_sym_bool] = ACTIONS(1221), + [anon_sym_str] = ACTIONS(1221), + [anon_sym_char] = ACTIONS(1221), + [anon_sym_DASH] = ACTIONS(1221), + [anon_sym_SLASH] = ACTIONS(1221), + [anon_sym_PERCENT] = ACTIONS(1221), + [anon_sym_CARET] = ACTIONS(1221), + [anon_sym_AMP] = ACTIONS(1221), + [anon_sym_PIPE] = ACTIONS(1221), + [anon_sym_AMP_AMP] = ACTIONS(1219), + [anon_sym_PIPE_PIPE] = ACTIONS(1219), + [anon_sym_LT_LT] = ACTIONS(1221), + [anon_sym_GT_GT] = ACTIONS(1221), + [anon_sym_PLUS_EQ] = ACTIONS(1219), + [anon_sym_DASH_EQ] = ACTIONS(1219), + [anon_sym_STAR_EQ] = ACTIONS(1219), + [anon_sym_SLASH_EQ] = ACTIONS(1219), + [anon_sym_PERCENT_EQ] = ACTIONS(1219), + [anon_sym_CARET_EQ] = ACTIONS(1219), + [anon_sym_AMP_EQ] = ACTIONS(1219), + [anon_sym_PIPE_EQ] = ACTIONS(1219), + [anon_sym_LT_LT_EQ] = ACTIONS(1219), + [anon_sym_GT_GT_EQ] = ACTIONS(1219), + [anon_sym_EQ] = ACTIONS(1221), + [anon_sym_EQ_EQ] = ACTIONS(1219), + [anon_sym_BANG_EQ] = ACTIONS(1219), + [anon_sym_GT] = ACTIONS(1221), + [anon_sym_LT] = ACTIONS(1221), + [anon_sym_GT_EQ] = ACTIONS(1219), + [anon_sym_LT_EQ] = ACTIONS(1219), + [anon_sym__] = ACTIONS(1221), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_DOT_DOT] = ACTIONS(1221), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1219), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1219), + [anon_sym_COLON_COLON] = ACTIONS(1219), + [anon_sym_POUND] = ACTIONS(1219), + [anon_sym_as] = ACTIONS(1221), + [anon_sym_const] = ACTIONS(1221), + [anon_sym_default] = ACTIONS(1221), + [anon_sym_union] = ACTIONS(1221), + [anon_sym_ref] = ACTIONS(1221), + [anon_sym_else] = ACTIONS(1221), + [sym_mutable_specifier] = ACTIONS(1221), + [sym_integer_literal] = ACTIONS(1219), + [aux_sym_string_literal_token1] = ACTIONS(1219), + [sym_char_literal] = ACTIONS(1219), + [anon_sym_true] = ACTIONS(1221), + [anon_sym_false] = ACTIONS(1221), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1221), + [sym_super] = ACTIONS(1221), + [sym_crate] = ACTIONS(1221), + [sym_metavariable] = ACTIONS(1219), + [sym__raw_string_literal_start] = ACTIONS(1219), + [sym_float_literal] = ACTIONS(1219), }, [457] = { [sym_line_comment] = STATE(457), [sym_block_comment] = STATE(457), - [sym_identifier] = ACTIONS(1356), - [anon_sym_LPAREN] = ACTIONS(1354), - [anon_sym_LBRACK] = ACTIONS(1354), - [anon_sym_RBRACE] = ACTIONS(1354), - [anon_sym_PLUS] = ACTIONS(1356), - [anon_sym_STAR] = ACTIONS(1356), - [anon_sym_QMARK] = 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_DASH] = ACTIONS(1356), - [anon_sym_SLASH] = ACTIONS(1356), - [anon_sym_PERCENT] = ACTIONS(1356), - [anon_sym_CARET] = ACTIONS(1356), - [anon_sym_AMP] = ACTIONS(1356), - [anon_sym_PIPE] = ACTIONS(1356), - [anon_sym_AMP_AMP] = ACTIONS(1354), - [anon_sym_PIPE_PIPE] = ACTIONS(1354), - [anon_sym_LT_LT] = ACTIONS(1356), - [anon_sym_GT_GT] = ACTIONS(1356), - [anon_sym_PLUS_EQ] = ACTIONS(1354), - [anon_sym_DASH_EQ] = ACTIONS(1354), - [anon_sym_STAR_EQ] = ACTIONS(1354), - [anon_sym_SLASH_EQ] = ACTIONS(1354), - [anon_sym_PERCENT_EQ] = ACTIONS(1354), - [anon_sym_CARET_EQ] = ACTIONS(1354), - [anon_sym_AMP_EQ] = ACTIONS(1354), - [anon_sym_PIPE_EQ] = ACTIONS(1354), - [anon_sym_LT_LT_EQ] = ACTIONS(1354), - [anon_sym_GT_GT_EQ] = ACTIONS(1354), - [anon_sym_EQ] = ACTIONS(1356), - [anon_sym_EQ_EQ] = ACTIONS(1354), - [anon_sym_BANG_EQ] = ACTIONS(1354), - [anon_sym_GT] = ACTIONS(1356), - [anon_sym_LT] = ACTIONS(1356), - [anon_sym_GT_EQ] = ACTIONS(1354), - [anon_sym_LT_EQ] = ACTIONS(1354), - [anon_sym__] = ACTIONS(1356), - [anon_sym_DOT] = ACTIONS(1356), - [anon_sym_DOT_DOT] = ACTIONS(1356), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1354), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1354), - [anon_sym_COMMA] = ACTIONS(1354), - [anon_sym_COLON_COLON] = ACTIONS(1354), - [anon_sym_POUND] = ACTIONS(1354), - [anon_sym_as] = ACTIONS(1356), - [anon_sym_const] = ACTIONS(1356), - [anon_sym_default] = ACTIONS(1356), - [anon_sym_union] = ACTIONS(1356), - [anon_sym_ref] = ACTIONS(1356), - [sym_mutable_specifier] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1356), - [sym_super] = ACTIONS(1356), - [sym_crate] = ACTIONS(1356), - [sym_metavariable] = ACTIONS(1354), - [sym__raw_string_literal_start] = ACTIONS(1354), - [sym_float_literal] = ACTIONS(1354), + [sym_identifier] = ACTIONS(1229), + [anon_sym_LPAREN] = ACTIONS(1227), + [anon_sym_LBRACK] = ACTIONS(1227), + [anon_sym_RBRACE] = ACTIONS(1227), + [anon_sym_COMMA] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1229), + [anon_sym_QMARK] = ACTIONS(1227), + [anon_sym_u8] = ACTIONS(1229), + [anon_sym_i8] = ACTIONS(1229), + [anon_sym_u16] = ACTIONS(1229), + [anon_sym_i16] = ACTIONS(1229), + [anon_sym_u32] = ACTIONS(1229), + [anon_sym_i32] = ACTIONS(1229), + [anon_sym_u64] = ACTIONS(1229), + [anon_sym_i64] = ACTIONS(1229), + [anon_sym_u128] = ACTIONS(1229), + [anon_sym_i128] = ACTIONS(1229), + [anon_sym_isize] = ACTIONS(1229), + [anon_sym_usize] = ACTIONS(1229), + [anon_sym_f32] = ACTIONS(1229), + [anon_sym_f64] = ACTIONS(1229), + [anon_sym_bool] = ACTIONS(1229), + [anon_sym_str] = ACTIONS(1229), + [anon_sym_char] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_SLASH] = ACTIONS(1229), + [anon_sym_PERCENT] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(1229), + [anon_sym_PIPE] = ACTIONS(1229), + [anon_sym_AMP_AMP] = ACTIONS(1227), + [anon_sym_PIPE_PIPE] = ACTIONS(1227), + [anon_sym_LT_LT] = ACTIONS(1229), + [anon_sym_GT_GT] = ACTIONS(1229), + [anon_sym_PLUS_EQ] = ACTIONS(1227), + [anon_sym_DASH_EQ] = ACTIONS(1227), + [anon_sym_STAR_EQ] = ACTIONS(1227), + [anon_sym_SLASH_EQ] = ACTIONS(1227), + [anon_sym_PERCENT_EQ] = ACTIONS(1227), + [anon_sym_CARET_EQ] = ACTIONS(1227), + [anon_sym_AMP_EQ] = ACTIONS(1227), + [anon_sym_PIPE_EQ] = ACTIONS(1227), + [anon_sym_LT_LT_EQ] = ACTIONS(1227), + [anon_sym_GT_GT_EQ] = ACTIONS(1227), + [anon_sym_EQ] = ACTIONS(1229), + [anon_sym_EQ_EQ] = ACTIONS(1227), + [anon_sym_BANG_EQ] = ACTIONS(1227), + [anon_sym_GT] = ACTIONS(1229), + [anon_sym_LT] = ACTIONS(1229), + [anon_sym_GT_EQ] = ACTIONS(1227), + [anon_sym_LT_EQ] = ACTIONS(1227), + [anon_sym__] = ACTIONS(1229), + [anon_sym_DOT] = ACTIONS(1229), + [anon_sym_DOT_DOT] = ACTIONS(1229), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1227), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1227), + [anon_sym_COLON_COLON] = ACTIONS(1227), + [anon_sym_POUND] = ACTIONS(1227), + [anon_sym_as] = ACTIONS(1229), + [anon_sym_const] = ACTIONS(1229), + [anon_sym_default] = ACTIONS(1229), + [anon_sym_union] = ACTIONS(1229), + [anon_sym_ref] = ACTIONS(1229), + [anon_sym_else] = ACTIONS(1229), + [sym_mutable_specifier] = ACTIONS(1229), + [sym_integer_literal] = ACTIONS(1227), + [aux_sym_string_literal_token1] = ACTIONS(1227), + [sym_char_literal] = ACTIONS(1227), + [anon_sym_true] = ACTIONS(1229), + [anon_sym_false] = ACTIONS(1229), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1229), + [sym_super] = ACTIONS(1229), + [sym_crate] = ACTIONS(1229), + [sym_metavariable] = ACTIONS(1227), + [sym__raw_string_literal_start] = ACTIONS(1227), + [sym_float_literal] = ACTIONS(1227), }, [458] = { + [sym_attribute_item] = STATE(1515), + [sym_inner_attribute_item] = STATE(1515), + [sym_bracketed_type] = STATE(3618), + [sym_generic_type] = STATE(3491), + [sym_generic_type_with_turbofish] = STATE(3218), + [sym_macro_invocation] = STATE(2994), + [sym_scoped_identifier] = STATE(2165), + [sym_scoped_type_identifier] = STATE(2786), + [sym_match_arm] = STATE(1505), + [sym_last_match_arm] = STATE(3557), + [sym_match_pattern] = STATE(3700), + [sym_const_block] = STATE(2994), + [sym__pattern] = STATE(3082), + [sym_tuple_pattern] = STATE(2994), + [sym_slice_pattern] = STATE(2994), + [sym_tuple_struct_pattern] = STATE(2994), + [sym_struct_pattern] = STATE(2994), + [sym_remaining_field_pattern] = STATE(2994), + [sym_mut_pattern] = STATE(2994), + [sym_range_pattern] = STATE(2994), + [sym_ref_pattern] = STATE(2994), + [sym_captured_pattern] = STATE(2994), + [sym_reference_pattern] = STATE(2994), + [sym_or_pattern] = STATE(2994), + [sym__literal_pattern] = STATE(2380), + [sym_negative_literal] = STATE(2383), + [sym_string_literal] = STATE(2383), + [sym_raw_string_literal] = STATE(2383), + [sym_boolean_literal] = STATE(2383), [sym_line_comment] = STATE(458), [sym_block_comment] = STATE(458), - [sym_identifier] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(1650), - [anon_sym_LBRACK] = ACTIONS(1650), - [anon_sym_RBRACE] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_STAR] = ACTIONS(1416), - [anon_sym_QMARK] = ACTIONS(1418), - [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_DASH] = ACTIONS(1648), - [anon_sym_SLASH] = ACTIONS(1416), - [anon_sym_PERCENT] = ACTIONS(1416), - [anon_sym_CARET] = ACTIONS(1416), - [anon_sym_AMP] = ACTIONS(1648), - [anon_sym_PIPE] = ACTIONS(1648), - [anon_sym_AMP_AMP] = ACTIONS(1418), - [anon_sym_PIPE_PIPE] = ACTIONS(1418), - [anon_sym_LT_LT] = ACTIONS(1416), - [anon_sym_GT_GT] = ACTIONS(1416), - [anon_sym_PLUS_EQ] = ACTIONS(1418), - [anon_sym_DASH_EQ] = ACTIONS(1418), - [anon_sym_STAR_EQ] = ACTIONS(1418), - [anon_sym_SLASH_EQ] = ACTIONS(1418), - [anon_sym_PERCENT_EQ] = ACTIONS(1418), - [anon_sym_CARET_EQ] = ACTIONS(1418), - [anon_sym_AMP_EQ] = ACTIONS(1418), - [anon_sym_PIPE_EQ] = ACTIONS(1418), - [anon_sym_LT_LT_EQ] = ACTIONS(1418), - [anon_sym_GT_GT_EQ] = ACTIONS(1418), - [anon_sym_EQ] = ACTIONS(1416), - [anon_sym_EQ_EQ] = ACTIONS(1418), - [anon_sym_BANG_EQ] = ACTIONS(1418), - [anon_sym_GT] = ACTIONS(1416), - [anon_sym_LT] = ACTIONS(1648), - [anon_sym_GT_EQ] = ACTIONS(1418), - [anon_sym_LT_EQ] = ACTIONS(1418), - [anon_sym__] = ACTIONS(1648), - [anon_sym_DOT] = ACTIONS(1416), - [anon_sym_DOT_DOT] = ACTIONS(1648), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1418), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1418), - [anon_sym_COMMA] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(1650), - [anon_sym_POUND] = ACTIONS(1650), - [anon_sym_as] = ACTIONS(1416), - [anon_sym_const] = ACTIONS(1648), - [anon_sym_default] = ACTIONS(1648), - [anon_sym_union] = ACTIONS(1648), - [anon_sym_ref] = ACTIONS(1648), - [sym_mutable_specifier] = ACTIONS(1648), - [sym_integer_literal] = ACTIONS(1650), - [aux_sym_string_literal_token1] = ACTIONS(1650), - [sym_char_literal] = ACTIONS(1650), - [anon_sym_true] = ACTIONS(1648), - [anon_sym_false] = ACTIONS(1648), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1648), - [sym_super] = ACTIONS(1648), - [sym_crate] = ACTIONS(1648), - [sym_metavariable] = ACTIONS(1650), - [sym__raw_string_literal_start] = ACTIONS(1650), - [sym_float_literal] = ACTIONS(1650), + [aux_sym_match_block_repeat1] = STATE(649), + [aux_sym_match_arm_repeat1] = STATE(780), + [sym_identifier] = ACTIONS(1621), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACK] = ACTIONS(1625), + [anon_sym_RBRACE] = ACTIONS(1627), + [anon_sym_u8] = ACTIONS(1629), + [anon_sym_i8] = ACTIONS(1629), + [anon_sym_u16] = ACTIONS(1629), + [anon_sym_i16] = ACTIONS(1629), + [anon_sym_u32] = ACTIONS(1629), + [anon_sym_i32] = ACTIONS(1629), + [anon_sym_u64] = ACTIONS(1629), + [anon_sym_i64] = ACTIONS(1629), + [anon_sym_u128] = ACTIONS(1629), + [anon_sym_i128] = ACTIONS(1629), + [anon_sym_isize] = ACTIONS(1629), + [anon_sym_usize] = ACTIONS(1629), + [anon_sym_f32] = ACTIONS(1629), + [anon_sym_f64] = ACTIONS(1629), + [anon_sym_bool] = ACTIONS(1629), + [anon_sym_str] = ACTIONS(1629), + [anon_sym_char] = ACTIONS(1629), + [anon_sym_DASH] = ACTIONS(1631), + [anon_sym_AMP] = ACTIONS(1633), + [anon_sym_PIPE] = ACTIONS(1635), + [anon_sym_LT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1637), + [anon_sym_DOT_DOT] = ACTIONS(1639), + [anon_sym_COLON_COLON] = ACTIONS(1641), + [anon_sym_POUND] = ACTIONS(1643), + [anon_sym_const] = ACTIONS(1645), + [anon_sym_default] = ACTIONS(1647), + [anon_sym_union] = ACTIONS(1647), + [anon_sym_ref] = ACTIONS(1649), + [sym_mutable_specifier] = ACTIONS(1651), + [sym_integer_literal] = ACTIONS(1653), + [aux_sym_string_literal_token1] = ACTIONS(1655), + [sym_char_literal] = ACTIONS(1653), + [anon_sym_true] = ACTIONS(1657), + [anon_sym_false] = ACTIONS(1657), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1659), + [sym_super] = ACTIONS(1659), + [sym_crate] = ACTIONS(1659), + [sym_metavariable] = ACTIONS(1661), + [sym__raw_string_literal_start] = ACTIONS(1663), + [sym_float_literal] = ACTIONS(1653), }, [459] = { - [sym_attribute_item] = STATE(1479), - [sym_inner_attribute_item] = STATE(1479), - [sym_bracketed_type] = STATE(3523), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3262), - [sym_macro_invocation] = STATE(2877), - [sym_scoped_identifier] = STATE(2130), - [sym_scoped_type_identifier] = STATE(2908), - [sym_match_arm] = STATE(1471), - [sym_last_match_arm] = STATE(3568), - [sym_match_pattern] = STATE(3345), - [sym_const_block] = STATE(2877), - [sym__pattern] = STATE(2919), - [sym_tuple_pattern] = STATE(2877), - [sym_slice_pattern] = STATE(2877), - [sym_tuple_struct_pattern] = STATE(2877), - [sym_struct_pattern] = STATE(2877), - [sym_remaining_field_pattern] = STATE(2877), - [sym_mut_pattern] = STATE(2877), - [sym_range_pattern] = STATE(2877), - [sym_ref_pattern] = STATE(2877), - [sym_captured_pattern] = STATE(2877), - [sym_reference_pattern] = STATE(2877), - [sym_or_pattern] = STATE(2877), - [sym__literal_pattern] = STATE(2387), - [sym_negative_literal] = STATE(2299), - [sym_string_literal] = STATE(2299), - [sym_raw_string_literal] = STATE(2299), - [sym_boolean_literal] = STATE(2299), [sym_line_comment] = STATE(459), [sym_block_comment] = STATE(459), - [aux_sym_match_block_repeat1] = STATE(475), - [aux_sym_match_arm_repeat1] = STATE(759), - [sym_identifier] = ACTIONS(1604), - [anon_sym_LPAREN] = ACTIONS(1606), - [anon_sym_LBRACK] = ACTIONS(1608), - [anon_sym_RBRACE] = ACTIONS(1652), - [anon_sym_u8] = ACTIONS(1612), - [anon_sym_i8] = ACTIONS(1612), - [anon_sym_u16] = ACTIONS(1612), - [anon_sym_i16] = ACTIONS(1612), - [anon_sym_u32] = ACTIONS(1612), - [anon_sym_i32] = ACTIONS(1612), - [anon_sym_u64] = ACTIONS(1612), - [anon_sym_i64] = ACTIONS(1612), - [anon_sym_u128] = ACTIONS(1612), - [anon_sym_i128] = ACTIONS(1612), - [anon_sym_isize] = ACTIONS(1612), - [anon_sym_usize] = ACTIONS(1612), - [anon_sym_f32] = ACTIONS(1612), - [anon_sym_f64] = ACTIONS(1612), - [anon_sym_bool] = ACTIONS(1612), - [anon_sym_str] = ACTIONS(1612), - [anon_sym_char] = ACTIONS(1612), - [anon_sym_DASH] = ACTIONS(1614), - [anon_sym_AMP] = ACTIONS(1616), - [anon_sym_PIPE] = ACTIONS(1618), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1620), - [anon_sym_DOT_DOT] = ACTIONS(1622), - [anon_sym_COLON_COLON] = ACTIONS(1624), - [anon_sym_POUND] = ACTIONS(1626), - [anon_sym_const] = ACTIONS(1628), - [anon_sym_default] = ACTIONS(1630), - [anon_sym_union] = ACTIONS(1630), - [anon_sym_ref] = ACTIONS(1632), - [sym_mutable_specifier] = ACTIONS(1634), - [sym_integer_literal] = ACTIONS(1636), - [aux_sym_string_literal_token1] = ACTIONS(1638), - [sym_char_literal] = ACTIONS(1636), - [anon_sym_true] = ACTIONS(1640), - [anon_sym_false] = ACTIONS(1640), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1642), - [sym_super] = ACTIONS(1642), - [sym_crate] = ACTIONS(1642), - [sym_metavariable] = ACTIONS(1644), - [sym__raw_string_literal_start] = ACTIONS(1646), - [sym_float_literal] = ACTIONS(1636), + [sym_identifier] = ACTIONS(1259), + [anon_sym_LPAREN] = ACTIONS(1257), + [anon_sym_LBRACK] = ACTIONS(1257), + [anon_sym_RBRACE] = ACTIONS(1257), + [anon_sym_COMMA] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1259), + [anon_sym_QMARK] = ACTIONS(1257), + [anon_sym_u8] = ACTIONS(1259), + [anon_sym_i8] = ACTIONS(1259), + [anon_sym_u16] = ACTIONS(1259), + [anon_sym_i16] = ACTIONS(1259), + [anon_sym_u32] = ACTIONS(1259), + [anon_sym_i32] = ACTIONS(1259), + [anon_sym_u64] = ACTIONS(1259), + [anon_sym_i64] = ACTIONS(1259), + [anon_sym_u128] = ACTIONS(1259), + [anon_sym_i128] = ACTIONS(1259), + [anon_sym_isize] = ACTIONS(1259), + [anon_sym_usize] = ACTIONS(1259), + [anon_sym_f32] = ACTIONS(1259), + [anon_sym_f64] = ACTIONS(1259), + [anon_sym_bool] = ACTIONS(1259), + [anon_sym_str] = ACTIONS(1259), + [anon_sym_char] = ACTIONS(1259), + [anon_sym_DASH] = ACTIONS(1259), + [anon_sym_SLASH] = ACTIONS(1259), + [anon_sym_PERCENT] = ACTIONS(1259), + [anon_sym_CARET] = ACTIONS(1259), + [anon_sym_AMP] = ACTIONS(1259), + [anon_sym_PIPE] = ACTIONS(1259), + [anon_sym_AMP_AMP] = ACTIONS(1257), + [anon_sym_PIPE_PIPE] = ACTIONS(1257), + [anon_sym_LT_LT] = ACTIONS(1259), + [anon_sym_GT_GT] = ACTIONS(1259), + [anon_sym_PLUS_EQ] = ACTIONS(1257), + [anon_sym_DASH_EQ] = ACTIONS(1257), + [anon_sym_STAR_EQ] = ACTIONS(1257), + [anon_sym_SLASH_EQ] = ACTIONS(1257), + [anon_sym_PERCENT_EQ] = ACTIONS(1257), + [anon_sym_CARET_EQ] = ACTIONS(1257), + [anon_sym_AMP_EQ] = ACTIONS(1257), + [anon_sym_PIPE_EQ] = ACTIONS(1257), + [anon_sym_LT_LT_EQ] = ACTIONS(1257), + [anon_sym_GT_GT_EQ] = ACTIONS(1257), + [anon_sym_EQ] = ACTIONS(1259), + [anon_sym_EQ_EQ] = ACTIONS(1257), + [anon_sym_BANG_EQ] = ACTIONS(1257), + [anon_sym_GT] = ACTIONS(1259), + [anon_sym_LT] = ACTIONS(1259), + [anon_sym_GT_EQ] = ACTIONS(1257), + [anon_sym_LT_EQ] = ACTIONS(1257), + [anon_sym__] = ACTIONS(1259), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_DOT_DOT] = ACTIONS(1259), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1257), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1257), + [anon_sym_COLON_COLON] = ACTIONS(1257), + [anon_sym_POUND] = ACTIONS(1257), + [anon_sym_as] = ACTIONS(1259), + [anon_sym_const] = ACTIONS(1259), + [anon_sym_default] = ACTIONS(1259), + [anon_sym_union] = ACTIONS(1259), + [anon_sym_ref] = ACTIONS(1259), + [sym_mutable_specifier] = ACTIONS(1259), + [sym_integer_literal] = ACTIONS(1257), + [aux_sym_string_literal_token1] = ACTIONS(1257), + [sym_char_literal] = ACTIONS(1257), + [anon_sym_true] = ACTIONS(1259), + [anon_sym_false] = ACTIONS(1259), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1259), + [sym_super] = ACTIONS(1259), + [sym_crate] = ACTIONS(1259), + [sym_metavariable] = ACTIONS(1257), + [sym__raw_string_literal_start] = ACTIONS(1257), + [sym_float_literal] = ACTIONS(1257), }, [460] = { [sym_line_comment] = STATE(460), [sym_block_comment] = STATE(460), - [sym_identifier] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1398), - [anon_sym_LBRACK] = ACTIONS(1398), - [anon_sym_RBRACE] = ACTIONS(1398), - [anon_sym_PLUS] = ACTIONS(1400), - [anon_sym_STAR] = ACTIONS(1400), - [anon_sym_QMARK] = 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_DASH] = ACTIONS(1400), - [anon_sym_SLASH] = ACTIONS(1400), - [anon_sym_PERCENT] = ACTIONS(1400), - [anon_sym_CARET] = ACTIONS(1400), - [anon_sym_AMP] = ACTIONS(1400), - [anon_sym_PIPE] = ACTIONS(1400), - [anon_sym_AMP_AMP] = ACTIONS(1398), - [anon_sym_PIPE_PIPE] = ACTIONS(1398), - [anon_sym_LT_LT] = ACTIONS(1400), - [anon_sym_GT_GT] = ACTIONS(1400), - [anon_sym_PLUS_EQ] = ACTIONS(1398), - [anon_sym_DASH_EQ] = ACTIONS(1398), - [anon_sym_STAR_EQ] = ACTIONS(1398), - [anon_sym_SLASH_EQ] = ACTIONS(1398), - [anon_sym_PERCENT_EQ] = ACTIONS(1398), - [anon_sym_CARET_EQ] = ACTIONS(1398), - [anon_sym_AMP_EQ] = ACTIONS(1398), - [anon_sym_PIPE_EQ] = ACTIONS(1398), - [anon_sym_LT_LT_EQ] = ACTIONS(1398), - [anon_sym_GT_GT_EQ] = ACTIONS(1398), - [anon_sym_EQ] = ACTIONS(1400), - [anon_sym_EQ_EQ] = ACTIONS(1398), - [anon_sym_BANG_EQ] = ACTIONS(1398), - [anon_sym_GT] = ACTIONS(1400), - [anon_sym_LT] = ACTIONS(1400), - [anon_sym_GT_EQ] = ACTIONS(1398), - [anon_sym_LT_EQ] = ACTIONS(1398), - [anon_sym__] = ACTIONS(1400), - [anon_sym_DOT] = ACTIONS(1400), - [anon_sym_DOT_DOT] = ACTIONS(1400), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1398), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1398), - [anon_sym_COMMA] = ACTIONS(1398), - [anon_sym_COLON_COLON] = ACTIONS(1398), - [anon_sym_POUND] = ACTIONS(1398), - [anon_sym_as] = ACTIONS(1400), - [anon_sym_const] = ACTIONS(1400), - [anon_sym_default] = ACTIONS(1400), - [anon_sym_union] = ACTIONS(1400), - [anon_sym_ref] = ACTIONS(1400), - [sym_mutable_specifier] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1400), - [sym_super] = ACTIONS(1400), - [sym_crate] = ACTIONS(1400), - [sym_metavariable] = ACTIONS(1398), - [sym__raw_string_literal_start] = ACTIONS(1398), - [sym_float_literal] = ACTIONS(1398), + [sym_identifier] = ACTIONS(1319), + [anon_sym_LPAREN] = ACTIONS(1317), + [anon_sym_LBRACK] = ACTIONS(1317), + [anon_sym_RBRACE] = ACTIONS(1317), + [anon_sym_COMMA] = ACTIONS(1317), + [anon_sym_PLUS] = ACTIONS(1319), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_QMARK] = ACTIONS(1317), + [anon_sym_u8] = ACTIONS(1319), + [anon_sym_i8] = ACTIONS(1319), + [anon_sym_u16] = ACTIONS(1319), + [anon_sym_i16] = ACTIONS(1319), + [anon_sym_u32] = ACTIONS(1319), + [anon_sym_i32] = ACTIONS(1319), + [anon_sym_u64] = ACTIONS(1319), + [anon_sym_i64] = ACTIONS(1319), + [anon_sym_u128] = ACTIONS(1319), + [anon_sym_i128] = ACTIONS(1319), + [anon_sym_isize] = ACTIONS(1319), + [anon_sym_usize] = ACTIONS(1319), + [anon_sym_f32] = ACTIONS(1319), + [anon_sym_f64] = ACTIONS(1319), + [anon_sym_bool] = ACTIONS(1319), + [anon_sym_str] = ACTIONS(1319), + [anon_sym_char] = ACTIONS(1319), + [anon_sym_DASH] = ACTIONS(1319), + [anon_sym_SLASH] = ACTIONS(1319), + [anon_sym_PERCENT] = ACTIONS(1319), + [anon_sym_CARET] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_PIPE] = ACTIONS(1319), + [anon_sym_AMP_AMP] = ACTIONS(1317), + [anon_sym_PIPE_PIPE] = ACTIONS(1317), + [anon_sym_LT_LT] = ACTIONS(1319), + [anon_sym_GT_GT] = ACTIONS(1319), + [anon_sym_PLUS_EQ] = ACTIONS(1317), + [anon_sym_DASH_EQ] = ACTIONS(1317), + [anon_sym_STAR_EQ] = ACTIONS(1317), + [anon_sym_SLASH_EQ] = ACTIONS(1317), + [anon_sym_PERCENT_EQ] = ACTIONS(1317), + [anon_sym_CARET_EQ] = ACTIONS(1317), + [anon_sym_AMP_EQ] = ACTIONS(1317), + [anon_sym_PIPE_EQ] = ACTIONS(1317), + [anon_sym_LT_LT_EQ] = ACTIONS(1317), + [anon_sym_GT_GT_EQ] = ACTIONS(1317), + [anon_sym_EQ] = ACTIONS(1319), + [anon_sym_EQ_EQ] = ACTIONS(1317), + [anon_sym_BANG_EQ] = ACTIONS(1317), + [anon_sym_GT] = ACTIONS(1319), + [anon_sym_LT] = ACTIONS(1319), + [anon_sym_GT_EQ] = ACTIONS(1317), + [anon_sym_LT_EQ] = ACTIONS(1317), + [anon_sym__] = ACTIONS(1319), + [anon_sym_DOT] = ACTIONS(1319), + [anon_sym_DOT_DOT] = ACTIONS(1319), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1317), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1317), + [anon_sym_COLON_COLON] = ACTIONS(1317), + [anon_sym_POUND] = ACTIONS(1317), + [anon_sym_as] = ACTIONS(1319), + [anon_sym_const] = ACTIONS(1319), + [anon_sym_default] = ACTIONS(1319), + [anon_sym_union] = ACTIONS(1319), + [anon_sym_ref] = ACTIONS(1319), + [sym_mutable_specifier] = ACTIONS(1319), + [sym_integer_literal] = ACTIONS(1317), + [aux_sym_string_literal_token1] = ACTIONS(1317), + [sym_char_literal] = ACTIONS(1317), + [anon_sym_true] = ACTIONS(1319), + [anon_sym_false] = ACTIONS(1319), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1319), + [sym_super] = ACTIONS(1319), + [sym_crate] = ACTIONS(1319), + [sym_metavariable] = ACTIONS(1317), + [sym__raw_string_literal_start] = ACTIONS(1317), + [sym_float_literal] = ACTIONS(1317), }, [461] = { - [sym_attribute_item] = STATE(1479), - [sym_inner_attribute_item] = STATE(1479), - [sym_bracketed_type] = STATE(3523), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3262), - [sym_macro_invocation] = STATE(2877), - [sym_scoped_identifier] = STATE(2130), - [sym_scoped_type_identifier] = STATE(2908), - [sym_match_arm] = STATE(1471), - [sym_last_match_arm] = STATE(3358), - [sym_match_pattern] = STATE(3345), - [sym_const_block] = STATE(2877), - [sym__pattern] = STATE(2919), - [sym_tuple_pattern] = STATE(2877), - [sym_slice_pattern] = STATE(2877), - [sym_tuple_struct_pattern] = STATE(2877), - [sym_struct_pattern] = STATE(2877), - [sym_remaining_field_pattern] = STATE(2877), - [sym_mut_pattern] = STATE(2877), - [sym_range_pattern] = STATE(2877), - [sym_ref_pattern] = STATE(2877), - [sym_captured_pattern] = STATE(2877), - [sym_reference_pattern] = STATE(2877), - [sym_or_pattern] = STATE(2877), - [sym__literal_pattern] = STATE(2387), - [sym_negative_literal] = STATE(2299), - [sym_string_literal] = STATE(2299), - [sym_raw_string_literal] = STATE(2299), - [sym_boolean_literal] = STATE(2299), + [sym_empty_statement] = STATE(1250), + [sym_macro_rules] = STATE(1250), + [sym_macro_definition] = STATE(1250), + [sym_attribute_item] = STATE(1250), + [sym_inner_attribute_item] = STATE(1250), + [sym_mod_item] = STATE(1250), + [sym_foreign_mod_item] = STATE(1250), + [sym_struct_item] = STATE(1250), + [sym_union_item] = STATE(1250), + [sym_enum_item] = STATE(1250), + [sym_extern_crate_declaration] = STATE(1250), + [sym_const_item] = STATE(1250), + [sym_static_item] = STATE(1250), + [sym_type_item] = STATE(1250), + [sym_function_item] = STATE(1250), + [sym_function_signature_item] = STATE(1250), + [sym_function_modifiers] = STATE(3690), + [sym_impl_item] = STATE(1250), + [sym_trait_item] = STATE(1250), + [sym_associated_type] = STATE(1250), + [sym_let_declaration] = STATE(1250), + [sym_use_declaration] = STATE(1250), + [sym_extern_modifier] = STATE(2166), + [sym_visibility_modifier] = STATE(1965), + [sym_bracketed_type] = STATE(3408), + [sym_generic_type_with_turbofish] = STATE(3436), + [sym_macro_invocation] = STATE(1250), + [sym_scoped_identifier] = STATE(3322), [sym_line_comment] = STATE(461), [sym_block_comment] = STATE(461), - [aux_sym_match_block_repeat1] = STATE(477), - [aux_sym_match_arm_repeat1] = STATE(759), - [sym_identifier] = ACTIONS(1604), - [anon_sym_LPAREN] = ACTIONS(1606), - [anon_sym_LBRACK] = ACTIONS(1608), - [anon_sym_RBRACE] = ACTIONS(1654), - [anon_sym_u8] = ACTIONS(1612), - [anon_sym_i8] = ACTIONS(1612), - [anon_sym_u16] = ACTIONS(1612), - [anon_sym_i16] = ACTIONS(1612), - [anon_sym_u32] = ACTIONS(1612), - [anon_sym_i32] = ACTIONS(1612), - [anon_sym_u64] = ACTIONS(1612), - [anon_sym_i64] = ACTIONS(1612), - [anon_sym_u128] = ACTIONS(1612), - [anon_sym_i128] = ACTIONS(1612), - [anon_sym_isize] = ACTIONS(1612), - [anon_sym_usize] = ACTIONS(1612), - [anon_sym_f32] = ACTIONS(1612), - [anon_sym_f64] = ACTIONS(1612), - [anon_sym_bool] = ACTIONS(1612), - [anon_sym_str] = ACTIONS(1612), - [anon_sym_char] = ACTIONS(1612), - [anon_sym_DASH] = ACTIONS(1614), - [anon_sym_AMP] = ACTIONS(1616), - [anon_sym_PIPE] = ACTIONS(1618), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1620), - [anon_sym_DOT_DOT] = ACTIONS(1622), - [anon_sym_COLON_COLON] = ACTIONS(1624), - [anon_sym_POUND] = ACTIONS(1626), - [anon_sym_const] = ACTIONS(1628), - [anon_sym_default] = ACTIONS(1630), - [anon_sym_union] = ACTIONS(1630), - [anon_sym_ref] = ACTIONS(1632), - [sym_mutable_specifier] = ACTIONS(1634), - [sym_integer_literal] = ACTIONS(1636), - [aux_sym_string_literal_token1] = ACTIONS(1638), - [sym_char_literal] = ACTIONS(1636), - [anon_sym_true] = ACTIONS(1640), - [anon_sym_false] = ACTIONS(1640), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1642), - [sym_super] = ACTIONS(1642), - [sym_crate] = ACTIONS(1642), - [sym_metavariable] = ACTIONS(1644), - [sym__raw_string_literal_start] = ACTIONS(1646), - [sym_float_literal] = ACTIONS(1636), + [aux_sym_declaration_list_repeat1] = STATE(484), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(1665), + [anon_sym_SEMI] = ACTIONS(1667), + [anon_sym_macro_rules_BANG] = ACTIONS(1669), + [anon_sym_RBRACE] = ACTIONS(1671), + [anon_sym_macro] = ACTIONS(1673), + [anon_sym_u8] = ACTIONS(1675), + [anon_sym_i8] = ACTIONS(1675), + [anon_sym_u16] = ACTIONS(1675), + [anon_sym_i16] = ACTIONS(1675), + [anon_sym_u32] = ACTIONS(1675), + [anon_sym_i32] = ACTIONS(1675), + [anon_sym_u64] = ACTIONS(1675), + [anon_sym_i64] = ACTIONS(1675), + [anon_sym_u128] = ACTIONS(1675), + [anon_sym_i128] = ACTIONS(1675), + [anon_sym_isize] = ACTIONS(1675), + [anon_sym_usize] = ACTIONS(1675), + [anon_sym_f32] = ACTIONS(1675), + [anon_sym_f64] = ACTIONS(1675), + [anon_sym_bool] = ACTIONS(1675), + [anon_sym_str] = ACTIONS(1675), + [anon_sym_char] = ACTIONS(1675), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1677), + [anon_sym_POUND] = ACTIONS(1679), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1681), + [anon_sym_default] = ACTIONS(1683), + [anon_sym_enum] = ACTIONS(1685), + [anon_sym_fn] = ACTIONS(1687), + [anon_sym_impl] = ACTIONS(1689), + [anon_sym_let] = ACTIONS(1691), + [anon_sym_mod] = ACTIONS(1693), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_static] = ACTIONS(1695), + [anon_sym_struct] = ACTIONS(1697), + [anon_sym_trait] = ACTIONS(1699), + [anon_sym_type] = ACTIONS(1701), + [anon_sym_union] = ACTIONS(1703), + [anon_sym_unsafe] = ACTIONS(1705), + [anon_sym_use] = ACTIONS(1707), + [anon_sym_extern] = ACTIONS(1709), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1711), + [sym_super] = ACTIONS(1711), + [sym_crate] = ACTIONS(1713), + [sym_metavariable] = ACTIONS(1715), }, [462] = { + [sym_attribute_item] = STATE(1515), + [sym_inner_attribute_item] = STATE(1515), + [sym_bracketed_type] = STATE(3618), + [sym_generic_type] = STATE(3491), + [sym_generic_type_with_turbofish] = STATE(3218), + [sym_macro_invocation] = STATE(2994), + [sym_scoped_identifier] = STATE(2165), + [sym_scoped_type_identifier] = STATE(2786), + [sym_match_arm] = STATE(1505), + [sym_last_match_arm] = STATE(3505), + [sym_match_pattern] = STATE(3700), + [sym_const_block] = STATE(2994), + [sym__pattern] = STATE(3082), + [sym_tuple_pattern] = STATE(2994), + [sym_slice_pattern] = STATE(2994), + [sym_tuple_struct_pattern] = STATE(2994), + [sym_struct_pattern] = STATE(2994), + [sym_remaining_field_pattern] = STATE(2994), + [sym_mut_pattern] = STATE(2994), + [sym_range_pattern] = STATE(2994), + [sym_ref_pattern] = STATE(2994), + [sym_captured_pattern] = STATE(2994), + [sym_reference_pattern] = STATE(2994), + [sym_or_pattern] = STATE(2994), + [sym__literal_pattern] = STATE(2380), + [sym_negative_literal] = STATE(2383), + [sym_string_literal] = STATE(2383), + [sym_raw_string_literal] = STATE(2383), + [sym_boolean_literal] = STATE(2383), [sym_line_comment] = STATE(462), [sym_block_comment] = STATE(462), - [sym_identifier] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1366), - [anon_sym_LBRACK] = ACTIONS(1366), - [anon_sym_RBRACE] = ACTIONS(1366), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_QMARK] = 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_DASH] = ACTIONS(1368), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_PERCENT] = ACTIONS(1368), - [anon_sym_CARET] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_PIPE] = ACTIONS(1368), - [anon_sym_AMP_AMP] = ACTIONS(1366), - [anon_sym_PIPE_PIPE] = ACTIONS(1366), - [anon_sym_LT_LT] = ACTIONS(1368), - [anon_sym_GT_GT] = ACTIONS(1368), - [anon_sym_PLUS_EQ] = ACTIONS(1366), - [anon_sym_DASH_EQ] = ACTIONS(1366), - [anon_sym_STAR_EQ] = ACTIONS(1366), - [anon_sym_SLASH_EQ] = ACTIONS(1366), - [anon_sym_PERCENT_EQ] = ACTIONS(1366), - [anon_sym_CARET_EQ] = ACTIONS(1366), - [anon_sym_AMP_EQ] = ACTIONS(1366), - [anon_sym_PIPE_EQ] = ACTIONS(1366), - [anon_sym_LT_LT_EQ] = ACTIONS(1366), - [anon_sym_GT_GT_EQ] = ACTIONS(1366), - [anon_sym_EQ] = ACTIONS(1368), - [anon_sym_EQ_EQ] = ACTIONS(1366), - [anon_sym_BANG_EQ] = ACTIONS(1366), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_LT] = ACTIONS(1368), - [anon_sym_GT_EQ] = ACTIONS(1366), - [anon_sym_LT_EQ] = ACTIONS(1366), - [anon_sym__] = ACTIONS(1368), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1366), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1366), - [anon_sym_COMMA] = ACTIONS(1366), - [anon_sym_COLON_COLON] = ACTIONS(1366), - [anon_sym_POUND] = ACTIONS(1366), - [anon_sym_as] = ACTIONS(1368), - [anon_sym_const] = ACTIONS(1368), - [anon_sym_default] = ACTIONS(1368), - [anon_sym_union] = ACTIONS(1368), - [anon_sym_ref] = ACTIONS(1368), - [sym_mutable_specifier] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1368), - [sym_super] = ACTIONS(1368), - [sym_crate] = ACTIONS(1368), - [sym_metavariable] = ACTIONS(1366), - [sym__raw_string_literal_start] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1366), + [aux_sym_match_block_repeat1] = STATE(676), + [aux_sym_match_arm_repeat1] = STATE(780), + [sym_identifier] = ACTIONS(1621), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACK] = ACTIONS(1625), + [anon_sym_RBRACE] = ACTIONS(1717), + [anon_sym_u8] = ACTIONS(1629), + [anon_sym_i8] = ACTIONS(1629), + [anon_sym_u16] = ACTIONS(1629), + [anon_sym_i16] = ACTIONS(1629), + [anon_sym_u32] = ACTIONS(1629), + [anon_sym_i32] = ACTIONS(1629), + [anon_sym_u64] = ACTIONS(1629), + [anon_sym_i64] = ACTIONS(1629), + [anon_sym_u128] = ACTIONS(1629), + [anon_sym_i128] = ACTIONS(1629), + [anon_sym_isize] = ACTIONS(1629), + [anon_sym_usize] = ACTIONS(1629), + [anon_sym_f32] = ACTIONS(1629), + [anon_sym_f64] = ACTIONS(1629), + [anon_sym_bool] = ACTIONS(1629), + [anon_sym_str] = ACTIONS(1629), + [anon_sym_char] = ACTIONS(1629), + [anon_sym_DASH] = ACTIONS(1631), + [anon_sym_AMP] = ACTIONS(1633), + [anon_sym_PIPE] = ACTIONS(1635), + [anon_sym_LT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1637), + [anon_sym_DOT_DOT] = ACTIONS(1639), + [anon_sym_COLON_COLON] = ACTIONS(1641), + [anon_sym_POUND] = ACTIONS(1643), + [anon_sym_const] = ACTIONS(1645), + [anon_sym_default] = ACTIONS(1647), + [anon_sym_union] = ACTIONS(1647), + [anon_sym_ref] = ACTIONS(1649), + [sym_mutable_specifier] = ACTIONS(1651), + [sym_integer_literal] = ACTIONS(1653), + [aux_sym_string_literal_token1] = ACTIONS(1655), + [sym_char_literal] = ACTIONS(1653), + [anon_sym_true] = ACTIONS(1657), + [anon_sym_false] = ACTIONS(1657), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1659), + [sym_super] = ACTIONS(1659), + [sym_crate] = ACTIONS(1659), + [sym_metavariable] = ACTIONS(1661), + [sym__raw_string_literal_start] = ACTIONS(1663), + [sym_float_literal] = ACTIONS(1653), }, [463] = { [sym_line_comment] = STATE(463), [sym_block_comment] = STATE(463), - [sym_identifier] = ACTIONS(1404), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_LBRACK] = ACTIONS(1402), - [anon_sym_RBRACE] = ACTIONS(1402), - [anon_sym_PLUS] = ACTIONS(1404), - [anon_sym_STAR] = ACTIONS(1404), - [anon_sym_QMARK] = 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_DASH] = ACTIONS(1404), - [anon_sym_SLASH] = ACTIONS(1404), - [anon_sym_PERCENT] = ACTIONS(1404), - [anon_sym_CARET] = ACTIONS(1404), - [anon_sym_AMP] = ACTIONS(1404), - [anon_sym_PIPE] = ACTIONS(1404), - [anon_sym_AMP_AMP] = ACTIONS(1402), - [anon_sym_PIPE_PIPE] = ACTIONS(1402), - [anon_sym_LT_LT] = ACTIONS(1404), - [anon_sym_GT_GT] = ACTIONS(1404), - [anon_sym_PLUS_EQ] = ACTIONS(1402), - [anon_sym_DASH_EQ] = ACTIONS(1402), - [anon_sym_STAR_EQ] = ACTIONS(1402), - [anon_sym_SLASH_EQ] = ACTIONS(1402), - [anon_sym_PERCENT_EQ] = ACTIONS(1402), - [anon_sym_CARET_EQ] = ACTIONS(1402), - [anon_sym_AMP_EQ] = ACTIONS(1402), - [anon_sym_PIPE_EQ] = ACTIONS(1402), - [anon_sym_LT_LT_EQ] = ACTIONS(1402), - [anon_sym_GT_GT_EQ] = ACTIONS(1402), - [anon_sym_EQ] = ACTIONS(1404), - [anon_sym_EQ_EQ] = ACTIONS(1402), - [anon_sym_BANG_EQ] = ACTIONS(1402), - [anon_sym_GT] = ACTIONS(1404), - [anon_sym_LT] = ACTIONS(1404), - [anon_sym_GT_EQ] = ACTIONS(1402), - [anon_sym_LT_EQ] = ACTIONS(1402), - [anon_sym__] = ACTIONS(1404), - [anon_sym_DOT] = ACTIONS(1404), - [anon_sym_DOT_DOT] = ACTIONS(1404), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1402), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1402), - [anon_sym_COMMA] = ACTIONS(1402), - [anon_sym_COLON_COLON] = ACTIONS(1402), - [anon_sym_POUND] = ACTIONS(1402), - [anon_sym_as] = ACTIONS(1404), - [anon_sym_const] = ACTIONS(1404), - [anon_sym_default] = ACTIONS(1404), - [anon_sym_union] = ACTIONS(1404), - [anon_sym_ref] = ACTIONS(1404), - [sym_mutable_specifier] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1404), - [sym_super] = ACTIONS(1404), - [sym_crate] = ACTIONS(1404), - [sym_metavariable] = ACTIONS(1402), - [sym__raw_string_literal_start] = ACTIONS(1402), - [sym_float_literal] = ACTIONS(1402), + [sym_identifier] = ACTIONS(1719), + [anon_sym_LPAREN] = ACTIONS(1721), + [anon_sym_LBRACK] = ACTIONS(1721), + [anon_sym_RBRACE] = ACTIONS(1305), + [anon_sym_COMMA] = ACTIONS(1305), + [anon_sym_PLUS] = ACTIONS(1307), + [anon_sym_STAR] = ACTIONS(1307), + [anon_sym_QMARK] = ACTIONS(1305), + [anon_sym_u8] = ACTIONS(1719), + [anon_sym_i8] = ACTIONS(1719), + [anon_sym_u16] = ACTIONS(1719), + [anon_sym_i16] = ACTIONS(1719), + [anon_sym_u32] = ACTIONS(1719), + [anon_sym_i32] = ACTIONS(1719), + [anon_sym_u64] = ACTIONS(1719), + [anon_sym_i64] = ACTIONS(1719), + [anon_sym_u128] = ACTIONS(1719), + [anon_sym_i128] = ACTIONS(1719), + [anon_sym_isize] = ACTIONS(1719), + [anon_sym_usize] = ACTIONS(1719), + [anon_sym_f32] = ACTIONS(1719), + [anon_sym_f64] = ACTIONS(1719), + [anon_sym_bool] = ACTIONS(1719), + [anon_sym_str] = ACTIONS(1719), + [anon_sym_char] = ACTIONS(1719), + [anon_sym_DASH] = ACTIONS(1719), + [anon_sym_SLASH] = ACTIONS(1307), + [anon_sym_PERCENT] = ACTIONS(1307), + [anon_sym_CARET] = ACTIONS(1307), + [anon_sym_AMP] = ACTIONS(1719), + [anon_sym_PIPE] = ACTIONS(1719), + [anon_sym_AMP_AMP] = ACTIONS(1305), + [anon_sym_PIPE_PIPE] = ACTIONS(1305), + [anon_sym_LT_LT] = ACTIONS(1307), + [anon_sym_GT_GT] = ACTIONS(1307), + [anon_sym_PLUS_EQ] = ACTIONS(1305), + [anon_sym_DASH_EQ] = ACTIONS(1305), + [anon_sym_STAR_EQ] = ACTIONS(1305), + [anon_sym_SLASH_EQ] = ACTIONS(1305), + [anon_sym_PERCENT_EQ] = ACTIONS(1305), + [anon_sym_CARET_EQ] = ACTIONS(1305), + [anon_sym_AMP_EQ] = ACTIONS(1305), + [anon_sym_PIPE_EQ] = ACTIONS(1305), + [anon_sym_LT_LT_EQ] = ACTIONS(1305), + [anon_sym_GT_GT_EQ] = ACTIONS(1305), + [anon_sym_EQ] = ACTIONS(1307), + [anon_sym_EQ_EQ] = ACTIONS(1305), + [anon_sym_BANG_EQ] = ACTIONS(1305), + [anon_sym_GT] = ACTIONS(1307), + [anon_sym_LT] = ACTIONS(1719), + [anon_sym_GT_EQ] = ACTIONS(1305), + [anon_sym_LT_EQ] = ACTIONS(1305), + [anon_sym__] = ACTIONS(1719), + [anon_sym_DOT] = ACTIONS(1307), + [anon_sym_DOT_DOT] = ACTIONS(1719), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1305), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1305), + [anon_sym_COLON_COLON] = ACTIONS(1721), + [anon_sym_POUND] = ACTIONS(1721), + [anon_sym_as] = ACTIONS(1307), + [anon_sym_const] = ACTIONS(1719), + [anon_sym_default] = ACTIONS(1719), + [anon_sym_union] = ACTIONS(1719), + [anon_sym_ref] = ACTIONS(1719), + [sym_mutable_specifier] = ACTIONS(1719), + [sym_integer_literal] = ACTIONS(1721), + [aux_sym_string_literal_token1] = ACTIONS(1721), + [sym_char_literal] = ACTIONS(1721), + [anon_sym_true] = ACTIONS(1719), + [anon_sym_false] = ACTIONS(1719), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1719), + [sym_super] = ACTIONS(1719), + [sym_crate] = ACTIONS(1719), + [sym_metavariable] = ACTIONS(1721), + [sym__raw_string_literal_start] = ACTIONS(1721), + [sym_float_literal] = ACTIONS(1721), }, [464] = { [sym_line_comment] = STATE(464), [sym_block_comment] = STATE(464), - [sym_identifier] = ACTIONS(1656), - [anon_sym_LPAREN] = ACTIONS(1658), - [anon_sym_LBRACK] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_STAR] = ACTIONS(1416), - [anon_sym_QMARK] = ACTIONS(1418), - [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_DASH] = ACTIONS(1656), - [anon_sym_SLASH] = ACTIONS(1416), - [anon_sym_PERCENT] = ACTIONS(1416), - [anon_sym_CARET] = ACTIONS(1416), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_PIPE] = ACTIONS(1656), - [anon_sym_AMP_AMP] = ACTIONS(1418), - [anon_sym_PIPE_PIPE] = ACTIONS(1418), - [anon_sym_LT_LT] = ACTIONS(1416), - [anon_sym_GT_GT] = ACTIONS(1416), - [anon_sym_PLUS_EQ] = ACTIONS(1418), - [anon_sym_DASH_EQ] = ACTIONS(1418), - [anon_sym_STAR_EQ] = ACTIONS(1418), - [anon_sym_SLASH_EQ] = ACTIONS(1418), - [anon_sym_PERCENT_EQ] = ACTIONS(1418), - [anon_sym_CARET_EQ] = ACTIONS(1418), - [anon_sym_AMP_EQ] = ACTIONS(1418), - [anon_sym_PIPE_EQ] = ACTIONS(1418), - [anon_sym_LT_LT_EQ] = ACTIONS(1418), - [anon_sym_GT_GT_EQ] = ACTIONS(1418), - [anon_sym_EQ] = ACTIONS(1416), - [anon_sym_EQ_EQ] = ACTIONS(1418), - [anon_sym_BANG_EQ] = ACTIONS(1418), - [anon_sym_GT] = ACTIONS(1416), - [anon_sym_LT] = ACTIONS(1656), - [anon_sym_GT_EQ] = ACTIONS(1418), - [anon_sym_LT_EQ] = ACTIONS(1418), - [anon_sym__] = ACTIONS(1656), - [anon_sym_DOT] = ACTIONS(1416), - [anon_sym_DOT_DOT] = ACTIONS(1656), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1418), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1418), - [anon_sym_COMMA] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(1658), - [anon_sym_POUND] = ACTIONS(1658), - [anon_sym_as] = ACTIONS(1416), - [anon_sym_const] = ACTIONS(1656), - [anon_sym_default] = ACTIONS(1656), - [anon_sym_union] = ACTIONS(1656), - [anon_sym_ref] = ACTIONS(1656), - [sym_mutable_specifier] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(1658), - [aux_sym_string_literal_token1] = ACTIONS(1658), - [sym_char_literal] = ACTIONS(1658), - [anon_sym_true] = ACTIONS(1656), - [anon_sym_false] = ACTIONS(1656), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1656), - [sym_super] = ACTIONS(1656), - [sym_crate] = ACTIONS(1656), - [sym_metavariable] = ACTIONS(1658), - [sym__raw_string_literal_start] = ACTIONS(1658), - [sym_float_literal] = ACTIONS(1658), + [sym_identifier] = ACTIONS(1267), + [anon_sym_LPAREN] = ACTIONS(1265), + [anon_sym_LBRACK] = ACTIONS(1265), + [anon_sym_RBRACE] = ACTIONS(1265), + [anon_sym_COMMA] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1267), + [anon_sym_QMARK] = ACTIONS(1265), + [anon_sym_u8] = ACTIONS(1267), + [anon_sym_i8] = ACTIONS(1267), + [anon_sym_u16] = ACTIONS(1267), + [anon_sym_i16] = ACTIONS(1267), + [anon_sym_u32] = ACTIONS(1267), + [anon_sym_i32] = ACTIONS(1267), + [anon_sym_u64] = ACTIONS(1267), + [anon_sym_i64] = ACTIONS(1267), + [anon_sym_u128] = ACTIONS(1267), + [anon_sym_i128] = ACTIONS(1267), + [anon_sym_isize] = ACTIONS(1267), + [anon_sym_usize] = ACTIONS(1267), + [anon_sym_f32] = ACTIONS(1267), + [anon_sym_f64] = ACTIONS(1267), + [anon_sym_bool] = ACTIONS(1267), + [anon_sym_str] = ACTIONS(1267), + [anon_sym_char] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_SLASH] = ACTIONS(1267), + [anon_sym_PERCENT] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(1267), + [anon_sym_PIPE] = ACTIONS(1267), + [anon_sym_AMP_AMP] = ACTIONS(1265), + [anon_sym_PIPE_PIPE] = ACTIONS(1265), + [anon_sym_LT_LT] = ACTIONS(1267), + [anon_sym_GT_GT] = ACTIONS(1267), + [anon_sym_PLUS_EQ] = ACTIONS(1265), + [anon_sym_DASH_EQ] = ACTIONS(1265), + [anon_sym_STAR_EQ] = ACTIONS(1265), + [anon_sym_SLASH_EQ] = ACTIONS(1265), + [anon_sym_PERCENT_EQ] = ACTIONS(1265), + [anon_sym_CARET_EQ] = ACTIONS(1265), + [anon_sym_AMP_EQ] = ACTIONS(1265), + [anon_sym_PIPE_EQ] = ACTIONS(1265), + [anon_sym_LT_LT_EQ] = ACTIONS(1265), + [anon_sym_GT_GT_EQ] = ACTIONS(1265), + [anon_sym_EQ] = ACTIONS(1267), + [anon_sym_EQ_EQ] = ACTIONS(1265), + [anon_sym_BANG_EQ] = ACTIONS(1265), + [anon_sym_GT] = ACTIONS(1267), + [anon_sym_LT] = ACTIONS(1267), + [anon_sym_GT_EQ] = ACTIONS(1265), + [anon_sym_LT_EQ] = ACTIONS(1265), + [anon_sym__] = ACTIONS(1267), + [anon_sym_DOT] = ACTIONS(1267), + [anon_sym_DOT_DOT] = ACTIONS(1267), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1265), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1265), + [anon_sym_COLON_COLON] = ACTIONS(1265), + [anon_sym_POUND] = ACTIONS(1265), + [anon_sym_as] = ACTIONS(1267), + [anon_sym_const] = ACTIONS(1267), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_union] = ACTIONS(1267), + [anon_sym_ref] = ACTIONS(1267), + [sym_mutable_specifier] = ACTIONS(1267), + [sym_integer_literal] = ACTIONS(1265), + [aux_sym_string_literal_token1] = ACTIONS(1265), + [sym_char_literal] = ACTIONS(1265), + [anon_sym_true] = ACTIONS(1267), + [anon_sym_false] = ACTIONS(1267), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1267), + [sym_super] = ACTIONS(1267), + [sym_crate] = ACTIONS(1267), + [sym_metavariable] = ACTIONS(1265), + [sym__raw_string_literal_start] = ACTIONS(1265), + [sym_float_literal] = ACTIONS(1265), }, [465] = { [sym_line_comment] = STATE(465), [sym_block_comment] = STATE(465), - [sym_identifier] = ACTIONS(1384), - [anon_sym_LPAREN] = ACTIONS(1382), - [anon_sym_LBRACK] = ACTIONS(1382), - [anon_sym_RBRACE] = ACTIONS(1382), - [anon_sym_PLUS] = ACTIONS(1384), - [anon_sym_STAR] = ACTIONS(1384), - [anon_sym_QMARK] = 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_DASH] = ACTIONS(1384), - [anon_sym_SLASH] = ACTIONS(1384), - [anon_sym_PERCENT] = ACTIONS(1384), - [anon_sym_CARET] = ACTIONS(1384), - [anon_sym_AMP] = ACTIONS(1384), - [anon_sym_PIPE] = ACTIONS(1384), - [anon_sym_AMP_AMP] = ACTIONS(1382), - [anon_sym_PIPE_PIPE] = ACTIONS(1382), - [anon_sym_LT_LT] = ACTIONS(1384), - [anon_sym_GT_GT] = ACTIONS(1384), - [anon_sym_PLUS_EQ] = ACTIONS(1382), - [anon_sym_DASH_EQ] = ACTIONS(1382), - [anon_sym_STAR_EQ] = ACTIONS(1382), - [anon_sym_SLASH_EQ] = ACTIONS(1382), - [anon_sym_PERCENT_EQ] = ACTIONS(1382), - [anon_sym_CARET_EQ] = ACTIONS(1382), - [anon_sym_AMP_EQ] = ACTIONS(1382), - [anon_sym_PIPE_EQ] = ACTIONS(1382), - [anon_sym_LT_LT_EQ] = ACTIONS(1382), - [anon_sym_GT_GT_EQ] = ACTIONS(1382), - [anon_sym_EQ] = ACTIONS(1384), - [anon_sym_EQ_EQ] = ACTIONS(1382), - [anon_sym_BANG_EQ] = ACTIONS(1382), - [anon_sym_GT] = ACTIONS(1384), - [anon_sym_LT] = ACTIONS(1384), - [anon_sym_GT_EQ] = ACTIONS(1382), - [anon_sym_LT_EQ] = ACTIONS(1382), - [anon_sym__] = ACTIONS(1384), - [anon_sym_DOT] = ACTIONS(1384), - [anon_sym_DOT_DOT] = ACTIONS(1384), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1382), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1382), - [anon_sym_COMMA] = ACTIONS(1382), - [anon_sym_COLON_COLON] = ACTIONS(1382), - [anon_sym_POUND] = ACTIONS(1382), - [anon_sym_as] = ACTIONS(1384), - [anon_sym_const] = ACTIONS(1384), - [anon_sym_default] = ACTIONS(1384), - [anon_sym_union] = ACTIONS(1384), - [anon_sym_ref] = ACTIONS(1384), - [sym_mutable_specifier] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1384), - [sym_super] = ACTIONS(1384), - [sym_crate] = ACTIONS(1384), - [sym_metavariable] = ACTIONS(1382), - [sym__raw_string_literal_start] = ACTIONS(1382), - [sym_float_literal] = ACTIONS(1382), + [sym_identifier] = ACTIONS(1331), + [anon_sym_LPAREN] = ACTIONS(1329), + [anon_sym_LBRACK] = ACTIONS(1329), + [anon_sym_RBRACE] = ACTIONS(1329), + [anon_sym_COMMA] = ACTIONS(1329), + [anon_sym_PLUS] = ACTIONS(1331), + [anon_sym_STAR] = ACTIONS(1331), + [anon_sym_QMARK] = ACTIONS(1329), + [anon_sym_u8] = ACTIONS(1331), + [anon_sym_i8] = ACTIONS(1331), + [anon_sym_u16] = ACTIONS(1331), + [anon_sym_i16] = ACTIONS(1331), + [anon_sym_u32] = ACTIONS(1331), + [anon_sym_i32] = ACTIONS(1331), + [anon_sym_u64] = ACTIONS(1331), + [anon_sym_i64] = ACTIONS(1331), + [anon_sym_u128] = ACTIONS(1331), + [anon_sym_i128] = ACTIONS(1331), + [anon_sym_isize] = ACTIONS(1331), + [anon_sym_usize] = ACTIONS(1331), + [anon_sym_f32] = ACTIONS(1331), + [anon_sym_f64] = ACTIONS(1331), + [anon_sym_bool] = ACTIONS(1331), + [anon_sym_str] = ACTIONS(1331), + [anon_sym_char] = ACTIONS(1331), + [anon_sym_DASH] = ACTIONS(1331), + [anon_sym_SLASH] = ACTIONS(1331), + [anon_sym_PERCENT] = ACTIONS(1331), + [anon_sym_CARET] = ACTIONS(1331), + [anon_sym_AMP] = ACTIONS(1331), + [anon_sym_PIPE] = ACTIONS(1331), + [anon_sym_AMP_AMP] = ACTIONS(1329), + [anon_sym_PIPE_PIPE] = ACTIONS(1329), + [anon_sym_LT_LT] = ACTIONS(1331), + [anon_sym_GT_GT] = ACTIONS(1331), + [anon_sym_PLUS_EQ] = ACTIONS(1329), + [anon_sym_DASH_EQ] = ACTIONS(1329), + [anon_sym_STAR_EQ] = ACTIONS(1329), + [anon_sym_SLASH_EQ] = ACTIONS(1329), + [anon_sym_PERCENT_EQ] = ACTIONS(1329), + [anon_sym_CARET_EQ] = ACTIONS(1329), + [anon_sym_AMP_EQ] = ACTIONS(1329), + [anon_sym_PIPE_EQ] = ACTIONS(1329), + [anon_sym_LT_LT_EQ] = ACTIONS(1329), + [anon_sym_GT_GT_EQ] = ACTIONS(1329), + [anon_sym_EQ] = ACTIONS(1331), + [anon_sym_EQ_EQ] = ACTIONS(1329), + [anon_sym_BANG_EQ] = ACTIONS(1329), + [anon_sym_GT] = ACTIONS(1331), + [anon_sym_LT] = ACTIONS(1331), + [anon_sym_GT_EQ] = ACTIONS(1329), + [anon_sym_LT_EQ] = ACTIONS(1329), + [anon_sym__] = ACTIONS(1331), + [anon_sym_DOT] = ACTIONS(1331), + [anon_sym_DOT_DOT] = ACTIONS(1331), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1329), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1329), + [anon_sym_COLON_COLON] = ACTIONS(1329), + [anon_sym_POUND] = ACTIONS(1329), + [anon_sym_as] = ACTIONS(1331), + [anon_sym_const] = ACTIONS(1331), + [anon_sym_default] = ACTIONS(1331), + [anon_sym_union] = ACTIONS(1331), + [anon_sym_ref] = ACTIONS(1331), + [sym_mutable_specifier] = ACTIONS(1331), + [sym_integer_literal] = ACTIONS(1329), + [aux_sym_string_literal_token1] = ACTIONS(1329), + [sym_char_literal] = ACTIONS(1329), + [anon_sym_true] = ACTIONS(1331), + [anon_sym_false] = ACTIONS(1331), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1331), + [sym_super] = ACTIONS(1331), + [sym_crate] = ACTIONS(1331), + [sym_metavariable] = ACTIONS(1329), + [sym__raw_string_literal_start] = ACTIONS(1329), + [sym_float_literal] = ACTIONS(1329), }, [466] = { + [sym_empty_statement] = STATE(1250), + [sym_macro_rules] = STATE(1250), + [sym_macro_definition] = STATE(1250), + [sym_attribute_item] = STATE(1250), + [sym_inner_attribute_item] = STATE(1250), + [sym_mod_item] = STATE(1250), + [sym_foreign_mod_item] = STATE(1250), + [sym_struct_item] = STATE(1250), + [sym_union_item] = STATE(1250), + [sym_enum_item] = STATE(1250), + [sym_extern_crate_declaration] = STATE(1250), + [sym_const_item] = STATE(1250), + [sym_static_item] = STATE(1250), + [sym_type_item] = STATE(1250), + [sym_function_item] = STATE(1250), + [sym_function_signature_item] = STATE(1250), + [sym_function_modifiers] = STATE(3690), + [sym_impl_item] = STATE(1250), + [sym_trait_item] = STATE(1250), + [sym_associated_type] = STATE(1250), + [sym_let_declaration] = STATE(1250), + [sym_use_declaration] = STATE(1250), + [sym_extern_modifier] = STATE(2166), + [sym_visibility_modifier] = STATE(1965), + [sym_bracketed_type] = STATE(3408), + [sym_generic_type_with_turbofish] = STATE(3436), + [sym_macro_invocation] = STATE(1250), + [sym_scoped_identifier] = STATE(3322), [sym_line_comment] = STATE(466), [sym_block_comment] = STATE(466), - [sym_identifier] = ACTIONS(1422), - [anon_sym_LPAREN] = ACTIONS(1420), - [anon_sym_LBRACK] = ACTIONS(1420), - [anon_sym_RBRACE] = ACTIONS(1420), - [anon_sym_PLUS] = ACTIONS(1422), - [anon_sym_STAR] = ACTIONS(1422), - [anon_sym_QMARK] = 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_DASH] = ACTIONS(1422), - [anon_sym_SLASH] = ACTIONS(1422), - [anon_sym_PERCENT] = ACTIONS(1422), - [anon_sym_CARET] = ACTIONS(1422), - [anon_sym_AMP] = ACTIONS(1422), - [anon_sym_PIPE] = ACTIONS(1422), - [anon_sym_AMP_AMP] = ACTIONS(1420), - [anon_sym_PIPE_PIPE] = ACTIONS(1420), - [anon_sym_LT_LT] = ACTIONS(1422), - [anon_sym_GT_GT] = ACTIONS(1422), - [anon_sym_PLUS_EQ] = ACTIONS(1420), - [anon_sym_DASH_EQ] = ACTIONS(1420), - [anon_sym_STAR_EQ] = ACTIONS(1420), - [anon_sym_SLASH_EQ] = ACTIONS(1420), - [anon_sym_PERCENT_EQ] = ACTIONS(1420), - [anon_sym_CARET_EQ] = ACTIONS(1420), - [anon_sym_AMP_EQ] = ACTIONS(1420), - [anon_sym_PIPE_EQ] = ACTIONS(1420), - [anon_sym_LT_LT_EQ] = ACTIONS(1420), - [anon_sym_GT_GT_EQ] = ACTIONS(1420), - [anon_sym_EQ] = ACTIONS(1422), - [anon_sym_EQ_EQ] = ACTIONS(1420), - [anon_sym_BANG_EQ] = ACTIONS(1420), - [anon_sym_GT] = ACTIONS(1422), - [anon_sym_LT] = ACTIONS(1422), - [anon_sym_GT_EQ] = ACTIONS(1420), - [anon_sym_LT_EQ] = ACTIONS(1420), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1422), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1420), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1420), - [anon_sym_COMMA] = ACTIONS(1420), - [anon_sym_COLON_COLON] = ACTIONS(1420), - [anon_sym_POUND] = ACTIONS(1420), - [anon_sym_as] = ACTIONS(1422), - [anon_sym_const] = ACTIONS(1422), - [anon_sym_default] = ACTIONS(1422), - [anon_sym_union] = ACTIONS(1422), - [anon_sym_ref] = ACTIONS(1422), - [sym_mutable_specifier] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1422), - [sym_super] = ACTIONS(1422), - [sym_crate] = ACTIONS(1422), - [sym_metavariable] = ACTIONS(1420), - [sym__raw_string_literal_start] = ACTIONS(1420), - [sym_float_literal] = ACTIONS(1420), + [aux_sym_declaration_list_repeat1] = STATE(484), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(1665), + [anon_sym_SEMI] = ACTIONS(1667), + [anon_sym_macro_rules_BANG] = ACTIONS(1669), + [anon_sym_RBRACE] = ACTIONS(1723), + [anon_sym_macro] = ACTIONS(1673), + [anon_sym_u8] = ACTIONS(1675), + [anon_sym_i8] = ACTIONS(1675), + [anon_sym_u16] = ACTIONS(1675), + [anon_sym_i16] = ACTIONS(1675), + [anon_sym_u32] = ACTIONS(1675), + [anon_sym_i32] = ACTIONS(1675), + [anon_sym_u64] = ACTIONS(1675), + [anon_sym_i64] = ACTIONS(1675), + [anon_sym_u128] = ACTIONS(1675), + [anon_sym_i128] = ACTIONS(1675), + [anon_sym_isize] = ACTIONS(1675), + [anon_sym_usize] = ACTIONS(1675), + [anon_sym_f32] = ACTIONS(1675), + [anon_sym_f64] = ACTIONS(1675), + [anon_sym_bool] = ACTIONS(1675), + [anon_sym_str] = ACTIONS(1675), + [anon_sym_char] = ACTIONS(1675), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1677), + [anon_sym_POUND] = ACTIONS(1679), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1681), + [anon_sym_default] = ACTIONS(1683), + [anon_sym_enum] = ACTIONS(1685), + [anon_sym_fn] = ACTIONS(1687), + [anon_sym_impl] = ACTIONS(1689), + [anon_sym_let] = ACTIONS(1691), + [anon_sym_mod] = ACTIONS(1693), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_static] = ACTIONS(1695), + [anon_sym_struct] = ACTIONS(1697), + [anon_sym_trait] = ACTIONS(1699), + [anon_sym_type] = ACTIONS(1701), + [anon_sym_union] = ACTIONS(1703), + [anon_sym_unsafe] = ACTIONS(1705), + [anon_sym_use] = ACTIONS(1707), + [anon_sym_extern] = ACTIONS(1709), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1711), + [sym_super] = ACTIONS(1711), + [sym_crate] = ACTIONS(1713), + [sym_metavariable] = ACTIONS(1715), }, [467] = { + [sym_empty_statement] = STATE(1250), + [sym_macro_rules] = STATE(1250), + [sym_macro_definition] = STATE(1250), + [sym_attribute_item] = STATE(1250), + [sym_inner_attribute_item] = STATE(1250), + [sym_mod_item] = STATE(1250), + [sym_foreign_mod_item] = STATE(1250), + [sym_struct_item] = STATE(1250), + [sym_union_item] = STATE(1250), + [sym_enum_item] = STATE(1250), + [sym_extern_crate_declaration] = STATE(1250), + [sym_const_item] = STATE(1250), + [sym_static_item] = STATE(1250), + [sym_type_item] = STATE(1250), + [sym_function_item] = STATE(1250), + [sym_function_signature_item] = STATE(1250), + [sym_function_modifiers] = STATE(3690), + [sym_impl_item] = STATE(1250), + [sym_trait_item] = STATE(1250), + [sym_associated_type] = STATE(1250), + [sym_let_declaration] = STATE(1250), + [sym_use_declaration] = STATE(1250), + [sym_extern_modifier] = STATE(2166), + [sym_visibility_modifier] = STATE(1965), + [sym_bracketed_type] = STATE(3408), + [sym_generic_type_with_turbofish] = STATE(3436), + [sym_macro_invocation] = STATE(1250), + [sym_scoped_identifier] = STATE(3322), [sym_line_comment] = STATE(467), [sym_block_comment] = STATE(467), - [sym_identifier] = ACTIONS(1452), - [anon_sym_LPAREN] = ACTIONS(1450), - [anon_sym_LBRACK] = ACTIONS(1450), - [anon_sym_RBRACE] = ACTIONS(1450), - [anon_sym_PLUS] = ACTIONS(1452), - [anon_sym_STAR] = ACTIONS(1452), - [anon_sym_QMARK] = ACTIONS(1450), - [anon_sym_u8] = ACTIONS(1452), - [anon_sym_i8] = ACTIONS(1452), - [anon_sym_u16] = ACTIONS(1452), - [anon_sym_i16] = ACTIONS(1452), - [anon_sym_u32] = ACTIONS(1452), - [anon_sym_i32] = ACTIONS(1452), - [anon_sym_u64] = ACTIONS(1452), - [anon_sym_i64] = ACTIONS(1452), - [anon_sym_u128] = ACTIONS(1452), - [anon_sym_i128] = ACTIONS(1452), - [anon_sym_isize] = ACTIONS(1452), - [anon_sym_usize] = ACTIONS(1452), - [anon_sym_f32] = ACTIONS(1452), - [anon_sym_f64] = ACTIONS(1452), - [anon_sym_bool] = ACTIONS(1452), - [anon_sym_str] = ACTIONS(1452), - [anon_sym_char] = ACTIONS(1452), - [anon_sym_DASH] = ACTIONS(1452), - [anon_sym_SLASH] = ACTIONS(1452), - [anon_sym_PERCENT] = ACTIONS(1452), - [anon_sym_CARET] = ACTIONS(1452), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_PIPE] = ACTIONS(1452), - [anon_sym_AMP_AMP] = ACTIONS(1450), - [anon_sym_PIPE_PIPE] = ACTIONS(1450), - [anon_sym_LT_LT] = ACTIONS(1452), - [anon_sym_GT_GT] = ACTIONS(1452), - [anon_sym_PLUS_EQ] = ACTIONS(1450), - [anon_sym_DASH_EQ] = ACTIONS(1450), - [anon_sym_STAR_EQ] = ACTIONS(1450), - [anon_sym_SLASH_EQ] = ACTIONS(1450), - [anon_sym_PERCENT_EQ] = ACTIONS(1450), - [anon_sym_CARET_EQ] = ACTIONS(1450), - [anon_sym_AMP_EQ] = ACTIONS(1450), - [anon_sym_PIPE_EQ] = ACTIONS(1450), - [anon_sym_LT_LT_EQ] = ACTIONS(1450), - [anon_sym_GT_GT_EQ] = ACTIONS(1450), - [anon_sym_EQ] = ACTIONS(1452), - [anon_sym_EQ_EQ] = ACTIONS(1450), - [anon_sym_BANG_EQ] = ACTIONS(1450), - [anon_sym_GT] = ACTIONS(1452), - [anon_sym_LT] = ACTIONS(1452), - [anon_sym_GT_EQ] = ACTIONS(1450), - [anon_sym_LT_EQ] = ACTIONS(1450), - [anon_sym__] = ACTIONS(1452), - [anon_sym_DOT] = ACTIONS(1452), - [anon_sym_DOT_DOT] = ACTIONS(1452), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1450), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1450), - [anon_sym_COMMA] = ACTIONS(1450), - [anon_sym_COLON_COLON] = ACTIONS(1450), - [anon_sym_POUND] = ACTIONS(1450), - [anon_sym_as] = ACTIONS(1452), - [anon_sym_const] = ACTIONS(1452), - [anon_sym_default] = ACTIONS(1452), - [anon_sym_union] = ACTIONS(1452), - [anon_sym_ref] = ACTIONS(1452), - [sym_mutable_specifier] = ACTIONS(1452), - [sym_integer_literal] = ACTIONS(1450), - [aux_sym_string_literal_token1] = ACTIONS(1450), - [sym_char_literal] = ACTIONS(1450), - [anon_sym_true] = ACTIONS(1452), - [anon_sym_false] = ACTIONS(1452), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1452), - [sym_super] = ACTIONS(1452), - [sym_crate] = ACTIONS(1452), - [sym_metavariable] = ACTIONS(1450), - [sym__raw_string_literal_start] = ACTIONS(1450), - [sym_float_literal] = ACTIONS(1450), + [aux_sym_declaration_list_repeat1] = STATE(466), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(1665), + [anon_sym_SEMI] = ACTIONS(1667), + [anon_sym_macro_rules_BANG] = ACTIONS(1669), + [anon_sym_RBRACE] = ACTIONS(1725), + [anon_sym_macro] = ACTIONS(1673), + [anon_sym_u8] = ACTIONS(1675), + [anon_sym_i8] = ACTIONS(1675), + [anon_sym_u16] = ACTIONS(1675), + [anon_sym_i16] = ACTIONS(1675), + [anon_sym_u32] = ACTIONS(1675), + [anon_sym_i32] = ACTIONS(1675), + [anon_sym_u64] = ACTIONS(1675), + [anon_sym_i64] = ACTIONS(1675), + [anon_sym_u128] = ACTIONS(1675), + [anon_sym_i128] = ACTIONS(1675), + [anon_sym_isize] = ACTIONS(1675), + [anon_sym_usize] = ACTIONS(1675), + [anon_sym_f32] = ACTIONS(1675), + [anon_sym_f64] = ACTIONS(1675), + [anon_sym_bool] = ACTIONS(1675), + [anon_sym_str] = ACTIONS(1675), + [anon_sym_char] = ACTIONS(1675), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1677), + [anon_sym_POUND] = ACTIONS(1679), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1681), + [anon_sym_default] = ACTIONS(1683), + [anon_sym_enum] = ACTIONS(1685), + [anon_sym_fn] = ACTIONS(1687), + [anon_sym_impl] = ACTIONS(1689), + [anon_sym_let] = ACTIONS(1691), + [anon_sym_mod] = ACTIONS(1693), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_static] = ACTIONS(1695), + [anon_sym_struct] = ACTIONS(1697), + [anon_sym_trait] = ACTIONS(1699), + [anon_sym_type] = ACTIONS(1701), + [anon_sym_union] = ACTIONS(1703), + [anon_sym_unsafe] = ACTIONS(1705), + [anon_sym_use] = ACTIONS(1707), + [anon_sym_extern] = ACTIONS(1709), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1711), + [sym_super] = ACTIONS(1711), + [sym_crate] = ACTIONS(1713), + [sym_metavariable] = ACTIONS(1715), }, [468] = { [sym_line_comment] = STATE(468), [sym_block_comment] = STATE(468), - [sym_identifier] = ACTIONS(1380), - [anon_sym_LPAREN] = ACTIONS(1378), - [anon_sym_LBRACK] = ACTIONS(1378), - [anon_sym_RBRACE] = ACTIONS(1378), - [anon_sym_PLUS] = ACTIONS(1380), - [anon_sym_STAR] = ACTIONS(1380), - [anon_sym_QMARK] = 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_DASH] = ACTIONS(1380), - [anon_sym_SLASH] = ACTIONS(1380), - [anon_sym_PERCENT] = ACTIONS(1380), - [anon_sym_CARET] = ACTIONS(1380), - [anon_sym_AMP] = ACTIONS(1380), - [anon_sym_PIPE] = ACTIONS(1380), - [anon_sym_AMP_AMP] = ACTIONS(1378), - [anon_sym_PIPE_PIPE] = ACTIONS(1378), - [anon_sym_LT_LT] = ACTIONS(1380), - [anon_sym_GT_GT] = ACTIONS(1380), - [anon_sym_PLUS_EQ] = ACTIONS(1378), - [anon_sym_DASH_EQ] = ACTIONS(1378), - [anon_sym_STAR_EQ] = ACTIONS(1378), - [anon_sym_SLASH_EQ] = ACTIONS(1378), - [anon_sym_PERCENT_EQ] = ACTIONS(1378), - [anon_sym_CARET_EQ] = ACTIONS(1378), - [anon_sym_AMP_EQ] = ACTIONS(1378), - [anon_sym_PIPE_EQ] = ACTIONS(1378), - [anon_sym_LT_LT_EQ] = ACTIONS(1378), - [anon_sym_GT_GT_EQ] = ACTIONS(1378), - [anon_sym_EQ] = ACTIONS(1380), - [anon_sym_EQ_EQ] = ACTIONS(1378), - [anon_sym_BANG_EQ] = ACTIONS(1378), - [anon_sym_GT] = ACTIONS(1380), - [anon_sym_LT] = ACTIONS(1380), - [anon_sym_GT_EQ] = ACTIONS(1378), - [anon_sym_LT_EQ] = ACTIONS(1378), - [anon_sym__] = ACTIONS(1380), - [anon_sym_DOT] = ACTIONS(1380), - [anon_sym_DOT_DOT] = ACTIONS(1380), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1378), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1378), - [anon_sym_COMMA] = ACTIONS(1378), - [anon_sym_COLON_COLON] = ACTIONS(1378), - [anon_sym_POUND] = ACTIONS(1378), - [anon_sym_as] = ACTIONS(1380), - [anon_sym_const] = ACTIONS(1380), - [anon_sym_default] = ACTIONS(1380), - [anon_sym_union] = ACTIONS(1380), - [anon_sym_ref] = ACTIONS(1380), - [sym_mutable_specifier] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1380), - [sym_super] = ACTIONS(1380), - [sym_crate] = ACTIONS(1380), - [sym_metavariable] = ACTIONS(1378), - [sym__raw_string_literal_start] = ACTIONS(1378), - [sym_float_literal] = ACTIONS(1378), + [sym_identifier] = ACTIONS(1347), + [anon_sym_LPAREN] = ACTIONS(1345), + [anon_sym_LBRACK] = ACTIONS(1345), + [anon_sym_RBRACE] = ACTIONS(1345), + [anon_sym_COMMA] = ACTIONS(1345), + [anon_sym_PLUS] = ACTIONS(1347), + [anon_sym_STAR] = ACTIONS(1347), + [anon_sym_QMARK] = ACTIONS(1345), + [anon_sym_u8] = ACTIONS(1347), + [anon_sym_i8] = ACTIONS(1347), + [anon_sym_u16] = ACTIONS(1347), + [anon_sym_i16] = ACTIONS(1347), + [anon_sym_u32] = ACTIONS(1347), + [anon_sym_i32] = ACTIONS(1347), + [anon_sym_u64] = ACTIONS(1347), + [anon_sym_i64] = ACTIONS(1347), + [anon_sym_u128] = ACTIONS(1347), + [anon_sym_i128] = ACTIONS(1347), + [anon_sym_isize] = ACTIONS(1347), + [anon_sym_usize] = ACTIONS(1347), + [anon_sym_f32] = ACTIONS(1347), + [anon_sym_f64] = ACTIONS(1347), + [anon_sym_bool] = ACTIONS(1347), + [anon_sym_str] = ACTIONS(1347), + [anon_sym_char] = ACTIONS(1347), + [anon_sym_DASH] = ACTIONS(1347), + [anon_sym_SLASH] = ACTIONS(1347), + [anon_sym_PERCENT] = ACTIONS(1347), + [anon_sym_CARET] = ACTIONS(1347), + [anon_sym_AMP] = ACTIONS(1347), + [anon_sym_PIPE] = ACTIONS(1347), + [anon_sym_AMP_AMP] = ACTIONS(1345), + [anon_sym_PIPE_PIPE] = ACTIONS(1345), + [anon_sym_LT_LT] = ACTIONS(1347), + [anon_sym_GT_GT] = ACTIONS(1347), + [anon_sym_PLUS_EQ] = ACTIONS(1345), + [anon_sym_DASH_EQ] = ACTIONS(1345), + [anon_sym_STAR_EQ] = ACTIONS(1345), + [anon_sym_SLASH_EQ] = ACTIONS(1345), + [anon_sym_PERCENT_EQ] = ACTIONS(1345), + [anon_sym_CARET_EQ] = ACTIONS(1345), + [anon_sym_AMP_EQ] = ACTIONS(1345), + [anon_sym_PIPE_EQ] = ACTIONS(1345), + [anon_sym_LT_LT_EQ] = ACTIONS(1345), + [anon_sym_GT_GT_EQ] = ACTIONS(1345), + [anon_sym_EQ] = ACTIONS(1347), + [anon_sym_EQ_EQ] = ACTIONS(1345), + [anon_sym_BANG_EQ] = ACTIONS(1345), + [anon_sym_GT] = ACTIONS(1347), + [anon_sym_LT] = ACTIONS(1347), + [anon_sym_GT_EQ] = ACTIONS(1345), + [anon_sym_LT_EQ] = ACTIONS(1345), + [anon_sym__] = ACTIONS(1347), + [anon_sym_DOT] = ACTIONS(1347), + [anon_sym_DOT_DOT] = ACTIONS(1347), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1345), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1345), + [anon_sym_COLON_COLON] = ACTIONS(1345), + [anon_sym_POUND] = ACTIONS(1345), + [anon_sym_as] = ACTIONS(1347), + [anon_sym_const] = ACTIONS(1347), + [anon_sym_default] = ACTIONS(1347), + [anon_sym_union] = ACTIONS(1347), + [anon_sym_ref] = ACTIONS(1347), + [sym_mutable_specifier] = ACTIONS(1347), + [sym_integer_literal] = ACTIONS(1345), + [aux_sym_string_literal_token1] = ACTIONS(1345), + [sym_char_literal] = ACTIONS(1345), + [anon_sym_true] = ACTIONS(1347), + [anon_sym_false] = ACTIONS(1347), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1347), + [sym_super] = ACTIONS(1347), + [sym_crate] = ACTIONS(1347), + [sym_metavariable] = ACTIONS(1345), + [sym__raw_string_literal_start] = ACTIONS(1345), + [sym_float_literal] = ACTIONS(1345), }, [469] = { [sym_line_comment] = STATE(469), [sym_block_comment] = STATE(469), - [sym_identifier] = ACTIONS(1352), - [anon_sym_LPAREN] = ACTIONS(1350), - [anon_sym_LBRACK] = ACTIONS(1350), - [anon_sym_RBRACE] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1352), - [anon_sym_STAR] = ACTIONS(1352), - [anon_sym_QMARK] = 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_DASH] = ACTIONS(1352), - [anon_sym_SLASH] = ACTIONS(1352), - [anon_sym_PERCENT] = ACTIONS(1352), - [anon_sym_CARET] = ACTIONS(1352), - [anon_sym_AMP] = ACTIONS(1352), - [anon_sym_PIPE] = ACTIONS(1352), - [anon_sym_AMP_AMP] = ACTIONS(1350), - [anon_sym_PIPE_PIPE] = ACTIONS(1350), - [anon_sym_LT_LT] = ACTIONS(1352), - [anon_sym_GT_GT] = ACTIONS(1352), - [anon_sym_PLUS_EQ] = ACTIONS(1350), - [anon_sym_DASH_EQ] = ACTIONS(1350), - [anon_sym_STAR_EQ] = ACTIONS(1350), - [anon_sym_SLASH_EQ] = ACTIONS(1350), - [anon_sym_PERCENT_EQ] = ACTIONS(1350), - [anon_sym_CARET_EQ] = ACTIONS(1350), - [anon_sym_AMP_EQ] = ACTIONS(1350), - [anon_sym_PIPE_EQ] = ACTIONS(1350), - [anon_sym_LT_LT_EQ] = ACTIONS(1350), - [anon_sym_GT_GT_EQ] = ACTIONS(1350), - [anon_sym_EQ] = ACTIONS(1352), - [anon_sym_EQ_EQ] = ACTIONS(1350), - [anon_sym_BANG_EQ] = ACTIONS(1350), - [anon_sym_GT] = ACTIONS(1352), - [anon_sym_LT] = ACTIONS(1352), - [anon_sym_GT_EQ] = ACTIONS(1350), - [anon_sym_LT_EQ] = ACTIONS(1350), - [anon_sym__] = ACTIONS(1352), - [anon_sym_DOT] = ACTIONS(1352), - [anon_sym_DOT_DOT] = ACTIONS(1352), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1350), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1350), - [anon_sym_COMMA] = ACTIONS(1350), - [anon_sym_COLON_COLON] = ACTIONS(1350), - [anon_sym_POUND] = ACTIONS(1350), - [anon_sym_as] = ACTIONS(1352), - [anon_sym_const] = ACTIONS(1352), - [anon_sym_default] = ACTIONS(1352), - [anon_sym_union] = ACTIONS(1352), - [anon_sym_ref] = ACTIONS(1352), - [sym_mutable_specifier] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1352), - [sym_super] = ACTIONS(1352), - [sym_crate] = ACTIONS(1352), - [sym_metavariable] = ACTIONS(1350), - [sym__raw_string_literal_start] = ACTIONS(1350), - [sym_float_literal] = ACTIONS(1350), + [sym_identifier] = ACTIONS(1255), + [anon_sym_LPAREN] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1253), + [anon_sym_RBRACE] = ACTIONS(1253), + [anon_sym_COMMA] = ACTIONS(1253), + [anon_sym_PLUS] = ACTIONS(1255), + [anon_sym_STAR] = ACTIONS(1255), + [anon_sym_QMARK] = ACTIONS(1253), + [anon_sym_u8] = ACTIONS(1255), + [anon_sym_i8] = ACTIONS(1255), + [anon_sym_u16] = ACTIONS(1255), + [anon_sym_i16] = ACTIONS(1255), + [anon_sym_u32] = ACTIONS(1255), + [anon_sym_i32] = ACTIONS(1255), + [anon_sym_u64] = ACTIONS(1255), + [anon_sym_i64] = ACTIONS(1255), + [anon_sym_u128] = ACTIONS(1255), + [anon_sym_i128] = ACTIONS(1255), + [anon_sym_isize] = ACTIONS(1255), + [anon_sym_usize] = ACTIONS(1255), + [anon_sym_f32] = ACTIONS(1255), + [anon_sym_f64] = ACTIONS(1255), + [anon_sym_bool] = ACTIONS(1255), + [anon_sym_str] = ACTIONS(1255), + [anon_sym_char] = ACTIONS(1255), + [anon_sym_DASH] = ACTIONS(1255), + [anon_sym_SLASH] = ACTIONS(1255), + [anon_sym_PERCENT] = ACTIONS(1255), + [anon_sym_CARET] = ACTIONS(1255), + [anon_sym_AMP] = ACTIONS(1255), + [anon_sym_PIPE] = ACTIONS(1255), + [anon_sym_AMP_AMP] = ACTIONS(1253), + [anon_sym_PIPE_PIPE] = ACTIONS(1253), + [anon_sym_LT_LT] = ACTIONS(1255), + [anon_sym_GT_GT] = ACTIONS(1255), + [anon_sym_PLUS_EQ] = ACTIONS(1253), + [anon_sym_DASH_EQ] = ACTIONS(1253), + [anon_sym_STAR_EQ] = ACTIONS(1253), + [anon_sym_SLASH_EQ] = ACTIONS(1253), + [anon_sym_PERCENT_EQ] = ACTIONS(1253), + [anon_sym_CARET_EQ] = ACTIONS(1253), + [anon_sym_AMP_EQ] = ACTIONS(1253), + [anon_sym_PIPE_EQ] = ACTIONS(1253), + [anon_sym_LT_LT_EQ] = ACTIONS(1253), + [anon_sym_GT_GT_EQ] = ACTIONS(1253), + [anon_sym_EQ] = ACTIONS(1255), + [anon_sym_EQ_EQ] = ACTIONS(1253), + [anon_sym_BANG_EQ] = ACTIONS(1253), + [anon_sym_GT] = ACTIONS(1255), + [anon_sym_LT] = ACTIONS(1255), + [anon_sym_GT_EQ] = ACTIONS(1253), + [anon_sym_LT_EQ] = ACTIONS(1253), + [anon_sym__] = ACTIONS(1255), + [anon_sym_DOT] = ACTIONS(1255), + [anon_sym_DOT_DOT] = ACTIONS(1255), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1253), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1253), + [anon_sym_COLON_COLON] = ACTIONS(1253), + [anon_sym_POUND] = ACTIONS(1253), + [anon_sym_as] = ACTIONS(1255), + [anon_sym_const] = ACTIONS(1255), + [anon_sym_default] = ACTIONS(1255), + [anon_sym_union] = ACTIONS(1255), + [anon_sym_ref] = ACTIONS(1255), + [sym_mutable_specifier] = ACTIONS(1255), + [sym_integer_literal] = ACTIONS(1253), + [aux_sym_string_literal_token1] = ACTIONS(1253), + [sym_char_literal] = ACTIONS(1253), + [anon_sym_true] = ACTIONS(1255), + [anon_sym_false] = ACTIONS(1255), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1255), + [sym_super] = ACTIONS(1255), + [sym_crate] = ACTIONS(1255), + [sym_metavariable] = ACTIONS(1253), + [sym__raw_string_literal_start] = ACTIONS(1253), + [sym_float_literal] = ACTIONS(1253), }, [470] = { + [sym_attribute_item] = STATE(1515), + [sym_inner_attribute_item] = STATE(1515), + [sym_bracketed_type] = STATE(3618), + [sym_generic_type] = STATE(3491), + [sym_generic_type_with_turbofish] = STATE(3218), + [sym_macro_invocation] = STATE(2994), + [sym_scoped_identifier] = STATE(2165), + [sym_scoped_type_identifier] = STATE(2786), + [sym_match_arm] = STATE(1505), + [sym_last_match_arm] = STATE(3490), + [sym_match_pattern] = STATE(3700), + [sym_const_block] = STATE(2994), + [sym__pattern] = STATE(3082), + [sym_tuple_pattern] = STATE(2994), + [sym_slice_pattern] = STATE(2994), + [sym_tuple_struct_pattern] = STATE(2994), + [sym_struct_pattern] = STATE(2994), + [sym_remaining_field_pattern] = STATE(2994), + [sym_mut_pattern] = STATE(2994), + [sym_range_pattern] = STATE(2994), + [sym_ref_pattern] = STATE(2994), + [sym_captured_pattern] = STATE(2994), + [sym_reference_pattern] = STATE(2994), + [sym_or_pattern] = STATE(2994), + [sym__literal_pattern] = STATE(2380), + [sym_negative_literal] = STATE(2383), + [sym_string_literal] = STATE(2383), + [sym_raw_string_literal] = STATE(2383), + [sym_boolean_literal] = STATE(2383), [sym_line_comment] = STATE(470), [sym_block_comment] = STATE(470), - [sym_identifier] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(1390), - [anon_sym_LBRACK] = ACTIONS(1390), - [anon_sym_RBRACE] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1392), - [anon_sym_STAR] = ACTIONS(1392), - [anon_sym_QMARK] = 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_DASH] = ACTIONS(1392), - [anon_sym_SLASH] = ACTIONS(1392), - [anon_sym_PERCENT] = ACTIONS(1392), - [anon_sym_CARET] = ACTIONS(1392), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_PIPE] = ACTIONS(1392), - [anon_sym_AMP_AMP] = ACTIONS(1390), - [anon_sym_PIPE_PIPE] = ACTIONS(1390), - [anon_sym_LT_LT] = ACTIONS(1392), - [anon_sym_GT_GT] = ACTIONS(1392), - [anon_sym_PLUS_EQ] = ACTIONS(1390), - [anon_sym_DASH_EQ] = ACTIONS(1390), - [anon_sym_STAR_EQ] = ACTIONS(1390), - [anon_sym_SLASH_EQ] = ACTIONS(1390), - [anon_sym_PERCENT_EQ] = ACTIONS(1390), - [anon_sym_CARET_EQ] = ACTIONS(1390), - [anon_sym_AMP_EQ] = ACTIONS(1390), - [anon_sym_PIPE_EQ] = ACTIONS(1390), - [anon_sym_LT_LT_EQ] = ACTIONS(1390), - [anon_sym_GT_GT_EQ] = ACTIONS(1390), - [anon_sym_EQ] = ACTIONS(1392), - [anon_sym_EQ_EQ] = ACTIONS(1390), - [anon_sym_BANG_EQ] = ACTIONS(1390), - [anon_sym_GT] = ACTIONS(1392), - [anon_sym_LT] = ACTIONS(1392), - [anon_sym_GT_EQ] = ACTIONS(1390), - [anon_sym_LT_EQ] = ACTIONS(1390), - [anon_sym__] = ACTIONS(1392), - [anon_sym_DOT] = ACTIONS(1392), - [anon_sym_DOT_DOT] = ACTIONS(1392), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1390), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1390), - [anon_sym_COMMA] = ACTIONS(1390), - [anon_sym_COLON_COLON] = ACTIONS(1390), - [anon_sym_POUND] = ACTIONS(1390), - [anon_sym_as] = ACTIONS(1392), - [anon_sym_const] = ACTIONS(1392), - [anon_sym_default] = ACTIONS(1392), - [anon_sym_union] = ACTIONS(1392), - [anon_sym_ref] = ACTIONS(1392), - [sym_mutable_specifier] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1392), - [sym_super] = ACTIONS(1392), - [sym_crate] = ACTIONS(1392), - [sym_metavariable] = ACTIONS(1390), - [sym__raw_string_literal_start] = ACTIONS(1390), - [sym_float_literal] = ACTIONS(1390), + [aux_sym_match_block_repeat1] = STATE(673), + [aux_sym_match_arm_repeat1] = STATE(780), + [sym_identifier] = ACTIONS(1621), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACK] = ACTIONS(1625), + [anon_sym_RBRACE] = ACTIONS(1727), + [anon_sym_u8] = ACTIONS(1629), + [anon_sym_i8] = ACTIONS(1629), + [anon_sym_u16] = ACTIONS(1629), + [anon_sym_i16] = ACTIONS(1629), + [anon_sym_u32] = ACTIONS(1629), + [anon_sym_i32] = ACTIONS(1629), + [anon_sym_u64] = ACTIONS(1629), + [anon_sym_i64] = ACTIONS(1629), + [anon_sym_u128] = ACTIONS(1629), + [anon_sym_i128] = ACTIONS(1629), + [anon_sym_isize] = ACTIONS(1629), + [anon_sym_usize] = ACTIONS(1629), + [anon_sym_f32] = ACTIONS(1629), + [anon_sym_f64] = ACTIONS(1629), + [anon_sym_bool] = ACTIONS(1629), + [anon_sym_str] = ACTIONS(1629), + [anon_sym_char] = ACTIONS(1629), + [anon_sym_DASH] = ACTIONS(1631), + [anon_sym_AMP] = ACTIONS(1633), + [anon_sym_PIPE] = ACTIONS(1635), + [anon_sym_LT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1637), + [anon_sym_DOT_DOT] = ACTIONS(1639), + [anon_sym_COLON_COLON] = ACTIONS(1641), + [anon_sym_POUND] = ACTIONS(1643), + [anon_sym_const] = ACTIONS(1645), + [anon_sym_default] = ACTIONS(1647), + [anon_sym_union] = ACTIONS(1647), + [anon_sym_ref] = ACTIONS(1649), + [sym_mutable_specifier] = ACTIONS(1651), + [sym_integer_literal] = ACTIONS(1653), + [aux_sym_string_literal_token1] = ACTIONS(1655), + [sym_char_literal] = ACTIONS(1653), + [anon_sym_true] = ACTIONS(1657), + [anon_sym_false] = ACTIONS(1657), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1659), + [sym_super] = ACTIONS(1659), + [sym_crate] = ACTIONS(1659), + [sym_metavariable] = ACTIONS(1661), + [sym__raw_string_literal_start] = ACTIONS(1663), + [sym_float_literal] = ACTIONS(1653), }, [471] = { [sym_line_comment] = STATE(471), [sym_block_comment] = STATE(471), - [sym_identifier] = ACTIONS(1396), - [anon_sym_LPAREN] = ACTIONS(1394), - [anon_sym_LBRACK] = ACTIONS(1394), - [anon_sym_RBRACE] = ACTIONS(1394), - [anon_sym_PLUS] = ACTIONS(1396), - [anon_sym_STAR] = ACTIONS(1396), - [anon_sym_QMARK] = 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_DASH] = ACTIONS(1396), - [anon_sym_SLASH] = ACTIONS(1396), - [anon_sym_PERCENT] = ACTIONS(1396), - [anon_sym_CARET] = ACTIONS(1396), - [anon_sym_AMP] = ACTIONS(1396), - [anon_sym_PIPE] = ACTIONS(1396), - [anon_sym_AMP_AMP] = ACTIONS(1394), - [anon_sym_PIPE_PIPE] = ACTIONS(1394), - [anon_sym_LT_LT] = ACTIONS(1396), - [anon_sym_GT_GT] = ACTIONS(1396), - [anon_sym_PLUS_EQ] = ACTIONS(1394), - [anon_sym_DASH_EQ] = ACTIONS(1394), - [anon_sym_STAR_EQ] = ACTIONS(1394), - [anon_sym_SLASH_EQ] = ACTIONS(1394), - [anon_sym_PERCENT_EQ] = ACTIONS(1394), - [anon_sym_CARET_EQ] = ACTIONS(1394), - [anon_sym_AMP_EQ] = ACTIONS(1394), - [anon_sym_PIPE_EQ] = ACTIONS(1394), - [anon_sym_LT_LT_EQ] = ACTIONS(1394), - [anon_sym_GT_GT_EQ] = ACTIONS(1394), - [anon_sym_EQ] = ACTIONS(1396), - [anon_sym_EQ_EQ] = ACTIONS(1394), - [anon_sym_BANG_EQ] = ACTIONS(1394), - [anon_sym_GT] = ACTIONS(1396), - [anon_sym_LT] = ACTIONS(1396), - [anon_sym_GT_EQ] = ACTIONS(1394), - [anon_sym_LT_EQ] = ACTIONS(1394), - [anon_sym__] = ACTIONS(1396), - [anon_sym_DOT] = ACTIONS(1396), - [anon_sym_DOT_DOT] = ACTIONS(1396), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1394), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1394), - [anon_sym_COMMA] = ACTIONS(1394), - [anon_sym_COLON_COLON] = ACTIONS(1394), - [anon_sym_POUND] = ACTIONS(1394), - [anon_sym_as] = ACTIONS(1396), - [anon_sym_const] = ACTIONS(1396), - [anon_sym_default] = ACTIONS(1396), - [anon_sym_union] = ACTIONS(1396), - [anon_sym_ref] = ACTIONS(1396), - [sym_mutable_specifier] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1396), - [sym_super] = ACTIONS(1396), - [sym_crate] = ACTIONS(1396), - [sym_metavariable] = ACTIONS(1394), - [sym__raw_string_literal_start] = ACTIONS(1394), - [sym_float_literal] = ACTIONS(1394), + [sym_identifier] = ACTIONS(1271), + [anon_sym_LPAREN] = ACTIONS(1269), + [anon_sym_LBRACK] = ACTIONS(1269), + [anon_sym_RBRACE] = ACTIONS(1269), + [anon_sym_COMMA] = ACTIONS(1269), + [anon_sym_PLUS] = ACTIONS(1271), + [anon_sym_STAR] = ACTIONS(1271), + [anon_sym_QMARK] = ACTIONS(1269), + [anon_sym_u8] = ACTIONS(1271), + [anon_sym_i8] = ACTIONS(1271), + [anon_sym_u16] = ACTIONS(1271), + [anon_sym_i16] = ACTIONS(1271), + [anon_sym_u32] = ACTIONS(1271), + [anon_sym_i32] = ACTIONS(1271), + [anon_sym_u64] = ACTIONS(1271), + [anon_sym_i64] = ACTIONS(1271), + [anon_sym_u128] = ACTIONS(1271), + [anon_sym_i128] = ACTIONS(1271), + [anon_sym_isize] = ACTIONS(1271), + [anon_sym_usize] = ACTIONS(1271), + [anon_sym_f32] = ACTIONS(1271), + [anon_sym_f64] = ACTIONS(1271), + [anon_sym_bool] = ACTIONS(1271), + [anon_sym_str] = ACTIONS(1271), + [anon_sym_char] = ACTIONS(1271), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_SLASH] = ACTIONS(1271), + [anon_sym_PERCENT] = ACTIONS(1271), + [anon_sym_CARET] = ACTIONS(1271), + [anon_sym_AMP] = ACTIONS(1271), + [anon_sym_PIPE] = ACTIONS(1271), + [anon_sym_AMP_AMP] = ACTIONS(1269), + [anon_sym_PIPE_PIPE] = ACTIONS(1269), + [anon_sym_LT_LT] = ACTIONS(1271), + [anon_sym_GT_GT] = ACTIONS(1271), + [anon_sym_PLUS_EQ] = ACTIONS(1269), + [anon_sym_DASH_EQ] = ACTIONS(1269), + [anon_sym_STAR_EQ] = ACTIONS(1269), + [anon_sym_SLASH_EQ] = ACTIONS(1269), + [anon_sym_PERCENT_EQ] = ACTIONS(1269), + [anon_sym_CARET_EQ] = ACTIONS(1269), + [anon_sym_AMP_EQ] = ACTIONS(1269), + [anon_sym_PIPE_EQ] = ACTIONS(1269), + [anon_sym_LT_LT_EQ] = ACTIONS(1269), + [anon_sym_GT_GT_EQ] = ACTIONS(1269), + [anon_sym_EQ] = ACTIONS(1271), + [anon_sym_EQ_EQ] = ACTIONS(1269), + [anon_sym_BANG_EQ] = ACTIONS(1269), + [anon_sym_GT] = ACTIONS(1271), + [anon_sym_LT] = ACTIONS(1271), + [anon_sym_GT_EQ] = ACTIONS(1269), + [anon_sym_LT_EQ] = ACTIONS(1269), + [anon_sym__] = ACTIONS(1271), + [anon_sym_DOT] = ACTIONS(1271), + [anon_sym_DOT_DOT] = ACTIONS(1271), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1269), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1269), + [anon_sym_COLON_COLON] = ACTIONS(1269), + [anon_sym_POUND] = ACTIONS(1269), + [anon_sym_as] = ACTIONS(1271), + [anon_sym_const] = ACTIONS(1271), + [anon_sym_default] = ACTIONS(1271), + [anon_sym_union] = ACTIONS(1271), + [anon_sym_ref] = ACTIONS(1271), + [sym_mutable_specifier] = ACTIONS(1271), + [sym_integer_literal] = ACTIONS(1269), + [aux_sym_string_literal_token1] = ACTIONS(1269), + [sym_char_literal] = ACTIONS(1269), + [anon_sym_true] = ACTIONS(1271), + [anon_sym_false] = ACTIONS(1271), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1271), + [sym_super] = ACTIONS(1271), + [sym_crate] = ACTIONS(1271), + [sym_metavariable] = ACTIONS(1269), + [sym__raw_string_literal_start] = ACTIONS(1269), + [sym_float_literal] = ACTIONS(1269), }, [472] = { - [sym_attribute_item] = STATE(1479), - [sym_inner_attribute_item] = STATE(1479), - [sym_bracketed_type] = STATE(3523), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3262), - [sym_macro_invocation] = STATE(2877), - [sym_scoped_identifier] = STATE(2130), - [sym_scoped_type_identifier] = STATE(2908), - [sym_match_arm] = STATE(1471), - [sym_last_match_arm] = STATE(3426), - [sym_match_pattern] = STATE(3345), - [sym_const_block] = STATE(2877), - [sym__pattern] = STATE(2919), - [sym_tuple_pattern] = STATE(2877), - [sym_slice_pattern] = STATE(2877), - [sym_tuple_struct_pattern] = STATE(2877), - [sym_struct_pattern] = STATE(2877), - [sym_remaining_field_pattern] = STATE(2877), - [sym_mut_pattern] = STATE(2877), - [sym_range_pattern] = STATE(2877), - [sym_ref_pattern] = STATE(2877), - [sym_captured_pattern] = STATE(2877), - [sym_reference_pattern] = STATE(2877), - [sym_or_pattern] = STATE(2877), - [sym__literal_pattern] = STATE(2387), - [sym_negative_literal] = STATE(2299), - [sym_string_literal] = STATE(2299), - [sym_raw_string_literal] = STATE(2299), - [sym_boolean_literal] = STATE(2299), [sym_line_comment] = STATE(472), [sym_block_comment] = STATE(472), - [aux_sym_match_block_repeat1] = STATE(476), - [aux_sym_match_arm_repeat1] = STATE(759), - [sym_identifier] = ACTIONS(1604), - [anon_sym_LPAREN] = ACTIONS(1606), - [anon_sym_LBRACK] = ACTIONS(1608), - [anon_sym_RBRACE] = ACTIONS(1660), - [anon_sym_u8] = ACTIONS(1612), - [anon_sym_i8] = ACTIONS(1612), - [anon_sym_u16] = ACTIONS(1612), - [anon_sym_i16] = ACTIONS(1612), - [anon_sym_u32] = ACTIONS(1612), - [anon_sym_i32] = ACTIONS(1612), - [anon_sym_u64] = ACTIONS(1612), - [anon_sym_i64] = ACTIONS(1612), - [anon_sym_u128] = ACTIONS(1612), - [anon_sym_i128] = ACTIONS(1612), - [anon_sym_isize] = ACTIONS(1612), - [anon_sym_usize] = ACTIONS(1612), - [anon_sym_f32] = ACTIONS(1612), - [anon_sym_f64] = ACTIONS(1612), - [anon_sym_bool] = ACTIONS(1612), - [anon_sym_str] = ACTIONS(1612), - [anon_sym_char] = ACTIONS(1612), - [anon_sym_DASH] = ACTIONS(1614), - [anon_sym_AMP] = ACTIONS(1616), - [anon_sym_PIPE] = ACTIONS(1618), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1620), - [anon_sym_DOT_DOT] = ACTIONS(1622), - [anon_sym_COLON_COLON] = ACTIONS(1624), - [anon_sym_POUND] = ACTIONS(1626), - [anon_sym_const] = ACTIONS(1628), - [anon_sym_default] = ACTIONS(1630), - [anon_sym_union] = ACTIONS(1630), - [anon_sym_ref] = ACTIONS(1632), - [sym_mutable_specifier] = ACTIONS(1634), - [sym_integer_literal] = ACTIONS(1636), - [aux_sym_string_literal_token1] = ACTIONS(1638), - [sym_char_literal] = ACTIONS(1636), - [anon_sym_true] = ACTIONS(1640), - [anon_sym_false] = ACTIONS(1640), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1642), - [sym_super] = ACTIONS(1642), - [sym_crate] = ACTIONS(1642), - [sym_metavariable] = ACTIONS(1644), - [sym__raw_string_literal_start] = ACTIONS(1646), - [sym_float_literal] = ACTIONS(1636), + [sym_identifier] = ACTIONS(1251), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_LBRACK] = ACTIONS(1249), + [anon_sym_RBRACE] = ACTIONS(1249), + [anon_sym_COMMA] = ACTIONS(1249), + [anon_sym_PLUS] = ACTIONS(1251), + [anon_sym_STAR] = ACTIONS(1251), + [anon_sym_QMARK] = ACTIONS(1249), + [anon_sym_u8] = ACTIONS(1251), + [anon_sym_i8] = ACTIONS(1251), + [anon_sym_u16] = ACTIONS(1251), + [anon_sym_i16] = ACTIONS(1251), + [anon_sym_u32] = ACTIONS(1251), + [anon_sym_i32] = ACTIONS(1251), + [anon_sym_u64] = ACTIONS(1251), + [anon_sym_i64] = ACTIONS(1251), + [anon_sym_u128] = ACTIONS(1251), + [anon_sym_i128] = ACTIONS(1251), + [anon_sym_isize] = ACTIONS(1251), + [anon_sym_usize] = ACTIONS(1251), + [anon_sym_f32] = ACTIONS(1251), + [anon_sym_f64] = ACTIONS(1251), + [anon_sym_bool] = ACTIONS(1251), + [anon_sym_str] = ACTIONS(1251), + [anon_sym_char] = ACTIONS(1251), + [anon_sym_DASH] = ACTIONS(1251), + [anon_sym_SLASH] = ACTIONS(1251), + [anon_sym_PERCENT] = ACTIONS(1251), + [anon_sym_CARET] = ACTIONS(1251), + [anon_sym_AMP] = ACTIONS(1251), + [anon_sym_PIPE] = ACTIONS(1251), + [anon_sym_AMP_AMP] = ACTIONS(1249), + [anon_sym_PIPE_PIPE] = ACTIONS(1249), + [anon_sym_LT_LT] = ACTIONS(1251), + [anon_sym_GT_GT] = ACTIONS(1251), + [anon_sym_PLUS_EQ] = ACTIONS(1249), + [anon_sym_DASH_EQ] = ACTIONS(1249), + [anon_sym_STAR_EQ] = ACTIONS(1249), + [anon_sym_SLASH_EQ] = ACTIONS(1249), + [anon_sym_PERCENT_EQ] = ACTIONS(1249), + [anon_sym_CARET_EQ] = ACTIONS(1249), + [anon_sym_AMP_EQ] = ACTIONS(1249), + [anon_sym_PIPE_EQ] = ACTIONS(1249), + [anon_sym_LT_LT_EQ] = ACTIONS(1249), + [anon_sym_GT_GT_EQ] = ACTIONS(1249), + [anon_sym_EQ] = ACTIONS(1251), + [anon_sym_EQ_EQ] = ACTIONS(1249), + [anon_sym_BANG_EQ] = ACTIONS(1249), + [anon_sym_GT] = ACTIONS(1251), + [anon_sym_LT] = ACTIONS(1251), + [anon_sym_GT_EQ] = ACTIONS(1249), + [anon_sym_LT_EQ] = ACTIONS(1249), + [anon_sym__] = ACTIONS(1251), + [anon_sym_DOT] = ACTIONS(1251), + [anon_sym_DOT_DOT] = ACTIONS(1251), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1249), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1249), + [anon_sym_COLON_COLON] = ACTIONS(1249), + [anon_sym_POUND] = ACTIONS(1249), + [anon_sym_as] = ACTIONS(1251), + [anon_sym_const] = ACTIONS(1251), + [anon_sym_default] = ACTIONS(1251), + [anon_sym_union] = ACTIONS(1251), + [anon_sym_ref] = ACTIONS(1251), + [sym_mutable_specifier] = ACTIONS(1251), + [sym_integer_literal] = ACTIONS(1249), + [aux_sym_string_literal_token1] = ACTIONS(1249), + [sym_char_literal] = ACTIONS(1249), + [anon_sym_true] = ACTIONS(1251), + [anon_sym_false] = ACTIONS(1251), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1251), + [sym_super] = ACTIONS(1251), + [sym_crate] = ACTIONS(1251), + [sym_metavariable] = ACTIONS(1249), + [sym__raw_string_literal_start] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1249), }, [473] = { [sym_line_comment] = STATE(473), [sym_block_comment] = STATE(473), - [sym_identifier] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1374), - [anon_sym_LBRACK] = ACTIONS(1374), - [anon_sym_RBRACE] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1376), - [anon_sym_QMARK] = 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_DASH] = ACTIONS(1376), - [anon_sym_SLASH] = ACTIONS(1376), - [anon_sym_PERCENT] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1376), - [anon_sym_PIPE] = ACTIONS(1376), - [anon_sym_AMP_AMP] = ACTIONS(1374), - [anon_sym_PIPE_PIPE] = ACTIONS(1374), - [anon_sym_LT_LT] = ACTIONS(1376), - [anon_sym_GT_GT] = ACTIONS(1376), - [anon_sym_PLUS_EQ] = ACTIONS(1374), - [anon_sym_DASH_EQ] = ACTIONS(1374), - [anon_sym_STAR_EQ] = ACTIONS(1374), - [anon_sym_SLASH_EQ] = ACTIONS(1374), - [anon_sym_PERCENT_EQ] = ACTIONS(1374), - [anon_sym_CARET_EQ] = ACTIONS(1374), - [anon_sym_AMP_EQ] = ACTIONS(1374), - [anon_sym_PIPE_EQ] = ACTIONS(1374), - [anon_sym_LT_LT_EQ] = ACTIONS(1374), - [anon_sym_GT_GT_EQ] = ACTIONS(1374), - [anon_sym_EQ] = ACTIONS(1376), - [anon_sym_EQ_EQ] = ACTIONS(1374), - [anon_sym_BANG_EQ] = ACTIONS(1374), - [anon_sym_GT] = ACTIONS(1376), - [anon_sym_LT] = ACTIONS(1376), - [anon_sym_GT_EQ] = ACTIONS(1374), - [anon_sym_LT_EQ] = ACTIONS(1374), - [anon_sym__] = ACTIONS(1376), - [anon_sym_DOT] = ACTIONS(1376), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1374), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1374), - [anon_sym_COMMA] = ACTIONS(1374), - [anon_sym_COLON_COLON] = ACTIONS(1374), - [anon_sym_POUND] = ACTIONS(1374), - [anon_sym_as] = ACTIONS(1376), - [anon_sym_const] = ACTIONS(1376), - [anon_sym_default] = ACTIONS(1376), - [anon_sym_union] = ACTIONS(1376), - [anon_sym_ref] = ACTIONS(1376), - [sym_mutable_specifier] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1376), - [sym_super] = ACTIONS(1376), - [sym_crate] = ACTIONS(1376), - [sym_metavariable] = ACTIONS(1374), - [sym__raw_string_literal_start] = ACTIONS(1374), - [sym_float_literal] = ACTIONS(1374), + [sym_identifier] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(1243), + [anon_sym_LBRACK] = ACTIONS(1243), + [anon_sym_RBRACE] = ACTIONS(1243), + [anon_sym_COMMA] = ACTIONS(1243), + [anon_sym_PLUS] = ACTIONS(1245), + [anon_sym_STAR] = ACTIONS(1245), + [anon_sym_QMARK] = ACTIONS(1243), + [anon_sym_u8] = ACTIONS(1245), + [anon_sym_i8] = ACTIONS(1245), + [anon_sym_u16] = ACTIONS(1245), + [anon_sym_i16] = ACTIONS(1245), + [anon_sym_u32] = ACTIONS(1245), + [anon_sym_i32] = ACTIONS(1245), + [anon_sym_u64] = ACTIONS(1245), + [anon_sym_i64] = ACTIONS(1245), + [anon_sym_u128] = ACTIONS(1245), + [anon_sym_i128] = ACTIONS(1245), + [anon_sym_isize] = ACTIONS(1245), + [anon_sym_usize] = ACTIONS(1245), + [anon_sym_f32] = ACTIONS(1245), + [anon_sym_f64] = ACTIONS(1245), + [anon_sym_bool] = ACTIONS(1245), + [anon_sym_str] = ACTIONS(1245), + [anon_sym_char] = ACTIONS(1245), + [anon_sym_DASH] = ACTIONS(1245), + [anon_sym_SLASH] = ACTIONS(1245), + [anon_sym_PERCENT] = ACTIONS(1245), + [anon_sym_CARET] = ACTIONS(1245), + [anon_sym_AMP] = ACTIONS(1245), + [anon_sym_PIPE] = ACTIONS(1245), + [anon_sym_AMP_AMP] = ACTIONS(1243), + [anon_sym_PIPE_PIPE] = ACTIONS(1243), + [anon_sym_LT_LT] = ACTIONS(1245), + [anon_sym_GT_GT] = ACTIONS(1245), + [anon_sym_PLUS_EQ] = ACTIONS(1243), + [anon_sym_DASH_EQ] = ACTIONS(1243), + [anon_sym_STAR_EQ] = ACTIONS(1243), + [anon_sym_SLASH_EQ] = ACTIONS(1243), + [anon_sym_PERCENT_EQ] = ACTIONS(1243), + [anon_sym_CARET_EQ] = ACTIONS(1243), + [anon_sym_AMP_EQ] = ACTIONS(1243), + [anon_sym_PIPE_EQ] = ACTIONS(1243), + [anon_sym_LT_LT_EQ] = ACTIONS(1243), + [anon_sym_GT_GT_EQ] = ACTIONS(1243), + [anon_sym_EQ] = ACTIONS(1245), + [anon_sym_EQ_EQ] = ACTIONS(1243), + [anon_sym_BANG_EQ] = ACTIONS(1243), + [anon_sym_GT] = ACTIONS(1245), + [anon_sym_LT] = ACTIONS(1245), + [anon_sym_GT_EQ] = ACTIONS(1243), + [anon_sym_LT_EQ] = ACTIONS(1243), + [anon_sym__] = ACTIONS(1245), + [anon_sym_DOT] = ACTIONS(1245), + [anon_sym_DOT_DOT] = ACTIONS(1245), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1243), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1243), + [anon_sym_COLON_COLON] = ACTIONS(1243), + [anon_sym_POUND] = ACTIONS(1243), + [anon_sym_as] = ACTIONS(1245), + [anon_sym_const] = ACTIONS(1245), + [anon_sym_default] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1245), + [anon_sym_ref] = ACTIONS(1245), + [sym_mutable_specifier] = ACTIONS(1245), + [sym_integer_literal] = ACTIONS(1243), + [aux_sym_string_literal_token1] = ACTIONS(1243), + [sym_char_literal] = ACTIONS(1243), + [anon_sym_true] = ACTIONS(1245), + [anon_sym_false] = ACTIONS(1245), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1245), + [sym_super] = ACTIONS(1245), + [sym_crate] = ACTIONS(1245), + [sym_metavariable] = ACTIONS(1243), + [sym__raw_string_literal_start] = ACTIONS(1243), + [sym_float_literal] = ACTIONS(1243), }, [474] = { [sym_line_comment] = STATE(474), [sym_block_comment] = STATE(474), - [sym_identifier] = ACTIONS(1426), - [anon_sym_LPAREN] = ACTIONS(1424), - [anon_sym_LBRACK] = ACTIONS(1424), - [anon_sym_RBRACE] = ACTIONS(1424), - [anon_sym_PLUS] = ACTIONS(1426), - [anon_sym_STAR] = ACTIONS(1426), - [anon_sym_QMARK] = 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_DASH] = ACTIONS(1426), - [anon_sym_SLASH] = ACTIONS(1426), - [anon_sym_PERCENT] = ACTIONS(1426), - [anon_sym_CARET] = ACTIONS(1426), - [anon_sym_AMP] = ACTIONS(1426), - [anon_sym_PIPE] = ACTIONS(1426), - [anon_sym_AMP_AMP] = ACTIONS(1424), - [anon_sym_PIPE_PIPE] = ACTIONS(1424), - [anon_sym_LT_LT] = ACTIONS(1426), - [anon_sym_GT_GT] = ACTIONS(1426), - [anon_sym_PLUS_EQ] = ACTIONS(1424), - [anon_sym_DASH_EQ] = ACTIONS(1424), - [anon_sym_STAR_EQ] = ACTIONS(1424), - [anon_sym_SLASH_EQ] = ACTIONS(1424), - [anon_sym_PERCENT_EQ] = ACTIONS(1424), - [anon_sym_CARET_EQ] = ACTIONS(1424), - [anon_sym_AMP_EQ] = ACTIONS(1424), - [anon_sym_PIPE_EQ] = ACTIONS(1424), - [anon_sym_LT_LT_EQ] = ACTIONS(1424), - [anon_sym_GT_GT_EQ] = ACTIONS(1424), - [anon_sym_EQ] = ACTIONS(1426), - [anon_sym_EQ_EQ] = ACTIONS(1424), - [anon_sym_BANG_EQ] = ACTIONS(1424), - [anon_sym_GT] = ACTIONS(1426), - [anon_sym_LT] = ACTIONS(1426), - [anon_sym_GT_EQ] = ACTIONS(1424), - [anon_sym_LT_EQ] = ACTIONS(1424), - [anon_sym__] = ACTIONS(1426), - [anon_sym_DOT] = ACTIONS(1426), - [anon_sym_DOT_DOT] = ACTIONS(1426), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1424), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1424), - [anon_sym_COMMA] = ACTIONS(1424), - [anon_sym_COLON_COLON] = ACTIONS(1424), - [anon_sym_POUND] = ACTIONS(1424), - [anon_sym_as] = ACTIONS(1426), - [anon_sym_const] = ACTIONS(1426), - [anon_sym_default] = ACTIONS(1426), - [anon_sym_union] = ACTIONS(1426), - [anon_sym_ref] = ACTIONS(1426), - [sym_mutable_specifier] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1426), - [sym_super] = ACTIONS(1426), - [sym_crate] = ACTIONS(1426), - [sym_metavariable] = ACTIONS(1424), - [sym__raw_string_literal_start] = ACTIONS(1424), - [sym_float_literal] = ACTIONS(1424), + [sym_identifier] = ACTIONS(1729), + [anon_sym_LPAREN] = ACTIONS(1731), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_RBRACE] = ACTIONS(1305), + [anon_sym_COMMA] = ACTIONS(1305), + [anon_sym_PLUS] = ACTIONS(1307), + [anon_sym_STAR] = ACTIONS(1307), + [anon_sym_QMARK] = ACTIONS(1305), + [anon_sym_u8] = ACTIONS(1729), + [anon_sym_i8] = ACTIONS(1729), + [anon_sym_u16] = ACTIONS(1729), + [anon_sym_i16] = ACTIONS(1729), + [anon_sym_u32] = ACTIONS(1729), + [anon_sym_i32] = ACTIONS(1729), + [anon_sym_u64] = ACTIONS(1729), + [anon_sym_i64] = ACTIONS(1729), + [anon_sym_u128] = ACTIONS(1729), + [anon_sym_i128] = ACTIONS(1729), + [anon_sym_isize] = ACTIONS(1729), + [anon_sym_usize] = ACTIONS(1729), + [anon_sym_f32] = ACTIONS(1729), + [anon_sym_f64] = ACTIONS(1729), + [anon_sym_bool] = ACTIONS(1729), + [anon_sym_str] = ACTIONS(1729), + [anon_sym_char] = ACTIONS(1729), + [anon_sym_DASH] = ACTIONS(1729), + [anon_sym_SLASH] = ACTIONS(1307), + [anon_sym_PERCENT] = ACTIONS(1307), + [anon_sym_CARET] = ACTIONS(1307), + [anon_sym_AMP] = ACTIONS(1729), + [anon_sym_PIPE] = ACTIONS(1729), + [anon_sym_AMP_AMP] = ACTIONS(1305), + [anon_sym_PIPE_PIPE] = ACTIONS(1305), + [anon_sym_LT_LT] = ACTIONS(1307), + [anon_sym_GT_GT] = ACTIONS(1307), + [anon_sym_PLUS_EQ] = ACTIONS(1305), + [anon_sym_DASH_EQ] = ACTIONS(1305), + [anon_sym_STAR_EQ] = ACTIONS(1305), + [anon_sym_SLASH_EQ] = ACTIONS(1305), + [anon_sym_PERCENT_EQ] = ACTIONS(1305), + [anon_sym_CARET_EQ] = ACTIONS(1305), + [anon_sym_AMP_EQ] = ACTIONS(1305), + [anon_sym_PIPE_EQ] = ACTIONS(1305), + [anon_sym_LT_LT_EQ] = ACTIONS(1305), + [anon_sym_GT_GT_EQ] = ACTIONS(1305), + [anon_sym_EQ] = ACTIONS(1307), + [anon_sym_EQ_EQ] = ACTIONS(1305), + [anon_sym_BANG_EQ] = ACTIONS(1305), + [anon_sym_GT] = ACTIONS(1307), + [anon_sym_LT] = ACTIONS(1729), + [anon_sym_GT_EQ] = ACTIONS(1305), + [anon_sym_LT_EQ] = ACTIONS(1305), + [anon_sym__] = ACTIONS(1729), + [anon_sym_DOT] = ACTIONS(1307), + [anon_sym_DOT_DOT] = ACTIONS(1729), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1305), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1305), + [anon_sym_COLON_COLON] = ACTIONS(1731), + [anon_sym_POUND] = ACTIONS(1731), + [anon_sym_as] = ACTIONS(1307), + [anon_sym_const] = ACTIONS(1729), + [anon_sym_default] = ACTIONS(1729), + [anon_sym_union] = ACTIONS(1729), + [anon_sym_ref] = ACTIONS(1729), + [sym_mutable_specifier] = ACTIONS(1729), + [sym_integer_literal] = ACTIONS(1731), + [aux_sym_string_literal_token1] = ACTIONS(1731), + [sym_char_literal] = ACTIONS(1731), + [anon_sym_true] = ACTIONS(1729), + [anon_sym_false] = ACTIONS(1729), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1729), + [sym_super] = ACTIONS(1729), + [sym_crate] = ACTIONS(1729), + [sym_metavariable] = ACTIONS(1731), + [sym__raw_string_literal_start] = ACTIONS(1731), + [sym_float_literal] = ACTIONS(1731), }, [475] = { - [sym_attribute_item] = STATE(1479), - [sym_inner_attribute_item] = STATE(1479), - [sym_bracketed_type] = STATE(3523), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3262), - [sym_macro_invocation] = STATE(2877), - [sym_scoped_identifier] = STATE(2130), - [sym_scoped_type_identifier] = STATE(2908), - [sym_match_arm] = STATE(1471), - [sym_last_match_arm] = STATE(3363), - [sym_match_pattern] = STATE(3345), - [sym_const_block] = STATE(2877), - [sym__pattern] = STATE(2919), - [sym_tuple_pattern] = STATE(2877), - [sym_slice_pattern] = STATE(2877), - [sym_tuple_struct_pattern] = STATE(2877), - [sym_struct_pattern] = STATE(2877), - [sym_remaining_field_pattern] = STATE(2877), - [sym_mut_pattern] = STATE(2877), - [sym_range_pattern] = STATE(2877), - [sym_ref_pattern] = STATE(2877), - [sym_captured_pattern] = STATE(2877), - [sym_reference_pattern] = STATE(2877), - [sym_or_pattern] = STATE(2877), - [sym__literal_pattern] = STATE(2387), - [sym_negative_literal] = STATE(2299), - [sym_string_literal] = STATE(2299), - [sym_raw_string_literal] = STATE(2299), - [sym_boolean_literal] = STATE(2299), [sym_line_comment] = STATE(475), [sym_block_comment] = STATE(475), - [aux_sym_match_block_repeat1] = STATE(721), - [aux_sym_match_arm_repeat1] = STATE(759), - [sym_identifier] = ACTIONS(1604), - [anon_sym_LPAREN] = ACTIONS(1606), - [anon_sym_LBRACK] = ACTIONS(1608), - [anon_sym_u8] = ACTIONS(1612), - [anon_sym_i8] = ACTIONS(1612), - [anon_sym_u16] = ACTIONS(1612), - [anon_sym_i16] = ACTIONS(1612), - [anon_sym_u32] = ACTIONS(1612), - [anon_sym_i32] = ACTIONS(1612), - [anon_sym_u64] = ACTIONS(1612), - [anon_sym_i64] = ACTIONS(1612), - [anon_sym_u128] = ACTIONS(1612), - [anon_sym_i128] = ACTIONS(1612), - [anon_sym_isize] = ACTIONS(1612), - [anon_sym_usize] = ACTIONS(1612), - [anon_sym_f32] = ACTIONS(1612), - [anon_sym_f64] = ACTIONS(1612), - [anon_sym_bool] = ACTIONS(1612), - [anon_sym_str] = ACTIONS(1612), - [anon_sym_char] = ACTIONS(1612), - [anon_sym_DASH] = ACTIONS(1614), - [anon_sym_AMP] = ACTIONS(1616), - [anon_sym_PIPE] = ACTIONS(1618), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1620), - [anon_sym_DOT_DOT] = ACTIONS(1622), - [anon_sym_COLON_COLON] = ACTIONS(1624), - [anon_sym_POUND] = ACTIONS(1626), - [anon_sym_const] = ACTIONS(1628), - [anon_sym_default] = ACTIONS(1630), - [anon_sym_union] = ACTIONS(1630), - [anon_sym_ref] = ACTIONS(1632), - [sym_mutable_specifier] = ACTIONS(1634), - [sym_integer_literal] = ACTIONS(1636), - [aux_sym_string_literal_token1] = ACTIONS(1638), - [sym_char_literal] = ACTIONS(1636), - [anon_sym_true] = ACTIONS(1640), - [anon_sym_false] = ACTIONS(1640), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1642), - [sym_super] = ACTIONS(1642), - [sym_crate] = ACTIONS(1642), - [sym_metavariable] = ACTIONS(1644), - [sym__raw_string_literal_start] = ACTIONS(1646), - [sym_float_literal] = ACTIONS(1636), + [sym_identifier] = ACTIONS(1263), + [anon_sym_LPAREN] = ACTIONS(1261), + [anon_sym_LBRACK] = ACTIONS(1261), + [anon_sym_RBRACE] = ACTIONS(1261), + [anon_sym_COMMA] = ACTIONS(1261), + [anon_sym_PLUS] = ACTIONS(1263), + [anon_sym_STAR] = ACTIONS(1263), + [anon_sym_QMARK] = ACTIONS(1261), + [anon_sym_u8] = ACTIONS(1263), + [anon_sym_i8] = ACTIONS(1263), + [anon_sym_u16] = ACTIONS(1263), + [anon_sym_i16] = ACTIONS(1263), + [anon_sym_u32] = ACTIONS(1263), + [anon_sym_i32] = ACTIONS(1263), + [anon_sym_u64] = ACTIONS(1263), + [anon_sym_i64] = ACTIONS(1263), + [anon_sym_u128] = ACTIONS(1263), + [anon_sym_i128] = ACTIONS(1263), + [anon_sym_isize] = ACTIONS(1263), + [anon_sym_usize] = ACTIONS(1263), + [anon_sym_f32] = ACTIONS(1263), + [anon_sym_f64] = ACTIONS(1263), + [anon_sym_bool] = ACTIONS(1263), + [anon_sym_str] = ACTIONS(1263), + [anon_sym_char] = ACTIONS(1263), + [anon_sym_DASH] = ACTIONS(1263), + [anon_sym_SLASH] = ACTIONS(1263), + [anon_sym_PERCENT] = ACTIONS(1263), + [anon_sym_CARET] = ACTIONS(1263), + [anon_sym_AMP] = ACTIONS(1263), + [anon_sym_PIPE] = ACTIONS(1263), + [anon_sym_AMP_AMP] = ACTIONS(1261), + [anon_sym_PIPE_PIPE] = ACTIONS(1261), + [anon_sym_LT_LT] = ACTIONS(1263), + [anon_sym_GT_GT] = ACTIONS(1263), + [anon_sym_PLUS_EQ] = ACTIONS(1261), + [anon_sym_DASH_EQ] = ACTIONS(1261), + [anon_sym_STAR_EQ] = ACTIONS(1261), + [anon_sym_SLASH_EQ] = ACTIONS(1261), + [anon_sym_PERCENT_EQ] = ACTIONS(1261), + [anon_sym_CARET_EQ] = ACTIONS(1261), + [anon_sym_AMP_EQ] = ACTIONS(1261), + [anon_sym_PIPE_EQ] = ACTIONS(1261), + [anon_sym_LT_LT_EQ] = ACTIONS(1261), + [anon_sym_GT_GT_EQ] = ACTIONS(1261), + [anon_sym_EQ] = ACTIONS(1263), + [anon_sym_EQ_EQ] = ACTIONS(1261), + [anon_sym_BANG_EQ] = ACTIONS(1261), + [anon_sym_GT] = ACTIONS(1263), + [anon_sym_LT] = ACTIONS(1263), + [anon_sym_GT_EQ] = ACTIONS(1261), + [anon_sym_LT_EQ] = ACTIONS(1261), + [anon_sym__] = ACTIONS(1263), + [anon_sym_DOT] = ACTIONS(1263), + [anon_sym_DOT_DOT] = ACTIONS(1263), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1261), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1261), + [anon_sym_COLON_COLON] = ACTIONS(1261), + [anon_sym_POUND] = ACTIONS(1261), + [anon_sym_as] = ACTIONS(1263), + [anon_sym_const] = ACTIONS(1263), + [anon_sym_default] = ACTIONS(1263), + [anon_sym_union] = ACTIONS(1263), + [anon_sym_ref] = ACTIONS(1263), + [sym_mutable_specifier] = ACTIONS(1263), + [sym_integer_literal] = ACTIONS(1261), + [aux_sym_string_literal_token1] = ACTIONS(1261), + [sym_char_literal] = ACTIONS(1261), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1263), + [sym_super] = ACTIONS(1263), + [sym_crate] = ACTIONS(1263), + [sym_metavariable] = ACTIONS(1261), + [sym__raw_string_literal_start] = ACTIONS(1261), + [sym_float_literal] = ACTIONS(1261), }, [476] = { - [sym_attribute_item] = STATE(1479), - [sym_inner_attribute_item] = STATE(1479), - [sym_bracketed_type] = STATE(3523), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3262), - [sym_macro_invocation] = STATE(2877), - [sym_scoped_identifier] = STATE(2130), - [sym_scoped_type_identifier] = STATE(2908), - [sym_match_arm] = STATE(1471), - [sym_last_match_arm] = STATE(3477), - [sym_match_pattern] = STATE(3345), - [sym_const_block] = STATE(2877), - [sym__pattern] = STATE(2919), - [sym_tuple_pattern] = STATE(2877), - [sym_slice_pattern] = STATE(2877), - [sym_tuple_struct_pattern] = STATE(2877), - [sym_struct_pattern] = STATE(2877), - [sym_remaining_field_pattern] = STATE(2877), - [sym_mut_pattern] = STATE(2877), - [sym_range_pattern] = STATE(2877), - [sym_ref_pattern] = STATE(2877), - [sym_captured_pattern] = STATE(2877), - [sym_reference_pattern] = STATE(2877), - [sym_or_pattern] = STATE(2877), - [sym__literal_pattern] = STATE(2387), - [sym_negative_literal] = STATE(2299), - [sym_string_literal] = STATE(2299), - [sym_raw_string_literal] = STATE(2299), - [sym_boolean_literal] = STATE(2299), + [sym_empty_statement] = STATE(1250), + [sym_macro_rules] = STATE(1250), + [sym_macro_definition] = STATE(1250), + [sym_attribute_item] = STATE(1250), + [sym_inner_attribute_item] = STATE(1250), + [sym_mod_item] = STATE(1250), + [sym_foreign_mod_item] = STATE(1250), + [sym_struct_item] = STATE(1250), + [sym_union_item] = STATE(1250), + [sym_enum_item] = STATE(1250), + [sym_extern_crate_declaration] = STATE(1250), + [sym_const_item] = STATE(1250), + [sym_static_item] = STATE(1250), + [sym_type_item] = STATE(1250), + [sym_function_item] = STATE(1250), + [sym_function_signature_item] = STATE(1250), + [sym_function_modifiers] = STATE(3690), + [sym_impl_item] = STATE(1250), + [sym_trait_item] = STATE(1250), + [sym_associated_type] = STATE(1250), + [sym_let_declaration] = STATE(1250), + [sym_use_declaration] = STATE(1250), + [sym_extern_modifier] = STATE(2166), + [sym_visibility_modifier] = STATE(1965), + [sym_bracketed_type] = STATE(3408), + [sym_generic_type_with_turbofish] = STATE(3436), + [sym_macro_invocation] = STATE(1250), + [sym_scoped_identifier] = STATE(3322), [sym_line_comment] = STATE(476), [sym_block_comment] = STATE(476), - [aux_sym_match_block_repeat1] = STATE(721), - [aux_sym_match_arm_repeat1] = STATE(759), - [sym_identifier] = ACTIONS(1604), - [anon_sym_LPAREN] = ACTIONS(1606), - [anon_sym_LBRACK] = ACTIONS(1608), - [anon_sym_u8] = ACTIONS(1612), - [anon_sym_i8] = ACTIONS(1612), - [anon_sym_u16] = ACTIONS(1612), - [anon_sym_i16] = ACTIONS(1612), - [anon_sym_u32] = ACTIONS(1612), - [anon_sym_i32] = ACTIONS(1612), - [anon_sym_u64] = ACTIONS(1612), - [anon_sym_i64] = ACTIONS(1612), - [anon_sym_u128] = ACTIONS(1612), - [anon_sym_i128] = ACTIONS(1612), - [anon_sym_isize] = ACTIONS(1612), - [anon_sym_usize] = ACTIONS(1612), - [anon_sym_f32] = ACTIONS(1612), - [anon_sym_f64] = ACTIONS(1612), - [anon_sym_bool] = ACTIONS(1612), - [anon_sym_str] = ACTIONS(1612), - [anon_sym_char] = ACTIONS(1612), - [anon_sym_DASH] = ACTIONS(1614), - [anon_sym_AMP] = ACTIONS(1616), - [anon_sym_PIPE] = ACTIONS(1618), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1620), - [anon_sym_DOT_DOT] = ACTIONS(1622), - [anon_sym_COLON_COLON] = ACTIONS(1624), - [anon_sym_POUND] = ACTIONS(1626), - [anon_sym_const] = ACTIONS(1628), - [anon_sym_default] = ACTIONS(1630), - [anon_sym_union] = ACTIONS(1630), - [anon_sym_ref] = ACTIONS(1632), - [sym_mutable_specifier] = ACTIONS(1634), - [sym_integer_literal] = ACTIONS(1636), - [aux_sym_string_literal_token1] = ACTIONS(1638), - [sym_char_literal] = ACTIONS(1636), - [anon_sym_true] = ACTIONS(1640), - [anon_sym_false] = ACTIONS(1640), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1642), - [sym_super] = ACTIONS(1642), - [sym_crate] = ACTIONS(1642), - [sym_metavariable] = ACTIONS(1644), - [sym__raw_string_literal_start] = ACTIONS(1646), - [sym_float_literal] = ACTIONS(1636), + [aux_sym_declaration_list_repeat1] = STATE(461), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(1665), + [anon_sym_SEMI] = ACTIONS(1667), + [anon_sym_macro_rules_BANG] = ACTIONS(1669), + [anon_sym_RBRACE] = ACTIONS(1733), + [anon_sym_macro] = ACTIONS(1673), + [anon_sym_u8] = ACTIONS(1675), + [anon_sym_i8] = ACTIONS(1675), + [anon_sym_u16] = ACTIONS(1675), + [anon_sym_i16] = ACTIONS(1675), + [anon_sym_u32] = ACTIONS(1675), + [anon_sym_i32] = ACTIONS(1675), + [anon_sym_u64] = ACTIONS(1675), + [anon_sym_i64] = ACTIONS(1675), + [anon_sym_u128] = ACTIONS(1675), + [anon_sym_i128] = ACTIONS(1675), + [anon_sym_isize] = ACTIONS(1675), + [anon_sym_usize] = ACTIONS(1675), + [anon_sym_f32] = ACTIONS(1675), + [anon_sym_f64] = ACTIONS(1675), + [anon_sym_bool] = ACTIONS(1675), + [anon_sym_str] = ACTIONS(1675), + [anon_sym_char] = ACTIONS(1675), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1677), + [anon_sym_POUND] = ACTIONS(1679), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1681), + [anon_sym_default] = ACTIONS(1683), + [anon_sym_enum] = ACTIONS(1685), + [anon_sym_fn] = ACTIONS(1687), + [anon_sym_impl] = ACTIONS(1689), + [anon_sym_let] = ACTIONS(1691), + [anon_sym_mod] = ACTIONS(1693), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_static] = ACTIONS(1695), + [anon_sym_struct] = ACTIONS(1697), + [anon_sym_trait] = ACTIONS(1699), + [anon_sym_type] = ACTIONS(1701), + [anon_sym_union] = ACTIONS(1703), + [anon_sym_unsafe] = ACTIONS(1705), + [anon_sym_use] = ACTIONS(1707), + [anon_sym_extern] = ACTIONS(1709), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1711), + [sym_super] = ACTIONS(1711), + [sym_crate] = ACTIONS(1713), + [sym_metavariable] = ACTIONS(1715), }, [477] = { - [sym_attribute_item] = STATE(1479), - [sym_inner_attribute_item] = STATE(1479), - [sym_bracketed_type] = STATE(3523), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3262), - [sym_macro_invocation] = STATE(2877), - [sym_scoped_identifier] = STATE(2130), - [sym_scoped_type_identifier] = STATE(2908), - [sym_match_arm] = STATE(1471), - [sym_last_match_arm] = STATE(3364), - [sym_match_pattern] = STATE(3345), - [sym_const_block] = STATE(2877), - [sym__pattern] = STATE(2919), - [sym_tuple_pattern] = STATE(2877), - [sym_slice_pattern] = STATE(2877), - [sym_tuple_struct_pattern] = STATE(2877), - [sym_struct_pattern] = STATE(2877), - [sym_remaining_field_pattern] = STATE(2877), - [sym_mut_pattern] = STATE(2877), - [sym_range_pattern] = STATE(2877), - [sym_ref_pattern] = STATE(2877), - [sym_captured_pattern] = STATE(2877), - [sym_reference_pattern] = STATE(2877), - [sym_or_pattern] = STATE(2877), - [sym__literal_pattern] = STATE(2387), - [sym_negative_literal] = STATE(2299), - [sym_string_literal] = STATE(2299), - [sym_raw_string_literal] = STATE(2299), - [sym_boolean_literal] = STATE(2299), [sym_line_comment] = STATE(477), [sym_block_comment] = STATE(477), - [aux_sym_match_block_repeat1] = STATE(721), - [aux_sym_match_arm_repeat1] = STATE(759), - [sym_identifier] = ACTIONS(1604), - [anon_sym_LPAREN] = ACTIONS(1606), - [anon_sym_LBRACK] = ACTIONS(1608), - [anon_sym_u8] = ACTIONS(1612), - [anon_sym_i8] = ACTIONS(1612), - [anon_sym_u16] = ACTIONS(1612), - [anon_sym_i16] = ACTIONS(1612), - [anon_sym_u32] = ACTIONS(1612), - [anon_sym_i32] = ACTIONS(1612), - [anon_sym_u64] = ACTIONS(1612), - [anon_sym_i64] = ACTIONS(1612), - [anon_sym_u128] = ACTIONS(1612), - [anon_sym_i128] = ACTIONS(1612), - [anon_sym_isize] = ACTIONS(1612), - [anon_sym_usize] = ACTIONS(1612), - [anon_sym_f32] = ACTIONS(1612), - [anon_sym_f64] = ACTIONS(1612), - [anon_sym_bool] = ACTIONS(1612), - [anon_sym_str] = ACTIONS(1612), - [anon_sym_char] = ACTIONS(1612), - [anon_sym_DASH] = ACTIONS(1614), - [anon_sym_AMP] = ACTIONS(1616), - [anon_sym_PIPE] = ACTIONS(1618), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1620), - [anon_sym_DOT_DOT] = ACTIONS(1622), - [anon_sym_COLON_COLON] = ACTIONS(1624), - [anon_sym_POUND] = ACTIONS(1626), - [anon_sym_const] = ACTIONS(1628), - [anon_sym_default] = ACTIONS(1630), - [anon_sym_union] = ACTIONS(1630), - [anon_sym_ref] = ACTIONS(1632), - [sym_mutable_specifier] = ACTIONS(1634), - [sym_integer_literal] = ACTIONS(1636), - [aux_sym_string_literal_token1] = ACTIONS(1638), - [sym_char_literal] = ACTIONS(1636), - [anon_sym_true] = ACTIONS(1640), - [anon_sym_false] = ACTIONS(1640), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1642), - [sym_super] = ACTIONS(1642), - [sym_crate] = ACTIONS(1642), - [sym_metavariable] = ACTIONS(1644), - [sym__raw_string_literal_start] = ACTIONS(1646), - [sym_float_literal] = ACTIONS(1636), + [sym_identifier] = ACTIONS(1335), + [anon_sym_LPAREN] = ACTIONS(1333), + [anon_sym_LBRACK] = ACTIONS(1333), + [anon_sym_RBRACE] = ACTIONS(1333), + [anon_sym_COMMA] = ACTIONS(1333), + [anon_sym_PLUS] = ACTIONS(1335), + [anon_sym_STAR] = ACTIONS(1335), + [anon_sym_QMARK] = ACTIONS(1333), + [anon_sym_u8] = ACTIONS(1335), + [anon_sym_i8] = ACTIONS(1335), + [anon_sym_u16] = ACTIONS(1335), + [anon_sym_i16] = ACTIONS(1335), + [anon_sym_u32] = ACTIONS(1335), + [anon_sym_i32] = ACTIONS(1335), + [anon_sym_u64] = ACTIONS(1335), + [anon_sym_i64] = ACTIONS(1335), + [anon_sym_u128] = ACTIONS(1335), + [anon_sym_i128] = ACTIONS(1335), + [anon_sym_isize] = ACTIONS(1335), + [anon_sym_usize] = ACTIONS(1335), + [anon_sym_f32] = ACTIONS(1335), + [anon_sym_f64] = ACTIONS(1335), + [anon_sym_bool] = ACTIONS(1335), + [anon_sym_str] = ACTIONS(1335), + [anon_sym_char] = ACTIONS(1335), + [anon_sym_DASH] = ACTIONS(1335), + [anon_sym_SLASH] = ACTIONS(1335), + [anon_sym_PERCENT] = ACTIONS(1335), + [anon_sym_CARET] = ACTIONS(1335), + [anon_sym_AMP] = ACTIONS(1335), + [anon_sym_PIPE] = ACTIONS(1335), + [anon_sym_AMP_AMP] = ACTIONS(1333), + [anon_sym_PIPE_PIPE] = ACTIONS(1333), + [anon_sym_LT_LT] = ACTIONS(1335), + [anon_sym_GT_GT] = ACTIONS(1335), + [anon_sym_PLUS_EQ] = ACTIONS(1333), + [anon_sym_DASH_EQ] = ACTIONS(1333), + [anon_sym_STAR_EQ] = ACTIONS(1333), + [anon_sym_SLASH_EQ] = ACTIONS(1333), + [anon_sym_PERCENT_EQ] = ACTIONS(1333), + [anon_sym_CARET_EQ] = ACTIONS(1333), + [anon_sym_AMP_EQ] = ACTIONS(1333), + [anon_sym_PIPE_EQ] = ACTIONS(1333), + [anon_sym_LT_LT_EQ] = ACTIONS(1333), + [anon_sym_GT_GT_EQ] = ACTIONS(1333), + [anon_sym_EQ] = ACTIONS(1335), + [anon_sym_EQ_EQ] = ACTIONS(1333), + [anon_sym_BANG_EQ] = ACTIONS(1333), + [anon_sym_GT] = ACTIONS(1335), + [anon_sym_LT] = ACTIONS(1335), + [anon_sym_GT_EQ] = ACTIONS(1333), + [anon_sym_LT_EQ] = ACTIONS(1333), + [anon_sym__] = ACTIONS(1335), + [anon_sym_DOT] = ACTIONS(1335), + [anon_sym_DOT_DOT] = ACTIONS(1335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1333), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1333), + [anon_sym_COLON_COLON] = ACTIONS(1333), + [anon_sym_POUND] = ACTIONS(1333), + [anon_sym_as] = ACTIONS(1335), + [anon_sym_const] = ACTIONS(1335), + [anon_sym_default] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1335), + [anon_sym_ref] = ACTIONS(1335), + [sym_mutable_specifier] = ACTIONS(1335), + [sym_integer_literal] = ACTIONS(1333), + [aux_sym_string_literal_token1] = ACTIONS(1333), + [sym_char_literal] = ACTIONS(1333), + [anon_sym_true] = ACTIONS(1335), + [anon_sym_false] = ACTIONS(1335), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1335), + [sym_super] = ACTIONS(1335), + [sym_crate] = ACTIONS(1335), + [sym_metavariable] = ACTIONS(1333), + [sym__raw_string_literal_start] = ACTIONS(1333), + [sym_float_literal] = ACTIONS(1333), }, [478] = { - [sym_attribute_item] = STATE(1479), - [sym_inner_attribute_item] = STATE(1479), - [sym_bracketed_type] = STATE(3523), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3262), - [sym_macro_invocation] = STATE(2877), - [sym_scoped_identifier] = STATE(2130), - [sym_scoped_type_identifier] = STATE(2908), - [sym_match_arm] = STATE(1471), - [sym_last_match_arm] = STATE(3405), - [sym_match_pattern] = STATE(3345), - [sym_const_block] = STATE(2877), - [sym__pattern] = STATE(2919), - [sym_tuple_pattern] = STATE(2877), - [sym_slice_pattern] = STATE(2877), - [sym_tuple_struct_pattern] = STATE(2877), - [sym_struct_pattern] = STATE(2877), - [sym_remaining_field_pattern] = STATE(2877), - [sym_mut_pattern] = STATE(2877), - [sym_range_pattern] = STATE(2877), - [sym_ref_pattern] = STATE(2877), - [sym_captured_pattern] = STATE(2877), - [sym_reference_pattern] = STATE(2877), - [sym_or_pattern] = STATE(2877), - [sym__literal_pattern] = STATE(2387), - [sym_negative_literal] = STATE(2299), - [sym_string_literal] = STATE(2299), - [sym_raw_string_literal] = STATE(2299), - [sym_boolean_literal] = STATE(2299), [sym_line_comment] = STATE(478), [sym_block_comment] = STATE(478), - [aux_sym_match_block_repeat1] = STATE(721), - [aux_sym_match_arm_repeat1] = STATE(759), - [sym_identifier] = ACTIONS(1604), - [anon_sym_LPAREN] = ACTIONS(1606), - [anon_sym_LBRACK] = ACTIONS(1608), - [anon_sym_u8] = ACTIONS(1612), - [anon_sym_i8] = ACTIONS(1612), - [anon_sym_u16] = ACTIONS(1612), - [anon_sym_i16] = ACTIONS(1612), - [anon_sym_u32] = ACTIONS(1612), - [anon_sym_i32] = ACTIONS(1612), - [anon_sym_u64] = ACTIONS(1612), - [anon_sym_i64] = ACTIONS(1612), - [anon_sym_u128] = ACTIONS(1612), - [anon_sym_i128] = ACTIONS(1612), - [anon_sym_isize] = ACTIONS(1612), - [anon_sym_usize] = ACTIONS(1612), - [anon_sym_f32] = ACTIONS(1612), - [anon_sym_f64] = ACTIONS(1612), - [anon_sym_bool] = ACTIONS(1612), - [anon_sym_str] = ACTIONS(1612), - [anon_sym_char] = ACTIONS(1612), - [anon_sym_DASH] = ACTIONS(1614), - [anon_sym_AMP] = ACTIONS(1616), - [anon_sym_PIPE] = ACTIONS(1618), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1620), - [anon_sym_DOT_DOT] = ACTIONS(1622), - [anon_sym_COLON_COLON] = ACTIONS(1624), - [anon_sym_POUND] = ACTIONS(1626), - [anon_sym_const] = ACTIONS(1628), - [anon_sym_default] = ACTIONS(1630), - [anon_sym_union] = ACTIONS(1630), - [anon_sym_ref] = ACTIONS(1632), - [sym_mutable_specifier] = ACTIONS(1634), - [sym_integer_literal] = ACTIONS(1636), - [aux_sym_string_literal_token1] = ACTIONS(1638), - [sym_char_literal] = ACTIONS(1636), - [anon_sym_true] = ACTIONS(1640), - [anon_sym_false] = ACTIONS(1640), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1642), - [sym_super] = ACTIONS(1642), - [sym_crate] = ACTIONS(1642), - [sym_metavariable] = ACTIONS(1644), - [sym__raw_string_literal_start] = ACTIONS(1646), - [sym_float_literal] = ACTIONS(1636), + [sym_identifier] = ACTIONS(1339), + [anon_sym_LPAREN] = ACTIONS(1337), + [anon_sym_LBRACK] = ACTIONS(1337), + [anon_sym_RBRACE] = ACTIONS(1337), + [anon_sym_COMMA] = ACTIONS(1337), + [anon_sym_PLUS] = ACTIONS(1339), + [anon_sym_STAR] = ACTIONS(1339), + [anon_sym_QMARK] = ACTIONS(1337), + [anon_sym_u8] = ACTIONS(1339), + [anon_sym_i8] = ACTIONS(1339), + [anon_sym_u16] = ACTIONS(1339), + [anon_sym_i16] = ACTIONS(1339), + [anon_sym_u32] = ACTIONS(1339), + [anon_sym_i32] = ACTIONS(1339), + [anon_sym_u64] = ACTIONS(1339), + [anon_sym_i64] = ACTIONS(1339), + [anon_sym_u128] = ACTIONS(1339), + [anon_sym_i128] = ACTIONS(1339), + [anon_sym_isize] = ACTIONS(1339), + [anon_sym_usize] = ACTIONS(1339), + [anon_sym_f32] = ACTIONS(1339), + [anon_sym_f64] = ACTIONS(1339), + [anon_sym_bool] = ACTIONS(1339), + [anon_sym_str] = ACTIONS(1339), + [anon_sym_char] = ACTIONS(1339), + [anon_sym_DASH] = ACTIONS(1339), + [anon_sym_SLASH] = ACTIONS(1339), + [anon_sym_PERCENT] = ACTIONS(1339), + [anon_sym_CARET] = ACTIONS(1339), + [anon_sym_AMP] = ACTIONS(1339), + [anon_sym_PIPE] = ACTIONS(1339), + [anon_sym_AMP_AMP] = ACTIONS(1337), + [anon_sym_PIPE_PIPE] = ACTIONS(1337), + [anon_sym_LT_LT] = ACTIONS(1339), + [anon_sym_GT_GT] = ACTIONS(1339), + [anon_sym_PLUS_EQ] = ACTIONS(1337), + [anon_sym_DASH_EQ] = ACTIONS(1337), + [anon_sym_STAR_EQ] = ACTIONS(1337), + [anon_sym_SLASH_EQ] = ACTIONS(1337), + [anon_sym_PERCENT_EQ] = ACTIONS(1337), + [anon_sym_CARET_EQ] = ACTIONS(1337), + [anon_sym_AMP_EQ] = ACTIONS(1337), + [anon_sym_PIPE_EQ] = ACTIONS(1337), + [anon_sym_LT_LT_EQ] = ACTIONS(1337), + [anon_sym_GT_GT_EQ] = ACTIONS(1337), + [anon_sym_EQ] = ACTIONS(1339), + [anon_sym_EQ_EQ] = ACTIONS(1337), + [anon_sym_BANG_EQ] = ACTIONS(1337), + [anon_sym_GT] = ACTIONS(1339), + [anon_sym_LT] = ACTIONS(1339), + [anon_sym_GT_EQ] = ACTIONS(1337), + [anon_sym_LT_EQ] = ACTIONS(1337), + [anon_sym__] = ACTIONS(1339), + [anon_sym_DOT] = ACTIONS(1339), + [anon_sym_DOT_DOT] = ACTIONS(1339), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1337), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1337), + [anon_sym_COLON_COLON] = ACTIONS(1337), + [anon_sym_POUND] = ACTIONS(1337), + [anon_sym_as] = ACTIONS(1339), + [anon_sym_const] = ACTIONS(1339), + [anon_sym_default] = ACTIONS(1339), + [anon_sym_union] = ACTIONS(1339), + [anon_sym_ref] = ACTIONS(1339), + [sym_mutable_specifier] = ACTIONS(1339), + [sym_integer_literal] = ACTIONS(1337), + [aux_sym_string_literal_token1] = ACTIONS(1337), + [sym_char_literal] = ACTIONS(1337), + [anon_sym_true] = ACTIONS(1339), + [anon_sym_false] = ACTIONS(1339), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1339), + [sym_super] = ACTIONS(1339), + [sym_crate] = ACTIONS(1339), + [sym_metavariable] = ACTIONS(1337), + [sym__raw_string_literal_start] = ACTIONS(1337), + [sym_float_literal] = ACTIONS(1337), }, [479] = { [sym_line_comment] = STATE(479), [sym_block_comment] = STATE(479), - [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_LBRACK] = ACTIONS(1662), - [anon_sym_LBRACE] = ACTIONS(1662), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(1662), - [anon_sym_BANG] = ACTIONS(1662), - [anon_sym_AMP] = ACTIONS(1662), - [anon_sym_PIPE] = ACTIONS(1662), - [anon_sym_LT] = ACTIONS(1662), - [anon_sym_DOT_DOT] = ACTIONS(1662), - [anon_sym_COLON_COLON] = ACTIONS(1662), - [anon_sym_POUND] = ACTIONS(1662), - [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_extern] = ACTIONS(1664), - [anon_sym_yield] = ACTIONS(1664), - [anon_sym_move] = ACTIONS(1664), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1664), - [sym_super] = ACTIONS(1664), - [sym_crate] = ACTIONS(1664), - [sym_metavariable] = ACTIONS(1662), - [sym__raw_string_literal_start] = ACTIONS(1662), - [sym_float_literal] = ACTIONS(1662), + [sym_identifier] = ACTIONS(1351), + [anon_sym_LPAREN] = ACTIONS(1349), + [anon_sym_LBRACK] = ACTIONS(1349), + [anon_sym_RBRACE] = ACTIONS(1349), + [anon_sym_COMMA] = ACTIONS(1349), + [anon_sym_PLUS] = ACTIONS(1351), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_QMARK] = ACTIONS(1349), + [anon_sym_u8] = ACTIONS(1351), + [anon_sym_i8] = ACTIONS(1351), + [anon_sym_u16] = ACTIONS(1351), + [anon_sym_i16] = ACTIONS(1351), + [anon_sym_u32] = ACTIONS(1351), + [anon_sym_i32] = ACTIONS(1351), + [anon_sym_u64] = ACTIONS(1351), + [anon_sym_i64] = ACTIONS(1351), + [anon_sym_u128] = ACTIONS(1351), + [anon_sym_i128] = ACTIONS(1351), + [anon_sym_isize] = ACTIONS(1351), + [anon_sym_usize] = ACTIONS(1351), + [anon_sym_f32] = ACTIONS(1351), + [anon_sym_f64] = ACTIONS(1351), + [anon_sym_bool] = ACTIONS(1351), + [anon_sym_str] = ACTIONS(1351), + [anon_sym_char] = ACTIONS(1351), + [anon_sym_DASH] = ACTIONS(1351), + [anon_sym_SLASH] = ACTIONS(1351), + [anon_sym_PERCENT] = ACTIONS(1351), + [anon_sym_CARET] = ACTIONS(1351), + [anon_sym_AMP] = ACTIONS(1351), + [anon_sym_PIPE] = ACTIONS(1351), + [anon_sym_AMP_AMP] = ACTIONS(1349), + [anon_sym_PIPE_PIPE] = ACTIONS(1349), + [anon_sym_LT_LT] = ACTIONS(1351), + [anon_sym_GT_GT] = ACTIONS(1351), + [anon_sym_PLUS_EQ] = ACTIONS(1349), + [anon_sym_DASH_EQ] = ACTIONS(1349), + [anon_sym_STAR_EQ] = ACTIONS(1349), + [anon_sym_SLASH_EQ] = ACTIONS(1349), + [anon_sym_PERCENT_EQ] = ACTIONS(1349), + [anon_sym_CARET_EQ] = ACTIONS(1349), + [anon_sym_AMP_EQ] = ACTIONS(1349), + [anon_sym_PIPE_EQ] = ACTIONS(1349), + [anon_sym_LT_LT_EQ] = ACTIONS(1349), + [anon_sym_GT_GT_EQ] = ACTIONS(1349), + [anon_sym_EQ] = ACTIONS(1351), + [anon_sym_EQ_EQ] = ACTIONS(1349), + [anon_sym_BANG_EQ] = ACTIONS(1349), + [anon_sym_GT] = ACTIONS(1351), + [anon_sym_LT] = ACTIONS(1351), + [anon_sym_GT_EQ] = ACTIONS(1349), + [anon_sym_LT_EQ] = ACTIONS(1349), + [anon_sym__] = ACTIONS(1351), + [anon_sym_DOT] = ACTIONS(1351), + [anon_sym_DOT_DOT] = ACTIONS(1351), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1349), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1349), + [anon_sym_COLON_COLON] = ACTIONS(1349), + [anon_sym_POUND] = ACTIONS(1349), + [anon_sym_as] = ACTIONS(1351), + [anon_sym_const] = ACTIONS(1351), + [anon_sym_default] = ACTIONS(1351), + [anon_sym_union] = ACTIONS(1351), + [anon_sym_ref] = ACTIONS(1351), + [sym_mutable_specifier] = ACTIONS(1351), + [sym_integer_literal] = ACTIONS(1349), + [aux_sym_string_literal_token1] = ACTIONS(1349), + [sym_char_literal] = ACTIONS(1349), + [anon_sym_true] = ACTIONS(1351), + [anon_sym_false] = ACTIONS(1351), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1351), + [sym_super] = ACTIONS(1351), + [sym_crate] = ACTIONS(1351), + [sym_metavariable] = ACTIONS(1349), + [sym__raw_string_literal_start] = ACTIONS(1349), + [sym_float_literal] = ACTIONS(1349), }, [480] = { [sym_line_comment] = STATE(480), [sym_block_comment] = STATE(480), - [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_LBRACK] = ACTIONS(1666), - [anon_sym_LBRACE] = ACTIONS(1666), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(1666), - [anon_sym_BANG] = ACTIONS(1666), - [anon_sym_AMP] = ACTIONS(1666), - [anon_sym_PIPE] = ACTIONS(1666), - [anon_sym_LT] = ACTIONS(1666), - [anon_sym_DOT_DOT] = ACTIONS(1666), - [anon_sym_COLON_COLON] = ACTIONS(1666), - [anon_sym_POUND] = ACTIONS(1666), - [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_extern] = ACTIONS(1668), - [anon_sym_yield] = ACTIONS(1668), - [anon_sym_move] = ACTIONS(1668), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1668), - [sym_super] = ACTIONS(1668), - [sym_crate] = ACTIONS(1668), - [sym_metavariable] = ACTIONS(1666), - [sym__raw_string_literal_start] = ACTIONS(1666), - [sym_float_literal] = ACTIONS(1666), + [sym_identifier] = ACTIONS(1299), + [anon_sym_LPAREN] = ACTIONS(1297), + [anon_sym_LBRACK] = ACTIONS(1297), + [anon_sym_RBRACE] = ACTIONS(1297), + [anon_sym_COMMA] = ACTIONS(1297), + [anon_sym_PLUS] = ACTIONS(1299), + [anon_sym_STAR] = ACTIONS(1299), + [anon_sym_QMARK] = ACTIONS(1297), + [anon_sym_u8] = ACTIONS(1299), + [anon_sym_i8] = ACTIONS(1299), + [anon_sym_u16] = ACTIONS(1299), + [anon_sym_i16] = ACTIONS(1299), + [anon_sym_u32] = ACTIONS(1299), + [anon_sym_i32] = ACTIONS(1299), + [anon_sym_u64] = ACTIONS(1299), + [anon_sym_i64] = ACTIONS(1299), + [anon_sym_u128] = ACTIONS(1299), + [anon_sym_i128] = ACTIONS(1299), + [anon_sym_isize] = ACTIONS(1299), + [anon_sym_usize] = ACTIONS(1299), + [anon_sym_f32] = ACTIONS(1299), + [anon_sym_f64] = ACTIONS(1299), + [anon_sym_bool] = ACTIONS(1299), + [anon_sym_str] = ACTIONS(1299), + [anon_sym_char] = ACTIONS(1299), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_SLASH] = ACTIONS(1299), + [anon_sym_PERCENT] = ACTIONS(1299), + [anon_sym_CARET] = ACTIONS(1299), + [anon_sym_AMP] = ACTIONS(1299), + [anon_sym_PIPE] = ACTIONS(1299), + [anon_sym_AMP_AMP] = ACTIONS(1297), + [anon_sym_PIPE_PIPE] = ACTIONS(1297), + [anon_sym_LT_LT] = ACTIONS(1299), + [anon_sym_GT_GT] = ACTIONS(1299), + [anon_sym_PLUS_EQ] = ACTIONS(1297), + [anon_sym_DASH_EQ] = ACTIONS(1297), + [anon_sym_STAR_EQ] = ACTIONS(1297), + [anon_sym_SLASH_EQ] = ACTIONS(1297), + [anon_sym_PERCENT_EQ] = ACTIONS(1297), + [anon_sym_CARET_EQ] = ACTIONS(1297), + [anon_sym_AMP_EQ] = ACTIONS(1297), + [anon_sym_PIPE_EQ] = ACTIONS(1297), + [anon_sym_LT_LT_EQ] = ACTIONS(1297), + [anon_sym_GT_GT_EQ] = ACTIONS(1297), + [anon_sym_EQ] = ACTIONS(1299), + [anon_sym_EQ_EQ] = ACTIONS(1297), + [anon_sym_BANG_EQ] = ACTIONS(1297), + [anon_sym_GT] = ACTIONS(1299), + [anon_sym_LT] = ACTIONS(1299), + [anon_sym_GT_EQ] = ACTIONS(1297), + [anon_sym_LT_EQ] = ACTIONS(1297), + [anon_sym__] = ACTIONS(1299), + [anon_sym_DOT] = ACTIONS(1299), + [anon_sym_DOT_DOT] = ACTIONS(1299), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1297), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1297), + [anon_sym_COLON_COLON] = ACTIONS(1297), + [anon_sym_POUND] = ACTIONS(1297), + [anon_sym_as] = ACTIONS(1299), + [anon_sym_const] = ACTIONS(1299), + [anon_sym_default] = ACTIONS(1299), + [anon_sym_union] = ACTIONS(1299), + [anon_sym_ref] = ACTIONS(1299), + [sym_mutable_specifier] = ACTIONS(1299), + [sym_integer_literal] = ACTIONS(1297), + [aux_sym_string_literal_token1] = ACTIONS(1297), + [sym_char_literal] = ACTIONS(1297), + [anon_sym_true] = ACTIONS(1299), + [anon_sym_false] = ACTIONS(1299), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1299), + [sym_super] = ACTIONS(1299), + [sym_crate] = ACTIONS(1299), + [sym_metavariable] = ACTIONS(1297), + [sym__raw_string_literal_start] = ACTIONS(1297), + [sym_float_literal] = ACTIONS(1297), }, [481] = { [sym_line_comment] = STATE(481), [sym_block_comment] = STATE(481), - [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_LBRACK] = ACTIONS(1670), - [anon_sym_LBRACE] = ACTIONS(1670), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(1670), - [anon_sym_BANG] = ACTIONS(1670), - [anon_sym_AMP] = ACTIONS(1670), - [anon_sym_PIPE] = ACTIONS(1670), - [anon_sym_LT] = ACTIONS(1670), - [anon_sym_DOT_DOT] = ACTIONS(1670), - [anon_sym_COLON_COLON] = ACTIONS(1670), - [anon_sym_POUND] = ACTIONS(1670), - [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_extern] = ACTIONS(1672), - [anon_sym_yield] = ACTIONS(1672), - [anon_sym_move] = ACTIONS(1672), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1672), - [sym_super] = ACTIONS(1672), - [sym_crate] = ACTIONS(1672), - [sym_metavariable] = ACTIONS(1670), - [sym__raw_string_literal_start] = ACTIONS(1670), - [sym_float_literal] = ACTIONS(1670), + [sym_identifier] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1309), + [anon_sym_LBRACK] = ACTIONS(1309), + [anon_sym_RBRACE] = ACTIONS(1309), + [anon_sym_COMMA] = ACTIONS(1309), + [anon_sym_PLUS] = ACTIONS(1311), + [anon_sym_STAR] = ACTIONS(1311), + [anon_sym_QMARK] = ACTIONS(1309), + [anon_sym_u8] = ACTIONS(1311), + [anon_sym_i8] = ACTIONS(1311), + [anon_sym_u16] = ACTIONS(1311), + [anon_sym_i16] = ACTIONS(1311), + [anon_sym_u32] = ACTIONS(1311), + [anon_sym_i32] = ACTIONS(1311), + [anon_sym_u64] = ACTIONS(1311), + [anon_sym_i64] = ACTIONS(1311), + [anon_sym_u128] = ACTIONS(1311), + [anon_sym_i128] = ACTIONS(1311), + [anon_sym_isize] = ACTIONS(1311), + [anon_sym_usize] = ACTIONS(1311), + [anon_sym_f32] = ACTIONS(1311), + [anon_sym_f64] = ACTIONS(1311), + [anon_sym_bool] = ACTIONS(1311), + [anon_sym_str] = ACTIONS(1311), + [anon_sym_char] = ACTIONS(1311), + [anon_sym_DASH] = ACTIONS(1311), + [anon_sym_SLASH] = ACTIONS(1311), + [anon_sym_PERCENT] = ACTIONS(1311), + [anon_sym_CARET] = ACTIONS(1311), + [anon_sym_AMP] = ACTIONS(1311), + [anon_sym_PIPE] = ACTIONS(1311), + [anon_sym_AMP_AMP] = ACTIONS(1309), + [anon_sym_PIPE_PIPE] = ACTIONS(1309), + [anon_sym_LT_LT] = ACTIONS(1311), + [anon_sym_GT_GT] = ACTIONS(1311), + [anon_sym_PLUS_EQ] = ACTIONS(1309), + [anon_sym_DASH_EQ] = ACTIONS(1309), + [anon_sym_STAR_EQ] = ACTIONS(1309), + [anon_sym_SLASH_EQ] = ACTIONS(1309), + [anon_sym_PERCENT_EQ] = ACTIONS(1309), + [anon_sym_CARET_EQ] = ACTIONS(1309), + [anon_sym_AMP_EQ] = ACTIONS(1309), + [anon_sym_PIPE_EQ] = ACTIONS(1309), + [anon_sym_LT_LT_EQ] = ACTIONS(1309), + [anon_sym_GT_GT_EQ] = ACTIONS(1309), + [anon_sym_EQ] = ACTIONS(1311), + [anon_sym_EQ_EQ] = ACTIONS(1309), + [anon_sym_BANG_EQ] = ACTIONS(1309), + [anon_sym_GT] = ACTIONS(1311), + [anon_sym_LT] = ACTIONS(1311), + [anon_sym_GT_EQ] = ACTIONS(1309), + [anon_sym_LT_EQ] = ACTIONS(1309), + [anon_sym__] = ACTIONS(1311), + [anon_sym_DOT] = ACTIONS(1311), + [anon_sym_DOT_DOT] = ACTIONS(1311), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1309), + [anon_sym_COLON_COLON] = ACTIONS(1309), + [anon_sym_POUND] = ACTIONS(1309), + [anon_sym_as] = ACTIONS(1311), + [anon_sym_const] = ACTIONS(1311), + [anon_sym_default] = ACTIONS(1311), + [anon_sym_union] = ACTIONS(1311), + [anon_sym_ref] = ACTIONS(1311), + [sym_mutable_specifier] = ACTIONS(1311), + [sym_integer_literal] = ACTIONS(1309), + [aux_sym_string_literal_token1] = ACTIONS(1309), + [sym_char_literal] = ACTIONS(1309), + [anon_sym_true] = ACTIONS(1311), + [anon_sym_false] = ACTIONS(1311), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1311), + [sym_super] = ACTIONS(1311), + [sym_crate] = ACTIONS(1311), + [sym_metavariable] = ACTIONS(1309), + [sym__raw_string_literal_start] = ACTIONS(1309), + [sym_float_literal] = ACTIONS(1309), }, [482] = { [sym_line_comment] = STATE(482), [sym_block_comment] = STATE(482), - [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_LBRACK] = ACTIONS(1674), - [anon_sym_LBRACE] = ACTIONS(1674), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(1674), - [anon_sym_BANG] = ACTIONS(1674), - [anon_sym_AMP] = ACTIONS(1674), - [anon_sym_PIPE] = ACTIONS(1674), - [anon_sym_LT] = ACTIONS(1674), - [anon_sym_DOT_DOT] = ACTIONS(1674), - [anon_sym_COLON_COLON] = ACTIONS(1674), - [anon_sym_POUND] = ACTIONS(1674), - [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_extern] = ACTIONS(1676), - [anon_sym_yield] = ACTIONS(1676), - [anon_sym_move] = ACTIONS(1676), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1676), - [sym_super] = ACTIONS(1676), - [sym_crate] = ACTIONS(1676), - [sym_metavariable] = ACTIONS(1674), - [sym__raw_string_literal_start] = ACTIONS(1674), - [sym_float_literal] = ACTIONS(1674), + [sym_identifier] = ACTIONS(1343), + [anon_sym_LPAREN] = ACTIONS(1341), + [anon_sym_LBRACK] = ACTIONS(1341), + [anon_sym_RBRACE] = ACTIONS(1341), + [anon_sym_COMMA] = ACTIONS(1341), + [anon_sym_PLUS] = ACTIONS(1343), + [anon_sym_STAR] = ACTIONS(1343), + [anon_sym_QMARK] = ACTIONS(1341), + [anon_sym_u8] = ACTIONS(1343), + [anon_sym_i8] = ACTIONS(1343), + [anon_sym_u16] = ACTIONS(1343), + [anon_sym_i16] = ACTIONS(1343), + [anon_sym_u32] = ACTIONS(1343), + [anon_sym_i32] = ACTIONS(1343), + [anon_sym_u64] = ACTIONS(1343), + [anon_sym_i64] = ACTIONS(1343), + [anon_sym_u128] = ACTIONS(1343), + [anon_sym_i128] = ACTIONS(1343), + [anon_sym_isize] = ACTIONS(1343), + [anon_sym_usize] = ACTIONS(1343), + [anon_sym_f32] = ACTIONS(1343), + [anon_sym_f64] = ACTIONS(1343), + [anon_sym_bool] = ACTIONS(1343), + [anon_sym_str] = ACTIONS(1343), + [anon_sym_char] = ACTIONS(1343), + [anon_sym_DASH] = ACTIONS(1343), + [anon_sym_SLASH] = ACTIONS(1343), + [anon_sym_PERCENT] = ACTIONS(1343), + [anon_sym_CARET] = ACTIONS(1343), + [anon_sym_AMP] = ACTIONS(1343), + [anon_sym_PIPE] = ACTIONS(1343), + [anon_sym_AMP_AMP] = ACTIONS(1341), + [anon_sym_PIPE_PIPE] = ACTIONS(1341), + [anon_sym_LT_LT] = ACTIONS(1343), + [anon_sym_GT_GT] = ACTIONS(1343), + [anon_sym_PLUS_EQ] = ACTIONS(1341), + [anon_sym_DASH_EQ] = ACTIONS(1341), + [anon_sym_STAR_EQ] = ACTIONS(1341), + [anon_sym_SLASH_EQ] = ACTIONS(1341), + [anon_sym_PERCENT_EQ] = ACTIONS(1341), + [anon_sym_CARET_EQ] = ACTIONS(1341), + [anon_sym_AMP_EQ] = ACTIONS(1341), + [anon_sym_PIPE_EQ] = ACTIONS(1341), + [anon_sym_LT_LT_EQ] = ACTIONS(1341), + [anon_sym_GT_GT_EQ] = ACTIONS(1341), + [anon_sym_EQ] = ACTIONS(1343), + [anon_sym_EQ_EQ] = ACTIONS(1341), + [anon_sym_BANG_EQ] = ACTIONS(1341), + [anon_sym_GT] = ACTIONS(1343), + [anon_sym_LT] = ACTIONS(1343), + [anon_sym_GT_EQ] = ACTIONS(1341), + [anon_sym_LT_EQ] = ACTIONS(1341), + [anon_sym__] = ACTIONS(1343), + [anon_sym_DOT] = ACTIONS(1343), + [anon_sym_DOT_DOT] = ACTIONS(1343), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1341), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1341), + [anon_sym_COLON_COLON] = ACTIONS(1341), + [anon_sym_POUND] = ACTIONS(1341), + [anon_sym_as] = ACTIONS(1343), + [anon_sym_const] = ACTIONS(1343), + [anon_sym_default] = ACTIONS(1343), + [anon_sym_union] = ACTIONS(1343), + [anon_sym_ref] = ACTIONS(1343), + [sym_mutable_specifier] = ACTIONS(1343), + [sym_integer_literal] = ACTIONS(1341), + [aux_sym_string_literal_token1] = ACTIONS(1341), + [sym_char_literal] = ACTIONS(1341), + [anon_sym_true] = ACTIONS(1343), + [anon_sym_false] = ACTIONS(1343), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1343), + [sym_super] = ACTIONS(1343), + [sym_crate] = ACTIONS(1343), + [sym_metavariable] = ACTIONS(1341), + [sym__raw_string_literal_start] = ACTIONS(1341), + [sym_float_literal] = ACTIONS(1341), }, [483] = { [sym_line_comment] = STATE(483), [sym_block_comment] = STATE(483), - [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_LBRACK] = ACTIONS(1678), - [anon_sym_LBRACE] = ACTIONS(1678), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(1678), - [anon_sym_BANG] = ACTIONS(1678), - [anon_sym_AMP] = ACTIONS(1678), - [anon_sym_PIPE] = ACTIONS(1678), - [anon_sym_LT] = ACTIONS(1678), - [anon_sym_DOT_DOT] = ACTIONS(1678), - [anon_sym_COLON_COLON] = ACTIONS(1678), - [anon_sym_POUND] = ACTIONS(1678), - [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_extern] = ACTIONS(1680), - [anon_sym_yield] = ACTIONS(1680), - [anon_sym_move] = ACTIONS(1680), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1680), - [sym_super] = ACTIONS(1680), - [sym_crate] = ACTIONS(1680), - [sym_metavariable] = ACTIONS(1678), - [sym__raw_string_literal_start] = ACTIONS(1678), - [sym_float_literal] = ACTIONS(1678), + [sym_identifier] = ACTIONS(1323), + [anon_sym_LPAREN] = ACTIONS(1321), + [anon_sym_LBRACK] = ACTIONS(1321), + [anon_sym_RBRACE] = ACTIONS(1321), + [anon_sym_COMMA] = ACTIONS(1321), + [anon_sym_PLUS] = ACTIONS(1323), + [anon_sym_STAR] = ACTIONS(1323), + [anon_sym_QMARK] = ACTIONS(1321), + [anon_sym_u8] = ACTIONS(1323), + [anon_sym_i8] = ACTIONS(1323), + [anon_sym_u16] = ACTIONS(1323), + [anon_sym_i16] = ACTIONS(1323), + [anon_sym_u32] = ACTIONS(1323), + [anon_sym_i32] = ACTIONS(1323), + [anon_sym_u64] = ACTIONS(1323), + [anon_sym_i64] = ACTIONS(1323), + [anon_sym_u128] = ACTIONS(1323), + [anon_sym_i128] = ACTIONS(1323), + [anon_sym_isize] = ACTIONS(1323), + [anon_sym_usize] = ACTIONS(1323), + [anon_sym_f32] = ACTIONS(1323), + [anon_sym_f64] = ACTIONS(1323), + [anon_sym_bool] = ACTIONS(1323), + [anon_sym_str] = ACTIONS(1323), + [anon_sym_char] = ACTIONS(1323), + [anon_sym_DASH] = ACTIONS(1323), + [anon_sym_SLASH] = ACTIONS(1323), + [anon_sym_PERCENT] = ACTIONS(1323), + [anon_sym_CARET] = ACTIONS(1323), + [anon_sym_AMP] = ACTIONS(1323), + [anon_sym_PIPE] = ACTIONS(1323), + [anon_sym_AMP_AMP] = ACTIONS(1321), + [anon_sym_PIPE_PIPE] = ACTIONS(1321), + [anon_sym_LT_LT] = ACTIONS(1323), + [anon_sym_GT_GT] = ACTIONS(1323), + [anon_sym_PLUS_EQ] = ACTIONS(1321), + [anon_sym_DASH_EQ] = ACTIONS(1321), + [anon_sym_STAR_EQ] = ACTIONS(1321), + [anon_sym_SLASH_EQ] = ACTIONS(1321), + [anon_sym_PERCENT_EQ] = ACTIONS(1321), + [anon_sym_CARET_EQ] = ACTIONS(1321), + [anon_sym_AMP_EQ] = ACTIONS(1321), + [anon_sym_PIPE_EQ] = ACTIONS(1321), + [anon_sym_LT_LT_EQ] = ACTIONS(1321), + [anon_sym_GT_GT_EQ] = ACTIONS(1321), + [anon_sym_EQ] = ACTIONS(1323), + [anon_sym_EQ_EQ] = ACTIONS(1321), + [anon_sym_BANG_EQ] = ACTIONS(1321), + [anon_sym_GT] = ACTIONS(1323), + [anon_sym_LT] = ACTIONS(1323), + [anon_sym_GT_EQ] = ACTIONS(1321), + [anon_sym_LT_EQ] = ACTIONS(1321), + [anon_sym__] = ACTIONS(1323), + [anon_sym_DOT] = ACTIONS(1323), + [anon_sym_DOT_DOT] = ACTIONS(1323), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1321), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1321), + [anon_sym_COLON_COLON] = ACTIONS(1321), + [anon_sym_POUND] = ACTIONS(1321), + [anon_sym_as] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1323), + [anon_sym_union] = ACTIONS(1323), + [anon_sym_ref] = ACTIONS(1323), + [sym_mutable_specifier] = ACTIONS(1323), + [sym_integer_literal] = ACTIONS(1321), + [aux_sym_string_literal_token1] = ACTIONS(1321), + [sym_char_literal] = ACTIONS(1321), + [anon_sym_true] = ACTIONS(1323), + [anon_sym_false] = ACTIONS(1323), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1323), + [sym_super] = ACTIONS(1323), + [sym_crate] = ACTIONS(1323), + [sym_metavariable] = ACTIONS(1321), + [sym__raw_string_literal_start] = ACTIONS(1321), + [sym_float_literal] = ACTIONS(1321), }, [484] = { + [sym_empty_statement] = STATE(1250), + [sym_macro_rules] = STATE(1250), + [sym_macro_definition] = STATE(1250), + [sym_attribute_item] = STATE(1250), + [sym_inner_attribute_item] = STATE(1250), + [sym_mod_item] = STATE(1250), + [sym_foreign_mod_item] = STATE(1250), + [sym_struct_item] = STATE(1250), + [sym_union_item] = STATE(1250), + [sym_enum_item] = STATE(1250), + [sym_extern_crate_declaration] = STATE(1250), + [sym_const_item] = STATE(1250), + [sym_static_item] = STATE(1250), + [sym_type_item] = STATE(1250), + [sym_function_item] = STATE(1250), + [sym_function_signature_item] = STATE(1250), + [sym_function_modifiers] = STATE(3690), + [sym_impl_item] = STATE(1250), + [sym_trait_item] = STATE(1250), + [sym_associated_type] = STATE(1250), + [sym_let_declaration] = STATE(1250), + [sym_use_declaration] = STATE(1250), + [sym_extern_modifier] = STATE(2166), + [sym_visibility_modifier] = STATE(1965), + [sym_bracketed_type] = STATE(3408), + [sym_generic_type_with_turbofish] = STATE(3436), + [sym_macro_invocation] = STATE(1250), + [sym_scoped_identifier] = STATE(3322), [sym_line_comment] = STATE(484), [sym_block_comment] = STATE(484), - [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_LBRACK] = ACTIONS(1682), - [anon_sym_LBRACE] = ACTIONS(1682), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(1682), - [anon_sym_BANG] = ACTIONS(1682), - [anon_sym_AMP] = ACTIONS(1682), - [anon_sym_PIPE] = ACTIONS(1682), - [anon_sym_LT] = ACTIONS(1682), - [anon_sym_DOT_DOT] = ACTIONS(1682), - [anon_sym_COLON_COLON] = ACTIONS(1682), - [anon_sym_POUND] = ACTIONS(1682), - [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_extern] = ACTIONS(1684), - [anon_sym_yield] = ACTIONS(1684), - [anon_sym_move] = ACTIONS(1684), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1684), - [sym_super] = ACTIONS(1684), - [sym_crate] = ACTIONS(1684), - [sym_metavariable] = ACTIONS(1682), - [sym__raw_string_literal_start] = ACTIONS(1682), - [sym_float_literal] = ACTIONS(1682), + [aux_sym_declaration_list_repeat1] = STATE(484), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(1735), + [anon_sym_SEMI] = ACTIONS(1738), + [anon_sym_macro_rules_BANG] = ACTIONS(1741), + [anon_sym_RBRACE] = ACTIONS(1744), + [anon_sym_macro] = ACTIONS(1746), + [anon_sym_u8] = ACTIONS(1749), + [anon_sym_i8] = ACTIONS(1749), + [anon_sym_u16] = ACTIONS(1749), + [anon_sym_i16] = ACTIONS(1749), + [anon_sym_u32] = ACTIONS(1749), + [anon_sym_i32] = ACTIONS(1749), + [anon_sym_u64] = ACTIONS(1749), + [anon_sym_i64] = ACTIONS(1749), + [anon_sym_u128] = ACTIONS(1749), + [anon_sym_i128] = ACTIONS(1749), + [anon_sym_isize] = ACTIONS(1749), + [anon_sym_usize] = ACTIONS(1749), + [anon_sym_f32] = ACTIONS(1749), + [anon_sym_f64] = ACTIONS(1749), + [anon_sym_bool] = ACTIONS(1749), + [anon_sym_str] = ACTIONS(1749), + [anon_sym_char] = ACTIONS(1749), + [anon_sym_LT] = ACTIONS(1752), + [anon_sym_COLON_COLON] = ACTIONS(1755), + [anon_sym_POUND] = ACTIONS(1758), + [anon_sym_async] = ACTIONS(1761), + [anon_sym_const] = ACTIONS(1764), + [anon_sym_default] = ACTIONS(1767), + [anon_sym_enum] = ACTIONS(1770), + [anon_sym_fn] = ACTIONS(1773), + [anon_sym_impl] = ACTIONS(1776), + [anon_sym_let] = ACTIONS(1779), + [anon_sym_mod] = ACTIONS(1782), + [anon_sym_pub] = ACTIONS(1785), + [anon_sym_static] = ACTIONS(1788), + [anon_sym_struct] = ACTIONS(1791), + [anon_sym_trait] = ACTIONS(1794), + [anon_sym_type] = ACTIONS(1797), + [anon_sym_union] = ACTIONS(1800), + [anon_sym_unsafe] = ACTIONS(1803), + [anon_sym_use] = ACTIONS(1806), + [anon_sym_extern] = ACTIONS(1809), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1812), + [sym_super] = ACTIONS(1812), + [sym_crate] = ACTIONS(1815), + [sym_metavariable] = ACTIONS(1818), }, [485] = { + [sym_attribute_item] = STATE(1515), + [sym_inner_attribute_item] = STATE(1515), + [sym_bracketed_type] = STATE(3618), + [sym_generic_type] = STATE(3491), + [sym_generic_type_with_turbofish] = STATE(3218), + [sym_macro_invocation] = STATE(2994), + [sym_scoped_identifier] = STATE(2165), + [sym_scoped_type_identifier] = STATE(2786), + [sym_match_arm] = STATE(1505), + [sym_last_match_arm] = STATE(3695), + [sym_match_pattern] = STATE(3700), + [sym_const_block] = STATE(2994), + [sym__pattern] = STATE(3082), + [sym_tuple_pattern] = STATE(2994), + [sym_slice_pattern] = STATE(2994), + [sym_tuple_struct_pattern] = STATE(2994), + [sym_struct_pattern] = STATE(2994), + [sym_remaining_field_pattern] = STATE(2994), + [sym_mut_pattern] = STATE(2994), + [sym_range_pattern] = STATE(2994), + [sym_ref_pattern] = STATE(2994), + [sym_captured_pattern] = STATE(2994), + [sym_reference_pattern] = STATE(2994), + [sym_or_pattern] = STATE(2994), + [sym__literal_pattern] = STATE(2380), + [sym_negative_literal] = STATE(2383), + [sym_string_literal] = STATE(2383), + [sym_raw_string_literal] = STATE(2383), + [sym_boolean_literal] = STATE(2383), [sym_line_comment] = STATE(485), [sym_block_comment] = STATE(485), - [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_LBRACK] = ACTIONS(1686), - [anon_sym_LBRACE] = ACTIONS(1686), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(1686), - [anon_sym_BANG] = ACTIONS(1686), - [anon_sym_AMP] = ACTIONS(1686), - [anon_sym_PIPE] = ACTIONS(1686), - [anon_sym_LT] = ACTIONS(1686), - [anon_sym_DOT_DOT] = ACTIONS(1686), - [anon_sym_COLON_COLON] = ACTIONS(1686), - [anon_sym_POUND] = ACTIONS(1686), - [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_extern] = ACTIONS(1688), - [anon_sym_yield] = ACTIONS(1688), - [anon_sym_move] = ACTIONS(1688), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1688), - [sym_super] = ACTIONS(1688), - [sym_crate] = ACTIONS(1688), - [sym_metavariable] = ACTIONS(1686), - [sym__raw_string_literal_start] = ACTIONS(1686), - [sym_float_literal] = ACTIONS(1686), + [aux_sym_match_block_repeat1] = STATE(633), + [aux_sym_match_arm_repeat1] = STATE(780), + [sym_identifier] = ACTIONS(1621), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACK] = ACTIONS(1625), + [anon_sym_RBRACE] = ACTIONS(1821), + [anon_sym_u8] = ACTIONS(1629), + [anon_sym_i8] = ACTIONS(1629), + [anon_sym_u16] = ACTIONS(1629), + [anon_sym_i16] = ACTIONS(1629), + [anon_sym_u32] = ACTIONS(1629), + [anon_sym_i32] = ACTIONS(1629), + [anon_sym_u64] = ACTIONS(1629), + [anon_sym_i64] = ACTIONS(1629), + [anon_sym_u128] = ACTIONS(1629), + [anon_sym_i128] = ACTIONS(1629), + [anon_sym_isize] = ACTIONS(1629), + [anon_sym_usize] = ACTIONS(1629), + [anon_sym_f32] = ACTIONS(1629), + [anon_sym_f64] = ACTIONS(1629), + [anon_sym_bool] = ACTIONS(1629), + [anon_sym_str] = ACTIONS(1629), + [anon_sym_char] = ACTIONS(1629), + [anon_sym_DASH] = ACTIONS(1631), + [anon_sym_AMP] = ACTIONS(1633), + [anon_sym_PIPE] = ACTIONS(1635), + [anon_sym_LT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1637), + [anon_sym_DOT_DOT] = ACTIONS(1639), + [anon_sym_COLON_COLON] = ACTIONS(1641), + [anon_sym_POUND] = ACTIONS(1643), + [anon_sym_const] = ACTIONS(1645), + [anon_sym_default] = ACTIONS(1647), + [anon_sym_union] = ACTIONS(1647), + [anon_sym_ref] = ACTIONS(1649), + [sym_mutable_specifier] = ACTIONS(1651), + [sym_integer_literal] = ACTIONS(1653), + [aux_sym_string_literal_token1] = ACTIONS(1655), + [sym_char_literal] = ACTIONS(1653), + [anon_sym_true] = ACTIONS(1657), + [anon_sym_false] = ACTIONS(1657), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1659), + [sym_super] = ACTIONS(1659), + [sym_crate] = ACTIONS(1659), + [sym_metavariable] = ACTIONS(1661), + [sym__raw_string_literal_start] = ACTIONS(1663), + [sym_float_literal] = ACTIONS(1653), }, [486] = { [sym_line_comment] = STATE(486), [sym_block_comment] = STATE(486), - [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_LBRACK] = ACTIONS(1690), - [anon_sym_LBRACE] = ACTIONS(1690), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(1690), - [anon_sym_BANG] = ACTIONS(1690), - [anon_sym_AMP] = ACTIONS(1690), - [anon_sym_PIPE] = ACTIONS(1690), - [anon_sym_LT] = ACTIONS(1690), - [anon_sym_DOT_DOT] = ACTIONS(1690), - [anon_sym_COLON_COLON] = ACTIONS(1690), - [anon_sym_POUND] = ACTIONS(1690), - [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_extern] = ACTIONS(1692), - [anon_sym_yield] = ACTIONS(1692), - [anon_sym_move] = ACTIONS(1692), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1692), - [sym_super] = ACTIONS(1692), - [sym_crate] = ACTIONS(1692), - [sym_metavariable] = ACTIONS(1690), - [sym__raw_string_literal_start] = ACTIONS(1690), - [sym_float_literal] = ACTIONS(1690), + [ts_builtin_sym_end] = ACTIONS(1823), + [sym_identifier] = ACTIONS(1825), + [anon_sym_SEMI] = ACTIONS(1823), + [anon_sym_macro_rules_BANG] = ACTIONS(1823), + [anon_sym_LPAREN] = ACTIONS(1823), + [anon_sym_LBRACK] = ACTIONS(1823), + [anon_sym_LBRACE] = ACTIONS(1823), + [anon_sym_RBRACE] = ACTIONS(1823), + [anon_sym_macro] = ACTIONS(1825), + [anon_sym_STAR] = ACTIONS(1823), + [anon_sym_u8] = ACTIONS(1825), + [anon_sym_i8] = ACTIONS(1825), + [anon_sym_u16] = ACTIONS(1825), + [anon_sym_i16] = ACTIONS(1825), + [anon_sym_u32] = ACTIONS(1825), + [anon_sym_i32] = ACTIONS(1825), + [anon_sym_u64] = ACTIONS(1825), + [anon_sym_i64] = ACTIONS(1825), + [anon_sym_u128] = ACTIONS(1825), + [anon_sym_i128] = ACTIONS(1825), + [anon_sym_isize] = ACTIONS(1825), + [anon_sym_usize] = ACTIONS(1825), + [anon_sym_f32] = ACTIONS(1825), + [anon_sym_f64] = ACTIONS(1825), + [anon_sym_bool] = ACTIONS(1825), + [anon_sym_str] = ACTIONS(1825), + [anon_sym_char] = ACTIONS(1825), + [anon_sym_DASH] = ACTIONS(1823), + [anon_sym_BANG] = ACTIONS(1823), + [anon_sym_AMP] = ACTIONS(1823), + [anon_sym_PIPE] = ACTIONS(1823), + [anon_sym_LT] = ACTIONS(1823), + [anon_sym_DOT_DOT] = ACTIONS(1823), + [anon_sym_COLON_COLON] = ACTIONS(1823), + [anon_sym_POUND] = ACTIONS(1823), + [anon_sym_SQUOTE] = ACTIONS(1825), + [anon_sym_async] = ACTIONS(1825), + [anon_sym_break] = ACTIONS(1825), + [anon_sym_const] = ACTIONS(1825), + [anon_sym_continue] = ACTIONS(1825), + [anon_sym_default] = ACTIONS(1825), + [anon_sym_enum] = ACTIONS(1825), + [anon_sym_fn] = ACTIONS(1825), + [anon_sym_for] = ACTIONS(1825), + [anon_sym_if] = ACTIONS(1825), + [anon_sym_impl] = ACTIONS(1825), + [anon_sym_let] = ACTIONS(1825), + [anon_sym_loop] = ACTIONS(1825), + [anon_sym_match] = ACTIONS(1825), + [anon_sym_mod] = ACTIONS(1825), + [anon_sym_pub] = ACTIONS(1825), + [anon_sym_return] = ACTIONS(1825), + [anon_sym_static] = ACTIONS(1825), + [anon_sym_struct] = ACTIONS(1825), + [anon_sym_trait] = ACTIONS(1825), + [anon_sym_type] = ACTIONS(1825), + [anon_sym_union] = ACTIONS(1825), + [anon_sym_unsafe] = ACTIONS(1825), + [anon_sym_use] = ACTIONS(1825), + [anon_sym_while] = ACTIONS(1825), + [anon_sym_extern] = ACTIONS(1825), + [anon_sym_yield] = ACTIONS(1825), + [anon_sym_move] = ACTIONS(1825), + [anon_sym_try] = ACTIONS(1825), + [sym_integer_literal] = ACTIONS(1823), + [aux_sym_string_literal_token1] = ACTIONS(1823), + [sym_char_literal] = ACTIONS(1823), + [anon_sym_true] = ACTIONS(1825), + [anon_sym_false] = ACTIONS(1825), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1825), + [sym_super] = ACTIONS(1825), + [sym_crate] = ACTIONS(1825), + [sym_metavariable] = ACTIONS(1823), + [sym__raw_string_literal_start] = ACTIONS(1823), + [sym_float_literal] = ACTIONS(1823), }, [487] = { [sym_line_comment] = STATE(487), [sym_block_comment] = STATE(487), - [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_LBRACK] = ACTIONS(1694), - [anon_sym_LBRACE] = ACTIONS(1694), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(1694), - [anon_sym_BANG] = ACTIONS(1694), - [anon_sym_AMP] = ACTIONS(1694), - [anon_sym_PIPE] = ACTIONS(1694), - [anon_sym_LT] = ACTIONS(1694), - [anon_sym_DOT_DOT] = ACTIONS(1694), - [anon_sym_COLON_COLON] = ACTIONS(1694), - [anon_sym_POUND] = ACTIONS(1694), - [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_extern] = ACTIONS(1696), - [anon_sym_yield] = ACTIONS(1696), - [anon_sym_move] = ACTIONS(1696), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1696), - [sym_super] = ACTIONS(1696), - [sym_crate] = ACTIONS(1696), - [sym_metavariable] = ACTIONS(1694), - [sym__raw_string_literal_start] = ACTIONS(1694), - [sym_float_literal] = ACTIONS(1694), + [ts_builtin_sym_end] = ACTIONS(1827), + [sym_identifier] = ACTIONS(1829), + [anon_sym_SEMI] = ACTIONS(1827), + [anon_sym_macro_rules_BANG] = ACTIONS(1827), + [anon_sym_LPAREN] = ACTIONS(1827), + [anon_sym_LBRACK] = ACTIONS(1827), + [anon_sym_LBRACE] = ACTIONS(1827), + [anon_sym_RBRACE] = ACTIONS(1827), + [anon_sym_macro] = ACTIONS(1829), + [anon_sym_STAR] = ACTIONS(1827), + [anon_sym_u8] = ACTIONS(1829), + [anon_sym_i8] = ACTIONS(1829), + [anon_sym_u16] = ACTIONS(1829), + [anon_sym_i16] = ACTIONS(1829), + [anon_sym_u32] = ACTIONS(1829), + [anon_sym_i32] = ACTIONS(1829), + [anon_sym_u64] = ACTIONS(1829), + [anon_sym_i64] = ACTIONS(1829), + [anon_sym_u128] = ACTIONS(1829), + [anon_sym_i128] = ACTIONS(1829), + [anon_sym_isize] = ACTIONS(1829), + [anon_sym_usize] = ACTIONS(1829), + [anon_sym_f32] = ACTIONS(1829), + [anon_sym_f64] = ACTIONS(1829), + [anon_sym_bool] = ACTIONS(1829), + [anon_sym_str] = ACTIONS(1829), + [anon_sym_char] = ACTIONS(1829), + [anon_sym_DASH] = ACTIONS(1827), + [anon_sym_BANG] = ACTIONS(1827), + [anon_sym_AMP] = ACTIONS(1827), + [anon_sym_PIPE] = ACTIONS(1827), + [anon_sym_LT] = ACTIONS(1827), + [anon_sym_DOT_DOT] = ACTIONS(1827), + [anon_sym_COLON_COLON] = ACTIONS(1827), + [anon_sym_POUND] = ACTIONS(1827), + [anon_sym_SQUOTE] = ACTIONS(1829), + [anon_sym_async] = ACTIONS(1829), + [anon_sym_break] = ACTIONS(1829), + [anon_sym_const] = ACTIONS(1829), + [anon_sym_continue] = ACTIONS(1829), + [anon_sym_default] = ACTIONS(1829), + [anon_sym_enum] = ACTIONS(1829), + [anon_sym_fn] = ACTIONS(1829), + [anon_sym_for] = ACTIONS(1829), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_impl] = ACTIONS(1829), + [anon_sym_let] = ACTIONS(1829), + [anon_sym_loop] = ACTIONS(1829), + [anon_sym_match] = ACTIONS(1829), + [anon_sym_mod] = ACTIONS(1829), + [anon_sym_pub] = ACTIONS(1829), + [anon_sym_return] = ACTIONS(1829), + [anon_sym_static] = ACTIONS(1829), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_trait] = ACTIONS(1829), + [anon_sym_type] = ACTIONS(1829), + [anon_sym_union] = ACTIONS(1829), + [anon_sym_unsafe] = ACTIONS(1829), + [anon_sym_use] = ACTIONS(1829), + [anon_sym_while] = ACTIONS(1829), + [anon_sym_extern] = ACTIONS(1829), + [anon_sym_yield] = ACTIONS(1829), + [anon_sym_move] = ACTIONS(1829), + [anon_sym_try] = ACTIONS(1829), + [sym_integer_literal] = ACTIONS(1827), + [aux_sym_string_literal_token1] = ACTIONS(1827), + [sym_char_literal] = ACTIONS(1827), + [anon_sym_true] = ACTIONS(1829), + [anon_sym_false] = ACTIONS(1829), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1829), + [sym_super] = ACTIONS(1829), + [sym_crate] = ACTIONS(1829), + [sym_metavariable] = ACTIONS(1827), + [sym__raw_string_literal_start] = ACTIONS(1827), + [sym_float_literal] = ACTIONS(1827), }, [488] = { [sym_line_comment] = STATE(488), [sym_block_comment] = STATE(488), - [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_LBRACK] = ACTIONS(1698), - [anon_sym_LBRACE] = ACTIONS(1698), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(1698), - [anon_sym_BANG] = ACTIONS(1698), - [anon_sym_AMP] = ACTIONS(1698), - [anon_sym_PIPE] = ACTIONS(1698), - [anon_sym_LT] = ACTIONS(1698), - [anon_sym_DOT_DOT] = ACTIONS(1698), - [anon_sym_COLON_COLON] = ACTIONS(1698), - [anon_sym_POUND] = ACTIONS(1698), - [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_extern] = ACTIONS(1700), - [anon_sym_yield] = ACTIONS(1700), - [anon_sym_move] = ACTIONS(1700), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1700), - [sym_super] = ACTIONS(1700), - [sym_crate] = ACTIONS(1700), - [sym_metavariable] = ACTIONS(1698), - [sym__raw_string_literal_start] = ACTIONS(1698), - [sym_float_literal] = ACTIONS(1698), + [ts_builtin_sym_end] = ACTIONS(1831), + [sym_identifier] = ACTIONS(1833), + [anon_sym_SEMI] = ACTIONS(1831), + [anon_sym_macro_rules_BANG] = ACTIONS(1831), + [anon_sym_LPAREN] = ACTIONS(1831), + [anon_sym_LBRACK] = ACTIONS(1831), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(1831), + [anon_sym_macro] = ACTIONS(1833), + [anon_sym_STAR] = ACTIONS(1831), + [anon_sym_u8] = ACTIONS(1833), + [anon_sym_i8] = ACTIONS(1833), + [anon_sym_u16] = ACTIONS(1833), + [anon_sym_i16] = ACTIONS(1833), + [anon_sym_u32] = ACTIONS(1833), + [anon_sym_i32] = ACTIONS(1833), + [anon_sym_u64] = ACTIONS(1833), + [anon_sym_i64] = ACTIONS(1833), + [anon_sym_u128] = ACTIONS(1833), + [anon_sym_i128] = ACTIONS(1833), + [anon_sym_isize] = ACTIONS(1833), + [anon_sym_usize] = ACTIONS(1833), + [anon_sym_f32] = ACTIONS(1833), + [anon_sym_f64] = ACTIONS(1833), + [anon_sym_bool] = ACTIONS(1833), + [anon_sym_str] = ACTIONS(1833), + [anon_sym_char] = ACTIONS(1833), + [anon_sym_DASH] = ACTIONS(1831), + [anon_sym_BANG] = ACTIONS(1831), + [anon_sym_AMP] = ACTIONS(1831), + [anon_sym_PIPE] = ACTIONS(1831), + [anon_sym_LT] = ACTIONS(1831), + [anon_sym_DOT_DOT] = ACTIONS(1831), + [anon_sym_COLON_COLON] = ACTIONS(1831), + [anon_sym_POUND] = ACTIONS(1831), + [anon_sym_SQUOTE] = ACTIONS(1833), + [anon_sym_async] = ACTIONS(1833), + [anon_sym_break] = ACTIONS(1833), + [anon_sym_const] = ACTIONS(1833), + [anon_sym_continue] = ACTIONS(1833), + [anon_sym_default] = ACTIONS(1833), + [anon_sym_enum] = ACTIONS(1833), + [anon_sym_fn] = ACTIONS(1833), + [anon_sym_for] = ACTIONS(1833), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_impl] = ACTIONS(1833), + [anon_sym_let] = ACTIONS(1833), + [anon_sym_loop] = ACTIONS(1833), + [anon_sym_match] = ACTIONS(1833), + [anon_sym_mod] = ACTIONS(1833), + [anon_sym_pub] = ACTIONS(1833), + [anon_sym_return] = ACTIONS(1833), + [anon_sym_static] = ACTIONS(1833), + [anon_sym_struct] = ACTIONS(1833), + [anon_sym_trait] = ACTIONS(1833), + [anon_sym_type] = ACTIONS(1833), + [anon_sym_union] = ACTIONS(1833), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_use] = ACTIONS(1833), + [anon_sym_while] = ACTIONS(1833), + [anon_sym_extern] = ACTIONS(1833), + [anon_sym_yield] = ACTIONS(1833), + [anon_sym_move] = ACTIONS(1833), + [anon_sym_try] = ACTIONS(1833), + [sym_integer_literal] = ACTIONS(1831), + [aux_sym_string_literal_token1] = ACTIONS(1831), + [sym_char_literal] = ACTIONS(1831), + [anon_sym_true] = ACTIONS(1833), + [anon_sym_false] = ACTIONS(1833), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1833), + [sym_super] = ACTIONS(1833), + [sym_crate] = ACTIONS(1833), + [sym_metavariable] = ACTIONS(1831), + [sym__raw_string_literal_start] = ACTIONS(1831), + [sym_float_literal] = ACTIONS(1831), }, [489] = { [sym_line_comment] = STATE(489), [sym_block_comment] = STATE(489), - [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_LBRACK] = ACTIONS(1702), - [anon_sym_LBRACE] = ACTIONS(1702), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(1702), - [anon_sym_BANG] = ACTIONS(1702), - [anon_sym_AMP] = ACTIONS(1702), - [anon_sym_PIPE] = ACTIONS(1702), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_DOT_DOT] = ACTIONS(1702), - [anon_sym_COLON_COLON] = ACTIONS(1702), - [anon_sym_POUND] = ACTIONS(1702), - [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_extern] = ACTIONS(1704), - [anon_sym_yield] = ACTIONS(1704), - [anon_sym_move] = ACTIONS(1704), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1704), - [sym_super] = ACTIONS(1704), - [sym_crate] = ACTIONS(1704), - [sym_metavariable] = ACTIONS(1702), - [sym__raw_string_literal_start] = ACTIONS(1702), - [sym_float_literal] = ACTIONS(1702), + [ts_builtin_sym_end] = ACTIONS(1835), + [sym_identifier] = ACTIONS(1837), + [anon_sym_SEMI] = ACTIONS(1835), + [anon_sym_macro_rules_BANG] = ACTIONS(1835), + [anon_sym_LPAREN] = ACTIONS(1835), + [anon_sym_LBRACK] = ACTIONS(1835), + [anon_sym_LBRACE] = ACTIONS(1835), + [anon_sym_RBRACE] = ACTIONS(1835), + [anon_sym_macro] = ACTIONS(1837), + [anon_sym_STAR] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1837), + [anon_sym_i8] = ACTIONS(1837), + [anon_sym_u16] = ACTIONS(1837), + [anon_sym_i16] = ACTIONS(1837), + [anon_sym_u32] = ACTIONS(1837), + [anon_sym_i32] = ACTIONS(1837), + [anon_sym_u64] = ACTIONS(1837), + [anon_sym_i64] = ACTIONS(1837), + [anon_sym_u128] = ACTIONS(1837), + [anon_sym_i128] = ACTIONS(1837), + [anon_sym_isize] = ACTIONS(1837), + [anon_sym_usize] = ACTIONS(1837), + [anon_sym_f32] = ACTIONS(1837), + [anon_sym_f64] = ACTIONS(1837), + [anon_sym_bool] = ACTIONS(1837), + [anon_sym_str] = ACTIONS(1837), + [anon_sym_char] = ACTIONS(1837), + [anon_sym_DASH] = ACTIONS(1835), + [anon_sym_BANG] = ACTIONS(1835), + [anon_sym_AMP] = ACTIONS(1835), + [anon_sym_PIPE] = ACTIONS(1835), + [anon_sym_LT] = ACTIONS(1835), + [anon_sym_DOT_DOT] = ACTIONS(1835), + [anon_sym_COLON_COLON] = ACTIONS(1835), + [anon_sym_POUND] = ACTIONS(1835), + [anon_sym_SQUOTE] = ACTIONS(1837), + [anon_sym_async] = ACTIONS(1837), + [anon_sym_break] = ACTIONS(1837), + [anon_sym_const] = ACTIONS(1837), + [anon_sym_continue] = ACTIONS(1837), + [anon_sym_default] = ACTIONS(1837), + [anon_sym_enum] = ACTIONS(1837), + [anon_sym_fn] = ACTIONS(1837), + [anon_sym_for] = ACTIONS(1837), + [anon_sym_if] = ACTIONS(1837), + [anon_sym_impl] = ACTIONS(1837), + [anon_sym_let] = ACTIONS(1837), + [anon_sym_loop] = ACTIONS(1837), + [anon_sym_match] = ACTIONS(1837), + [anon_sym_mod] = ACTIONS(1837), + [anon_sym_pub] = ACTIONS(1837), + [anon_sym_return] = ACTIONS(1837), + [anon_sym_static] = ACTIONS(1837), + [anon_sym_struct] = ACTIONS(1837), + [anon_sym_trait] = ACTIONS(1837), + [anon_sym_type] = ACTIONS(1837), + [anon_sym_union] = ACTIONS(1837), + [anon_sym_unsafe] = ACTIONS(1837), + [anon_sym_use] = ACTIONS(1837), + [anon_sym_while] = ACTIONS(1837), + [anon_sym_extern] = ACTIONS(1837), + [anon_sym_yield] = ACTIONS(1837), + [anon_sym_move] = ACTIONS(1837), + [anon_sym_try] = ACTIONS(1837), + [sym_integer_literal] = ACTIONS(1835), + [aux_sym_string_literal_token1] = ACTIONS(1835), + [sym_char_literal] = ACTIONS(1835), + [anon_sym_true] = ACTIONS(1837), + [anon_sym_false] = ACTIONS(1837), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1837), + [sym_super] = ACTIONS(1837), + [sym_crate] = ACTIONS(1837), + [sym_metavariable] = ACTIONS(1835), + [sym__raw_string_literal_start] = ACTIONS(1835), + [sym_float_literal] = ACTIONS(1835), }, [490] = { [sym_line_comment] = STATE(490), [sym_block_comment] = STATE(490), - [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_LBRACK] = ACTIONS(1706), - [anon_sym_LBRACE] = ACTIONS(1706), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(1706), - [anon_sym_BANG] = ACTIONS(1706), - [anon_sym_AMP] = ACTIONS(1706), - [anon_sym_PIPE] = ACTIONS(1706), - [anon_sym_LT] = ACTIONS(1706), - [anon_sym_DOT_DOT] = ACTIONS(1706), - [anon_sym_COLON_COLON] = ACTIONS(1706), - [anon_sym_POUND] = ACTIONS(1706), - [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_extern] = ACTIONS(1708), - [anon_sym_yield] = ACTIONS(1708), - [anon_sym_move] = ACTIONS(1708), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1708), - [sym_super] = ACTIONS(1708), - [sym_crate] = ACTIONS(1708), - [sym_metavariable] = ACTIONS(1706), - [sym__raw_string_literal_start] = ACTIONS(1706), - [sym_float_literal] = ACTIONS(1706), + [ts_builtin_sym_end] = ACTIONS(1839), + [sym_identifier] = ACTIONS(1841), + [anon_sym_SEMI] = ACTIONS(1839), + [anon_sym_macro_rules_BANG] = ACTIONS(1839), + [anon_sym_LPAREN] = ACTIONS(1839), + [anon_sym_LBRACK] = ACTIONS(1839), + [anon_sym_LBRACE] = ACTIONS(1839), + [anon_sym_RBRACE] = ACTIONS(1839), + [anon_sym_macro] = ACTIONS(1841), + [anon_sym_STAR] = ACTIONS(1839), + [anon_sym_u8] = ACTIONS(1841), + [anon_sym_i8] = ACTIONS(1841), + [anon_sym_u16] = ACTIONS(1841), + [anon_sym_i16] = ACTIONS(1841), + [anon_sym_u32] = ACTIONS(1841), + [anon_sym_i32] = ACTIONS(1841), + [anon_sym_u64] = ACTIONS(1841), + [anon_sym_i64] = ACTIONS(1841), + [anon_sym_u128] = ACTIONS(1841), + [anon_sym_i128] = ACTIONS(1841), + [anon_sym_isize] = ACTIONS(1841), + [anon_sym_usize] = ACTIONS(1841), + [anon_sym_f32] = ACTIONS(1841), + [anon_sym_f64] = ACTIONS(1841), + [anon_sym_bool] = ACTIONS(1841), + [anon_sym_str] = ACTIONS(1841), + [anon_sym_char] = ACTIONS(1841), + [anon_sym_DASH] = ACTIONS(1839), + [anon_sym_BANG] = ACTIONS(1839), + [anon_sym_AMP] = ACTIONS(1839), + [anon_sym_PIPE] = ACTIONS(1839), + [anon_sym_LT] = ACTIONS(1839), + [anon_sym_DOT_DOT] = ACTIONS(1839), + [anon_sym_COLON_COLON] = ACTIONS(1839), + [anon_sym_POUND] = ACTIONS(1839), + [anon_sym_SQUOTE] = ACTIONS(1841), + [anon_sym_async] = ACTIONS(1841), + [anon_sym_break] = ACTIONS(1841), + [anon_sym_const] = ACTIONS(1841), + [anon_sym_continue] = ACTIONS(1841), + [anon_sym_default] = ACTIONS(1841), + [anon_sym_enum] = ACTIONS(1841), + [anon_sym_fn] = ACTIONS(1841), + [anon_sym_for] = ACTIONS(1841), + [anon_sym_if] = ACTIONS(1841), + [anon_sym_impl] = ACTIONS(1841), + [anon_sym_let] = ACTIONS(1841), + [anon_sym_loop] = ACTIONS(1841), + [anon_sym_match] = ACTIONS(1841), + [anon_sym_mod] = ACTIONS(1841), + [anon_sym_pub] = ACTIONS(1841), + [anon_sym_return] = ACTIONS(1841), + [anon_sym_static] = ACTIONS(1841), + [anon_sym_struct] = ACTIONS(1841), + [anon_sym_trait] = ACTIONS(1841), + [anon_sym_type] = ACTIONS(1841), + [anon_sym_union] = ACTIONS(1841), + [anon_sym_unsafe] = ACTIONS(1841), + [anon_sym_use] = ACTIONS(1841), + [anon_sym_while] = ACTIONS(1841), + [anon_sym_extern] = ACTIONS(1841), + [anon_sym_yield] = ACTIONS(1841), + [anon_sym_move] = ACTIONS(1841), + [anon_sym_try] = ACTIONS(1841), + [sym_integer_literal] = ACTIONS(1839), + [aux_sym_string_literal_token1] = ACTIONS(1839), + [sym_char_literal] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1841), + [sym_super] = ACTIONS(1841), + [sym_crate] = ACTIONS(1841), + [sym_metavariable] = ACTIONS(1839), + [sym__raw_string_literal_start] = ACTIONS(1839), + [sym_float_literal] = ACTIONS(1839), }, [491] = { [sym_line_comment] = STATE(491), [sym_block_comment] = STATE(491), - [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_LBRACK] = ACTIONS(1710), - [anon_sym_LBRACE] = ACTIONS(1710), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(1710), - [anon_sym_BANG] = ACTIONS(1710), - [anon_sym_AMP] = ACTIONS(1710), - [anon_sym_PIPE] = ACTIONS(1710), - [anon_sym_LT] = ACTIONS(1710), - [anon_sym_DOT_DOT] = ACTIONS(1710), - [anon_sym_COLON_COLON] = ACTIONS(1710), - [anon_sym_POUND] = ACTIONS(1710), - [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_extern] = ACTIONS(1712), - [anon_sym_yield] = ACTIONS(1712), - [anon_sym_move] = ACTIONS(1712), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1712), - [sym_super] = ACTIONS(1712), - [sym_crate] = ACTIONS(1712), - [sym_metavariable] = ACTIONS(1710), - [sym__raw_string_literal_start] = ACTIONS(1710), - [sym_float_literal] = ACTIONS(1710), + [ts_builtin_sym_end] = ACTIONS(1843), + [sym_identifier] = ACTIONS(1845), + [anon_sym_SEMI] = ACTIONS(1843), + [anon_sym_macro_rules_BANG] = ACTIONS(1843), + [anon_sym_LPAREN] = ACTIONS(1843), + [anon_sym_LBRACK] = ACTIONS(1843), + [anon_sym_LBRACE] = ACTIONS(1843), + [anon_sym_RBRACE] = ACTIONS(1843), + [anon_sym_macro] = ACTIONS(1845), + [anon_sym_STAR] = ACTIONS(1843), + [anon_sym_u8] = ACTIONS(1845), + [anon_sym_i8] = ACTIONS(1845), + [anon_sym_u16] = ACTIONS(1845), + [anon_sym_i16] = ACTIONS(1845), + [anon_sym_u32] = ACTIONS(1845), + [anon_sym_i32] = ACTIONS(1845), + [anon_sym_u64] = ACTIONS(1845), + [anon_sym_i64] = ACTIONS(1845), + [anon_sym_u128] = ACTIONS(1845), + [anon_sym_i128] = ACTIONS(1845), + [anon_sym_isize] = ACTIONS(1845), + [anon_sym_usize] = ACTIONS(1845), + [anon_sym_f32] = ACTIONS(1845), + [anon_sym_f64] = ACTIONS(1845), + [anon_sym_bool] = ACTIONS(1845), + [anon_sym_str] = ACTIONS(1845), + [anon_sym_char] = ACTIONS(1845), + [anon_sym_DASH] = ACTIONS(1843), + [anon_sym_BANG] = ACTIONS(1843), + [anon_sym_AMP] = ACTIONS(1843), + [anon_sym_PIPE] = ACTIONS(1843), + [anon_sym_LT] = ACTIONS(1843), + [anon_sym_DOT_DOT] = ACTIONS(1843), + [anon_sym_COLON_COLON] = ACTIONS(1843), + [anon_sym_POUND] = ACTIONS(1843), + [anon_sym_SQUOTE] = ACTIONS(1845), + [anon_sym_async] = ACTIONS(1845), + [anon_sym_break] = ACTIONS(1845), + [anon_sym_const] = ACTIONS(1845), + [anon_sym_continue] = ACTIONS(1845), + [anon_sym_default] = ACTIONS(1845), + [anon_sym_enum] = ACTIONS(1845), + [anon_sym_fn] = ACTIONS(1845), + [anon_sym_for] = ACTIONS(1845), + [anon_sym_if] = ACTIONS(1845), + [anon_sym_impl] = ACTIONS(1845), + [anon_sym_let] = ACTIONS(1845), + [anon_sym_loop] = ACTIONS(1845), + [anon_sym_match] = ACTIONS(1845), + [anon_sym_mod] = ACTIONS(1845), + [anon_sym_pub] = ACTIONS(1845), + [anon_sym_return] = ACTIONS(1845), + [anon_sym_static] = ACTIONS(1845), + [anon_sym_struct] = ACTIONS(1845), + [anon_sym_trait] = ACTIONS(1845), + [anon_sym_type] = ACTIONS(1845), + [anon_sym_union] = ACTIONS(1845), + [anon_sym_unsafe] = ACTIONS(1845), + [anon_sym_use] = ACTIONS(1845), + [anon_sym_while] = ACTIONS(1845), + [anon_sym_extern] = ACTIONS(1845), + [anon_sym_yield] = ACTIONS(1845), + [anon_sym_move] = ACTIONS(1845), + [anon_sym_try] = ACTIONS(1845), + [sym_integer_literal] = ACTIONS(1843), + [aux_sym_string_literal_token1] = ACTIONS(1843), + [sym_char_literal] = ACTIONS(1843), + [anon_sym_true] = ACTIONS(1845), + [anon_sym_false] = ACTIONS(1845), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1845), + [sym_super] = ACTIONS(1845), + [sym_crate] = ACTIONS(1845), + [sym_metavariable] = ACTIONS(1843), + [sym__raw_string_literal_start] = ACTIONS(1843), + [sym_float_literal] = ACTIONS(1843), }, [492] = { [sym_line_comment] = STATE(492), [sym_block_comment] = STATE(492), - [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_LBRACK] = ACTIONS(1714), - [anon_sym_LBRACE] = ACTIONS(1714), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(1714), - [anon_sym_BANG] = ACTIONS(1714), - [anon_sym_AMP] = ACTIONS(1714), - [anon_sym_PIPE] = ACTIONS(1714), - [anon_sym_LT] = ACTIONS(1714), - [anon_sym_DOT_DOT] = ACTIONS(1714), - [anon_sym_COLON_COLON] = ACTIONS(1714), - [anon_sym_POUND] = ACTIONS(1714), - [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_extern] = ACTIONS(1716), - [anon_sym_yield] = ACTIONS(1716), - [anon_sym_move] = ACTIONS(1716), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1716), - [sym_super] = ACTIONS(1716), - [sym_crate] = ACTIONS(1716), - [sym_metavariable] = ACTIONS(1714), - [sym__raw_string_literal_start] = ACTIONS(1714), - [sym_float_literal] = ACTIONS(1714), + [ts_builtin_sym_end] = ACTIONS(1847), + [sym_identifier] = ACTIONS(1849), + [anon_sym_SEMI] = ACTIONS(1847), + [anon_sym_macro_rules_BANG] = ACTIONS(1847), + [anon_sym_LPAREN] = ACTIONS(1847), + [anon_sym_LBRACK] = ACTIONS(1847), + [anon_sym_LBRACE] = ACTIONS(1847), + [anon_sym_RBRACE] = ACTIONS(1847), + [anon_sym_macro] = ACTIONS(1849), + [anon_sym_STAR] = ACTIONS(1847), + [anon_sym_u8] = ACTIONS(1849), + [anon_sym_i8] = ACTIONS(1849), + [anon_sym_u16] = ACTIONS(1849), + [anon_sym_i16] = ACTIONS(1849), + [anon_sym_u32] = ACTIONS(1849), + [anon_sym_i32] = ACTIONS(1849), + [anon_sym_u64] = ACTIONS(1849), + [anon_sym_i64] = ACTIONS(1849), + [anon_sym_u128] = ACTIONS(1849), + [anon_sym_i128] = ACTIONS(1849), + [anon_sym_isize] = ACTIONS(1849), + [anon_sym_usize] = ACTIONS(1849), + [anon_sym_f32] = ACTIONS(1849), + [anon_sym_f64] = ACTIONS(1849), + [anon_sym_bool] = ACTIONS(1849), + [anon_sym_str] = ACTIONS(1849), + [anon_sym_char] = ACTIONS(1849), + [anon_sym_DASH] = ACTIONS(1847), + [anon_sym_BANG] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_PIPE] = ACTIONS(1847), + [anon_sym_LT] = ACTIONS(1847), + [anon_sym_DOT_DOT] = ACTIONS(1847), + [anon_sym_COLON_COLON] = ACTIONS(1847), + [anon_sym_POUND] = ACTIONS(1847), + [anon_sym_SQUOTE] = ACTIONS(1849), + [anon_sym_async] = ACTIONS(1849), + [anon_sym_break] = ACTIONS(1849), + [anon_sym_const] = ACTIONS(1849), + [anon_sym_continue] = ACTIONS(1849), + [anon_sym_default] = ACTIONS(1849), + [anon_sym_enum] = ACTIONS(1849), + [anon_sym_fn] = ACTIONS(1849), + [anon_sym_for] = ACTIONS(1849), + [anon_sym_if] = ACTIONS(1849), + [anon_sym_impl] = ACTIONS(1849), + [anon_sym_let] = ACTIONS(1849), + [anon_sym_loop] = ACTIONS(1849), + [anon_sym_match] = ACTIONS(1849), + [anon_sym_mod] = ACTIONS(1849), + [anon_sym_pub] = ACTIONS(1849), + [anon_sym_return] = ACTIONS(1849), + [anon_sym_static] = ACTIONS(1849), + [anon_sym_struct] = ACTIONS(1849), + [anon_sym_trait] = ACTIONS(1849), + [anon_sym_type] = ACTIONS(1849), + [anon_sym_union] = ACTIONS(1849), + [anon_sym_unsafe] = ACTIONS(1849), + [anon_sym_use] = ACTIONS(1849), + [anon_sym_while] = ACTIONS(1849), + [anon_sym_extern] = ACTIONS(1849), + [anon_sym_yield] = ACTIONS(1849), + [anon_sym_move] = ACTIONS(1849), + [anon_sym_try] = ACTIONS(1849), + [sym_integer_literal] = ACTIONS(1847), + [aux_sym_string_literal_token1] = ACTIONS(1847), + [sym_char_literal] = ACTIONS(1847), + [anon_sym_true] = ACTIONS(1849), + [anon_sym_false] = ACTIONS(1849), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1849), + [sym_super] = ACTIONS(1849), + [sym_crate] = ACTIONS(1849), + [sym_metavariable] = ACTIONS(1847), + [sym__raw_string_literal_start] = ACTIONS(1847), + [sym_float_literal] = ACTIONS(1847), }, [493] = { [sym_line_comment] = STATE(493), [sym_block_comment] = STATE(493), - [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_LBRACK] = ACTIONS(1718), - [anon_sym_LBRACE] = ACTIONS(1718), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(1718), - [anon_sym_BANG] = ACTIONS(1718), - [anon_sym_AMP] = ACTIONS(1718), - [anon_sym_PIPE] = ACTIONS(1718), - [anon_sym_LT] = ACTIONS(1718), - [anon_sym_DOT_DOT] = ACTIONS(1718), - [anon_sym_COLON_COLON] = ACTIONS(1718), - [anon_sym_POUND] = ACTIONS(1718), - [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_extern] = ACTIONS(1720), - [anon_sym_yield] = ACTIONS(1720), - [anon_sym_move] = ACTIONS(1720), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1720), - [sym_super] = ACTIONS(1720), - [sym_crate] = ACTIONS(1720), - [sym_metavariable] = ACTIONS(1718), - [sym__raw_string_literal_start] = ACTIONS(1718), - [sym_float_literal] = ACTIONS(1718), + [ts_builtin_sym_end] = ACTIONS(1851), + [sym_identifier] = ACTIONS(1853), + [anon_sym_SEMI] = ACTIONS(1851), + [anon_sym_macro_rules_BANG] = ACTIONS(1851), + [anon_sym_LPAREN] = ACTIONS(1851), + [anon_sym_LBRACK] = ACTIONS(1851), + [anon_sym_LBRACE] = ACTIONS(1851), + [anon_sym_RBRACE] = ACTIONS(1851), + [anon_sym_macro] = ACTIONS(1853), + [anon_sym_STAR] = ACTIONS(1851), + [anon_sym_u8] = ACTIONS(1853), + [anon_sym_i8] = ACTIONS(1853), + [anon_sym_u16] = ACTIONS(1853), + [anon_sym_i16] = ACTIONS(1853), + [anon_sym_u32] = ACTIONS(1853), + [anon_sym_i32] = ACTIONS(1853), + [anon_sym_u64] = ACTIONS(1853), + [anon_sym_i64] = ACTIONS(1853), + [anon_sym_u128] = ACTIONS(1853), + [anon_sym_i128] = ACTIONS(1853), + [anon_sym_isize] = ACTIONS(1853), + [anon_sym_usize] = ACTIONS(1853), + [anon_sym_f32] = ACTIONS(1853), + [anon_sym_f64] = ACTIONS(1853), + [anon_sym_bool] = ACTIONS(1853), + [anon_sym_str] = ACTIONS(1853), + [anon_sym_char] = ACTIONS(1853), + [anon_sym_DASH] = ACTIONS(1851), + [anon_sym_BANG] = ACTIONS(1851), + [anon_sym_AMP] = ACTIONS(1851), + [anon_sym_PIPE] = ACTIONS(1851), + [anon_sym_LT] = ACTIONS(1851), + [anon_sym_DOT_DOT] = ACTIONS(1851), + [anon_sym_COLON_COLON] = ACTIONS(1851), + [anon_sym_POUND] = ACTIONS(1851), + [anon_sym_SQUOTE] = ACTIONS(1853), + [anon_sym_async] = ACTIONS(1853), + [anon_sym_break] = ACTIONS(1853), + [anon_sym_const] = ACTIONS(1853), + [anon_sym_continue] = ACTIONS(1853), + [anon_sym_default] = ACTIONS(1853), + [anon_sym_enum] = ACTIONS(1853), + [anon_sym_fn] = ACTIONS(1853), + [anon_sym_for] = ACTIONS(1853), + [anon_sym_if] = ACTIONS(1853), + [anon_sym_impl] = ACTIONS(1853), + [anon_sym_let] = ACTIONS(1853), + [anon_sym_loop] = ACTIONS(1853), + [anon_sym_match] = ACTIONS(1853), + [anon_sym_mod] = ACTIONS(1853), + [anon_sym_pub] = ACTIONS(1853), + [anon_sym_return] = ACTIONS(1853), + [anon_sym_static] = ACTIONS(1853), + [anon_sym_struct] = ACTIONS(1853), + [anon_sym_trait] = ACTIONS(1853), + [anon_sym_type] = ACTIONS(1853), + [anon_sym_union] = ACTIONS(1853), + [anon_sym_unsafe] = ACTIONS(1853), + [anon_sym_use] = ACTIONS(1853), + [anon_sym_while] = ACTIONS(1853), + [anon_sym_extern] = ACTIONS(1853), + [anon_sym_yield] = ACTIONS(1853), + [anon_sym_move] = ACTIONS(1853), + [anon_sym_try] = ACTIONS(1853), + [sym_integer_literal] = ACTIONS(1851), + [aux_sym_string_literal_token1] = ACTIONS(1851), + [sym_char_literal] = ACTIONS(1851), + [anon_sym_true] = ACTIONS(1853), + [anon_sym_false] = ACTIONS(1853), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1853), + [sym_super] = ACTIONS(1853), + [sym_crate] = ACTIONS(1853), + [sym_metavariable] = ACTIONS(1851), + [sym__raw_string_literal_start] = ACTIONS(1851), + [sym_float_literal] = ACTIONS(1851), }, [494] = { [sym_line_comment] = STATE(494), [sym_block_comment] = STATE(494), - [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_LBRACK] = ACTIONS(1722), - [anon_sym_LBRACE] = ACTIONS(1722), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(1722), - [anon_sym_BANG] = ACTIONS(1722), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_DOT_DOT] = ACTIONS(1722), - [anon_sym_COLON_COLON] = ACTIONS(1722), - [anon_sym_POUND] = ACTIONS(1722), - [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_extern] = ACTIONS(1724), - [anon_sym_yield] = ACTIONS(1724), - [anon_sym_move] = ACTIONS(1724), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1724), - [sym_super] = ACTIONS(1724), - [sym_crate] = ACTIONS(1724), - [sym_metavariable] = ACTIONS(1722), - [sym__raw_string_literal_start] = ACTIONS(1722), - [sym_float_literal] = ACTIONS(1722), + [ts_builtin_sym_end] = ACTIONS(1855), + [sym_identifier] = ACTIONS(1857), + [anon_sym_SEMI] = ACTIONS(1855), + [anon_sym_macro_rules_BANG] = ACTIONS(1855), + [anon_sym_LPAREN] = ACTIONS(1855), + [anon_sym_LBRACK] = ACTIONS(1855), + [anon_sym_LBRACE] = ACTIONS(1855), + [anon_sym_RBRACE] = ACTIONS(1855), + [anon_sym_macro] = ACTIONS(1857), + [anon_sym_STAR] = ACTIONS(1855), + [anon_sym_u8] = ACTIONS(1857), + [anon_sym_i8] = ACTIONS(1857), + [anon_sym_u16] = ACTIONS(1857), + [anon_sym_i16] = ACTIONS(1857), + [anon_sym_u32] = ACTIONS(1857), + [anon_sym_i32] = ACTIONS(1857), + [anon_sym_u64] = ACTIONS(1857), + [anon_sym_i64] = ACTIONS(1857), + [anon_sym_u128] = ACTIONS(1857), + [anon_sym_i128] = ACTIONS(1857), + [anon_sym_isize] = ACTIONS(1857), + [anon_sym_usize] = ACTIONS(1857), + [anon_sym_f32] = ACTIONS(1857), + [anon_sym_f64] = ACTIONS(1857), + [anon_sym_bool] = ACTIONS(1857), + [anon_sym_str] = ACTIONS(1857), + [anon_sym_char] = ACTIONS(1857), + [anon_sym_DASH] = ACTIONS(1855), + [anon_sym_BANG] = ACTIONS(1855), + [anon_sym_AMP] = ACTIONS(1855), + [anon_sym_PIPE] = ACTIONS(1855), + [anon_sym_LT] = ACTIONS(1855), + [anon_sym_DOT_DOT] = ACTIONS(1855), + [anon_sym_COLON_COLON] = ACTIONS(1855), + [anon_sym_POUND] = ACTIONS(1855), + [anon_sym_SQUOTE] = ACTIONS(1857), + [anon_sym_async] = ACTIONS(1857), + [anon_sym_break] = ACTIONS(1857), + [anon_sym_const] = ACTIONS(1857), + [anon_sym_continue] = ACTIONS(1857), + [anon_sym_default] = ACTIONS(1857), + [anon_sym_enum] = ACTIONS(1857), + [anon_sym_fn] = ACTIONS(1857), + [anon_sym_for] = ACTIONS(1857), + [anon_sym_if] = ACTIONS(1857), + [anon_sym_impl] = ACTIONS(1857), + [anon_sym_let] = ACTIONS(1857), + [anon_sym_loop] = ACTIONS(1857), + [anon_sym_match] = ACTIONS(1857), + [anon_sym_mod] = ACTIONS(1857), + [anon_sym_pub] = ACTIONS(1857), + [anon_sym_return] = ACTIONS(1857), + [anon_sym_static] = ACTIONS(1857), + [anon_sym_struct] = ACTIONS(1857), + [anon_sym_trait] = ACTIONS(1857), + [anon_sym_type] = ACTIONS(1857), + [anon_sym_union] = ACTIONS(1857), + [anon_sym_unsafe] = ACTIONS(1857), + [anon_sym_use] = ACTIONS(1857), + [anon_sym_while] = ACTIONS(1857), + [anon_sym_extern] = ACTIONS(1857), + [anon_sym_yield] = ACTIONS(1857), + [anon_sym_move] = ACTIONS(1857), + [anon_sym_try] = ACTIONS(1857), + [sym_integer_literal] = ACTIONS(1855), + [aux_sym_string_literal_token1] = ACTIONS(1855), + [sym_char_literal] = ACTIONS(1855), + [anon_sym_true] = ACTIONS(1857), + [anon_sym_false] = ACTIONS(1857), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1857), + [sym_super] = ACTIONS(1857), + [sym_crate] = ACTIONS(1857), + [sym_metavariable] = ACTIONS(1855), + [sym__raw_string_literal_start] = ACTIONS(1855), + [sym_float_literal] = ACTIONS(1855), }, [495] = { [sym_line_comment] = STATE(495), [sym_block_comment] = STATE(495), - [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_LBRACK] = ACTIONS(1726), - [anon_sym_LBRACE] = ACTIONS(1726), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(1726), - [anon_sym_BANG] = ACTIONS(1726), - [anon_sym_AMP] = ACTIONS(1726), - [anon_sym_PIPE] = ACTIONS(1726), - [anon_sym_LT] = ACTIONS(1726), - [anon_sym_DOT_DOT] = ACTIONS(1726), - [anon_sym_COLON_COLON] = ACTIONS(1726), - [anon_sym_POUND] = ACTIONS(1726), - [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_extern] = ACTIONS(1728), - [anon_sym_yield] = ACTIONS(1728), - [anon_sym_move] = ACTIONS(1728), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1728), - [sym_super] = ACTIONS(1728), - [sym_crate] = ACTIONS(1728), - [sym_metavariable] = ACTIONS(1726), - [sym__raw_string_literal_start] = ACTIONS(1726), - [sym_float_literal] = ACTIONS(1726), + [ts_builtin_sym_end] = ACTIONS(1859), + [sym_identifier] = ACTIONS(1861), + [anon_sym_SEMI] = ACTIONS(1859), + [anon_sym_macro_rules_BANG] = ACTIONS(1859), + [anon_sym_LPAREN] = ACTIONS(1859), + [anon_sym_LBRACK] = ACTIONS(1859), + [anon_sym_LBRACE] = ACTIONS(1859), + [anon_sym_RBRACE] = ACTIONS(1859), + [anon_sym_macro] = ACTIONS(1861), + [anon_sym_STAR] = ACTIONS(1859), + [anon_sym_u8] = ACTIONS(1861), + [anon_sym_i8] = ACTIONS(1861), + [anon_sym_u16] = ACTIONS(1861), + [anon_sym_i16] = ACTIONS(1861), + [anon_sym_u32] = ACTIONS(1861), + [anon_sym_i32] = ACTIONS(1861), + [anon_sym_u64] = ACTIONS(1861), + [anon_sym_i64] = ACTIONS(1861), + [anon_sym_u128] = ACTIONS(1861), + [anon_sym_i128] = ACTIONS(1861), + [anon_sym_isize] = ACTIONS(1861), + [anon_sym_usize] = ACTIONS(1861), + [anon_sym_f32] = ACTIONS(1861), + [anon_sym_f64] = ACTIONS(1861), + [anon_sym_bool] = ACTIONS(1861), + [anon_sym_str] = ACTIONS(1861), + [anon_sym_char] = ACTIONS(1861), + [anon_sym_DASH] = ACTIONS(1859), + [anon_sym_BANG] = ACTIONS(1859), + [anon_sym_AMP] = ACTIONS(1859), + [anon_sym_PIPE] = ACTIONS(1859), + [anon_sym_LT] = ACTIONS(1859), + [anon_sym_DOT_DOT] = ACTIONS(1859), + [anon_sym_COLON_COLON] = ACTIONS(1859), + [anon_sym_POUND] = ACTIONS(1859), + [anon_sym_SQUOTE] = ACTIONS(1861), + [anon_sym_async] = ACTIONS(1861), + [anon_sym_break] = ACTIONS(1861), + [anon_sym_const] = ACTIONS(1861), + [anon_sym_continue] = ACTIONS(1861), + [anon_sym_default] = ACTIONS(1861), + [anon_sym_enum] = ACTIONS(1861), + [anon_sym_fn] = ACTIONS(1861), + [anon_sym_for] = ACTIONS(1861), + [anon_sym_if] = ACTIONS(1861), + [anon_sym_impl] = ACTIONS(1861), + [anon_sym_let] = ACTIONS(1861), + [anon_sym_loop] = ACTIONS(1861), + [anon_sym_match] = ACTIONS(1861), + [anon_sym_mod] = ACTIONS(1861), + [anon_sym_pub] = ACTIONS(1861), + [anon_sym_return] = ACTIONS(1861), + [anon_sym_static] = ACTIONS(1861), + [anon_sym_struct] = ACTIONS(1861), + [anon_sym_trait] = ACTIONS(1861), + [anon_sym_type] = ACTIONS(1861), + [anon_sym_union] = ACTIONS(1861), + [anon_sym_unsafe] = ACTIONS(1861), + [anon_sym_use] = ACTIONS(1861), + [anon_sym_while] = ACTIONS(1861), + [anon_sym_extern] = ACTIONS(1861), + [anon_sym_yield] = ACTIONS(1861), + [anon_sym_move] = ACTIONS(1861), + [anon_sym_try] = ACTIONS(1861), + [sym_integer_literal] = ACTIONS(1859), + [aux_sym_string_literal_token1] = ACTIONS(1859), + [sym_char_literal] = ACTIONS(1859), + [anon_sym_true] = ACTIONS(1861), + [anon_sym_false] = ACTIONS(1861), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1861), + [sym_super] = ACTIONS(1861), + [sym_crate] = ACTIONS(1861), + [sym_metavariable] = ACTIONS(1859), + [sym__raw_string_literal_start] = ACTIONS(1859), + [sym_float_literal] = ACTIONS(1859), }, [496] = { [sym_line_comment] = STATE(496), [sym_block_comment] = STATE(496), - [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_LBRACK] = ACTIONS(1730), - [anon_sym_LBRACE] = ACTIONS(1730), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(1730), - [anon_sym_BANG] = ACTIONS(1730), - [anon_sym_AMP] = ACTIONS(1730), - [anon_sym_PIPE] = ACTIONS(1730), - [anon_sym_LT] = ACTIONS(1730), - [anon_sym_DOT_DOT] = ACTIONS(1730), - [anon_sym_COLON_COLON] = ACTIONS(1730), - [anon_sym_POUND] = ACTIONS(1730), - [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_extern] = ACTIONS(1732), - [anon_sym_yield] = ACTIONS(1732), - [anon_sym_move] = ACTIONS(1732), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1732), - [sym_super] = ACTIONS(1732), - [sym_crate] = ACTIONS(1732), - [sym_metavariable] = ACTIONS(1730), - [sym__raw_string_literal_start] = ACTIONS(1730), - [sym_float_literal] = ACTIONS(1730), + [ts_builtin_sym_end] = ACTIONS(1863), + [sym_identifier] = ACTIONS(1865), + [anon_sym_SEMI] = ACTIONS(1863), + [anon_sym_macro_rules_BANG] = ACTIONS(1863), + [anon_sym_LPAREN] = ACTIONS(1863), + [anon_sym_LBRACK] = ACTIONS(1863), + [anon_sym_LBRACE] = ACTIONS(1863), + [anon_sym_RBRACE] = ACTIONS(1863), + [anon_sym_macro] = ACTIONS(1865), + [anon_sym_STAR] = ACTIONS(1863), + [anon_sym_u8] = ACTIONS(1865), + [anon_sym_i8] = ACTIONS(1865), + [anon_sym_u16] = ACTIONS(1865), + [anon_sym_i16] = ACTIONS(1865), + [anon_sym_u32] = ACTIONS(1865), + [anon_sym_i32] = ACTIONS(1865), + [anon_sym_u64] = ACTIONS(1865), + [anon_sym_i64] = ACTIONS(1865), + [anon_sym_u128] = ACTIONS(1865), + [anon_sym_i128] = ACTIONS(1865), + [anon_sym_isize] = ACTIONS(1865), + [anon_sym_usize] = ACTIONS(1865), + [anon_sym_f32] = ACTIONS(1865), + [anon_sym_f64] = ACTIONS(1865), + [anon_sym_bool] = ACTIONS(1865), + [anon_sym_str] = ACTIONS(1865), + [anon_sym_char] = ACTIONS(1865), + [anon_sym_DASH] = ACTIONS(1863), + [anon_sym_BANG] = ACTIONS(1863), + [anon_sym_AMP] = ACTIONS(1863), + [anon_sym_PIPE] = ACTIONS(1863), + [anon_sym_LT] = ACTIONS(1863), + [anon_sym_DOT_DOT] = ACTIONS(1863), + [anon_sym_COLON_COLON] = ACTIONS(1863), + [anon_sym_POUND] = ACTIONS(1863), + [anon_sym_SQUOTE] = ACTIONS(1865), + [anon_sym_async] = ACTIONS(1865), + [anon_sym_break] = ACTIONS(1865), + [anon_sym_const] = ACTIONS(1865), + [anon_sym_continue] = ACTIONS(1865), + [anon_sym_default] = ACTIONS(1865), + [anon_sym_enum] = ACTIONS(1865), + [anon_sym_fn] = ACTIONS(1865), + [anon_sym_for] = ACTIONS(1865), + [anon_sym_if] = ACTIONS(1865), + [anon_sym_impl] = ACTIONS(1865), + [anon_sym_let] = ACTIONS(1865), + [anon_sym_loop] = ACTIONS(1865), + [anon_sym_match] = ACTIONS(1865), + [anon_sym_mod] = ACTIONS(1865), + [anon_sym_pub] = ACTIONS(1865), + [anon_sym_return] = ACTIONS(1865), + [anon_sym_static] = ACTIONS(1865), + [anon_sym_struct] = ACTIONS(1865), + [anon_sym_trait] = ACTIONS(1865), + [anon_sym_type] = ACTIONS(1865), + [anon_sym_union] = ACTIONS(1865), + [anon_sym_unsafe] = ACTIONS(1865), + [anon_sym_use] = ACTIONS(1865), + [anon_sym_while] = ACTIONS(1865), + [anon_sym_extern] = ACTIONS(1865), + [anon_sym_yield] = ACTIONS(1865), + [anon_sym_move] = ACTIONS(1865), + [anon_sym_try] = ACTIONS(1865), + [sym_integer_literal] = ACTIONS(1863), + [aux_sym_string_literal_token1] = ACTIONS(1863), + [sym_char_literal] = ACTIONS(1863), + [anon_sym_true] = ACTIONS(1865), + [anon_sym_false] = ACTIONS(1865), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1865), + [sym_super] = ACTIONS(1865), + [sym_crate] = ACTIONS(1865), + [sym_metavariable] = ACTIONS(1863), + [sym__raw_string_literal_start] = ACTIONS(1863), + [sym_float_literal] = ACTIONS(1863), }, [497] = { [sym_line_comment] = STATE(497), [sym_block_comment] = STATE(497), - [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_LBRACK] = ACTIONS(1734), - [anon_sym_LBRACE] = ACTIONS(1734), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(1734), - [anon_sym_BANG] = ACTIONS(1734), - [anon_sym_AMP] = ACTIONS(1734), - [anon_sym_PIPE] = ACTIONS(1734), - [anon_sym_LT] = ACTIONS(1734), - [anon_sym_DOT_DOT] = ACTIONS(1734), - [anon_sym_COLON_COLON] = ACTIONS(1734), - [anon_sym_POUND] = ACTIONS(1734), - [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_extern] = ACTIONS(1736), - [anon_sym_yield] = ACTIONS(1736), - [anon_sym_move] = ACTIONS(1736), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1736), - [sym_super] = ACTIONS(1736), - [sym_crate] = ACTIONS(1736), - [sym_metavariable] = ACTIONS(1734), - [sym__raw_string_literal_start] = ACTIONS(1734), - [sym_float_literal] = ACTIONS(1734), + [ts_builtin_sym_end] = ACTIONS(1867), + [sym_identifier] = ACTIONS(1869), + [anon_sym_SEMI] = ACTIONS(1867), + [anon_sym_macro_rules_BANG] = ACTIONS(1867), + [anon_sym_LPAREN] = ACTIONS(1867), + [anon_sym_LBRACK] = ACTIONS(1867), + [anon_sym_LBRACE] = ACTIONS(1867), + [anon_sym_RBRACE] = ACTIONS(1867), + [anon_sym_macro] = ACTIONS(1869), + [anon_sym_STAR] = ACTIONS(1867), + [anon_sym_u8] = ACTIONS(1869), + [anon_sym_i8] = ACTIONS(1869), + [anon_sym_u16] = ACTIONS(1869), + [anon_sym_i16] = ACTIONS(1869), + [anon_sym_u32] = ACTIONS(1869), + [anon_sym_i32] = ACTIONS(1869), + [anon_sym_u64] = ACTIONS(1869), + [anon_sym_i64] = ACTIONS(1869), + [anon_sym_u128] = ACTIONS(1869), + [anon_sym_i128] = ACTIONS(1869), + [anon_sym_isize] = ACTIONS(1869), + [anon_sym_usize] = ACTIONS(1869), + [anon_sym_f32] = ACTIONS(1869), + [anon_sym_f64] = ACTIONS(1869), + [anon_sym_bool] = ACTIONS(1869), + [anon_sym_str] = ACTIONS(1869), + [anon_sym_char] = ACTIONS(1869), + [anon_sym_DASH] = ACTIONS(1867), + [anon_sym_BANG] = ACTIONS(1867), + [anon_sym_AMP] = ACTIONS(1867), + [anon_sym_PIPE] = ACTIONS(1867), + [anon_sym_LT] = ACTIONS(1867), + [anon_sym_DOT_DOT] = ACTIONS(1867), + [anon_sym_COLON_COLON] = ACTIONS(1867), + [anon_sym_POUND] = ACTIONS(1867), + [anon_sym_SQUOTE] = ACTIONS(1869), + [anon_sym_async] = ACTIONS(1869), + [anon_sym_break] = ACTIONS(1869), + [anon_sym_const] = ACTIONS(1869), + [anon_sym_continue] = ACTIONS(1869), + [anon_sym_default] = ACTIONS(1869), + [anon_sym_enum] = ACTIONS(1869), + [anon_sym_fn] = ACTIONS(1869), + [anon_sym_for] = ACTIONS(1869), + [anon_sym_if] = ACTIONS(1869), + [anon_sym_impl] = ACTIONS(1869), + [anon_sym_let] = ACTIONS(1869), + [anon_sym_loop] = ACTIONS(1869), + [anon_sym_match] = ACTIONS(1869), + [anon_sym_mod] = ACTIONS(1869), + [anon_sym_pub] = ACTIONS(1869), + [anon_sym_return] = ACTIONS(1869), + [anon_sym_static] = ACTIONS(1869), + [anon_sym_struct] = ACTIONS(1869), + [anon_sym_trait] = ACTIONS(1869), + [anon_sym_type] = ACTIONS(1869), + [anon_sym_union] = ACTIONS(1869), + [anon_sym_unsafe] = ACTIONS(1869), + [anon_sym_use] = ACTIONS(1869), + [anon_sym_while] = ACTIONS(1869), + [anon_sym_extern] = ACTIONS(1869), + [anon_sym_yield] = ACTIONS(1869), + [anon_sym_move] = ACTIONS(1869), + [anon_sym_try] = ACTIONS(1869), + [sym_integer_literal] = ACTIONS(1867), + [aux_sym_string_literal_token1] = ACTIONS(1867), + [sym_char_literal] = ACTIONS(1867), + [anon_sym_true] = ACTIONS(1869), + [anon_sym_false] = ACTIONS(1869), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1869), + [sym_super] = ACTIONS(1869), + [sym_crate] = ACTIONS(1869), + [sym_metavariable] = ACTIONS(1867), + [sym__raw_string_literal_start] = ACTIONS(1867), + [sym_float_literal] = ACTIONS(1867), }, [498] = { [sym_line_comment] = STATE(498), [sym_block_comment] = STATE(498), - [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_LBRACK] = ACTIONS(1738), - [anon_sym_LBRACE] = ACTIONS(1738), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(1738), - [anon_sym_BANG] = ACTIONS(1738), - [anon_sym_AMP] = ACTIONS(1738), - [anon_sym_PIPE] = ACTIONS(1738), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_DOT_DOT] = ACTIONS(1738), - [anon_sym_COLON_COLON] = ACTIONS(1738), - [anon_sym_POUND] = ACTIONS(1738), - [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_extern] = ACTIONS(1740), - [anon_sym_yield] = ACTIONS(1740), - [anon_sym_move] = ACTIONS(1740), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1740), - [sym_super] = ACTIONS(1740), - [sym_crate] = ACTIONS(1740), - [sym_metavariable] = ACTIONS(1738), - [sym__raw_string_literal_start] = ACTIONS(1738), - [sym_float_literal] = ACTIONS(1738), + [ts_builtin_sym_end] = ACTIONS(1871), + [sym_identifier] = ACTIONS(1873), + [anon_sym_SEMI] = ACTIONS(1871), + [anon_sym_macro_rules_BANG] = ACTIONS(1871), + [anon_sym_LPAREN] = ACTIONS(1871), + [anon_sym_LBRACK] = ACTIONS(1871), + [anon_sym_LBRACE] = ACTIONS(1871), + [anon_sym_RBRACE] = ACTIONS(1871), + [anon_sym_macro] = ACTIONS(1873), + [anon_sym_STAR] = ACTIONS(1871), + [anon_sym_u8] = ACTIONS(1873), + [anon_sym_i8] = ACTIONS(1873), + [anon_sym_u16] = ACTIONS(1873), + [anon_sym_i16] = ACTIONS(1873), + [anon_sym_u32] = ACTIONS(1873), + [anon_sym_i32] = ACTIONS(1873), + [anon_sym_u64] = ACTIONS(1873), + [anon_sym_i64] = ACTIONS(1873), + [anon_sym_u128] = ACTIONS(1873), + [anon_sym_i128] = ACTIONS(1873), + [anon_sym_isize] = ACTIONS(1873), + [anon_sym_usize] = ACTIONS(1873), + [anon_sym_f32] = ACTIONS(1873), + [anon_sym_f64] = ACTIONS(1873), + [anon_sym_bool] = ACTIONS(1873), + [anon_sym_str] = ACTIONS(1873), + [anon_sym_char] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1871), + [anon_sym_BANG] = ACTIONS(1871), + [anon_sym_AMP] = ACTIONS(1871), + [anon_sym_PIPE] = ACTIONS(1871), + [anon_sym_LT] = ACTIONS(1871), + [anon_sym_DOT_DOT] = ACTIONS(1871), + [anon_sym_COLON_COLON] = ACTIONS(1871), + [anon_sym_POUND] = ACTIONS(1871), + [anon_sym_SQUOTE] = ACTIONS(1873), + [anon_sym_async] = ACTIONS(1873), + [anon_sym_break] = ACTIONS(1873), + [anon_sym_const] = ACTIONS(1873), + [anon_sym_continue] = ACTIONS(1873), + [anon_sym_default] = ACTIONS(1873), + [anon_sym_enum] = ACTIONS(1873), + [anon_sym_fn] = ACTIONS(1873), + [anon_sym_for] = ACTIONS(1873), + [anon_sym_if] = ACTIONS(1873), + [anon_sym_impl] = ACTIONS(1873), + [anon_sym_let] = ACTIONS(1873), + [anon_sym_loop] = ACTIONS(1873), + [anon_sym_match] = ACTIONS(1873), + [anon_sym_mod] = ACTIONS(1873), + [anon_sym_pub] = ACTIONS(1873), + [anon_sym_return] = ACTIONS(1873), + [anon_sym_static] = ACTIONS(1873), + [anon_sym_struct] = ACTIONS(1873), + [anon_sym_trait] = ACTIONS(1873), + [anon_sym_type] = ACTIONS(1873), + [anon_sym_union] = ACTIONS(1873), + [anon_sym_unsafe] = ACTIONS(1873), + [anon_sym_use] = ACTIONS(1873), + [anon_sym_while] = ACTIONS(1873), + [anon_sym_extern] = ACTIONS(1873), + [anon_sym_yield] = ACTIONS(1873), + [anon_sym_move] = ACTIONS(1873), + [anon_sym_try] = ACTIONS(1873), + [sym_integer_literal] = ACTIONS(1871), + [aux_sym_string_literal_token1] = ACTIONS(1871), + [sym_char_literal] = ACTIONS(1871), + [anon_sym_true] = ACTIONS(1873), + [anon_sym_false] = ACTIONS(1873), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1873), + [sym_super] = ACTIONS(1873), + [sym_crate] = ACTIONS(1873), + [sym_metavariable] = ACTIONS(1871), + [sym__raw_string_literal_start] = ACTIONS(1871), + [sym_float_literal] = ACTIONS(1871), }, [499] = { [sym_line_comment] = STATE(499), [sym_block_comment] = STATE(499), - [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_LBRACK] = ACTIONS(1742), - [anon_sym_LBRACE] = ACTIONS(1742), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(1742), - [anon_sym_BANG] = ACTIONS(1742), - [anon_sym_AMP] = ACTIONS(1742), - [anon_sym_PIPE] = ACTIONS(1742), - [anon_sym_LT] = ACTIONS(1742), - [anon_sym_DOT_DOT] = ACTIONS(1742), - [anon_sym_COLON_COLON] = ACTIONS(1742), - [anon_sym_POUND] = ACTIONS(1742), - [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_extern] = ACTIONS(1744), - [anon_sym_yield] = ACTIONS(1744), - [anon_sym_move] = ACTIONS(1744), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1744), - [sym_super] = ACTIONS(1744), - [sym_crate] = ACTIONS(1744), - [sym_metavariable] = ACTIONS(1742), - [sym__raw_string_literal_start] = ACTIONS(1742), - [sym_float_literal] = ACTIONS(1742), + [ts_builtin_sym_end] = ACTIONS(1875), + [sym_identifier] = ACTIONS(1877), + [anon_sym_SEMI] = ACTIONS(1875), + [anon_sym_macro_rules_BANG] = ACTIONS(1875), + [anon_sym_LPAREN] = ACTIONS(1875), + [anon_sym_LBRACK] = ACTIONS(1875), + [anon_sym_LBRACE] = ACTIONS(1875), + [anon_sym_RBRACE] = ACTIONS(1875), + [anon_sym_macro] = ACTIONS(1877), + [anon_sym_STAR] = ACTIONS(1875), + [anon_sym_u8] = ACTIONS(1877), + [anon_sym_i8] = ACTIONS(1877), + [anon_sym_u16] = ACTIONS(1877), + [anon_sym_i16] = ACTIONS(1877), + [anon_sym_u32] = ACTIONS(1877), + [anon_sym_i32] = ACTIONS(1877), + [anon_sym_u64] = ACTIONS(1877), + [anon_sym_i64] = ACTIONS(1877), + [anon_sym_u128] = ACTIONS(1877), + [anon_sym_i128] = ACTIONS(1877), + [anon_sym_isize] = ACTIONS(1877), + [anon_sym_usize] = ACTIONS(1877), + [anon_sym_f32] = ACTIONS(1877), + [anon_sym_f64] = ACTIONS(1877), + [anon_sym_bool] = ACTIONS(1877), + [anon_sym_str] = ACTIONS(1877), + [anon_sym_char] = ACTIONS(1877), + [anon_sym_DASH] = ACTIONS(1875), + [anon_sym_BANG] = ACTIONS(1875), + [anon_sym_AMP] = ACTIONS(1875), + [anon_sym_PIPE] = ACTIONS(1875), + [anon_sym_LT] = ACTIONS(1875), + [anon_sym_DOT_DOT] = ACTIONS(1875), + [anon_sym_COLON_COLON] = ACTIONS(1875), + [anon_sym_POUND] = ACTIONS(1875), + [anon_sym_SQUOTE] = ACTIONS(1877), + [anon_sym_async] = ACTIONS(1877), + [anon_sym_break] = ACTIONS(1877), + [anon_sym_const] = ACTIONS(1877), + [anon_sym_continue] = ACTIONS(1877), + [anon_sym_default] = ACTIONS(1877), + [anon_sym_enum] = ACTIONS(1877), + [anon_sym_fn] = ACTIONS(1877), + [anon_sym_for] = ACTIONS(1877), + [anon_sym_if] = ACTIONS(1877), + [anon_sym_impl] = ACTIONS(1877), + [anon_sym_let] = ACTIONS(1877), + [anon_sym_loop] = ACTIONS(1877), + [anon_sym_match] = ACTIONS(1877), + [anon_sym_mod] = ACTIONS(1877), + [anon_sym_pub] = ACTIONS(1877), + [anon_sym_return] = ACTIONS(1877), + [anon_sym_static] = ACTIONS(1877), + [anon_sym_struct] = ACTIONS(1877), + [anon_sym_trait] = ACTIONS(1877), + [anon_sym_type] = ACTIONS(1877), + [anon_sym_union] = ACTIONS(1877), + [anon_sym_unsafe] = ACTIONS(1877), + [anon_sym_use] = ACTIONS(1877), + [anon_sym_while] = ACTIONS(1877), + [anon_sym_extern] = ACTIONS(1877), + [anon_sym_yield] = ACTIONS(1877), + [anon_sym_move] = ACTIONS(1877), + [anon_sym_try] = ACTIONS(1877), + [sym_integer_literal] = ACTIONS(1875), + [aux_sym_string_literal_token1] = ACTIONS(1875), + [sym_char_literal] = ACTIONS(1875), + [anon_sym_true] = ACTIONS(1877), + [anon_sym_false] = ACTIONS(1877), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1877), + [sym_super] = ACTIONS(1877), + [sym_crate] = ACTIONS(1877), + [sym_metavariable] = ACTIONS(1875), + [sym__raw_string_literal_start] = ACTIONS(1875), + [sym_float_literal] = ACTIONS(1875), }, [500] = { [sym_line_comment] = STATE(500), [sym_block_comment] = STATE(500), - [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_LBRACK] = ACTIONS(1746), - [anon_sym_LBRACE] = ACTIONS(1746), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1746), - [anon_sym_AMP] = ACTIONS(1746), - [anon_sym_PIPE] = ACTIONS(1746), - [anon_sym_LT] = ACTIONS(1746), - [anon_sym_DOT_DOT] = ACTIONS(1746), - [anon_sym_COLON_COLON] = ACTIONS(1746), - [anon_sym_POUND] = ACTIONS(1746), - [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_extern] = ACTIONS(1748), - [anon_sym_yield] = ACTIONS(1748), - [anon_sym_move] = ACTIONS(1748), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1748), - [sym_super] = ACTIONS(1748), - [sym_crate] = ACTIONS(1748), - [sym_metavariable] = ACTIONS(1746), - [sym__raw_string_literal_start] = ACTIONS(1746), - [sym_float_literal] = ACTIONS(1746), + [ts_builtin_sym_end] = ACTIONS(1879), + [sym_identifier] = ACTIONS(1881), + [anon_sym_SEMI] = ACTIONS(1879), + [anon_sym_macro_rules_BANG] = ACTIONS(1879), + [anon_sym_LPAREN] = ACTIONS(1879), + [anon_sym_LBRACK] = ACTIONS(1879), + [anon_sym_LBRACE] = ACTIONS(1879), + [anon_sym_RBRACE] = ACTIONS(1879), + [anon_sym_macro] = ACTIONS(1881), + [anon_sym_STAR] = ACTIONS(1879), + [anon_sym_u8] = ACTIONS(1881), + [anon_sym_i8] = ACTIONS(1881), + [anon_sym_u16] = ACTIONS(1881), + [anon_sym_i16] = ACTIONS(1881), + [anon_sym_u32] = ACTIONS(1881), + [anon_sym_i32] = ACTIONS(1881), + [anon_sym_u64] = ACTIONS(1881), + [anon_sym_i64] = ACTIONS(1881), + [anon_sym_u128] = ACTIONS(1881), + [anon_sym_i128] = ACTIONS(1881), + [anon_sym_isize] = ACTIONS(1881), + [anon_sym_usize] = ACTIONS(1881), + [anon_sym_f32] = ACTIONS(1881), + [anon_sym_f64] = ACTIONS(1881), + [anon_sym_bool] = ACTIONS(1881), + [anon_sym_str] = ACTIONS(1881), + [anon_sym_char] = ACTIONS(1881), + [anon_sym_DASH] = ACTIONS(1879), + [anon_sym_BANG] = ACTIONS(1879), + [anon_sym_AMP] = ACTIONS(1879), + [anon_sym_PIPE] = ACTIONS(1879), + [anon_sym_LT] = ACTIONS(1879), + [anon_sym_DOT_DOT] = ACTIONS(1879), + [anon_sym_COLON_COLON] = ACTIONS(1879), + [anon_sym_POUND] = ACTIONS(1879), + [anon_sym_SQUOTE] = ACTIONS(1881), + [anon_sym_async] = ACTIONS(1881), + [anon_sym_break] = ACTIONS(1881), + [anon_sym_const] = ACTIONS(1881), + [anon_sym_continue] = ACTIONS(1881), + [anon_sym_default] = ACTIONS(1881), + [anon_sym_enum] = ACTIONS(1881), + [anon_sym_fn] = ACTIONS(1881), + [anon_sym_for] = ACTIONS(1881), + [anon_sym_if] = ACTIONS(1881), + [anon_sym_impl] = ACTIONS(1881), + [anon_sym_let] = ACTIONS(1881), + [anon_sym_loop] = ACTIONS(1881), + [anon_sym_match] = ACTIONS(1881), + [anon_sym_mod] = ACTIONS(1881), + [anon_sym_pub] = ACTIONS(1881), + [anon_sym_return] = ACTIONS(1881), + [anon_sym_static] = ACTIONS(1881), + [anon_sym_struct] = ACTIONS(1881), + [anon_sym_trait] = ACTIONS(1881), + [anon_sym_type] = ACTIONS(1881), + [anon_sym_union] = ACTIONS(1881), + [anon_sym_unsafe] = ACTIONS(1881), + [anon_sym_use] = ACTIONS(1881), + [anon_sym_while] = ACTIONS(1881), + [anon_sym_extern] = ACTIONS(1881), + [anon_sym_yield] = ACTIONS(1881), + [anon_sym_move] = ACTIONS(1881), + [anon_sym_try] = ACTIONS(1881), + [sym_integer_literal] = ACTIONS(1879), + [aux_sym_string_literal_token1] = ACTIONS(1879), + [sym_char_literal] = ACTIONS(1879), + [anon_sym_true] = ACTIONS(1881), + [anon_sym_false] = ACTIONS(1881), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1881), + [sym_super] = ACTIONS(1881), + [sym_crate] = ACTIONS(1881), + [sym_metavariable] = ACTIONS(1879), + [sym__raw_string_literal_start] = ACTIONS(1879), + [sym_float_literal] = ACTIONS(1879), }, [501] = { [sym_line_comment] = STATE(501), [sym_block_comment] = STATE(501), - [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_LBRACK] = ACTIONS(1750), - [anon_sym_LBRACE] = ACTIONS(1750), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(1750), - [anon_sym_BANG] = ACTIONS(1750), - [anon_sym_AMP] = ACTIONS(1750), - [anon_sym_PIPE] = ACTIONS(1750), - [anon_sym_LT] = ACTIONS(1750), - [anon_sym_DOT_DOT] = ACTIONS(1750), - [anon_sym_COLON_COLON] = ACTIONS(1750), - [anon_sym_POUND] = ACTIONS(1750), - [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_extern] = ACTIONS(1752), - [anon_sym_yield] = ACTIONS(1752), - [anon_sym_move] = ACTIONS(1752), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1752), - [sym_super] = ACTIONS(1752), - [sym_crate] = ACTIONS(1752), - [sym_metavariable] = ACTIONS(1750), - [sym__raw_string_literal_start] = ACTIONS(1750), - [sym_float_literal] = ACTIONS(1750), + [ts_builtin_sym_end] = ACTIONS(1883), + [sym_identifier] = ACTIONS(1885), + [anon_sym_SEMI] = ACTIONS(1883), + [anon_sym_macro_rules_BANG] = ACTIONS(1883), + [anon_sym_LPAREN] = ACTIONS(1883), + [anon_sym_LBRACK] = ACTIONS(1883), + [anon_sym_LBRACE] = ACTIONS(1883), + [anon_sym_RBRACE] = ACTIONS(1883), + [anon_sym_macro] = ACTIONS(1885), + [anon_sym_STAR] = ACTIONS(1883), + [anon_sym_u8] = ACTIONS(1885), + [anon_sym_i8] = ACTIONS(1885), + [anon_sym_u16] = ACTIONS(1885), + [anon_sym_i16] = ACTIONS(1885), + [anon_sym_u32] = ACTIONS(1885), + [anon_sym_i32] = ACTIONS(1885), + [anon_sym_u64] = ACTIONS(1885), + [anon_sym_i64] = ACTIONS(1885), + [anon_sym_u128] = ACTIONS(1885), + [anon_sym_i128] = ACTIONS(1885), + [anon_sym_isize] = ACTIONS(1885), + [anon_sym_usize] = ACTIONS(1885), + [anon_sym_f32] = ACTIONS(1885), + [anon_sym_f64] = ACTIONS(1885), + [anon_sym_bool] = ACTIONS(1885), + [anon_sym_str] = ACTIONS(1885), + [anon_sym_char] = ACTIONS(1885), + [anon_sym_DASH] = ACTIONS(1883), + [anon_sym_BANG] = ACTIONS(1883), + [anon_sym_AMP] = ACTIONS(1883), + [anon_sym_PIPE] = ACTIONS(1883), + [anon_sym_LT] = ACTIONS(1883), + [anon_sym_DOT_DOT] = ACTIONS(1883), + [anon_sym_COLON_COLON] = ACTIONS(1883), + [anon_sym_POUND] = ACTIONS(1883), + [anon_sym_SQUOTE] = ACTIONS(1885), + [anon_sym_async] = ACTIONS(1885), + [anon_sym_break] = ACTIONS(1885), + [anon_sym_const] = ACTIONS(1885), + [anon_sym_continue] = ACTIONS(1885), + [anon_sym_default] = ACTIONS(1885), + [anon_sym_enum] = ACTIONS(1885), + [anon_sym_fn] = ACTIONS(1885), + [anon_sym_for] = ACTIONS(1885), + [anon_sym_if] = ACTIONS(1885), + [anon_sym_impl] = ACTIONS(1885), + [anon_sym_let] = ACTIONS(1885), + [anon_sym_loop] = ACTIONS(1885), + [anon_sym_match] = ACTIONS(1885), + [anon_sym_mod] = ACTIONS(1885), + [anon_sym_pub] = ACTIONS(1885), + [anon_sym_return] = ACTIONS(1885), + [anon_sym_static] = ACTIONS(1885), + [anon_sym_struct] = ACTIONS(1885), + [anon_sym_trait] = ACTIONS(1885), + [anon_sym_type] = ACTIONS(1885), + [anon_sym_union] = ACTIONS(1885), + [anon_sym_unsafe] = ACTIONS(1885), + [anon_sym_use] = ACTIONS(1885), + [anon_sym_while] = ACTIONS(1885), + [anon_sym_extern] = ACTIONS(1885), + [anon_sym_yield] = ACTIONS(1885), + [anon_sym_move] = ACTIONS(1885), + [anon_sym_try] = ACTIONS(1885), + [sym_integer_literal] = ACTIONS(1883), + [aux_sym_string_literal_token1] = ACTIONS(1883), + [sym_char_literal] = ACTIONS(1883), + [anon_sym_true] = ACTIONS(1885), + [anon_sym_false] = ACTIONS(1885), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1885), + [sym_super] = ACTIONS(1885), + [sym_crate] = ACTIONS(1885), + [sym_metavariable] = ACTIONS(1883), + [sym__raw_string_literal_start] = ACTIONS(1883), + [sym_float_literal] = ACTIONS(1883), }, [502] = { [sym_line_comment] = STATE(502), [sym_block_comment] = STATE(502), - [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_LBRACK] = ACTIONS(1754), - [anon_sym_LBRACE] = ACTIONS(1754), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(1754), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_PIPE] = ACTIONS(1754), - [anon_sym_LT] = ACTIONS(1754), - [anon_sym_DOT_DOT] = ACTIONS(1754), - [anon_sym_COLON_COLON] = ACTIONS(1754), - [anon_sym_POUND] = ACTIONS(1754), - [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_extern] = ACTIONS(1756), - [anon_sym_yield] = ACTIONS(1756), - [anon_sym_move] = ACTIONS(1756), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1756), - [sym_super] = ACTIONS(1756), - [sym_crate] = ACTIONS(1756), - [sym_metavariable] = ACTIONS(1754), - [sym__raw_string_literal_start] = ACTIONS(1754), - [sym_float_literal] = ACTIONS(1754), + [ts_builtin_sym_end] = ACTIONS(1887), + [sym_identifier] = ACTIONS(1889), + [anon_sym_SEMI] = ACTIONS(1887), + [anon_sym_macro_rules_BANG] = ACTIONS(1887), + [anon_sym_LPAREN] = ACTIONS(1887), + [anon_sym_LBRACK] = ACTIONS(1887), + [anon_sym_LBRACE] = ACTIONS(1887), + [anon_sym_RBRACE] = ACTIONS(1887), + [anon_sym_macro] = ACTIONS(1889), + [anon_sym_STAR] = ACTIONS(1887), + [anon_sym_u8] = ACTIONS(1889), + [anon_sym_i8] = ACTIONS(1889), + [anon_sym_u16] = ACTIONS(1889), + [anon_sym_i16] = ACTIONS(1889), + [anon_sym_u32] = ACTIONS(1889), + [anon_sym_i32] = ACTIONS(1889), + [anon_sym_u64] = ACTIONS(1889), + [anon_sym_i64] = ACTIONS(1889), + [anon_sym_u128] = ACTIONS(1889), + [anon_sym_i128] = ACTIONS(1889), + [anon_sym_isize] = ACTIONS(1889), + [anon_sym_usize] = ACTIONS(1889), + [anon_sym_f32] = ACTIONS(1889), + [anon_sym_f64] = ACTIONS(1889), + [anon_sym_bool] = ACTIONS(1889), + [anon_sym_str] = ACTIONS(1889), + [anon_sym_char] = ACTIONS(1889), + [anon_sym_DASH] = ACTIONS(1887), + [anon_sym_BANG] = ACTIONS(1887), + [anon_sym_AMP] = ACTIONS(1887), + [anon_sym_PIPE] = ACTIONS(1887), + [anon_sym_LT] = ACTIONS(1887), + [anon_sym_DOT_DOT] = ACTIONS(1887), + [anon_sym_COLON_COLON] = ACTIONS(1887), + [anon_sym_POUND] = ACTIONS(1887), + [anon_sym_SQUOTE] = ACTIONS(1889), + [anon_sym_async] = ACTIONS(1889), + [anon_sym_break] = ACTIONS(1889), + [anon_sym_const] = ACTIONS(1889), + [anon_sym_continue] = ACTIONS(1889), + [anon_sym_default] = ACTIONS(1889), + [anon_sym_enum] = ACTIONS(1889), + [anon_sym_fn] = ACTIONS(1889), + [anon_sym_for] = ACTIONS(1889), + [anon_sym_if] = ACTIONS(1889), + [anon_sym_impl] = ACTIONS(1889), + [anon_sym_let] = ACTIONS(1889), + [anon_sym_loop] = ACTIONS(1889), + [anon_sym_match] = ACTIONS(1889), + [anon_sym_mod] = ACTIONS(1889), + [anon_sym_pub] = ACTIONS(1889), + [anon_sym_return] = ACTIONS(1889), + [anon_sym_static] = ACTIONS(1889), + [anon_sym_struct] = ACTIONS(1889), + [anon_sym_trait] = ACTIONS(1889), + [anon_sym_type] = ACTIONS(1889), + [anon_sym_union] = ACTIONS(1889), + [anon_sym_unsafe] = ACTIONS(1889), + [anon_sym_use] = ACTIONS(1889), + [anon_sym_while] = ACTIONS(1889), + [anon_sym_extern] = ACTIONS(1889), + [anon_sym_yield] = ACTIONS(1889), + [anon_sym_move] = ACTIONS(1889), + [anon_sym_try] = ACTIONS(1889), + [sym_integer_literal] = ACTIONS(1887), + [aux_sym_string_literal_token1] = ACTIONS(1887), + [sym_char_literal] = ACTIONS(1887), + [anon_sym_true] = ACTIONS(1889), + [anon_sym_false] = ACTIONS(1889), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1889), + [sym_super] = ACTIONS(1889), + [sym_crate] = ACTIONS(1889), + [sym_metavariable] = ACTIONS(1887), + [sym__raw_string_literal_start] = ACTIONS(1887), + [sym_float_literal] = ACTIONS(1887), }, [503] = { [sym_line_comment] = STATE(503), [sym_block_comment] = STATE(503), - [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_LBRACK] = ACTIONS(1758), - [anon_sym_LBRACE] = ACTIONS(1758), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(1758), - [anon_sym_BANG] = ACTIONS(1758), - [anon_sym_AMP] = ACTIONS(1758), - [anon_sym_PIPE] = ACTIONS(1758), - [anon_sym_LT] = ACTIONS(1758), - [anon_sym_DOT_DOT] = ACTIONS(1758), - [anon_sym_COLON_COLON] = ACTIONS(1758), - [anon_sym_POUND] = ACTIONS(1758), - [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_extern] = ACTIONS(1760), - [anon_sym_yield] = ACTIONS(1760), - [anon_sym_move] = ACTIONS(1760), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1760), - [sym_super] = ACTIONS(1760), - [sym_crate] = ACTIONS(1760), - [sym_metavariable] = ACTIONS(1758), - [sym__raw_string_literal_start] = ACTIONS(1758), - [sym_float_literal] = ACTIONS(1758), + [ts_builtin_sym_end] = ACTIONS(1891), + [sym_identifier] = ACTIONS(1893), + [anon_sym_SEMI] = ACTIONS(1891), + [anon_sym_macro_rules_BANG] = ACTIONS(1891), + [anon_sym_LPAREN] = ACTIONS(1891), + [anon_sym_LBRACK] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1891), + [anon_sym_RBRACE] = ACTIONS(1891), + [anon_sym_macro] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(1891), + [anon_sym_u8] = ACTIONS(1893), + [anon_sym_i8] = ACTIONS(1893), + [anon_sym_u16] = ACTIONS(1893), + [anon_sym_i16] = ACTIONS(1893), + [anon_sym_u32] = ACTIONS(1893), + [anon_sym_i32] = ACTIONS(1893), + [anon_sym_u64] = ACTIONS(1893), + [anon_sym_i64] = ACTIONS(1893), + [anon_sym_u128] = ACTIONS(1893), + [anon_sym_i128] = ACTIONS(1893), + [anon_sym_isize] = ACTIONS(1893), + [anon_sym_usize] = ACTIONS(1893), + [anon_sym_f32] = ACTIONS(1893), + [anon_sym_f64] = ACTIONS(1893), + [anon_sym_bool] = ACTIONS(1893), + [anon_sym_str] = ACTIONS(1893), + [anon_sym_char] = ACTIONS(1893), + [anon_sym_DASH] = ACTIONS(1891), + [anon_sym_BANG] = ACTIONS(1891), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_PIPE] = ACTIONS(1891), + [anon_sym_LT] = ACTIONS(1891), + [anon_sym_DOT_DOT] = ACTIONS(1891), + [anon_sym_COLON_COLON] = ACTIONS(1891), + [anon_sym_POUND] = ACTIONS(1891), + [anon_sym_SQUOTE] = ACTIONS(1893), + [anon_sym_async] = ACTIONS(1893), + [anon_sym_break] = ACTIONS(1893), + [anon_sym_const] = ACTIONS(1893), + [anon_sym_continue] = ACTIONS(1893), + [anon_sym_default] = ACTIONS(1893), + [anon_sym_enum] = ACTIONS(1893), + [anon_sym_fn] = ACTIONS(1893), + [anon_sym_for] = ACTIONS(1893), + [anon_sym_if] = ACTIONS(1893), + [anon_sym_impl] = ACTIONS(1893), + [anon_sym_let] = ACTIONS(1893), + [anon_sym_loop] = ACTIONS(1893), + [anon_sym_match] = ACTIONS(1893), + [anon_sym_mod] = ACTIONS(1893), + [anon_sym_pub] = ACTIONS(1893), + [anon_sym_return] = ACTIONS(1893), + [anon_sym_static] = ACTIONS(1893), + [anon_sym_struct] = ACTIONS(1893), + [anon_sym_trait] = ACTIONS(1893), + [anon_sym_type] = ACTIONS(1893), + [anon_sym_union] = ACTIONS(1893), + [anon_sym_unsafe] = ACTIONS(1893), + [anon_sym_use] = ACTIONS(1893), + [anon_sym_while] = ACTIONS(1893), + [anon_sym_extern] = ACTIONS(1893), + [anon_sym_yield] = ACTIONS(1893), + [anon_sym_move] = ACTIONS(1893), + [anon_sym_try] = ACTIONS(1893), + [sym_integer_literal] = ACTIONS(1891), + [aux_sym_string_literal_token1] = ACTIONS(1891), + [sym_char_literal] = ACTIONS(1891), + [anon_sym_true] = ACTIONS(1893), + [anon_sym_false] = ACTIONS(1893), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1893), + [sym_super] = ACTIONS(1893), + [sym_crate] = ACTIONS(1893), + [sym_metavariable] = ACTIONS(1891), + [sym__raw_string_literal_start] = ACTIONS(1891), + [sym_float_literal] = ACTIONS(1891), }, [504] = { [sym_line_comment] = STATE(504), [sym_block_comment] = STATE(504), - [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_LBRACK] = ACTIONS(1762), - [anon_sym_LBRACE] = ACTIONS(1762), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(1762), - [anon_sym_BANG] = ACTIONS(1762), - [anon_sym_AMP] = ACTIONS(1762), - [anon_sym_PIPE] = ACTIONS(1762), - [anon_sym_LT] = ACTIONS(1762), - [anon_sym_DOT_DOT] = ACTIONS(1762), - [anon_sym_COLON_COLON] = ACTIONS(1762), - [anon_sym_POUND] = ACTIONS(1762), - [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_extern] = ACTIONS(1764), - [anon_sym_yield] = ACTIONS(1764), - [anon_sym_move] = ACTIONS(1764), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1764), - [sym_super] = ACTIONS(1764), - [sym_crate] = ACTIONS(1764), - [sym_metavariable] = ACTIONS(1762), - [sym__raw_string_literal_start] = ACTIONS(1762), - [sym_float_literal] = ACTIONS(1762), + [ts_builtin_sym_end] = ACTIONS(1895), + [sym_identifier] = ACTIONS(1897), + [anon_sym_SEMI] = ACTIONS(1895), + [anon_sym_macro_rules_BANG] = ACTIONS(1895), + [anon_sym_LPAREN] = ACTIONS(1895), + [anon_sym_LBRACK] = ACTIONS(1895), + [anon_sym_LBRACE] = ACTIONS(1895), + [anon_sym_RBRACE] = ACTIONS(1895), + [anon_sym_macro] = ACTIONS(1897), + [anon_sym_STAR] = ACTIONS(1895), + [anon_sym_u8] = ACTIONS(1897), + [anon_sym_i8] = ACTIONS(1897), + [anon_sym_u16] = ACTIONS(1897), + [anon_sym_i16] = ACTIONS(1897), + [anon_sym_u32] = ACTIONS(1897), + [anon_sym_i32] = ACTIONS(1897), + [anon_sym_u64] = ACTIONS(1897), + [anon_sym_i64] = ACTIONS(1897), + [anon_sym_u128] = ACTIONS(1897), + [anon_sym_i128] = ACTIONS(1897), + [anon_sym_isize] = ACTIONS(1897), + [anon_sym_usize] = ACTIONS(1897), + [anon_sym_f32] = ACTIONS(1897), + [anon_sym_f64] = ACTIONS(1897), + [anon_sym_bool] = ACTIONS(1897), + [anon_sym_str] = ACTIONS(1897), + [anon_sym_char] = ACTIONS(1897), + [anon_sym_DASH] = ACTIONS(1895), + [anon_sym_BANG] = ACTIONS(1895), + [anon_sym_AMP] = ACTIONS(1895), + [anon_sym_PIPE] = ACTIONS(1895), + [anon_sym_LT] = ACTIONS(1895), + [anon_sym_DOT_DOT] = ACTIONS(1895), + [anon_sym_COLON_COLON] = ACTIONS(1895), + [anon_sym_POUND] = ACTIONS(1895), + [anon_sym_SQUOTE] = ACTIONS(1897), + [anon_sym_async] = ACTIONS(1897), + [anon_sym_break] = ACTIONS(1897), + [anon_sym_const] = ACTIONS(1897), + [anon_sym_continue] = ACTIONS(1897), + [anon_sym_default] = ACTIONS(1897), + [anon_sym_enum] = ACTIONS(1897), + [anon_sym_fn] = ACTIONS(1897), + [anon_sym_for] = ACTIONS(1897), + [anon_sym_if] = ACTIONS(1897), + [anon_sym_impl] = ACTIONS(1897), + [anon_sym_let] = ACTIONS(1897), + [anon_sym_loop] = ACTIONS(1897), + [anon_sym_match] = ACTIONS(1897), + [anon_sym_mod] = ACTIONS(1897), + [anon_sym_pub] = ACTIONS(1897), + [anon_sym_return] = ACTIONS(1897), + [anon_sym_static] = ACTIONS(1897), + [anon_sym_struct] = ACTIONS(1897), + [anon_sym_trait] = ACTIONS(1897), + [anon_sym_type] = ACTIONS(1897), + [anon_sym_union] = ACTIONS(1897), + [anon_sym_unsafe] = ACTIONS(1897), + [anon_sym_use] = ACTIONS(1897), + [anon_sym_while] = ACTIONS(1897), + [anon_sym_extern] = ACTIONS(1897), + [anon_sym_yield] = ACTIONS(1897), + [anon_sym_move] = ACTIONS(1897), + [anon_sym_try] = ACTIONS(1897), + [sym_integer_literal] = ACTIONS(1895), + [aux_sym_string_literal_token1] = ACTIONS(1895), + [sym_char_literal] = ACTIONS(1895), + [anon_sym_true] = ACTIONS(1897), + [anon_sym_false] = ACTIONS(1897), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1897), + [sym_super] = ACTIONS(1897), + [sym_crate] = ACTIONS(1897), + [sym_metavariable] = ACTIONS(1895), + [sym__raw_string_literal_start] = ACTIONS(1895), + [sym_float_literal] = ACTIONS(1895), }, [505] = { [sym_line_comment] = STATE(505), [sym_block_comment] = STATE(505), - [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_LBRACK] = ACTIONS(1766), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(1766), - [anon_sym_BANG] = ACTIONS(1766), - [anon_sym_AMP] = ACTIONS(1766), - [anon_sym_PIPE] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1766), - [anon_sym_DOT_DOT] = ACTIONS(1766), - [anon_sym_COLON_COLON] = ACTIONS(1766), - [anon_sym_POUND] = ACTIONS(1766), - [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_extern] = ACTIONS(1768), - [anon_sym_yield] = ACTIONS(1768), - [anon_sym_move] = ACTIONS(1768), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1768), - [sym_super] = ACTIONS(1768), - [sym_crate] = ACTIONS(1768), - [sym_metavariable] = ACTIONS(1766), - [sym__raw_string_literal_start] = ACTIONS(1766), - [sym_float_literal] = ACTIONS(1766), + [ts_builtin_sym_end] = ACTIONS(1899), + [sym_identifier] = ACTIONS(1901), + [anon_sym_SEMI] = ACTIONS(1899), + [anon_sym_macro_rules_BANG] = ACTIONS(1899), + [anon_sym_LPAREN] = ACTIONS(1899), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_LBRACE] = ACTIONS(1899), + [anon_sym_RBRACE] = ACTIONS(1899), + [anon_sym_macro] = ACTIONS(1901), + [anon_sym_STAR] = ACTIONS(1899), + [anon_sym_u8] = ACTIONS(1901), + [anon_sym_i8] = ACTIONS(1901), + [anon_sym_u16] = ACTIONS(1901), + [anon_sym_i16] = ACTIONS(1901), + [anon_sym_u32] = ACTIONS(1901), + [anon_sym_i32] = ACTIONS(1901), + [anon_sym_u64] = ACTIONS(1901), + [anon_sym_i64] = ACTIONS(1901), + [anon_sym_u128] = ACTIONS(1901), + [anon_sym_i128] = ACTIONS(1901), + [anon_sym_isize] = ACTIONS(1901), + [anon_sym_usize] = ACTIONS(1901), + [anon_sym_f32] = ACTIONS(1901), + [anon_sym_f64] = ACTIONS(1901), + [anon_sym_bool] = ACTIONS(1901), + [anon_sym_str] = ACTIONS(1901), + [anon_sym_char] = ACTIONS(1901), + [anon_sym_DASH] = ACTIONS(1899), + [anon_sym_BANG] = ACTIONS(1899), + [anon_sym_AMP] = ACTIONS(1899), + [anon_sym_PIPE] = ACTIONS(1899), + [anon_sym_LT] = ACTIONS(1899), + [anon_sym_DOT_DOT] = ACTIONS(1899), + [anon_sym_COLON_COLON] = ACTIONS(1899), + [anon_sym_POUND] = ACTIONS(1899), + [anon_sym_SQUOTE] = ACTIONS(1901), + [anon_sym_async] = ACTIONS(1901), + [anon_sym_break] = ACTIONS(1901), + [anon_sym_const] = ACTIONS(1901), + [anon_sym_continue] = ACTIONS(1901), + [anon_sym_default] = ACTIONS(1901), + [anon_sym_enum] = ACTIONS(1901), + [anon_sym_fn] = ACTIONS(1901), + [anon_sym_for] = ACTIONS(1901), + [anon_sym_if] = ACTIONS(1901), + [anon_sym_impl] = ACTIONS(1901), + [anon_sym_let] = ACTIONS(1901), + [anon_sym_loop] = ACTIONS(1901), + [anon_sym_match] = ACTIONS(1901), + [anon_sym_mod] = ACTIONS(1901), + [anon_sym_pub] = ACTIONS(1901), + [anon_sym_return] = ACTIONS(1901), + [anon_sym_static] = ACTIONS(1901), + [anon_sym_struct] = ACTIONS(1901), + [anon_sym_trait] = ACTIONS(1901), + [anon_sym_type] = ACTIONS(1901), + [anon_sym_union] = ACTIONS(1901), + [anon_sym_unsafe] = ACTIONS(1901), + [anon_sym_use] = ACTIONS(1901), + [anon_sym_while] = ACTIONS(1901), + [anon_sym_extern] = ACTIONS(1901), + [anon_sym_yield] = ACTIONS(1901), + [anon_sym_move] = ACTIONS(1901), + [anon_sym_try] = ACTIONS(1901), + [sym_integer_literal] = ACTIONS(1899), + [aux_sym_string_literal_token1] = ACTIONS(1899), + [sym_char_literal] = ACTIONS(1899), + [anon_sym_true] = ACTIONS(1901), + [anon_sym_false] = ACTIONS(1901), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1901), + [sym_super] = ACTIONS(1901), + [sym_crate] = ACTIONS(1901), + [sym_metavariable] = ACTIONS(1899), + [sym__raw_string_literal_start] = ACTIONS(1899), + [sym_float_literal] = ACTIONS(1899), }, [506] = { [sym_line_comment] = STATE(506), [sym_block_comment] = STATE(506), - [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_LBRACK] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1770), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(1770), - [anon_sym_BANG] = ACTIONS(1770), - [anon_sym_AMP] = ACTIONS(1770), - [anon_sym_PIPE] = ACTIONS(1770), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_DOT_DOT] = ACTIONS(1770), - [anon_sym_COLON_COLON] = ACTIONS(1770), - [anon_sym_POUND] = ACTIONS(1770), - [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_extern] = ACTIONS(1772), - [anon_sym_yield] = ACTIONS(1772), - [anon_sym_move] = ACTIONS(1772), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1772), - [sym_super] = ACTIONS(1772), - [sym_crate] = ACTIONS(1772), - [sym_metavariable] = ACTIONS(1770), - [sym__raw_string_literal_start] = ACTIONS(1770), - [sym_float_literal] = ACTIONS(1770), + [ts_builtin_sym_end] = ACTIONS(1903), + [sym_identifier] = ACTIONS(1905), + [anon_sym_SEMI] = ACTIONS(1903), + [anon_sym_macro_rules_BANG] = ACTIONS(1903), + [anon_sym_LPAREN] = ACTIONS(1903), + [anon_sym_LBRACK] = ACTIONS(1903), + [anon_sym_LBRACE] = ACTIONS(1903), + [anon_sym_RBRACE] = ACTIONS(1903), + [anon_sym_macro] = ACTIONS(1905), + [anon_sym_STAR] = ACTIONS(1903), + [anon_sym_u8] = ACTIONS(1905), + [anon_sym_i8] = ACTIONS(1905), + [anon_sym_u16] = ACTIONS(1905), + [anon_sym_i16] = ACTIONS(1905), + [anon_sym_u32] = ACTIONS(1905), + [anon_sym_i32] = ACTIONS(1905), + [anon_sym_u64] = ACTIONS(1905), + [anon_sym_i64] = ACTIONS(1905), + [anon_sym_u128] = ACTIONS(1905), + [anon_sym_i128] = ACTIONS(1905), + [anon_sym_isize] = ACTIONS(1905), + [anon_sym_usize] = ACTIONS(1905), + [anon_sym_f32] = ACTIONS(1905), + [anon_sym_f64] = ACTIONS(1905), + [anon_sym_bool] = ACTIONS(1905), + [anon_sym_str] = ACTIONS(1905), + [anon_sym_char] = ACTIONS(1905), + [anon_sym_DASH] = ACTIONS(1903), + [anon_sym_BANG] = ACTIONS(1903), + [anon_sym_AMP] = ACTIONS(1903), + [anon_sym_PIPE] = ACTIONS(1903), + [anon_sym_LT] = ACTIONS(1903), + [anon_sym_DOT_DOT] = ACTIONS(1903), + [anon_sym_COLON_COLON] = ACTIONS(1903), + [anon_sym_POUND] = ACTIONS(1903), + [anon_sym_SQUOTE] = ACTIONS(1905), + [anon_sym_async] = ACTIONS(1905), + [anon_sym_break] = ACTIONS(1905), + [anon_sym_const] = ACTIONS(1905), + [anon_sym_continue] = ACTIONS(1905), + [anon_sym_default] = ACTIONS(1905), + [anon_sym_enum] = ACTIONS(1905), + [anon_sym_fn] = ACTIONS(1905), + [anon_sym_for] = ACTIONS(1905), + [anon_sym_if] = ACTIONS(1905), + [anon_sym_impl] = ACTIONS(1905), + [anon_sym_let] = ACTIONS(1905), + [anon_sym_loop] = ACTIONS(1905), + [anon_sym_match] = ACTIONS(1905), + [anon_sym_mod] = ACTIONS(1905), + [anon_sym_pub] = ACTIONS(1905), + [anon_sym_return] = ACTIONS(1905), + [anon_sym_static] = ACTIONS(1905), + [anon_sym_struct] = ACTIONS(1905), + [anon_sym_trait] = ACTIONS(1905), + [anon_sym_type] = ACTIONS(1905), + [anon_sym_union] = ACTIONS(1905), + [anon_sym_unsafe] = ACTIONS(1905), + [anon_sym_use] = ACTIONS(1905), + [anon_sym_while] = ACTIONS(1905), + [anon_sym_extern] = ACTIONS(1905), + [anon_sym_yield] = ACTIONS(1905), + [anon_sym_move] = ACTIONS(1905), + [anon_sym_try] = ACTIONS(1905), + [sym_integer_literal] = ACTIONS(1903), + [aux_sym_string_literal_token1] = ACTIONS(1903), + [sym_char_literal] = ACTIONS(1903), + [anon_sym_true] = ACTIONS(1905), + [anon_sym_false] = ACTIONS(1905), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1905), + [sym_super] = ACTIONS(1905), + [sym_crate] = ACTIONS(1905), + [sym_metavariable] = ACTIONS(1903), + [sym__raw_string_literal_start] = ACTIONS(1903), + [sym_float_literal] = ACTIONS(1903), }, [507] = { [sym_line_comment] = STATE(507), [sym_block_comment] = STATE(507), - [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_LBRACK] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1774), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(1774), - [anon_sym_BANG] = ACTIONS(1774), - [anon_sym_AMP] = ACTIONS(1774), - [anon_sym_PIPE] = ACTIONS(1774), - [anon_sym_LT] = ACTIONS(1774), - [anon_sym_DOT_DOT] = ACTIONS(1774), - [anon_sym_COLON_COLON] = ACTIONS(1774), - [anon_sym_POUND] = ACTIONS(1774), - [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_extern] = ACTIONS(1776), - [anon_sym_yield] = ACTIONS(1776), - [anon_sym_move] = ACTIONS(1776), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1776), - [sym_super] = ACTIONS(1776), - [sym_crate] = ACTIONS(1776), - [sym_metavariable] = ACTIONS(1774), - [sym__raw_string_literal_start] = ACTIONS(1774), - [sym_float_literal] = ACTIONS(1774), + [ts_builtin_sym_end] = ACTIONS(1907), + [sym_identifier] = ACTIONS(1909), + [anon_sym_SEMI] = ACTIONS(1907), + [anon_sym_macro_rules_BANG] = ACTIONS(1907), + [anon_sym_LPAREN] = ACTIONS(1907), + [anon_sym_LBRACK] = ACTIONS(1907), + [anon_sym_LBRACE] = ACTIONS(1907), + [anon_sym_RBRACE] = ACTIONS(1907), + [anon_sym_macro] = ACTIONS(1909), + [anon_sym_STAR] = ACTIONS(1907), + [anon_sym_u8] = ACTIONS(1909), + [anon_sym_i8] = ACTIONS(1909), + [anon_sym_u16] = ACTIONS(1909), + [anon_sym_i16] = ACTIONS(1909), + [anon_sym_u32] = ACTIONS(1909), + [anon_sym_i32] = ACTIONS(1909), + [anon_sym_u64] = ACTIONS(1909), + [anon_sym_i64] = ACTIONS(1909), + [anon_sym_u128] = ACTIONS(1909), + [anon_sym_i128] = ACTIONS(1909), + [anon_sym_isize] = ACTIONS(1909), + [anon_sym_usize] = ACTIONS(1909), + [anon_sym_f32] = ACTIONS(1909), + [anon_sym_f64] = ACTIONS(1909), + [anon_sym_bool] = ACTIONS(1909), + [anon_sym_str] = ACTIONS(1909), + [anon_sym_char] = ACTIONS(1909), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_BANG] = ACTIONS(1907), + [anon_sym_AMP] = ACTIONS(1907), + [anon_sym_PIPE] = ACTIONS(1907), + [anon_sym_LT] = ACTIONS(1907), + [anon_sym_DOT_DOT] = ACTIONS(1907), + [anon_sym_COLON_COLON] = ACTIONS(1907), + [anon_sym_POUND] = ACTIONS(1907), + [anon_sym_SQUOTE] = ACTIONS(1909), + [anon_sym_async] = ACTIONS(1909), + [anon_sym_break] = ACTIONS(1909), + [anon_sym_const] = ACTIONS(1909), + [anon_sym_continue] = ACTIONS(1909), + [anon_sym_default] = ACTIONS(1909), + [anon_sym_enum] = ACTIONS(1909), + [anon_sym_fn] = ACTIONS(1909), + [anon_sym_for] = ACTIONS(1909), + [anon_sym_if] = ACTIONS(1909), + [anon_sym_impl] = ACTIONS(1909), + [anon_sym_let] = ACTIONS(1909), + [anon_sym_loop] = ACTIONS(1909), + [anon_sym_match] = ACTIONS(1909), + [anon_sym_mod] = ACTIONS(1909), + [anon_sym_pub] = ACTIONS(1909), + [anon_sym_return] = ACTIONS(1909), + [anon_sym_static] = ACTIONS(1909), + [anon_sym_struct] = ACTIONS(1909), + [anon_sym_trait] = ACTIONS(1909), + [anon_sym_type] = ACTIONS(1909), + [anon_sym_union] = ACTIONS(1909), + [anon_sym_unsafe] = ACTIONS(1909), + [anon_sym_use] = ACTIONS(1909), + [anon_sym_while] = ACTIONS(1909), + [anon_sym_extern] = ACTIONS(1909), + [anon_sym_yield] = ACTIONS(1909), + [anon_sym_move] = ACTIONS(1909), + [anon_sym_try] = ACTIONS(1909), + [sym_integer_literal] = ACTIONS(1907), + [aux_sym_string_literal_token1] = ACTIONS(1907), + [sym_char_literal] = ACTIONS(1907), + [anon_sym_true] = ACTIONS(1909), + [anon_sym_false] = ACTIONS(1909), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1909), + [sym_super] = ACTIONS(1909), + [sym_crate] = ACTIONS(1909), + [sym_metavariable] = ACTIONS(1907), + [sym__raw_string_literal_start] = ACTIONS(1907), + [sym_float_literal] = ACTIONS(1907), }, [508] = { [sym_line_comment] = STATE(508), [sym_block_comment] = STATE(508), - [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_LBRACK] = ACTIONS(1778), - [anon_sym_LBRACE] = ACTIONS(1778), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(1778), - [anon_sym_BANG] = ACTIONS(1778), - [anon_sym_AMP] = ACTIONS(1778), - [anon_sym_PIPE] = ACTIONS(1778), - [anon_sym_LT] = ACTIONS(1778), - [anon_sym_DOT_DOT] = ACTIONS(1778), - [anon_sym_COLON_COLON] = ACTIONS(1778), - [anon_sym_POUND] = ACTIONS(1778), - [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_extern] = ACTIONS(1780), - [anon_sym_yield] = ACTIONS(1780), - [anon_sym_move] = ACTIONS(1780), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1780), - [sym_super] = ACTIONS(1780), - [sym_crate] = ACTIONS(1780), - [sym_metavariable] = ACTIONS(1778), - [sym__raw_string_literal_start] = ACTIONS(1778), - [sym_float_literal] = ACTIONS(1778), + [ts_builtin_sym_end] = ACTIONS(1911), + [sym_identifier] = ACTIONS(1913), + [anon_sym_SEMI] = ACTIONS(1911), + [anon_sym_macro_rules_BANG] = ACTIONS(1911), + [anon_sym_LPAREN] = ACTIONS(1911), + [anon_sym_LBRACK] = ACTIONS(1911), + [anon_sym_LBRACE] = ACTIONS(1911), + [anon_sym_RBRACE] = ACTIONS(1911), + [anon_sym_macro] = ACTIONS(1913), + [anon_sym_STAR] = ACTIONS(1911), + [anon_sym_u8] = ACTIONS(1913), + [anon_sym_i8] = ACTIONS(1913), + [anon_sym_u16] = ACTIONS(1913), + [anon_sym_i16] = ACTIONS(1913), + [anon_sym_u32] = ACTIONS(1913), + [anon_sym_i32] = ACTIONS(1913), + [anon_sym_u64] = ACTIONS(1913), + [anon_sym_i64] = ACTIONS(1913), + [anon_sym_u128] = ACTIONS(1913), + [anon_sym_i128] = ACTIONS(1913), + [anon_sym_isize] = ACTIONS(1913), + [anon_sym_usize] = ACTIONS(1913), + [anon_sym_f32] = ACTIONS(1913), + [anon_sym_f64] = ACTIONS(1913), + [anon_sym_bool] = ACTIONS(1913), + [anon_sym_str] = ACTIONS(1913), + [anon_sym_char] = ACTIONS(1913), + [anon_sym_DASH] = ACTIONS(1911), + [anon_sym_BANG] = ACTIONS(1911), + [anon_sym_AMP] = ACTIONS(1911), + [anon_sym_PIPE] = ACTIONS(1911), + [anon_sym_LT] = ACTIONS(1911), + [anon_sym_DOT_DOT] = ACTIONS(1911), + [anon_sym_COLON_COLON] = ACTIONS(1911), + [anon_sym_POUND] = ACTIONS(1911), + [anon_sym_SQUOTE] = ACTIONS(1913), + [anon_sym_async] = ACTIONS(1913), + [anon_sym_break] = ACTIONS(1913), + [anon_sym_const] = ACTIONS(1913), + [anon_sym_continue] = ACTIONS(1913), + [anon_sym_default] = ACTIONS(1913), + [anon_sym_enum] = ACTIONS(1913), + [anon_sym_fn] = ACTIONS(1913), + [anon_sym_for] = ACTIONS(1913), + [anon_sym_if] = ACTIONS(1913), + [anon_sym_impl] = ACTIONS(1913), + [anon_sym_let] = ACTIONS(1913), + [anon_sym_loop] = ACTIONS(1913), + [anon_sym_match] = ACTIONS(1913), + [anon_sym_mod] = ACTIONS(1913), + [anon_sym_pub] = ACTIONS(1913), + [anon_sym_return] = ACTIONS(1913), + [anon_sym_static] = ACTIONS(1913), + [anon_sym_struct] = ACTIONS(1913), + [anon_sym_trait] = ACTIONS(1913), + [anon_sym_type] = ACTIONS(1913), + [anon_sym_union] = ACTIONS(1913), + [anon_sym_unsafe] = ACTIONS(1913), + [anon_sym_use] = ACTIONS(1913), + [anon_sym_while] = ACTIONS(1913), + [anon_sym_extern] = ACTIONS(1913), + [anon_sym_yield] = ACTIONS(1913), + [anon_sym_move] = ACTIONS(1913), + [anon_sym_try] = ACTIONS(1913), + [sym_integer_literal] = ACTIONS(1911), + [aux_sym_string_literal_token1] = ACTIONS(1911), + [sym_char_literal] = ACTIONS(1911), + [anon_sym_true] = ACTIONS(1913), + [anon_sym_false] = ACTIONS(1913), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1913), + [sym_super] = ACTIONS(1913), + [sym_crate] = ACTIONS(1913), + [sym_metavariable] = ACTIONS(1911), + [sym__raw_string_literal_start] = ACTIONS(1911), + [sym_float_literal] = ACTIONS(1911), }, [509] = { [sym_line_comment] = STATE(509), [sym_block_comment] = STATE(509), - [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_LBRACK] = ACTIONS(1782), - [anon_sym_LBRACE] = ACTIONS(1782), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1782), - [anon_sym_AMP] = ACTIONS(1782), - [anon_sym_PIPE] = ACTIONS(1782), - [anon_sym_LT] = ACTIONS(1782), - [anon_sym_DOT_DOT] = ACTIONS(1782), - [anon_sym_COLON_COLON] = ACTIONS(1782), - [anon_sym_POUND] = ACTIONS(1782), - [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_extern] = ACTIONS(1784), - [anon_sym_yield] = ACTIONS(1784), - [anon_sym_move] = ACTIONS(1784), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1784), - [sym_super] = ACTIONS(1784), - [sym_crate] = ACTIONS(1784), - [sym_metavariable] = ACTIONS(1782), - [sym__raw_string_literal_start] = ACTIONS(1782), - [sym_float_literal] = ACTIONS(1782), + [ts_builtin_sym_end] = ACTIONS(1915), + [sym_identifier] = ACTIONS(1917), + [anon_sym_SEMI] = ACTIONS(1915), + [anon_sym_macro_rules_BANG] = ACTIONS(1915), + [anon_sym_LPAREN] = ACTIONS(1915), + [anon_sym_LBRACK] = ACTIONS(1915), + [anon_sym_LBRACE] = ACTIONS(1915), + [anon_sym_RBRACE] = ACTIONS(1915), + [anon_sym_macro] = ACTIONS(1917), + [anon_sym_STAR] = ACTIONS(1915), + [anon_sym_u8] = ACTIONS(1917), + [anon_sym_i8] = ACTIONS(1917), + [anon_sym_u16] = ACTIONS(1917), + [anon_sym_i16] = ACTIONS(1917), + [anon_sym_u32] = ACTIONS(1917), + [anon_sym_i32] = ACTIONS(1917), + [anon_sym_u64] = ACTIONS(1917), + [anon_sym_i64] = ACTIONS(1917), + [anon_sym_u128] = ACTIONS(1917), + [anon_sym_i128] = ACTIONS(1917), + [anon_sym_isize] = ACTIONS(1917), + [anon_sym_usize] = ACTIONS(1917), + [anon_sym_f32] = ACTIONS(1917), + [anon_sym_f64] = ACTIONS(1917), + [anon_sym_bool] = ACTIONS(1917), + [anon_sym_str] = ACTIONS(1917), + [anon_sym_char] = ACTIONS(1917), + [anon_sym_DASH] = ACTIONS(1915), + [anon_sym_BANG] = ACTIONS(1915), + [anon_sym_AMP] = ACTIONS(1915), + [anon_sym_PIPE] = ACTIONS(1915), + [anon_sym_LT] = ACTIONS(1915), + [anon_sym_DOT_DOT] = ACTIONS(1915), + [anon_sym_COLON_COLON] = ACTIONS(1915), + [anon_sym_POUND] = ACTIONS(1915), + [anon_sym_SQUOTE] = ACTIONS(1917), + [anon_sym_async] = ACTIONS(1917), + [anon_sym_break] = ACTIONS(1917), + [anon_sym_const] = ACTIONS(1917), + [anon_sym_continue] = ACTIONS(1917), + [anon_sym_default] = ACTIONS(1917), + [anon_sym_enum] = ACTIONS(1917), + [anon_sym_fn] = ACTIONS(1917), + [anon_sym_for] = ACTIONS(1917), + [anon_sym_if] = ACTIONS(1917), + [anon_sym_impl] = ACTIONS(1917), + [anon_sym_let] = ACTIONS(1917), + [anon_sym_loop] = ACTIONS(1917), + [anon_sym_match] = ACTIONS(1917), + [anon_sym_mod] = ACTIONS(1917), + [anon_sym_pub] = ACTIONS(1917), + [anon_sym_return] = ACTIONS(1917), + [anon_sym_static] = ACTIONS(1917), + [anon_sym_struct] = ACTIONS(1917), + [anon_sym_trait] = ACTIONS(1917), + [anon_sym_type] = ACTIONS(1917), + [anon_sym_union] = ACTIONS(1917), + [anon_sym_unsafe] = ACTIONS(1917), + [anon_sym_use] = ACTIONS(1917), + [anon_sym_while] = ACTIONS(1917), + [anon_sym_extern] = ACTIONS(1917), + [anon_sym_yield] = ACTIONS(1917), + [anon_sym_move] = ACTIONS(1917), + [anon_sym_try] = ACTIONS(1917), + [sym_integer_literal] = ACTIONS(1915), + [aux_sym_string_literal_token1] = ACTIONS(1915), + [sym_char_literal] = ACTIONS(1915), + [anon_sym_true] = ACTIONS(1917), + [anon_sym_false] = ACTIONS(1917), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1917), + [sym_super] = ACTIONS(1917), + [sym_crate] = ACTIONS(1917), + [sym_metavariable] = ACTIONS(1915), + [sym__raw_string_literal_start] = ACTIONS(1915), + [sym_float_literal] = ACTIONS(1915), }, [510] = { [sym_line_comment] = STATE(510), [sym_block_comment] = STATE(510), - [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_LBRACK] = ACTIONS(1786), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(1786), - [anon_sym_BANG] = ACTIONS(1786), - [anon_sym_AMP] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(1786), - [anon_sym_LT] = ACTIONS(1786), - [anon_sym_DOT_DOT] = ACTIONS(1786), - [anon_sym_COLON_COLON] = ACTIONS(1786), - [anon_sym_POUND] = ACTIONS(1786), - [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_extern] = ACTIONS(1788), - [anon_sym_yield] = ACTIONS(1788), - [anon_sym_move] = ACTIONS(1788), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1788), - [sym_super] = ACTIONS(1788), - [sym_crate] = ACTIONS(1788), - [sym_metavariable] = ACTIONS(1786), - [sym__raw_string_literal_start] = ACTIONS(1786), - [sym_float_literal] = ACTIONS(1786), + [ts_builtin_sym_end] = ACTIONS(1919), + [sym_identifier] = ACTIONS(1921), + [anon_sym_SEMI] = ACTIONS(1919), + [anon_sym_macro_rules_BANG] = ACTIONS(1919), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_LBRACK] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1919), + [anon_sym_RBRACE] = ACTIONS(1919), + [anon_sym_macro] = ACTIONS(1921), + [anon_sym_STAR] = ACTIONS(1919), + [anon_sym_u8] = ACTIONS(1921), + [anon_sym_i8] = ACTIONS(1921), + [anon_sym_u16] = ACTIONS(1921), + [anon_sym_i16] = ACTIONS(1921), + [anon_sym_u32] = ACTIONS(1921), + [anon_sym_i32] = ACTIONS(1921), + [anon_sym_u64] = ACTIONS(1921), + [anon_sym_i64] = ACTIONS(1921), + [anon_sym_u128] = ACTIONS(1921), + [anon_sym_i128] = ACTIONS(1921), + [anon_sym_isize] = ACTIONS(1921), + [anon_sym_usize] = ACTIONS(1921), + [anon_sym_f32] = ACTIONS(1921), + [anon_sym_f64] = ACTIONS(1921), + [anon_sym_bool] = ACTIONS(1921), + [anon_sym_str] = ACTIONS(1921), + [anon_sym_char] = ACTIONS(1921), + [anon_sym_DASH] = ACTIONS(1919), + [anon_sym_BANG] = ACTIONS(1919), + [anon_sym_AMP] = ACTIONS(1919), + [anon_sym_PIPE] = ACTIONS(1919), + [anon_sym_LT] = ACTIONS(1919), + [anon_sym_DOT_DOT] = ACTIONS(1919), + [anon_sym_COLON_COLON] = ACTIONS(1919), + [anon_sym_POUND] = ACTIONS(1919), + [anon_sym_SQUOTE] = ACTIONS(1921), + [anon_sym_async] = ACTIONS(1921), + [anon_sym_break] = ACTIONS(1921), + [anon_sym_const] = ACTIONS(1921), + [anon_sym_continue] = ACTIONS(1921), + [anon_sym_default] = ACTIONS(1921), + [anon_sym_enum] = ACTIONS(1921), + [anon_sym_fn] = ACTIONS(1921), + [anon_sym_for] = ACTIONS(1921), + [anon_sym_if] = ACTIONS(1921), + [anon_sym_impl] = ACTIONS(1921), + [anon_sym_let] = ACTIONS(1921), + [anon_sym_loop] = ACTIONS(1921), + [anon_sym_match] = ACTIONS(1921), + [anon_sym_mod] = ACTIONS(1921), + [anon_sym_pub] = ACTIONS(1921), + [anon_sym_return] = ACTIONS(1921), + [anon_sym_static] = ACTIONS(1921), + [anon_sym_struct] = ACTIONS(1921), + [anon_sym_trait] = ACTIONS(1921), + [anon_sym_type] = ACTIONS(1921), + [anon_sym_union] = ACTIONS(1921), + [anon_sym_unsafe] = ACTIONS(1921), + [anon_sym_use] = ACTIONS(1921), + [anon_sym_while] = ACTIONS(1921), + [anon_sym_extern] = ACTIONS(1921), + [anon_sym_yield] = ACTIONS(1921), + [anon_sym_move] = ACTIONS(1921), + [anon_sym_try] = ACTIONS(1921), + [sym_integer_literal] = ACTIONS(1919), + [aux_sym_string_literal_token1] = ACTIONS(1919), + [sym_char_literal] = ACTIONS(1919), + [anon_sym_true] = ACTIONS(1921), + [anon_sym_false] = ACTIONS(1921), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1921), + [sym_super] = ACTIONS(1921), + [sym_crate] = ACTIONS(1921), + [sym_metavariable] = ACTIONS(1919), + [sym__raw_string_literal_start] = ACTIONS(1919), + [sym_float_literal] = ACTIONS(1919), }, [511] = { [sym_line_comment] = STATE(511), [sym_block_comment] = STATE(511), - [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_LBRACK] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1790), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(1790), - [anon_sym_BANG] = ACTIONS(1790), - [anon_sym_AMP] = ACTIONS(1790), - [anon_sym_PIPE] = ACTIONS(1790), - [anon_sym_LT] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1790), - [anon_sym_POUND] = ACTIONS(1790), - [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_extern] = ACTIONS(1792), - [anon_sym_yield] = ACTIONS(1792), - [anon_sym_move] = ACTIONS(1792), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1792), - [sym_super] = ACTIONS(1792), - [sym_crate] = ACTIONS(1792), - [sym_metavariable] = ACTIONS(1790), - [sym__raw_string_literal_start] = ACTIONS(1790), - [sym_float_literal] = ACTIONS(1790), + [ts_builtin_sym_end] = ACTIONS(1923), + [sym_identifier] = ACTIONS(1925), + [anon_sym_SEMI] = ACTIONS(1923), + [anon_sym_macro_rules_BANG] = ACTIONS(1923), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_LBRACK] = ACTIONS(1923), + [anon_sym_LBRACE] = ACTIONS(1923), + [anon_sym_RBRACE] = ACTIONS(1923), + [anon_sym_macro] = ACTIONS(1925), + [anon_sym_STAR] = ACTIONS(1923), + [anon_sym_u8] = ACTIONS(1925), + [anon_sym_i8] = ACTIONS(1925), + [anon_sym_u16] = ACTIONS(1925), + [anon_sym_i16] = ACTIONS(1925), + [anon_sym_u32] = ACTIONS(1925), + [anon_sym_i32] = ACTIONS(1925), + [anon_sym_u64] = ACTIONS(1925), + [anon_sym_i64] = ACTIONS(1925), + [anon_sym_u128] = ACTIONS(1925), + [anon_sym_i128] = ACTIONS(1925), + [anon_sym_isize] = ACTIONS(1925), + [anon_sym_usize] = ACTIONS(1925), + [anon_sym_f32] = ACTIONS(1925), + [anon_sym_f64] = ACTIONS(1925), + [anon_sym_bool] = ACTIONS(1925), + [anon_sym_str] = ACTIONS(1925), + [anon_sym_char] = ACTIONS(1925), + [anon_sym_DASH] = ACTIONS(1923), + [anon_sym_BANG] = ACTIONS(1923), + [anon_sym_AMP] = ACTIONS(1923), + [anon_sym_PIPE] = ACTIONS(1923), + [anon_sym_LT] = ACTIONS(1923), + [anon_sym_DOT_DOT] = ACTIONS(1923), + [anon_sym_COLON_COLON] = ACTIONS(1923), + [anon_sym_POUND] = ACTIONS(1923), + [anon_sym_SQUOTE] = ACTIONS(1925), + [anon_sym_async] = ACTIONS(1925), + [anon_sym_break] = ACTIONS(1925), + [anon_sym_const] = ACTIONS(1925), + [anon_sym_continue] = ACTIONS(1925), + [anon_sym_default] = ACTIONS(1925), + [anon_sym_enum] = ACTIONS(1925), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(1925), + [anon_sym_if] = ACTIONS(1925), + [anon_sym_impl] = ACTIONS(1925), + [anon_sym_let] = ACTIONS(1925), + [anon_sym_loop] = ACTIONS(1925), + [anon_sym_match] = ACTIONS(1925), + [anon_sym_mod] = ACTIONS(1925), + [anon_sym_pub] = ACTIONS(1925), + [anon_sym_return] = ACTIONS(1925), + [anon_sym_static] = ACTIONS(1925), + [anon_sym_struct] = ACTIONS(1925), + [anon_sym_trait] = ACTIONS(1925), + [anon_sym_type] = ACTIONS(1925), + [anon_sym_union] = ACTIONS(1925), + [anon_sym_unsafe] = ACTIONS(1925), + [anon_sym_use] = ACTIONS(1925), + [anon_sym_while] = ACTIONS(1925), + [anon_sym_extern] = ACTIONS(1925), + [anon_sym_yield] = ACTIONS(1925), + [anon_sym_move] = ACTIONS(1925), + [anon_sym_try] = ACTIONS(1925), + [sym_integer_literal] = ACTIONS(1923), + [aux_sym_string_literal_token1] = ACTIONS(1923), + [sym_char_literal] = ACTIONS(1923), + [anon_sym_true] = ACTIONS(1925), + [anon_sym_false] = ACTIONS(1925), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1925), + [sym_super] = ACTIONS(1925), + [sym_crate] = ACTIONS(1925), + [sym_metavariable] = ACTIONS(1923), + [sym__raw_string_literal_start] = ACTIONS(1923), + [sym_float_literal] = ACTIONS(1923), }, [512] = { [sym_line_comment] = STATE(512), [sym_block_comment] = STATE(512), - [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_LBRACK] = ACTIONS(1794), - [anon_sym_LBRACE] = ACTIONS(1794), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(1794), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_AMP] = ACTIONS(1794), - [anon_sym_PIPE] = ACTIONS(1794), - [anon_sym_LT] = ACTIONS(1794), - [anon_sym_DOT_DOT] = ACTIONS(1794), - [anon_sym_COLON_COLON] = ACTIONS(1794), - [anon_sym_POUND] = ACTIONS(1794), - [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_extern] = ACTIONS(1796), - [anon_sym_yield] = ACTIONS(1796), - [anon_sym_move] = ACTIONS(1796), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1796), - [sym_super] = ACTIONS(1796), - [sym_crate] = ACTIONS(1796), - [sym_metavariable] = ACTIONS(1794), - [sym__raw_string_literal_start] = ACTIONS(1794), - [sym_float_literal] = ACTIONS(1794), + [ts_builtin_sym_end] = ACTIONS(1927), + [sym_identifier] = ACTIONS(1929), + [anon_sym_SEMI] = ACTIONS(1927), + [anon_sym_macro_rules_BANG] = ACTIONS(1927), + [anon_sym_LPAREN] = ACTIONS(1927), + [anon_sym_LBRACK] = ACTIONS(1927), + [anon_sym_LBRACE] = ACTIONS(1927), + [anon_sym_RBRACE] = ACTIONS(1927), + [anon_sym_macro] = ACTIONS(1929), + [anon_sym_STAR] = ACTIONS(1927), + [anon_sym_u8] = ACTIONS(1929), + [anon_sym_i8] = ACTIONS(1929), + [anon_sym_u16] = ACTIONS(1929), + [anon_sym_i16] = ACTIONS(1929), + [anon_sym_u32] = ACTIONS(1929), + [anon_sym_i32] = ACTIONS(1929), + [anon_sym_u64] = ACTIONS(1929), + [anon_sym_i64] = ACTIONS(1929), + [anon_sym_u128] = ACTIONS(1929), + [anon_sym_i128] = ACTIONS(1929), + [anon_sym_isize] = ACTIONS(1929), + [anon_sym_usize] = ACTIONS(1929), + [anon_sym_f32] = ACTIONS(1929), + [anon_sym_f64] = ACTIONS(1929), + [anon_sym_bool] = ACTIONS(1929), + [anon_sym_str] = ACTIONS(1929), + [anon_sym_char] = ACTIONS(1929), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_BANG] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1927), + [anon_sym_PIPE] = ACTIONS(1927), + [anon_sym_LT] = ACTIONS(1927), + [anon_sym_DOT_DOT] = ACTIONS(1927), + [anon_sym_COLON_COLON] = ACTIONS(1927), + [anon_sym_POUND] = ACTIONS(1927), + [anon_sym_SQUOTE] = ACTIONS(1929), + [anon_sym_async] = ACTIONS(1929), + [anon_sym_break] = ACTIONS(1929), + [anon_sym_const] = ACTIONS(1929), + [anon_sym_continue] = ACTIONS(1929), + [anon_sym_default] = ACTIONS(1929), + [anon_sym_enum] = ACTIONS(1929), + [anon_sym_fn] = ACTIONS(1929), + [anon_sym_for] = ACTIONS(1929), + [anon_sym_if] = ACTIONS(1929), + [anon_sym_impl] = ACTIONS(1929), + [anon_sym_let] = ACTIONS(1929), + [anon_sym_loop] = ACTIONS(1929), + [anon_sym_match] = ACTIONS(1929), + [anon_sym_mod] = ACTIONS(1929), + [anon_sym_pub] = ACTIONS(1929), + [anon_sym_return] = ACTIONS(1929), + [anon_sym_static] = ACTIONS(1929), + [anon_sym_struct] = ACTIONS(1929), + [anon_sym_trait] = ACTIONS(1929), + [anon_sym_type] = ACTIONS(1929), + [anon_sym_union] = ACTIONS(1929), + [anon_sym_unsafe] = ACTIONS(1929), + [anon_sym_use] = ACTIONS(1929), + [anon_sym_while] = ACTIONS(1929), + [anon_sym_extern] = ACTIONS(1929), + [anon_sym_yield] = ACTIONS(1929), + [anon_sym_move] = ACTIONS(1929), + [anon_sym_try] = ACTIONS(1929), + [sym_integer_literal] = ACTIONS(1927), + [aux_sym_string_literal_token1] = ACTIONS(1927), + [sym_char_literal] = ACTIONS(1927), + [anon_sym_true] = ACTIONS(1929), + [anon_sym_false] = ACTIONS(1929), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1929), + [sym_super] = ACTIONS(1929), + [sym_crate] = ACTIONS(1929), + [sym_metavariable] = ACTIONS(1927), + [sym__raw_string_literal_start] = ACTIONS(1927), + [sym_float_literal] = ACTIONS(1927), }, [513] = { [sym_line_comment] = STATE(513), [sym_block_comment] = STATE(513), - [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_LBRACK] = ACTIONS(1798), - [anon_sym_LBRACE] = ACTIONS(1798), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(1798), - [anon_sym_BANG] = ACTIONS(1798), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1798), - [anon_sym_LT] = ACTIONS(1798), - [anon_sym_DOT_DOT] = ACTIONS(1798), - [anon_sym_COLON_COLON] = ACTIONS(1798), - [anon_sym_POUND] = ACTIONS(1798), - [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_extern] = ACTIONS(1800), - [anon_sym_yield] = ACTIONS(1800), - [anon_sym_move] = ACTIONS(1800), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1800), - [sym_super] = ACTIONS(1800), - [sym_crate] = ACTIONS(1800), - [sym_metavariable] = ACTIONS(1798), - [sym__raw_string_literal_start] = ACTIONS(1798), - [sym_float_literal] = ACTIONS(1798), + [ts_builtin_sym_end] = ACTIONS(1931), + [sym_identifier] = ACTIONS(1933), + [anon_sym_SEMI] = ACTIONS(1931), + [anon_sym_macro_rules_BANG] = ACTIONS(1931), + [anon_sym_LPAREN] = ACTIONS(1931), + [anon_sym_LBRACK] = ACTIONS(1931), + [anon_sym_LBRACE] = ACTIONS(1931), + [anon_sym_RBRACE] = ACTIONS(1931), + [anon_sym_macro] = ACTIONS(1933), + [anon_sym_STAR] = ACTIONS(1931), + [anon_sym_u8] = ACTIONS(1933), + [anon_sym_i8] = ACTIONS(1933), + [anon_sym_u16] = ACTIONS(1933), + [anon_sym_i16] = ACTIONS(1933), + [anon_sym_u32] = ACTIONS(1933), + [anon_sym_i32] = ACTIONS(1933), + [anon_sym_u64] = ACTIONS(1933), + [anon_sym_i64] = ACTIONS(1933), + [anon_sym_u128] = ACTIONS(1933), + [anon_sym_i128] = ACTIONS(1933), + [anon_sym_isize] = ACTIONS(1933), + [anon_sym_usize] = ACTIONS(1933), + [anon_sym_f32] = ACTIONS(1933), + [anon_sym_f64] = ACTIONS(1933), + [anon_sym_bool] = ACTIONS(1933), + [anon_sym_str] = ACTIONS(1933), + [anon_sym_char] = ACTIONS(1933), + [anon_sym_DASH] = ACTIONS(1931), + [anon_sym_BANG] = ACTIONS(1931), + [anon_sym_AMP] = ACTIONS(1931), + [anon_sym_PIPE] = ACTIONS(1931), + [anon_sym_LT] = ACTIONS(1931), + [anon_sym_DOT_DOT] = ACTIONS(1931), + [anon_sym_COLON_COLON] = ACTIONS(1931), + [anon_sym_POUND] = ACTIONS(1931), + [anon_sym_SQUOTE] = ACTIONS(1933), + [anon_sym_async] = ACTIONS(1933), + [anon_sym_break] = ACTIONS(1933), + [anon_sym_const] = ACTIONS(1933), + [anon_sym_continue] = ACTIONS(1933), + [anon_sym_default] = ACTIONS(1933), + [anon_sym_enum] = ACTIONS(1933), + [anon_sym_fn] = ACTIONS(1933), + [anon_sym_for] = ACTIONS(1933), + [anon_sym_if] = ACTIONS(1933), + [anon_sym_impl] = ACTIONS(1933), + [anon_sym_let] = ACTIONS(1933), + [anon_sym_loop] = ACTIONS(1933), + [anon_sym_match] = ACTIONS(1933), + [anon_sym_mod] = ACTIONS(1933), + [anon_sym_pub] = ACTIONS(1933), + [anon_sym_return] = ACTIONS(1933), + [anon_sym_static] = ACTIONS(1933), + [anon_sym_struct] = ACTIONS(1933), + [anon_sym_trait] = ACTIONS(1933), + [anon_sym_type] = ACTIONS(1933), + [anon_sym_union] = ACTIONS(1933), + [anon_sym_unsafe] = ACTIONS(1933), + [anon_sym_use] = ACTIONS(1933), + [anon_sym_while] = ACTIONS(1933), + [anon_sym_extern] = ACTIONS(1933), + [anon_sym_yield] = ACTIONS(1933), + [anon_sym_move] = ACTIONS(1933), + [anon_sym_try] = ACTIONS(1933), + [sym_integer_literal] = ACTIONS(1931), + [aux_sym_string_literal_token1] = ACTIONS(1931), + [sym_char_literal] = ACTIONS(1931), + [anon_sym_true] = ACTIONS(1933), + [anon_sym_false] = ACTIONS(1933), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1933), + [sym_super] = ACTIONS(1933), + [sym_crate] = ACTIONS(1933), + [sym_metavariable] = ACTIONS(1931), + [sym__raw_string_literal_start] = ACTIONS(1931), + [sym_float_literal] = ACTIONS(1931), }, [514] = { [sym_line_comment] = STATE(514), [sym_block_comment] = STATE(514), - [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_LBRACK] = ACTIONS(1802), - [anon_sym_LBRACE] = ACTIONS(1802), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(1802), - [anon_sym_BANG] = ACTIONS(1802), - [anon_sym_AMP] = ACTIONS(1802), - [anon_sym_PIPE] = ACTIONS(1802), - [anon_sym_LT] = ACTIONS(1802), - [anon_sym_DOT_DOT] = ACTIONS(1802), - [anon_sym_COLON_COLON] = ACTIONS(1802), - [anon_sym_POUND] = ACTIONS(1802), - [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_extern] = ACTIONS(1804), - [anon_sym_yield] = ACTIONS(1804), - [anon_sym_move] = ACTIONS(1804), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1804), - [sym_super] = ACTIONS(1804), - [sym_crate] = ACTIONS(1804), - [sym_metavariable] = ACTIONS(1802), - [sym__raw_string_literal_start] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1802), + [ts_builtin_sym_end] = ACTIONS(1935), + [sym_identifier] = ACTIONS(1937), + [anon_sym_SEMI] = ACTIONS(1935), + [anon_sym_macro_rules_BANG] = ACTIONS(1935), + [anon_sym_LPAREN] = ACTIONS(1935), + [anon_sym_LBRACK] = ACTIONS(1935), + [anon_sym_LBRACE] = ACTIONS(1935), + [anon_sym_RBRACE] = ACTIONS(1935), + [anon_sym_macro] = ACTIONS(1937), + [anon_sym_STAR] = ACTIONS(1935), + [anon_sym_u8] = ACTIONS(1937), + [anon_sym_i8] = ACTIONS(1937), + [anon_sym_u16] = ACTIONS(1937), + [anon_sym_i16] = ACTIONS(1937), + [anon_sym_u32] = ACTIONS(1937), + [anon_sym_i32] = ACTIONS(1937), + [anon_sym_u64] = ACTIONS(1937), + [anon_sym_i64] = ACTIONS(1937), + [anon_sym_u128] = ACTIONS(1937), + [anon_sym_i128] = ACTIONS(1937), + [anon_sym_isize] = ACTIONS(1937), + [anon_sym_usize] = ACTIONS(1937), + [anon_sym_f32] = ACTIONS(1937), + [anon_sym_f64] = ACTIONS(1937), + [anon_sym_bool] = ACTIONS(1937), + [anon_sym_str] = ACTIONS(1937), + [anon_sym_char] = ACTIONS(1937), + [anon_sym_DASH] = ACTIONS(1935), + [anon_sym_BANG] = ACTIONS(1935), + [anon_sym_AMP] = ACTIONS(1935), + [anon_sym_PIPE] = ACTIONS(1935), + [anon_sym_LT] = ACTIONS(1935), + [anon_sym_DOT_DOT] = ACTIONS(1935), + [anon_sym_COLON_COLON] = ACTIONS(1935), + [anon_sym_POUND] = ACTIONS(1935), + [anon_sym_SQUOTE] = ACTIONS(1937), + [anon_sym_async] = ACTIONS(1937), + [anon_sym_break] = ACTIONS(1937), + [anon_sym_const] = ACTIONS(1937), + [anon_sym_continue] = ACTIONS(1937), + [anon_sym_default] = ACTIONS(1937), + [anon_sym_enum] = ACTIONS(1937), + [anon_sym_fn] = ACTIONS(1937), + [anon_sym_for] = ACTIONS(1937), + [anon_sym_if] = ACTIONS(1937), + [anon_sym_impl] = ACTIONS(1937), + [anon_sym_let] = ACTIONS(1937), + [anon_sym_loop] = ACTIONS(1937), + [anon_sym_match] = ACTIONS(1937), + [anon_sym_mod] = ACTIONS(1937), + [anon_sym_pub] = ACTIONS(1937), + [anon_sym_return] = ACTIONS(1937), + [anon_sym_static] = ACTIONS(1937), + [anon_sym_struct] = ACTIONS(1937), + [anon_sym_trait] = ACTIONS(1937), + [anon_sym_type] = ACTIONS(1937), + [anon_sym_union] = ACTIONS(1937), + [anon_sym_unsafe] = ACTIONS(1937), + [anon_sym_use] = ACTIONS(1937), + [anon_sym_while] = ACTIONS(1937), + [anon_sym_extern] = ACTIONS(1937), + [anon_sym_yield] = ACTIONS(1937), + [anon_sym_move] = ACTIONS(1937), + [anon_sym_try] = ACTIONS(1937), + [sym_integer_literal] = ACTIONS(1935), + [aux_sym_string_literal_token1] = ACTIONS(1935), + [sym_char_literal] = ACTIONS(1935), + [anon_sym_true] = ACTIONS(1937), + [anon_sym_false] = ACTIONS(1937), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1937), + [sym_super] = ACTIONS(1937), + [sym_crate] = ACTIONS(1937), + [sym_metavariable] = ACTIONS(1935), + [sym__raw_string_literal_start] = ACTIONS(1935), + [sym_float_literal] = ACTIONS(1935), }, [515] = { [sym_line_comment] = STATE(515), [sym_block_comment] = STATE(515), - [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_LBRACK] = ACTIONS(1806), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(1806), - [anon_sym_BANG] = ACTIONS(1806), - [anon_sym_AMP] = ACTIONS(1806), - [anon_sym_PIPE] = ACTIONS(1806), - [anon_sym_LT] = ACTIONS(1806), - [anon_sym_DOT_DOT] = ACTIONS(1806), - [anon_sym_COLON_COLON] = ACTIONS(1806), - [anon_sym_POUND] = ACTIONS(1806), - [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_extern] = ACTIONS(1808), - [anon_sym_yield] = ACTIONS(1808), - [anon_sym_move] = ACTIONS(1808), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1808), - [sym_super] = ACTIONS(1808), - [sym_crate] = ACTIONS(1808), - [sym_metavariable] = ACTIONS(1806), - [sym__raw_string_literal_start] = ACTIONS(1806), - [sym_float_literal] = ACTIONS(1806), + [ts_builtin_sym_end] = ACTIONS(1939), + [sym_identifier] = ACTIONS(1941), + [anon_sym_SEMI] = ACTIONS(1939), + [anon_sym_macro_rules_BANG] = ACTIONS(1939), + [anon_sym_LPAREN] = ACTIONS(1939), + [anon_sym_LBRACK] = ACTIONS(1939), + [anon_sym_LBRACE] = ACTIONS(1939), + [anon_sym_RBRACE] = ACTIONS(1939), + [anon_sym_macro] = ACTIONS(1941), + [anon_sym_STAR] = ACTIONS(1939), + [anon_sym_u8] = ACTIONS(1941), + [anon_sym_i8] = ACTIONS(1941), + [anon_sym_u16] = ACTIONS(1941), + [anon_sym_i16] = ACTIONS(1941), + [anon_sym_u32] = ACTIONS(1941), + [anon_sym_i32] = ACTIONS(1941), + [anon_sym_u64] = ACTIONS(1941), + [anon_sym_i64] = ACTIONS(1941), + [anon_sym_u128] = ACTIONS(1941), + [anon_sym_i128] = ACTIONS(1941), + [anon_sym_isize] = ACTIONS(1941), + [anon_sym_usize] = ACTIONS(1941), + [anon_sym_f32] = ACTIONS(1941), + [anon_sym_f64] = ACTIONS(1941), + [anon_sym_bool] = ACTIONS(1941), + [anon_sym_str] = ACTIONS(1941), + [anon_sym_char] = ACTIONS(1941), + [anon_sym_DASH] = ACTIONS(1939), + [anon_sym_BANG] = ACTIONS(1939), + [anon_sym_AMP] = ACTIONS(1939), + [anon_sym_PIPE] = ACTIONS(1939), + [anon_sym_LT] = ACTIONS(1939), + [anon_sym_DOT_DOT] = ACTIONS(1939), + [anon_sym_COLON_COLON] = ACTIONS(1939), + [anon_sym_POUND] = ACTIONS(1939), + [anon_sym_SQUOTE] = ACTIONS(1941), + [anon_sym_async] = ACTIONS(1941), + [anon_sym_break] = ACTIONS(1941), + [anon_sym_const] = ACTIONS(1941), + [anon_sym_continue] = ACTIONS(1941), + [anon_sym_default] = ACTIONS(1941), + [anon_sym_enum] = ACTIONS(1941), + [anon_sym_fn] = ACTIONS(1941), + [anon_sym_for] = ACTIONS(1941), + [anon_sym_if] = ACTIONS(1941), + [anon_sym_impl] = ACTIONS(1941), + [anon_sym_let] = ACTIONS(1941), + [anon_sym_loop] = ACTIONS(1941), + [anon_sym_match] = ACTIONS(1941), + [anon_sym_mod] = ACTIONS(1941), + [anon_sym_pub] = ACTIONS(1941), + [anon_sym_return] = ACTIONS(1941), + [anon_sym_static] = ACTIONS(1941), + [anon_sym_struct] = ACTIONS(1941), + [anon_sym_trait] = ACTIONS(1941), + [anon_sym_type] = ACTIONS(1941), + [anon_sym_union] = ACTIONS(1941), + [anon_sym_unsafe] = ACTIONS(1941), + [anon_sym_use] = ACTIONS(1941), + [anon_sym_while] = ACTIONS(1941), + [anon_sym_extern] = ACTIONS(1941), + [anon_sym_yield] = ACTIONS(1941), + [anon_sym_move] = ACTIONS(1941), + [anon_sym_try] = ACTIONS(1941), + [sym_integer_literal] = ACTIONS(1939), + [aux_sym_string_literal_token1] = ACTIONS(1939), + [sym_char_literal] = ACTIONS(1939), + [anon_sym_true] = ACTIONS(1941), + [anon_sym_false] = ACTIONS(1941), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1941), + [sym_super] = ACTIONS(1941), + [sym_crate] = ACTIONS(1941), + [sym_metavariable] = ACTIONS(1939), + [sym__raw_string_literal_start] = ACTIONS(1939), + [sym_float_literal] = ACTIONS(1939), }, [516] = { [sym_line_comment] = STATE(516), [sym_block_comment] = STATE(516), - [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_LBRACK] = ACTIONS(1810), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(1810), - [anon_sym_BANG] = ACTIONS(1810), - [anon_sym_AMP] = ACTIONS(1810), - [anon_sym_PIPE] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(1810), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_POUND] = ACTIONS(1810), - [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_extern] = ACTIONS(1812), - [anon_sym_yield] = ACTIONS(1812), - [anon_sym_move] = ACTIONS(1812), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1812), - [sym_super] = ACTIONS(1812), - [sym_crate] = ACTIONS(1812), - [sym_metavariable] = ACTIONS(1810), - [sym__raw_string_literal_start] = ACTIONS(1810), - [sym_float_literal] = ACTIONS(1810), + [ts_builtin_sym_end] = ACTIONS(1943), + [sym_identifier] = ACTIONS(1945), + [anon_sym_SEMI] = ACTIONS(1943), + [anon_sym_macro_rules_BANG] = ACTIONS(1943), + [anon_sym_LPAREN] = ACTIONS(1943), + [anon_sym_LBRACK] = ACTIONS(1943), + [anon_sym_LBRACE] = ACTIONS(1943), + [anon_sym_RBRACE] = ACTIONS(1943), + [anon_sym_macro] = ACTIONS(1945), + [anon_sym_STAR] = ACTIONS(1943), + [anon_sym_u8] = ACTIONS(1945), + [anon_sym_i8] = ACTIONS(1945), + [anon_sym_u16] = ACTIONS(1945), + [anon_sym_i16] = ACTIONS(1945), + [anon_sym_u32] = ACTIONS(1945), + [anon_sym_i32] = ACTIONS(1945), + [anon_sym_u64] = ACTIONS(1945), + [anon_sym_i64] = ACTIONS(1945), + [anon_sym_u128] = ACTIONS(1945), + [anon_sym_i128] = ACTIONS(1945), + [anon_sym_isize] = ACTIONS(1945), + [anon_sym_usize] = ACTIONS(1945), + [anon_sym_f32] = ACTIONS(1945), + [anon_sym_f64] = ACTIONS(1945), + [anon_sym_bool] = ACTIONS(1945), + [anon_sym_str] = ACTIONS(1945), + [anon_sym_char] = ACTIONS(1945), + [anon_sym_DASH] = ACTIONS(1943), + [anon_sym_BANG] = ACTIONS(1943), + [anon_sym_AMP] = ACTIONS(1943), + [anon_sym_PIPE] = ACTIONS(1943), + [anon_sym_LT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_COLON_COLON] = ACTIONS(1943), + [anon_sym_POUND] = ACTIONS(1943), + [anon_sym_SQUOTE] = ACTIONS(1945), + [anon_sym_async] = ACTIONS(1945), + [anon_sym_break] = ACTIONS(1945), + [anon_sym_const] = ACTIONS(1945), + [anon_sym_continue] = ACTIONS(1945), + [anon_sym_default] = ACTIONS(1945), + [anon_sym_enum] = ACTIONS(1945), + [anon_sym_fn] = ACTIONS(1945), + [anon_sym_for] = ACTIONS(1945), + [anon_sym_if] = ACTIONS(1945), + [anon_sym_impl] = ACTIONS(1945), + [anon_sym_let] = ACTIONS(1945), + [anon_sym_loop] = ACTIONS(1945), + [anon_sym_match] = ACTIONS(1945), + [anon_sym_mod] = ACTIONS(1945), + [anon_sym_pub] = ACTIONS(1945), + [anon_sym_return] = ACTIONS(1945), + [anon_sym_static] = ACTIONS(1945), + [anon_sym_struct] = ACTIONS(1945), + [anon_sym_trait] = ACTIONS(1945), + [anon_sym_type] = ACTIONS(1945), + [anon_sym_union] = ACTIONS(1945), + [anon_sym_unsafe] = ACTIONS(1945), + [anon_sym_use] = ACTIONS(1945), + [anon_sym_while] = ACTIONS(1945), + [anon_sym_extern] = ACTIONS(1945), + [anon_sym_yield] = ACTIONS(1945), + [anon_sym_move] = ACTIONS(1945), + [anon_sym_try] = ACTIONS(1945), + [sym_integer_literal] = ACTIONS(1943), + [aux_sym_string_literal_token1] = ACTIONS(1943), + [sym_char_literal] = ACTIONS(1943), + [anon_sym_true] = ACTIONS(1945), + [anon_sym_false] = ACTIONS(1945), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1945), + [sym_super] = ACTIONS(1945), + [sym_crate] = ACTIONS(1945), + [sym_metavariable] = ACTIONS(1943), + [sym__raw_string_literal_start] = ACTIONS(1943), + [sym_float_literal] = ACTIONS(1943), }, [517] = { [sym_line_comment] = STATE(517), [sym_block_comment] = STATE(517), - [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_LBRACK] = ACTIONS(1814), - [anon_sym_LBRACE] = ACTIONS(1814), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(1814), - [anon_sym_BANG] = ACTIONS(1814), - [anon_sym_AMP] = ACTIONS(1814), - [anon_sym_PIPE] = ACTIONS(1814), - [anon_sym_LT] = ACTIONS(1814), - [anon_sym_DOT_DOT] = ACTIONS(1814), - [anon_sym_COLON_COLON] = ACTIONS(1814), - [anon_sym_POUND] = ACTIONS(1814), - [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_extern] = ACTIONS(1816), - [anon_sym_yield] = ACTIONS(1816), - [anon_sym_move] = ACTIONS(1816), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1816), - [sym_super] = ACTIONS(1816), - [sym_crate] = ACTIONS(1816), - [sym_metavariable] = ACTIONS(1814), - [sym__raw_string_literal_start] = ACTIONS(1814), - [sym_float_literal] = ACTIONS(1814), + [ts_builtin_sym_end] = ACTIONS(1947), + [sym_identifier] = ACTIONS(1949), + [anon_sym_SEMI] = ACTIONS(1947), + [anon_sym_macro_rules_BANG] = ACTIONS(1947), + [anon_sym_LPAREN] = ACTIONS(1947), + [anon_sym_LBRACK] = ACTIONS(1947), + [anon_sym_LBRACE] = ACTIONS(1947), + [anon_sym_RBRACE] = ACTIONS(1947), + [anon_sym_macro] = ACTIONS(1949), + [anon_sym_STAR] = ACTIONS(1947), + [anon_sym_u8] = ACTIONS(1949), + [anon_sym_i8] = ACTIONS(1949), + [anon_sym_u16] = ACTIONS(1949), + [anon_sym_i16] = ACTIONS(1949), + [anon_sym_u32] = ACTIONS(1949), + [anon_sym_i32] = ACTIONS(1949), + [anon_sym_u64] = ACTIONS(1949), + [anon_sym_i64] = ACTIONS(1949), + [anon_sym_u128] = ACTIONS(1949), + [anon_sym_i128] = ACTIONS(1949), + [anon_sym_isize] = ACTIONS(1949), + [anon_sym_usize] = ACTIONS(1949), + [anon_sym_f32] = ACTIONS(1949), + [anon_sym_f64] = ACTIONS(1949), + [anon_sym_bool] = ACTIONS(1949), + [anon_sym_str] = ACTIONS(1949), + [anon_sym_char] = ACTIONS(1949), + [anon_sym_DASH] = ACTIONS(1947), + [anon_sym_BANG] = ACTIONS(1947), + [anon_sym_AMP] = ACTIONS(1947), + [anon_sym_PIPE] = ACTIONS(1947), + [anon_sym_LT] = ACTIONS(1947), + [anon_sym_DOT_DOT] = ACTIONS(1947), + [anon_sym_COLON_COLON] = ACTIONS(1947), + [anon_sym_POUND] = ACTIONS(1947), + [anon_sym_SQUOTE] = ACTIONS(1949), + [anon_sym_async] = ACTIONS(1949), + [anon_sym_break] = ACTIONS(1949), + [anon_sym_const] = ACTIONS(1949), + [anon_sym_continue] = ACTIONS(1949), + [anon_sym_default] = ACTIONS(1949), + [anon_sym_enum] = ACTIONS(1949), + [anon_sym_fn] = ACTIONS(1949), + [anon_sym_for] = ACTIONS(1949), + [anon_sym_if] = ACTIONS(1949), + [anon_sym_impl] = ACTIONS(1949), + [anon_sym_let] = ACTIONS(1949), + [anon_sym_loop] = ACTIONS(1949), + [anon_sym_match] = ACTIONS(1949), + [anon_sym_mod] = ACTIONS(1949), + [anon_sym_pub] = ACTIONS(1949), + [anon_sym_return] = ACTIONS(1949), + [anon_sym_static] = ACTIONS(1949), + [anon_sym_struct] = ACTIONS(1949), + [anon_sym_trait] = ACTIONS(1949), + [anon_sym_type] = ACTIONS(1949), + [anon_sym_union] = ACTIONS(1949), + [anon_sym_unsafe] = ACTIONS(1949), + [anon_sym_use] = ACTIONS(1949), + [anon_sym_while] = ACTIONS(1949), + [anon_sym_extern] = ACTIONS(1949), + [anon_sym_yield] = ACTIONS(1949), + [anon_sym_move] = ACTIONS(1949), + [anon_sym_try] = ACTIONS(1949), + [sym_integer_literal] = ACTIONS(1947), + [aux_sym_string_literal_token1] = ACTIONS(1947), + [sym_char_literal] = ACTIONS(1947), + [anon_sym_true] = ACTIONS(1949), + [anon_sym_false] = ACTIONS(1949), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1949), + [sym_super] = ACTIONS(1949), + [sym_crate] = ACTIONS(1949), + [sym_metavariable] = ACTIONS(1947), + [sym__raw_string_literal_start] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1947), }, [518] = { [sym_line_comment] = STATE(518), [sym_block_comment] = STATE(518), - [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_LBRACK] = ACTIONS(1818), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(1818), - [anon_sym_BANG] = ACTIONS(1818), - [anon_sym_AMP] = ACTIONS(1818), - [anon_sym_PIPE] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1818), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_POUND] = ACTIONS(1818), - [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_extern] = ACTIONS(1820), - [anon_sym_yield] = ACTIONS(1820), - [anon_sym_move] = ACTIONS(1820), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1820), - [sym_super] = ACTIONS(1820), - [sym_crate] = ACTIONS(1820), - [sym_metavariable] = ACTIONS(1818), - [sym__raw_string_literal_start] = ACTIONS(1818), - [sym_float_literal] = ACTIONS(1818), + [ts_builtin_sym_end] = ACTIONS(1951), + [sym_identifier] = ACTIONS(1953), + [anon_sym_SEMI] = ACTIONS(1951), + [anon_sym_macro_rules_BANG] = ACTIONS(1951), + [anon_sym_LPAREN] = ACTIONS(1951), + [anon_sym_LBRACK] = ACTIONS(1951), + [anon_sym_LBRACE] = ACTIONS(1951), + [anon_sym_RBRACE] = ACTIONS(1951), + [anon_sym_macro] = ACTIONS(1953), + [anon_sym_STAR] = ACTIONS(1951), + [anon_sym_u8] = ACTIONS(1953), + [anon_sym_i8] = ACTIONS(1953), + [anon_sym_u16] = ACTIONS(1953), + [anon_sym_i16] = ACTIONS(1953), + [anon_sym_u32] = ACTIONS(1953), + [anon_sym_i32] = ACTIONS(1953), + [anon_sym_u64] = ACTIONS(1953), + [anon_sym_i64] = ACTIONS(1953), + [anon_sym_u128] = ACTIONS(1953), + [anon_sym_i128] = ACTIONS(1953), + [anon_sym_isize] = ACTIONS(1953), + [anon_sym_usize] = ACTIONS(1953), + [anon_sym_f32] = ACTIONS(1953), + [anon_sym_f64] = ACTIONS(1953), + [anon_sym_bool] = ACTIONS(1953), + [anon_sym_str] = ACTIONS(1953), + [anon_sym_char] = ACTIONS(1953), + [anon_sym_DASH] = ACTIONS(1951), + [anon_sym_BANG] = ACTIONS(1951), + [anon_sym_AMP] = ACTIONS(1951), + [anon_sym_PIPE] = ACTIONS(1951), + [anon_sym_LT] = ACTIONS(1951), + [anon_sym_DOT_DOT] = ACTIONS(1951), + [anon_sym_COLON_COLON] = ACTIONS(1951), + [anon_sym_POUND] = ACTIONS(1951), + [anon_sym_SQUOTE] = ACTIONS(1953), + [anon_sym_async] = ACTIONS(1953), + [anon_sym_break] = ACTIONS(1953), + [anon_sym_const] = ACTIONS(1953), + [anon_sym_continue] = ACTIONS(1953), + [anon_sym_default] = ACTIONS(1953), + [anon_sym_enum] = ACTIONS(1953), + [anon_sym_fn] = ACTIONS(1953), + [anon_sym_for] = ACTIONS(1953), + [anon_sym_if] = ACTIONS(1953), + [anon_sym_impl] = ACTIONS(1953), + [anon_sym_let] = ACTIONS(1953), + [anon_sym_loop] = ACTIONS(1953), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_mod] = ACTIONS(1953), + [anon_sym_pub] = ACTIONS(1953), + [anon_sym_return] = ACTIONS(1953), + [anon_sym_static] = ACTIONS(1953), + [anon_sym_struct] = ACTIONS(1953), + [anon_sym_trait] = ACTIONS(1953), + [anon_sym_type] = ACTIONS(1953), + [anon_sym_union] = ACTIONS(1953), + [anon_sym_unsafe] = ACTIONS(1953), + [anon_sym_use] = ACTIONS(1953), + [anon_sym_while] = ACTIONS(1953), + [anon_sym_extern] = ACTIONS(1953), + [anon_sym_yield] = ACTIONS(1953), + [anon_sym_move] = ACTIONS(1953), + [anon_sym_try] = ACTIONS(1953), + [sym_integer_literal] = ACTIONS(1951), + [aux_sym_string_literal_token1] = ACTIONS(1951), + [sym_char_literal] = ACTIONS(1951), + [anon_sym_true] = ACTIONS(1953), + [anon_sym_false] = ACTIONS(1953), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1953), + [sym_super] = ACTIONS(1953), + [sym_crate] = ACTIONS(1953), + [sym_metavariable] = ACTIONS(1951), + [sym__raw_string_literal_start] = ACTIONS(1951), + [sym_float_literal] = ACTIONS(1951), }, [519] = { [sym_line_comment] = STATE(519), [sym_block_comment] = STATE(519), - [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_LBRACK] = ACTIONS(1822), - [anon_sym_LBRACE] = ACTIONS(1822), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(1822), - [anon_sym_BANG] = ACTIONS(1822), - [anon_sym_AMP] = ACTIONS(1822), - [anon_sym_PIPE] = ACTIONS(1822), - [anon_sym_LT] = ACTIONS(1822), - [anon_sym_DOT_DOT] = ACTIONS(1822), - [anon_sym_COLON_COLON] = ACTIONS(1822), - [anon_sym_POUND] = ACTIONS(1822), - [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_extern] = ACTIONS(1824), - [anon_sym_yield] = ACTIONS(1824), - [anon_sym_move] = ACTIONS(1824), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1824), - [sym_super] = ACTIONS(1824), - [sym_crate] = ACTIONS(1824), - [sym_metavariable] = ACTIONS(1822), - [sym__raw_string_literal_start] = ACTIONS(1822), - [sym_float_literal] = ACTIONS(1822), + [ts_builtin_sym_end] = ACTIONS(1955), + [sym_identifier] = ACTIONS(1957), + [anon_sym_SEMI] = ACTIONS(1955), + [anon_sym_macro_rules_BANG] = ACTIONS(1955), + [anon_sym_LPAREN] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(1955), + [anon_sym_LBRACE] = ACTIONS(1955), + [anon_sym_RBRACE] = ACTIONS(1955), + [anon_sym_macro] = ACTIONS(1957), + [anon_sym_STAR] = ACTIONS(1955), + [anon_sym_u8] = ACTIONS(1957), + [anon_sym_i8] = ACTIONS(1957), + [anon_sym_u16] = ACTIONS(1957), + [anon_sym_i16] = ACTIONS(1957), + [anon_sym_u32] = ACTIONS(1957), + [anon_sym_i32] = ACTIONS(1957), + [anon_sym_u64] = ACTIONS(1957), + [anon_sym_i64] = ACTIONS(1957), + [anon_sym_u128] = ACTIONS(1957), + [anon_sym_i128] = ACTIONS(1957), + [anon_sym_isize] = ACTIONS(1957), + [anon_sym_usize] = ACTIONS(1957), + [anon_sym_f32] = ACTIONS(1957), + [anon_sym_f64] = ACTIONS(1957), + [anon_sym_bool] = ACTIONS(1957), + [anon_sym_str] = ACTIONS(1957), + [anon_sym_char] = ACTIONS(1957), + [anon_sym_DASH] = ACTIONS(1955), + [anon_sym_BANG] = ACTIONS(1955), + [anon_sym_AMP] = ACTIONS(1955), + [anon_sym_PIPE] = ACTIONS(1955), + [anon_sym_LT] = ACTIONS(1955), + [anon_sym_DOT_DOT] = ACTIONS(1955), + [anon_sym_COLON_COLON] = ACTIONS(1955), + [anon_sym_POUND] = ACTIONS(1955), + [anon_sym_SQUOTE] = ACTIONS(1957), + [anon_sym_async] = ACTIONS(1957), + [anon_sym_break] = ACTIONS(1957), + [anon_sym_const] = ACTIONS(1957), + [anon_sym_continue] = ACTIONS(1957), + [anon_sym_default] = ACTIONS(1957), + [anon_sym_enum] = ACTIONS(1957), + [anon_sym_fn] = ACTIONS(1957), + [anon_sym_for] = ACTIONS(1957), + [anon_sym_if] = ACTIONS(1957), + [anon_sym_impl] = ACTIONS(1957), + [anon_sym_let] = ACTIONS(1957), + [anon_sym_loop] = ACTIONS(1957), + [anon_sym_match] = ACTIONS(1957), + [anon_sym_mod] = ACTIONS(1957), + [anon_sym_pub] = ACTIONS(1957), + [anon_sym_return] = ACTIONS(1957), + [anon_sym_static] = ACTIONS(1957), + [anon_sym_struct] = ACTIONS(1957), + [anon_sym_trait] = ACTIONS(1957), + [anon_sym_type] = ACTIONS(1957), + [anon_sym_union] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(1957), + [anon_sym_use] = ACTIONS(1957), + [anon_sym_while] = ACTIONS(1957), + [anon_sym_extern] = ACTIONS(1957), + [anon_sym_yield] = ACTIONS(1957), + [anon_sym_move] = ACTIONS(1957), + [anon_sym_try] = ACTIONS(1957), + [sym_integer_literal] = ACTIONS(1955), + [aux_sym_string_literal_token1] = ACTIONS(1955), + [sym_char_literal] = ACTIONS(1955), + [anon_sym_true] = ACTIONS(1957), + [anon_sym_false] = ACTIONS(1957), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1957), + [sym_super] = ACTIONS(1957), + [sym_crate] = ACTIONS(1957), + [sym_metavariable] = ACTIONS(1955), + [sym__raw_string_literal_start] = ACTIONS(1955), + [sym_float_literal] = ACTIONS(1955), }, [520] = { [sym_line_comment] = STATE(520), [sym_block_comment] = STATE(520), - [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_LBRACK] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(1826), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(1826), - [anon_sym_BANG] = ACTIONS(1826), - [anon_sym_AMP] = ACTIONS(1826), - [anon_sym_PIPE] = ACTIONS(1826), - [anon_sym_LT] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(1826), - [anon_sym_POUND] = ACTIONS(1826), - [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_extern] = ACTIONS(1828), - [anon_sym_yield] = ACTIONS(1828), - [anon_sym_move] = ACTIONS(1828), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1828), - [sym_super] = ACTIONS(1828), - [sym_crate] = ACTIONS(1828), - [sym_metavariable] = ACTIONS(1826), - [sym__raw_string_literal_start] = ACTIONS(1826), - [sym_float_literal] = ACTIONS(1826), + [ts_builtin_sym_end] = ACTIONS(1959), + [sym_identifier] = ACTIONS(1961), + [anon_sym_SEMI] = ACTIONS(1959), + [anon_sym_macro_rules_BANG] = ACTIONS(1959), + [anon_sym_LPAREN] = ACTIONS(1959), + [anon_sym_LBRACK] = ACTIONS(1959), + [anon_sym_LBRACE] = ACTIONS(1959), + [anon_sym_RBRACE] = ACTIONS(1959), + [anon_sym_macro] = ACTIONS(1961), + [anon_sym_STAR] = ACTIONS(1959), + [anon_sym_u8] = ACTIONS(1961), + [anon_sym_i8] = ACTIONS(1961), + [anon_sym_u16] = ACTIONS(1961), + [anon_sym_i16] = ACTIONS(1961), + [anon_sym_u32] = ACTIONS(1961), + [anon_sym_i32] = ACTIONS(1961), + [anon_sym_u64] = ACTIONS(1961), + [anon_sym_i64] = ACTIONS(1961), + [anon_sym_u128] = ACTIONS(1961), + [anon_sym_i128] = ACTIONS(1961), + [anon_sym_isize] = ACTIONS(1961), + [anon_sym_usize] = ACTIONS(1961), + [anon_sym_f32] = ACTIONS(1961), + [anon_sym_f64] = ACTIONS(1961), + [anon_sym_bool] = ACTIONS(1961), + [anon_sym_str] = ACTIONS(1961), + [anon_sym_char] = ACTIONS(1961), + [anon_sym_DASH] = ACTIONS(1959), + [anon_sym_BANG] = ACTIONS(1959), + [anon_sym_AMP] = ACTIONS(1959), + [anon_sym_PIPE] = ACTIONS(1959), + [anon_sym_LT] = ACTIONS(1959), + [anon_sym_DOT_DOT] = ACTIONS(1959), + [anon_sym_COLON_COLON] = ACTIONS(1959), + [anon_sym_POUND] = ACTIONS(1959), + [anon_sym_SQUOTE] = ACTIONS(1961), + [anon_sym_async] = ACTIONS(1961), + [anon_sym_break] = ACTIONS(1961), + [anon_sym_const] = ACTIONS(1961), + [anon_sym_continue] = ACTIONS(1961), + [anon_sym_default] = ACTIONS(1961), + [anon_sym_enum] = ACTIONS(1961), + [anon_sym_fn] = ACTIONS(1961), + [anon_sym_for] = ACTIONS(1961), + [anon_sym_if] = ACTIONS(1961), + [anon_sym_impl] = ACTIONS(1961), + [anon_sym_let] = ACTIONS(1961), + [anon_sym_loop] = ACTIONS(1961), + [anon_sym_match] = ACTIONS(1961), + [anon_sym_mod] = ACTIONS(1961), + [anon_sym_pub] = ACTIONS(1961), + [anon_sym_return] = ACTIONS(1961), + [anon_sym_static] = ACTIONS(1961), + [anon_sym_struct] = ACTIONS(1961), + [anon_sym_trait] = ACTIONS(1961), + [anon_sym_type] = ACTIONS(1961), + [anon_sym_union] = ACTIONS(1961), + [anon_sym_unsafe] = ACTIONS(1961), + [anon_sym_use] = ACTIONS(1961), + [anon_sym_while] = ACTIONS(1961), + [anon_sym_extern] = ACTIONS(1961), + [anon_sym_yield] = ACTIONS(1961), + [anon_sym_move] = ACTIONS(1961), + [anon_sym_try] = ACTIONS(1961), + [sym_integer_literal] = ACTIONS(1959), + [aux_sym_string_literal_token1] = ACTIONS(1959), + [sym_char_literal] = ACTIONS(1959), + [anon_sym_true] = ACTIONS(1961), + [anon_sym_false] = ACTIONS(1961), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1961), + [sym_super] = ACTIONS(1961), + [sym_crate] = ACTIONS(1961), + [sym_metavariable] = ACTIONS(1959), + [sym__raw_string_literal_start] = ACTIONS(1959), + [sym_float_literal] = ACTIONS(1959), }, [521] = { [sym_line_comment] = STATE(521), [sym_block_comment] = STATE(521), - [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_LBRACK] = ACTIONS(1830), - [anon_sym_LBRACE] = ACTIONS(1830), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(1830), - [anon_sym_BANG] = ACTIONS(1830), - [anon_sym_AMP] = ACTIONS(1830), - [anon_sym_PIPE] = ACTIONS(1830), - [anon_sym_LT] = ACTIONS(1830), - [anon_sym_DOT_DOT] = ACTIONS(1830), - [anon_sym_COLON_COLON] = ACTIONS(1830), - [anon_sym_POUND] = ACTIONS(1830), - [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_extern] = ACTIONS(1832), - [anon_sym_yield] = ACTIONS(1832), - [anon_sym_move] = ACTIONS(1832), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1832), - [sym_super] = ACTIONS(1832), - [sym_crate] = ACTIONS(1832), - [sym_metavariable] = ACTIONS(1830), - [sym__raw_string_literal_start] = ACTIONS(1830), - [sym_float_literal] = ACTIONS(1830), + [ts_builtin_sym_end] = ACTIONS(1963), + [sym_identifier] = ACTIONS(1965), + [anon_sym_SEMI] = ACTIONS(1963), + [anon_sym_macro_rules_BANG] = ACTIONS(1963), + [anon_sym_LPAREN] = ACTIONS(1963), + [anon_sym_LBRACK] = ACTIONS(1963), + [anon_sym_LBRACE] = ACTIONS(1963), + [anon_sym_RBRACE] = ACTIONS(1963), + [anon_sym_macro] = ACTIONS(1965), + [anon_sym_STAR] = ACTIONS(1963), + [anon_sym_u8] = ACTIONS(1965), + [anon_sym_i8] = ACTIONS(1965), + [anon_sym_u16] = ACTIONS(1965), + [anon_sym_i16] = ACTIONS(1965), + [anon_sym_u32] = ACTIONS(1965), + [anon_sym_i32] = ACTIONS(1965), + [anon_sym_u64] = ACTIONS(1965), + [anon_sym_i64] = ACTIONS(1965), + [anon_sym_u128] = ACTIONS(1965), + [anon_sym_i128] = ACTIONS(1965), + [anon_sym_isize] = ACTIONS(1965), + [anon_sym_usize] = ACTIONS(1965), + [anon_sym_f32] = ACTIONS(1965), + [anon_sym_f64] = ACTIONS(1965), + [anon_sym_bool] = ACTIONS(1965), + [anon_sym_str] = ACTIONS(1965), + [anon_sym_char] = ACTIONS(1965), + [anon_sym_DASH] = ACTIONS(1963), + [anon_sym_BANG] = ACTIONS(1963), + [anon_sym_AMP] = ACTIONS(1963), + [anon_sym_PIPE] = ACTIONS(1963), + [anon_sym_LT] = ACTIONS(1963), + [anon_sym_DOT_DOT] = ACTIONS(1963), + [anon_sym_COLON_COLON] = ACTIONS(1963), + [anon_sym_POUND] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_async] = ACTIONS(1965), + [anon_sym_break] = ACTIONS(1965), + [anon_sym_const] = ACTIONS(1965), + [anon_sym_continue] = ACTIONS(1965), + [anon_sym_default] = ACTIONS(1965), + [anon_sym_enum] = ACTIONS(1965), + [anon_sym_fn] = ACTIONS(1965), + [anon_sym_for] = ACTIONS(1965), + [anon_sym_if] = ACTIONS(1965), + [anon_sym_impl] = ACTIONS(1965), + [anon_sym_let] = ACTIONS(1965), + [anon_sym_loop] = ACTIONS(1965), + [anon_sym_match] = ACTIONS(1965), + [anon_sym_mod] = ACTIONS(1965), + [anon_sym_pub] = ACTIONS(1965), + [anon_sym_return] = ACTIONS(1965), + [anon_sym_static] = ACTIONS(1965), + [anon_sym_struct] = ACTIONS(1965), + [anon_sym_trait] = ACTIONS(1965), + [anon_sym_type] = ACTIONS(1965), + [anon_sym_union] = ACTIONS(1965), + [anon_sym_unsafe] = ACTIONS(1965), + [anon_sym_use] = ACTIONS(1965), + [anon_sym_while] = ACTIONS(1965), + [anon_sym_extern] = ACTIONS(1965), + [anon_sym_yield] = ACTIONS(1965), + [anon_sym_move] = ACTIONS(1965), + [anon_sym_try] = ACTIONS(1965), + [sym_integer_literal] = ACTIONS(1963), + [aux_sym_string_literal_token1] = ACTIONS(1963), + [sym_char_literal] = ACTIONS(1963), + [anon_sym_true] = ACTIONS(1965), + [anon_sym_false] = ACTIONS(1965), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1965), + [sym_super] = ACTIONS(1965), + [sym_crate] = ACTIONS(1965), + [sym_metavariable] = ACTIONS(1963), + [sym__raw_string_literal_start] = ACTIONS(1963), + [sym_float_literal] = ACTIONS(1963), }, [522] = { [sym_line_comment] = STATE(522), [sym_block_comment] = STATE(522), - [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_LBRACK] = ACTIONS(1834), - [anon_sym_LBRACE] = ACTIONS(1834), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(1834), - [anon_sym_BANG] = ACTIONS(1834), - [anon_sym_AMP] = ACTIONS(1834), - [anon_sym_PIPE] = ACTIONS(1834), - [anon_sym_LT] = ACTIONS(1834), - [anon_sym_DOT_DOT] = ACTIONS(1834), - [anon_sym_COLON_COLON] = ACTIONS(1834), - [anon_sym_POUND] = ACTIONS(1834), - [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_extern] = ACTIONS(1836), - [anon_sym_yield] = ACTIONS(1836), - [anon_sym_move] = ACTIONS(1836), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1836), - [sym_super] = ACTIONS(1836), - [sym_crate] = ACTIONS(1836), - [sym_metavariable] = ACTIONS(1834), - [sym__raw_string_literal_start] = ACTIONS(1834), - [sym_float_literal] = ACTIONS(1834), + [ts_builtin_sym_end] = ACTIONS(1967), + [sym_identifier] = ACTIONS(1969), + [anon_sym_SEMI] = ACTIONS(1967), + [anon_sym_macro_rules_BANG] = ACTIONS(1967), + [anon_sym_LPAREN] = ACTIONS(1967), + [anon_sym_LBRACK] = ACTIONS(1967), + [anon_sym_LBRACE] = ACTIONS(1967), + [anon_sym_RBRACE] = ACTIONS(1967), + [anon_sym_macro] = ACTIONS(1969), + [anon_sym_STAR] = ACTIONS(1967), + [anon_sym_u8] = ACTIONS(1969), + [anon_sym_i8] = ACTIONS(1969), + [anon_sym_u16] = ACTIONS(1969), + [anon_sym_i16] = ACTIONS(1969), + [anon_sym_u32] = ACTIONS(1969), + [anon_sym_i32] = ACTIONS(1969), + [anon_sym_u64] = ACTIONS(1969), + [anon_sym_i64] = ACTIONS(1969), + [anon_sym_u128] = ACTIONS(1969), + [anon_sym_i128] = ACTIONS(1969), + [anon_sym_isize] = ACTIONS(1969), + [anon_sym_usize] = ACTIONS(1969), + [anon_sym_f32] = ACTIONS(1969), + [anon_sym_f64] = ACTIONS(1969), + [anon_sym_bool] = ACTIONS(1969), + [anon_sym_str] = ACTIONS(1969), + [anon_sym_char] = ACTIONS(1969), + [anon_sym_DASH] = ACTIONS(1967), + [anon_sym_BANG] = ACTIONS(1967), + [anon_sym_AMP] = ACTIONS(1967), + [anon_sym_PIPE] = ACTIONS(1967), + [anon_sym_LT] = ACTIONS(1967), + [anon_sym_DOT_DOT] = ACTIONS(1967), + [anon_sym_COLON_COLON] = ACTIONS(1967), + [anon_sym_POUND] = ACTIONS(1967), + [anon_sym_SQUOTE] = ACTIONS(1969), + [anon_sym_async] = ACTIONS(1969), + [anon_sym_break] = ACTIONS(1969), + [anon_sym_const] = ACTIONS(1969), + [anon_sym_continue] = ACTIONS(1969), + [anon_sym_default] = ACTIONS(1969), + [anon_sym_enum] = ACTIONS(1969), + [anon_sym_fn] = ACTIONS(1969), + [anon_sym_for] = ACTIONS(1969), + [anon_sym_if] = ACTIONS(1969), + [anon_sym_impl] = ACTIONS(1969), + [anon_sym_let] = ACTIONS(1969), + [anon_sym_loop] = ACTIONS(1969), + [anon_sym_match] = ACTIONS(1969), + [anon_sym_mod] = ACTIONS(1969), + [anon_sym_pub] = ACTIONS(1969), + [anon_sym_return] = ACTIONS(1969), + [anon_sym_static] = ACTIONS(1969), + [anon_sym_struct] = ACTIONS(1969), + [anon_sym_trait] = ACTIONS(1969), + [anon_sym_type] = ACTIONS(1969), + [anon_sym_union] = ACTIONS(1969), + [anon_sym_unsafe] = ACTIONS(1969), + [anon_sym_use] = ACTIONS(1969), + [anon_sym_while] = ACTIONS(1969), + [anon_sym_extern] = ACTIONS(1969), + [anon_sym_yield] = ACTIONS(1969), + [anon_sym_move] = ACTIONS(1969), + [anon_sym_try] = ACTIONS(1969), + [sym_integer_literal] = ACTIONS(1967), + [aux_sym_string_literal_token1] = ACTIONS(1967), + [sym_char_literal] = ACTIONS(1967), + [anon_sym_true] = ACTIONS(1969), + [anon_sym_false] = ACTIONS(1969), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1969), + [sym_super] = ACTIONS(1969), + [sym_crate] = ACTIONS(1969), + [sym_metavariable] = ACTIONS(1967), + [sym__raw_string_literal_start] = ACTIONS(1967), + [sym_float_literal] = ACTIONS(1967), }, [523] = { [sym_line_comment] = STATE(523), [sym_block_comment] = STATE(523), - [ts_builtin_sym_end] = ACTIONS(1838), - [sym_identifier] = ACTIONS(1840), - [anon_sym_SEMI] = ACTIONS(1838), - [anon_sym_macro_rules_BANG] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(1838), - [anon_sym_LBRACK] = ACTIONS(1838), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_RBRACE] = ACTIONS(1838), - [anon_sym_STAR] = ACTIONS(1838), - [anon_sym_u8] = ACTIONS(1840), - [anon_sym_i8] = ACTIONS(1840), - [anon_sym_u16] = ACTIONS(1840), - [anon_sym_i16] = ACTIONS(1840), - [anon_sym_u32] = ACTIONS(1840), - [anon_sym_i32] = ACTIONS(1840), - [anon_sym_u64] = ACTIONS(1840), - [anon_sym_i64] = ACTIONS(1840), - [anon_sym_u128] = ACTIONS(1840), - [anon_sym_i128] = ACTIONS(1840), - [anon_sym_isize] = ACTIONS(1840), - [anon_sym_usize] = ACTIONS(1840), - [anon_sym_f32] = ACTIONS(1840), - [anon_sym_f64] = ACTIONS(1840), - [anon_sym_bool] = ACTIONS(1840), - [anon_sym_str] = ACTIONS(1840), - [anon_sym_char] = ACTIONS(1840), - [anon_sym_DASH] = ACTIONS(1838), - [anon_sym_BANG] = ACTIONS(1838), - [anon_sym_AMP] = ACTIONS(1838), - [anon_sym_PIPE] = ACTIONS(1838), - [anon_sym_LT] = ACTIONS(1838), - [anon_sym_DOT_DOT] = ACTIONS(1838), - [anon_sym_COLON_COLON] = ACTIONS(1838), - [anon_sym_POUND] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1840), - [anon_sym_async] = ACTIONS(1840), - [anon_sym_break] = ACTIONS(1840), - [anon_sym_const] = ACTIONS(1840), - [anon_sym_continue] = ACTIONS(1840), - [anon_sym_default] = ACTIONS(1840), - [anon_sym_enum] = ACTIONS(1840), - [anon_sym_fn] = ACTIONS(1840), - [anon_sym_for] = ACTIONS(1840), - [anon_sym_if] = ACTIONS(1840), - [anon_sym_impl] = ACTIONS(1840), - [anon_sym_let] = ACTIONS(1840), - [anon_sym_loop] = ACTIONS(1840), - [anon_sym_match] = ACTIONS(1840), - [anon_sym_mod] = ACTIONS(1840), - [anon_sym_pub] = ACTIONS(1840), - [anon_sym_return] = ACTIONS(1840), - [anon_sym_static] = ACTIONS(1840), - [anon_sym_struct] = ACTIONS(1840), - [anon_sym_trait] = ACTIONS(1840), - [anon_sym_type] = ACTIONS(1840), - [anon_sym_union] = ACTIONS(1840), - [anon_sym_unsafe] = ACTIONS(1840), - [anon_sym_use] = ACTIONS(1840), - [anon_sym_while] = ACTIONS(1840), - [anon_sym_extern] = ACTIONS(1840), - [anon_sym_yield] = ACTIONS(1840), - [anon_sym_move] = ACTIONS(1840), - [anon_sym_try] = ACTIONS(1840), - [sym_integer_literal] = ACTIONS(1838), - [aux_sym_string_literal_token1] = ACTIONS(1838), - [sym_char_literal] = ACTIONS(1838), - [anon_sym_true] = ACTIONS(1840), - [anon_sym_false] = ACTIONS(1840), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1840), - [sym_super] = ACTIONS(1840), - [sym_crate] = ACTIONS(1840), - [sym_metavariable] = ACTIONS(1838), - [sym__raw_string_literal_start] = ACTIONS(1838), - [sym_float_literal] = ACTIONS(1838), + [ts_builtin_sym_end] = ACTIONS(1971), + [sym_identifier] = ACTIONS(1973), + [anon_sym_SEMI] = ACTIONS(1971), + [anon_sym_macro_rules_BANG] = ACTIONS(1971), + [anon_sym_LPAREN] = ACTIONS(1971), + [anon_sym_LBRACK] = ACTIONS(1971), + [anon_sym_LBRACE] = ACTIONS(1971), + [anon_sym_RBRACE] = ACTIONS(1971), + [anon_sym_macro] = ACTIONS(1973), + [anon_sym_STAR] = ACTIONS(1971), + [anon_sym_u8] = ACTIONS(1973), + [anon_sym_i8] = ACTIONS(1973), + [anon_sym_u16] = ACTIONS(1973), + [anon_sym_i16] = ACTIONS(1973), + [anon_sym_u32] = ACTIONS(1973), + [anon_sym_i32] = ACTIONS(1973), + [anon_sym_u64] = ACTIONS(1973), + [anon_sym_i64] = ACTIONS(1973), + [anon_sym_u128] = ACTIONS(1973), + [anon_sym_i128] = ACTIONS(1973), + [anon_sym_isize] = ACTIONS(1973), + [anon_sym_usize] = ACTIONS(1973), + [anon_sym_f32] = ACTIONS(1973), + [anon_sym_f64] = ACTIONS(1973), + [anon_sym_bool] = ACTIONS(1973), + [anon_sym_str] = ACTIONS(1973), + [anon_sym_char] = ACTIONS(1973), + [anon_sym_DASH] = ACTIONS(1971), + [anon_sym_BANG] = ACTIONS(1971), + [anon_sym_AMP] = ACTIONS(1971), + [anon_sym_PIPE] = ACTIONS(1971), + [anon_sym_LT] = ACTIONS(1971), + [anon_sym_DOT_DOT] = ACTIONS(1971), + [anon_sym_COLON_COLON] = ACTIONS(1971), + [anon_sym_POUND] = ACTIONS(1971), + [anon_sym_SQUOTE] = ACTIONS(1973), + [anon_sym_async] = ACTIONS(1973), + [anon_sym_break] = ACTIONS(1973), + [anon_sym_const] = ACTIONS(1973), + [anon_sym_continue] = ACTIONS(1973), + [anon_sym_default] = ACTIONS(1973), + [anon_sym_enum] = ACTIONS(1973), + [anon_sym_fn] = ACTIONS(1973), + [anon_sym_for] = ACTIONS(1973), + [anon_sym_if] = ACTIONS(1973), + [anon_sym_impl] = ACTIONS(1973), + [anon_sym_let] = ACTIONS(1973), + [anon_sym_loop] = ACTIONS(1973), + [anon_sym_match] = ACTIONS(1973), + [anon_sym_mod] = ACTIONS(1973), + [anon_sym_pub] = ACTIONS(1973), + [anon_sym_return] = ACTIONS(1973), + [anon_sym_static] = ACTIONS(1973), + [anon_sym_struct] = ACTIONS(1973), + [anon_sym_trait] = ACTIONS(1973), + [anon_sym_type] = ACTIONS(1973), + [anon_sym_union] = ACTIONS(1973), + [anon_sym_unsafe] = ACTIONS(1973), + [anon_sym_use] = ACTIONS(1973), + [anon_sym_while] = ACTIONS(1973), + [anon_sym_extern] = ACTIONS(1973), + [anon_sym_yield] = ACTIONS(1973), + [anon_sym_move] = ACTIONS(1973), + [anon_sym_try] = ACTIONS(1973), + [sym_integer_literal] = ACTIONS(1971), + [aux_sym_string_literal_token1] = ACTIONS(1971), + [sym_char_literal] = ACTIONS(1971), + [anon_sym_true] = ACTIONS(1973), + [anon_sym_false] = ACTIONS(1973), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1973), + [sym_super] = ACTIONS(1973), + [sym_crate] = ACTIONS(1973), + [sym_metavariable] = ACTIONS(1971), + [sym__raw_string_literal_start] = ACTIONS(1971), + [sym_float_literal] = ACTIONS(1971), }, [524] = { [sym_line_comment] = STATE(524), [sym_block_comment] = STATE(524), - [ts_builtin_sym_end] = ACTIONS(1842), - [sym_identifier] = ACTIONS(1844), - [anon_sym_SEMI] = ACTIONS(1842), - [anon_sym_macro_rules_BANG] = ACTIONS(1842), - [anon_sym_LPAREN] = ACTIONS(1842), - [anon_sym_LBRACK] = ACTIONS(1842), - [anon_sym_LBRACE] = ACTIONS(1842), - [anon_sym_RBRACE] = ACTIONS(1842), - [anon_sym_STAR] = ACTIONS(1842), - [anon_sym_u8] = ACTIONS(1844), - [anon_sym_i8] = ACTIONS(1844), - [anon_sym_u16] = ACTIONS(1844), - [anon_sym_i16] = ACTIONS(1844), - [anon_sym_u32] = ACTIONS(1844), - [anon_sym_i32] = ACTIONS(1844), - [anon_sym_u64] = ACTIONS(1844), - [anon_sym_i64] = ACTIONS(1844), - [anon_sym_u128] = ACTIONS(1844), - [anon_sym_i128] = ACTIONS(1844), - [anon_sym_isize] = ACTIONS(1844), - [anon_sym_usize] = ACTIONS(1844), - [anon_sym_f32] = ACTIONS(1844), - [anon_sym_f64] = ACTIONS(1844), - [anon_sym_bool] = ACTIONS(1844), - [anon_sym_str] = ACTIONS(1844), - [anon_sym_char] = ACTIONS(1844), - [anon_sym_DASH] = ACTIONS(1842), - [anon_sym_BANG] = ACTIONS(1842), - [anon_sym_AMP] = ACTIONS(1842), - [anon_sym_PIPE] = ACTIONS(1842), - [anon_sym_LT] = ACTIONS(1842), - [anon_sym_DOT_DOT] = ACTIONS(1842), - [anon_sym_COLON_COLON] = ACTIONS(1842), - [anon_sym_POUND] = ACTIONS(1842), - [anon_sym_SQUOTE] = ACTIONS(1844), - [anon_sym_async] = ACTIONS(1844), - [anon_sym_break] = ACTIONS(1844), - [anon_sym_const] = ACTIONS(1844), - [anon_sym_continue] = ACTIONS(1844), - [anon_sym_default] = ACTIONS(1844), - [anon_sym_enum] = ACTIONS(1844), - [anon_sym_fn] = ACTIONS(1844), - [anon_sym_for] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1844), - [anon_sym_impl] = ACTIONS(1844), - [anon_sym_let] = ACTIONS(1844), - [anon_sym_loop] = ACTIONS(1844), - [anon_sym_match] = ACTIONS(1844), - [anon_sym_mod] = ACTIONS(1844), - [anon_sym_pub] = ACTIONS(1844), - [anon_sym_return] = ACTIONS(1844), - [anon_sym_static] = ACTIONS(1844), - [anon_sym_struct] = ACTIONS(1844), - [anon_sym_trait] = ACTIONS(1844), - [anon_sym_type] = ACTIONS(1844), - [anon_sym_union] = ACTIONS(1844), - [anon_sym_unsafe] = ACTIONS(1844), - [anon_sym_use] = ACTIONS(1844), - [anon_sym_while] = ACTIONS(1844), - [anon_sym_extern] = ACTIONS(1844), - [anon_sym_yield] = ACTIONS(1844), - [anon_sym_move] = ACTIONS(1844), - [anon_sym_try] = ACTIONS(1844), - [sym_integer_literal] = ACTIONS(1842), - [aux_sym_string_literal_token1] = ACTIONS(1842), - [sym_char_literal] = ACTIONS(1842), - [anon_sym_true] = ACTIONS(1844), - [anon_sym_false] = ACTIONS(1844), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1844), - [sym_super] = ACTIONS(1844), - [sym_crate] = ACTIONS(1844), - [sym_metavariable] = ACTIONS(1842), - [sym__raw_string_literal_start] = ACTIONS(1842), - [sym_float_literal] = ACTIONS(1842), + [ts_builtin_sym_end] = ACTIONS(1975), + [sym_identifier] = ACTIONS(1977), + [anon_sym_SEMI] = ACTIONS(1975), + [anon_sym_macro_rules_BANG] = ACTIONS(1975), + [anon_sym_LPAREN] = ACTIONS(1975), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_LBRACE] = ACTIONS(1975), + [anon_sym_RBRACE] = ACTIONS(1975), + [anon_sym_macro] = ACTIONS(1977), + [anon_sym_STAR] = ACTIONS(1975), + [anon_sym_u8] = ACTIONS(1977), + [anon_sym_i8] = ACTIONS(1977), + [anon_sym_u16] = ACTIONS(1977), + [anon_sym_i16] = ACTIONS(1977), + [anon_sym_u32] = ACTIONS(1977), + [anon_sym_i32] = ACTIONS(1977), + [anon_sym_u64] = ACTIONS(1977), + [anon_sym_i64] = ACTIONS(1977), + [anon_sym_u128] = ACTIONS(1977), + [anon_sym_i128] = ACTIONS(1977), + [anon_sym_isize] = ACTIONS(1977), + [anon_sym_usize] = ACTIONS(1977), + [anon_sym_f32] = ACTIONS(1977), + [anon_sym_f64] = ACTIONS(1977), + [anon_sym_bool] = ACTIONS(1977), + [anon_sym_str] = ACTIONS(1977), + [anon_sym_char] = ACTIONS(1977), + [anon_sym_DASH] = ACTIONS(1975), + [anon_sym_BANG] = ACTIONS(1975), + [anon_sym_AMP] = ACTIONS(1975), + [anon_sym_PIPE] = ACTIONS(1975), + [anon_sym_LT] = ACTIONS(1975), + [anon_sym_DOT_DOT] = ACTIONS(1975), + [anon_sym_COLON_COLON] = ACTIONS(1975), + [anon_sym_POUND] = ACTIONS(1975), + [anon_sym_SQUOTE] = ACTIONS(1977), + [anon_sym_async] = ACTIONS(1977), + [anon_sym_break] = ACTIONS(1977), + [anon_sym_const] = ACTIONS(1977), + [anon_sym_continue] = ACTIONS(1977), + [anon_sym_default] = ACTIONS(1977), + [anon_sym_enum] = ACTIONS(1977), + [anon_sym_fn] = ACTIONS(1977), + [anon_sym_for] = ACTIONS(1977), + [anon_sym_if] = ACTIONS(1977), + [anon_sym_impl] = ACTIONS(1977), + [anon_sym_let] = ACTIONS(1977), + [anon_sym_loop] = ACTIONS(1977), + [anon_sym_match] = ACTIONS(1977), + [anon_sym_mod] = ACTIONS(1977), + [anon_sym_pub] = ACTIONS(1977), + [anon_sym_return] = ACTIONS(1977), + [anon_sym_static] = ACTIONS(1977), + [anon_sym_struct] = ACTIONS(1977), + [anon_sym_trait] = ACTIONS(1977), + [anon_sym_type] = ACTIONS(1977), + [anon_sym_union] = ACTIONS(1977), + [anon_sym_unsafe] = ACTIONS(1977), + [anon_sym_use] = ACTIONS(1977), + [anon_sym_while] = ACTIONS(1977), + [anon_sym_extern] = ACTIONS(1977), + [anon_sym_yield] = ACTIONS(1977), + [anon_sym_move] = ACTIONS(1977), + [anon_sym_try] = ACTIONS(1977), + [sym_integer_literal] = ACTIONS(1975), + [aux_sym_string_literal_token1] = ACTIONS(1975), + [sym_char_literal] = ACTIONS(1975), + [anon_sym_true] = ACTIONS(1977), + [anon_sym_false] = ACTIONS(1977), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1977), + [sym_super] = ACTIONS(1977), + [sym_crate] = ACTIONS(1977), + [sym_metavariable] = ACTIONS(1975), + [sym__raw_string_literal_start] = ACTIONS(1975), + [sym_float_literal] = ACTIONS(1975), }, [525] = { [sym_line_comment] = STATE(525), [sym_block_comment] = STATE(525), - [ts_builtin_sym_end] = ACTIONS(1846), - [sym_identifier] = ACTIONS(1848), - [anon_sym_SEMI] = ACTIONS(1846), - [anon_sym_macro_rules_BANG] = ACTIONS(1846), - [anon_sym_LPAREN] = ACTIONS(1846), - [anon_sym_LBRACK] = ACTIONS(1846), - [anon_sym_LBRACE] = ACTIONS(1846), - [anon_sym_RBRACE] = ACTIONS(1846), - [anon_sym_STAR] = ACTIONS(1846), - [anon_sym_u8] = ACTIONS(1848), - [anon_sym_i8] = ACTIONS(1848), - [anon_sym_u16] = ACTIONS(1848), - [anon_sym_i16] = ACTIONS(1848), - [anon_sym_u32] = ACTIONS(1848), - [anon_sym_i32] = ACTIONS(1848), - [anon_sym_u64] = ACTIONS(1848), - [anon_sym_i64] = ACTIONS(1848), - [anon_sym_u128] = ACTIONS(1848), - [anon_sym_i128] = ACTIONS(1848), - [anon_sym_isize] = ACTIONS(1848), - [anon_sym_usize] = ACTIONS(1848), - [anon_sym_f32] = ACTIONS(1848), - [anon_sym_f64] = ACTIONS(1848), - [anon_sym_bool] = ACTIONS(1848), - [anon_sym_str] = ACTIONS(1848), - [anon_sym_char] = ACTIONS(1848), - [anon_sym_DASH] = ACTIONS(1846), - [anon_sym_BANG] = ACTIONS(1846), - [anon_sym_AMP] = ACTIONS(1846), - [anon_sym_PIPE] = ACTIONS(1846), - [anon_sym_LT] = ACTIONS(1846), - [anon_sym_DOT_DOT] = ACTIONS(1846), - [anon_sym_COLON_COLON] = ACTIONS(1846), - [anon_sym_POUND] = ACTIONS(1846), - [anon_sym_SQUOTE] = ACTIONS(1848), - [anon_sym_async] = ACTIONS(1848), - [anon_sym_break] = ACTIONS(1848), - [anon_sym_const] = ACTIONS(1848), - [anon_sym_continue] = ACTIONS(1848), - [anon_sym_default] = ACTIONS(1848), - [anon_sym_enum] = ACTIONS(1848), - [anon_sym_fn] = ACTIONS(1848), - [anon_sym_for] = ACTIONS(1848), - [anon_sym_if] = ACTIONS(1848), - [anon_sym_impl] = ACTIONS(1848), - [anon_sym_let] = ACTIONS(1848), - [anon_sym_loop] = ACTIONS(1848), - [anon_sym_match] = ACTIONS(1848), - [anon_sym_mod] = ACTIONS(1848), - [anon_sym_pub] = ACTIONS(1848), - [anon_sym_return] = ACTIONS(1848), - [anon_sym_static] = ACTIONS(1848), - [anon_sym_struct] = ACTIONS(1848), - [anon_sym_trait] = ACTIONS(1848), - [anon_sym_type] = ACTIONS(1848), - [anon_sym_union] = ACTIONS(1848), - [anon_sym_unsafe] = ACTIONS(1848), - [anon_sym_use] = ACTIONS(1848), - [anon_sym_while] = ACTIONS(1848), - [anon_sym_extern] = ACTIONS(1848), - [anon_sym_yield] = ACTIONS(1848), - [anon_sym_move] = ACTIONS(1848), - [anon_sym_try] = ACTIONS(1848), - [sym_integer_literal] = ACTIONS(1846), - [aux_sym_string_literal_token1] = ACTIONS(1846), - [sym_char_literal] = ACTIONS(1846), - [anon_sym_true] = ACTIONS(1848), - [anon_sym_false] = ACTIONS(1848), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1848), - [sym_super] = ACTIONS(1848), - [sym_crate] = ACTIONS(1848), - [sym_metavariable] = ACTIONS(1846), - [sym__raw_string_literal_start] = ACTIONS(1846), - [sym_float_literal] = ACTIONS(1846), + [ts_builtin_sym_end] = ACTIONS(1979), + [sym_identifier] = ACTIONS(1981), + [anon_sym_SEMI] = ACTIONS(1979), + [anon_sym_macro_rules_BANG] = ACTIONS(1979), + [anon_sym_LPAREN] = ACTIONS(1979), + [anon_sym_LBRACK] = ACTIONS(1979), + [anon_sym_LBRACE] = ACTIONS(1979), + [anon_sym_RBRACE] = ACTIONS(1979), + [anon_sym_macro] = ACTIONS(1981), + [anon_sym_STAR] = ACTIONS(1979), + [anon_sym_u8] = ACTIONS(1981), + [anon_sym_i8] = ACTIONS(1981), + [anon_sym_u16] = ACTIONS(1981), + [anon_sym_i16] = ACTIONS(1981), + [anon_sym_u32] = ACTIONS(1981), + [anon_sym_i32] = ACTIONS(1981), + [anon_sym_u64] = ACTIONS(1981), + [anon_sym_i64] = ACTIONS(1981), + [anon_sym_u128] = ACTIONS(1981), + [anon_sym_i128] = ACTIONS(1981), + [anon_sym_isize] = ACTIONS(1981), + [anon_sym_usize] = ACTIONS(1981), + [anon_sym_f32] = ACTIONS(1981), + [anon_sym_f64] = ACTIONS(1981), + [anon_sym_bool] = ACTIONS(1981), + [anon_sym_str] = ACTIONS(1981), + [anon_sym_char] = ACTIONS(1981), + [anon_sym_DASH] = ACTIONS(1979), + [anon_sym_BANG] = ACTIONS(1979), + [anon_sym_AMP] = ACTIONS(1979), + [anon_sym_PIPE] = ACTIONS(1979), + [anon_sym_LT] = ACTIONS(1979), + [anon_sym_DOT_DOT] = ACTIONS(1979), + [anon_sym_COLON_COLON] = ACTIONS(1979), + [anon_sym_POUND] = ACTIONS(1979), + [anon_sym_SQUOTE] = ACTIONS(1981), + [anon_sym_async] = ACTIONS(1981), + [anon_sym_break] = ACTIONS(1981), + [anon_sym_const] = ACTIONS(1981), + [anon_sym_continue] = ACTIONS(1981), + [anon_sym_default] = ACTIONS(1981), + [anon_sym_enum] = ACTIONS(1981), + [anon_sym_fn] = ACTIONS(1981), + [anon_sym_for] = ACTIONS(1981), + [anon_sym_if] = ACTIONS(1981), + [anon_sym_impl] = ACTIONS(1981), + [anon_sym_let] = ACTIONS(1981), + [anon_sym_loop] = ACTIONS(1981), + [anon_sym_match] = ACTIONS(1981), + [anon_sym_mod] = ACTIONS(1981), + [anon_sym_pub] = ACTIONS(1981), + [anon_sym_return] = ACTIONS(1981), + [anon_sym_static] = ACTIONS(1981), + [anon_sym_struct] = ACTIONS(1981), + [anon_sym_trait] = ACTIONS(1981), + [anon_sym_type] = ACTIONS(1981), + [anon_sym_union] = ACTIONS(1981), + [anon_sym_unsafe] = ACTIONS(1981), + [anon_sym_use] = ACTIONS(1981), + [anon_sym_while] = ACTIONS(1981), + [anon_sym_extern] = ACTIONS(1981), + [anon_sym_yield] = ACTIONS(1981), + [anon_sym_move] = ACTIONS(1981), + [anon_sym_try] = ACTIONS(1981), + [sym_integer_literal] = ACTIONS(1979), + [aux_sym_string_literal_token1] = ACTIONS(1979), + [sym_char_literal] = ACTIONS(1979), + [anon_sym_true] = ACTIONS(1981), + [anon_sym_false] = ACTIONS(1981), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1981), + [sym_super] = ACTIONS(1981), + [sym_crate] = ACTIONS(1981), + [sym_metavariable] = ACTIONS(1979), + [sym__raw_string_literal_start] = ACTIONS(1979), + [sym_float_literal] = ACTIONS(1979), }, [526] = { [sym_line_comment] = STATE(526), [sym_block_comment] = STATE(526), - [ts_builtin_sym_end] = ACTIONS(1850), - [sym_identifier] = ACTIONS(1852), - [anon_sym_SEMI] = ACTIONS(1850), - [anon_sym_macro_rules_BANG] = ACTIONS(1850), - [anon_sym_LPAREN] = ACTIONS(1850), - [anon_sym_LBRACK] = ACTIONS(1850), - [anon_sym_LBRACE] = ACTIONS(1850), - [anon_sym_RBRACE] = ACTIONS(1850), - [anon_sym_STAR] = ACTIONS(1850), - [anon_sym_u8] = ACTIONS(1852), - [anon_sym_i8] = ACTIONS(1852), - [anon_sym_u16] = ACTIONS(1852), - [anon_sym_i16] = ACTIONS(1852), - [anon_sym_u32] = ACTIONS(1852), - [anon_sym_i32] = ACTIONS(1852), - [anon_sym_u64] = ACTIONS(1852), - [anon_sym_i64] = ACTIONS(1852), - [anon_sym_u128] = ACTIONS(1852), - [anon_sym_i128] = ACTIONS(1852), - [anon_sym_isize] = ACTIONS(1852), - [anon_sym_usize] = ACTIONS(1852), - [anon_sym_f32] = ACTIONS(1852), - [anon_sym_f64] = ACTIONS(1852), - [anon_sym_bool] = ACTIONS(1852), - [anon_sym_str] = ACTIONS(1852), - [anon_sym_char] = ACTIONS(1852), - [anon_sym_DASH] = ACTIONS(1850), - [anon_sym_BANG] = ACTIONS(1850), - [anon_sym_AMP] = ACTIONS(1850), - [anon_sym_PIPE] = ACTIONS(1850), - [anon_sym_LT] = ACTIONS(1850), - [anon_sym_DOT_DOT] = ACTIONS(1850), - [anon_sym_COLON_COLON] = ACTIONS(1850), - [anon_sym_POUND] = ACTIONS(1850), - [anon_sym_SQUOTE] = ACTIONS(1852), - [anon_sym_async] = ACTIONS(1852), - [anon_sym_break] = ACTIONS(1852), - [anon_sym_const] = ACTIONS(1852), - [anon_sym_continue] = ACTIONS(1852), - [anon_sym_default] = ACTIONS(1852), - [anon_sym_enum] = ACTIONS(1852), - [anon_sym_fn] = ACTIONS(1852), - [anon_sym_for] = ACTIONS(1852), - [anon_sym_if] = ACTIONS(1852), - [anon_sym_impl] = ACTIONS(1852), - [anon_sym_let] = ACTIONS(1852), - [anon_sym_loop] = ACTIONS(1852), - [anon_sym_match] = ACTIONS(1852), - [anon_sym_mod] = ACTIONS(1852), - [anon_sym_pub] = ACTIONS(1852), - [anon_sym_return] = ACTIONS(1852), - [anon_sym_static] = ACTIONS(1852), - [anon_sym_struct] = ACTIONS(1852), - [anon_sym_trait] = ACTIONS(1852), - [anon_sym_type] = ACTIONS(1852), - [anon_sym_union] = ACTIONS(1852), - [anon_sym_unsafe] = ACTIONS(1852), - [anon_sym_use] = ACTIONS(1852), - [anon_sym_while] = ACTIONS(1852), - [anon_sym_extern] = ACTIONS(1852), - [anon_sym_yield] = ACTIONS(1852), - [anon_sym_move] = ACTIONS(1852), - [anon_sym_try] = ACTIONS(1852), - [sym_integer_literal] = ACTIONS(1850), - [aux_sym_string_literal_token1] = ACTIONS(1850), - [sym_char_literal] = ACTIONS(1850), - [anon_sym_true] = ACTIONS(1852), - [anon_sym_false] = ACTIONS(1852), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1852), - [sym_super] = ACTIONS(1852), - [sym_crate] = ACTIONS(1852), - [sym_metavariable] = ACTIONS(1850), - [sym__raw_string_literal_start] = ACTIONS(1850), - [sym_float_literal] = ACTIONS(1850), + [ts_builtin_sym_end] = ACTIONS(1983), + [sym_identifier] = ACTIONS(1985), + [anon_sym_SEMI] = ACTIONS(1983), + [anon_sym_macro_rules_BANG] = ACTIONS(1983), + [anon_sym_LPAREN] = ACTIONS(1983), + [anon_sym_LBRACK] = ACTIONS(1983), + [anon_sym_LBRACE] = ACTIONS(1983), + [anon_sym_RBRACE] = ACTIONS(1983), + [anon_sym_macro] = ACTIONS(1985), + [anon_sym_STAR] = ACTIONS(1983), + [anon_sym_u8] = ACTIONS(1985), + [anon_sym_i8] = ACTIONS(1985), + [anon_sym_u16] = ACTIONS(1985), + [anon_sym_i16] = ACTIONS(1985), + [anon_sym_u32] = ACTIONS(1985), + [anon_sym_i32] = ACTIONS(1985), + [anon_sym_u64] = ACTIONS(1985), + [anon_sym_i64] = ACTIONS(1985), + [anon_sym_u128] = ACTIONS(1985), + [anon_sym_i128] = ACTIONS(1985), + [anon_sym_isize] = ACTIONS(1985), + [anon_sym_usize] = ACTIONS(1985), + [anon_sym_f32] = ACTIONS(1985), + [anon_sym_f64] = ACTIONS(1985), + [anon_sym_bool] = ACTIONS(1985), + [anon_sym_str] = ACTIONS(1985), + [anon_sym_char] = ACTIONS(1985), + [anon_sym_DASH] = ACTIONS(1983), + [anon_sym_BANG] = ACTIONS(1983), + [anon_sym_AMP] = ACTIONS(1983), + [anon_sym_PIPE] = ACTIONS(1983), + [anon_sym_LT] = ACTIONS(1983), + [anon_sym_DOT_DOT] = ACTIONS(1983), + [anon_sym_COLON_COLON] = ACTIONS(1983), + [anon_sym_POUND] = ACTIONS(1983), + [anon_sym_SQUOTE] = ACTIONS(1985), + [anon_sym_async] = ACTIONS(1985), + [anon_sym_break] = ACTIONS(1985), + [anon_sym_const] = ACTIONS(1985), + [anon_sym_continue] = ACTIONS(1985), + [anon_sym_default] = ACTIONS(1985), + [anon_sym_enum] = ACTIONS(1985), + [anon_sym_fn] = ACTIONS(1985), + [anon_sym_for] = ACTIONS(1985), + [anon_sym_if] = ACTIONS(1985), + [anon_sym_impl] = ACTIONS(1985), + [anon_sym_let] = ACTIONS(1985), + [anon_sym_loop] = ACTIONS(1985), + [anon_sym_match] = ACTIONS(1985), + [anon_sym_mod] = ACTIONS(1985), + [anon_sym_pub] = ACTIONS(1985), + [anon_sym_return] = ACTIONS(1985), + [anon_sym_static] = ACTIONS(1985), + [anon_sym_struct] = ACTIONS(1985), + [anon_sym_trait] = ACTIONS(1985), + [anon_sym_type] = ACTIONS(1985), + [anon_sym_union] = ACTIONS(1985), + [anon_sym_unsafe] = ACTIONS(1985), + [anon_sym_use] = ACTIONS(1985), + [anon_sym_while] = ACTIONS(1985), + [anon_sym_extern] = ACTIONS(1985), + [anon_sym_yield] = ACTIONS(1985), + [anon_sym_move] = ACTIONS(1985), + [anon_sym_try] = ACTIONS(1985), + [sym_integer_literal] = ACTIONS(1983), + [aux_sym_string_literal_token1] = ACTIONS(1983), + [sym_char_literal] = ACTIONS(1983), + [anon_sym_true] = ACTIONS(1985), + [anon_sym_false] = ACTIONS(1985), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1985), + [sym_super] = ACTIONS(1985), + [sym_crate] = ACTIONS(1985), + [sym_metavariable] = ACTIONS(1983), + [sym__raw_string_literal_start] = ACTIONS(1983), + [sym_float_literal] = ACTIONS(1983), }, [527] = { [sym_line_comment] = STATE(527), [sym_block_comment] = STATE(527), - [ts_builtin_sym_end] = ACTIONS(1854), - [sym_identifier] = ACTIONS(1856), - [anon_sym_SEMI] = ACTIONS(1854), - [anon_sym_macro_rules_BANG] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(1854), - [anon_sym_LBRACK] = ACTIONS(1854), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_RBRACE] = ACTIONS(1854), - [anon_sym_STAR] = ACTIONS(1854), - [anon_sym_u8] = ACTIONS(1856), - [anon_sym_i8] = ACTIONS(1856), - [anon_sym_u16] = ACTIONS(1856), - [anon_sym_i16] = ACTIONS(1856), - [anon_sym_u32] = ACTIONS(1856), - [anon_sym_i32] = ACTIONS(1856), - [anon_sym_u64] = ACTIONS(1856), - [anon_sym_i64] = ACTIONS(1856), - [anon_sym_u128] = ACTIONS(1856), - [anon_sym_i128] = ACTIONS(1856), - [anon_sym_isize] = ACTIONS(1856), - [anon_sym_usize] = ACTIONS(1856), - [anon_sym_f32] = ACTIONS(1856), - [anon_sym_f64] = ACTIONS(1856), - [anon_sym_bool] = ACTIONS(1856), - [anon_sym_str] = ACTIONS(1856), - [anon_sym_char] = ACTIONS(1856), - [anon_sym_DASH] = ACTIONS(1854), - [anon_sym_BANG] = ACTIONS(1854), - [anon_sym_AMP] = ACTIONS(1854), - [anon_sym_PIPE] = ACTIONS(1854), - [anon_sym_LT] = ACTIONS(1854), - [anon_sym_DOT_DOT] = ACTIONS(1854), - [anon_sym_COLON_COLON] = ACTIONS(1854), - [anon_sym_POUND] = ACTIONS(1854), - [anon_sym_SQUOTE] = ACTIONS(1856), - [anon_sym_async] = ACTIONS(1856), - [anon_sym_break] = ACTIONS(1856), - [anon_sym_const] = ACTIONS(1856), - [anon_sym_continue] = ACTIONS(1856), - [anon_sym_default] = ACTIONS(1856), - [anon_sym_enum] = ACTIONS(1856), - [anon_sym_fn] = ACTIONS(1856), - [anon_sym_for] = ACTIONS(1856), - [anon_sym_if] = ACTIONS(1856), - [anon_sym_impl] = ACTIONS(1856), - [anon_sym_let] = ACTIONS(1856), - [anon_sym_loop] = ACTIONS(1856), - [anon_sym_match] = ACTIONS(1856), - [anon_sym_mod] = ACTIONS(1856), - [anon_sym_pub] = ACTIONS(1856), - [anon_sym_return] = ACTIONS(1856), - [anon_sym_static] = ACTIONS(1856), - [anon_sym_struct] = ACTIONS(1856), - [anon_sym_trait] = ACTIONS(1856), - [anon_sym_type] = ACTIONS(1856), - [anon_sym_union] = ACTIONS(1856), - [anon_sym_unsafe] = ACTIONS(1856), - [anon_sym_use] = ACTIONS(1856), - [anon_sym_while] = ACTIONS(1856), - [anon_sym_extern] = ACTIONS(1856), - [anon_sym_yield] = ACTIONS(1856), - [anon_sym_move] = ACTIONS(1856), - [anon_sym_try] = ACTIONS(1856), - [sym_integer_literal] = ACTIONS(1854), - [aux_sym_string_literal_token1] = ACTIONS(1854), - [sym_char_literal] = ACTIONS(1854), - [anon_sym_true] = ACTIONS(1856), - [anon_sym_false] = ACTIONS(1856), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1856), - [sym_super] = ACTIONS(1856), - [sym_crate] = ACTIONS(1856), - [sym_metavariable] = ACTIONS(1854), - [sym__raw_string_literal_start] = ACTIONS(1854), - [sym_float_literal] = ACTIONS(1854), + [ts_builtin_sym_end] = ACTIONS(1987), + [sym_identifier] = ACTIONS(1989), + [anon_sym_SEMI] = ACTIONS(1987), + [anon_sym_macro_rules_BANG] = ACTIONS(1987), + [anon_sym_LPAREN] = ACTIONS(1987), + [anon_sym_LBRACK] = ACTIONS(1987), + [anon_sym_LBRACE] = ACTIONS(1987), + [anon_sym_RBRACE] = ACTIONS(1987), + [anon_sym_macro] = ACTIONS(1989), + [anon_sym_STAR] = ACTIONS(1987), + [anon_sym_u8] = ACTIONS(1989), + [anon_sym_i8] = ACTIONS(1989), + [anon_sym_u16] = ACTIONS(1989), + [anon_sym_i16] = ACTIONS(1989), + [anon_sym_u32] = ACTIONS(1989), + [anon_sym_i32] = ACTIONS(1989), + [anon_sym_u64] = ACTIONS(1989), + [anon_sym_i64] = ACTIONS(1989), + [anon_sym_u128] = ACTIONS(1989), + [anon_sym_i128] = ACTIONS(1989), + [anon_sym_isize] = ACTIONS(1989), + [anon_sym_usize] = ACTIONS(1989), + [anon_sym_f32] = ACTIONS(1989), + [anon_sym_f64] = ACTIONS(1989), + [anon_sym_bool] = ACTIONS(1989), + [anon_sym_str] = ACTIONS(1989), + [anon_sym_char] = ACTIONS(1989), + [anon_sym_DASH] = ACTIONS(1987), + [anon_sym_BANG] = ACTIONS(1987), + [anon_sym_AMP] = ACTIONS(1987), + [anon_sym_PIPE] = ACTIONS(1987), + [anon_sym_LT] = ACTIONS(1987), + [anon_sym_DOT_DOT] = ACTIONS(1987), + [anon_sym_COLON_COLON] = ACTIONS(1987), + [anon_sym_POUND] = ACTIONS(1987), + [anon_sym_SQUOTE] = ACTIONS(1989), + [anon_sym_async] = ACTIONS(1989), + [anon_sym_break] = ACTIONS(1989), + [anon_sym_const] = ACTIONS(1989), + [anon_sym_continue] = ACTIONS(1989), + [anon_sym_default] = ACTIONS(1989), + [anon_sym_enum] = ACTIONS(1989), + [anon_sym_fn] = ACTIONS(1989), + [anon_sym_for] = ACTIONS(1989), + [anon_sym_if] = ACTIONS(1989), + [anon_sym_impl] = ACTIONS(1989), + [anon_sym_let] = ACTIONS(1989), + [anon_sym_loop] = ACTIONS(1989), + [anon_sym_match] = ACTIONS(1989), + [anon_sym_mod] = ACTIONS(1989), + [anon_sym_pub] = ACTIONS(1989), + [anon_sym_return] = ACTIONS(1989), + [anon_sym_static] = ACTIONS(1989), + [anon_sym_struct] = ACTIONS(1989), + [anon_sym_trait] = ACTIONS(1989), + [anon_sym_type] = ACTIONS(1989), + [anon_sym_union] = ACTIONS(1989), + [anon_sym_unsafe] = ACTIONS(1989), + [anon_sym_use] = ACTIONS(1989), + [anon_sym_while] = ACTIONS(1989), + [anon_sym_extern] = ACTIONS(1989), + [anon_sym_yield] = ACTIONS(1989), + [anon_sym_move] = ACTIONS(1989), + [anon_sym_try] = ACTIONS(1989), + [sym_integer_literal] = ACTIONS(1987), + [aux_sym_string_literal_token1] = ACTIONS(1987), + [sym_char_literal] = ACTIONS(1987), + [anon_sym_true] = ACTIONS(1989), + [anon_sym_false] = ACTIONS(1989), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1989), + [sym_super] = ACTIONS(1989), + [sym_crate] = ACTIONS(1989), + [sym_metavariable] = ACTIONS(1987), + [sym__raw_string_literal_start] = ACTIONS(1987), + [sym_float_literal] = ACTIONS(1987), }, [528] = { [sym_line_comment] = STATE(528), [sym_block_comment] = STATE(528), - [ts_builtin_sym_end] = ACTIONS(1858), - [sym_identifier] = ACTIONS(1860), - [anon_sym_SEMI] = ACTIONS(1858), - [anon_sym_macro_rules_BANG] = ACTIONS(1858), - [anon_sym_LPAREN] = ACTIONS(1858), - [anon_sym_LBRACK] = ACTIONS(1858), - [anon_sym_LBRACE] = ACTIONS(1858), - [anon_sym_RBRACE] = ACTIONS(1858), - [anon_sym_STAR] = ACTIONS(1858), - [anon_sym_u8] = ACTIONS(1860), - [anon_sym_i8] = ACTIONS(1860), - [anon_sym_u16] = ACTIONS(1860), - [anon_sym_i16] = ACTIONS(1860), - [anon_sym_u32] = ACTIONS(1860), - [anon_sym_i32] = ACTIONS(1860), - [anon_sym_u64] = ACTIONS(1860), - [anon_sym_i64] = ACTIONS(1860), - [anon_sym_u128] = ACTIONS(1860), - [anon_sym_i128] = ACTIONS(1860), - [anon_sym_isize] = ACTIONS(1860), - [anon_sym_usize] = ACTIONS(1860), - [anon_sym_f32] = ACTIONS(1860), - [anon_sym_f64] = ACTIONS(1860), - [anon_sym_bool] = ACTIONS(1860), - [anon_sym_str] = ACTIONS(1860), - [anon_sym_char] = ACTIONS(1860), - [anon_sym_DASH] = ACTIONS(1858), - [anon_sym_BANG] = ACTIONS(1858), - [anon_sym_AMP] = ACTIONS(1858), - [anon_sym_PIPE] = ACTIONS(1858), - [anon_sym_LT] = ACTIONS(1858), - [anon_sym_DOT_DOT] = ACTIONS(1858), - [anon_sym_COLON_COLON] = ACTIONS(1858), - [anon_sym_POUND] = ACTIONS(1858), - [anon_sym_SQUOTE] = ACTIONS(1860), - [anon_sym_async] = ACTIONS(1860), - [anon_sym_break] = ACTIONS(1860), - [anon_sym_const] = ACTIONS(1860), - [anon_sym_continue] = ACTIONS(1860), - [anon_sym_default] = ACTIONS(1860), - [anon_sym_enum] = ACTIONS(1860), - [anon_sym_fn] = ACTIONS(1860), - [anon_sym_for] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(1860), - [anon_sym_impl] = ACTIONS(1860), - [anon_sym_let] = ACTIONS(1860), - [anon_sym_loop] = ACTIONS(1860), - [anon_sym_match] = ACTIONS(1860), - [anon_sym_mod] = ACTIONS(1860), - [anon_sym_pub] = ACTIONS(1860), - [anon_sym_return] = ACTIONS(1860), - [anon_sym_static] = ACTIONS(1860), - [anon_sym_struct] = ACTIONS(1860), - [anon_sym_trait] = ACTIONS(1860), - [anon_sym_type] = ACTIONS(1860), - [anon_sym_union] = ACTIONS(1860), - [anon_sym_unsafe] = ACTIONS(1860), - [anon_sym_use] = ACTIONS(1860), - [anon_sym_while] = ACTIONS(1860), - [anon_sym_extern] = ACTIONS(1860), - [anon_sym_yield] = ACTIONS(1860), - [anon_sym_move] = ACTIONS(1860), - [anon_sym_try] = ACTIONS(1860), - [sym_integer_literal] = ACTIONS(1858), - [aux_sym_string_literal_token1] = ACTIONS(1858), - [sym_char_literal] = ACTIONS(1858), - [anon_sym_true] = ACTIONS(1860), - [anon_sym_false] = ACTIONS(1860), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1860), - [sym_super] = ACTIONS(1860), - [sym_crate] = ACTIONS(1860), - [sym_metavariable] = ACTIONS(1858), - [sym__raw_string_literal_start] = ACTIONS(1858), - [sym_float_literal] = ACTIONS(1858), + [ts_builtin_sym_end] = ACTIONS(1991), + [sym_identifier] = ACTIONS(1993), + [anon_sym_SEMI] = ACTIONS(1991), + [anon_sym_macro_rules_BANG] = ACTIONS(1991), + [anon_sym_LPAREN] = ACTIONS(1991), + [anon_sym_LBRACK] = ACTIONS(1991), + [anon_sym_LBRACE] = ACTIONS(1991), + [anon_sym_RBRACE] = ACTIONS(1991), + [anon_sym_macro] = ACTIONS(1993), + [anon_sym_STAR] = ACTIONS(1991), + [anon_sym_u8] = ACTIONS(1993), + [anon_sym_i8] = ACTIONS(1993), + [anon_sym_u16] = ACTIONS(1993), + [anon_sym_i16] = ACTIONS(1993), + [anon_sym_u32] = ACTIONS(1993), + [anon_sym_i32] = ACTIONS(1993), + [anon_sym_u64] = ACTIONS(1993), + [anon_sym_i64] = ACTIONS(1993), + [anon_sym_u128] = ACTIONS(1993), + [anon_sym_i128] = ACTIONS(1993), + [anon_sym_isize] = ACTIONS(1993), + [anon_sym_usize] = ACTIONS(1993), + [anon_sym_f32] = ACTIONS(1993), + [anon_sym_f64] = ACTIONS(1993), + [anon_sym_bool] = ACTIONS(1993), + [anon_sym_str] = ACTIONS(1993), + [anon_sym_char] = ACTIONS(1993), + [anon_sym_DASH] = ACTIONS(1991), + [anon_sym_BANG] = ACTIONS(1991), + [anon_sym_AMP] = ACTIONS(1991), + [anon_sym_PIPE] = ACTIONS(1991), + [anon_sym_LT] = ACTIONS(1991), + [anon_sym_DOT_DOT] = ACTIONS(1991), + [anon_sym_COLON_COLON] = ACTIONS(1991), + [anon_sym_POUND] = ACTIONS(1991), + [anon_sym_SQUOTE] = ACTIONS(1993), + [anon_sym_async] = ACTIONS(1993), + [anon_sym_break] = ACTIONS(1993), + [anon_sym_const] = ACTIONS(1993), + [anon_sym_continue] = ACTIONS(1993), + [anon_sym_default] = ACTIONS(1993), + [anon_sym_enum] = ACTIONS(1993), + [anon_sym_fn] = ACTIONS(1993), + [anon_sym_for] = ACTIONS(1993), + [anon_sym_if] = ACTIONS(1993), + [anon_sym_impl] = ACTIONS(1993), + [anon_sym_let] = ACTIONS(1993), + [anon_sym_loop] = ACTIONS(1993), + [anon_sym_match] = ACTIONS(1993), + [anon_sym_mod] = ACTIONS(1993), + [anon_sym_pub] = ACTIONS(1993), + [anon_sym_return] = ACTIONS(1993), + [anon_sym_static] = ACTIONS(1993), + [anon_sym_struct] = ACTIONS(1993), + [anon_sym_trait] = ACTIONS(1993), + [anon_sym_type] = ACTIONS(1993), + [anon_sym_union] = ACTIONS(1993), + [anon_sym_unsafe] = ACTIONS(1993), + [anon_sym_use] = ACTIONS(1993), + [anon_sym_while] = ACTIONS(1993), + [anon_sym_extern] = ACTIONS(1993), + [anon_sym_yield] = ACTIONS(1993), + [anon_sym_move] = ACTIONS(1993), + [anon_sym_try] = ACTIONS(1993), + [sym_integer_literal] = ACTIONS(1991), + [aux_sym_string_literal_token1] = ACTIONS(1991), + [sym_char_literal] = ACTIONS(1991), + [anon_sym_true] = ACTIONS(1993), + [anon_sym_false] = ACTIONS(1993), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1993), + [sym_super] = ACTIONS(1993), + [sym_crate] = ACTIONS(1993), + [sym_metavariable] = ACTIONS(1991), + [sym__raw_string_literal_start] = ACTIONS(1991), + [sym_float_literal] = ACTIONS(1991), }, [529] = { [sym_line_comment] = STATE(529), [sym_block_comment] = STATE(529), - [ts_builtin_sym_end] = ACTIONS(1862), - [sym_identifier] = ACTIONS(1864), - [anon_sym_SEMI] = ACTIONS(1862), - [anon_sym_macro_rules_BANG] = ACTIONS(1862), - [anon_sym_LPAREN] = ACTIONS(1862), - [anon_sym_LBRACK] = ACTIONS(1862), - [anon_sym_LBRACE] = ACTIONS(1862), - [anon_sym_RBRACE] = ACTIONS(1862), - [anon_sym_STAR] = ACTIONS(1862), - [anon_sym_u8] = ACTIONS(1864), - [anon_sym_i8] = ACTIONS(1864), - [anon_sym_u16] = ACTIONS(1864), - [anon_sym_i16] = ACTIONS(1864), - [anon_sym_u32] = ACTIONS(1864), - [anon_sym_i32] = ACTIONS(1864), - [anon_sym_u64] = ACTIONS(1864), - [anon_sym_i64] = ACTIONS(1864), - [anon_sym_u128] = ACTIONS(1864), - [anon_sym_i128] = ACTIONS(1864), - [anon_sym_isize] = ACTIONS(1864), - [anon_sym_usize] = ACTIONS(1864), - [anon_sym_f32] = ACTIONS(1864), - [anon_sym_f64] = ACTIONS(1864), - [anon_sym_bool] = ACTIONS(1864), - [anon_sym_str] = ACTIONS(1864), - [anon_sym_char] = ACTIONS(1864), - [anon_sym_DASH] = ACTIONS(1862), - [anon_sym_BANG] = ACTIONS(1862), - [anon_sym_AMP] = ACTIONS(1862), - [anon_sym_PIPE] = ACTIONS(1862), - [anon_sym_LT] = ACTIONS(1862), - [anon_sym_DOT_DOT] = ACTIONS(1862), - [anon_sym_COLON_COLON] = ACTIONS(1862), - [anon_sym_POUND] = ACTIONS(1862), - [anon_sym_SQUOTE] = ACTIONS(1864), - [anon_sym_async] = ACTIONS(1864), - [anon_sym_break] = ACTIONS(1864), - [anon_sym_const] = ACTIONS(1864), - [anon_sym_continue] = ACTIONS(1864), - [anon_sym_default] = ACTIONS(1864), - [anon_sym_enum] = ACTIONS(1864), - [anon_sym_fn] = ACTIONS(1864), - [anon_sym_for] = ACTIONS(1864), - [anon_sym_if] = ACTIONS(1864), - [anon_sym_impl] = ACTIONS(1864), - [anon_sym_let] = ACTIONS(1864), - [anon_sym_loop] = ACTIONS(1864), - [anon_sym_match] = ACTIONS(1864), - [anon_sym_mod] = ACTIONS(1864), - [anon_sym_pub] = ACTIONS(1864), - [anon_sym_return] = ACTIONS(1864), - [anon_sym_static] = ACTIONS(1864), - [anon_sym_struct] = ACTIONS(1864), - [anon_sym_trait] = ACTIONS(1864), - [anon_sym_type] = ACTIONS(1864), - [anon_sym_union] = ACTIONS(1864), - [anon_sym_unsafe] = ACTIONS(1864), - [anon_sym_use] = ACTIONS(1864), - [anon_sym_while] = ACTIONS(1864), - [anon_sym_extern] = ACTIONS(1864), - [anon_sym_yield] = ACTIONS(1864), - [anon_sym_move] = ACTIONS(1864), - [anon_sym_try] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(1862), - [aux_sym_string_literal_token1] = ACTIONS(1862), - [sym_char_literal] = ACTIONS(1862), - [anon_sym_true] = ACTIONS(1864), - [anon_sym_false] = ACTIONS(1864), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1864), - [sym_super] = ACTIONS(1864), - [sym_crate] = ACTIONS(1864), - [sym_metavariable] = ACTIONS(1862), - [sym__raw_string_literal_start] = ACTIONS(1862), - [sym_float_literal] = ACTIONS(1862), + [ts_builtin_sym_end] = ACTIONS(1995), + [sym_identifier] = ACTIONS(1997), + [anon_sym_SEMI] = ACTIONS(1995), + [anon_sym_macro_rules_BANG] = ACTIONS(1995), + [anon_sym_LPAREN] = ACTIONS(1995), + [anon_sym_LBRACK] = ACTIONS(1995), + [anon_sym_LBRACE] = ACTIONS(1995), + [anon_sym_RBRACE] = ACTIONS(1995), + [anon_sym_macro] = ACTIONS(1997), + [anon_sym_STAR] = ACTIONS(1995), + [anon_sym_u8] = ACTIONS(1997), + [anon_sym_i8] = ACTIONS(1997), + [anon_sym_u16] = ACTIONS(1997), + [anon_sym_i16] = ACTIONS(1997), + [anon_sym_u32] = ACTIONS(1997), + [anon_sym_i32] = ACTIONS(1997), + [anon_sym_u64] = ACTIONS(1997), + [anon_sym_i64] = ACTIONS(1997), + [anon_sym_u128] = ACTIONS(1997), + [anon_sym_i128] = ACTIONS(1997), + [anon_sym_isize] = ACTIONS(1997), + [anon_sym_usize] = ACTIONS(1997), + [anon_sym_f32] = ACTIONS(1997), + [anon_sym_f64] = ACTIONS(1997), + [anon_sym_bool] = ACTIONS(1997), + [anon_sym_str] = ACTIONS(1997), + [anon_sym_char] = ACTIONS(1997), + [anon_sym_DASH] = ACTIONS(1995), + [anon_sym_BANG] = ACTIONS(1995), + [anon_sym_AMP] = ACTIONS(1995), + [anon_sym_PIPE] = ACTIONS(1995), + [anon_sym_LT] = ACTIONS(1995), + [anon_sym_DOT_DOT] = ACTIONS(1995), + [anon_sym_COLON_COLON] = ACTIONS(1995), + [anon_sym_POUND] = ACTIONS(1995), + [anon_sym_SQUOTE] = ACTIONS(1997), + [anon_sym_async] = ACTIONS(1997), + [anon_sym_break] = ACTIONS(1997), + [anon_sym_const] = ACTIONS(1997), + [anon_sym_continue] = ACTIONS(1997), + [anon_sym_default] = ACTIONS(1997), + [anon_sym_enum] = ACTIONS(1997), + [anon_sym_fn] = ACTIONS(1997), + [anon_sym_for] = ACTIONS(1997), + [anon_sym_if] = ACTIONS(1997), + [anon_sym_impl] = ACTIONS(1997), + [anon_sym_let] = ACTIONS(1997), + [anon_sym_loop] = ACTIONS(1997), + [anon_sym_match] = ACTIONS(1997), + [anon_sym_mod] = ACTIONS(1997), + [anon_sym_pub] = ACTIONS(1997), + [anon_sym_return] = ACTIONS(1997), + [anon_sym_static] = ACTIONS(1997), + [anon_sym_struct] = ACTIONS(1997), + [anon_sym_trait] = ACTIONS(1997), + [anon_sym_type] = ACTIONS(1997), + [anon_sym_union] = ACTIONS(1997), + [anon_sym_unsafe] = ACTIONS(1997), + [anon_sym_use] = ACTIONS(1997), + [anon_sym_while] = ACTIONS(1997), + [anon_sym_extern] = ACTIONS(1997), + [anon_sym_yield] = ACTIONS(1997), + [anon_sym_move] = ACTIONS(1997), + [anon_sym_try] = ACTIONS(1997), + [sym_integer_literal] = ACTIONS(1995), + [aux_sym_string_literal_token1] = ACTIONS(1995), + [sym_char_literal] = ACTIONS(1995), + [anon_sym_true] = ACTIONS(1997), + [anon_sym_false] = ACTIONS(1997), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1997), + [sym_super] = ACTIONS(1997), + [sym_crate] = ACTIONS(1997), + [sym_metavariable] = ACTIONS(1995), + [sym__raw_string_literal_start] = ACTIONS(1995), + [sym_float_literal] = ACTIONS(1995), }, [530] = { [sym_line_comment] = STATE(530), [sym_block_comment] = STATE(530), - [ts_builtin_sym_end] = ACTIONS(1866), - [sym_identifier] = ACTIONS(1868), - [anon_sym_SEMI] = ACTIONS(1866), - [anon_sym_macro_rules_BANG] = ACTIONS(1866), - [anon_sym_LPAREN] = ACTIONS(1866), - [anon_sym_LBRACK] = ACTIONS(1866), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_RBRACE] = ACTIONS(1866), - [anon_sym_STAR] = ACTIONS(1866), - [anon_sym_u8] = ACTIONS(1868), - [anon_sym_i8] = ACTIONS(1868), - [anon_sym_u16] = ACTIONS(1868), - [anon_sym_i16] = ACTIONS(1868), - [anon_sym_u32] = ACTIONS(1868), - [anon_sym_i32] = ACTIONS(1868), - [anon_sym_u64] = ACTIONS(1868), - [anon_sym_i64] = ACTIONS(1868), - [anon_sym_u128] = ACTIONS(1868), - [anon_sym_i128] = ACTIONS(1868), - [anon_sym_isize] = ACTIONS(1868), - [anon_sym_usize] = ACTIONS(1868), - [anon_sym_f32] = ACTIONS(1868), - [anon_sym_f64] = ACTIONS(1868), - [anon_sym_bool] = ACTIONS(1868), - [anon_sym_str] = ACTIONS(1868), - [anon_sym_char] = ACTIONS(1868), - [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_BANG] = ACTIONS(1866), - [anon_sym_AMP] = ACTIONS(1866), - [anon_sym_PIPE] = ACTIONS(1866), - [anon_sym_LT] = ACTIONS(1866), - [anon_sym_DOT_DOT] = ACTIONS(1866), - [anon_sym_COLON_COLON] = ACTIONS(1866), - [anon_sym_POUND] = ACTIONS(1866), - [anon_sym_SQUOTE] = ACTIONS(1868), - [anon_sym_async] = ACTIONS(1868), - [anon_sym_break] = ACTIONS(1868), - [anon_sym_const] = ACTIONS(1868), - [anon_sym_continue] = ACTIONS(1868), - [anon_sym_default] = ACTIONS(1868), - [anon_sym_enum] = ACTIONS(1868), - [anon_sym_fn] = ACTIONS(1868), - [anon_sym_for] = ACTIONS(1868), - [anon_sym_if] = ACTIONS(1868), - [anon_sym_impl] = ACTIONS(1868), - [anon_sym_let] = ACTIONS(1868), - [anon_sym_loop] = ACTIONS(1868), - [anon_sym_match] = ACTIONS(1868), - [anon_sym_mod] = ACTIONS(1868), - [anon_sym_pub] = ACTIONS(1868), - [anon_sym_return] = ACTIONS(1868), - [anon_sym_static] = ACTIONS(1868), - [anon_sym_struct] = ACTIONS(1868), - [anon_sym_trait] = ACTIONS(1868), - [anon_sym_type] = ACTIONS(1868), - [anon_sym_union] = ACTIONS(1868), - [anon_sym_unsafe] = ACTIONS(1868), - [anon_sym_use] = ACTIONS(1868), - [anon_sym_while] = ACTIONS(1868), - [anon_sym_extern] = ACTIONS(1868), - [anon_sym_yield] = ACTIONS(1868), - [anon_sym_move] = ACTIONS(1868), - [anon_sym_try] = ACTIONS(1868), - [sym_integer_literal] = ACTIONS(1866), - [aux_sym_string_literal_token1] = ACTIONS(1866), - [sym_char_literal] = ACTIONS(1866), - [anon_sym_true] = ACTIONS(1868), - [anon_sym_false] = ACTIONS(1868), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1868), - [sym_super] = ACTIONS(1868), - [sym_crate] = ACTIONS(1868), - [sym_metavariable] = ACTIONS(1866), - [sym__raw_string_literal_start] = ACTIONS(1866), - [sym_float_literal] = ACTIONS(1866), + [ts_builtin_sym_end] = ACTIONS(1999), + [sym_identifier] = ACTIONS(2001), + [anon_sym_SEMI] = ACTIONS(1999), + [anon_sym_macro_rules_BANG] = ACTIONS(1999), + [anon_sym_LPAREN] = ACTIONS(1999), + [anon_sym_LBRACK] = ACTIONS(1999), + [anon_sym_LBRACE] = ACTIONS(1999), + [anon_sym_RBRACE] = ACTIONS(1999), + [anon_sym_macro] = ACTIONS(2001), + [anon_sym_STAR] = ACTIONS(1999), + [anon_sym_u8] = ACTIONS(2001), + [anon_sym_i8] = ACTIONS(2001), + [anon_sym_u16] = ACTIONS(2001), + [anon_sym_i16] = ACTIONS(2001), + [anon_sym_u32] = ACTIONS(2001), + [anon_sym_i32] = ACTIONS(2001), + [anon_sym_u64] = ACTIONS(2001), + [anon_sym_i64] = ACTIONS(2001), + [anon_sym_u128] = ACTIONS(2001), + [anon_sym_i128] = ACTIONS(2001), + [anon_sym_isize] = ACTIONS(2001), + [anon_sym_usize] = ACTIONS(2001), + [anon_sym_f32] = ACTIONS(2001), + [anon_sym_f64] = ACTIONS(2001), + [anon_sym_bool] = ACTIONS(2001), + [anon_sym_str] = ACTIONS(2001), + [anon_sym_char] = ACTIONS(2001), + [anon_sym_DASH] = ACTIONS(1999), + [anon_sym_BANG] = ACTIONS(1999), + [anon_sym_AMP] = ACTIONS(1999), + [anon_sym_PIPE] = ACTIONS(1999), + [anon_sym_LT] = ACTIONS(1999), + [anon_sym_DOT_DOT] = ACTIONS(1999), + [anon_sym_COLON_COLON] = ACTIONS(1999), + [anon_sym_POUND] = ACTIONS(1999), + [anon_sym_SQUOTE] = ACTIONS(2001), + [anon_sym_async] = ACTIONS(2001), + [anon_sym_break] = ACTIONS(2001), + [anon_sym_const] = ACTIONS(2001), + [anon_sym_continue] = ACTIONS(2001), + [anon_sym_default] = ACTIONS(2001), + [anon_sym_enum] = ACTIONS(2001), + [anon_sym_fn] = ACTIONS(2001), + [anon_sym_for] = ACTIONS(2001), + [anon_sym_if] = ACTIONS(2001), + [anon_sym_impl] = ACTIONS(2001), + [anon_sym_let] = ACTIONS(2001), + [anon_sym_loop] = ACTIONS(2001), + [anon_sym_match] = ACTIONS(2001), + [anon_sym_mod] = ACTIONS(2001), + [anon_sym_pub] = ACTIONS(2001), + [anon_sym_return] = ACTIONS(2001), + [anon_sym_static] = ACTIONS(2001), + [anon_sym_struct] = ACTIONS(2001), + [anon_sym_trait] = ACTIONS(2001), + [anon_sym_type] = ACTIONS(2001), + [anon_sym_union] = ACTIONS(2001), + [anon_sym_unsafe] = ACTIONS(2001), + [anon_sym_use] = ACTIONS(2001), + [anon_sym_while] = ACTIONS(2001), + [anon_sym_extern] = ACTIONS(2001), + [anon_sym_yield] = ACTIONS(2001), + [anon_sym_move] = ACTIONS(2001), + [anon_sym_try] = ACTIONS(2001), + [sym_integer_literal] = ACTIONS(1999), + [aux_sym_string_literal_token1] = ACTIONS(1999), + [sym_char_literal] = ACTIONS(1999), + [anon_sym_true] = ACTIONS(2001), + [anon_sym_false] = ACTIONS(2001), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2001), + [sym_super] = ACTIONS(2001), + [sym_crate] = ACTIONS(2001), + [sym_metavariable] = ACTIONS(1999), + [sym__raw_string_literal_start] = ACTIONS(1999), + [sym_float_literal] = ACTIONS(1999), }, [531] = { [sym_line_comment] = STATE(531), [sym_block_comment] = STATE(531), - [ts_builtin_sym_end] = ACTIONS(1870), - [sym_identifier] = ACTIONS(1872), - [anon_sym_SEMI] = ACTIONS(1870), - [anon_sym_macro_rules_BANG] = ACTIONS(1870), - [anon_sym_LPAREN] = ACTIONS(1870), - [anon_sym_LBRACK] = ACTIONS(1870), - [anon_sym_LBRACE] = ACTIONS(1870), - [anon_sym_RBRACE] = ACTIONS(1870), - [anon_sym_STAR] = ACTIONS(1870), - [anon_sym_u8] = ACTIONS(1872), - [anon_sym_i8] = ACTIONS(1872), - [anon_sym_u16] = ACTIONS(1872), - [anon_sym_i16] = ACTIONS(1872), - [anon_sym_u32] = ACTIONS(1872), - [anon_sym_i32] = ACTIONS(1872), - [anon_sym_u64] = ACTIONS(1872), - [anon_sym_i64] = ACTIONS(1872), - [anon_sym_u128] = ACTIONS(1872), - [anon_sym_i128] = ACTIONS(1872), - [anon_sym_isize] = ACTIONS(1872), - [anon_sym_usize] = ACTIONS(1872), - [anon_sym_f32] = ACTIONS(1872), - [anon_sym_f64] = ACTIONS(1872), - [anon_sym_bool] = ACTIONS(1872), - [anon_sym_str] = ACTIONS(1872), - [anon_sym_char] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1870), - [anon_sym_BANG] = ACTIONS(1870), - [anon_sym_AMP] = ACTIONS(1870), - [anon_sym_PIPE] = ACTIONS(1870), - [anon_sym_LT] = ACTIONS(1870), - [anon_sym_DOT_DOT] = ACTIONS(1870), - [anon_sym_COLON_COLON] = ACTIONS(1870), - [anon_sym_POUND] = ACTIONS(1870), - [anon_sym_SQUOTE] = ACTIONS(1872), - [anon_sym_async] = ACTIONS(1872), - [anon_sym_break] = ACTIONS(1872), - [anon_sym_const] = ACTIONS(1872), - [anon_sym_continue] = ACTIONS(1872), - [anon_sym_default] = ACTIONS(1872), - [anon_sym_enum] = ACTIONS(1872), - [anon_sym_fn] = ACTIONS(1872), - [anon_sym_for] = ACTIONS(1872), - [anon_sym_if] = ACTIONS(1872), - [anon_sym_impl] = ACTIONS(1872), - [anon_sym_let] = ACTIONS(1872), - [anon_sym_loop] = ACTIONS(1872), - [anon_sym_match] = ACTIONS(1872), - [anon_sym_mod] = ACTIONS(1872), - [anon_sym_pub] = ACTIONS(1872), - [anon_sym_return] = ACTIONS(1872), - [anon_sym_static] = ACTIONS(1872), - [anon_sym_struct] = ACTIONS(1872), - [anon_sym_trait] = ACTIONS(1872), - [anon_sym_type] = ACTIONS(1872), - [anon_sym_union] = ACTIONS(1872), - [anon_sym_unsafe] = ACTIONS(1872), - [anon_sym_use] = ACTIONS(1872), - [anon_sym_while] = ACTIONS(1872), - [anon_sym_extern] = ACTIONS(1872), - [anon_sym_yield] = ACTIONS(1872), - [anon_sym_move] = ACTIONS(1872), - [anon_sym_try] = ACTIONS(1872), - [sym_integer_literal] = ACTIONS(1870), - [aux_sym_string_literal_token1] = ACTIONS(1870), - [sym_char_literal] = ACTIONS(1870), - [anon_sym_true] = ACTIONS(1872), - [anon_sym_false] = ACTIONS(1872), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1872), - [sym_super] = ACTIONS(1872), - [sym_crate] = ACTIONS(1872), - [sym_metavariable] = ACTIONS(1870), - [sym__raw_string_literal_start] = ACTIONS(1870), - [sym_float_literal] = ACTIONS(1870), + [ts_builtin_sym_end] = ACTIONS(2003), + [sym_identifier] = ACTIONS(2005), + [anon_sym_SEMI] = ACTIONS(2003), + [anon_sym_macro_rules_BANG] = ACTIONS(2003), + [anon_sym_LPAREN] = ACTIONS(2003), + [anon_sym_LBRACK] = ACTIONS(2003), + [anon_sym_LBRACE] = ACTIONS(2003), + [anon_sym_RBRACE] = ACTIONS(2003), + [anon_sym_macro] = ACTIONS(2005), + [anon_sym_STAR] = ACTIONS(2003), + [anon_sym_u8] = ACTIONS(2005), + [anon_sym_i8] = ACTIONS(2005), + [anon_sym_u16] = ACTIONS(2005), + [anon_sym_i16] = ACTIONS(2005), + [anon_sym_u32] = ACTIONS(2005), + [anon_sym_i32] = ACTIONS(2005), + [anon_sym_u64] = ACTIONS(2005), + [anon_sym_i64] = ACTIONS(2005), + [anon_sym_u128] = ACTIONS(2005), + [anon_sym_i128] = ACTIONS(2005), + [anon_sym_isize] = ACTIONS(2005), + [anon_sym_usize] = ACTIONS(2005), + [anon_sym_f32] = ACTIONS(2005), + [anon_sym_f64] = ACTIONS(2005), + [anon_sym_bool] = ACTIONS(2005), + [anon_sym_str] = ACTIONS(2005), + [anon_sym_char] = ACTIONS(2005), + [anon_sym_DASH] = ACTIONS(2003), + [anon_sym_BANG] = ACTIONS(2003), + [anon_sym_AMP] = ACTIONS(2003), + [anon_sym_PIPE] = ACTIONS(2003), + [anon_sym_LT] = ACTIONS(2003), + [anon_sym_DOT_DOT] = ACTIONS(2003), + [anon_sym_COLON_COLON] = ACTIONS(2003), + [anon_sym_POUND] = ACTIONS(2003), + [anon_sym_SQUOTE] = ACTIONS(2005), + [anon_sym_async] = ACTIONS(2005), + [anon_sym_break] = ACTIONS(2005), + [anon_sym_const] = ACTIONS(2005), + [anon_sym_continue] = ACTIONS(2005), + [anon_sym_default] = ACTIONS(2005), + [anon_sym_enum] = ACTIONS(2005), + [anon_sym_fn] = ACTIONS(2005), + [anon_sym_for] = ACTIONS(2005), + [anon_sym_if] = ACTIONS(2005), + [anon_sym_impl] = ACTIONS(2005), + [anon_sym_let] = ACTIONS(2005), + [anon_sym_loop] = ACTIONS(2005), + [anon_sym_match] = ACTIONS(2005), + [anon_sym_mod] = ACTIONS(2005), + [anon_sym_pub] = ACTIONS(2005), + [anon_sym_return] = ACTIONS(2005), + [anon_sym_static] = ACTIONS(2005), + [anon_sym_struct] = ACTIONS(2005), + [anon_sym_trait] = ACTIONS(2005), + [anon_sym_type] = ACTIONS(2005), + [anon_sym_union] = ACTIONS(2005), + [anon_sym_unsafe] = ACTIONS(2005), + [anon_sym_use] = ACTIONS(2005), + [anon_sym_while] = ACTIONS(2005), + [anon_sym_extern] = ACTIONS(2005), + [anon_sym_yield] = ACTIONS(2005), + [anon_sym_move] = ACTIONS(2005), + [anon_sym_try] = ACTIONS(2005), + [sym_integer_literal] = ACTIONS(2003), + [aux_sym_string_literal_token1] = ACTIONS(2003), + [sym_char_literal] = ACTIONS(2003), + [anon_sym_true] = ACTIONS(2005), + [anon_sym_false] = ACTIONS(2005), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2005), + [sym_super] = ACTIONS(2005), + [sym_crate] = ACTIONS(2005), + [sym_metavariable] = ACTIONS(2003), + [sym__raw_string_literal_start] = ACTIONS(2003), + [sym_float_literal] = ACTIONS(2003), }, [532] = { [sym_line_comment] = STATE(532), [sym_block_comment] = STATE(532), - [ts_builtin_sym_end] = ACTIONS(1874), - [sym_identifier] = ACTIONS(1876), - [anon_sym_SEMI] = ACTIONS(1874), - [anon_sym_macro_rules_BANG] = ACTIONS(1874), - [anon_sym_LPAREN] = ACTIONS(1874), - [anon_sym_LBRACK] = ACTIONS(1874), - [anon_sym_LBRACE] = ACTIONS(1874), - [anon_sym_RBRACE] = ACTIONS(1874), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_u8] = ACTIONS(1876), - [anon_sym_i8] = ACTIONS(1876), - [anon_sym_u16] = ACTIONS(1876), - [anon_sym_i16] = ACTIONS(1876), - [anon_sym_u32] = ACTIONS(1876), - [anon_sym_i32] = ACTIONS(1876), - [anon_sym_u64] = ACTIONS(1876), - [anon_sym_i64] = ACTIONS(1876), - [anon_sym_u128] = ACTIONS(1876), - [anon_sym_i128] = ACTIONS(1876), - [anon_sym_isize] = ACTIONS(1876), - [anon_sym_usize] = ACTIONS(1876), - [anon_sym_f32] = ACTIONS(1876), - [anon_sym_f64] = ACTIONS(1876), - [anon_sym_bool] = ACTIONS(1876), - [anon_sym_str] = ACTIONS(1876), - [anon_sym_char] = ACTIONS(1876), - [anon_sym_DASH] = ACTIONS(1874), - [anon_sym_BANG] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym_PIPE] = ACTIONS(1874), - [anon_sym_LT] = ACTIONS(1874), - [anon_sym_DOT_DOT] = ACTIONS(1874), - [anon_sym_COLON_COLON] = ACTIONS(1874), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_SQUOTE] = ACTIONS(1876), - [anon_sym_async] = ACTIONS(1876), - [anon_sym_break] = ACTIONS(1876), - [anon_sym_const] = ACTIONS(1876), - [anon_sym_continue] = ACTIONS(1876), - [anon_sym_default] = ACTIONS(1876), - [anon_sym_enum] = ACTIONS(1876), - [anon_sym_fn] = ACTIONS(1876), - [anon_sym_for] = ACTIONS(1876), - [anon_sym_if] = ACTIONS(1876), - [anon_sym_impl] = ACTIONS(1876), - [anon_sym_let] = ACTIONS(1876), - [anon_sym_loop] = ACTIONS(1876), - [anon_sym_match] = ACTIONS(1876), - [anon_sym_mod] = ACTIONS(1876), - [anon_sym_pub] = ACTIONS(1876), - [anon_sym_return] = ACTIONS(1876), - [anon_sym_static] = ACTIONS(1876), - [anon_sym_struct] = ACTIONS(1876), - [anon_sym_trait] = ACTIONS(1876), - [anon_sym_type] = ACTIONS(1876), - [anon_sym_union] = ACTIONS(1876), - [anon_sym_unsafe] = ACTIONS(1876), - [anon_sym_use] = ACTIONS(1876), - [anon_sym_while] = ACTIONS(1876), - [anon_sym_extern] = ACTIONS(1876), - [anon_sym_yield] = ACTIONS(1876), - [anon_sym_move] = ACTIONS(1876), - [anon_sym_try] = ACTIONS(1876), - [sym_integer_literal] = ACTIONS(1874), - [aux_sym_string_literal_token1] = ACTIONS(1874), - [sym_char_literal] = ACTIONS(1874), - [anon_sym_true] = ACTIONS(1876), - [anon_sym_false] = ACTIONS(1876), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1876), - [sym_super] = ACTIONS(1876), - [sym_crate] = ACTIONS(1876), - [sym_metavariable] = ACTIONS(1874), - [sym__raw_string_literal_start] = ACTIONS(1874), - [sym_float_literal] = ACTIONS(1874), + [ts_builtin_sym_end] = ACTIONS(2007), + [sym_identifier] = ACTIONS(2009), + [anon_sym_SEMI] = ACTIONS(2007), + [anon_sym_macro_rules_BANG] = ACTIONS(2007), + [anon_sym_LPAREN] = ACTIONS(2007), + [anon_sym_LBRACK] = ACTIONS(2007), + [anon_sym_LBRACE] = ACTIONS(2007), + [anon_sym_RBRACE] = ACTIONS(2007), + [anon_sym_macro] = ACTIONS(2009), + [anon_sym_STAR] = ACTIONS(2007), + [anon_sym_u8] = ACTIONS(2009), + [anon_sym_i8] = ACTIONS(2009), + [anon_sym_u16] = ACTIONS(2009), + [anon_sym_i16] = ACTIONS(2009), + [anon_sym_u32] = ACTIONS(2009), + [anon_sym_i32] = ACTIONS(2009), + [anon_sym_u64] = ACTIONS(2009), + [anon_sym_i64] = ACTIONS(2009), + [anon_sym_u128] = ACTIONS(2009), + [anon_sym_i128] = ACTIONS(2009), + [anon_sym_isize] = ACTIONS(2009), + [anon_sym_usize] = ACTIONS(2009), + [anon_sym_f32] = ACTIONS(2009), + [anon_sym_f64] = ACTIONS(2009), + [anon_sym_bool] = ACTIONS(2009), + [anon_sym_str] = ACTIONS(2009), + [anon_sym_char] = ACTIONS(2009), + [anon_sym_DASH] = ACTIONS(2007), + [anon_sym_BANG] = ACTIONS(2007), + [anon_sym_AMP] = ACTIONS(2007), + [anon_sym_PIPE] = ACTIONS(2007), + [anon_sym_LT] = ACTIONS(2007), + [anon_sym_DOT_DOT] = ACTIONS(2007), + [anon_sym_COLON_COLON] = ACTIONS(2007), + [anon_sym_POUND] = ACTIONS(2007), + [anon_sym_SQUOTE] = ACTIONS(2009), + [anon_sym_async] = ACTIONS(2009), + [anon_sym_break] = ACTIONS(2009), + [anon_sym_const] = ACTIONS(2009), + [anon_sym_continue] = ACTIONS(2009), + [anon_sym_default] = ACTIONS(2009), + [anon_sym_enum] = ACTIONS(2009), + [anon_sym_fn] = ACTIONS(2009), + [anon_sym_for] = ACTIONS(2009), + [anon_sym_if] = ACTIONS(2009), + [anon_sym_impl] = ACTIONS(2009), + [anon_sym_let] = ACTIONS(2009), + [anon_sym_loop] = ACTIONS(2009), + [anon_sym_match] = ACTIONS(2009), + [anon_sym_mod] = ACTIONS(2009), + [anon_sym_pub] = ACTIONS(2009), + [anon_sym_return] = ACTIONS(2009), + [anon_sym_static] = ACTIONS(2009), + [anon_sym_struct] = ACTIONS(2009), + [anon_sym_trait] = ACTIONS(2009), + [anon_sym_type] = ACTIONS(2009), + [anon_sym_union] = ACTIONS(2009), + [anon_sym_unsafe] = ACTIONS(2009), + [anon_sym_use] = ACTIONS(2009), + [anon_sym_while] = ACTIONS(2009), + [anon_sym_extern] = ACTIONS(2009), + [anon_sym_yield] = ACTIONS(2009), + [anon_sym_move] = ACTIONS(2009), + [anon_sym_try] = ACTIONS(2009), + [sym_integer_literal] = ACTIONS(2007), + [aux_sym_string_literal_token1] = ACTIONS(2007), + [sym_char_literal] = ACTIONS(2007), + [anon_sym_true] = ACTIONS(2009), + [anon_sym_false] = ACTIONS(2009), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2009), + [sym_super] = ACTIONS(2009), + [sym_crate] = ACTIONS(2009), + [sym_metavariable] = ACTIONS(2007), + [sym__raw_string_literal_start] = ACTIONS(2007), + [sym_float_literal] = ACTIONS(2007), }, [533] = { [sym_line_comment] = STATE(533), [sym_block_comment] = STATE(533), - [ts_builtin_sym_end] = ACTIONS(1878), - [sym_identifier] = ACTIONS(1880), - [anon_sym_SEMI] = ACTIONS(1878), - [anon_sym_macro_rules_BANG] = ACTIONS(1878), - [anon_sym_LPAREN] = ACTIONS(1878), - [anon_sym_LBRACK] = ACTIONS(1878), - [anon_sym_LBRACE] = ACTIONS(1878), - [anon_sym_RBRACE] = ACTIONS(1878), - [anon_sym_STAR] = ACTIONS(1878), - [anon_sym_u8] = ACTIONS(1880), - [anon_sym_i8] = ACTIONS(1880), - [anon_sym_u16] = ACTIONS(1880), - [anon_sym_i16] = ACTIONS(1880), - [anon_sym_u32] = ACTIONS(1880), - [anon_sym_i32] = ACTIONS(1880), - [anon_sym_u64] = ACTIONS(1880), - [anon_sym_i64] = ACTIONS(1880), - [anon_sym_u128] = ACTIONS(1880), - [anon_sym_i128] = ACTIONS(1880), - [anon_sym_isize] = ACTIONS(1880), - [anon_sym_usize] = ACTIONS(1880), - [anon_sym_f32] = ACTIONS(1880), - [anon_sym_f64] = ACTIONS(1880), - [anon_sym_bool] = ACTIONS(1880), - [anon_sym_str] = ACTIONS(1880), - [anon_sym_char] = ACTIONS(1880), - [anon_sym_DASH] = ACTIONS(1878), - [anon_sym_BANG] = ACTIONS(1878), - [anon_sym_AMP] = ACTIONS(1878), - [anon_sym_PIPE] = ACTIONS(1878), - [anon_sym_LT] = ACTIONS(1878), - [anon_sym_DOT_DOT] = ACTIONS(1878), - [anon_sym_COLON_COLON] = ACTIONS(1878), - [anon_sym_POUND] = ACTIONS(1878), - [anon_sym_SQUOTE] = ACTIONS(1880), - [anon_sym_async] = ACTIONS(1880), - [anon_sym_break] = ACTIONS(1880), - [anon_sym_const] = ACTIONS(1880), - [anon_sym_continue] = ACTIONS(1880), - [anon_sym_default] = ACTIONS(1880), - [anon_sym_enum] = ACTIONS(1880), - [anon_sym_fn] = ACTIONS(1880), - [anon_sym_for] = ACTIONS(1880), - [anon_sym_if] = ACTIONS(1880), - [anon_sym_impl] = ACTIONS(1880), - [anon_sym_let] = ACTIONS(1880), - [anon_sym_loop] = ACTIONS(1880), - [anon_sym_match] = ACTIONS(1880), - [anon_sym_mod] = ACTIONS(1880), - [anon_sym_pub] = ACTIONS(1880), - [anon_sym_return] = ACTIONS(1880), - [anon_sym_static] = ACTIONS(1880), - [anon_sym_struct] = ACTIONS(1880), - [anon_sym_trait] = ACTIONS(1880), - [anon_sym_type] = ACTIONS(1880), - [anon_sym_union] = ACTIONS(1880), - [anon_sym_unsafe] = ACTIONS(1880), - [anon_sym_use] = ACTIONS(1880), - [anon_sym_while] = ACTIONS(1880), - [anon_sym_extern] = ACTIONS(1880), - [anon_sym_yield] = ACTIONS(1880), - [anon_sym_move] = ACTIONS(1880), - [anon_sym_try] = ACTIONS(1880), - [sym_integer_literal] = ACTIONS(1878), - [aux_sym_string_literal_token1] = ACTIONS(1878), - [sym_char_literal] = ACTIONS(1878), - [anon_sym_true] = ACTIONS(1880), - [anon_sym_false] = ACTIONS(1880), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1880), - [sym_super] = ACTIONS(1880), - [sym_crate] = ACTIONS(1880), - [sym_metavariable] = ACTIONS(1878), - [sym__raw_string_literal_start] = ACTIONS(1878), - [sym_float_literal] = ACTIONS(1878), + [ts_builtin_sym_end] = ACTIONS(2011), + [sym_identifier] = ACTIONS(2013), + [anon_sym_SEMI] = ACTIONS(2011), + [anon_sym_macro_rules_BANG] = ACTIONS(2011), + [anon_sym_LPAREN] = ACTIONS(2011), + [anon_sym_LBRACK] = ACTIONS(2011), + [anon_sym_LBRACE] = ACTIONS(2011), + [anon_sym_RBRACE] = ACTIONS(2011), + [anon_sym_macro] = ACTIONS(2013), + [anon_sym_STAR] = ACTIONS(2011), + [anon_sym_u8] = ACTIONS(2013), + [anon_sym_i8] = ACTIONS(2013), + [anon_sym_u16] = ACTIONS(2013), + [anon_sym_i16] = ACTIONS(2013), + [anon_sym_u32] = ACTIONS(2013), + [anon_sym_i32] = ACTIONS(2013), + [anon_sym_u64] = ACTIONS(2013), + [anon_sym_i64] = ACTIONS(2013), + [anon_sym_u128] = ACTIONS(2013), + [anon_sym_i128] = ACTIONS(2013), + [anon_sym_isize] = ACTIONS(2013), + [anon_sym_usize] = ACTIONS(2013), + [anon_sym_f32] = ACTIONS(2013), + [anon_sym_f64] = ACTIONS(2013), + [anon_sym_bool] = ACTIONS(2013), + [anon_sym_str] = ACTIONS(2013), + [anon_sym_char] = ACTIONS(2013), + [anon_sym_DASH] = ACTIONS(2011), + [anon_sym_BANG] = ACTIONS(2011), + [anon_sym_AMP] = ACTIONS(2011), + [anon_sym_PIPE] = ACTIONS(2011), + [anon_sym_LT] = ACTIONS(2011), + [anon_sym_DOT_DOT] = ACTIONS(2011), + [anon_sym_COLON_COLON] = ACTIONS(2011), + [anon_sym_POUND] = ACTIONS(2011), + [anon_sym_SQUOTE] = ACTIONS(2013), + [anon_sym_async] = ACTIONS(2013), + [anon_sym_break] = ACTIONS(2013), + [anon_sym_const] = ACTIONS(2013), + [anon_sym_continue] = ACTIONS(2013), + [anon_sym_default] = ACTIONS(2013), + [anon_sym_enum] = ACTIONS(2013), + [anon_sym_fn] = ACTIONS(2013), + [anon_sym_for] = ACTIONS(2013), + [anon_sym_if] = ACTIONS(2013), + [anon_sym_impl] = ACTIONS(2013), + [anon_sym_let] = ACTIONS(2013), + [anon_sym_loop] = ACTIONS(2013), + [anon_sym_match] = ACTIONS(2013), + [anon_sym_mod] = ACTIONS(2013), + [anon_sym_pub] = ACTIONS(2013), + [anon_sym_return] = ACTIONS(2013), + [anon_sym_static] = ACTIONS(2013), + [anon_sym_struct] = ACTIONS(2013), + [anon_sym_trait] = ACTIONS(2013), + [anon_sym_type] = ACTIONS(2013), + [anon_sym_union] = ACTIONS(2013), + [anon_sym_unsafe] = ACTIONS(2013), + [anon_sym_use] = ACTIONS(2013), + [anon_sym_while] = ACTIONS(2013), + [anon_sym_extern] = ACTIONS(2013), + [anon_sym_yield] = ACTIONS(2013), + [anon_sym_move] = ACTIONS(2013), + [anon_sym_try] = ACTIONS(2013), + [sym_integer_literal] = ACTIONS(2011), + [aux_sym_string_literal_token1] = ACTIONS(2011), + [sym_char_literal] = ACTIONS(2011), + [anon_sym_true] = ACTIONS(2013), + [anon_sym_false] = ACTIONS(2013), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2013), + [sym_super] = ACTIONS(2013), + [sym_crate] = ACTIONS(2013), + [sym_metavariable] = ACTIONS(2011), + [sym__raw_string_literal_start] = ACTIONS(2011), + [sym_float_literal] = ACTIONS(2011), }, [534] = { [sym_line_comment] = STATE(534), [sym_block_comment] = STATE(534), - [ts_builtin_sym_end] = ACTIONS(1882), - [sym_identifier] = ACTIONS(1884), - [anon_sym_SEMI] = ACTIONS(1882), - [anon_sym_macro_rules_BANG] = ACTIONS(1882), - [anon_sym_LPAREN] = ACTIONS(1882), - [anon_sym_LBRACK] = ACTIONS(1882), - [anon_sym_LBRACE] = ACTIONS(1882), - [anon_sym_RBRACE] = ACTIONS(1882), - [anon_sym_STAR] = ACTIONS(1882), - [anon_sym_u8] = ACTIONS(1884), - [anon_sym_i8] = ACTIONS(1884), - [anon_sym_u16] = ACTIONS(1884), - [anon_sym_i16] = ACTIONS(1884), - [anon_sym_u32] = ACTIONS(1884), - [anon_sym_i32] = ACTIONS(1884), - [anon_sym_u64] = ACTIONS(1884), - [anon_sym_i64] = ACTIONS(1884), - [anon_sym_u128] = ACTIONS(1884), - [anon_sym_i128] = ACTIONS(1884), - [anon_sym_isize] = ACTIONS(1884), - [anon_sym_usize] = ACTIONS(1884), - [anon_sym_f32] = ACTIONS(1884), - [anon_sym_f64] = ACTIONS(1884), - [anon_sym_bool] = ACTIONS(1884), - [anon_sym_str] = ACTIONS(1884), - [anon_sym_char] = ACTIONS(1884), - [anon_sym_DASH] = ACTIONS(1882), - [anon_sym_BANG] = ACTIONS(1882), - [anon_sym_AMP] = ACTIONS(1882), - [anon_sym_PIPE] = ACTIONS(1882), - [anon_sym_LT] = ACTIONS(1882), - [anon_sym_DOT_DOT] = ACTIONS(1882), - [anon_sym_COLON_COLON] = ACTIONS(1882), - [anon_sym_POUND] = ACTIONS(1882), - [anon_sym_SQUOTE] = ACTIONS(1884), - [anon_sym_async] = ACTIONS(1884), - [anon_sym_break] = ACTIONS(1884), - [anon_sym_const] = ACTIONS(1884), - [anon_sym_continue] = ACTIONS(1884), - [anon_sym_default] = ACTIONS(1884), - [anon_sym_enum] = ACTIONS(1884), - [anon_sym_fn] = ACTIONS(1884), - [anon_sym_for] = ACTIONS(1884), - [anon_sym_if] = ACTIONS(1884), - [anon_sym_impl] = ACTIONS(1884), - [anon_sym_let] = ACTIONS(1884), - [anon_sym_loop] = ACTIONS(1884), - [anon_sym_match] = ACTIONS(1884), - [anon_sym_mod] = ACTIONS(1884), - [anon_sym_pub] = ACTIONS(1884), - [anon_sym_return] = ACTIONS(1884), - [anon_sym_static] = ACTIONS(1884), - [anon_sym_struct] = ACTIONS(1884), - [anon_sym_trait] = ACTIONS(1884), - [anon_sym_type] = ACTIONS(1884), - [anon_sym_union] = ACTIONS(1884), - [anon_sym_unsafe] = ACTIONS(1884), - [anon_sym_use] = ACTIONS(1884), - [anon_sym_while] = ACTIONS(1884), - [anon_sym_extern] = ACTIONS(1884), - [anon_sym_yield] = ACTIONS(1884), - [anon_sym_move] = ACTIONS(1884), - [anon_sym_try] = ACTIONS(1884), - [sym_integer_literal] = ACTIONS(1882), - [aux_sym_string_literal_token1] = ACTIONS(1882), - [sym_char_literal] = ACTIONS(1882), - [anon_sym_true] = ACTIONS(1884), - [anon_sym_false] = ACTIONS(1884), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1884), - [sym_super] = ACTIONS(1884), - [sym_crate] = ACTIONS(1884), - [sym_metavariable] = ACTIONS(1882), - [sym__raw_string_literal_start] = ACTIONS(1882), - [sym_float_literal] = ACTIONS(1882), + [ts_builtin_sym_end] = ACTIONS(2015), + [sym_identifier] = ACTIONS(2017), + [anon_sym_SEMI] = ACTIONS(2015), + [anon_sym_macro_rules_BANG] = ACTIONS(2015), + [anon_sym_LPAREN] = ACTIONS(2015), + [anon_sym_LBRACK] = ACTIONS(2015), + [anon_sym_LBRACE] = ACTIONS(2015), + [anon_sym_RBRACE] = ACTIONS(2015), + [anon_sym_macro] = ACTIONS(2017), + [anon_sym_STAR] = ACTIONS(2015), + [anon_sym_u8] = ACTIONS(2017), + [anon_sym_i8] = ACTIONS(2017), + [anon_sym_u16] = ACTIONS(2017), + [anon_sym_i16] = ACTIONS(2017), + [anon_sym_u32] = ACTIONS(2017), + [anon_sym_i32] = ACTIONS(2017), + [anon_sym_u64] = ACTIONS(2017), + [anon_sym_i64] = ACTIONS(2017), + [anon_sym_u128] = ACTIONS(2017), + [anon_sym_i128] = ACTIONS(2017), + [anon_sym_isize] = ACTIONS(2017), + [anon_sym_usize] = ACTIONS(2017), + [anon_sym_f32] = ACTIONS(2017), + [anon_sym_f64] = ACTIONS(2017), + [anon_sym_bool] = ACTIONS(2017), + [anon_sym_str] = ACTIONS(2017), + [anon_sym_char] = ACTIONS(2017), + [anon_sym_DASH] = ACTIONS(2015), + [anon_sym_BANG] = ACTIONS(2015), + [anon_sym_AMP] = ACTIONS(2015), + [anon_sym_PIPE] = ACTIONS(2015), + [anon_sym_LT] = ACTIONS(2015), + [anon_sym_DOT_DOT] = ACTIONS(2015), + [anon_sym_COLON_COLON] = ACTIONS(2015), + [anon_sym_POUND] = ACTIONS(2015), + [anon_sym_SQUOTE] = ACTIONS(2017), + [anon_sym_async] = ACTIONS(2017), + [anon_sym_break] = ACTIONS(2017), + [anon_sym_const] = ACTIONS(2017), + [anon_sym_continue] = ACTIONS(2017), + [anon_sym_default] = ACTIONS(2017), + [anon_sym_enum] = ACTIONS(2017), + [anon_sym_fn] = ACTIONS(2017), + [anon_sym_for] = ACTIONS(2017), + [anon_sym_if] = ACTIONS(2017), + [anon_sym_impl] = ACTIONS(2017), + [anon_sym_let] = ACTIONS(2017), + [anon_sym_loop] = ACTIONS(2017), + [anon_sym_match] = ACTIONS(2017), + [anon_sym_mod] = ACTIONS(2017), + [anon_sym_pub] = ACTIONS(2017), + [anon_sym_return] = ACTIONS(2017), + [anon_sym_static] = ACTIONS(2017), + [anon_sym_struct] = ACTIONS(2017), + [anon_sym_trait] = ACTIONS(2017), + [anon_sym_type] = ACTIONS(2017), + [anon_sym_union] = ACTIONS(2017), + [anon_sym_unsafe] = ACTIONS(2017), + [anon_sym_use] = ACTIONS(2017), + [anon_sym_while] = ACTIONS(2017), + [anon_sym_extern] = ACTIONS(2017), + [anon_sym_yield] = ACTIONS(2017), + [anon_sym_move] = ACTIONS(2017), + [anon_sym_try] = ACTIONS(2017), + [sym_integer_literal] = ACTIONS(2015), + [aux_sym_string_literal_token1] = ACTIONS(2015), + [sym_char_literal] = ACTIONS(2015), + [anon_sym_true] = ACTIONS(2017), + [anon_sym_false] = ACTIONS(2017), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2017), + [sym_super] = ACTIONS(2017), + [sym_crate] = ACTIONS(2017), + [sym_metavariable] = ACTIONS(2015), + [sym__raw_string_literal_start] = ACTIONS(2015), + [sym_float_literal] = ACTIONS(2015), }, [535] = { [sym_line_comment] = STATE(535), [sym_block_comment] = STATE(535), - [ts_builtin_sym_end] = ACTIONS(1886), - [sym_identifier] = ACTIONS(1888), - [anon_sym_SEMI] = ACTIONS(1886), - [anon_sym_macro_rules_BANG] = ACTIONS(1886), - [anon_sym_LPAREN] = ACTIONS(1886), - [anon_sym_LBRACK] = ACTIONS(1886), - [anon_sym_LBRACE] = ACTIONS(1886), - [anon_sym_RBRACE] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(1886), - [anon_sym_u8] = ACTIONS(1888), - [anon_sym_i8] = ACTIONS(1888), - [anon_sym_u16] = ACTIONS(1888), - [anon_sym_i16] = ACTIONS(1888), - [anon_sym_u32] = ACTIONS(1888), - [anon_sym_i32] = ACTIONS(1888), - [anon_sym_u64] = ACTIONS(1888), - [anon_sym_i64] = ACTIONS(1888), - [anon_sym_u128] = ACTIONS(1888), - [anon_sym_i128] = ACTIONS(1888), - [anon_sym_isize] = ACTIONS(1888), - [anon_sym_usize] = ACTIONS(1888), - [anon_sym_f32] = ACTIONS(1888), - [anon_sym_f64] = ACTIONS(1888), - [anon_sym_bool] = ACTIONS(1888), - [anon_sym_str] = ACTIONS(1888), - [anon_sym_char] = ACTIONS(1888), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_BANG] = ACTIONS(1886), - [anon_sym_AMP] = ACTIONS(1886), - [anon_sym_PIPE] = ACTIONS(1886), - [anon_sym_LT] = ACTIONS(1886), - [anon_sym_DOT_DOT] = ACTIONS(1886), - [anon_sym_COLON_COLON] = ACTIONS(1886), - [anon_sym_POUND] = ACTIONS(1886), - [anon_sym_SQUOTE] = ACTIONS(1888), - [anon_sym_async] = ACTIONS(1888), - [anon_sym_break] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(1888), - [anon_sym_continue] = ACTIONS(1888), - [anon_sym_default] = ACTIONS(1888), - [anon_sym_enum] = ACTIONS(1888), - [anon_sym_fn] = ACTIONS(1888), - [anon_sym_for] = ACTIONS(1888), - [anon_sym_if] = ACTIONS(1888), - [anon_sym_impl] = ACTIONS(1888), - [anon_sym_let] = ACTIONS(1888), - [anon_sym_loop] = ACTIONS(1888), - [anon_sym_match] = ACTIONS(1888), - [anon_sym_mod] = ACTIONS(1888), - [anon_sym_pub] = ACTIONS(1888), - [anon_sym_return] = ACTIONS(1888), - [anon_sym_static] = ACTIONS(1888), - [anon_sym_struct] = ACTIONS(1888), - [anon_sym_trait] = ACTIONS(1888), - [anon_sym_type] = ACTIONS(1888), - [anon_sym_union] = ACTIONS(1888), - [anon_sym_unsafe] = ACTIONS(1888), - [anon_sym_use] = ACTIONS(1888), - [anon_sym_while] = ACTIONS(1888), - [anon_sym_extern] = ACTIONS(1888), - [anon_sym_yield] = ACTIONS(1888), - [anon_sym_move] = ACTIONS(1888), - [anon_sym_try] = ACTIONS(1888), - [sym_integer_literal] = ACTIONS(1886), - [aux_sym_string_literal_token1] = ACTIONS(1886), - [sym_char_literal] = ACTIONS(1886), - [anon_sym_true] = ACTIONS(1888), - [anon_sym_false] = ACTIONS(1888), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1888), - [sym_super] = ACTIONS(1888), - [sym_crate] = ACTIONS(1888), - [sym_metavariable] = ACTIONS(1886), - [sym__raw_string_literal_start] = ACTIONS(1886), - [sym_float_literal] = ACTIONS(1886), + [ts_builtin_sym_end] = ACTIONS(2019), + [sym_identifier] = ACTIONS(2021), + [anon_sym_SEMI] = ACTIONS(2019), + [anon_sym_macro_rules_BANG] = ACTIONS(2019), + [anon_sym_LPAREN] = ACTIONS(2019), + [anon_sym_LBRACK] = ACTIONS(2019), + [anon_sym_LBRACE] = ACTIONS(2019), + [anon_sym_RBRACE] = ACTIONS(2019), + [anon_sym_macro] = ACTIONS(2021), + [anon_sym_STAR] = ACTIONS(2019), + [anon_sym_u8] = ACTIONS(2021), + [anon_sym_i8] = ACTIONS(2021), + [anon_sym_u16] = ACTIONS(2021), + [anon_sym_i16] = ACTIONS(2021), + [anon_sym_u32] = ACTIONS(2021), + [anon_sym_i32] = ACTIONS(2021), + [anon_sym_u64] = ACTIONS(2021), + [anon_sym_i64] = ACTIONS(2021), + [anon_sym_u128] = ACTIONS(2021), + [anon_sym_i128] = ACTIONS(2021), + [anon_sym_isize] = ACTIONS(2021), + [anon_sym_usize] = ACTIONS(2021), + [anon_sym_f32] = ACTIONS(2021), + [anon_sym_f64] = ACTIONS(2021), + [anon_sym_bool] = ACTIONS(2021), + [anon_sym_str] = ACTIONS(2021), + [anon_sym_char] = ACTIONS(2021), + [anon_sym_DASH] = ACTIONS(2019), + [anon_sym_BANG] = ACTIONS(2019), + [anon_sym_AMP] = ACTIONS(2019), + [anon_sym_PIPE] = ACTIONS(2019), + [anon_sym_LT] = ACTIONS(2019), + [anon_sym_DOT_DOT] = ACTIONS(2019), + [anon_sym_COLON_COLON] = ACTIONS(2019), + [anon_sym_POUND] = ACTIONS(2019), + [anon_sym_SQUOTE] = ACTIONS(2021), + [anon_sym_async] = ACTIONS(2021), + [anon_sym_break] = ACTIONS(2021), + [anon_sym_const] = ACTIONS(2021), + [anon_sym_continue] = ACTIONS(2021), + [anon_sym_default] = ACTIONS(2021), + [anon_sym_enum] = ACTIONS(2021), + [anon_sym_fn] = ACTIONS(2021), + [anon_sym_for] = ACTIONS(2021), + [anon_sym_if] = ACTIONS(2021), + [anon_sym_impl] = ACTIONS(2021), + [anon_sym_let] = ACTIONS(2021), + [anon_sym_loop] = ACTIONS(2021), + [anon_sym_match] = ACTIONS(2021), + [anon_sym_mod] = ACTIONS(2021), + [anon_sym_pub] = ACTIONS(2021), + [anon_sym_return] = ACTIONS(2021), + [anon_sym_static] = ACTIONS(2021), + [anon_sym_struct] = ACTIONS(2021), + [anon_sym_trait] = ACTIONS(2021), + [anon_sym_type] = ACTIONS(2021), + [anon_sym_union] = ACTIONS(2021), + [anon_sym_unsafe] = ACTIONS(2021), + [anon_sym_use] = ACTIONS(2021), + [anon_sym_while] = ACTIONS(2021), + [anon_sym_extern] = ACTIONS(2021), + [anon_sym_yield] = ACTIONS(2021), + [anon_sym_move] = ACTIONS(2021), + [anon_sym_try] = ACTIONS(2021), + [sym_integer_literal] = ACTIONS(2019), + [aux_sym_string_literal_token1] = ACTIONS(2019), + [sym_char_literal] = ACTIONS(2019), + [anon_sym_true] = ACTIONS(2021), + [anon_sym_false] = ACTIONS(2021), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2021), + [sym_super] = ACTIONS(2021), + [sym_crate] = ACTIONS(2021), + [sym_metavariable] = ACTIONS(2019), + [sym__raw_string_literal_start] = ACTIONS(2019), + [sym_float_literal] = ACTIONS(2019), }, [536] = { [sym_line_comment] = STATE(536), [sym_block_comment] = STATE(536), - [ts_builtin_sym_end] = ACTIONS(1890), - [sym_identifier] = ACTIONS(1892), - [anon_sym_SEMI] = ACTIONS(1890), - [anon_sym_macro_rules_BANG] = ACTIONS(1890), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1890), - [anon_sym_LBRACE] = ACTIONS(1890), - [anon_sym_RBRACE] = ACTIONS(1890), - [anon_sym_STAR] = ACTIONS(1890), - [anon_sym_u8] = ACTIONS(1892), - [anon_sym_i8] = ACTIONS(1892), - [anon_sym_u16] = ACTIONS(1892), - [anon_sym_i16] = ACTIONS(1892), - [anon_sym_u32] = ACTIONS(1892), - [anon_sym_i32] = ACTIONS(1892), - [anon_sym_u64] = ACTIONS(1892), - [anon_sym_i64] = ACTIONS(1892), - [anon_sym_u128] = ACTIONS(1892), - [anon_sym_i128] = ACTIONS(1892), - [anon_sym_isize] = ACTIONS(1892), - [anon_sym_usize] = ACTIONS(1892), - [anon_sym_f32] = ACTIONS(1892), - [anon_sym_f64] = ACTIONS(1892), - [anon_sym_bool] = ACTIONS(1892), - [anon_sym_str] = ACTIONS(1892), - [anon_sym_char] = ACTIONS(1892), - [anon_sym_DASH] = ACTIONS(1890), - [anon_sym_BANG] = ACTIONS(1890), - [anon_sym_AMP] = ACTIONS(1890), - [anon_sym_PIPE] = ACTIONS(1890), - [anon_sym_LT] = ACTIONS(1890), - [anon_sym_DOT_DOT] = ACTIONS(1890), - [anon_sym_COLON_COLON] = ACTIONS(1890), - [anon_sym_POUND] = ACTIONS(1890), - [anon_sym_SQUOTE] = ACTIONS(1892), - [anon_sym_async] = ACTIONS(1892), - [anon_sym_break] = ACTIONS(1892), - [anon_sym_const] = ACTIONS(1892), - [anon_sym_continue] = ACTIONS(1892), - [anon_sym_default] = ACTIONS(1892), - [anon_sym_enum] = ACTIONS(1892), - [anon_sym_fn] = ACTIONS(1892), - [anon_sym_for] = ACTIONS(1892), - [anon_sym_if] = ACTIONS(1892), - [anon_sym_impl] = ACTIONS(1892), - [anon_sym_let] = ACTIONS(1892), - [anon_sym_loop] = ACTIONS(1892), - [anon_sym_match] = ACTIONS(1892), - [anon_sym_mod] = ACTIONS(1892), - [anon_sym_pub] = ACTIONS(1892), - [anon_sym_return] = ACTIONS(1892), - [anon_sym_static] = ACTIONS(1892), - [anon_sym_struct] = ACTIONS(1892), - [anon_sym_trait] = ACTIONS(1892), - [anon_sym_type] = ACTIONS(1892), - [anon_sym_union] = ACTIONS(1892), - [anon_sym_unsafe] = ACTIONS(1892), - [anon_sym_use] = ACTIONS(1892), - [anon_sym_while] = ACTIONS(1892), - [anon_sym_extern] = ACTIONS(1892), - [anon_sym_yield] = ACTIONS(1892), - [anon_sym_move] = ACTIONS(1892), - [anon_sym_try] = ACTIONS(1892), - [sym_integer_literal] = ACTIONS(1890), - [aux_sym_string_literal_token1] = ACTIONS(1890), - [sym_char_literal] = ACTIONS(1890), - [anon_sym_true] = ACTIONS(1892), - [anon_sym_false] = ACTIONS(1892), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1892), - [sym_super] = ACTIONS(1892), - [sym_crate] = ACTIONS(1892), - [sym_metavariable] = ACTIONS(1890), - [sym__raw_string_literal_start] = ACTIONS(1890), - [sym_float_literal] = ACTIONS(1890), + [ts_builtin_sym_end] = ACTIONS(2023), + [sym_identifier] = ACTIONS(2025), + [anon_sym_SEMI] = ACTIONS(2023), + [anon_sym_macro_rules_BANG] = ACTIONS(2023), + [anon_sym_LPAREN] = ACTIONS(2023), + [anon_sym_LBRACK] = ACTIONS(2023), + [anon_sym_LBRACE] = ACTIONS(2023), + [anon_sym_RBRACE] = ACTIONS(2023), + [anon_sym_macro] = ACTIONS(2025), + [anon_sym_STAR] = ACTIONS(2023), + [anon_sym_u8] = ACTIONS(2025), + [anon_sym_i8] = ACTIONS(2025), + [anon_sym_u16] = ACTIONS(2025), + [anon_sym_i16] = ACTIONS(2025), + [anon_sym_u32] = ACTIONS(2025), + [anon_sym_i32] = ACTIONS(2025), + [anon_sym_u64] = ACTIONS(2025), + [anon_sym_i64] = ACTIONS(2025), + [anon_sym_u128] = ACTIONS(2025), + [anon_sym_i128] = ACTIONS(2025), + [anon_sym_isize] = ACTIONS(2025), + [anon_sym_usize] = ACTIONS(2025), + [anon_sym_f32] = ACTIONS(2025), + [anon_sym_f64] = ACTIONS(2025), + [anon_sym_bool] = ACTIONS(2025), + [anon_sym_str] = ACTIONS(2025), + [anon_sym_char] = ACTIONS(2025), + [anon_sym_DASH] = ACTIONS(2023), + [anon_sym_BANG] = ACTIONS(2023), + [anon_sym_AMP] = ACTIONS(2023), + [anon_sym_PIPE] = ACTIONS(2023), + [anon_sym_LT] = ACTIONS(2023), + [anon_sym_DOT_DOT] = ACTIONS(2023), + [anon_sym_COLON_COLON] = ACTIONS(2023), + [anon_sym_POUND] = ACTIONS(2023), + [anon_sym_SQUOTE] = ACTIONS(2025), + [anon_sym_async] = ACTIONS(2025), + [anon_sym_break] = ACTIONS(2025), + [anon_sym_const] = ACTIONS(2025), + [anon_sym_continue] = ACTIONS(2025), + [anon_sym_default] = ACTIONS(2025), + [anon_sym_enum] = ACTIONS(2025), + [anon_sym_fn] = ACTIONS(2025), + [anon_sym_for] = ACTIONS(2025), + [anon_sym_if] = ACTIONS(2025), + [anon_sym_impl] = ACTIONS(2025), + [anon_sym_let] = ACTIONS(2025), + [anon_sym_loop] = ACTIONS(2025), + [anon_sym_match] = ACTIONS(2025), + [anon_sym_mod] = ACTIONS(2025), + [anon_sym_pub] = ACTIONS(2025), + [anon_sym_return] = ACTIONS(2025), + [anon_sym_static] = ACTIONS(2025), + [anon_sym_struct] = ACTIONS(2025), + [anon_sym_trait] = ACTIONS(2025), + [anon_sym_type] = ACTIONS(2025), + [anon_sym_union] = ACTIONS(2025), + [anon_sym_unsafe] = ACTIONS(2025), + [anon_sym_use] = ACTIONS(2025), + [anon_sym_while] = ACTIONS(2025), + [anon_sym_extern] = ACTIONS(2025), + [anon_sym_yield] = ACTIONS(2025), + [anon_sym_move] = ACTIONS(2025), + [anon_sym_try] = ACTIONS(2025), + [sym_integer_literal] = ACTIONS(2023), + [aux_sym_string_literal_token1] = ACTIONS(2023), + [sym_char_literal] = ACTIONS(2023), + [anon_sym_true] = ACTIONS(2025), + [anon_sym_false] = ACTIONS(2025), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2025), + [sym_super] = ACTIONS(2025), + [sym_crate] = ACTIONS(2025), + [sym_metavariable] = ACTIONS(2023), + [sym__raw_string_literal_start] = ACTIONS(2023), + [sym_float_literal] = ACTIONS(2023), }, [537] = { [sym_line_comment] = STATE(537), [sym_block_comment] = STATE(537), - [ts_builtin_sym_end] = ACTIONS(1894), - [sym_identifier] = ACTIONS(1896), - [anon_sym_SEMI] = ACTIONS(1894), - [anon_sym_macro_rules_BANG] = ACTIONS(1894), - [anon_sym_LPAREN] = ACTIONS(1894), - [anon_sym_LBRACK] = ACTIONS(1894), - [anon_sym_LBRACE] = ACTIONS(1894), - [anon_sym_RBRACE] = ACTIONS(1894), - [anon_sym_STAR] = ACTIONS(1894), - [anon_sym_u8] = ACTIONS(1896), - [anon_sym_i8] = ACTIONS(1896), - [anon_sym_u16] = ACTIONS(1896), - [anon_sym_i16] = ACTIONS(1896), - [anon_sym_u32] = ACTIONS(1896), - [anon_sym_i32] = ACTIONS(1896), - [anon_sym_u64] = ACTIONS(1896), - [anon_sym_i64] = ACTIONS(1896), - [anon_sym_u128] = ACTIONS(1896), - [anon_sym_i128] = ACTIONS(1896), - [anon_sym_isize] = ACTIONS(1896), - [anon_sym_usize] = ACTIONS(1896), - [anon_sym_f32] = ACTIONS(1896), - [anon_sym_f64] = ACTIONS(1896), - [anon_sym_bool] = ACTIONS(1896), - [anon_sym_str] = ACTIONS(1896), - [anon_sym_char] = ACTIONS(1896), - [anon_sym_DASH] = ACTIONS(1894), - [anon_sym_BANG] = ACTIONS(1894), - [anon_sym_AMP] = ACTIONS(1894), - [anon_sym_PIPE] = ACTIONS(1894), - [anon_sym_LT] = ACTIONS(1894), - [anon_sym_DOT_DOT] = ACTIONS(1894), - [anon_sym_COLON_COLON] = ACTIONS(1894), - [anon_sym_POUND] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_async] = ACTIONS(1896), - [anon_sym_break] = ACTIONS(1896), - [anon_sym_const] = ACTIONS(1896), - [anon_sym_continue] = ACTIONS(1896), - [anon_sym_default] = ACTIONS(1896), - [anon_sym_enum] = ACTIONS(1896), - [anon_sym_fn] = ACTIONS(1896), - [anon_sym_for] = ACTIONS(1896), - [anon_sym_if] = ACTIONS(1896), - [anon_sym_impl] = ACTIONS(1896), - [anon_sym_let] = ACTIONS(1896), - [anon_sym_loop] = ACTIONS(1896), - [anon_sym_match] = ACTIONS(1896), - [anon_sym_mod] = ACTIONS(1896), - [anon_sym_pub] = ACTIONS(1896), - [anon_sym_return] = ACTIONS(1896), - [anon_sym_static] = ACTIONS(1896), - [anon_sym_struct] = ACTIONS(1896), - [anon_sym_trait] = ACTIONS(1896), - [anon_sym_type] = ACTIONS(1896), - [anon_sym_union] = ACTIONS(1896), - [anon_sym_unsafe] = ACTIONS(1896), - [anon_sym_use] = ACTIONS(1896), - [anon_sym_while] = ACTIONS(1896), - [anon_sym_extern] = ACTIONS(1896), - [anon_sym_yield] = ACTIONS(1896), - [anon_sym_move] = ACTIONS(1896), - [anon_sym_try] = ACTIONS(1896), - [sym_integer_literal] = ACTIONS(1894), - [aux_sym_string_literal_token1] = ACTIONS(1894), - [sym_char_literal] = ACTIONS(1894), - [anon_sym_true] = ACTIONS(1896), - [anon_sym_false] = ACTIONS(1896), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1896), - [sym_super] = ACTIONS(1896), - [sym_crate] = ACTIONS(1896), - [sym_metavariable] = ACTIONS(1894), - [sym__raw_string_literal_start] = ACTIONS(1894), - [sym_float_literal] = ACTIONS(1894), + [ts_builtin_sym_end] = ACTIONS(2027), + [sym_identifier] = ACTIONS(2029), + [anon_sym_SEMI] = ACTIONS(2027), + [anon_sym_macro_rules_BANG] = ACTIONS(2027), + [anon_sym_LPAREN] = ACTIONS(2027), + [anon_sym_LBRACK] = ACTIONS(2027), + [anon_sym_LBRACE] = ACTIONS(2027), + [anon_sym_RBRACE] = ACTIONS(2027), + [anon_sym_macro] = ACTIONS(2029), + [anon_sym_STAR] = ACTIONS(2027), + [anon_sym_u8] = ACTIONS(2029), + [anon_sym_i8] = ACTIONS(2029), + [anon_sym_u16] = ACTIONS(2029), + [anon_sym_i16] = ACTIONS(2029), + [anon_sym_u32] = ACTIONS(2029), + [anon_sym_i32] = ACTIONS(2029), + [anon_sym_u64] = ACTIONS(2029), + [anon_sym_i64] = ACTIONS(2029), + [anon_sym_u128] = ACTIONS(2029), + [anon_sym_i128] = ACTIONS(2029), + [anon_sym_isize] = ACTIONS(2029), + [anon_sym_usize] = ACTIONS(2029), + [anon_sym_f32] = ACTIONS(2029), + [anon_sym_f64] = ACTIONS(2029), + [anon_sym_bool] = ACTIONS(2029), + [anon_sym_str] = ACTIONS(2029), + [anon_sym_char] = ACTIONS(2029), + [anon_sym_DASH] = ACTIONS(2027), + [anon_sym_BANG] = ACTIONS(2027), + [anon_sym_AMP] = ACTIONS(2027), + [anon_sym_PIPE] = ACTIONS(2027), + [anon_sym_LT] = ACTIONS(2027), + [anon_sym_DOT_DOT] = ACTIONS(2027), + [anon_sym_COLON_COLON] = ACTIONS(2027), + [anon_sym_POUND] = ACTIONS(2027), + [anon_sym_SQUOTE] = ACTIONS(2029), + [anon_sym_async] = ACTIONS(2029), + [anon_sym_break] = ACTIONS(2029), + [anon_sym_const] = ACTIONS(2029), + [anon_sym_continue] = ACTIONS(2029), + [anon_sym_default] = ACTIONS(2029), + [anon_sym_enum] = ACTIONS(2029), + [anon_sym_fn] = ACTIONS(2029), + [anon_sym_for] = ACTIONS(2029), + [anon_sym_if] = ACTIONS(2029), + [anon_sym_impl] = ACTIONS(2029), + [anon_sym_let] = ACTIONS(2029), + [anon_sym_loop] = ACTIONS(2029), + [anon_sym_match] = ACTIONS(2029), + [anon_sym_mod] = ACTIONS(2029), + [anon_sym_pub] = ACTIONS(2029), + [anon_sym_return] = ACTIONS(2029), + [anon_sym_static] = ACTIONS(2029), + [anon_sym_struct] = ACTIONS(2029), + [anon_sym_trait] = ACTIONS(2029), + [anon_sym_type] = ACTIONS(2029), + [anon_sym_union] = ACTIONS(2029), + [anon_sym_unsafe] = ACTIONS(2029), + [anon_sym_use] = ACTIONS(2029), + [anon_sym_while] = ACTIONS(2029), + [anon_sym_extern] = ACTIONS(2029), + [anon_sym_yield] = ACTIONS(2029), + [anon_sym_move] = ACTIONS(2029), + [anon_sym_try] = ACTIONS(2029), + [sym_integer_literal] = ACTIONS(2027), + [aux_sym_string_literal_token1] = ACTIONS(2027), + [sym_char_literal] = ACTIONS(2027), + [anon_sym_true] = ACTIONS(2029), + [anon_sym_false] = ACTIONS(2029), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2029), + [sym_super] = ACTIONS(2029), + [sym_crate] = ACTIONS(2029), + [sym_metavariable] = ACTIONS(2027), + [sym__raw_string_literal_start] = ACTIONS(2027), + [sym_float_literal] = ACTIONS(2027), }, [538] = { [sym_line_comment] = STATE(538), [sym_block_comment] = STATE(538), - [ts_builtin_sym_end] = ACTIONS(1898), - [sym_identifier] = ACTIONS(1900), - [anon_sym_SEMI] = ACTIONS(1898), - [anon_sym_macro_rules_BANG] = ACTIONS(1898), - [anon_sym_LPAREN] = ACTIONS(1898), - [anon_sym_LBRACK] = ACTIONS(1898), - [anon_sym_LBRACE] = ACTIONS(1898), - [anon_sym_RBRACE] = ACTIONS(1898), - [anon_sym_STAR] = ACTIONS(1898), - [anon_sym_u8] = ACTIONS(1900), - [anon_sym_i8] = ACTIONS(1900), - [anon_sym_u16] = ACTIONS(1900), - [anon_sym_i16] = ACTIONS(1900), - [anon_sym_u32] = ACTIONS(1900), - [anon_sym_i32] = ACTIONS(1900), - [anon_sym_u64] = ACTIONS(1900), - [anon_sym_i64] = ACTIONS(1900), - [anon_sym_u128] = ACTIONS(1900), - [anon_sym_i128] = ACTIONS(1900), - [anon_sym_isize] = ACTIONS(1900), - [anon_sym_usize] = ACTIONS(1900), - [anon_sym_f32] = ACTIONS(1900), - [anon_sym_f64] = ACTIONS(1900), - [anon_sym_bool] = ACTIONS(1900), - [anon_sym_str] = ACTIONS(1900), - [anon_sym_char] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1898), - [anon_sym_BANG] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(1898), - [anon_sym_PIPE] = ACTIONS(1898), - [anon_sym_LT] = ACTIONS(1898), - [anon_sym_DOT_DOT] = ACTIONS(1898), - [anon_sym_COLON_COLON] = ACTIONS(1898), - [anon_sym_POUND] = ACTIONS(1898), - [anon_sym_SQUOTE] = ACTIONS(1900), - [anon_sym_async] = ACTIONS(1900), - [anon_sym_break] = ACTIONS(1900), - [anon_sym_const] = ACTIONS(1900), - [anon_sym_continue] = ACTIONS(1900), - [anon_sym_default] = ACTIONS(1900), - [anon_sym_enum] = ACTIONS(1900), - [anon_sym_fn] = ACTIONS(1900), - [anon_sym_for] = ACTIONS(1900), - [anon_sym_if] = ACTIONS(1900), - [anon_sym_impl] = ACTIONS(1900), - [anon_sym_let] = ACTIONS(1900), - [anon_sym_loop] = ACTIONS(1900), - [anon_sym_match] = ACTIONS(1900), - [anon_sym_mod] = ACTIONS(1900), - [anon_sym_pub] = ACTIONS(1900), - [anon_sym_return] = ACTIONS(1900), - [anon_sym_static] = ACTIONS(1900), - [anon_sym_struct] = ACTIONS(1900), - [anon_sym_trait] = ACTIONS(1900), - [anon_sym_type] = ACTIONS(1900), - [anon_sym_union] = ACTIONS(1900), - [anon_sym_unsafe] = ACTIONS(1900), - [anon_sym_use] = ACTIONS(1900), - [anon_sym_while] = ACTIONS(1900), - [anon_sym_extern] = ACTIONS(1900), - [anon_sym_yield] = ACTIONS(1900), - [anon_sym_move] = ACTIONS(1900), - [anon_sym_try] = ACTIONS(1900), - [sym_integer_literal] = ACTIONS(1898), - [aux_sym_string_literal_token1] = ACTIONS(1898), - [sym_char_literal] = ACTIONS(1898), - [anon_sym_true] = ACTIONS(1900), - [anon_sym_false] = ACTIONS(1900), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1900), - [sym_super] = ACTIONS(1900), - [sym_crate] = ACTIONS(1900), - [sym_metavariable] = ACTIONS(1898), - [sym__raw_string_literal_start] = ACTIONS(1898), - [sym_float_literal] = ACTIONS(1898), + [ts_builtin_sym_end] = ACTIONS(2031), + [sym_identifier] = ACTIONS(2033), + [anon_sym_SEMI] = ACTIONS(2031), + [anon_sym_macro_rules_BANG] = ACTIONS(2031), + [anon_sym_LPAREN] = ACTIONS(2031), + [anon_sym_LBRACK] = ACTIONS(2031), + [anon_sym_LBRACE] = ACTIONS(2031), + [anon_sym_RBRACE] = ACTIONS(2031), + [anon_sym_macro] = ACTIONS(2033), + [anon_sym_STAR] = ACTIONS(2031), + [anon_sym_u8] = ACTIONS(2033), + [anon_sym_i8] = ACTIONS(2033), + [anon_sym_u16] = ACTIONS(2033), + [anon_sym_i16] = ACTIONS(2033), + [anon_sym_u32] = ACTIONS(2033), + [anon_sym_i32] = ACTIONS(2033), + [anon_sym_u64] = ACTIONS(2033), + [anon_sym_i64] = ACTIONS(2033), + [anon_sym_u128] = ACTIONS(2033), + [anon_sym_i128] = ACTIONS(2033), + [anon_sym_isize] = ACTIONS(2033), + [anon_sym_usize] = ACTIONS(2033), + [anon_sym_f32] = ACTIONS(2033), + [anon_sym_f64] = ACTIONS(2033), + [anon_sym_bool] = ACTIONS(2033), + [anon_sym_str] = ACTIONS(2033), + [anon_sym_char] = ACTIONS(2033), + [anon_sym_DASH] = ACTIONS(2031), + [anon_sym_BANG] = ACTIONS(2031), + [anon_sym_AMP] = ACTIONS(2031), + [anon_sym_PIPE] = ACTIONS(2031), + [anon_sym_LT] = ACTIONS(2031), + [anon_sym_DOT_DOT] = ACTIONS(2031), + [anon_sym_COLON_COLON] = ACTIONS(2031), + [anon_sym_POUND] = ACTIONS(2031), + [anon_sym_SQUOTE] = ACTIONS(2033), + [anon_sym_async] = ACTIONS(2033), + [anon_sym_break] = ACTIONS(2033), + [anon_sym_const] = ACTIONS(2033), + [anon_sym_continue] = ACTIONS(2033), + [anon_sym_default] = ACTIONS(2033), + [anon_sym_enum] = ACTIONS(2033), + [anon_sym_fn] = ACTIONS(2033), + [anon_sym_for] = ACTIONS(2033), + [anon_sym_if] = ACTIONS(2033), + [anon_sym_impl] = ACTIONS(2033), + [anon_sym_let] = ACTIONS(2033), + [anon_sym_loop] = ACTIONS(2033), + [anon_sym_match] = ACTIONS(2033), + [anon_sym_mod] = ACTIONS(2033), + [anon_sym_pub] = ACTIONS(2033), + [anon_sym_return] = ACTIONS(2033), + [anon_sym_static] = ACTIONS(2033), + [anon_sym_struct] = ACTIONS(2033), + [anon_sym_trait] = ACTIONS(2033), + [anon_sym_type] = ACTIONS(2033), + [anon_sym_union] = ACTIONS(2033), + [anon_sym_unsafe] = ACTIONS(2033), + [anon_sym_use] = ACTIONS(2033), + [anon_sym_while] = ACTIONS(2033), + [anon_sym_extern] = ACTIONS(2033), + [anon_sym_yield] = ACTIONS(2033), + [anon_sym_move] = ACTIONS(2033), + [anon_sym_try] = ACTIONS(2033), + [sym_integer_literal] = ACTIONS(2031), + [aux_sym_string_literal_token1] = ACTIONS(2031), + [sym_char_literal] = ACTIONS(2031), + [anon_sym_true] = ACTIONS(2033), + [anon_sym_false] = ACTIONS(2033), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2033), + [sym_super] = ACTIONS(2033), + [sym_crate] = ACTIONS(2033), + [sym_metavariable] = ACTIONS(2031), + [sym__raw_string_literal_start] = ACTIONS(2031), + [sym_float_literal] = ACTIONS(2031), }, [539] = { [sym_line_comment] = STATE(539), [sym_block_comment] = STATE(539), - [ts_builtin_sym_end] = ACTIONS(1902), - [sym_identifier] = ACTIONS(1904), - [anon_sym_SEMI] = ACTIONS(1902), - [anon_sym_macro_rules_BANG] = ACTIONS(1902), - [anon_sym_LPAREN] = ACTIONS(1902), - [anon_sym_LBRACK] = ACTIONS(1902), - [anon_sym_LBRACE] = ACTIONS(1902), - [anon_sym_RBRACE] = ACTIONS(1902), - [anon_sym_STAR] = ACTIONS(1902), - [anon_sym_u8] = ACTIONS(1904), - [anon_sym_i8] = ACTIONS(1904), - [anon_sym_u16] = ACTIONS(1904), - [anon_sym_i16] = ACTIONS(1904), - [anon_sym_u32] = ACTIONS(1904), - [anon_sym_i32] = ACTIONS(1904), - [anon_sym_u64] = ACTIONS(1904), - [anon_sym_i64] = ACTIONS(1904), - [anon_sym_u128] = ACTIONS(1904), - [anon_sym_i128] = ACTIONS(1904), - [anon_sym_isize] = ACTIONS(1904), - [anon_sym_usize] = ACTIONS(1904), - [anon_sym_f32] = ACTIONS(1904), - [anon_sym_f64] = ACTIONS(1904), - [anon_sym_bool] = ACTIONS(1904), - [anon_sym_str] = ACTIONS(1904), - [anon_sym_char] = ACTIONS(1904), - [anon_sym_DASH] = ACTIONS(1902), - [anon_sym_BANG] = ACTIONS(1902), - [anon_sym_AMP] = ACTIONS(1902), - [anon_sym_PIPE] = ACTIONS(1902), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_DOT_DOT] = ACTIONS(1902), - [anon_sym_COLON_COLON] = ACTIONS(1902), - [anon_sym_POUND] = ACTIONS(1902), - [anon_sym_SQUOTE] = ACTIONS(1904), - [anon_sym_async] = ACTIONS(1904), - [anon_sym_break] = ACTIONS(1904), - [anon_sym_const] = ACTIONS(1904), - [anon_sym_continue] = ACTIONS(1904), - [anon_sym_default] = ACTIONS(1904), - [anon_sym_enum] = ACTIONS(1904), - [anon_sym_fn] = ACTIONS(1904), - [anon_sym_for] = ACTIONS(1904), - [anon_sym_if] = ACTIONS(1904), - [anon_sym_impl] = ACTIONS(1904), - [anon_sym_let] = ACTIONS(1904), - [anon_sym_loop] = ACTIONS(1904), - [anon_sym_match] = ACTIONS(1904), - [anon_sym_mod] = ACTIONS(1904), - [anon_sym_pub] = ACTIONS(1904), - [anon_sym_return] = ACTIONS(1904), - [anon_sym_static] = ACTIONS(1904), - [anon_sym_struct] = ACTIONS(1904), - [anon_sym_trait] = ACTIONS(1904), - [anon_sym_type] = ACTIONS(1904), - [anon_sym_union] = ACTIONS(1904), - [anon_sym_unsafe] = ACTIONS(1904), - [anon_sym_use] = ACTIONS(1904), - [anon_sym_while] = ACTIONS(1904), - [anon_sym_extern] = ACTIONS(1904), - [anon_sym_yield] = ACTIONS(1904), - [anon_sym_move] = ACTIONS(1904), - [anon_sym_try] = ACTIONS(1904), - [sym_integer_literal] = ACTIONS(1902), - [aux_sym_string_literal_token1] = ACTIONS(1902), - [sym_char_literal] = ACTIONS(1902), - [anon_sym_true] = ACTIONS(1904), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1904), - [sym_super] = ACTIONS(1904), - [sym_crate] = ACTIONS(1904), - [sym_metavariable] = ACTIONS(1902), - [sym__raw_string_literal_start] = ACTIONS(1902), - [sym_float_literal] = ACTIONS(1902), + [ts_builtin_sym_end] = ACTIONS(2035), + [sym_identifier] = ACTIONS(2037), + [anon_sym_SEMI] = ACTIONS(2035), + [anon_sym_macro_rules_BANG] = ACTIONS(2035), + [anon_sym_LPAREN] = ACTIONS(2035), + [anon_sym_LBRACK] = ACTIONS(2035), + [anon_sym_LBRACE] = ACTIONS(2035), + [anon_sym_RBRACE] = ACTIONS(2035), + [anon_sym_macro] = ACTIONS(2037), + [anon_sym_STAR] = ACTIONS(2035), + [anon_sym_u8] = ACTIONS(2037), + [anon_sym_i8] = ACTIONS(2037), + [anon_sym_u16] = ACTIONS(2037), + [anon_sym_i16] = ACTIONS(2037), + [anon_sym_u32] = ACTIONS(2037), + [anon_sym_i32] = ACTIONS(2037), + [anon_sym_u64] = ACTIONS(2037), + [anon_sym_i64] = ACTIONS(2037), + [anon_sym_u128] = ACTIONS(2037), + [anon_sym_i128] = ACTIONS(2037), + [anon_sym_isize] = ACTIONS(2037), + [anon_sym_usize] = ACTIONS(2037), + [anon_sym_f32] = ACTIONS(2037), + [anon_sym_f64] = ACTIONS(2037), + [anon_sym_bool] = ACTIONS(2037), + [anon_sym_str] = ACTIONS(2037), + [anon_sym_char] = ACTIONS(2037), + [anon_sym_DASH] = ACTIONS(2035), + [anon_sym_BANG] = ACTIONS(2035), + [anon_sym_AMP] = ACTIONS(2035), + [anon_sym_PIPE] = ACTIONS(2035), + [anon_sym_LT] = ACTIONS(2035), + [anon_sym_DOT_DOT] = ACTIONS(2035), + [anon_sym_COLON_COLON] = ACTIONS(2035), + [anon_sym_POUND] = ACTIONS(2035), + [anon_sym_SQUOTE] = ACTIONS(2037), + [anon_sym_async] = ACTIONS(2037), + [anon_sym_break] = ACTIONS(2037), + [anon_sym_const] = ACTIONS(2037), + [anon_sym_continue] = ACTIONS(2037), + [anon_sym_default] = ACTIONS(2037), + [anon_sym_enum] = ACTIONS(2037), + [anon_sym_fn] = ACTIONS(2037), + [anon_sym_for] = ACTIONS(2037), + [anon_sym_if] = ACTIONS(2037), + [anon_sym_impl] = ACTIONS(2037), + [anon_sym_let] = ACTIONS(2037), + [anon_sym_loop] = ACTIONS(2037), + [anon_sym_match] = ACTIONS(2037), + [anon_sym_mod] = ACTIONS(2037), + [anon_sym_pub] = ACTIONS(2037), + [anon_sym_return] = ACTIONS(2037), + [anon_sym_static] = ACTIONS(2037), + [anon_sym_struct] = ACTIONS(2037), + [anon_sym_trait] = ACTIONS(2037), + [anon_sym_type] = ACTIONS(2037), + [anon_sym_union] = ACTIONS(2037), + [anon_sym_unsafe] = ACTIONS(2037), + [anon_sym_use] = ACTIONS(2037), + [anon_sym_while] = ACTIONS(2037), + [anon_sym_extern] = ACTIONS(2037), + [anon_sym_yield] = ACTIONS(2037), + [anon_sym_move] = ACTIONS(2037), + [anon_sym_try] = ACTIONS(2037), + [sym_integer_literal] = ACTIONS(2035), + [aux_sym_string_literal_token1] = ACTIONS(2035), + [sym_char_literal] = ACTIONS(2035), + [anon_sym_true] = ACTIONS(2037), + [anon_sym_false] = ACTIONS(2037), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2037), + [sym_super] = ACTIONS(2037), + [sym_crate] = ACTIONS(2037), + [sym_metavariable] = ACTIONS(2035), + [sym__raw_string_literal_start] = ACTIONS(2035), + [sym_float_literal] = ACTIONS(2035), }, [540] = { [sym_line_comment] = STATE(540), [sym_block_comment] = STATE(540), - [ts_builtin_sym_end] = ACTIONS(1906), - [sym_identifier] = ACTIONS(1908), - [anon_sym_SEMI] = ACTIONS(1906), - [anon_sym_macro_rules_BANG] = ACTIONS(1906), - [anon_sym_LPAREN] = ACTIONS(1906), - [anon_sym_LBRACK] = ACTIONS(1906), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_RBRACE] = ACTIONS(1906), - [anon_sym_STAR] = ACTIONS(1906), - [anon_sym_u8] = ACTIONS(1908), - [anon_sym_i8] = ACTIONS(1908), - [anon_sym_u16] = ACTIONS(1908), - [anon_sym_i16] = ACTIONS(1908), - [anon_sym_u32] = ACTIONS(1908), - [anon_sym_i32] = ACTIONS(1908), - [anon_sym_u64] = ACTIONS(1908), - [anon_sym_i64] = ACTIONS(1908), - [anon_sym_u128] = ACTIONS(1908), - [anon_sym_i128] = ACTIONS(1908), - [anon_sym_isize] = ACTIONS(1908), - [anon_sym_usize] = ACTIONS(1908), - [anon_sym_f32] = ACTIONS(1908), - [anon_sym_f64] = ACTIONS(1908), - [anon_sym_bool] = ACTIONS(1908), - [anon_sym_str] = ACTIONS(1908), - [anon_sym_char] = ACTIONS(1908), - [anon_sym_DASH] = ACTIONS(1906), - [anon_sym_BANG] = ACTIONS(1906), - [anon_sym_AMP] = ACTIONS(1906), - [anon_sym_PIPE] = ACTIONS(1906), - [anon_sym_LT] = ACTIONS(1906), - [anon_sym_DOT_DOT] = ACTIONS(1906), - [anon_sym_COLON_COLON] = ACTIONS(1906), - [anon_sym_POUND] = ACTIONS(1906), - [anon_sym_SQUOTE] = ACTIONS(1908), - [anon_sym_async] = ACTIONS(1908), - [anon_sym_break] = ACTIONS(1908), - [anon_sym_const] = ACTIONS(1908), - [anon_sym_continue] = ACTIONS(1908), - [anon_sym_default] = ACTIONS(1908), - [anon_sym_enum] = ACTIONS(1908), - [anon_sym_fn] = ACTIONS(1908), - [anon_sym_for] = ACTIONS(1908), - [anon_sym_if] = ACTIONS(1908), - [anon_sym_impl] = ACTIONS(1908), - [anon_sym_let] = ACTIONS(1908), - [anon_sym_loop] = ACTIONS(1908), - [anon_sym_match] = ACTIONS(1908), - [anon_sym_mod] = ACTIONS(1908), - [anon_sym_pub] = ACTIONS(1908), - [anon_sym_return] = ACTIONS(1908), - [anon_sym_static] = ACTIONS(1908), - [anon_sym_struct] = ACTIONS(1908), - [anon_sym_trait] = ACTIONS(1908), - [anon_sym_type] = ACTIONS(1908), - [anon_sym_union] = ACTIONS(1908), - [anon_sym_unsafe] = ACTIONS(1908), - [anon_sym_use] = ACTIONS(1908), - [anon_sym_while] = ACTIONS(1908), - [anon_sym_extern] = ACTIONS(1908), - [anon_sym_yield] = ACTIONS(1908), - [anon_sym_move] = ACTIONS(1908), - [anon_sym_try] = ACTIONS(1908), - [sym_integer_literal] = ACTIONS(1906), - [aux_sym_string_literal_token1] = ACTIONS(1906), - [sym_char_literal] = ACTIONS(1906), - [anon_sym_true] = ACTIONS(1908), - [anon_sym_false] = ACTIONS(1908), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1908), - [sym_super] = ACTIONS(1908), - [sym_crate] = ACTIONS(1908), - [sym_metavariable] = ACTIONS(1906), - [sym__raw_string_literal_start] = ACTIONS(1906), - [sym_float_literal] = ACTIONS(1906), + [ts_builtin_sym_end] = ACTIONS(2039), + [sym_identifier] = ACTIONS(2041), + [anon_sym_SEMI] = ACTIONS(2039), + [anon_sym_macro_rules_BANG] = ACTIONS(2039), + [anon_sym_LPAREN] = ACTIONS(2039), + [anon_sym_LBRACK] = ACTIONS(2039), + [anon_sym_LBRACE] = ACTIONS(2039), + [anon_sym_RBRACE] = ACTIONS(2039), + [anon_sym_macro] = ACTIONS(2041), + [anon_sym_STAR] = ACTIONS(2039), + [anon_sym_u8] = ACTIONS(2041), + [anon_sym_i8] = ACTIONS(2041), + [anon_sym_u16] = ACTIONS(2041), + [anon_sym_i16] = ACTIONS(2041), + [anon_sym_u32] = ACTIONS(2041), + [anon_sym_i32] = ACTIONS(2041), + [anon_sym_u64] = ACTIONS(2041), + [anon_sym_i64] = ACTIONS(2041), + [anon_sym_u128] = ACTIONS(2041), + [anon_sym_i128] = ACTIONS(2041), + [anon_sym_isize] = ACTIONS(2041), + [anon_sym_usize] = ACTIONS(2041), + [anon_sym_f32] = ACTIONS(2041), + [anon_sym_f64] = ACTIONS(2041), + [anon_sym_bool] = ACTIONS(2041), + [anon_sym_str] = ACTIONS(2041), + [anon_sym_char] = ACTIONS(2041), + [anon_sym_DASH] = ACTIONS(2039), + [anon_sym_BANG] = ACTIONS(2039), + [anon_sym_AMP] = ACTIONS(2039), + [anon_sym_PIPE] = ACTIONS(2039), + [anon_sym_LT] = ACTIONS(2039), + [anon_sym_DOT_DOT] = ACTIONS(2039), + [anon_sym_COLON_COLON] = ACTIONS(2039), + [anon_sym_POUND] = ACTIONS(2039), + [anon_sym_SQUOTE] = ACTIONS(2041), + [anon_sym_async] = ACTIONS(2041), + [anon_sym_break] = ACTIONS(2041), + [anon_sym_const] = ACTIONS(2041), + [anon_sym_continue] = ACTIONS(2041), + [anon_sym_default] = ACTIONS(2041), + [anon_sym_enum] = ACTIONS(2041), + [anon_sym_fn] = ACTIONS(2041), + [anon_sym_for] = ACTIONS(2041), + [anon_sym_if] = ACTIONS(2041), + [anon_sym_impl] = ACTIONS(2041), + [anon_sym_let] = ACTIONS(2041), + [anon_sym_loop] = ACTIONS(2041), + [anon_sym_match] = ACTIONS(2041), + [anon_sym_mod] = ACTIONS(2041), + [anon_sym_pub] = ACTIONS(2041), + [anon_sym_return] = ACTIONS(2041), + [anon_sym_static] = ACTIONS(2041), + [anon_sym_struct] = ACTIONS(2041), + [anon_sym_trait] = ACTIONS(2041), + [anon_sym_type] = ACTIONS(2041), + [anon_sym_union] = ACTIONS(2041), + [anon_sym_unsafe] = ACTIONS(2041), + [anon_sym_use] = ACTIONS(2041), + [anon_sym_while] = ACTIONS(2041), + [anon_sym_extern] = ACTIONS(2041), + [anon_sym_yield] = ACTIONS(2041), + [anon_sym_move] = ACTIONS(2041), + [anon_sym_try] = ACTIONS(2041), + [sym_integer_literal] = ACTIONS(2039), + [aux_sym_string_literal_token1] = ACTIONS(2039), + [sym_char_literal] = ACTIONS(2039), + [anon_sym_true] = ACTIONS(2041), + [anon_sym_false] = ACTIONS(2041), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2041), + [sym_super] = ACTIONS(2041), + [sym_crate] = ACTIONS(2041), + [sym_metavariable] = ACTIONS(2039), + [sym__raw_string_literal_start] = ACTIONS(2039), + [sym_float_literal] = ACTIONS(2039), }, [541] = { [sym_line_comment] = STATE(541), [sym_block_comment] = STATE(541), - [ts_builtin_sym_end] = ACTIONS(1910), - [sym_identifier] = ACTIONS(1912), - [anon_sym_SEMI] = ACTIONS(1910), - [anon_sym_macro_rules_BANG] = ACTIONS(1910), - [anon_sym_LPAREN] = ACTIONS(1910), - [anon_sym_LBRACK] = ACTIONS(1910), - [anon_sym_LBRACE] = ACTIONS(1910), - [anon_sym_RBRACE] = ACTIONS(1910), - [anon_sym_STAR] = ACTIONS(1910), - [anon_sym_u8] = ACTIONS(1912), - [anon_sym_i8] = ACTIONS(1912), - [anon_sym_u16] = ACTIONS(1912), - [anon_sym_i16] = ACTIONS(1912), - [anon_sym_u32] = ACTIONS(1912), - [anon_sym_i32] = ACTIONS(1912), - [anon_sym_u64] = ACTIONS(1912), - [anon_sym_i64] = ACTIONS(1912), - [anon_sym_u128] = ACTIONS(1912), - [anon_sym_i128] = ACTIONS(1912), - [anon_sym_isize] = ACTIONS(1912), - [anon_sym_usize] = ACTIONS(1912), - [anon_sym_f32] = ACTIONS(1912), - [anon_sym_f64] = ACTIONS(1912), - [anon_sym_bool] = ACTIONS(1912), - [anon_sym_str] = ACTIONS(1912), - [anon_sym_char] = ACTIONS(1912), - [anon_sym_DASH] = ACTIONS(1910), - [anon_sym_BANG] = ACTIONS(1910), - [anon_sym_AMP] = ACTIONS(1910), - [anon_sym_PIPE] = ACTIONS(1910), - [anon_sym_LT] = ACTIONS(1910), - [anon_sym_DOT_DOT] = ACTIONS(1910), - [anon_sym_COLON_COLON] = ACTIONS(1910), - [anon_sym_POUND] = ACTIONS(1910), - [anon_sym_SQUOTE] = ACTIONS(1912), - [anon_sym_async] = ACTIONS(1912), - [anon_sym_break] = ACTIONS(1912), - [anon_sym_const] = ACTIONS(1912), - [anon_sym_continue] = ACTIONS(1912), - [anon_sym_default] = ACTIONS(1912), - [anon_sym_enum] = ACTIONS(1912), - [anon_sym_fn] = ACTIONS(1912), - [anon_sym_for] = ACTIONS(1912), - [anon_sym_if] = ACTIONS(1912), - [anon_sym_impl] = ACTIONS(1912), - [anon_sym_let] = ACTIONS(1912), - [anon_sym_loop] = ACTIONS(1912), - [anon_sym_match] = ACTIONS(1912), - [anon_sym_mod] = ACTIONS(1912), - [anon_sym_pub] = ACTIONS(1912), - [anon_sym_return] = ACTIONS(1912), - [anon_sym_static] = ACTIONS(1912), - [anon_sym_struct] = ACTIONS(1912), - [anon_sym_trait] = ACTIONS(1912), - [anon_sym_type] = ACTIONS(1912), - [anon_sym_union] = ACTIONS(1912), - [anon_sym_unsafe] = ACTIONS(1912), - [anon_sym_use] = ACTIONS(1912), - [anon_sym_while] = ACTIONS(1912), - [anon_sym_extern] = ACTIONS(1912), - [anon_sym_yield] = ACTIONS(1912), - [anon_sym_move] = ACTIONS(1912), - [anon_sym_try] = ACTIONS(1912), - [sym_integer_literal] = ACTIONS(1910), - [aux_sym_string_literal_token1] = ACTIONS(1910), - [sym_char_literal] = ACTIONS(1910), - [anon_sym_true] = ACTIONS(1912), - [anon_sym_false] = ACTIONS(1912), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1912), - [sym_super] = ACTIONS(1912), - [sym_crate] = ACTIONS(1912), - [sym_metavariable] = ACTIONS(1910), - [sym__raw_string_literal_start] = ACTIONS(1910), - [sym_float_literal] = ACTIONS(1910), + [ts_builtin_sym_end] = ACTIONS(2043), + [sym_identifier] = ACTIONS(2045), + [anon_sym_SEMI] = ACTIONS(2043), + [anon_sym_macro_rules_BANG] = ACTIONS(2043), + [anon_sym_LPAREN] = ACTIONS(2043), + [anon_sym_LBRACK] = ACTIONS(2043), + [anon_sym_LBRACE] = ACTIONS(2043), + [anon_sym_RBRACE] = ACTIONS(2043), + [anon_sym_macro] = ACTIONS(2045), + [anon_sym_STAR] = ACTIONS(2043), + [anon_sym_u8] = ACTIONS(2045), + [anon_sym_i8] = ACTIONS(2045), + [anon_sym_u16] = ACTIONS(2045), + [anon_sym_i16] = ACTIONS(2045), + [anon_sym_u32] = ACTIONS(2045), + [anon_sym_i32] = ACTIONS(2045), + [anon_sym_u64] = ACTIONS(2045), + [anon_sym_i64] = ACTIONS(2045), + [anon_sym_u128] = ACTIONS(2045), + [anon_sym_i128] = ACTIONS(2045), + [anon_sym_isize] = ACTIONS(2045), + [anon_sym_usize] = ACTIONS(2045), + [anon_sym_f32] = ACTIONS(2045), + [anon_sym_f64] = ACTIONS(2045), + [anon_sym_bool] = ACTIONS(2045), + [anon_sym_str] = ACTIONS(2045), + [anon_sym_char] = ACTIONS(2045), + [anon_sym_DASH] = ACTIONS(2043), + [anon_sym_BANG] = ACTIONS(2043), + [anon_sym_AMP] = ACTIONS(2043), + [anon_sym_PIPE] = ACTIONS(2043), + [anon_sym_LT] = ACTIONS(2043), + [anon_sym_DOT_DOT] = ACTIONS(2043), + [anon_sym_COLON_COLON] = ACTIONS(2043), + [anon_sym_POUND] = ACTIONS(2043), + [anon_sym_SQUOTE] = ACTIONS(2045), + [anon_sym_async] = ACTIONS(2045), + [anon_sym_break] = ACTIONS(2045), + [anon_sym_const] = ACTIONS(2045), + [anon_sym_continue] = ACTIONS(2045), + [anon_sym_default] = ACTIONS(2045), + [anon_sym_enum] = ACTIONS(2045), + [anon_sym_fn] = ACTIONS(2045), + [anon_sym_for] = ACTIONS(2045), + [anon_sym_if] = ACTIONS(2045), + [anon_sym_impl] = ACTIONS(2045), + [anon_sym_let] = ACTIONS(2045), + [anon_sym_loop] = ACTIONS(2045), + [anon_sym_match] = ACTIONS(2045), + [anon_sym_mod] = ACTIONS(2045), + [anon_sym_pub] = ACTIONS(2045), + [anon_sym_return] = ACTIONS(2045), + [anon_sym_static] = ACTIONS(2045), + [anon_sym_struct] = ACTIONS(2045), + [anon_sym_trait] = ACTIONS(2045), + [anon_sym_type] = ACTIONS(2045), + [anon_sym_union] = ACTIONS(2045), + [anon_sym_unsafe] = ACTIONS(2045), + [anon_sym_use] = ACTIONS(2045), + [anon_sym_while] = ACTIONS(2045), + [anon_sym_extern] = ACTIONS(2045), + [anon_sym_yield] = ACTIONS(2045), + [anon_sym_move] = ACTIONS(2045), + [anon_sym_try] = ACTIONS(2045), + [sym_integer_literal] = ACTIONS(2043), + [aux_sym_string_literal_token1] = ACTIONS(2043), + [sym_char_literal] = ACTIONS(2043), + [anon_sym_true] = ACTIONS(2045), + [anon_sym_false] = ACTIONS(2045), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2045), + [sym_super] = ACTIONS(2045), + [sym_crate] = ACTIONS(2045), + [sym_metavariable] = ACTIONS(2043), + [sym__raw_string_literal_start] = ACTIONS(2043), + [sym_float_literal] = ACTIONS(2043), }, [542] = { [sym_line_comment] = STATE(542), [sym_block_comment] = STATE(542), - [ts_builtin_sym_end] = ACTIONS(1914), - [sym_identifier] = ACTIONS(1916), - [anon_sym_SEMI] = ACTIONS(1914), - [anon_sym_macro_rules_BANG] = ACTIONS(1914), - [anon_sym_LPAREN] = ACTIONS(1914), - [anon_sym_LBRACK] = ACTIONS(1914), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_RBRACE] = ACTIONS(1914), - [anon_sym_STAR] = ACTIONS(1914), - [anon_sym_u8] = ACTIONS(1916), - [anon_sym_i8] = ACTIONS(1916), - [anon_sym_u16] = ACTIONS(1916), - [anon_sym_i16] = ACTIONS(1916), - [anon_sym_u32] = ACTIONS(1916), - [anon_sym_i32] = ACTIONS(1916), - [anon_sym_u64] = ACTIONS(1916), - [anon_sym_i64] = ACTIONS(1916), - [anon_sym_u128] = ACTIONS(1916), - [anon_sym_i128] = ACTIONS(1916), - [anon_sym_isize] = ACTIONS(1916), - [anon_sym_usize] = ACTIONS(1916), - [anon_sym_f32] = ACTIONS(1916), - [anon_sym_f64] = ACTIONS(1916), - [anon_sym_bool] = ACTIONS(1916), - [anon_sym_str] = ACTIONS(1916), - [anon_sym_char] = ACTIONS(1916), - [anon_sym_DASH] = ACTIONS(1914), - [anon_sym_BANG] = ACTIONS(1914), - [anon_sym_AMP] = ACTIONS(1914), - [anon_sym_PIPE] = ACTIONS(1914), - [anon_sym_LT] = ACTIONS(1914), - [anon_sym_DOT_DOT] = ACTIONS(1914), - [anon_sym_COLON_COLON] = ACTIONS(1914), - [anon_sym_POUND] = ACTIONS(1914), - [anon_sym_SQUOTE] = ACTIONS(1916), - [anon_sym_async] = ACTIONS(1916), - [anon_sym_break] = ACTIONS(1916), - [anon_sym_const] = ACTIONS(1916), - [anon_sym_continue] = ACTIONS(1916), - [anon_sym_default] = ACTIONS(1916), - [anon_sym_enum] = ACTIONS(1916), - [anon_sym_fn] = ACTIONS(1916), - [anon_sym_for] = ACTIONS(1916), - [anon_sym_if] = ACTIONS(1916), - [anon_sym_impl] = ACTIONS(1916), - [anon_sym_let] = ACTIONS(1916), - [anon_sym_loop] = ACTIONS(1916), - [anon_sym_match] = ACTIONS(1916), - [anon_sym_mod] = ACTIONS(1916), - [anon_sym_pub] = ACTIONS(1916), - [anon_sym_return] = ACTIONS(1916), - [anon_sym_static] = ACTIONS(1916), - [anon_sym_struct] = ACTIONS(1916), - [anon_sym_trait] = ACTIONS(1916), - [anon_sym_type] = ACTIONS(1916), - [anon_sym_union] = ACTIONS(1916), - [anon_sym_unsafe] = ACTIONS(1916), - [anon_sym_use] = ACTIONS(1916), - [anon_sym_while] = ACTIONS(1916), - [anon_sym_extern] = ACTIONS(1916), - [anon_sym_yield] = ACTIONS(1916), - [anon_sym_move] = ACTIONS(1916), - [anon_sym_try] = ACTIONS(1916), - [sym_integer_literal] = ACTIONS(1914), - [aux_sym_string_literal_token1] = ACTIONS(1914), - [sym_char_literal] = ACTIONS(1914), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1916), - [sym_super] = ACTIONS(1916), - [sym_crate] = ACTIONS(1916), - [sym_metavariable] = ACTIONS(1914), - [sym__raw_string_literal_start] = ACTIONS(1914), - [sym_float_literal] = ACTIONS(1914), + [ts_builtin_sym_end] = ACTIONS(2047), + [sym_identifier] = ACTIONS(2049), + [anon_sym_SEMI] = ACTIONS(2047), + [anon_sym_macro_rules_BANG] = ACTIONS(2047), + [anon_sym_LPAREN] = ACTIONS(2047), + [anon_sym_LBRACK] = ACTIONS(2047), + [anon_sym_LBRACE] = ACTIONS(2047), + [anon_sym_RBRACE] = ACTIONS(2047), + [anon_sym_macro] = ACTIONS(2049), + [anon_sym_STAR] = ACTIONS(2047), + [anon_sym_u8] = ACTIONS(2049), + [anon_sym_i8] = ACTIONS(2049), + [anon_sym_u16] = ACTIONS(2049), + [anon_sym_i16] = ACTIONS(2049), + [anon_sym_u32] = ACTIONS(2049), + [anon_sym_i32] = ACTIONS(2049), + [anon_sym_u64] = ACTIONS(2049), + [anon_sym_i64] = ACTIONS(2049), + [anon_sym_u128] = ACTIONS(2049), + [anon_sym_i128] = ACTIONS(2049), + [anon_sym_isize] = ACTIONS(2049), + [anon_sym_usize] = ACTIONS(2049), + [anon_sym_f32] = ACTIONS(2049), + [anon_sym_f64] = ACTIONS(2049), + [anon_sym_bool] = ACTIONS(2049), + [anon_sym_str] = ACTIONS(2049), + [anon_sym_char] = ACTIONS(2049), + [anon_sym_DASH] = ACTIONS(2047), + [anon_sym_BANG] = ACTIONS(2047), + [anon_sym_AMP] = ACTIONS(2047), + [anon_sym_PIPE] = ACTIONS(2047), + [anon_sym_LT] = ACTIONS(2047), + [anon_sym_DOT_DOT] = ACTIONS(2047), + [anon_sym_COLON_COLON] = ACTIONS(2047), + [anon_sym_POUND] = ACTIONS(2047), + [anon_sym_SQUOTE] = ACTIONS(2049), + [anon_sym_async] = ACTIONS(2049), + [anon_sym_break] = ACTIONS(2049), + [anon_sym_const] = ACTIONS(2049), + [anon_sym_continue] = ACTIONS(2049), + [anon_sym_default] = ACTIONS(2049), + [anon_sym_enum] = ACTIONS(2049), + [anon_sym_fn] = ACTIONS(2049), + [anon_sym_for] = ACTIONS(2049), + [anon_sym_if] = ACTIONS(2049), + [anon_sym_impl] = ACTIONS(2049), + [anon_sym_let] = ACTIONS(2049), + [anon_sym_loop] = ACTIONS(2049), + [anon_sym_match] = ACTIONS(2049), + [anon_sym_mod] = ACTIONS(2049), + [anon_sym_pub] = ACTIONS(2049), + [anon_sym_return] = ACTIONS(2049), + [anon_sym_static] = ACTIONS(2049), + [anon_sym_struct] = ACTIONS(2049), + [anon_sym_trait] = ACTIONS(2049), + [anon_sym_type] = ACTIONS(2049), + [anon_sym_union] = ACTIONS(2049), + [anon_sym_unsafe] = ACTIONS(2049), + [anon_sym_use] = ACTIONS(2049), + [anon_sym_while] = ACTIONS(2049), + [anon_sym_extern] = ACTIONS(2049), + [anon_sym_yield] = ACTIONS(2049), + [anon_sym_move] = ACTIONS(2049), + [anon_sym_try] = ACTIONS(2049), + [sym_integer_literal] = ACTIONS(2047), + [aux_sym_string_literal_token1] = ACTIONS(2047), + [sym_char_literal] = ACTIONS(2047), + [anon_sym_true] = ACTIONS(2049), + [anon_sym_false] = ACTIONS(2049), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2049), + [sym_super] = ACTIONS(2049), + [sym_crate] = ACTIONS(2049), + [sym_metavariable] = ACTIONS(2047), + [sym__raw_string_literal_start] = ACTIONS(2047), + [sym_float_literal] = ACTIONS(2047), }, [543] = { [sym_line_comment] = STATE(543), [sym_block_comment] = STATE(543), - [ts_builtin_sym_end] = ACTIONS(1918), - [sym_identifier] = ACTIONS(1920), - [anon_sym_SEMI] = ACTIONS(1918), - [anon_sym_macro_rules_BANG] = ACTIONS(1918), - [anon_sym_LPAREN] = ACTIONS(1918), - [anon_sym_LBRACK] = ACTIONS(1918), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_RBRACE] = ACTIONS(1918), - [anon_sym_STAR] = ACTIONS(1918), - [anon_sym_u8] = ACTIONS(1920), - [anon_sym_i8] = ACTIONS(1920), - [anon_sym_u16] = ACTIONS(1920), - [anon_sym_i16] = ACTIONS(1920), - [anon_sym_u32] = ACTIONS(1920), - [anon_sym_i32] = ACTIONS(1920), - [anon_sym_u64] = ACTIONS(1920), - [anon_sym_i64] = ACTIONS(1920), - [anon_sym_u128] = ACTIONS(1920), - [anon_sym_i128] = ACTIONS(1920), - [anon_sym_isize] = ACTIONS(1920), - [anon_sym_usize] = ACTIONS(1920), - [anon_sym_f32] = ACTIONS(1920), - [anon_sym_f64] = ACTIONS(1920), - [anon_sym_bool] = ACTIONS(1920), - [anon_sym_str] = ACTIONS(1920), - [anon_sym_char] = ACTIONS(1920), - [anon_sym_DASH] = ACTIONS(1918), - [anon_sym_BANG] = ACTIONS(1918), - [anon_sym_AMP] = ACTIONS(1918), - [anon_sym_PIPE] = ACTIONS(1918), - [anon_sym_LT] = ACTIONS(1918), - [anon_sym_DOT_DOT] = ACTIONS(1918), - [anon_sym_COLON_COLON] = ACTIONS(1918), - [anon_sym_POUND] = ACTIONS(1918), - [anon_sym_SQUOTE] = ACTIONS(1920), - [anon_sym_async] = ACTIONS(1920), - [anon_sym_break] = ACTIONS(1920), - [anon_sym_const] = ACTIONS(1920), - [anon_sym_continue] = ACTIONS(1920), - [anon_sym_default] = ACTIONS(1920), - [anon_sym_enum] = ACTIONS(1920), - [anon_sym_fn] = ACTIONS(1920), - [anon_sym_for] = ACTIONS(1920), - [anon_sym_if] = ACTIONS(1920), - [anon_sym_impl] = ACTIONS(1920), - [anon_sym_let] = ACTIONS(1920), - [anon_sym_loop] = ACTIONS(1920), - [anon_sym_match] = ACTIONS(1920), - [anon_sym_mod] = ACTIONS(1920), - [anon_sym_pub] = ACTIONS(1920), - [anon_sym_return] = ACTIONS(1920), - [anon_sym_static] = ACTIONS(1920), - [anon_sym_struct] = ACTIONS(1920), - [anon_sym_trait] = ACTIONS(1920), - [anon_sym_type] = ACTIONS(1920), - [anon_sym_union] = ACTIONS(1920), - [anon_sym_unsafe] = ACTIONS(1920), - [anon_sym_use] = ACTIONS(1920), - [anon_sym_while] = ACTIONS(1920), - [anon_sym_extern] = ACTIONS(1920), - [anon_sym_yield] = ACTIONS(1920), - [anon_sym_move] = ACTIONS(1920), - [anon_sym_try] = ACTIONS(1920), - [sym_integer_literal] = ACTIONS(1918), - [aux_sym_string_literal_token1] = ACTIONS(1918), - [sym_char_literal] = ACTIONS(1918), - [anon_sym_true] = ACTIONS(1920), - [anon_sym_false] = ACTIONS(1920), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1920), - [sym_super] = ACTIONS(1920), - [sym_crate] = ACTIONS(1920), - [sym_metavariable] = ACTIONS(1918), - [sym__raw_string_literal_start] = ACTIONS(1918), - [sym_float_literal] = ACTIONS(1918), + [ts_builtin_sym_end] = ACTIONS(2051), + [sym_identifier] = ACTIONS(2053), + [anon_sym_SEMI] = ACTIONS(2051), + [anon_sym_macro_rules_BANG] = ACTIONS(2051), + [anon_sym_LPAREN] = ACTIONS(2051), + [anon_sym_LBRACK] = ACTIONS(2051), + [anon_sym_LBRACE] = ACTIONS(2051), + [anon_sym_RBRACE] = ACTIONS(2051), + [anon_sym_macro] = ACTIONS(2053), + [anon_sym_STAR] = ACTIONS(2051), + [anon_sym_u8] = ACTIONS(2053), + [anon_sym_i8] = ACTIONS(2053), + [anon_sym_u16] = ACTIONS(2053), + [anon_sym_i16] = ACTIONS(2053), + [anon_sym_u32] = ACTIONS(2053), + [anon_sym_i32] = ACTIONS(2053), + [anon_sym_u64] = ACTIONS(2053), + [anon_sym_i64] = ACTIONS(2053), + [anon_sym_u128] = ACTIONS(2053), + [anon_sym_i128] = ACTIONS(2053), + [anon_sym_isize] = ACTIONS(2053), + [anon_sym_usize] = ACTIONS(2053), + [anon_sym_f32] = ACTIONS(2053), + [anon_sym_f64] = ACTIONS(2053), + [anon_sym_bool] = ACTIONS(2053), + [anon_sym_str] = ACTIONS(2053), + [anon_sym_char] = ACTIONS(2053), + [anon_sym_DASH] = ACTIONS(2051), + [anon_sym_BANG] = ACTIONS(2051), + [anon_sym_AMP] = ACTIONS(2051), + [anon_sym_PIPE] = ACTIONS(2051), + [anon_sym_LT] = ACTIONS(2051), + [anon_sym_DOT_DOT] = ACTIONS(2051), + [anon_sym_COLON_COLON] = ACTIONS(2051), + [anon_sym_POUND] = ACTIONS(2051), + [anon_sym_SQUOTE] = ACTIONS(2053), + [anon_sym_async] = ACTIONS(2053), + [anon_sym_break] = ACTIONS(2053), + [anon_sym_const] = ACTIONS(2053), + [anon_sym_continue] = ACTIONS(2053), + [anon_sym_default] = ACTIONS(2053), + [anon_sym_enum] = ACTIONS(2053), + [anon_sym_fn] = ACTIONS(2053), + [anon_sym_for] = ACTIONS(2053), + [anon_sym_if] = ACTIONS(2053), + [anon_sym_impl] = ACTIONS(2053), + [anon_sym_let] = ACTIONS(2053), + [anon_sym_loop] = ACTIONS(2053), + [anon_sym_match] = ACTIONS(2053), + [anon_sym_mod] = ACTIONS(2053), + [anon_sym_pub] = ACTIONS(2053), + [anon_sym_return] = ACTIONS(2053), + [anon_sym_static] = ACTIONS(2053), + [anon_sym_struct] = ACTIONS(2053), + [anon_sym_trait] = ACTIONS(2053), + [anon_sym_type] = ACTIONS(2053), + [anon_sym_union] = ACTIONS(2053), + [anon_sym_unsafe] = ACTIONS(2053), + [anon_sym_use] = ACTIONS(2053), + [anon_sym_while] = ACTIONS(2053), + [anon_sym_extern] = ACTIONS(2053), + [anon_sym_yield] = ACTIONS(2053), + [anon_sym_move] = ACTIONS(2053), + [anon_sym_try] = ACTIONS(2053), + [sym_integer_literal] = ACTIONS(2051), + [aux_sym_string_literal_token1] = ACTIONS(2051), + [sym_char_literal] = ACTIONS(2051), + [anon_sym_true] = ACTIONS(2053), + [anon_sym_false] = ACTIONS(2053), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2053), + [sym_super] = ACTIONS(2053), + [sym_crate] = ACTIONS(2053), + [sym_metavariable] = ACTIONS(2051), + [sym__raw_string_literal_start] = ACTIONS(2051), + [sym_float_literal] = ACTIONS(2051), }, [544] = { [sym_line_comment] = STATE(544), [sym_block_comment] = STATE(544), - [ts_builtin_sym_end] = ACTIONS(1922), - [sym_identifier] = ACTIONS(1924), - [anon_sym_SEMI] = ACTIONS(1922), - [anon_sym_macro_rules_BANG] = ACTIONS(1922), - [anon_sym_LPAREN] = ACTIONS(1922), - [anon_sym_LBRACK] = ACTIONS(1922), - [anon_sym_LBRACE] = ACTIONS(1922), - [anon_sym_RBRACE] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1922), - [anon_sym_u8] = ACTIONS(1924), - [anon_sym_i8] = ACTIONS(1924), - [anon_sym_u16] = ACTIONS(1924), - [anon_sym_i16] = ACTIONS(1924), - [anon_sym_u32] = ACTIONS(1924), - [anon_sym_i32] = ACTIONS(1924), - [anon_sym_u64] = ACTIONS(1924), - [anon_sym_i64] = ACTIONS(1924), - [anon_sym_u128] = ACTIONS(1924), - [anon_sym_i128] = ACTIONS(1924), - [anon_sym_isize] = ACTIONS(1924), - [anon_sym_usize] = ACTIONS(1924), - [anon_sym_f32] = ACTIONS(1924), - [anon_sym_f64] = ACTIONS(1924), - [anon_sym_bool] = ACTIONS(1924), - [anon_sym_str] = ACTIONS(1924), - [anon_sym_char] = ACTIONS(1924), - [anon_sym_DASH] = ACTIONS(1922), - [anon_sym_BANG] = ACTIONS(1922), - [anon_sym_AMP] = ACTIONS(1922), - [anon_sym_PIPE] = ACTIONS(1922), - [anon_sym_LT] = ACTIONS(1922), - [anon_sym_DOT_DOT] = ACTIONS(1922), - [anon_sym_COLON_COLON] = ACTIONS(1922), - [anon_sym_POUND] = ACTIONS(1922), - [anon_sym_SQUOTE] = ACTIONS(1924), - [anon_sym_async] = ACTIONS(1924), - [anon_sym_break] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1924), - [anon_sym_continue] = ACTIONS(1924), - [anon_sym_default] = ACTIONS(1924), - [anon_sym_enum] = ACTIONS(1924), - [anon_sym_fn] = ACTIONS(1924), - [anon_sym_for] = ACTIONS(1924), - [anon_sym_if] = ACTIONS(1924), - [anon_sym_impl] = ACTIONS(1924), - [anon_sym_let] = ACTIONS(1924), - [anon_sym_loop] = ACTIONS(1924), - [anon_sym_match] = ACTIONS(1924), - [anon_sym_mod] = ACTIONS(1924), - [anon_sym_pub] = ACTIONS(1924), - [anon_sym_return] = ACTIONS(1924), - [anon_sym_static] = ACTIONS(1924), - [anon_sym_struct] = ACTIONS(1924), - [anon_sym_trait] = ACTIONS(1924), - [anon_sym_type] = ACTIONS(1924), - [anon_sym_union] = ACTIONS(1924), - [anon_sym_unsafe] = ACTIONS(1924), - [anon_sym_use] = ACTIONS(1924), - [anon_sym_while] = ACTIONS(1924), - [anon_sym_extern] = ACTIONS(1924), - [anon_sym_yield] = ACTIONS(1924), - [anon_sym_move] = ACTIONS(1924), - [anon_sym_try] = ACTIONS(1924), - [sym_integer_literal] = ACTIONS(1922), - [aux_sym_string_literal_token1] = ACTIONS(1922), - [sym_char_literal] = ACTIONS(1922), - [anon_sym_true] = ACTIONS(1924), - [anon_sym_false] = ACTIONS(1924), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1924), - [sym_super] = ACTIONS(1924), - [sym_crate] = ACTIONS(1924), - [sym_metavariable] = ACTIONS(1922), - [sym__raw_string_literal_start] = ACTIONS(1922), - [sym_float_literal] = ACTIONS(1922), + [ts_builtin_sym_end] = ACTIONS(2055), + [sym_identifier] = ACTIONS(2057), + [anon_sym_SEMI] = ACTIONS(2055), + [anon_sym_macro_rules_BANG] = ACTIONS(2055), + [anon_sym_LPAREN] = ACTIONS(2055), + [anon_sym_LBRACK] = ACTIONS(2055), + [anon_sym_LBRACE] = ACTIONS(2055), + [anon_sym_RBRACE] = ACTIONS(2055), + [anon_sym_macro] = ACTIONS(2057), + [anon_sym_STAR] = ACTIONS(2055), + [anon_sym_u8] = ACTIONS(2057), + [anon_sym_i8] = ACTIONS(2057), + [anon_sym_u16] = ACTIONS(2057), + [anon_sym_i16] = ACTIONS(2057), + [anon_sym_u32] = ACTIONS(2057), + [anon_sym_i32] = ACTIONS(2057), + [anon_sym_u64] = ACTIONS(2057), + [anon_sym_i64] = ACTIONS(2057), + [anon_sym_u128] = ACTIONS(2057), + [anon_sym_i128] = ACTIONS(2057), + [anon_sym_isize] = ACTIONS(2057), + [anon_sym_usize] = ACTIONS(2057), + [anon_sym_f32] = ACTIONS(2057), + [anon_sym_f64] = ACTIONS(2057), + [anon_sym_bool] = ACTIONS(2057), + [anon_sym_str] = ACTIONS(2057), + [anon_sym_char] = ACTIONS(2057), + [anon_sym_DASH] = ACTIONS(2055), + [anon_sym_BANG] = ACTIONS(2055), + [anon_sym_AMP] = ACTIONS(2055), + [anon_sym_PIPE] = ACTIONS(2055), + [anon_sym_LT] = ACTIONS(2055), + [anon_sym_DOT_DOT] = ACTIONS(2055), + [anon_sym_COLON_COLON] = ACTIONS(2055), + [anon_sym_POUND] = ACTIONS(2055), + [anon_sym_SQUOTE] = ACTIONS(2057), + [anon_sym_async] = ACTIONS(2057), + [anon_sym_break] = ACTIONS(2057), + [anon_sym_const] = ACTIONS(2057), + [anon_sym_continue] = ACTIONS(2057), + [anon_sym_default] = ACTIONS(2057), + [anon_sym_enum] = ACTIONS(2057), + [anon_sym_fn] = ACTIONS(2057), + [anon_sym_for] = ACTIONS(2057), + [anon_sym_if] = ACTIONS(2057), + [anon_sym_impl] = ACTIONS(2057), + [anon_sym_let] = ACTIONS(2057), + [anon_sym_loop] = ACTIONS(2057), + [anon_sym_match] = ACTIONS(2057), + [anon_sym_mod] = ACTIONS(2057), + [anon_sym_pub] = ACTIONS(2057), + [anon_sym_return] = ACTIONS(2057), + [anon_sym_static] = ACTIONS(2057), + [anon_sym_struct] = ACTIONS(2057), + [anon_sym_trait] = ACTIONS(2057), + [anon_sym_type] = ACTIONS(2057), + [anon_sym_union] = ACTIONS(2057), + [anon_sym_unsafe] = ACTIONS(2057), + [anon_sym_use] = ACTIONS(2057), + [anon_sym_while] = ACTIONS(2057), + [anon_sym_extern] = ACTIONS(2057), + [anon_sym_yield] = ACTIONS(2057), + [anon_sym_move] = ACTIONS(2057), + [anon_sym_try] = ACTIONS(2057), + [sym_integer_literal] = ACTIONS(2055), + [aux_sym_string_literal_token1] = ACTIONS(2055), + [sym_char_literal] = ACTIONS(2055), + [anon_sym_true] = ACTIONS(2057), + [anon_sym_false] = ACTIONS(2057), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2057), + [sym_super] = ACTIONS(2057), + [sym_crate] = ACTIONS(2057), + [sym_metavariable] = ACTIONS(2055), + [sym__raw_string_literal_start] = ACTIONS(2055), + [sym_float_literal] = ACTIONS(2055), }, [545] = { [sym_line_comment] = STATE(545), [sym_block_comment] = STATE(545), - [ts_builtin_sym_end] = ACTIONS(1926), - [sym_identifier] = ACTIONS(1928), - [anon_sym_SEMI] = ACTIONS(1926), - [anon_sym_macro_rules_BANG] = ACTIONS(1926), - [anon_sym_LPAREN] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(1926), - [anon_sym_LBRACE] = ACTIONS(1926), - [anon_sym_RBRACE] = ACTIONS(1926), - [anon_sym_STAR] = ACTIONS(1926), - [anon_sym_u8] = ACTIONS(1928), - [anon_sym_i8] = ACTIONS(1928), - [anon_sym_u16] = ACTIONS(1928), - [anon_sym_i16] = ACTIONS(1928), - [anon_sym_u32] = ACTIONS(1928), - [anon_sym_i32] = ACTIONS(1928), - [anon_sym_u64] = ACTIONS(1928), - [anon_sym_i64] = ACTIONS(1928), - [anon_sym_u128] = ACTIONS(1928), - [anon_sym_i128] = ACTIONS(1928), - [anon_sym_isize] = ACTIONS(1928), - [anon_sym_usize] = ACTIONS(1928), - [anon_sym_f32] = ACTIONS(1928), - [anon_sym_f64] = ACTIONS(1928), - [anon_sym_bool] = ACTIONS(1928), - [anon_sym_str] = ACTIONS(1928), - [anon_sym_char] = ACTIONS(1928), - [anon_sym_DASH] = ACTIONS(1926), - [anon_sym_BANG] = ACTIONS(1926), - [anon_sym_AMP] = ACTIONS(1926), - [anon_sym_PIPE] = ACTIONS(1926), - [anon_sym_LT] = ACTIONS(1926), - [anon_sym_DOT_DOT] = ACTIONS(1926), - [anon_sym_COLON_COLON] = ACTIONS(1926), - [anon_sym_POUND] = ACTIONS(1926), - [anon_sym_SQUOTE] = ACTIONS(1928), - [anon_sym_async] = ACTIONS(1928), - [anon_sym_break] = ACTIONS(1928), - [anon_sym_const] = ACTIONS(1928), - [anon_sym_continue] = ACTIONS(1928), - [anon_sym_default] = ACTIONS(1928), - [anon_sym_enum] = ACTIONS(1928), - [anon_sym_fn] = ACTIONS(1928), - [anon_sym_for] = ACTIONS(1928), - [anon_sym_if] = ACTIONS(1928), - [anon_sym_impl] = ACTIONS(1928), - [anon_sym_let] = ACTIONS(1928), - [anon_sym_loop] = ACTIONS(1928), - [anon_sym_match] = ACTIONS(1928), - [anon_sym_mod] = ACTIONS(1928), - [anon_sym_pub] = ACTIONS(1928), - [anon_sym_return] = ACTIONS(1928), - [anon_sym_static] = ACTIONS(1928), - [anon_sym_struct] = ACTIONS(1928), - [anon_sym_trait] = ACTIONS(1928), - [anon_sym_type] = ACTIONS(1928), - [anon_sym_union] = ACTIONS(1928), - [anon_sym_unsafe] = ACTIONS(1928), - [anon_sym_use] = ACTIONS(1928), - [anon_sym_while] = ACTIONS(1928), - [anon_sym_extern] = ACTIONS(1928), - [anon_sym_yield] = ACTIONS(1928), - [anon_sym_move] = ACTIONS(1928), - [anon_sym_try] = ACTIONS(1928), - [sym_integer_literal] = ACTIONS(1926), - [aux_sym_string_literal_token1] = ACTIONS(1926), - [sym_char_literal] = ACTIONS(1926), - [anon_sym_true] = ACTIONS(1928), - [anon_sym_false] = ACTIONS(1928), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1928), - [sym_super] = ACTIONS(1928), - [sym_crate] = ACTIONS(1928), - [sym_metavariable] = ACTIONS(1926), - [sym__raw_string_literal_start] = ACTIONS(1926), - [sym_float_literal] = ACTIONS(1926), + [ts_builtin_sym_end] = ACTIONS(2059), + [sym_identifier] = ACTIONS(2061), + [anon_sym_SEMI] = ACTIONS(2059), + [anon_sym_macro_rules_BANG] = ACTIONS(2059), + [anon_sym_LPAREN] = ACTIONS(2059), + [anon_sym_LBRACK] = ACTIONS(2059), + [anon_sym_LBRACE] = ACTIONS(2059), + [anon_sym_RBRACE] = ACTIONS(2059), + [anon_sym_macro] = ACTIONS(2061), + [anon_sym_STAR] = ACTIONS(2059), + [anon_sym_u8] = ACTIONS(2061), + [anon_sym_i8] = ACTIONS(2061), + [anon_sym_u16] = ACTIONS(2061), + [anon_sym_i16] = ACTIONS(2061), + [anon_sym_u32] = ACTIONS(2061), + [anon_sym_i32] = ACTIONS(2061), + [anon_sym_u64] = ACTIONS(2061), + [anon_sym_i64] = ACTIONS(2061), + [anon_sym_u128] = ACTIONS(2061), + [anon_sym_i128] = ACTIONS(2061), + [anon_sym_isize] = ACTIONS(2061), + [anon_sym_usize] = ACTIONS(2061), + [anon_sym_f32] = ACTIONS(2061), + [anon_sym_f64] = ACTIONS(2061), + [anon_sym_bool] = ACTIONS(2061), + [anon_sym_str] = ACTIONS(2061), + [anon_sym_char] = ACTIONS(2061), + [anon_sym_DASH] = ACTIONS(2059), + [anon_sym_BANG] = ACTIONS(2059), + [anon_sym_AMP] = ACTIONS(2059), + [anon_sym_PIPE] = ACTIONS(2059), + [anon_sym_LT] = ACTIONS(2059), + [anon_sym_DOT_DOT] = ACTIONS(2059), + [anon_sym_COLON_COLON] = ACTIONS(2059), + [anon_sym_POUND] = ACTIONS(2059), + [anon_sym_SQUOTE] = ACTIONS(2061), + [anon_sym_async] = ACTIONS(2061), + [anon_sym_break] = ACTIONS(2061), + [anon_sym_const] = ACTIONS(2061), + [anon_sym_continue] = ACTIONS(2061), + [anon_sym_default] = ACTIONS(2061), + [anon_sym_enum] = ACTIONS(2061), + [anon_sym_fn] = ACTIONS(2061), + [anon_sym_for] = ACTIONS(2061), + [anon_sym_if] = ACTIONS(2061), + [anon_sym_impl] = ACTIONS(2061), + [anon_sym_let] = ACTIONS(2061), + [anon_sym_loop] = ACTIONS(2061), + [anon_sym_match] = ACTIONS(2061), + [anon_sym_mod] = ACTIONS(2061), + [anon_sym_pub] = ACTIONS(2061), + [anon_sym_return] = ACTIONS(2061), + [anon_sym_static] = ACTIONS(2061), + [anon_sym_struct] = ACTIONS(2061), + [anon_sym_trait] = ACTIONS(2061), + [anon_sym_type] = ACTIONS(2061), + [anon_sym_union] = ACTIONS(2061), + [anon_sym_unsafe] = ACTIONS(2061), + [anon_sym_use] = ACTIONS(2061), + [anon_sym_while] = ACTIONS(2061), + [anon_sym_extern] = ACTIONS(2061), + [anon_sym_yield] = ACTIONS(2061), + [anon_sym_move] = ACTIONS(2061), + [anon_sym_try] = ACTIONS(2061), + [sym_integer_literal] = ACTIONS(2059), + [aux_sym_string_literal_token1] = ACTIONS(2059), + [sym_char_literal] = ACTIONS(2059), + [anon_sym_true] = ACTIONS(2061), + [anon_sym_false] = ACTIONS(2061), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2061), + [sym_super] = ACTIONS(2061), + [sym_crate] = ACTIONS(2061), + [sym_metavariable] = ACTIONS(2059), + [sym__raw_string_literal_start] = ACTIONS(2059), + [sym_float_literal] = ACTIONS(2059), }, [546] = { [sym_line_comment] = STATE(546), [sym_block_comment] = STATE(546), - [ts_builtin_sym_end] = ACTIONS(1930), - [sym_identifier] = ACTIONS(1932), - [anon_sym_SEMI] = ACTIONS(1930), - [anon_sym_macro_rules_BANG] = ACTIONS(1930), - [anon_sym_LPAREN] = ACTIONS(1930), - [anon_sym_LBRACK] = ACTIONS(1930), - [anon_sym_LBRACE] = ACTIONS(1930), - [anon_sym_RBRACE] = ACTIONS(1930), - [anon_sym_STAR] = ACTIONS(1930), - [anon_sym_u8] = ACTIONS(1932), - [anon_sym_i8] = ACTIONS(1932), - [anon_sym_u16] = ACTIONS(1932), - [anon_sym_i16] = ACTIONS(1932), - [anon_sym_u32] = ACTIONS(1932), - [anon_sym_i32] = ACTIONS(1932), - [anon_sym_u64] = ACTIONS(1932), - [anon_sym_i64] = ACTIONS(1932), - [anon_sym_u128] = ACTIONS(1932), - [anon_sym_i128] = ACTIONS(1932), - [anon_sym_isize] = ACTIONS(1932), - [anon_sym_usize] = ACTIONS(1932), - [anon_sym_f32] = ACTIONS(1932), - [anon_sym_f64] = ACTIONS(1932), - [anon_sym_bool] = ACTIONS(1932), - [anon_sym_str] = ACTIONS(1932), - [anon_sym_char] = ACTIONS(1932), - [anon_sym_DASH] = ACTIONS(1930), - [anon_sym_BANG] = ACTIONS(1930), - [anon_sym_AMP] = ACTIONS(1930), - [anon_sym_PIPE] = ACTIONS(1930), - [anon_sym_LT] = ACTIONS(1930), - [anon_sym_DOT_DOT] = ACTIONS(1930), - [anon_sym_COLON_COLON] = ACTIONS(1930), - [anon_sym_POUND] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1932), - [anon_sym_async] = ACTIONS(1932), - [anon_sym_break] = ACTIONS(1932), - [anon_sym_const] = ACTIONS(1932), - [anon_sym_continue] = ACTIONS(1932), - [anon_sym_default] = ACTIONS(1932), - [anon_sym_enum] = ACTIONS(1932), - [anon_sym_fn] = ACTIONS(1932), - [anon_sym_for] = ACTIONS(1932), - [anon_sym_if] = ACTIONS(1932), - [anon_sym_impl] = ACTIONS(1932), - [anon_sym_let] = ACTIONS(1932), - [anon_sym_loop] = ACTIONS(1932), - [anon_sym_match] = ACTIONS(1932), - [anon_sym_mod] = ACTIONS(1932), - [anon_sym_pub] = ACTIONS(1932), - [anon_sym_return] = ACTIONS(1932), - [anon_sym_static] = ACTIONS(1932), - [anon_sym_struct] = ACTIONS(1932), - [anon_sym_trait] = ACTIONS(1932), - [anon_sym_type] = ACTIONS(1932), - [anon_sym_union] = ACTIONS(1932), - [anon_sym_unsafe] = ACTIONS(1932), - [anon_sym_use] = ACTIONS(1932), - [anon_sym_while] = ACTIONS(1932), - [anon_sym_extern] = ACTIONS(1932), - [anon_sym_yield] = ACTIONS(1932), - [anon_sym_move] = ACTIONS(1932), - [anon_sym_try] = ACTIONS(1932), - [sym_integer_literal] = ACTIONS(1930), - [aux_sym_string_literal_token1] = ACTIONS(1930), - [sym_char_literal] = ACTIONS(1930), - [anon_sym_true] = ACTIONS(1932), - [anon_sym_false] = ACTIONS(1932), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1932), - [sym_super] = ACTIONS(1932), - [sym_crate] = ACTIONS(1932), - [sym_metavariable] = ACTIONS(1930), - [sym__raw_string_literal_start] = ACTIONS(1930), - [sym_float_literal] = ACTIONS(1930), + [ts_builtin_sym_end] = ACTIONS(2063), + [sym_identifier] = ACTIONS(2065), + [anon_sym_SEMI] = ACTIONS(2063), + [anon_sym_macro_rules_BANG] = ACTIONS(2063), + [anon_sym_LPAREN] = ACTIONS(2063), + [anon_sym_LBRACK] = ACTIONS(2063), + [anon_sym_LBRACE] = ACTIONS(2063), + [anon_sym_RBRACE] = ACTIONS(2063), + [anon_sym_macro] = ACTIONS(2065), + [anon_sym_STAR] = ACTIONS(2063), + [anon_sym_u8] = ACTIONS(2065), + [anon_sym_i8] = ACTIONS(2065), + [anon_sym_u16] = ACTIONS(2065), + [anon_sym_i16] = ACTIONS(2065), + [anon_sym_u32] = ACTIONS(2065), + [anon_sym_i32] = ACTIONS(2065), + [anon_sym_u64] = ACTIONS(2065), + [anon_sym_i64] = ACTIONS(2065), + [anon_sym_u128] = ACTIONS(2065), + [anon_sym_i128] = ACTIONS(2065), + [anon_sym_isize] = ACTIONS(2065), + [anon_sym_usize] = ACTIONS(2065), + [anon_sym_f32] = ACTIONS(2065), + [anon_sym_f64] = ACTIONS(2065), + [anon_sym_bool] = ACTIONS(2065), + [anon_sym_str] = ACTIONS(2065), + [anon_sym_char] = ACTIONS(2065), + [anon_sym_DASH] = ACTIONS(2063), + [anon_sym_BANG] = ACTIONS(2063), + [anon_sym_AMP] = ACTIONS(2063), + [anon_sym_PIPE] = ACTIONS(2063), + [anon_sym_LT] = ACTIONS(2063), + [anon_sym_DOT_DOT] = ACTIONS(2063), + [anon_sym_COLON_COLON] = ACTIONS(2063), + [anon_sym_POUND] = ACTIONS(2063), + [anon_sym_SQUOTE] = ACTIONS(2065), + [anon_sym_async] = ACTIONS(2065), + [anon_sym_break] = ACTIONS(2065), + [anon_sym_const] = ACTIONS(2065), + [anon_sym_continue] = ACTIONS(2065), + [anon_sym_default] = ACTIONS(2065), + [anon_sym_enum] = ACTIONS(2065), + [anon_sym_fn] = ACTIONS(2065), + [anon_sym_for] = ACTIONS(2065), + [anon_sym_if] = ACTIONS(2065), + [anon_sym_impl] = ACTIONS(2065), + [anon_sym_let] = ACTIONS(2065), + [anon_sym_loop] = ACTIONS(2065), + [anon_sym_match] = ACTIONS(2065), + [anon_sym_mod] = ACTIONS(2065), + [anon_sym_pub] = ACTIONS(2065), + [anon_sym_return] = ACTIONS(2065), + [anon_sym_static] = ACTIONS(2065), + [anon_sym_struct] = ACTIONS(2065), + [anon_sym_trait] = ACTIONS(2065), + [anon_sym_type] = ACTIONS(2065), + [anon_sym_union] = ACTIONS(2065), + [anon_sym_unsafe] = ACTIONS(2065), + [anon_sym_use] = ACTIONS(2065), + [anon_sym_while] = ACTIONS(2065), + [anon_sym_extern] = ACTIONS(2065), + [anon_sym_yield] = ACTIONS(2065), + [anon_sym_move] = ACTIONS(2065), + [anon_sym_try] = ACTIONS(2065), + [sym_integer_literal] = ACTIONS(2063), + [aux_sym_string_literal_token1] = ACTIONS(2063), + [sym_char_literal] = ACTIONS(2063), + [anon_sym_true] = ACTIONS(2065), + [anon_sym_false] = ACTIONS(2065), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2065), + [sym_super] = ACTIONS(2065), + [sym_crate] = ACTIONS(2065), + [sym_metavariable] = ACTIONS(2063), + [sym__raw_string_literal_start] = ACTIONS(2063), + [sym_float_literal] = ACTIONS(2063), }, [547] = { [sym_line_comment] = STATE(547), [sym_block_comment] = STATE(547), - [ts_builtin_sym_end] = ACTIONS(1934), - [sym_identifier] = ACTIONS(1936), - [anon_sym_SEMI] = ACTIONS(1934), - [anon_sym_macro_rules_BANG] = ACTIONS(1934), - [anon_sym_LPAREN] = ACTIONS(1934), - [anon_sym_LBRACK] = ACTIONS(1934), - [anon_sym_LBRACE] = ACTIONS(1934), - [anon_sym_RBRACE] = ACTIONS(1934), - [anon_sym_STAR] = ACTIONS(1934), - [anon_sym_u8] = ACTIONS(1936), - [anon_sym_i8] = ACTIONS(1936), - [anon_sym_u16] = ACTIONS(1936), - [anon_sym_i16] = ACTIONS(1936), - [anon_sym_u32] = ACTIONS(1936), - [anon_sym_i32] = ACTIONS(1936), - [anon_sym_u64] = ACTIONS(1936), - [anon_sym_i64] = ACTIONS(1936), - [anon_sym_u128] = ACTIONS(1936), - [anon_sym_i128] = ACTIONS(1936), - [anon_sym_isize] = ACTIONS(1936), - [anon_sym_usize] = ACTIONS(1936), - [anon_sym_f32] = ACTIONS(1936), - [anon_sym_f64] = ACTIONS(1936), - [anon_sym_bool] = ACTIONS(1936), - [anon_sym_str] = ACTIONS(1936), - [anon_sym_char] = ACTIONS(1936), - [anon_sym_DASH] = ACTIONS(1934), - [anon_sym_BANG] = ACTIONS(1934), - [anon_sym_AMP] = ACTIONS(1934), - [anon_sym_PIPE] = ACTIONS(1934), - [anon_sym_LT] = ACTIONS(1934), - [anon_sym_DOT_DOT] = ACTIONS(1934), - [anon_sym_COLON_COLON] = ACTIONS(1934), - [anon_sym_POUND] = ACTIONS(1934), - [anon_sym_SQUOTE] = ACTIONS(1936), - [anon_sym_async] = ACTIONS(1936), - [anon_sym_break] = ACTIONS(1936), - [anon_sym_const] = ACTIONS(1936), - [anon_sym_continue] = ACTIONS(1936), - [anon_sym_default] = ACTIONS(1936), - [anon_sym_enum] = ACTIONS(1936), - [anon_sym_fn] = ACTIONS(1936), - [anon_sym_for] = ACTIONS(1936), - [anon_sym_if] = ACTIONS(1936), - [anon_sym_impl] = ACTIONS(1936), - [anon_sym_let] = ACTIONS(1936), - [anon_sym_loop] = ACTIONS(1936), - [anon_sym_match] = ACTIONS(1936), - [anon_sym_mod] = ACTIONS(1936), - [anon_sym_pub] = ACTIONS(1936), - [anon_sym_return] = ACTIONS(1936), - [anon_sym_static] = ACTIONS(1936), - [anon_sym_struct] = ACTIONS(1936), - [anon_sym_trait] = ACTIONS(1936), - [anon_sym_type] = ACTIONS(1936), - [anon_sym_union] = ACTIONS(1936), - [anon_sym_unsafe] = ACTIONS(1936), - [anon_sym_use] = ACTIONS(1936), - [anon_sym_while] = ACTIONS(1936), - [anon_sym_extern] = ACTIONS(1936), - [anon_sym_yield] = ACTIONS(1936), - [anon_sym_move] = ACTIONS(1936), - [anon_sym_try] = ACTIONS(1936), - [sym_integer_literal] = ACTIONS(1934), - [aux_sym_string_literal_token1] = ACTIONS(1934), - [sym_char_literal] = ACTIONS(1934), - [anon_sym_true] = ACTIONS(1936), - [anon_sym_false] = ACTIONS(1936), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1936), - [sym_super] = ACTIONS(1936), - [sym_crate] = ACTIONS(1936), - [sym_metavariable] = ACTIONS(1934), - [sym__raw_string_literal_start] = ACTIONS(1934), - [sym_float_literal] = ACTIONS(1934), + [ts_builtin_sym_end] = ACTIONS(2067), + [sym_identifier] = ACTIONS(2069), + [anon_sym_SEMI] = ACTIONS(2067), + [anon_sym_macro_rules_BANG] = ACTIONS(2067), + [anon_sym_LPAREN] = ACTIONS(2067), + [anon_sym_LBRACK] = ACTIONS(2067), + [anon_sym_LBRACE] = ACTIONS(2067), + [anon_sym_RBRACE] = ACTIONS(2067), + [anon_sym_macro] = ACTIONS(2069), + [anon_sym_STAR] = ACTIONS(2067), + [anon_sym_u8] = ACTIONS(2069), + [anon_sym_i8] = ACTIONS(2069), + [anon_sym_u16] = ACTIONS(2069), + [anon_sym_i16] = ACTIONS(2069), + [anon_sym_u32] = ACTIONS(2069), + [anon_sym_i32] = ACTIONS(2069), + [anon_sym_u64] = ACTIONS(2069), + [anon_sym_i64] = ACTIONS(2069), + [anon_sym_u128] = ACTIONS(2069), + [anon_sym_i128] = ACTIONS(2069), + [anon_sym_isize] = ACTIONS(2069), + [anon_sym_usize] = ACTIONS(2069), + [anon_sym_f32] = ACTIONS(2069), + [anon_sym_f64] = ACTIONS(2069), + [anon_sym_bool] = ACTIONS(2069), + [anon_sym_str] = ACTIONS(2069), + [anon_sym_char] = ACTIONS(2069), + [anon_sym_DASH] = ACTIONS(2067), + [anon_sym_BANG] = ACTIONS(2067), + [anon_sym_AMP] = ACTIONS(2067), + [anon_sym_PIPE] = ACTIONS(2067), + [anon_sym_LT] = ACTIONS(2067), + [anon_sym_DOT_DOT] = ACTIONS(2067), + [anon_sym_COLON_COLON] = ACTIONS(2067), + [anon_sym_POUND] = ACTIONS(2067), + [anon_sym_SQUOTE] = ACTIONS(2069), + [anon_sym_async] = ACTIONS(2069), + [anon_sym_break] = ACTIONS(2069), + [anon_sym_const] = ACTIONS(2069), + [anon_sym_continue] = ACTIONS(2069), + [anon_sym_default] = ACTIONS(2069), + [anon_sym_enum] = ACTIONS(2069), + [anon_sym_fn] = ACTIONS(2069), + [anon_sym_for] = ACTIONS(2069), + [anon_sym_if] = ACTIONS(2069), + [anon_sym_impl] = ACTIONS(2069), + [anon_sym_let] = ACTIONS(2069), + [anon_sym_loop] = ACTIONS(2069), + [anon_sym_match] = ACTIONS(2069), + [anon_sym_mod] = ACTIONS(2069), + [anon_sym_pub] = ACTIONS(2069), + [anon_sym_return] = ACTIONS(2069), + [anon_sym_static] = ACTIONS(2069), + [anon_sym_struct] = ACTIONS(2069), + [anon_sym_trait] = ACTIONS(2069), + [anon_sym_type] = ACTIONS(2069), + [anon_sym_union] = ACTIONS(2069), + [anon_sym_unsafe] = ACTIONS(2069), + [anon_sym_use] = ACTIONS(2069), + [anon_sym_while] = ACTIONS(2069), + [anon_sym_extern] = ACTIONS(2069), + [anon_sym_yield] = ACTIONS(2069), + [anon_sym_move] = ACTIONS(2069), + [anon_sym_try] = ACTIONS(2069), + [sym_integer_literal] = ACTIONS(2067), + [aux_sym_string_literal_token1] = ACTIONS(2067), + [sym_char_literal] = ACTIONS(2067), + [anon_sym_true] = ACTIONS(2069), + [anon_sym_false] = ACTIONS(2069), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2069), + [sym_super] = ACTIONS(2069), + [sym_crate] = ACTIONS(2069), + [sym_metavariable] = ACTIONS(2067), + [sym__raw_string_literal_start] = ACTIONS(2067), + [sym_float_literal] = ACTIONS(2067), }, [548] = { [sym_line_comment] = STATE(548), [sym_block_comment] = STATE(548), - [ts_builtin_sym_end] = ACTIONS(1938), - [sym_identifier] = ACTIONS(1940), - [anon_sym_SEMI] = ACTIONS(1938), - [anon_sym_macro_rules_BANG] = ACTIONS(1938), - [anon_sym_LPAREN] = ACTIONS(1938), - [anon_sym_LBRACK] = ACTIONS(1938), - [anon_sym_LBRACE] = ACTIONS(1938), - [anon_sym_RBRACE] = ACTIONS(1938), - [anon_sym_STAR] = ACTIONS(1938), - [anon_sym_u8] = ACTIONS(1940), - [anon_sym_i8] = ACTIONS(1940), - [anon_sym_u16] = ACTIONS(1940), - [anon_sym_i16] = ACTIONS(1940), - [anon_sym_u32] = ACTIONS(1940), - [anon_sym_i32] = ACTIONS(1940), - [anon_sym_u64] = ACTIONS(1940), - [anon_sym_i64] = ACTIONS(1940), - [anon_sym_u128] = ACTIONS(1940), - [anon_sym_i128] = ACTIONS(1940), - [anon_sym_isize] = ACTIONS(1940), - [anon_sym_usize] = ACTIONS(1940), - [anon_sym_f32] = ACTIONS(1940), - [anon_sym_f64] = ACTIONS(1940), - [anon_sym_bool] = ACTIONS(1940), - [anon_sym_str] = ACTIONS(1940), - [anon_sym_char] = ACTIONS(1940), - [anon_sym_DASH] = ACTIONS(1938), - [anon_sym_BANG] = ACTIONS(1938), - [anon_sym_AMP] = ACTIONS(1938), - [anon_sym_PIPE] = ACTIONS(1938), - [anon_sym_LT] = ACTIONS(1938), - [anon_sym_DOT_DOT] = ACTIONS(1938), - [anon_sym_COLON_COLON] = ACTIONS(1938), - [anon_sym_POUND] = ACTIONS(1938), - [anon_sym_SQUOTE] = ACTIONS(1940), - [anon_sym_async] = ACTIONS(1940), - [anon_sym_break] = ACTIONS(1940), - [anon_sym_const] = ACTIONS(1940), - [anon_sym_continue] = ACTIONS(1940), - [anon_sym_default] = ACTIONS(1940), - [anon_sym_enum] = ACTIONS(1940), - [anon_sym_fn] = ACTIONS(1940), - [anon_sym_for] = ACTIONS(1940), - [anon_sym_if] = ACTIONS(1940), - [anon_sym_impl] = ACTIONS(1940), - [anon_sym_let] = ACTIONS(1940), - [anon_sym_loop] = ACTIONS(1940), - [anon_sym_match] = ACTIONS(1940), - [anon_sym_mod] = ACTIONS(1940), - [anon_sym_pub] = ACTIONS(1940), - [anon_sym_return] = ACTIONS(1940), - [anon_sym_static] = ACTIONS(1940), - [anon_sym_struct] = ACTIONS(1940), - [anon_sym_trait] = ACTIONS(1940), - [anon_sym_type] = ACTIONS(1940), - [anon_sym_union] = ACTIONS(1940), - [anon_sym_unsafe] = ACTIONS(1940), - [anon_sym_use] = ACTIONS(1940), - [anon_sym_while] = ACTIONS(1940), - [anon_sym_extern] = ACTIONS(1940), - [anon_sym_yield] = ACTIONS(1940), - [anon_sym_move] = ACTIONS(1940), - [anon_sym_try] = ACTIONS(1940), - [sym_integer_literal] = ACTIONS(1938), - [aux_sym_string_literal_token1] = ACTIONS(1938), - [sym_char_literal] = ACTIONS(1938), - [anon_sym_true] = ACTIONS(1940), - [anon_sym_false] = ACTIONS(1940), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1940), - [sym_super] = ACTIONS(1940), - [sym_crate] = ACTIONS(1940), - [sym_metavariable] = ACTIONS(1938), - [sym__raw_string_literal_start] = ACTIONS(1938), - [sym_float_literal] = ACTIONS(1938), + [ts_builtin_sym_end] = ACTIONS(2071), + [sym_identifier] = ACTIONS(2073), + [anon_sym_SEMI] = ACTIONS(2071), + [anon_sym_macro_rules_BANG] = ACTIONS(2071), + [anon_sym_LPAREN] = ACTIONS(2071), + [anon_sym_LBRACK] = ACTIONS(2071), + [anon_sym_LBRACE] = ACTIONS(2071), + [anon_sym_RBRACE] = ACTIONS(2071), + [anon_sym_macro] = ACTIONS(2073), + [anon_sym_STAR] = ACTIONS(2071), + [anon_sym_u8] = ACTIONS(2073), + [anon_sym_i8] = ACTIONS(2073), + [anon_sym_u16] = ACTIONS(2073), + [anon_sym_i16] = ACTIONS(2073), + [anon_sym_u32] = ACTIONS(2073), + [anon_sym_i32] = ACTIONS(2073), + [anon_sym_u64] = ACTIONS(2073), + [anon_sym_i64] = ACTIONS(2073), + [anon_sym_u128] = ACTIONS(2073), + [anon_sym_i128] = ACTIONS(2073), + [anon_sym_isize] = ACTIONS(2073), + [anon_sym_usize] = ACTIONS(2073), + [anon_sym_f32] = ACTIONS(2073), + [anon_sym_f64] = ACTIONS(2073), + [anon_sym_bool] = ACTIONS(2073), + [anon_sym_str] = ACTIONS(2073), + [anon_sym_char] = ACTIONS(2073), + [anon_sym_DASH] = ACTIONS(2071), + [anon_sym_BANG] = ACTIONS(2071), + [anon_sym_AMP] = ACTIONS(2071), + [anon_sym_PIPE] = ACTIONS(2071), + [anon_sym_LT] = ACTIONS(2071), + [anon_sym_DOT_DOT] = ACTIONS(2071), + [anon_sym_COLON_COLON] = ACTIONS(2071), + [anon_sym_POUND] = ACTIONS(2071), + [anon_sym_SQUOTE] = ACTIONS(2073), + [anon_sym_async] = ACTIONS(2073), + [anon_sym_break] = ACTIONS(2073), + [anon_sym_const] = ACTIONS(2073), + [anon_sym_continue] = ACTIONS(2073), + [anon_sym_default] = ACTIONS(2073), + [anon_sym_enum] = ACTIONS(2073), + [anon_sym_fn] = ACTIONS(2073), + [anon_sym_for] = ACTIONS(2073), + [anon_sym_if] = ACTIONS(2073), + [anon_sym_impl] = ACTIONS(2073), + [anon_sym_let] = ACTIONS(2073), + [anon_sym_loop] = ACTIONS(2073), + [anon_sym_match] = ACTIONS(2073), + [anon_sym_mod] = ACTIONS(2073), + [anon_sym_pub] = ACTIONS(2073), + [anon_sym_return] = ACTIONS(2073), + [anon_sym_static] = ACTIONS(2073), + [anon_sym_struct] = ACTIONS(2073), + [anon_sym_trait] = ACTIONS(2073), + [anon_sym_type] = ACTIONS(2073), + [anon_sym_union] = ACTIONS(2073), + [anon_sym_unsafe] = ACTIONS(2073), + [anon_sym_use] = ACTIONS(2073), + [anon_sym_while] = ACTIONS(2073), + [anon_sym_extern] = ACTIONS(2073), + [anon_sym_yield] = ACTIONS(2073), + [anon_sym_move] = ACTIONS(2073), + [anon_sym_try] = ACTIONS(2073), + [sym_integer_literal] = ACTIONS(2071), + [aux_sym_string_literal_token1] = ACTIONS(2071), + [sym_char_literal] = ACTIONS(2071), + [anon_sym_true] = ACTIONS(2073), + [anon_sym_false] = ACTIONS(2073), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2073), + [sym_super] = ACTIONS(2073), + [sym_crate] = ACTIONS(2073), + [sym_metavariable] = ACTIONS(2071), + [sym__raw_string_literal_start] = ACTIONS(2071), + [sym_float_literal] = ACTIONS(2071), }, [549] = { [sym_line_comment] = STATE(549), [sym_block_comment] = STATE(549), - [ts_builtin_sym_end] = ACTIONS(1942), - [sym_identifier] = ACTIONS(1944), - [anon_sym_SEMI] = ACTIONS(1942), - [anon_sym_macro_rules_BANG] = ACTIONS(1942), - [anon_sym_LPAREN] = ACTIONS(1942), - [anon_sym_LBRACK] = ACTIONS(1942), - [anon_sym_LBRACE] = ACTIONS(1942), - [anon_sym_RBRACE] = ACTIONS(1942), - [anon_sym_STAR] = ACTIONS(1942), - [anon_sym_u8] = ACTIONS(1944), - [anon_sym_i8] = ACTIONS(1944), - [anon_sym_u16] = ACTIONS(1944), - [anon_sym_i16] = ACTIONS(1944), - [anon_sym_u32] = ACTIONS(1944), - [anon_sym_i32] = ACTIONS(1944), - [anon_sym_u64] = ACTIONS(1944), - [anon_sym_i64] = ACTIONS(1944), - [anon_sym_u128] = ACTIONS(1944), - [anon_sym_i128] = ACTIONS(1944), - [anon_sym_isize] = ACTIONS(1944), - [anon_sym_usize] = ACTIONS(1944), - [anon_sym_f32] = ACTIONS(1944), - [anon_sym_f64] = ACTIONS(1944), - [anon_sym_bool] = ACTIONS(1944), - [anon_sym_str] = ACTIONS(1944), - [anon_sym_char] = ACTIONS(1944), - [anon_sym_DASH] = ACTIONS(1942), - [anon_sym_BANG] = ACTIONS(1942), - [anon_sym_AMP] = ACTIONS(1942), - [anon_sym_PIPE] = ACTIONS(1942), - [anon_sym_LT] = ACTIONS(1942), - [anon_sym_DOT_DOT] = ACTIONS(1942), - [anon_sym_COLON_COLON] = ACTIONS(1942), - [anon_sym_POUND] = ACTIONS(1942), - [anon_sym_SQUOTE] = ACTIONS(1944), - [anon_sym_async] = ACTIONS(1944), - [anon_sym_break] = ACTIONS(1944), - [anon_sym_const] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(1944), - [anon_sym_default] = ACTIONS(1944), - [anon_sym_enum] = ACTIONS(1944), - [anon_sym_fn] = ACTIONS(1944), - [anon_sym_for] = ACTIONS(1944), - [anon_sym_if] = ACTIONS(1944), - [anon_sym_impl] = ACTIONS(1944), - [anon_sym_let] = ACTIONS(1944), - [anon_sym_loop] = ACTIONS(1944), - [anon_sym_match] = ACTIONS(1944), - [anon_sym_mod] = ACTIONS(1944), - [anon_sym_pub] = ACTIONS(1944), - [anon_sym_return] = ACTIONS(1944), - [anon_sym_static] = ACTIONS(1944), - [anon_sym_struct] = ACTIONS(1944), - [anon_sym_trait] = ACTIONS(1944), - [anon_sym_type] = ACTIONS(1944), - [anon_sym_union] = ACTIONS(1944), - [anon_sym_unsafe] = ACTIONS(1944), - [anon_sym_use] = ACTIONS(1944), - [anon_sym_while] = ACTIONS(1944), - [anon_sym_extern] = ACTIONS(1944), - [anon_sym_yield] = ACTIONS(1944), - [anon_sym_move] = ACTIONS(1944), - [anon_sym_try] = ACTIONS(1944), - [sym_integer_literal] = ACTIONS(1942), - [aux_sym_string_literal_token1] = ACTIONS(1942), - [sym_char_literal] = ACTIONS(1942), - [anon_sym_true] = ACTIONS(1944), - [anon_sym_false] = ACTIONS(1944), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1944), - [sym_super] = ACTIONS(1944), - [sym_crate] = ACTIONS(1944), - [sym_metavariable] = ACTIONS(1942), - [sym__raw_string_literal_start] = ACTIONS(1942), - [sym_float_literal] = ACTIONS(1942), + [ts_builtin_sym_end] = ACTIONS(2075), + [sym_identifier] = ACTIONS(2077), + [anon_sym_SEMI] = ACTIONS(2075), + [anon_sym_macro_rules_BANG] = ACTIONS(2075), + [anon_sym_LPAREN] = ACTIONS(2075), + [anon_sym_LBRACK] = ACTIONS(2075), + [anon_sym_LBRACE] = ACTIONS(2075), + [anon_sym_RBRACE] = ACTIONS(2075), + [anon_sym_macro] = ACTIONS(2077), + [anon_sym_STAR] = ACTIONS(2075), + [anon_sym_u8] = ACTIONS(2077), + [anon_sym_i8] = ACTIONS(2077), + [anon_sym_u16] = ACTIONS(2077), + [anon_sym_i16] = ACTIONS(2077), + [anon_sym_u32] = ACTIONS(2077), + [anon_sym_i32] = ACTIONS(2077), + [anon_sym_u64] = ACTIONS(2077), + [anon_sym_i64] = ACTIONS(2077), + [anon_sym_u128] = ACTIONS(2077), + [anon_sym_i128] = ACTIONS(2077), + [anon_sym_isize] = ACTIONS(2077), + [anon_sym_usize] = ACTIONS(2077), + [anon_sym_f32] = ACTIONS(2077), + [anon_sym_f64] = ACTIONS(2077), + [anon_sym_bool] = ACTIONS(2077), + [anon_sym_str] = ACTIONS(2077), + [anon_sym_char] = ACTIONS(2077), + [anon_sym_DASH] = ACTIONS(2075), + [anon_sym_BANG] = ACTIONS(2075), + [anon_sym_AMP] = ACTIONS(2075), + [anon_sym_PIPE] = ACTIONS(2075), + [anon_sym_LT] = ACTIONS(2075), + [anon_sym_DOT_DOT] = ACTIONS(2075), + [anon_sym_COLON_COLON] = ACTIONS(2075), + [anon_sym_POUND] = ACTIONS(2075), + [anon_sym_SQUOTE] = ACTIONS(2077), + [anon_sym_async] = ACTIONS(2077), + [anon_sym_break] = ACTIONS(2077), + [anon_sym_const] = ACTIONS(2077), + [anon_sym_continue] = ACTIONS(2077), + [anon_sym_default] = ACTIONS(2077), + [anon_sym_enum] = ACTIONS(2077), + [anon_sym_fn] = ACTIONS(2077), + [anon_sym_for] = ACTIONS(2077), + [anon_sym_if] = ACTIONS(2077), + [anon_sym_impl] = ACTIONS(2077), + [anon_sym_let] = ACTIONS(2077), + [anon_sym_loop] = ACTIONS(2077), + [anon_sym_match] = ACTIONS(2077), + [anon_sym_mod] = ACTIONS(2077), + [anon_sym_pub] = ACTIONS(2077), + [anon_sym_return] = ACTIONS(2077), + [anon_sym_static] = ACTIONS(2077), + [anon_sym_struct] = ACTIONS(2077), + [anon_sym_trait] = ACTIONS(2077), + [anon_sym_type] = ACTIONS(2077), + [anon_sym_union] = ACTIONS(2077), + [anon_sym_unsafe] = ACTIONS(2077), + [anon_sym_use] = ACTIONS(2077), + [anon_sym_while] = ACTIONS(2077), + [anon_sym_extern] = ACTIONS(2077), + [anon_sym_yield] = ACTIONS(2077), + [anon_sym_move] = ACTIONS(2077), + [anon_sym_try] = ACTIONS(2077), + [sym_integer_literal] = ACTIONS(2075), + [aux_sym_string_literal_token1] = ACTIONS(2075), + [sym_char_literal] = ACTIONS(2075), + [anon_sym_true] = ACTIONS(2077), + [anon_sym_false] = ACTIONS(2077), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2077), + [sym_super] = ACTIONS(2077), + [sym_crate] = ACTIONS(2077), + [sym_metavariable] = ACTIONS(2075), + [sym__raw_string_literal_start] = ACTIONS(2075), + [sym_float_literal] = ACTIONS(2075), }, [550] = { [sym_line_comment] = STATE(550), [sym_block_comment] = STATE(550), - [ts_builtin_sym_end] = ACTIONS(1946), - [sym_identifier] = ACTIONS(1948), - [anon_sym_SEMI] = ACTIONS(1946), - [anon_sym_macro_rules_BANG] = ACTIONS(1946), - [anon_sym_LPAREN] = ACTIONS(1946), - [anon_sym_LBRACK] = ACTIONS(1946), - [anon_sym_LBRACE] = ACTIONS(1946), - [anon_sym_RBRACE] = ACTIONS(1946), - [anon_sym_STAR] = ACTIONS(1946), - [anon_sym_u8] = ACTIONS(1948), - [anon_sym_i8] = ACTIONS(1948), - [anon_sym_u16] = ACTIONS(1948), - [anon_sym_i16] = ACTIONS(1948), - [anon_sym_u32] = ACTIONS(1948), - [anon_sym_i32] = ACTIONS(1948), - [anon_sym_u64] = ACTIONS(1948), - [anon_sym_i64] = ACTIONS(1948), - [anon_sym_u128] = ACTIONS(1948), - [anon_sym_i128] = ACTIONS(1948), - [anon_sym_isize] = ACTIONS(1948), - [anon_sym_usize] = ACTIONS(1948), - [anon_sym_f32] = ACTIONS(1948), - [anon_sym_f64] = ACTIONS(1948), - [anon_sym_bool] = ACTIONS(1948), - [anon_sym_str] = ACTIONS(1948), - [anon_sym_char] = ACTIONS(1948), - [anon_sym_DASH] = ACTIONS(1946), - [anon_sym_BANG] = ACTIONS(1946), - [anon_sym_AMP] = ACTIONS(1946), - [anon_sym_PIPE] = ACTIONS(1946), - [anon_sym_LT] = ACTIONS(1946), - [anon_sym_DOT_DOT] = ACTIONS(1946), - [anon_sym_COLON_COLON] = ACTIONS(1946), - [anon_sym_POUND] = ACTIONS(1946), - [anon_sym_SQUOTE] = ACTIONS(1948), - [anon_sym_async] = ACTIONS(1948), - [anon_sym_break] = ACTIONS(1948), - [anon_sym_const] = ACTIONS(1948), - [anon_sym_continue] = ACTIONS(1948), - [anon_sym_default] = ACTIONS(1948), - [anon_sym_enum] = ACTIONS(1948), - [anon_sym_fn] = ACTIONS(1948), - [anon_sym_for] = ACTIONS(1948), - [anon_sym_if] = ACTIONS(1948), - [anon_sym_impl] = ACTIONS(1948), - [anon_sym_let] = ACTIONS(1948), - [anon_sym_loop] = ACTIONS(1948), - [anon_sym_match] = ACTIONS(1948), - [anon_sym_mod] = ACTIONS(1948), - [anon_sym_pub] = ACTIONS(1948), - [anon_sym_return] = ACTIONS(1948), - [anon_sym_static] = ACTIONS(1948), - [anon_sym_struct] = ACTIONS(1948), - [anon_sym_trait] = ACTIONS(1948), - [anon_sym_type] = ACTIONS(1948), - [anon_sym_union] = ACTIONS(1948), - [anon_sym_unsafe] = ACTIONS(1948), - [anon_sym_use] = ACTIONS(1948), - [anon_sym_while] = ACTIONS(1948), - [anon_sym_extern] = ACTIONS(1948), - [anon_sym_yield] = ACTIONS(1948), - [anon_sym_move] = ACTIONS(1948), - [anon_sym_try] = ACTIONS(1948), - [sym_integer_literal] = ACTIONS(1946), - [aux_sym_string_literal_token1] = ACTIONS(1946), - [sym_char_literal] = ACTIONS(1946), - [anon_sym_true] = ACTIONS(1948), - [anon_sym_false] = ACTIONS(1948), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1948), - [sym_super] = ACTIONS(1948), - [sym_crate] = ACTIONS(1948), - [sym_metavariable] = ACTIONS(1946), - [sym__raw_string_literal_start] = ACTIONS(1946), - [sym_float_literal] = ACTIONS(1946), + [ts_builtin_sym_end] = ACTIONS(2079), + [sym_identifier] = ACTIONS(2081), + [anon_sym_SEMI] = ACTIONS(2079), + [anon_sym_macro_rules_BANG] = ACTIONS(2079), + [anon_sym_LPAREN] = ACTIONS(2079), + [anon_sym_LBRACK] = ACTIONS(2079), + [anon_sym_LBRACE] = ACTIONS(2079), + [anon_sym_RBRACE] = ACTIONS(2079), + [anon_sym_macro] = ACTIONS(2081), + [anon_sym_STAR] = ACTIONS(2079), + [anon_sym_u8] = ACTIONS(2081), + [anon_sym_i8] = ACTIONS(2081), + [anon_sym_u16] = ACTIONS(2081), + [anon_sym_i16] = ACTIONS(2081), + [anon_sym_u32] = ACTIONS(2081), + [anon_sym_i32] = ACTIONS(2081), + [anon_sym_u64] = ACTIONS(2081), + [anon_sym_i64] = ACTIONS(2081), + [anon_sym_u128] = ACTIONS(2081), + [anon_sym_i128] = ACTIONS(2081), + [anon_sym_isize] = ACTIONS(2081), + [anon_sym_usize] = ACTIONS(2081), + [anon_sym_f32] = ACTIONS(2081), + [anon_sym_f64] = ACTIONS(2081), + [anon_sym_bool] = ACTIONS(2081), + [anon_sym_str] = ACTIONS(2081), + [anon_sym_char] = ACTIONS(2081), + [anon_sym_DASH] = ACTIONS(2079), + [anon_sym_BANG] = ACTIONS(2079), + [anon_sym_AMP] = ACTIONS(2079), + [anon_sym_PIPE] = ACTIONS(2079), + [anon_sym_LT] = ACTIONS(2079), + [anon_sym_DOT_DOT] = ACTIONS(2079), + [anon_sym_COLON_COLON] = ACTIONS(2079), + [anon_sym_POUND] = ACTIONS(2079), + [anon_sym_SQUOTE] = ACTIONS(2081), + [anon_sym_async] = ACTIONS(2081), + [anon_sym_break] = ACTIONS(2081), + [anon_sym_const] = ACTIONS(2081), + [anon_sym_continue] = ACTIONS(2081), + [anon_sym_default] = ACTIONS(2081), + [anon_sym_enum] = ACTIONS(2081), + [anon_sym_fn] = ACTIONS(2081), + [anon_sym_for] = ACTIONS(2081), + [anon_sym_if] = ACTIONS(2081), + [anon_sym_impl] = ACTIONS(2081), + [anon_sym_let] = ACTIONS(2081), + [anon_sym_loop] = ACTIONS(2081), + [anon_sym_match] = ACTIONS(2081), + [anon_sym_mod] = ACTIONS(2081), + [anon_sym_pub] = ACTIONS(2081), + [anon_sym_return] = ACTIONS(2081), + [anon_sym_static] = ACTIONS(2081), + [anon_sym_struct] = ACTIONS(2081), + [anon_sym_trait] = ACTIONS(2081), + [anon_sym_type] = ACTIONS(2081), + [anon_sym_union] = ACTIONS(2081), + [anon_sym_unsafe] = ACTIONS(2081), + [anon_sym_use] = ACTIONS(2081), + [anon_sym_while] = ACTIONS(2081), + [anon_sym_extern] = ACTIONS(2081), + [anon_sym_yield] = ACTIONS(2081), + [anon_sym_move] = ACTIONS(2081), + [anon_sym_try] = ACTIONS(2081), + [sym_integer_literal] = ACTIONS(2079), + [aux_sym_string_literal_token1] = ACTIONS(2079), + [sym_char_literal] = ACTIONS(2079), + [anon_sym_true] = ACTIONS(2081), + [anon_sym_false] = ACTIONS(2081), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2081), + [sym_super] = ACTIONS(2081), + [sym_crate] = ACTIONS(2081), + [sym_metavariable] = ACTIONS(2079), + [sym__raw_string_literal_start] = ACTIONS(2079), + [sym_float_literal] = ACTIONS(2079), }, [551] = { [sym_line_comment] = STATE(551), [sym_block_comment] = STATE(551), - [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_LBRACK] = ACTIONS(1950), - [anon_sym_LBRACE] = ACTIONS(1950), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(1950), - [anon_sym_BANG] = ACTIONS(1950), - [anon_sym_AMP] = ACTIONS(1950), - [anon_sym_PIPE] = ACTIONS(1950), - [anon_sym_LT] = ACTIONS(1950), - [anon_sym_DOT_DOT] = ACTIONS(1950), - [anon_sym_COLON_COLON] = ACTIONS(1950), - [anon_sym_POUND] = ACTIONS(1950), - [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_extern] = ACTIONS(1952), - [anon_sym_yield] = ACTIONS(1952), - [anon_sym_move] = ACTIONS(1952), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1952), - [sym_super] = ACTIONS(1952), - [sym_crate] = ACTIONS(1952), - [sym_metavariable] = ACTIONS(1950), - [sym__raw_string_literal_start] = ACTIONS(1950), - [sym_float_literal] = ACTIONS(1950), + [ts_builtin_sym_end] = ACTIONS(2083), + [sym_identifier] = ACTIONS(2085), + [anon_sym_SEMI] = ACTIONS(2083), + [anon_sym_macro_rules_BANG] = ACTIONS(2083), + [anon_sym_LPAREN] = ACTIONS(2083), + [anon_sym_LBRACK] = ACTIONS(2083), + [anon_sym_LBRACE] = ACTIONS(2083), + [anon_sym_RBRACE] = ACTIONS(2083), + [anon_sym_macro] = ACTIONS(2085), + [anon_sym_STAR] = ACTIONS(2083), + [anon_sym_u8] = ACTIONS(2085), + [anon_sym_i8] = ACTIONS(2085), + [anon_sym_u16] = ACTIONS(2085), + [anon_sym_i16] = ACTIONS(2085), + [anon_sym_u32] = ACTIONS(2085), + [anon_sym_i32] = ACTIONS(2085), + [anon_sym_u64] = ACTIONS(2085), + [anon_sym_i64] = ACTIONS(2085), + [anon_sym_u128] = ACTIONS(2085), + [anon_sym_i128] = ACTIONS(2085), + [anon_sym_isize] = ACTIONS(2085), + [anon_sym_usize] = ACTIONS(2085), + [anon_sym_f32] = ACTIONS(2085), + [anon_sym_f64] = ACTIONS(2085), + [anon_sym_bool] = ACTIONS(2085), + [anon_sym_str] = ACTIONS(2085), + [anon_sym_char] = ACTIONS(2085), + [anon_sym_DASH] = ACTIONS(2083), + [anon_sym_BANG] = ACTIONS(2083), + [anon_sym_AMP] = ACTIONS(2083), + [anon_sym_PIPE] = ACTIONS(2083), + [anon_sym_LT] = ACTIONS(2083), + [anon_sym_DOT_DOT] = ACTIONS(2083), + [anon_sym_COLON_COLON] = ACTIONS(2083), + [anon_sym_POUND] = ACTIONS(2083), + [anon_sym_SQUOTE] = ACTIONS(2085), + [anon_sym_async] = ACTIONS(2085), + [anon_sym_break] = ACTIONS(2085), + [anon_sym_const] = ACTIONS(2085), + [anon_sym_continue] = ACTIONS(2085), + [anon_sym_default] = ACTIONS(2085), + [anon_sym_enum] = ACTIONS(2085), + [anon_sym_fn] = ACTIONS(2085), + [anon_sym_for] = ACTIONS(2085), + [anon_sym_if] = ACTIONS(2085), + [anon_sym_impl] = ACTIONS(2085), + [anon_sym_let] = ACTIONS(2085), + [anon_sym_loop] = ACTIONS(2085), + [anon_sym_match] = ACTIONS(2085), + [anon_sym_mod] = ACTIONS(2085), + [anon_sym_pub] = ACTIONS(2085), + [anon_sym_return] = ACTIONS(2085), + [anon_sym_static] = ACTIONS(2085), + [anon_sym_struct] = ACTIONS(2085), + [anon_sym_trait] = ACTIONS(2085), + [anon_sym_type] = ACTIONS(2085), + [anon_sym_union] = ACTIONS(2085), + [anon_sym_unsafe] = ACTIONS(2085), + [anon_sym_use] = ACTIONS(2085), + [anon_sym_while] = ACTIONS(2085), + [anon_sym_extern] = ACTIONS(2085), + [anon_sym_yield] = ACTIONS(2085), + [anon_sym_move] = ACTIONS(2085), + [anon_sym_try] = ACTIONS(2085), + [sym_integer_literal] = ACTIONS(2083), + [aux_sym_string_literal_token1] = ACTIONS(2083), + [sym_char_literal] = ACTIONS(2083), + [anon_sym_true] = ACTIONS(2085), + [anon_sym_false] = ACTIONS(2085), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2085), + [sym_super] = ACTIONS(2085), + [sym_crate] = ACTIONS(2085), + [sym_metavariable] = ACTIONS(2083), + [sym__raw_string_literal_start] = ACTIONS(2083), + [sym_float_literal] = ACTIONS(2083), }, [552] = { [sym_line_comment] = STATE(552), [sym_block_comment] = STATE(552), - [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_LBRACK] = ACTIONS(1954), - [anon_sym_LBRACE] = ACTIONS(1954), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(1954), - [anon_sym_BANG] = ACTIONS(1954), - [anon_sym_AMP] = ACTIONS(1954), - [anon_sym_PIPE] = ACTIONS(1954), - [anon_sym_LT] = ACTIONS(1954), - [anon_sym_DOT_DOT] = ACTIONS(1954), - [anon_sym_COLON_COLON] = ACTIONS(1954), - [anon_sym_POUND] = ACTIONS(1954), - [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_extern] = ACTIONS(1956), - [anon_sym_yield] = ACTIONS(1956), - [anon_sym_move] = ACTIONS(1956), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1956), - [sym_super] = ACTIONS(1956), - [sym_crate] = ACTIONS(1956), - [sym_metavariable] = ACTIONS(1954), - [sym__raw_string_literal_start] = ACTIONS(1954), - [sym_float_literal] = ACTIONS(1954), + [ts_builtin_sym_end] = ACTIONS(2087), + [sym_identifier] = ACTIONS(2089), + [anon_sym_SEMI] = ACTIONS(2087), + [anon_sym_macro_rules_BANG] = ACTIONS(2087), + [anon_sym_LPAREN] = ACTIONS(2087), + [anon_sym_LBRACK] = ACTIONS(2087), + [anon_sym_LBRACE] = ACTIONS(2087), + [anon_sym_RBRACE] = ACTIONS(2087), + [anon_sym_macro] = ACTIONS(2089), + [anon_sym_STAR] = ACTIONS(2087), + [anon_sym_u8] = ACTIONS(2089), + [anon_sym_i8] = ACTIONS(2089), + [anon_sym_u16] = ACTIONS(2089), + [anon_sym_i16] = ACTIONS(2089), + [anon_sym_u32] = ACTIONS(2089), + [anon_sym_i32] = ACTIONS(2089), + [anon_sym_u64] = ACTIONS(2089), + [anon_sym_i64] = ACTIONS(2089), + [anon_sym_u128] = ACTIONS(2089), + [anon_sym_i128] = ACTIONS(2089), + [anon_sym_isize] = ACTIONS(2089), + [anon_sym_usize] = ACTIONS(2089), + [anon_sym_f32] = ACTIONS(2089), + [anon_sym_f64] = ACTIONS(2089), + [anon_sym_bool] = ACTIONS(2089), + [anon_sym_str] = ACTIONS(2089), + [anon_sym_char] = ACTIONS(2089), + [anon_sym_DASH] = ACTIONS(2087), + [anon_sym_BANG] = ACTIONS(2087), + [anon_sym_AMP] = ACTIONS(2087), + [anon_sym_PIPE] = ACTIONS(2087), + [anon_sym_LT] = ACTIONS(2087), + [anon_sym_DOT_DOT] = ACTIONS(2087), + [anon_sym_COLON_COLON] = ACTIONS(2087), + [anon_sym_POUND] = ACTIONS(2087), + [anon_sym_SQUOTE] = ACTIONS(2089), + [anon_sym_async] = ACTIONS(2089), + [anon_sym_break] = ACTIONS(2089), + [anon_sym_const] = ACTIONS(2089), + [anon_sym_continue] = ACTIONS(2089), + [anon_sym_default] = ACTIONS(2089), + [anon_sym_enum] = ACTIONS(2089), + [anon_sym_fn] = ACTIONS(2089), + [anon_sym_for] = ACTIONS(2089), + [anon_sym_if] = ACTIONS(2089), + [anon_sym_impl] = ACTIONS(2089), + [anon_sym_let] = ACTIONS(2089), + [anon_sym_loop] = ACTIONS(2089), + [anon_sym_match] = ACTIONS(2089), + [anon_sym_mod] = ACTIONS(2089), + [anon_sym_pub] = ACTIONS(2089), + [anon_sym_return] = ACTIONS(2089), + [anon_sym_static] = ACTIONS(2089), + [anon_sym_struct] = ACTIONS(2089), + [anon_sym_trait] = ACTIONS(2089), + [anon_sym_type] = ACTIONS(2089), + [anon_sym_union] = ACTIONS(2089), + [anon_sym_unsafe] = ACTIONS(2089), + [anon_sym_use] = ACTIONS(2089), + [anon_sym_while] = ACTIONS(2089), + [anon_sym_extern] = ACTIONS(2089), + [anon_sym_yield] = ACTIONS(2089), + [anon_sym_move] = ACTIONS(2089), + [anon_sym_try] = ACTIONS(2089), + [sym_integer_literal] = ACTIONS(2087), + [aux_sym_string_literal_token1] = ACTIONS(2087), + [sym_char_literal] = ACTIONS(2087), + [anon_sym_true] = ACTIONS(2089), + [anon_sym_false] = ACTIONS(2089), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2089), + [sym_super] = ACTIONS(2089), + [sym_crate] = ACTIONS(2089), + [sym_metavariable] = ACTIONS(2087), + [sym__raw_string_literal_start] = ACTIONS(2087), + [sym_float_literal] = ACTIONS(2087), }, [553] = { [sym_line_comment] = STATE(553), [sym_block_comment] = STATE(553), - [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_LBRACK] = ACTIONS(1958), - [anon_sym_LBRACE] = ACTIONS(1958), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(1958), - [anon_sym_BANG] = ACTIONS(1958), - [anon_sym_AMP] = ACTIONS(1958), - [anon_sym_PIPE] = ACTIONS(1958), - [anon_sym_LT] = ACTIONS(1958), - [anon_sym_DOT_DOT] = ACTIONS(1958), - [anon_sym_COLON_COLON] = ACTIONS(1958), - [anon_sym_POUND] = ACTIONS(1958), - [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_extern] = ACTIONS(1960), - [anon_sym_yield] = ACTIONS(1960), - [anon_sym_move] = ACTIONS(1960), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1960), - [sym_super] = ACTIONS(1960), - [sym_crate] = ACTIONS(1960), - [sym_metavariable] = ACTIONS(1958), - [sym__raw_string_literal_start] = ACTIONS(1958), - [sym_float_literal] = ACTIONS(1958), + [ts_builtin_sym_end] = ACTIONS(2091), + [sym_identifier] = ACTIONS(2093), + [anon_sym_SEMI] = ACTIONS(2091), + [anon_sym_macro_rules_BANG] = ACTIONS(2091), + [anon_sym_LPAREN] = ACTIONS(2091), + [anon_sym_LBRACK] = ACTIONS(2091), + [anon_sym_LBRACE] = ACTIONS(2091), + [anon_sym_RBRACE] = ACTIONS(2091), + [anon_sym_macro] = ACTIONS(2093), + [anon_sym_STAR] = ACTIONS(2091), + [anon_sym_u8] = ACTIONS(2093), + [anon_sym_i8] = ACTIONS(2093), + [anon_sym_u16] = ACTIONS(2093), + [anon_sym_i16] = ACTIONS(2093), + [anon_sym_u32] = ACTIONS(2093), + [anon_sym_i32] = ACTIONS(2093), + [anon_sym_u64] = ACTIONS(2093), + [anon_sym_i64] = ACTIONS(2093), + [anon_sym_u128] = ACTIONS(2093), + [anon_sym_i128] = ACTIONS(2093), + [anon_sym_isize] = ACTIONS(2093), + [anon_sym_usize] = ACTIONS(2093), + [anon_sym_f32] = ACTIONS(2093), + [anon_sym_f64] = ACTIONS(2093), + [anon_sym_bool] = ACTIONS(2093), + [anon_sym_str] = ACTIONS(2093), + [anon_sym_char] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2091), + [anon_sym_BANG] = ACTIONS(2091), + [anon_sym_AMP] = ACTIONS(2091), + [anon_sym_PIPE] = ACTIONS(2091), + [anon_sym_LT] = ACTIONS(2091), + [anon_sym_DOT_DOT] = ACTIONS(2091), + [anon_sym_COLON_COLON] = ACTIONS(2091), + [anon_sym_POUND] = ACTIONS(2091), + [anon_sym_SQUOTE] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_default] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_fn] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_impl] = ACTIONS(2093), + [anon_sym_let] = ACTIONS(2093), + [anon_sym_loop] = ACTIONS(2093), + [anon_sym_match] = ACTIONS(2093), + [anon_sym_mod] = ACTIONS(2093), + [anon_sym_pub] = ACTIONS(2093), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_struct] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_union] = ACTIONS(2093), + [anon_sym_unsafe] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_extern] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_move] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [sym_integer_literal] = ACTIONS(2091), + [aux_sym_string_literal_token1] = ACTIONS(2091), + [sym_char_literal] = ACTIONS(2091), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2093), + [sym_super] = ACTIONS(2093), + [sym_crate] = ACTIONS(2093), + [sym_metavariable] = ACTIONS(2091), + [sym__raw_string_literal_start] = ACTIONS(2091), + [sym_float_literal] = ACTIONS(2091), }, [554] = { [sym_line_comment] = STATE(554), [sym_block_comment] = STATE(554), - [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_LBRACK] = ACTIONS(1962), - [anon_sym_LBRACE] = ACTIONS(1962), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(1962), - [anon_sym_BANG] = ACTIONS(1962), - [anon_sym_AMP] = ACTIONS(1962), - [anon_sym_PIPE] = ACTIONS(1962), - [anon_sym_LT] = ACTIONS(1962), - [anon_sym_DOT_DOT] = ACTIONS(1962), - [anon_sym_COLON_COLON] = ACTIONS(1962), - [anon_sym_POUND] = ACTIONS(1962), - [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_extern] = ACTIONS(1964), - [anon_sym_yield] = ACTIONS(1964), - [anon_sym_move] = ACTIONS(1964), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1964), - [sym_super] = ACTIONS(1964), - [sym_crate] = ACTIONS(1964), - [sym_metavariable] = ACTIONS(1962), - [sym__raw_string_literal_start] = ACTIONS(1962), - [sym_float_literal] = ACTIONS(1962), + [ts_builtin_sym_end] = ACTIONS(2095), + [sym_identifier] = ACTIONS(2097), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_macro_rules_BANG] = ACTIONS(2095), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_LBRACK] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_macro] = ACTIONS(2097), + [anon_sym_STAR] = ACTIONS(2095), + [anon_sym_u8] = ACTIONS(2097), + [anon_sym_i8] = ACTIONS(2097), + [anon_sym_u16] = ACTIONS(2097), + [anon_sym_i16] = ACTIONS(2097), + [anon_sym_u32] = ACTIONS(2097), + [anon_sym_i32] = ACTIONS(2097), + [anon_sym_u64] = ACTIONS(2097), + [anon_sym_i64] = ACTIONS(2097), + [anon_sym_u128] = ACTIONS(2097), + [anon_sym_i128] = ACTIONS(2097), + [anon_sym_isize] = ACTIONS(2097), + [anon_sym_usize] = ACTIONS(2097), + [anon_sym_f32] = ACTIONS(2097), + [anon_sym_f64] = ACTIONS(2097), + [anon_sym_bool] = ACTIONS(2097), + [anon_sym_str] = ACTIONS(2097), + [anon_sym_char] = ACTIONS(2097), + [anon_sym_DASH] = ACTIONS(2095), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_AMP] = ACTIONS(2095), + [anon_sym_PIPE] = ACTIONS(2095), + [anon_sym_LT] = ACTIONS(2095), + [anon_sym_DOT_DOT] = ACTIONS(2095), + [anon_sym_COLON_COLON] = ACTIONS(2095), + [anon_sym_POUND] = ACTIONS(2095), + [anon_sym_SQUOTE] = ACTIONS(2097), + [anon_sym_async] = ACTIONS(2097), + [anon_sym_break] = ACTIONS(2097), + [anon_sym_const] = ACTIONS(2097), + [anon_sym_continue] = ACTIONS(2097), + [anon_sym_default] = ACTIONS(2097), + [anon_sym_enum] = ACTIONS(2097), + [anon_sym_fn] = ACTIONS(2097), + [anon_sym_for] = ACTIONS(2097), + [anon_sym_if] = ACTIONS(2097), + [anon_sym_impl] = ACTIONS(2097), + [anon_sym_let] = ACTIONS(2097), + [anon_sym_loop] = ACTIONS(2097), + [anon_sym_match] = ACTIONS(2097), + [anon_sym_mod] = ACTIONS(2097), + [anon_sym_pub] = ACTIONS(2097), + [anon_sym_return] = ACTIONS(2097), + [anon_sym_static] = ACTIONS(2097), + [anon_sym_struct] = ACTIONS(2097), + [anon_sym_trait] = ACTIONS(2097), + [anon_sym_type] = ACTIONS(2097), + [anon_sym_union] = ACTIONS(2097), + [anon_sym_unsafe] = ACTIONS(2097), + [anon_sym_use] = ACTIONS(2097), + [anon_sym_while] = ACTIONS(2097), + [anon_sym_extern] = ACTIONS(2097), + [anon_sym_yield] = ACTIONS(2097), + [anon_sym_move] = ACTIONS(2097), + [anon_sym_try] = ACTIONS(2097), + [sym_integer_literal] = ACTIONS(2095), + [aux_sym_string_literal_token1] = ACTIONS(2095), + [sym_char_literal] = ACTIONS(2095), + [anon_sym_true] = ACTIONS(2097), + [anon_sym_false] = ACTIONS(2097), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2097), + [sym_super] = ACTIONS(2097), + [sym_crate] = ACTIONS(2097), + [sym_metavariable] = ACTIONS(2095), + [sym__raw_string_literal_start] = ACTIONS(2095), + [sym_float_literal] = ACTIONS(2095), }, [555] = { [sym_line_comment] = STATE(555), [sym_block_comment] = STATE(555), - [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_LBRACK] = ACTIONS(1966), - [anon_sym_LBRACE] = ACTIONS(1966), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(1966), - [anon_sym_BANG] = ACTIONS(1966), - [anon_sym_AMP] = ACTIONS(1966), - [anon_sym_PIPE] = ACTIONS(1966), - [anon_sym_LT] = ACTIONS(1966), - [anon_sym_DOT_DOT] = ACTIONS(1966), - [anon_sym_COLON_COLON] = ACTIONS(1966), - [anon_sym_POUND] = ACTIONS(1966), - [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_extern] = ACTIONS(1968), - [anon_sym_yield] = ACTIONS(1968), - [anon_sym_move] = ACTIONS(1968), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1968), - [sym_super] = ACTIONS(1968), - [sym_crate] = ACTIONS(1968), - [sym_metavariable] = ACTIONS(1966), - [sym__raw_string_literal_start] = ACTIONS(1966), - [sym_float_literal] = ACTIONS(1966), + [ts_builtin_sym_end] = ACTIONS(2099), + [sym_identifier] = ACTIONS(2101), + [anon_sym_SEMI] = ACTIONS(2099), + [anon_sym_macro_rules_BANG] = ACTIONS(2099), + [anon_sym_LPAREN] = ACTIONS(2099), + [anon_sym_LBRACK] = ACTIONS(2099), + [anon_sym_LBRACE] = ACTIONS(2099), + [anon_sym_RBRACE] = ACTIONS(2099), + [anon_sym_macro] = ACTIONS(2101), + [anon_sym_STAR] = ACTIONS(2099), + [anon_sym_u8] = ACTIONS(2101), + [anon_sym_i8] = ACTIONS(2101), + [anon_sym_u16] = ACTIONS(2101), + [anon_sym_i16] = ACTIONS(2101), + [anon_sym_u32] = ACTIONS(2101), + [anon_sym_i32] = ACTIONS(2101), + [anon_sym_u64] = ACTIONS(2101), + [anon_sym_i64] = ACTIONS(2101), + [anon_sym_u128] = ACTIONS(2101), + [anon_sym_i128] = ACTIONS(2101), + [anon_sym_isize] = ACTIONS(2101), + [anon_sym_usize] = ACTIONS(2101), + [anon_sym_f32] = ACTIONS(2101), + [anon_sym_f64] = ACTIONS(2101), + [anon_sym_bool] = ACTIONS(2101), + [anon_sym_str] = ACTIONS(2101), + [anon_sym_char] = ACTIONS(2101), + [anon_sym_DASH] = ACTIONS(2099), + [anon_sym_BANG] = ACTIONS(2099), + [anon_sym_AMP] = ACTIONS(2099), + [anon_sym_PIPE] = ACTIONS(2099), + [anon_sym_LT] = ACTIONS(2099), + [anon_sym_DOT_DOT] = ACTIONS(2099), + [anon_sym_COLON_COLON] = ACTIONS(2099), + [anon_sym_POUND] = ACTIONS(2099), + [anon_sym_SQUOTE] = ACTIONS(2101), + [anon_sym_async] = ACTIONS(2101), + [anon_sym_break] = ACTIONS(2101), + [anon_sym_const] = ACTIONS(2101), + [anon_sym_continue] = ACTIONS(2101), + [anon_sym_default] = ACTIONS(2101), + [anon_sym_enum] = ACTIONS(2101), + [anon_sym_fn] = ACTIONS(2101), + [anon_sym_for] = ACTIONS(2101), + [anon_sym_if] = ACTIONS(2101), + [anon_sym_impl] = ACTIONS(2101), + [anon_sym_let] = ACTIONS(2101), + [anon_sym_loop] = ACTIONS(2101), + [anon_sym_match] = ACTIONS(2101), + [anon_sym_mod] = ACTIONS(2101), + [anon_sym_pub] = ACTIONS(2101), + [anon_sym_return] = ACTIONS(2101), + [anon_sym_static] = ACTIONS(2101), + [anon_sym_struct] = ACTIONS(2101), + [anon_sym_trait] = ACTIONS(2101), + [anon_sym_type] = ACTIONS(2101), + [anon_sym_union] = ACTIONS(2101), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_use] = ACTIONS(2101), + [anon_sym_while] = ACTIONS(2101), + [anon_sym_extern] = ACTIONS(2101), + [anon_sym_yield] = ACTIONS(2101), + [anon_sym_move] = ACTIONS(2101), + [anon_sym_try] = ACTIONS(2101), + [sym_integer_literal] = ACTIONS(2099), + [aux_sym_string_literal_token1] = ACTIONS(2099), + [sym_char_literal] = ACTIONS(2099), + [anon_sym_true] = ACTIONS(2101), + [anon_sym_false] = ACTIONS(2101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2101), + [sym_super] = ACTIONS(2101), + [sym_crate] = ACTIONS(2101), + [sym_metavariable] = ACTIONS(2099), + [sym__raw_string_literal_start] = ACTIONS(2099), + [sym_float_literal] = ACTIONS(2099), }, [556] = { [sym_line_comment] = STATE(556), [sym_block_comment] = STATE(556), - [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_LBRACK] = ACTIONS(1970), - [anon_sym_LBRACE] = ACTIONS(1970), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(1970), - [anon_sym_BANG] = ACTIONS(1970), - [anon_sym_AMP] = ACTIONS(1970), - [anon_sym_PIPE] = ACTIONS(1970), - [anon_sym_LT] = ACTIONS(1970), - [anon_sym_DOT_DOT] = ACTIONS(1970), - [anon_sym_COLON_COLON] = ACTIONS(1970), - [anon_sym_POUND] = ACTIONS(1970), - [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_extern] = ACTIONS(1972), - [anon_sym_yield] = ACTIONS(1972), - [anon_sym_move] = ACTIONS(1972), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1972), - [sym_super] = ACTIONS(1972), - [sym_crate] = ACTIONS(1972), - [sym_metavariable] = ACTIONS(1970), - [sym__raw_string_literal_start] = ACTIONS(1970), - [sym_float_literal] = ACTIONS(1970), + [ts_builtin_sym_end] = ACTIONS(2103), + [sym_identifier] = ACTIONS(2105), + [anon_sym_SEMI] = ACTIONS(2103), + [anon_sym_macro_rules_BANG] = ACTIONS(2103), + [anon_sym_LPAREN] = ACTIONS(2103), + [anon_sym_LBRACK] = ACTIONS(2103), + [anon_sym_LBRACE] = ACTIONS(2103), + [anon_sym_RBRACE] = ACTIONS(2103), + [anon_sym_macro] = ACTIONS(2105), + [anon_sym_STAR] = ACTIONS(2103), + [anon_sym_u8] = ACTIONS(2105), + [anon_sym_i8] = ACTIONS(2105), + [anon_sym_u16] = ACTIONS(2105), + [anon_sym_i16] = ACTIONS(2105), + [anon_sym_u32] = ACTIONS(2105), + [anon_sym_i32] = ACTIONS(2105), + [anon_sym_u64] = ACTIONS(2105), + [anon_sym_i64] = ACTIONS(2105), + [anon_sym_u128] = ACTIONS(2105), + [anon_sym_i128] = ACTIONS(2105), + [anon_sym_isize] = ACTIONS(2105), + [anon_sym_usize] = ACTIONS(2105), + [anon_sym_f32] = ACTIONS(2105), + [anon_sym_f64] = ACTIONS(2105), + [anon_sym_bool] = ACTIONS(2105), + [anon_sym_str] = ACTIONS(2105), + [anon_sym_char] = ACTIONS(2105), + [anon_sym_DASH] = ACTIONS(2103), + [anon_sym_BANG] = ACTIONS(2103), + [anon_sym_AMP] = ACTIONS(2103), + [anon_sym_PIPE] = ACTIONS(2103), + [anon_sym_LT] = ACTIONS(2103), + [anon_sym_DOT_DOT] = ACTIONS(2103), + [anon_sym_COLON_COLON] = ACTIONS(2103), + [anon_sym_POUND] = ACTIONS(2103), + [anon_sym_SQUOTE] = ACTIONS(2105), + [anon_sym_async] = ACTIONS(2105), + [anon_sym_break] = ACTIONS(2105), + [anon_sym_const] = ACTIONS(2105), + [anon_sym_continue] = ACTIONS(2105), + [anon_sym_default] = ACTIONS(2105), + [anon_sym_enum] = ACTIONS(2105), + [anon_sym_fn] = ACTIONS(2105), + [anon_sym_for] = ACTIONS(2105), + [anon_sym_if] = ACTIONS(2105), + [anon_sym_impl] = ACTIONS(2105), + [anon_sym_let] = ACTIONS(2105), + [anon_sym_loop] = ACTIONS(2105), + [anon_sym_match] = ACTIONS(2105), + [anon_sym_mod] = ACTIONS(2105), + [anon_sym_pub] = ACTIONS(2105), + [anon_sym_return] = ACTIONS(2105), + [anon_sym_static] = ACTIONS(2105), + [anon_sym_struct] = ACTIONS(2105), + [anon_sym_trait] = ACTIONS(2105), + [anon_sym_type] = ACTIONS(2105), + [anon_sym_union] = ACTIONS(2105), + [anon_sym_unsafe] = ACTIONS(2105), + [anon_sym_use] = ACTIONS(2105), + [anon_sym_while] = ACTIONS(2105), + [anon_sym_extern] = ACTIONS(2105), + [anon_sym_yield] = ACTIONS(2105), + [anon_sym_move] = ACTIONS(2105), + [anon_sym_try] = ACTIONS(2105), + [sym_integer_literal] = ACTIONS(2103), + [aux_sym_string_literal_token1] = ACTIONS(2103), + [sym_char_literal] = ACTIONS(2103), + [anon_sym_true] = ACTIONS(2105), + [anon_sym_false] = ACTIONS(2105), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2105), + [sym_super] = ACTIONS(2105), + [sym_crate] = ACTIONS(2105), + [sym_metavariable] = ACTIONS(2103), + [sym__raw_string_literal_start] = ACTIONS(2103), + [sym_float_literal] = ACTIONS(2103), }, [557] = { [sym_line_comment] = STATE(557), [sym_block_comment] = STATE(557), - [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_LBRACK] = ACTIONS(1974), - [anon_sym_LBRACE] = ACTIONS(1974), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(1974), - [anon_sym_BANG] = ACTIONS(1974), - [anon_sym_AMP] = ACTIONS(1974), - [anon_sym_PIPE] = ACTIONS(1974), - [anon_sym_LT] = ACTIONS(1974), - [anon_sym_DOT_DOT] = ACTIONS(1974), - [anon_sym_COLON_COLON] = ACTIONS(1974), - [anon_sym_POUND] = ACTIONS(1974), - [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_extern] = ACTIONS(1976), - [anon_sym_yield] = ACTIONS(1976), - [anon_sym_move] = ACTIONS(1976), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1976), - [sym_super] = ACTIONS(1976), - [sym_crate] = ACTIONS(1976), - [sym_metavariable] = ACTIONS(1974), - [sym__raw_string_literal_start] = ACTIONS(1974), - [sym_float_literal] = ACTIONS(1974), + [ts_builtin_sym_end] = ACTIONS(2107), + [sym_identifier] = ACTIONS(2109), + [anon_sym_SEMI] = ACTIONS(2107), + [anon_sym_macro_rules_BANG] = ACTIONS(2107), + [anon_sym_LPAREN] = ACTIONS(2107), + [anon_sym_LBRACK] = ACTIONS(2107), + [anon_sym_LBRACE] = ACTIONS(2107), + [anon_sym_RBRACE] = ACTIONS(2107), + [anon_sym_macro] = ACTIONS(2109), + [anon_sym_STAR] = ACTIONS(2107), + [anon_sym_u8] = ACTIONS(2109), + [anon_sym_i8] = ACTIONS(2109), + [anon_sym_u16] = ACTIONS(2109), + [anon_sym_i16] = ACTIONS(2109), + [anon_sym_u32] = ACTIONS(2109), + [anon_sym_i32] = ACTIONS(2109), + [anon_sym_u64] = ACTIONS(2109), + [anon_sym_i64] = ACTIONS(2109), + [anon_sym_u128] = ACTIONS(2109), + [anon_sym_i128] = ACTIONS(2109), + [anon_sym_isize] = ACTIONS(2109), + [anon_sym_usize] = ACTIONS(2109), + [anon_sym_f32] = ACTIONS(2109), + [anon_sym_f64] = ACTIONS(2109), + [anon_sym_bool] = ACTIONS(2109), + [anon_sym_str] = ACTIONS(2109), + [anon_sym_char] = ACTIONS(2109), + [anon_sym_DASH] = ACTIONS(2107), + [anon_sym_BANG] = ACTIONS(2107), + [anon_sym_AMP] = ACTIONS(2107), + [anon_sym_PIPE] = ACTIONS(2107), + [anon_sym_LT] = ACTIONS(2107), + [anon_sym_DOT_DOT] = ACTIONS(2107), + [anon_sym_COLON_COLON] = ACTIONS(2107), + [anon_sym_POUND] = ACTIONS(2107), + [anon_sym_SQUOTE] = ACTIONS(2109), + [anon_sym_async] = ACTIONS(2109), + [anon_sym_break] = ACTIONS(2109), + [anon_sym_const] = ACTIONS(2109), + [anon_sym_continue] = ACTIONS(2109), + [anon_sym_default] = ACTIONS(2109), + [anon_sym_enum] = ACTIONS(2109), + [anon_sym_fn] = ACTIONS(2109), + [anon_sym_for] = ACTIONS(2109), + [anon_sym_if] = ACTIONS(2109), + [anon_sym_impl] = ACTIONS(2109), + [anon_sym_let] = ACTIONS(2109), + [anon_sym_loop] = ACTIONS(2109), + [anon_sym_match] = ACTIONS(2109), + [anon_sym_mod] = ACTIONS(2109), + [anon_sym_pub] = ACTIONS(2109), + [anon_sym_return] = ACTIONS(2109), + [anon_sym_static] = ACTIONS(2109), + [anon_sym_struct] = ACTIONS(2109), + [anon_sym_trait] = ACTIONS(2109), + [anon_sym_type] = ACTIONS(2109), + [anon_sym_union] = ACTIONS(2109), + [anon_sym_unsafe] = ACTIONS(2109), + [anon_sym_use] = ACTIONS(2109), + [anon_sym_while] = ACTIONS(2109), + [anon_sym_extern] = ACTIONS(2109), + [anon_sym_yield] = ACTIONS(2109), + [anon_sym_move] = ACTIONS(2109), + [anon_sym_try] = ACTIONS(2109), + [sym_integer_literal] = ACTIONS(2107), + [aux_sym_string_literal_token1] = ACTIONS(2107), + [sym_char_literal] = ACTIONS(2107), + [anon_sym_true] = ACTIONS(2109), + [anon_sym_false] = ACTIONS(2109), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2109), + [sym_super] = ACTIONS(2109), + [sym_crate] = ACTIONS(2109), + [sym_metavariable] = ACTIONS(2107), + [sym__raw_string_literal_start] = ACTIONS(2107), + [sym_float_literal] = ACTIONS(2107), }, [558] = { [sym_line_comment] = STATE(558), [sym_block_comment] = STATE(558), - [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_LBRACK] = ACTIONS(1978), - [anon_sym_LBRACE] = ACTIONS(1978), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(1978), - [anon_sym_BANG] = ACTIONS(1978), - [anon_sym_AMP] = ACTIONS(1978), - [anon_sym_PIPE] = ACTIONS(1978), - [anon_sym_LT] = ACTIONS(1978), - [anon_sym_DOT_DOT] = ACTIONS(1978), - [anon_sym_COLON_COLON] = ACTIONS(1978), - [anon_sym_POUND] = ACTIONS(1978), - [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_extern] = ACTIONS(1980), - [anon_sym_yield] = ACTIONS(1980), - [anon_sym_move] = ACTIONS(1980), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1980), - [sym_super] = ACTIONS(1980), - [sym_crate] = ACTIONS(1980), - [sym_metavariable] = ACTIONS(1978), - [sym__raw_string_literal_start] = ACTIONS(1978), - [sym_float_literal] = ACTIONS(1978), + [ts_builtin_sym_end] = ACTIONS(2111), + [sym_identifier] = ACTIONS(2113), + [anon_sym_SEMI] = ACTIONS(2111), + [anon_sym_macro_rules_BANG] = ACTIONS(2111), + [anon_sym_LPAREN] = ACTIONS(2111), + [anon_sym_LBRACK] = ACTIONS(2111), + [anon_sym_LBRACE] = ACTIONS(2111), + [anon_sym_RBRACE] = ACTIONS(2111), + [anon_sym_macro] = ACTIONS(2113), + [anon_sym_STAR] = ACTIONS(2111), + [anon_sym_u8] = ACTIONS(2113), + [anon_sym_i8] = ACTIONS(2113), + [anon_sym_u16] = ACTIONS(2113), + [anon_sym_i16] = ACTIONS(2113), + [anon_sym_u32] = ACTIONS(2113), + [anon_sym_i32] = ACTIONS(2113), + [anon_sym_u64] = ACTIONS(2113), + [anon_sym_i64] = ACTIONS(2113), + [anon_sym_u128] = ACTIONS(2113), + [anon_sym_i128] = ACTIONS(2113), + [anon_sym_isize] = ACTIONS(2113), + [anon_sym_usize] = ACTIONS(2113), + [anon_sym_f32] = ACTIONS(2113), + [anon_sym_f64] = ACTIONS(2113), + [anon_sym_bool] = ACTIONS(2113), + [anon_sym_str] = ACTIONS(2113), + [anon_sym_char] = ACTIONS(2113), + [anon_sym_DASH] = ACTIONS(2111), + [anon_sym_BANG] = ACTIONS(2111), + [anon_sym_AMP] = ACTIONS(2111), + [anon_sym_PIPE] = ACTIONS(2111), + [anon_sym_LT] = ACTIONS(2111), + [anon_sym_DOT_DOT] = ACTIONS(2111), + [anon_sym_COLON_COLON] = ACTIONS(2111), + [anon_sym_POUND] = ACTIONS(2111), + [anon_sym_SQUOTE] = ACTIONS(2113), + [anon_sym_async] = ACTIONS(2113), + [anon_sym_break] = ACTIONS(2113), + [anon_sym_const] = ACTIONS(2113), + [anon_sym_continue] = ACTIONS(2113), + [anon_sym_default] = ACTIONS(2113), + [anon_sym_enum] = ACTIONS(2113), + [anon_sym_fn] = ACTIONS(2113), + [anon_sym_for] = ACTIONS(2113), + [anon_sym_if] = ACTIONS(2113), + [anon_sym_impl] = ACTIONS(2113), + [anon_sym_let] = ACTIONS(2113), + [anon_sym_loop] = ACTIONS(2113), + [anon_sym_match] = ACTIONS(2113), + [anon_sym_mod] = ACTIONS(2113), + [anon_sym_pub] = ACTIONS(2113), + [anon_sym_return] = ACTIONS(2113), + [anon_sym_static] = ACTIONS(2113), + [anon_sym_struct] = ACTIONS(2113), + [anon_sym_trait] = ACTIONS(2113), + [anon_sym_type] = ACTIONS(2113), + [anon_sym_union] = ACTIONS(2113), + [anon_sym_unsafe] = ACTIONS(2113), + [anon_sym_use] = ACTIONS(2113), + [anon_sym_while] = ACTIONS(2113), + [anon_sym_extern] = ACTIONS(2113), + [anon_sym_yield] = ACTIONS(2113), + [anon_sym_move] = ACTIONS(2113), + [anon_sym_try] = ACTIONS(2113), + [sym_integer_literal] = ACTIONS(2111), + [aux_sym_string_literal_token1] = ACTIONS(2111), + [sym_char_literal] = ACTIONS(2111), + [anon_sym_true] = ACTIONS(2113), + [anon_sym_false] = ACTIONS(2113), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2113), + [sym_super] = ACTIONS(2113), + [sym_crate] = ACTIONS(2113), + [sym_metavariable] = ACTIONS(2111), + [sym__raw_string_literal_start] = ACTIONS(2111), + [sym_float_literal] = ACTIONS(2111), }, [559] = { [sym_line_comment] = STATE(559), [sym_block_comment] = STATE(559), - [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_LBRACK] = ACTIONS(1982), - [anon_sym_LBRACE] = ACTIONS(1982), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(1982), - [anon_sym_BANG] = ACTIONS(1982), - [anon_sym_AMP] = ACTIONS(1982), - [anon_sym_PIPE] = ACTIONS(1982), - [anon_sym_LT] = ACTIONS(1982), - [anon_sym_DOT_DOT] = ACTIONS(1982), - [anon_sym_COLON_COLON] = ACTIONS(1982), - [anon_sym_POUND] = ACTIONS(1982), - [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_extern] = ACTIONS(1984), - [anon_sym_yield] = ACTIONS(1984), - [anon_sym_move] = ACTIONS(1984), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1984), - [sym_super] = ACTIONS(1984), - [sym_crate] = ACTIONS(1984), - [sym_metavariable] = ACTIONS(1982), - [sym__raw_string_literal_start] = ACTIONS(1982), - [sym_float_literal] = ACTIONS(1982), + [ts_builtin_sym_end] = ACTIONS(2115), + [sym_identifier] = ACTIONS(2117), + [anon_sym_SEMI] = ACTIONS(2115), + [anon_sym_macro_rules_BANG] = ACTIONS(2115), + [anon_sym_LPAREN] = ACTIONS(2115), + [anon_sym_LBRACK] = ACTIONS(2115), + [anon_sym_LBRACE] = ACTIONS(2115), + [anon_sym_RBRACE] = ACTIONS(2115), + [anon_sym_macro] = ACTIONS(2117), + [anon_sym_STAR] = ACTIONS(2115), + [anon_sym_u8] = ACTIONS(2117), + [anon_sym_i8] = ACTIONS(2117), + [anon_sym_u16] = ACTIONS(2117), + [anon_sym_i16] = ACTIONS(2117), + [anon_sym_u32] = ACTIONS(2117), + [anon_sym_i32] = ACTIONS(2117), + [anon_sym_u64] = ACTIONS(2117), + [anon_sym_i64] = ACTIONS(2117), + [anon_sym_u128] = ACTIONS(2117), + [anon_sym_i128] = ACTIONS(2117), + [anon_sym_isize] = ACTIONS(2117), + [anon_sym_usize] = ACTIONS(2117), + [anon_sym_f32] = ACTIONS(2117), + [anon_sym_f64] = ACTIONS(2117), + [anon_sym_bool] = ACTIONS(2117), + [anon_sym_str] = ACTIONS(2117), + [anon_sym_char] = ACTIONS(2117), + [anon_sym_DASH] = ACTIONS(2115), + [anon_sym_BANG] = ACTIONS(2115), + [anon_sym_AMP] = ACTIONS(2115), + [anon_sym_PIPE] = ACTIONS(2115), + [anon_sym_LT] = ACTIONS(2115), + [anon_sym_DOT_DOT] = ACTIONS(2115), + [anon_sym_COLON_COLON] = ACTIONS(2115), + [anon_sym_POUND] = ACTIONS(2115), + [anon_sym_SQUOTE] = ACTIONS(2117), + [anon_sym_async] = ACTIONS(2117), + [anon_sym_break] = ACTIONS(2117), + [anon_sym_const] = ACTIONS(2117), + [anon_sym_continue] = ACTIONS(2117), + [anon_sym_default] = ACTIONS(2117), + [anon_sym_enum] = ACTIONS(2117), + [anon_sym_fn] = ACTIONS(2117), + [anon_sym_for] = ACTIONS(2117), + [anon_sym_if] = ACTIONS(2117), + [anon_sym_impl] = ACTIONS(2117), + [anon_sym_let] = ACTIONS(2117), + [anon_sym_loop] = ACTIONS(2117), + [anon_sym_match] = ACTIONS(2117), + [anon_sym_mod] = ACTIONS(2117), + [anon_sym_pub] = ACTIONS(2117), + [anon_sym_return] = ACTIONS(2117), + [anon_sym_static] = ACTIONS(2117), + [anon_sym_struct] = ACTIONS(2117), + [anon_sym_trait] = ACTIONS(2117), + [anon_sym_type] = ACTIONS(2117), + [anon_sym_union] = ACTIONS(2117), + [anon_sym_unsafe] = ACTIONS(2117), + [anon_sym_use] = ACTIONS(2117), + [anon_sym_while] = ACTIONS(2117), + [anon_sym_extern] = ACTIONS(2117), + [anon_sym_yield] = ACTIONS(2117), + [anon_sym_move] = ACTIONS(2117), + [anon_sym_try] = ACTIONS(2117), + [sym_integer_literal] = ACTIONS(2115), + [aux_sym_string_literal_token1] = ACTIONS(2115), + [sym_char_literal] = ACTIONS(2115), + [anon_sym_true] = ACTIONS(2117), + [anon_sym_false] = ACTIONS(2117), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2117), + [sym_super] = ACTIONS(2117), + [sym_crate] = ACTIONS(2117), + [sym_metavariable] = ACTIONS(2115), + [sym__raw_string_literal_start] = ACTIONS(2115), + [sym_float_literal] = ACTIONS(2115), }, [560] = { [sym_line_comment] = STATE(560), [sym_block_comment] = STATE(560), - [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_LBRACK] = ACTIONS(1986), - [anon_sym_LBRACE] = ACTIONS(1986), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(1986), - [anon_sym_BANG] = ACTIONS(1986), - [anon_sym_AMP] = ACTIONS(1986), - [anon_sym_PIPE] = ACTIONS(1986), - [anon_sym_LT] = ACTIONS(1986), - [anon_sym_DOT_DOT] = ACTIONS(1986), - [anon_sym_COLON_COLON] = ACTIONS(1986), - [anon_sym_POUND] = ACTIONS(1986), - [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_extern] = ACTIONS(1988), - [anon_sym_yield] = ACTIONS(1988), - [anon_sym_move] = ACTIONS(1988), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1988), - [sym_super] = ACTIONS(1988), - [sym_crate] = ACTIONS(1988), - [sym_metavariable] = ACTIONS(1986), - [sym__raw_string_literal_start] = ACTIONS(1986), - [sym_float_literal] = ACTIONS(1986), + [ts_builtin_sym_end] = ACTIONS(2119), + [sym_identifier] = ACTIONS(2121), + [anon_sym_SEMI] = ACTIONS(2119), + [anon_sym_macro_rules_BANG] = ACTIONS(2119), + [anon_sym_LPAREN] = ACTIONS(2119), + [anon_sym_LBRACK] = ACTIONS(2119), + [anon_sym_LBRACE] = ACTIONS(2119), + [anon_sym_RBRACE] = ACTIONS(2119), + [anon_sym_macro] = ACTIONS(2121), + [anon_sym_STAR] = ACTIONS(2119), + [anon_sym_u8] = ACTIONS(2121), + [anon_sym_i8] = ACTIONS(2121), + [anon_sym_u16] = ACTIONS(2121), + [anon_sym_i16] = ACTIONS(2121), + [anon_sym_u32] = ACTIONS(2121), + [anon_sym_i32] = ACTIONS(2121), + [anon_sym_u64] = ACTIONS(2121), + [anon_sym_i64] = ACTIONS(2121), + [anon_sym_u128] = ACTIONS(2121), + [anon_sym_i128] = ACTIONS(2121), + [anon_sym_isize] = ACTIONS(2121), + [anon_sym_usize] = ACTIONS(2121), + [anon_sym_f32] = ACTIONS(2121), + [anon_sym_f64] = ACTIONS(2121), + [anon_sym_bool] = ACTIONS(2121), + [anon_sym_str] = ACTIONS(2121), + [anon_sym_char] = ACTIONS(2121), + [anon_sym_DASH] = ACTIONS(2119), + [anon_sym_BANG] = ACTIONS(2119), + [anon_sym_AMP] = ACTIONS(2119), + [anon_sym_PIPE] = ACTIONS(2119), + [anon_sym_LT] = ACTIONS(2119), + [anon_sym_DOT_DOT] = ACTIONS(2119), + [anon_sym_COLON_COLON] = ACTIONS(2119), + [anon_sym_POUND] = ACTIONS(2119), + [anon_sym_SQUOTE] = ACTIONS(2121), + [anon_sym_async] = ACTIONS(2121), + [anon_sym_break] = ACTIONS(2121), + [anon_sym_const] = ACTIONS(2121), + [anon_sym_continue] = ACTIONS(2121), + [anon_sym_default] = ACTIONS(2121), + [anon_sym_enum] = ACTIONS(2121), + [anon_sym_fn] = ACTIONS(2121), + [anon_sym_for] = ACTIONS(2121), + [anon_sym_if] = ACTIONS(2121), + [anon_sym_impl] = ACTIONS(2121), + [anon_sym_let] = ACTIONS(2121), + [anon_sym_loop] = ACTIONS(2121), + [anon_sym_match] = ACTIONS(2121), + [anon_sym_mod] = ACTIONS(2121), + [anon_sym_pub] = ACTIONS(2121), + [anon_sym_return] = ACTIONS(2121), + [anon_sym_static] = ACTIONS(2121), + [anon_sym_struct] = ACTIONS(2121), + [anon_sym_trait] = ACTIONS(2121), + [anon_sym_type] = ACTIONS(2121), + [anon_sym_union] = ACTIONS(2121), + [anon_sym_unsafe] = ACTIONS(2121), + [anon_sym_use] = ACTIONS(2121), + [anon_sym_while] = ACTIONS(2121), + [anon_sym_extern] = ACTIONS(2121), + [anon_sym_yield] = ACTIONS(2121), + [anon_sym_move] = ACTIONS(2121), + [anon_sym_try] = ACTIONS(2121), + [sym_integer_literal] = ACTIONS(2119), + [aux_sym_string_literal_token1] = ACTIONS(2119), + [sym_char_literal] = ACTIONS(2119), + [anon_sym_true] = ACTIONS(2121), + [anon_sym_false] = ACTIONS(2121), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2121), + [sym_super] = ACTIONS(2121), + [sym_crate] = ACTIONS(2121), + [sym_metavariable] = ACTIONS(2119), + [sym__raw_string_literal_start] = ACTIONS(2119), + [sym_float_literal] = ACTIONS(2119), }, [561] = { [sym_line_comment] = STATE(561), [sym_block_comment] = STATE(561), - [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_LBRACK] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1990), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(1990), - [anon_sym_BANG] = ACTIONS(1990), - [anon_sym_AMP] = ACTIONS(1990), - [anon_sym_PIPE] = ACTIONS(1990), - [anon_sym_LT] = ACTIONS(1990), - [anon_sym_DOT_DOT] = ACTIONS(1990), - [anon_sym_COLON_COLON] = ACTIONS(1990), - [anon_sym_POUND] = ACTIONS(1990), - [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_extern] = ACTIONS(1992), - [anon_sym_yield] = ACTIONS(1992), - [anon_sym_move] = ACTIONS(1992), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1992), - [sym_super] = ACTIONS(1992), - [sym_crate] = ACTIONS(1992), - [sym_metavariable] = ACTIONS(1990), - [sym__raw_string_literal_start] = ACTIONS(1990), - [sym_float_literal] = ACTIONS(1990), + [ts_builtin_sym_end] = ACTIONS(2123), + [sym_identifier] = ACTIONS(2125), + [anon_sym_SEMI] = ACTIONS(2123), + [anon_sym_macro_rules_BANG] = ACTIONS(2123), + [anon_sym_LPAREN] = ACTIONS(2123), + [anon_sym_LBRACK] = ACTIONS(2123), + [anon_sym_LBRACE] = ACTIONS(2123), + [anon_sym_RBRACE] = ACTIONS(2123), + [anon_sym_macro] = ACTIONS(2125), + [anon_sym_STAR] = ACTIONS(2123), + [anon_sym_u8] = ACTIONS(2125), + [anon_sym_i8] = ACTIONS(2125), + [anon_sym_u16] = ACTIONS(2125), + [anon_sym_i16] = ACTIONS(2125), + [anon_sym_u32] = ACTIONS(2125), + [anon_sym_i32] = ACTIONS(2125), + [anon_sym_u64] = ACTIONS(2125), + [anon_sym_i64] = ACTIONS(2125), + [anon_sym_u128] = ACTIONS(2125), + [anon_sym_i128] = ACTIONS(2125), + [anon_sym_isize] = ACTIONS(2125), + [anon_sym_usize] = ACTIONS(2125), + [anon_sym_f32] = ACTIONS(2125), + [anon_sym_f64] = ACTIONS(2125), + [anon_sym_bool] = ACTIONS(2125), + [anon_sym_str] = ACTIONS(2125), + [anon_sym_char] = ACTIONS(2125), + [anon_sym_DASH] = ACTIONS(2123), + [anon_sym_BANG] = ACTIONS(2123), + [anon_sym_AMP] = ACTIONS(2123), + [anon_sym_PIPE] = ACTIONS(2123), + [anon_sym_LT] = ACTIONS(2123), + [anon_sym_DOT_DOT] = ACTIONS(2123), + [anon_sym_COLON_COLON] = ACTIONS(2123), + [anon_sym_POUND] = ACTIONS(2123), + [anon_sym_SQUOTE] = ACTIONS(2125), + [anon_sym_async] = ACTIONS(2125), + [anon_sym_break] = ACTIONS(2125), + [anon_sym_const] = ACTIONS(2125), + [anon_sym_continue] = ACTIONS(2125), + [anon_sym_default] = ACTIONS(2125), + [anon_sym_enum] = ACTIONS(2125), + [anon_sym_fn] = ACTIONS(2125), + [anon_sym_for] = ACTIONS(2125), + [anon_sym_if] = ACTIONS(2125), + [anon_sym_impl] = ACTIONS(2125), + [anon_sym_let] = ACTIONS(2125), + [anon_sym_loop] = ACTIONS(2125), + [anon_sym_match] = ACTIONS(2125), + [anon_sym_mod] = ACTIONS(2125), + [anon_sym_pub] = ACTIONS(2125), + [anon_sym_return] = ACTIONS(2125), + [anon_sym_static] = ACTIONS(2125), + [anon_sym_struct] = ACTIONS(2125), + [anon_sym_trait] = ACTIONS(2125), + [anon_sym_type] = ACTIONS(2125), + [anon_sym_union] = ACTIONS(2125), + [anon_sym_unsafe] = ACTIONS(2125), + [anon_sym_use] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2125), + [anon_sym_extern] = ACTIONS(2125), + [anon_sym_yield] = ACTIONS(2125), + [anon_sym_move] = ACTIONS(2125), + [anon_sym_try] = ACTIONS(2125), + [sym_integer_literal] = ACTIONS(2123), + [aux_sym_string_literal_token1] = ACTIONS(2123), + [sym_char_literal] = ACTIONS(2123), + [anon_sym_true] = ACTIONS(2125), + [anon_sym_false] = ACTIONS(2125), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2125), + [sym_super] = ACTIONS(2125), + [sym_crate] = ACTIONS(2125), + [sym_metavariable] = ACTIONS(2123), + [sym__raw_string_literal_start] = ACTIONS(2123), + [sym_float_literal] = ACTIONS(2123), }, [562] = { [sym_line_comment] = STATE(562), [sym_block_comment] = STATE(562), - [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_LBRACK] = ACTIONS(1994), - [anon_sym_LBRACE] = ACTIONS(1994), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(1994), - [anon_sym_BANG] = ACTIONS(1994), - [anon_sym_AMP] = ACTIONS(1994), - [anon_sym_PIPE] = ACTIONS(1994), - [anon_sym_LT] = ACTIONS(1994), - [anon_sym_DOT_DOT] = ACTIONS(1994), - [anon_sym_COLON_COLON] = ACTIONS(1994), - [anon_sym_POUND] = ACTIONS(1994), - [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_extern] = ACTIONS(1996), - [anon_sym_yield] = ACTIONS(1996), - [anon_sym_move] = ACTIONS(1996), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1996), - [sym_super] = ACTIONS(1996), - [sym_crate] = ACTIONS(1996), - [sym_metavariable] = ACTIONS(1994), - [sym__raw_string_literal_start] = ACTIONS(1994), - [sym_float_literal] = ACTIONS(1994), + [ts_builtin_sym_end] = ACTIONS(2127), + [sym_identifier] = ACTIONS(2129), + [anon_sym_SEMI] = ACTIONS(2127), + [anon_sym_macro_rules_BANG] = ACTIONS(2127), + [anon_sym_LPAREN] = ACTIONS(2127), + [anon_sym_LBRACK] = ACTIONS(2127), + [anon_sym_LBRACE] = ACTIONS(2127), + [anon_sym_RBRACE] = ACTIONS(2127), + [anon_sym_macro] = ACTIONS(2129), + [anon_sym_STAR] = ACTIONS(2127), + [anon_sym_u8] = ACTIONS(2129), + [anon_sym_i8] = ACTIONS(2129), + [anon_sym_u16] = ACTIONS(2129), + [anon_sym_i16] = ACTIONS(2129), + [anon_sym_u32] = ACTIONS(2129), + [anon_sym_i32] = ACTIONS(2129), + [anon_sym_u64] = ACTIONS(2129), + [anon_sym_i64] = ACTIONS(2129), + [anon_sym_u128] = ACTIONS(2129), + [anon_sym_i128] = ACTIONS(2129), + [anon_sym_isize] = ACTIONS(2129), + [anon_sym_usize] = ACTIONS(2129), + [anon_sym_f32] = ACTIONS(2129), + [anon_sym_f64] = ACTIONS(2129), + [anon_sym_bool] = ACTIONS(2129), + [anon_sym_str] = ACTIONS(2129), + [anon_sym_char] = ACTIONS(2129), + [anon_sym_DASH] = ACTIONS(2127), + [anon_sym_BANG] = ACTIONS(2127), + [anon_sym_AMP] = ACTIONS(2127), + [anon_sym_PIPE] = ACTIONS(2127), + [anon_sym_LT] = ACTIONS(2127), + [anon_sym_DOT_DOT] = ACTIONS(2127), + [anon_sym_COLON_COLON] = ACTIONS(2127), + [anon_sym_POUND] = ACTIONS(2127), + [anon_sym_SQUOTE] = ACTIONS(2129), + [anon_sym_async] = ACTIONS(2129), + [anon_sym_break] = ACTIONS(2129), + [anon_sym_const] = ACTIONS(2129), + [anon_sym_continue] = ACTIONS(2129), + [anon_sym_default] = ACTIONS(2129), + [anon_sym_enum] = ACTIONS(2129), + [anon_sym_fn] = ACTIONS(2129), + [anon_sym_for] = ACTIONS(2129), + [anon_sym_if] = ACTIONS(2129), + [anon_sym_impl] = ACTIONS(2129), + [anon_sym_let] = ACTIONS(2129), + [anon_sym_loop] = ACTIONS(2129), + [anon_sym_match] = ACTIONS(2129), + [anon_sym_mod] = ACTIONS(2129), + [anon_sym_pub] = ACTIONS(2129), + [anon_sym_return] = ACTIONS(2129), + [anon_sym_static] = ACTIONS(2129), + [anon_sym_struct] = ACTIONS(2129), + [anon_sym_trait] = ACTIONS(2129), + [anon_sym_type] = ACTIONS(2129), + [anon_sym_union] = ACTIONS(2129), + [anon_sym_unsafe] = ACTIONS(2129), + [anon_sym_use] = ACTIONS(2129), + [anon_sym_while] = ACTIONS(2129), + [anon_sym_extern] = ACTIONS(2129), + [anon_sym_yield] = ACTIONS(2129), + [anon_sym_move] = ACTIONS(2129), + [anon_sym_try] = ACTIONS(2129), + [sym_integer_literal] = ACTIONS(2127), + [aux_sym_string_literal_token1] = ACTIONS(2127), + [sym_char_literal] = ACTIONS(2127), + [anon_sym_true] = ACTIONS(2129), + [anon_sym_false] = ACTIONS(2129), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2129), + [sym_super] = ACTIONS(2129), + [sym_crate] = ACTIONS(2129), + [sym_metavariable] = ACTIONS(2127), + [sym__raw_string_literal_start] = ACTIONS(2127), + [sym_float_literal] = ACTIONS(2127), }, [563] = { [sym_line_comment] = STATE(563), [sym_block_comment] = STATE(563), - [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_LBRACK] = ACTIONS(1998), - [anon_sym_LBRACE] = ACTIONS(1998), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(1998), - [anon_sym_BANG] = ACTIONS(1998), - [anon_sym_AMP] = ACTIONS(1998), - [anon_sym_PIPE] = ACTIONS(1998), - [anon_sym_LT] = ACTIONS(1998), - [anon_sym_DOT_DOT] = ACTIONS(1998), - [anon_sym_COLON_COLON] = ACTIONS(1998), - [anon_sym_POUND] = ACTIONS(1998), - [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_extern] = ACTIONS(2000), - [anon_sym_yield] = ACTIONS(2000), - [anon_sym_move] = ACTIONS(2000), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2000), - [sym_super] = ACTIONS(2000), - [sym_crate] = ACTIONS(2000), - [sym_metavariable] = ACTIONS(1998), - [sym__raw_string_literal_start] = ACTIONS(1998), - [sym_float_literal] = ACTIONS(1998), + [ts_builtin_sym_end] = ACTIONS(2131), + [sym_identifier] = ACTIONS(2133), + [anon_sym_SEMI] = ACTIONS(2131), + [anon_sym_macro_rules_BANG] = ACTIONS(2131), + [anon_sym_LPAREN] = ACTIONS(2131), + [anon_sym_LBRACK] = ACTIONS(2131), + [anon_sym_LBRACE] = ACTIONS(2131), + [anon_sym_RBRACE] = ACTIONS(2131), + [anon_sym_macro] = ACTIONS(2133), + [anon_sym_STAR] = ACTIONS(2131), + [anon_sym_u8] = ACTIONS(2133), + [anon_sym_i8] = ACTIONS(2133), + [anon_sym_u16] = ACTIONS(2133), + [anon_sym_i16] = ACTIONS(2133), + [anon_sym_u32] = ACTIONS(2133), + [anon_sym_i32] = ACTIONS(2133), + [anon_sym_u64] = ACTIONS(2133), + [anon_sym_i64] = ACTIONS(2133), + [anon_sym_u128] = ACTIONS(2133), + [anon_sym_i128] = ACTIONS(2133), + [anon_sym_isize] = ACTIONS(2133), + [anon_sym_usize] = ACTIONS(2133), + [anon_sym_f32] = ACTIONS(2133), + [anon_sym_f64] = ACTIONS(2133), + [anon_sym_bool] = ACTIONS(2133), + [anon_sym_str] = ACTIONS(2133), + [anon_sym_char] = ACTIONS(2133), + [anon_sym_DASH] = ACTIONS(2131), + [anon_sym_BANG] = ACTIONS(2131), + [anon_sym_AMP] = ACTIONS(2131), + [anon_sym_PIPE] = ACTIONS(2131), + [anon_sym_LT] = ACTIONS(2131), + [anon_sym_DOT_DOT] = ACTIONS(2131), + [anon_sym_COLON_COLON] = ACTIONS(2131), + [anon_sym_POUND] = ACTIONS(2131), + [anon_sym_SQUOTE] = ACTIONS(2133), + [anon_sym_async] = ACTIONS(2133), + [anon_sym_break] = ACTIONS(2133), + [anon_sym_const] = ACTIONS(2133), + [anon_sym_continue] = ACTIONS(2133), + [anon_sym_default] = ACTIONS(2133), + [anon_sym_enum] = ACTIONS(2133), + [anon_sym_fn] = ACTIONS(2133), + [anon_sym_for] = ACTIONS(2133), + [anon_sym_if] = ACTIONS(2133), + [anon_sym_impl] = ACTIONS(2133), + [anon_sym_let] = ACTIONS(2133), + [anon_sym_loop] = ACTIONS(2133), + [anon_sym_match] = ACTIONS(2133), + [anon_sym_mod] = ACTIONS(2133), + [anon_sym_pub] = ACTIONS(2133), + [anon_sym_return] = ACTIONS(2133), + [anon_sym_static] = ACTIONS(2133), + [anon_sym_struct] = ACTIONS(2133), + [anon_sym_trait] = ACTIONS(2133), + [anon_sym_type] = ACTIONS(2133), + [anon_sym_union] = ACTIONS(2133), + [anon_sym_unsafe] = ACTIONS(2133), + [anon_sym_use] = ACTIONS(2133), + [anon_sym_while] = ACTIONS(2133), + [anon_sym_extern] = ACTIONS(2133), + [anon_sym_yield] = ACTIONS(2133), + [anon_sym_move] = ACTIONS(2133), + [anon_sym_try] = ACTIONS(2133), + [sym_integer_literal] = ACTIONS(2131), + [aux_sym_string_literal_token1] = ACTIONS(2131), + [sym_char_literal] = ACTIONS(2131), + [anon_sym_true] = ACTIONS(2133), + [anon_sym_false] = ACTIONS(2133), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2133), + [sym_super] = ACTIONS(2133), + [sym_crate] = ACTIONS(2133), + [sym_metavariable] = ACTIONS(2131), + [sym__raw_string_literal_start] = ACTIONS(2131), + [sym_float_literal] = ACTIONS(2131), }, [564] = { [sym_line_comment] = STATE(564), [sym_block_comment] = STATE(564), - [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_LBRACK] = ACTIONS(2002), - [anon_sym_LBRACE] = ACTIONS(2002), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(2002), - [anon_sym_BANG] = ACTIONS(2002), - [anon_sym_AMP] = ACTIONS(2002), - [anon_sym_PIPE] = ACTIONS(2002), - [anon_sym_LT] = ACTIONS(2002), - [anon_sym_DOT_DOT] = ACTIONS(2002), - [anon_sym_COLON_COLON] = ACTIONS(2002), - [anon_sym_POUND] = ACTIONS(2002), - [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_extern] = ACTIONS(2004), - [anon_sym_yield] = ACTIONS(2004), - [anon_sym_move] = ACTIONS(2004), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2004), - [sym_super] = ACTIONS(2004), - [sym_crate] = ACTIONS(2004), - [sym_metavariable] = ACTIONS(2002), - [sym__raw_string_literal_start] = ACTIONS(2002), - [sym_float_literal] = ACTIONS(2002), + [ts_builtin_sym_end] = ACTIONS(2135), + [sym_identifier] = ACTIONS(2137), + [anon_sym_SEMI] = ACTIONS(2135), + [anon_sym_macro_rules_BANG] = ACTIONS(2135), + [anon_sym_LPAREN] = ACTIONS(2135), + [anon_sym_LBRACK] = ACTIONS(2135), + [anon_sym_LBRACE] = ACTIONS(2135), + [anon_sym_RBRACE] = ACTIONS(2135), + [anon_sym_macro] = ACTIONS(2137), + [anon_sym_STAR] = ACTIONS(2135), + [anon_sym_u8] = ACTIONS(2137), + [anon_sym_i8] = ACTIONS(2137), + [anon_sym_u16] = ACTIONS(2137), + [anon_sym_i16] = ACTIONS(2137), + [anon_sym_u32] = ACTIONS(2137), + [anon_sym_i32] = ACTIONS(2137), + [anon_sym_u64] = ACTIONS(2137), + [anon_sym_i64] = ACTIONS(2137), + [anon_sym_u128] = ACTIONS(2137), + [anon_sym_i128] = ACTIONS(2137), + [anon_sym_isize] = ACTIONS(2137), + [anon_sym_usize] = ACTIONS(2137), + [anon_sym_f32] = ACTIONS(2137), + [anon_sym_f64] = ACTIONS(2137), + [anon_sym_bool] = ACTIONS(2137), + [anon_sym_str] = ACTIONS(2137), + [anon_sym_char] = ACTIONS(2137), + [anon_sym_DASH] = ACTIONS(2135), + [anon_sym_BANG] = ACTIONS(2135), + [anon_sym_AMP] = ACTIONS(2135), + [anon_sym_PIPE] = ACTIONS(2135), + [anon_sym_LT] = ACTIONS(2135), + [anon_sym_DOT_DOT] = ACTIONS(2135), + [anon_sym_COLON_COLON] = ACTIONS(2135), + [anon_sym_POUND] = ACTIONS(2135), + [anon_sym_SQUOTE] = ACTIONS(2137), + [anon_sym_async] = ACTIONS(2137), + [anon_sym_break] = ACTIONS(2137), + [anon_sym_const] = ACTIONS(2137), + [anon_sym_continue] = ACTIONS(2137), + [anon_sym_default] = ACTIONS(2137), + [anon_sym_enum] = ACTIONS(2137), + [anon_sym_fn] = ACTIONS(2137), + [anon_sym_for] = ACTIONS(2137), + [anon_sym_if] = ACTIONS(2137), + [anon_sym_impl] = ACTIONS(2137), + [anon_sym_let] = ACTIONS(2137), + [anon_sym_loop] = ACTIONS(2137), + [anon_sym_match] = ACTIONS(2137), + [anon_sym_mod] = ACTIONS(2137), + [anon_sym_pub] = ACTIONS(2137), + [anon_sym_return] = ACTIONS(2137), + [anon_sym_static] = ACTIONS(2137), + [anon_sym_struct] = ACTIONS(2137), + [anon_sym_trait] = ACTIONS(2137), + [anon_sym_type] = ACTIONS(2137), + [anon_sym_union] = ACTIONS(2137), + [anon_sym_unsafe] = ACTIONS(2137), + [anon_sym_use] = ACTIONS(2137), + [anon_sym_while] = ACTIONS(2137), + [anon_sym_extern] = ACTIONS(2137), + [anon_sym_yield] = ACTIONS(2137), + [anon_sym_move] = ACTIONS(2137), + [anon_sym_try] = ACTIONS(2137), + [sym_integer_literal] = ACTIONS(2135), + [aux_sym_string_literal_token1] = ACTIONS(2135), + [sym_char_literal] = ACTIONS(2135), + [anon_sym_true] = ACTIONS(2137), + [anon_sym_false] = ACTIONS(2137), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2137), + [sym_super] = ACTIONS(2137), + [sym_crate] = ACTIONS(2137), + [sym_metavariable] = ACTIONS(2135), + [sym__raw_string_literal_start] = ACTIONS(2135), + [sym_float_literal] = ACTIONS(2135), }, [565] = { [sym_line_comment] = STATE(565), [sym_block_comment] = STATE(565), - [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_LBRACK] = ACTIONS(2006), - [anon_sym_LBRACE] = ACTIONS(2006), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(2006), - [anon_sym_BANG] = ACTIONS(2006), - [anon_sym_AMP] = ACTIONS(2006), - [anon_sym_PIPE] = ACTIONS(2006), - [anon_sym_LT] = ACTIONS(2006), - [anon_sym_DOT_DOT] = ACTIONS(2006), - [anon_sym_COLON_COLON] = ACTIONS(2006), - [anon_sym_POUND] = ACTIONS(2006), - [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_extern] = ACTIONS(2008), - [anon_sym_yield] = ACTIONS(2008), - [anon_sym_move] = ACTIONS(2008), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2008), - [sym_super] = ACTIONS(2008), - [sym_crate] = ACTIONS(2008), - [sym_metavariable] = ACTIONS(2006), - [sym__raw_string_literal_start] = ACTIONS(2006), - [sym_float_literal] = ACTIONS(2006), + [ts_builtin_sym_end] = ACTIONS(2139), + [sym_identifier] = ACTIONS(2141), + [anon_sym_SEMI] = ACTIONS(2139), + [anon_sym_macro_rules_BANG] = ACTIONS(2139), + [anon_sym_LPAREN] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(2139), + [anon_sym_LBRACE] = ACTIONS(2139), + [anon_sym_RBRACE] = ACTIONS(2139), + [anon_sym_macro] = ACTIONS(2141), + [anon_sym_STAR] = ACTIONS(2139), + [anon_sym_u8] = ACTIONS(2141), + [anon_sym_i8] = ACTIONS(2141), + [anon_sym_u16] = ACTIONS(2141), + [anon_sym_i16] = ACTIONS(2141), + [anon_sym_u32] = ACTIONS(2141), + [anon_sym_i32] = ACTIONS(2141), + [anon_sym_u64] = ACTIONS(2141), + [anon_sym_i64] = ACTIONS(2141), + [anon_sym_u128] = ACTIONS(2141), + [anon_sym_i128] = ACTIONS(2141), + [anon_sym_isize] = ACTIONS(2141), + [anon_sym_usize] = ACTIONS(2141), + [anon_sym_f32] = ACTIONS(2141), + [anon_sym_f64] = ACTIONS(2141), + [anon_sym_bool] = ACTIONS(2141), + [anon_sym_str] = ACTIONS(2141), + [anon_sym_char] = ACTIONS(2141), + [anon_sym_DASH] = ACTIONS(2139), + [anon_sym_BANG] = ACTIONS(2139), + [anon_sym_AMP] = ACTIONS(2139), + [anon_sym_PIPE] = ACTIONS(2139), + [anon_sym_LT] = ACTIONS(2139), + [anon_sym_DOT_DOT] = ACTIONS(2139), + [anon_sym_COLON_COLON] = ACTIONS(2139), + [anon_sym_POUND] = ACTIONS(2139), + [anon_sym_SQUOTE] = ACTIONS(2141), + [anon_sym_async] = ACTIONS(2141), + [anon_sym_break] = ACTIONS(2141), + [anon_sym_const] = ACTIONS(2141), + [anon_sym_continue] = ACTIONS(2141), + [anon_sym_default] = ACTIONS(2141), + [anon_sym_enum] = ACTIONS(2141), + [anon_sym_fn] = ACTIONS(2141), + [anon_sym_for] = ACTIONS(2141), + [anon_sym_if] = ACTIONS(2141), + [anon_sym_impl] = ACTIONS(2141), + [anon_sym_let] = ACTIONS(2141), + [anon_sym_loop] = ACTIONS(2141), + [anon_sym_match] = ACTIONS(2141), + [anon_sym_mod] = ACTIONS(2141), + [anon_sym_pub] = ACTIONS(2141), + [anon_sym_return] = ACTIONS(2141), + [anon_sym_static] = ACTIONS(2141), + [anon_sym_struct] = ACTIONS(2141), + [anon_sym_trait] = ACTIONS(2141), + [anon_sym_type] = ACTIONS(2141), + [anon_sym_union] = ACTIONS(2141), + [anon_sym_unsafe] = ACTIONS(2141), + [anon_sym_use] = ACTIONS(2141), + [anon_sym_while] = ACTIONS(2141), + [anon_sym_extern] = ACTIONS(2141), + [anon_sym_yield] = ACTIONS(2141), + [anon_sym_move] = ACTIONS(2141), + [anon_sym_try] = ACTIONS(2141), + [sym_integer_literal] = ACTIONS(2139), + [aux_sym_string_literal_token1] = ACTIONS(2139), + [sym_char_literal] = ACTIONS(2139), + [anon_sym_true] = ACTIONS(2141), + [anon_sym_false] = ACTIONS(2141), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2141), + [sym_super] = ACTIONS(2141), + [sym_crate] = ACTIONS(2141), + [sym_metavariable] = ACTIONS(2139), + [sym__raw_string_literal_start] = ACTIONS(2139), + [sym_float_literal] = ACTIONS(2139), }, [566] = { [sym_line_comment] = STATE(566), [sym_block_comment] = STATE(566), - [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_LBRACK] = ACTIONS(2010), - [anon_sym_LBRACE] = ACTIONS(2010), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(2010), - [anon_sym_BANG] = ACTIONS(2010), - [anon_sym_AMP] = ACTIONS(2010), - [anon_sym_PIPE] = ACTIONS(2010), - [anon_sym_LT] = ACTIONS(2010), - [anon_sym_DOT_DOT] = ACTIONS(2010), - [anon_sym_COLON_COLON] = ACTIONS(2010), - [anon_sym_POUND] = ACTIONS(2010), - [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_extern] = ACTIONS(2012), - [anon_sym_yield] = ACTIONS(2012), - [anon_sym_move] = ACTIONS(2012), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2012), - [sym_super] = ACTIONS(2012), - [sym_crate] = ACTIONS(2012), - [sym_metavariable] = ACTIONS(2010), - [sym__raw_string_literal_start] = ACTIONS(2010), - [sym_float_literal] = ACTIONS(2010), + [ts_builtin_sym_end] = ACTIONS(2143), + [sym_identifier] = ACTIONS(2145), + [anon_sym_SEMI] = ACTIONS(2143), + [anon_sym_macro_rules_BANG] = ACTIONS(2143), + [anon_sym_LPAREN] = ACTIONS(2143), + [anon_sym_LBRACK] = ACTIONS(2143), + [anon_sym_LBRACE] = ACTIONS(2143), + [anon_sym_RBRACE] = ACTIONS(2143), + [anon_sym_macro] = ACTIONS(2145), + [anon_sym_STAR] = ACTIONS(2143), + [anon_sym_u8] = ACTIONS(2145), + [anon_sym_i8] = ACTIONS(2145), + [anon_sym_u16] = ACTIONS(2145), + [anon_sym_i16] = ACTIONS(2145), + [anon_sym_u32] = ACTIONS(2145), + [anon_sym_i32] = ACTIONS(2145), + [anon_sym_u64] = ACTIONS(2145), + [anon_sym_i64] = ACTIONS(2145), + [anon_sym_u128] = ACTIONS(2145), + [anon_sym_i128] = ACTIONS(2145), + [anon_sym_isize] = ACTIONS(2145), + [anon_sym_usize] = ACTIONS(2145), + [anon_sym_f32] = ACTIONS(2145), + [anon_sym_f64] = ACTIONS(2145), + [anon_sym_bool] = ACTIONS(2145), + [anon_sym_str] = ACTIONS(2145), + [anon_sym_char] = ACTIONS(2145), + [anon_sym_DASH] = ACTIONS(2143), + [anon_sym_BANG] = ACTIONS(2143), + [anon_sym_AMP] = ACTIONS(2143), + [anon_sym_PIPE] = ACTIONS(2143), + [anon_sym_LT] = ACTIONS(2143), + [anon_sym_DOT_DOT] = ACTIONS(2143), + [anon_sym_COLON_COLON] = ACTIONS(2143), + [anon_sym_POUND] = ACTIONS(2143), + [anon_sym_SQUOTE] = ACTIONS(2145), + [anon_sym_async] = ACTIONS(2145), + [anon_sym_break] = ACTIONS(2145), + [anon_sym_const] = ACTIONS(2145), + [anon_sym_continue] = ACTIONS(2145), + [anon_sym_default] = ACTIONS(2145), + [anon_sym_enum] = ACTIONS(2145), + [anon_sym_fn] = ACTIONS(2145), + [anon_sym_for] = ACTIONS(2145), + [anon_sym_if] = ACTIONS(2145), + [anon_sym_impl] = ACTIONS(2145), + [anon_sym_let] = ACTIONS(2145), + [anon_sym_loop] = ACTIONS(2145), + [anon_sym_match] = ACTIONS(2145), + [anon_sym_mod] = ACTIONS(2145), + [anon_sym_pub] = ACTIONS(2145), + [anon_sym_return] = ACTIONS(2145), + [anon_sym_static] = ACTIONS(2145), + [anon_sym_struct] = ACTIONS(2145), + [anon_sym_trait] = ACTIONS(2145), + [anon_sym_type] = ACTIONS(2145), + [anon_sym_union] = ACTIONS(2145), + [anon_sym_unsafe] = ACTIONS(2145), + [anon_sym_use] = ACTIONS(2145), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_extern] = ACTIONS(2145), + [anon_sym_yield] = ACTIONS(2145), + [anon_sym_move] = ACTIONS(2145), + [anon_sym_try] = ACTIONS(2145), + [sym_integer_literal] = ACTIONS(2143), + [aux_sym_string_literal_token1] = ACTIONS(2143), + [sym_char_literal] = ACTIONS(2143), + [anon_sym_true] = ACTIONS(2145), + [anon_sym_false] = ACTIONS(2145), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2145), + [sym_super] = ACTIONS(2145), + [sym_crate] = ACTIONS(2145), + [sym_metavariable] = ACTIONS(2143), + [sym__raw_string_literal_start] = ACTIONS(2143), + [sym_float_literal] = ACTIONS(2143), }, [567] = { [sym_line_comment] = STATE(567), [sym_block_comment] = STATE(567), - [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_LBRACK] = ACTIONS(2014), - [anon_sym_LBRACE] = ACTIONS(2014), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(2014), - [anon_sym_BANG] = ACTIONS(2014), - [anon_sym_AMP] = ACTIONS(2014), - [anon_sym_PIPE] = ACTIONS(2014), - [anon_sym_LT] = ACTIONS(2014), - [anon_sym_DOT_DOT] = ACTIONS(2014), - [anon_sym_COLON_COLON] = ACTIONS(2014), - [anon_sym_POUND] = ACTIONS(2014), - [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_extern] = ACTIONS(2016), - [anon_sym_yield] = ACTIONS(2016), - [anon_sym_move] = ACTIONS(2016), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2016), - [sym_super] = ACTIONS(2016), - [sym_crate] = ACTIONS(2016), - [sym_metavariable] = ACTIONS(2014), - [sym__raw_string_literal_start] = ACTIONS(2014), - [sym_float_literal] = ACTIONS(2014), + [ts_builtin_sym_end] = ACTIONS(2147), + [sym_identifier] = ACTIONS(2149), + [anon_sym_SEMI] = ACTIONS(2147), + [anon_sym_macro_rules_BANG] = ACTIONS(2147), + [anon_sym_LPAREN] = ACTIONS(2147), + [anon_sym_LBRACK] = ACTIONS(2147), + [anon_sym_LBRACE] = ACTIONS(2147), + [anon_sym_RBRACE] = ACTIONS(2147), + [anon_sym_macro] = ACTIONS(2149), + [anon_sym_STAR] = ACTIONS(2147), + [anon_sym_u8] = ACTIONS(2149), + [anon_sym_i8] = ACTIONS(2149), + [anon_sym_u16] = ACTIONS(2149), + [anon_sym_i16] = ACTIONS(2149), + [anon_sym_u32] = ACTIONS(2149), + [anon_sym_i32] = ACTIONS(2149), + [anon_sym_u64] = ACTIONS(2149), + [anon_sym_i64] = ACTIONS(2149), + [anon_sym_u128] = ACTIONS(2149), + [anon_sym_i128] = ACTIONS(2149), + [anon_sym_isize] = ACTIONS(2149), + [anon_sym_usize] = ACTIONS(2149), + [anon_sym_f32] = ACTIONS(2149), + [anon_sym_f64] = ACTIONS(2149), + [anon_sym_bool] = ACTIONS(2149), + [anon_sym_str] = ACTIONS(2149), + [anon_sym_char] = ACTIONS(2149), + [anon_sym_DASH] = ACTIONS(2147), + [anon_sym_BANG] = ACTIONS(2147), + [anon_sym_AMP] = ACTIONS(2147), + [anon_sym_PIPE] = ACTIONS(2147), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_DOT_DOT] = ACTIONS(2147), + [anon_sym_COLON_COLON] = ACTIONS(2147), + [anon_sym_POUND] = ACTIONS(2147), + [anon_sym_SQUOTE] = ACTIONS(2149), + [anon_sym_async] = ACTIONS(2149), + [anon_sym_break] = ACTIONS(2149), + [anon_sym_const] = ACTIONS(2149), + [anon_sym_continue] = ACTIONS(2149), + [anon_sym_default] = ACTIONS(2149), + [anon_sym_enum] = ACTIONS(2149), + [anon_sym_fn] = ACTIONS(2149), + [anon_sym_for] = ACTIONS(2149), + [anon_sym_if] = ACTIONS(2149), + [anon_sym_impl] = ACTIONS(2149), + [anon_sym_let] = ACTIONS(2149), + [anon_sym_loop] = ACTIONS(2149), + [anon_sym_match] = ACTIONS(2149), + [anon_sym_mod] = ACTIONS(2149), + [anon_sym_pub] = ACTIONS(2149), + [anon_sym_return] = ACTIONS(2149), + [anon_sym_static] = ACTIONS(2149), + [anon_sym_struct] = ACTIONS(2149), + [anon_sym_trait] = ACTIONS(2149), + [anon_sym_type] = ACTIONS(2149), + [anon_sym_union] = ACTIONS(2149), + [anon_sym_unsafe] = ACTIONS(2149), + [anon_sym_use] = ACTIONS(2149), + [anon_sym_while] = ACTIONS(2149), + [anon_sym_extern] = ACTIONS(2149), + [anon_sym_yield] = ACTIONS(2149), + [anon_sym_move] = ACTIONS(2149), + [anon_sym_try] = ACTIONS(2149), + [sym_integer_literal] = ACTIONS(2147), + [aux_sym_string_literal_token1] = ACTIONS(2147), + [sym_char_literal] = ACTIONS(2147), + [anon_sym_true] = ACTIONS(2149), + [anon_sym_false] = ACTIONS(2149), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2149), + [sym_super] = ACTIONS(2149), + [sym_crate] = ACTIONS(2149), + [sym_metavariable] = ACTIONS(2147), + [sym__raw_string_literal_start] = ACTIONS(2147), + [sym_float_literal] = ACTIONS(2147), }, [568] = { [sym_line_comment] = STATE(568), [sym_block_comment] = STATE(568), - [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_LBRACK] = ACTIONS(2018), - [anon_sym_LBRACE] = ACTIONS(2018), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(2018), - [anon_sym_BANG] = ACTIONS(2018), - [anon_sym_AMP] = ACTIONS(2018), - [anon_sym_PIPE] = ACTIONS(2018), - [anon_sym_LT] = ACTIONS(2018), - [anon_sym_DOT_DOT] = ACTIONS(2018), - [anon_sym_COLON_COLON] = ACTIONS(2018), - [anon_sym_POUND] = ACTIONS(2018), - [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_extern] = ACTIONS(2020), - [anon_sym_yield] = ACTIONS(2020), - [anon_sym_move] = ACTIONS(2020), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2020), - [sym_super] = ACTIONS(2020), - [sym_crate] = ACTIONS(2020), - [sym_metavariable] = ACTIONS(2018), - [sym__raw_string_literal_start] = ACTIONS(2018), - [sym_float_literal] = ACTIONS(2018), + [ts_builtin_sym_end] = ACTIONS(2151), + [sym_identifier] = ACTIONS(2153), + [anon_sym_SEMI] = ACTIONS(2151), + [anon_sym_macro_rules_BANG] = ACTIONS(2151), + [anon_sym_LPAREN] = ACTIONS(2151), + [anon_sym_LBRACK] = ACTIONS(2151), + [anon_sym_LBRACE] = ACTIONS(2151), + [anon_sym_RBRACE] = ACTIONS(2151), + [anon_sym_macro] = ACTIONS(2153), + [anon_sym_STAR] = ACTIONS(2151), + [anon_sym_u8] = ACTIONS(2153), + [anon_sym_i8] = ACTIONS(2153), + [anon_sym_u16] = ACTIONS(2153), + [anon_sym_i16] = ACTIONS(2153), + [anon_sym_u32] = ACTIONS(2153), + [anon_sym_i32] = ACTIONS(2153), + [anon_sym_u64] = ACTIONS(2153), + [anon_sym_i64] = ACTIONS(2153), + [anon_sym_u128] = ACTIONS(2153), + [anon_sym_i128] = ACTIONS(2153), + [anon_sym_isize] = ACTIONS(2153), + [anon_sym_usize] = ACTIONS(2153), + [anon_sym_f32] = ACTIONS(2153), + [anon_sym_f64] = ACTIONS(2153), + [anon_sym_bool] = ACTIONS(2153), + [anon_sym_str] = ACTIONS(2153), + [anon_sym_char] = ACTIONS(2153), + [anon_sym_DASH] = ACTIONS(2151), + [anon_sym_BANG] = ACTIONS(2151), + [anon_sym_AMP] = ACTIONS(2151), + [anon_sym_PIPE] = ACTIONS(2151), + [anon_sym_LT] = ACTIONS(2151), + [anon_sym_DOT_DOT] = ACTIONS(2151), + [anon_sym_COLON_COLON] = ACTIONS(2151), + [anon_sym_POUND] = ACTIONS(2151), + [anon_sym_SQUOTE] = ACTIONS(2153), + [anon_sym_async] = ACTIONS(2153), + [anon_sym_break] = ACTIONS(2153), + [anon_sym_const] = ACTIONS(2153), + [anon_sym_continue] = ACTIONS(2153), + [anon_sym_default] = ACTIONS(2153), + [anon_sym_enum] = ACTIONS(2153), + [anon_sym_fn] = ACTIONS(2153), + [anon_sym_for] = ACTIONS(2153), + [anon_sym_if] = ACTIONS(2153), + [anon_sym_impl] = ACTIONS(2153), + [anon_sym_let] = ACTIONS(2153), + [anon_sym_loop] = ACTIONS(2153), + [anon_sym_match] = ACTIONS(2153), + [anon_sym_mod] = ACTIONS(2153), + [anon_sym_pub] = ACTIONS(2153), + [anon_sym_return] = ACTIONS(2153), + [anon_sym_static] = ACTIONS(2153), + [anon_sym_struct] = ACTIONS(2153), + [anon_sym_trait] = ACTIONS(2153), + [anon_sym_type] = ACTIONS(2153), + [anon_sym_union] = ACTIONS(2153), + [anon_sym_unsafe] = ACTIONS(2153), + [anon_sym_use] = ACTIONS(2153), + [anon_sym_while] = ACTIONS(2153), + [anon_sym_extern] = ACTIONS(2153), + [anon_sym_yield] = ACTIONS(2153), + [anon_sym_move] = ACTIONS(2153), + [anon_sym_try] = ACTIONS(2153), + [sym_integer_literal] = ACTIONS(2151), + [aux_sym_string_literal_token1] = ACTIONS(2151), + [sym_char_literal] = ACTIONS(2151), + [anon_sym_true] = ACTIONS(2153), + [anon_sym_false] = ACTIONS(2153), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2153), + [sym_super] = ACTIONS(2153), + [sym_crate] = ACTIONS(2153), + [sym_metavariable] = ACTIONS(2151), + [sym__raw_string_literal_start] = ACTIONS(2151), + [sym_float_literal] = ACTIONS(2151), }, [569] = { [sym_line_comment] = STATE(569), [sym_block_comment] = STATE(569), - [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_LBRACK] = ACTIONS(2022), - [anon_sym_LBRACE] = ACTIONS(2022), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(2022), - [anon_sym_BANG] = ACTIONS(2022), - [anon_sym_AMP] = ACTIONS(2022), - [anon_sym_PIPE] = ACTIONS(2022), - [anon_sym_LT] = ACTIONS(2022), - [anon_sym_DOT_DOT] = ACTIONS(2022), - [anon_sym_COLON_COLON] = ACTIONS(2022), - [anon_sym_POUND] = ACTIONS(2022), - [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_extern] = ACTIONS(2024), - [anon_sym_yield] = ACTIONS(2024), - [anon_sym_move] = ACTIONS(2024), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2024), - [sym_super] = ACTIONS(2024), - [sym_crate] = ACTIONS(2024), - [sym_metavariable] = ACTIONS(2022), - [sym__raw_string_literal_start] = ACTIONS(2022), - [sym_float_literal] = ACTIONS(2022), + [ts_builtin_sym_end] = ACTIONS(2155), + [sym_identifier] = ACTIONS(2157), + [anon_sym_SEMI] = ACTIONS(2155), + [anon_sym_macro_rules_BANG] = ACTIONS(2155), + [anon_sym_LPAREN] = ACTIONS(2155), + [anon_sym_LBRACK] = ACTIONS(2155), + [anon_sym_LBRACE] = ACTIONS(2155), + [anon_sym_RBRACE] = ACTIONS(2155), + [anon_sym_macro] = ACTIONS(2157), + [anon_sym_STAR] = ACTIONS(2155), + [anon_sym_u8] = ACTIONS(2157), + [anon_sym_i8] = ACTIONS(2157), + [anon_sym_u16] = ACTIONS(2157), + [anon_sym_i16] = ACTIONS(2157), + [anon_sym_u32] = ACTIONS(2157), + [anon_sym_i32] = ACTIONS(2157), + [anon_sym_u64] = ACTIONS(2157), + [anon_sym_i64] = ACTIONS(2157), + [anon_sym_u128] = ACTIONS(2157), + [anon_sym_i128] = ACTIONS(2157), + [anon_sym_isize] = ACTIONS(2157), + [anon_sym_usize] = ACTIONS(2157), + [anon_sym_f32] = ACTIONS(2157), + [anon_sym_f64] = ACTIONS(2157), + [anon_sym_bool] = ACTIONS(2157), + [anon_sym_str] = ACTIONS(2157), + [anon_sym_char] = ACTIONS(2157), + [anon_sym_DASH] = ACTIONS(2155), + [anon_sym_BANG] = ACTIONS(2155), + [anon_sym_AMP] = ACTIONS(2155), + [anon_sym_PIPE] = ACTIONS(2155), + [anon_sym_LT] = ACTIONS(2155), + [anon_sym_DOT_DOT] = ACTIONS(2155), + [anon_sym_COLON_COLON] = ACTIONS(2155), + [anon_sym_POUND] = ACTIONS(2155), + [anon_sym_SQUOTE] = ACTIONS(2157), + [anon_sym_async] = ACTIONS(2157), + [anon_sym_break] = ACTIONS(2157), + [anon_sym_const] = ACTIONS(2157), + [anon_sym_continue] = ACTIONS(2157), + [anon_sym_default] = ACTIONS(2157), + [anon_sym_enum] = ACTIONS(2157), + [anon_sym_fn] = ACTIONS(2157), + [anon_sym_for] = ACTIONS(2157), + [anon_sym_if] = ACTIONS(2157), + [anon_sym_impl] = ACTIONS(2157), + [anon_sym_let] = ACTIONS(2157), + [anon_sym_loop] = ACTIONS(2157), + [anon_sym_match] = ACTIONS(2157), + [anon_sym_mod] = ACTIONS(2157), + [anon_sym_pub] = ACTIONS(2157), + [anon_sym_return] = ACTIONS(2157), + [anon_sym_static] = ACTIONS(2157), + [anon_sym_struct] = ACTIONS(2157), + [anon_sym_trait] = ACTIONS(2157), + [anon_sym_type] = ACTIONS(2157), + [anon_sym_union] = ACTIONS(2157), + [anon_sym_unsafe] = ACTIONS(2157), + [anon_sym_use] = ACTIONS(2157), + [anon_sym_while] = ACTIONS(2157), + [anon_sym_extern] = ACTIONS(2157), + [anon_sym_yield] = ACTIONS(2157), + [anon_sym_move] = ACTIONS(2157), + [anon_sym_try] = ACTIONS(2157), + [sym_integer_literal] = ACTIONS(2155), + [aux_sym_string_literal_token1] = ACTIONS(2155), + [sym_char_literal] = ACTIONS(2155), + [anon_sym_true] = ACTIONS(2157), + [anon_sym_false] = ACTIONS(2157), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2157), + [sym_super] = ACTIONS(2157), + [sym_crate] = ACTIONS(2157), + [sym_metavariable] = ACTIONS(2155), + [sym__raw_string_literal_start] = ACTIONS(2155), + [sym_float_literal] = ACTIONS(2155), }, [570] = { [sym_line_comment] = STATE(570), [sym_block_comment] = STATE(570), - [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_LBRACK] = ACTIONS(2026), - [anon_sym_LBRACE] = ACTIONS(2026), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(2026), - [anon_sym_BANG] = ACTIONS(2026), - [anon_sym_AMP] = ACTIONS(2026), - [anon_sym_PIPE] = ACTIONS(2026), - [anon_sym_LT] = ACTIONS(2026), - [anon_sym_DOT_DOT] = ACTIONS(2026), - [anon_sym_COLON_COLON] = ACTIONS(2026), - [anon_sym_POUND] = ACTIONS(2026), - [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_extern] = ACTIONS(2028), - [anon_sym_yield] = ACTIONS(2028), - [anon_sym_move] = ACTIONS(2028), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2028), - [sym_super] = ACTIONS(2028), - [sym_crate] = ACTIONS(2028), - [sym_metavariable] = ACTIONS(2026), - [sym__raw_string_literal_start] = ACTIONS(2026), - [sym_float_literal] = ACTIONS(2026), + [ts_builtin_sym_end] = ACTIONS(2159), + [sym_identifier] = ACTIONS(2161), + [anon_sym_SEMI] = ACTIONS(2159), + [anon_sym_macro_rules_BANG] = ACTIONS(2159), + [anon_sym_LPAREN] = ACTIONS(2159), + [anon_sym_LBRACK] = ACTIONS(2159), + [anon_sym_LBRACE] = ACTIONS(2159), + [anon_sym_RBRACE] = ACTIONS(2159), + [anon_sym_macro] = ACTIONS(2161), + [anon_sym_STAR] = ACTIONS(2159), + [anon_sym_u8] = ACTIONS(2161), + [anon_sym_i8] = ACTIONS(2161), + [anon_sym_u16] = ACTIONS(2161), + [anon_sym_i16] = ACTIONS(2161), + [anon_sym_u32] = ACTIONS(2161), + [anon_sym_i32] = ACTIONS(2161), + [anon_sym_u64] = ACTIONS(2161), + [anon_sym_i64] = ACTIONS(2161), + [anon_sym_u128] = ACTIONS(2161), + [anon_sym_i128] = ACTIONS(2161), + [anon_sym_isize] = ACTIONS(2161), + [anon_sym_usize] = ACTIONS(2161), + [anon_sym_f32] = ACTIONS(2161), + [anon_sym_f64] = ACTIONS(2161), + [anon_sym_bool] = ACTIONS(2161), + [anon_sym_str] = ACTIONS(2161), + [anon_sym_char] = ACTIONS(2161), + [anon_sym_DASH] = ACTIONS(2159), + [anon_sym_BANG] = ACTIONS(2159), + [anon_sym_AMP] = ACTIONS(2159), + [anon_sym_PIPE] = ACTIONS(2159), + [anon_sym_LT] = ACTIONS(2159), + [anon_sym_DOT_DOT] = ACTIONS(2159), + [anon_sym_COLON_COLON] = ACTIONS(2159), + [anon_sym_POUND] = ACTIONS(2159), + [anon_sym_SQUOTE] = ACTIONS(2161), + [anon_sym_async] = ACTIONS(2161), + [anon_sym_break] = ACTIONS(2161), + [anon_sym_const] = ACTIONS(2161), + [anon_sym_continue] = ACTIONS(2161), + [anon_sym_default] = ACTIONS(2161), + [anon_sym_enum] = ACTIONS(2161), + [anon_sym_fn] = ACTIONS(2161), + [anon_sym_for] = ACTIONS(2161), + [anon_sym_if] = ACTIONS(2161), + [anon_sym_impl] = ACTIONS(2161), + [anon_sym_let] = ACTIONS(2161), + [anon_sym_loop] = ACTIONS(2161), + [anon_sym_match] = ACTIONS(2161), + [anon_sym_mod] = ACTIONS(2161), + [anon_sym_pub] = ACTIONS(2161), + [anon_sym_return] = ACTIONS(2161), + [anon_sym_static] = ACTIONS(2161), + [anon_sym_struct] = ACTIONS(2161), + [anon_sym_trait] = ACTIONS(2161), + [anon_sym_type] = ACTIONS(2161), + [anon_sym_union] = ACTIONS(2161), + [anon_sym_unsafe] = ACTIONS(2161), + [anon_sym_use] = ACTIONS(2161), + [anon_sym_while] = ACTIONS(2161), + [anon_sym_extern] = ACTIONS(2161), + [anon_sym_yield] = ACTIONS(2161), + [anon_sym_move] = ACTIONS(2161), + [anon_sym_try] = ACTIONS(2161), + [sym_integer_literal] = ACTIONS(2159), + [aux_sym_string_literal_token1] = ACTIONS(2159), + [sym_char_literal] = ACTIONS(2159), + [anon_sym_true] = ACTIONS(2161), + [anon_sym_false] = ACTIONS(2161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2161), + [sym_super] = ACTIONS(2161), + [sym_crate] = ACTIONS(2161), + [sym_metavariable] = ACTIONS(2159), + [sym__raw_string_literal_start] = ACTIONS(2159), + [sym_float_literal] = ACTIONS(2159), }, [571] = { [sym_line_comment] = STATE(571), [sym_block_comment] = STATE(571), - [ts_builtin_sym_end] = ACTIONS(2030), - [sym_identifier] = ACTIONS(2032), - [anon_sym_SEMI] = ACTIONS(2030), - [anon_sym_macro_rules_BANG] = ACTIONS(2030), - [anon_sym_LPAREN] = ACTIONS(2030), - [anon_sym_LBRACK] = ACTIONS(2030), - [anon_sym_LBRACE] = ACTIONS(2030), - [anon_sym_RBRACE] = ACTIONS(2030), - [anon_sym_STAR] = ACTIONS(2030), - [anon_sym_u8] = ACTIONS(2032), - [anon_sym_i8] = ACTIONS(2032), - [anon_sym_u16] = ACTIONS(2032), - [anon_sym_i16] = ACTIONS(2032), - [anon_sym_u32] = ACTIONS(2032), - [anon_sym_i32] = ACTIONS(2032), - [anon_sym_u64] = ACTIONS(2032), - [anon_sym_i64] = ACTIONS(2032), - [anon_sym_u128] = ACTIONS(2032), - [anon_sym_i128] = ACTIONS(2032), - [anon_sym_isize] = ACTIONS(2032), - [anon_sym_usize] = ACTIONS(2032), - [anon_sym_f32] = ACTIONS(2032), - [anon_sym_f64] = ACTIONS(2032), - [anon_sym_bool] = ACTIONS(2032), - [anon_sym_str] = ACTIONS(2032), - [anon_sym_char] = ACTIONS(2032), - [anon_sym_DASH] = ACTIONS(2030), - [anon_sym_BANG] = ACTIONS(2030), - [anon_sym_AMP] = ACTIONS(2030), - [anon_sym_PIPE] = ACTIONS(2030), - [anon_sym_LT] = ACTIONS(2030), - [anon_sym_DOT_DOT] = ACTIONS(2030), - [anon_sym_COLON_COLON] = ACTIONS(2030), - [anon_sym_POUND] = ACTIONS(2030), - [anon_sym_SQUOTE] = ACTIONS(2032), - [anon_sym_async] = ACTIONS(2032), - [anon_sym_break] = ACTIONS(2032), - [anon_sym_const] = ACTIONS(2032), - [anon_sym_continue] = ACTIONS(2032), - [anon_sym_default] = ACTIONS(2032), - [anon_sym_enum] = ACTIONS(2032), - [anon_sym_fn] = ACTIONS(2032), - [anon_sym_for] = ACTIONS(2032), - [anon_sym_if] = ACTIONS(2032), - [anon_sym_impl] = ACTIONS(2032), - [anon_sym_let] = ACTIONS(2032), - [anon_sym_loop] = ACTIONS(2032), - [anon_sym_match] = ACTIONS(2032), - [anon_sym_mod] = ACTIONS(2032), - [anon_sym_pub] = ACTIONS(2032), - [anon_sym_return] = ACTIONS(2032), - [anon_sym_static] = ACTIONS(2032), - [anon_sym_struct] = ACTIONS(2032), - [anon_sym_trait] = ACTIONS(2032), - [anon_sym_type] = ACTIONS(2032), - [anon_sym_union] = ACTIONS(2032), - [anon_sym_unsafe] = ACTIONS(2032), - [anon_sym_use] = ACTIONS(2032), - [anon_sym_while] = ACTIONS(2032), - [anon_sym_extern] = ACTIONS(2032), - [anon_sym_yield] = ACTIONS(2032), - [anon_sym_move] = ACTIONS(2032), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2032), - [sym_super] = ACTIONS(2032), - [sym_crate] = ACTIONS(2032), - [sym_metavariable] = ACTIONS(2030), - [sym__raw_string_literal_start] = ACTIONS(2030), - [sym_float_literal] = ACTIONS(2030), + [ts_builtin_sym_end] = ACTIONS(2163), + [sym_identifier] = ACTIONS(2165), + [anon_sym_SEMI] = ACTIONS(2163), + [anon_sym_macro_rules_BANG] = ACTIONS(2163), + [anon_sym_LPAREN] = ACTIONS(2163), + [anon_sym_LBRACK] = ACTIONS(2163), + [anon_sym_LBRACE] = ACTIONS(2163), + [anon_sym_RBRACE] = ACTIONS(2163), + [anon_sym_macro] = ACTIONS(2165), + [anon_sym_STAR] = ACTIONS(2163), + [anon_sym_u8] = ACTIONS(2165), + [anon_sym_i8] = ACTIONS(2165), + [anon_sym_u16] = ACTIONS(2165), + [anon_sym_i16] = ACTIONS(2165), + [anon_sym_u32] = ACTIONS(2165), + [anon_sym_i32] = ACTIONS(2165), + [anon_sym_u64] = ACTIONS(2165), + [anon_sym_i64] = ACTIONS(2165), + [anon_sym_u128] = ACTIONS(2165), + [anon_sym_i128] = ACTIONS(2165), + [anon_sym_isize] = ACTIONS(2165), + [anon_sym_usize] = ACTIONS(2165), + [anon_sym_f32] = ACTIONS(2165), + [anon_sym_f64] = ACTIONS(2165), + [anon_sym_bool] = ACTIONS(2165), + [anon_sym_str] = ACTIONS(2165), + [anon_sym_char] = ACTIONS(2165), + [anon_sym_DASH] = ACTIONS(2163), + [anon_sym_BANG] = ACTIONS(2163), + [anon_sym_AMP] = ACTIONS(2163), + [anon_sym_PIPE] = ACTIONS(2163), + [anon_sym_LT] = ACTIONS(2163), + [anon_sym_DOT_DOT] = ACTIONS(2163), + [anon_sym_COLON_COLON] = ACTIONS(2163), + [anon_sym_POUND] = ACTIONS(2163), + [anon_sym_SQUOTE] = ACTIONS(2165), + [anon_sym_async] = ACTIONS(2165), + [anon_sym_break] = ACTIONS(2165), + [anon_sym_const] = ACTIONS(2165), + [anon_sym_continue] = ACTIONS(2165), + [anon_sym_default] = ACTIONS(2165), + [anon_sym_enum] = ACTIONS(2165), + [anon_sym_fn] = ACTIONS(2165), + [anon_sym_for] = ACTIONS(2165), + [anon_sym_if] = ACTIONS(2165), + [anon_sym_impl] = ACTIONS(2165), + [anon_sym_let] = ACTIONS(2165), + [anon_sym_loop] = ACTIONS(2165), + [anon_sym_match] = ACTIONS(2165), + [anon_sym_mod] = ACTIONS(2165), + [anon_sym_pub] = ACTIONS(2165), + [anon_sym_return] = ACTIONS(2165), + [anon_sym_static] = ACTIONS(2165), + [anon_sym_struct] = ACTIONS(2165), + [anon_sym_trait] = ACTIONS(2165), + [anon_sym_type] = ACTIONS(2165), + [anon_sym_union] = ACTIONS(2165), + [anon_sym_unsafe] = ACTIONS(2165), + [anon_sym_use] = ACTIONS(2165), + [anon_sym_while] = ACTIONS(2165), + [anon_sym_extern] = ACTIONS(2165), + [anon_sym_yield] = ACTIONS(2165), + [anon_sym_move] = ACTIONS(2165), + [anon_sym_try] = ACTIONS(2165), + [sym_integer_literal] = ACTIONS(2163), + [aux_sym_string_literal_token1] = ACTIONS(2163), + [sym_char_literal] = ACTIONS(2163), + [anon_sym_true] = ACTIONS(2165), + [anon_sym_false] = ACTIONS(2165), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2165), + [sym_super] = ACTIONS(2165), + [sym_crate] = ACTIONS(2165), + [sym_metavariable] = ACTIONS(2163), + [sym__raw_string_literal_start] = ACTIONS(2163), + [sym_float_literal] = ACTIONS(2163), }, [572] = { [sym_line_comment] = STATE(572), [sym_block_comment] = STATE(572), - [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_LBRACK] = ACTIONS(2034), - [anon_sym_LBRACE] = ACTIONS(2034), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(2034), - [anon_sym_BANG] = ACTIONS(2034), - [anon_sym_AMP] = ACTIONS(2034), - [anon_sym_PIPE] = ACTIONS(2034), - [anon_sym_LT] = ACTIONS(2034), - [anon_sym_DOT_DOT] = ACTIONS(2034), - [anon_sym_COLON_COLON] = ACTIONS(2034), - [anon_sym_POUND] = ACTIONS(2034), - [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_extern] = ACTIONS(2036), - [anon_sym_yield] = ACTIONS(2036), - [anon_sym_move] = ACTIONS(2036), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2036), - [sym_super] = ACTIONS(2036), - [sym_crate] = ACTIONS(2036), - [sym_metavariable] = ACTIONS(2034), - [sym__raw_string_literal_start] = ACTIONS(2034), - [sym_float_literal] = ACTIONS(2034), + [ts_builtin_sym_end] = ACTIONS(2167), + [sym_identifier] = ACTIONS(2169), + [anon_sym_SEMI] = ACTIONS(2167), + [anon_sym_macro_rules_BANG] = ACTIONS(2167), + [anon_sym_LPAREN] = ACTIONS(2167), + [anon_sym_LBRACK] = ACTIONS(2167), + [anon_sym_LBRACE] = ACTIONS(2167), + [anon_sym_RBRACE] = ACTIONS(2167), + [anon_sym_macro] = ACTIONS(2169), + [anon_sym_STAR] = ACTIONS(2167), + [anon_sym_u8] = ACTIONS(2169), + [anon_sym_i8] = ACTIONS(2169), + [anon_sym_u16] = ACTIONS(2169), + [anon_sym_i16] = ACTIONS(2169), + [anon_sym_u32] = ACTIONS(2169), + [anon_sym_i32] = ACTIONS(2169), + [anon_sym_u64] = ACTIONS(2169), + [anon_sym_i64] = ACTIONS(2169), + [anon_sym_u128] = ACTIONS(2169), + [anon_sym_i128] = ACTIONS(2169), + [anon_sym_isize] = ACTIONS(2169), + [anon_sym_usize] = ACTIONS(2169), + [anon_sym_f32] = ACTIONS(2169), + [anon_sym_f64] = ACTIONS(2169), + [anon_sym_bool] = ACTIONS(2169), + [anon_sym_str] = ACTIONS(2169), + [anon_sym_char] = ACTIONS(2169), + [anon_sym_DASH] = ACTIONS(2167), + [anon_sym_BANG] = ACTIONS(2167), + [anon_sym_AMP] = ACTIONS(2167), + [anon_sym_PIPE] = ACTIONS(2167), + [anon_sym_LT] = ACTIONS(2167), + [anon_sym_DOT_DOT] = ACTIONS(2167), + [anon_sym_COLON_COLON] = ACTIONS(2167), + [anon_sym_POUND] = ACTIONS(2167), + [anon_sym_SQUOTE] = ACTIONS(2169), + [anon_sym_async] = ACTIONS(2169), + [anon_sym_break] = ACTIONS(2169), + [anon_sym_const] = ACTIONS(2169), + [anon_sym_continue] = ACTIONS(2169), + [anon_sym_default] = ACTIONS(2169), + [anon_sym_enum] = ACTIONS(2169), + [anon_sym_fn] = ACTIONS(2169), + [anon_sym_for] = ACTIONS(2169), + [anon_sym_if] = ACTIONS(2169), + [anon_sym_impl] = ACTIONS(2169), + [anon_sym_let] = ACTIONS(2169), + [anon_sym_loop] = ACTIONS(2169), + [anon_sym_match] = ACTIONS(2169), + [anon_sym_mod] = ACTIONS(2169), + [anon_sym_pub] = ACTIONS(2169), + [anon_sym_return] = ACTIONS(2169), + [anon_sym_static] = ACTIONS(2169), + [anon_sym_struct] = ACTIONS(2169), + [anon_sym_trait] = ACTIONS(2169), + [anon_sym_type] = ACTIONS(2169), + [anon_sym_union] = ACTIONS(2169), + [anon_sym_unsafe] = ACTIONS(2169), + [anon_sym_use] = ACTIONS(2169), + [anon_sym_while] = ACTIONS(2169), + [anon_sym_extern] = ACTIONS(2169), + [anon_sym_yield] = ACTIONS(2169), + [anon_sym_move] = ACTIONS(2169), + [anon_sym_try] = ACTIONS(2169), + [sym_integer_literal] = ACTIONS(2167), + [aux_sym_string_literal_token1] = ACTIONS(2167), + [sym_char_literal] = ACTIONS(2167), + [anon_sym_true] = ACTIONS(2169), + [anon_sym_false] = ACTIONS(2169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2169), + [sym_super] = ACTIONS(2169), + [sym_crate] = ACTIONS(2169), + [sym_metavariable] = ACTIONS(2167), + [sym__raw_string_literal_start] = ACTIONS(2167), + [sym_float_literal] = ACTIONS(2167), }, [573] = { [sym_line_comment] = STATE(573), [sym_block_comment] = STATE(573), - [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_LBRACK] = ACTIONS(2038), - [anon_sym_LBRACE] = ACTIONS(2038), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(2038), - [anon_sym_BANG] = ACTIONS(2038), - [anon_sym_AMP] = ACTIONS(2038), - [anon_sym_PIPE] = ACTIONS(2038), - [anon_sym_LT] = ACTIONS(2038), - [anon_sym_DOT_DOT] = ACTIONS(2038), - [anon_sym_COLON_COLON] = ACTIONS(2038), - [anon_sym_POUND] = ACTIONS(2038), - [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_extern] = ACTIONS(2040), - [anon_sym_yield] = ACTIONS(2040), - [anon_sym_move] = ACTIONS(2040), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2040), - [sym_super] = ACTIONS(2040), - [sym_crate] = ACTIONS(2040), - [sym_metavariable] = ACTIONS(2038), - [sym__raw_string_literal_start] = ACTIONS(2038), - [sym_float_literal] = ACTIONS(2038), + [ts_builtin_sym_end] = ACTIONS(2171), + [sym_identifier] = ACTIONS(2173), + [anon_sym_SEMI] = ACTIONS(2171), + [anon_sym_macro_rules_BANG] = ACTIONS(2171), + [anon_sym_LPAREN] = ACTIONS(2171), + [anon_sym_LBRACK] = ACTIONS(2171), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_RBRACE] = ACTIONS(2171), + [anon_sym_macro] = ACTIONS(2173), + [anon_sym_STAR] = ACTIONS(2171), + [anon_sym_u8] = ACTIONS(2173), + [anon_sym_i8] = ACTIONS(2173), + [anon_sym_u16] = ACTIONS(2173), + [anon_sym_i16] = ACTIONS(2173), + [anon_sym_u32] = ACTIONS(2173), + [anon_sym_i32] = ACTIONS(2173), + [anon_sym_u64] = ACTIONS(2173), + [anon_sym_i64] = ACTIONS(2173), + [anon_sym_u128] = ACTIONS(2173), + [anon_sym_i128] = ACTIONS(2173), + [anon_sym_isize] = ACTIONS(2173), + [anon_sym_usize] = ACTIONS(2173), + [anon_sym_f32] = ACTIONS(2173), + [anon_sym_f64] = ACTIONS(2173), + [anon_sym_bool] = ACTIONS(2173), + [anon_sym_str] = ACTIONS(2173), + [anon_sym_char] = ACTIONS(2173), + [anon_sym_DASH] = ACTIONS(2171), + [anon_sym_BANG] = ACTIONS(2171), + [anon_sym_AMP] = ACTIONS(2171), + [anon_sym_PIPE] = ACTIONS(2171), + [anon_sym_LT] = ACTIONS(2171), + [anon_sym_DOT_DOT] = ACTIONS(2171), + [anon_sym_COLON_COLON] = ACTIONS(2171), + [anon_sym_POUND] = ACTIONS(2171), + [anon_sym_SQUOTE] = ACTIONS(2173), + [anon_sym_async] = ACTIONS(2173), + [anon_sym_break] = ACTIONS(2173), + [anon_sym_const] = ACTIONS(2173), + [anon_sym_continue] = ACTIONS(2173), + [anon_sym_default] = ACTIONS(2173), + [anon_sym_enum] = ACTIONS(2173), + [anon_sym_fn] = ACTIONS(2173), + [anon_sym_for] = ACTIONS(2173), + [anon_sym_if] = ACTIONS(2173), + [anon_sym_impl] = ACTIONS(2173), + [anon_sym_let] = ACTIONS(2173), + [anon_sym_loop] = ACTIONS(2173), + [anon_sym_match] = ACTIONS(2173), + [anon_sym_mod] = ACTIONS(2173), + [anon_sym_pub] = ACTIONS(2173), + [anon_sym_return] = ACTIONS(2173), + [anon_sym_static] = ACTIONS(2173), + [anon_sym_struct] = ACTIONS(2173), + [anon_sym_trait] = ACTIONS(2173), + [anon_sym_type] = ACTIONS(2173), + [anon_sym_union] = ACTIONS(2173), + [anon_sym_unsafe] = ACTIONS(2173), + [anon_sym_use] = ACTIONS(2173), + [anon_sym_while] = ACTIONS(2173), + [anon_sym_extern] = ACTIONS(2173), + [anon_sym_yield] = ACTIONS(2173), + [anon_sym_move] = ACTIONS(2173), + [anon_sym_try] = ACTIONS(2173), + [sym_integer_literal] = ACTIONS(2171), + [aux_sym_string_literal_token1] = ACTIONS(2171), + [sym_char_literal] = ACTIONS(2171), + [anon_sym_true] = ACTIONS(2173), + [anon_sym_false] = ACTIONS(2173), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2173), + [sym_super] = ACTIONS(2173), + [sym_crate] = ACTIONS(2173), + [sym_metavariable] = ACTIONS(2171), + [sym__raw_string_literal_start] = ACTIONS(2171), + [sym_float_literal] = ACTIONS(2171), }, [574] = { [sym_line_comment] = STATE(574), [sym_block_comment] = STATE(574), - [ts_builtin_sym_end] = ACTIONS(2042), - [sym_identifier] = ACTIONS(2044), - [anon_sym_SEMI] = ACTIONS(2042), - [anon_sym_macro_rules_BANG] = ACTIONS(2042), - [anon_sym_LPAREN] = ACTIONS(2042), - [anon_sym_LBRACK] = ACTIONS(2042), - [anon_sym_LBRACE] = ACTIONS(2042), - [anon_sym_RBRACE] = ACTIONS(2042), - [anon_sym_STAR] = ACTIONS(2042), - [anon_sym_u8] = ACTIONS(2044), - [anon_sym_i8] = ACTIONS(2044), - [anon_sym_u16] = ACTIONS(2044), - [anon_sym_i16] = ACTIONS(2044), - [anon_sym_u32] = ACTIONS(2044), - [anon_sym_i32] = ACTIONS(2044), - [anon_sym_u64] = ACTIONS(2044), - [anon_sym_i64] = ACTIONS(2044), - [anon_sym_u128] = ACTIONS(2044), - [anon_sym_i128] = ACTIONS(2044), - [anon_sym_isize] = ACTIONS(2044), - [anon_sym_usize] = ACTIONS(2044), - [anon_sym_f32] = ACTIONS(2044), - [anon_sym_f64] = ACTIONS(2044), - [anon_sym_bool] = ACTIONS(2044), - [anon_sym_str] = ACTIONS(2044), - [anon_sym_char] = ACTIONS(2044), - [anon_sym_DASH] = ACTIONS(2042), - [anon_sym_BANG] = ACTIONS(2042), - [anon_sym_AMP] = ACTIONS(2042), - [anon_sym_PIPE] = ACTIONS(2042), - [anon_sym_LT] = ACTIONS(2042), - [anon_sym_DOT_DOT] = ACTIONS(2042), - [anon_sym_COLON_COLON] = ACTIONS(2042), - [anon_sym_POUND] = ACTIONS(2042), - [anon_sym_SQUOTE] = ACTIONS(2044), - [anon_sym_async] = ACTIONS(2044), - [anon_sym_break] = ACTIONS(2044), - [anon_sym_const] = ACTIONS(2044), - [anon_sym_continue] = ACTIONS(2044), - [anon_sym_default] = ACTIONS(2044), - [anon_sym_enum] = ACTIONS(2044), - [anon_sym_fn] = ACTIONS(2044), - [anon_sym_for] = ACTIONS(2044), - [anon_sym_if] = ACTIONS(2044), - [anon_sym_impl] = ACTIONS(2044), - [anon_sym_let] = ACTIONS(2044), - [anon_sym_loop] = ACTIONS(2044), - [anon_sym_match] = ACTIONS(2044), - [anon_sym_mod] = ACTIONS(2044), - [anon_sym_pub] = ACTIONS(2044), - [anon_sym_return] = ACTIONS(2044), - [anon_sym_static] = ACTIONS(2044), - [anon_sym_struct] = ACTIONS(2044), - [anon_sym_trait] = ACTIONS(2044), - [anon_sym_type] = ACTIONS(2044), - [anon_sym_union] = ACTIONS(2044), - [anon_sym_unsafe] = ACTIONS(2044), - [anon_sym_use] = ACTIONS(2044), - [anon_sym_while] = ACTIONS(2044), - [anon_sym_extern] = ACTIONS(2044), - [anon_sym_yield] = ACTIONS(2044), - [anon_sym_move] = ACTIONS(2044), - [anon_sym_try] = ACTIONS(2044), - [sym_integer_literal] = ACTIONS(2042), - [aux_sym_string_literal_token1] = ACTIONS(2042), - [sym_char_literal] = ACTIONS(2042), - [anon_sym_true] = ACTIONS(2044), - [anon_sym_false] = ACTIONS(2044), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2044), - [sym_super] = ACTIONS(2044), - [sym_crate] = ACTIONS(2044), - [sym_metavariable] = ACTIONS(2042), - [sym__raw_string_literal_start] = ACTIONS(2042), - [sym_float_literal] = ACTIONS(2042), + [ts_builtin_sym_end] = ACTIONS(2175), + [sym_identifier] = ACTIONS(2177), + [anon_sym_SEMI] = ACTIONS(2175), + [anon_sym_macro_rules_BANG] = ACTIONS(2175), + [anon_sym_LPAREN] = ACTIONS(2175), + [anon_sym_LBRACK] = ACTIONS(2175), + [anon_sym_LBRACE] = ACTIONS(2175), + [anon_sym_RBRACE] = ACTIONS(2175), + [anon_sym_macro] = ACTIONS(2177), + [anon_sym_STAR] = ACTIONS(2175), + [anon_sym_u8] = ACTIONS(2177), + [anon_sym_i8] = ACTIONS(2177), + [anon_sym_u16] = ACTIONS(2177), + [anon_sym_i16] = ACTIONS(2177), + [anon_sym_u32] = ACTIONS(2177), + [anon_sym_i32] = ACTIONS(2177), + [anon_sym_u64] = ACTIONS(2177), + [anon_sym_i64] = ACTIONS(2177), + [anon_sym_u128] = ACTIONS(2177), + [anon_sym_i128] = ACTIONS(2177), + [anon_sym_isize] = ACTIONS(2177), + [anon_sym_usize] = ACTIONS(2177), + [anon_sym_f32] = ACTIONS(2177), + [anon_sym_f64] = ACTIONS(2177), + [anon_sym_bool] = ACTIONS(2177), + [anon_sym_str] = ACTIONS(2177), + [anon_sym_char] = ACTIONS(2177), + [anon_sym_DASH] = ACTIONS(2175), + [anon_sym_BANG] = ACTIONS(2175), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_PIPE] = ACTIONS(2175), + [anon_sym_LT] = ACTIONS(2175), + [anon_sym_DOT_DOT] = ACTIONS(2175), + [anon_sym_COLON_COLON] = ACTIONS(2175), + [anon_sym_POUND] = ACTIONS(2175), + [anon_sym_SQUOTE] = ACTIONS(2177), + [anon_sym_async] = ACTIONS(2177), + [anon_sym_break] = ACTIONS(2177), + [anon_sym_const] = ACTIONS(2177), + [anon_sym_continue] = ACTIONS(2177), + [anon_sym_default] = ACTIONS(2177), + [anon_sym_enum] = ACTIONS(2177), + [anon_sym_fn] = ACTIONS(2177), + [anon_sym_for] = ACTIONS(2177), + [anon_sym_if] = ACTIONS(2177), + [anon_sym_impl] = ACTIONS(2177), + [anon_sym_let] = ACTIONS(2177), + [anon_sym_loop] = ACTIONS(2177), + [anon_sym_match] = ACTIONS(2177), + [anon_sym_mod] = ACTIONS(2177), + [anon_sym_pub] = ACTIONS(2177), + [anon_sym_return] = ACTIONS(2177), + [anon_sym_static] = ACTIONS(2177), + [anon_sym_struct] = ACTIONS(2177), + [anon_sym_trait] = ACTIONS(2177), + [anon_sym_type] = ACTIONS(2177), + [anon_sym_union] = ACTIONS(2177), + [anon_sym_unsafe] = ACTIONS(2177), + [anon_sym_use] = ACTIONS(2177), + [anon_sym_while] = ACTIONS(2177), + [anon_sym_extern] = ACTIONS(2177), + [anon_sym_yield] = ACTIONS(2177), + [anon_sym_move] = ACTIONS(2177), + [anon_sym_try] = ACTIONS(2177), + [sym_integer_literal] = ACTIONS(2175), + [aux_sym_string_literal_token1] = ACTIONS(2175), + [sym_char_literal] = ACTIONS(2175), + [anon_sym_true] = ACTIONS(2177), + [anon_sym_false] = ACTIONS(2177), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2177), + [sym_super] = ACTIONS(2177), + [sym_crate] = ACTIONS(2177), + [sym_metavariable] = ACTIONS(2175), + [sym__raw_string_literal_start] = ACTIONS(2175), + [sym_float_literal] = ACTIONS(2175), }, [575] = { [sym_line_comment] = STATE(575), [sym_block_comment] = STATE(575), - [ts_builtin_sym_end] = ACTIONS(2046), - [sym_identifier] = ACTIONS(2048), - [anon_sym_SEMI] = ACTIONS(2046), - [anon_sym_macro_rules_BANG] = ACTIONS(2046), - [anon_sym_LPAREN] = ACTIONS(2046), - [anon_sym_LBRACK] = ACTIONS(2046), - [anon_sym_LBRACE] = ACTIONS(2046), - [anon_sym_RBRACE] = ACTIONS(2046), - [anon_sym_STAR] = ACTIONS(2046), - [anon_sym_u8] = ACTIONS(2048), - [anon_sym_i8] = ACTIONS(2048), - [anon_sym_u16] = ACTIONS(2048), - [anon_sym_i16] = ACTIONS(2048), - [anon_sym_u32] = ACTIONS(2048), - [anon_sym_i32] = ACTIONS(2048), - [anon_sym_u64] = ACTIONS(2048), - [anon_sym_i64] = ACTIONS(2048), - [anon_sym_u128] = ACTIONS(2048), - [anon_sym_i128] = ACTIONS(2048), - [anon_sym_isize] = ACTIONS(2048), - [anon_sym_usize] = ACTIONS(2048), - [anon_sym_f32] = ACTIONS(2048), - [anon_sym_f64] = ACTIONS(2048), - [anon_sym_bool] = ACTIONS(2048), - [anon_sym_str] = ACTIONS(2048), - [anon_sym_char] = ACTIONS(2048), - [anon_sym_DASH] = ACTIONS(2046), - [anon_sym_BANG] = ACTIONS(2046), - [anon_sym_AMP] = ACTIONS(2046), - [anon_sym_PIPE] = ACTIONS(2046), - [anon_sym_LT] = ACTIONS(2046), - [anon_sym_DOT_DOT] = ACTIONS(2046), - [anon_sym_COLON_COLON] = ACTIONS(2046), - [anon_sym_POUND] = ACTIONS(2046), - [anon_sym_SQUOTE] = ACTIONS(2048), - [anon_sym_async] = ACTIONS(2048), - [anon_sym_break] = ACTIONS(2048), - [anon_sym_const] = ACTIONS(2048), - [anon_sym_continue] = ACTIONS(2048), - [anon_sym_default] = ACTIONS(2048), - [anon_sym_enum] = ACTIONS(2048), - [anon_sym_fn] = ACTIONS(2048), - [anon_sym_for] = ACTIONS(2048), - [anon_sym_if] = ACTIONS(2048), - [anon_sym_impl] = ACTIONS(2048), - [anon_sym_let] = ACTIONS(2048), - [anon_sym_loop] = ACTIONS(2048), - [anon_sym_match] = ACTIONS(2048), - [anon_sym_mod] = ACTIONS(2048), - [anon_sym_pub] = ACTIONS(2048), - [anon_sym_return] = ACTIONS(2048), - [anon_sym_static] = ACTIONS(2048), - [anon_sym_struct] = ACTIONS(2048), - [anon_sym_trait] = ACTIONS(2048), - [anon_sym_type] = ACTIONS(2048), - [anon_sym_union] = ACTIONS(2048), - [anon_sym_unsafe] = ACTIONS(2048), - [anon_sym_use] = ACTIONS(2048), - [anon_sym_while] = ACTIONS(2048), - [anon_sym_extern] = ACTIONS(2048), - [anon_sym_yield] = ACTIONS(2048), - [anon_sym_move] = ACTIONS(2048), - [anon_sym_try] = ACTIONS(2048), - [sym_integer_literal] = ACTIONS(2046), - [aux_sym_string_literal_token1] = ACTIONS(2046), - [sym_char_literal] = ACTIONS(2046), - [anon_sym_true] = ACTIONS(2048), - [anon_sym_false] = ACTIONS(2048), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2048), - [sym_super] = ACTIONS(2048), - [sym_crate] = ACTIONS(2048), - [sym_metavariable] = ACTIONS(2046), - [sym__raw_string_literal_start] = ACTIONS(2046), - [sym_float_literal] = ACTIONS(2046), + [ts_builtin_sym_end] = ACTIONS(2179), + [sym_identifier] = ACTIONS(2181), + [anon_sym_SEMI] = ACTIONS(2179), + [anon_sym_macro_rules_BANG] = ACTIONS(2179), + [anon_sym_LPAREN] = ACTIONS(2179), + [anon_sym_LBRACK] = ACTIONS(2179), + [anon_sym_LBRACE] = ACTIONS(2179), + [anon_sym_RBRACE] = ACTIONS(2179), + [anon_sym_macro] = ACTIONS(2181), + [anon_sym_STAR] = ACTIONS(2179), + [anon_sym_u8] = ACTIONS(2181), + [anon_sym_i8] = ACTIONS(2181), + [anon_sym_u16] = ACTIONS(2181), + [anon_sym_i16] = ACTIONS(2181), + [anon_sym_u32] = ACTIONS(2181), + [anon_sym_i32] = ACTIONS(2181), + [anon_sym_u64] = ACTIONS(2181), + [anon_sym_i64] = ACTIONS(2181), + [anon_sym_u128] = ACTIONS(2181), + [anon_sym_i128] = ACTIONS(2181), + [anon_sym_isize] = ACTIONS(2181), + [anon_sym_usize] = ACTIONS(2181), + [anon_sym_f32] = ACTIONS(2181), + [anon_sym_f64] = ACTIONS(2181), + [anon_sym_bool] = ACTIONS(2181), + [anon_sym_str] = ACTIONS(2181), + [anon_sym_char] = ACTIONS(2181), + [anon_sym_DASH] = ACTIONS(2179), + [anon_sym_BANG] = ACTIONS(2179), + [anon_sym_AMP] = ACTIONS(2179), + [anon_sym_PIPE] = ACTIONS(2179), + [anon_sym_LT] = ACTIONS(2179), + [anon_sym_DOT_DOT] = ACTIONS(2179), + [anon_sym_COLON_COLON] = ACTIONS(2179), + [anon_sym_POUND] = ACTIONS(2179), + [anon_sym_SQUOTE] = ACTIONS(2181), + [anon_sym_async] = ACTIONS(2181), + [anon_sym_break] = ACTIONS(2181), + [anon_sym_const] = ACTIONS(2181), + [anon_sym_continue] = ACTIONS(2181), + [anon_sym_default] = ACTIONS(2181), + [anon_sym_enum] = ACTIONS(2181), + [anon_sym_fn] = ACTIONS(2181), + [anon_sym_for] = ACTIONS(2181), + [anon_sym_if] = ACTIONS(2181), + [anon_sym_impl] = ACTIONS(2181), + [anon_sym_let] = ACTIONS(2181), + [anon_sym_loop] = ACTIONS(2181), + [anon_sym_match] = ACTIONS(2181), + [anon_sym_mod] = ACTIONS(2181), + [anon_sym_pub] = ACTIONS(2181), + [anon_sym_return] = ACTIONS(2181), + [anon_sym_static] = ACTIONS(2181), + [anon_sym_struct] = ACTIONS(2181), + [anon_sym_trait] = ACTIONS(2181), + [anon_sym_type] = ACTIONS(2181), + [anon_sym_union] = ACTIONS(2181), + [anon_sym_unsafe] = ACTIONS(2181), + [anon_sym_use] = ACTIONS(2181), + [anon_sym_while] = ACTIONS(2181), + [anon_sym_extern] = ACTIONS(2181), + [anon_sym_yield] = ACTIONS(2181), + [anon_sym_move] = ACTIONS(2181), + [anon_sym_try] = ACTIONS(2181), + [sym_integer_literal] = ACTIONS(2179), + [aux_sym_string_literal_token1] = ACTIONS(2179), + [sym_char_literal] = ACTIONS(2179), + [anon_sym_true] = ACTIONS(2181), + [anon_sym_false] = ACTIONS(2181), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2181), + [sym_super] = ACTIONS(2181), + [sym_crate] = ACTIONS(2181), + [sym_metavariable] = ACTIONS(2179), + [sym__raw_string_literal_start] = ACTIONS(2179), + [sym_float_literal] = ACTIONS(2179), }, [576] = { [sym_line_comment] = STATE(576), [sym_block_comment] = STATE(576), - [ts_builtin_sym_end] = ACTIONS(2050), - [sym_identifier] = ACTIONS(2052), - [anon_sym_SEMI] = ACTIONS(2050), - [anon_sym_macro_rules_BANG] = ACTIONS(2050), - [anon_sym_LPAREN] = ACTIONS(2050), - [anon_sym_LBRACK] = ACTIONS(2050), - [anon_sym_LBRACE] = ACTIONS(2050), - [anon_sym_RBRACE] = ACTIONS(2050), - [anon_sym_STAR] = ACTIONS(2050), - [anon_sym_u8] = ACTIONS(2052), - [anon_sym_i8] = ACTIONS(2052), - [anon_sym_u16] = ACTIONS(2052), - [anon_sym_i16] = ACTIONS(2052), - [anon_sym_u32] = ACTIONS(2052), - [anon_sym_i32] = ACTIONS(2052), - [anon_sym_u64] = ACTIONS(2052), - [anon_sym_i64] = ACTIONS(2052), - [anon_sym_u128] = ACTIONS(2052), - [anon_sym_i128] = ACTIONS(2052), - [anon_sym_isize] = ACTIONS(2052), - [anon_sym_usize] = ACTIONS(2052), - [anon_sym_f32] = ACTIONS(2052), - [anon_sym_f64] = ACTIONS(2052), - [anon_sym_bool] = ACTIONS(2052), - [anon_sym_str] = ACTIONS(2052), - [anon_sym_char] = ACTIONS(2052), - [anon_sym_DASH] = ACTIONS(2050), - [anon_sym_BANG] = ACTIONS(2050), - [anon_sym_AMP] = ACTIONS(2050), - [anon_sym_PIPE] = ACTIONS(2050), - [anon_sym_LT] = ACTIONS(2050), - [anon_sym_DOT_DOT] = ACTIONS(2050), - [anon_sym_COLON_COLON] = ACTIONS(2050), - [anon_sym_POUND] = ACTIONS(2050), - [anon_sym_SQUOTE] = ACTIONS(2052), - [anon_sym_async] = ACTIONS(2052), - [anon_sym_break] = ACTIONS(2052), - [anon_sym_const] = ACTIONS(2052), - [anon_sym_continue] = ACTIONS(2052), - [anon_sym_default] = ACTIONS(2052), - [anon_sym_enum] = ACTIONS(2052), - [anon_sym_fn] = ACTIONS(2052), - [anon_sym_for] = ACTIONS(2052), - [anon_sym_if] = ACTIONS(2052), - [anon_sym_impl] = ACTIONS(2052), - [anon_sym_let] = ACTIONS(2052), - [anon_sym_loop] = ACTIONS(2052), - [anon_sym_match] = ACTIONS(2052), - [anon_sym_mod] = ACTIONS(2052), - [anon_sym_pub] = ACTIONS(2052), - [anon_sym_return] = ACTIONS(2052), - [anon_sym_static] = ACTIONS(2052), - [anon_sym_struct] = ACTIONS(2052), - [anon_sym_trait] = ACTIONS(2052), - [anon_sym_type] = ACTIONS(2052), - [anon_sym_union] = ACTIONS(2052), - [anon_sym_unsafe] = ACTIONS(2052), - [anon_sym_use] = ACTIONS(2052), - [anon_sym_while] = ACTIONS(2052), - [anon_sym_extern] = ACTIONS(2052), - [anon_sym_yield] = ACTIONS(2052), - [anon_sym_move] = ACTIONS(2052), - [anon_sym_try] = ACTIONS(2052), - [sym_integer_literal] = ACTIONS(2050), - [aux_sym_string_literal_token1] = ACTIONS(2050), - [sym_char_literal] = ACTIONS(2050), - [anon_sym_true] = ACTIONS(2052), - [anon_sym_false] = ACTIONS(2052), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2052), - [sym_super] = ACTIONS(2052), - [sym_crate] = ACTIONS(2052), - [sym_metavariable] = ACTIONS(2050), - [sym__raw_string_literal_start] = ACTIONS(2050), - [sym_float_literal] = ACTIONS(2050), + [ts_builtin_sym_end] = ACTIONS(2183), + [sym_identifier] = ACTIONS(2185), + [anon_sym_SEMI] = ACTIONS(2183), + [anon_sym_macro_rules_BANG] = ACTIONS(2183), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_LBRACK] = ACTIONS(2183), + [anon_sym_LBRACE] = ACTIONS(2183), + [anon_sym_RBRACE] = ACTIONS(2183), + [anon_sym_macro] = ACTIONS(2185), + [anon_sym_STAR] = ACTIONS(2183), + [anon_sym_u8] = ACTIONS(2185), + [anon_sym_i8] = ACTIONS(2185), + [anon_sym_u16] = ACTIONS(2185), + [anon_sym_i16] = ACTIONS(2185), + [anon_sym_u32] = ACTIONS(2185), + [anon_sym_i32] = ACTIONS(2185), + [anon_sym_u64] = ACTIONS(2185), + [anon_sym_i64] = ACTIONS(2185), + [anon_sym_u128] = ACTIONS(2185), + [anon_sym_i128] = ACTIONS(2185), + [anon_sym_isize] = ACTIONS(2185), + [anon_sym_usize] = ACTIONS(2185), + [anon_sym_f32] = ACTIONS(2185), + [anon_sym_f64] = ACTIONS(2185), + [anon_sym_bool] = ACTIONS(2185), + [anon_sym_str] = ACTIONS(2185), + [anon_sym_char] = ACTIONS(2185), + [anon_sym_DASH] = ACTIONS(2183), + [anon_sym_BANG] = ACTIONS(2183), + [anon_sym_AMP] = ACTIONS(2183), + [anon_sym_PIPE] = ACTIONS(2183), + [anon_sym_LT] = ACTIONS(2183), + [anon_sym_DOT_DOT] = ACTIONS(2183), + [anon_sym_COLON_COLON] = ACTIONS(2183), + [anon_sym_POUND] = ACTIONS(2183), + [anon_sym_SQUOTE] = ACTIONS(2185), + [anon_sym_async] = ACTIONS(2185), + [anon_sym_break] = ACTIONS(2185), + [anon_sym_const] = ACTIONS(2185), + [anon_sym_continue] = ACTIONS(2185), + [anon_sym_default] = ACTIONS(2185), + [anon_sym_enum] = ACTIONS(2185), + [anon_sym_fn] = ACTIONS(2185), + [anon_sym_for] = ACTIONS(2185), + [anon_sym_if] = ACTIONS(2185), + [anon_sym_impl] = ACTIONS(2185), + [anon_sym_let] = ACTIONS(2185), + [anon_sym_loop] = ACTIONS(2185), + [anon_sym_match] = ACTIONS(2185), + [anon_sym_mod] = ACTIONS(2185), + [anon_sym_pub] = ACTIONS(2185), + [anon_sym_return] = ACTIONS(2185), + [anon_sym_static] = ACTIONS(2185), + [anon_sym_struct] = ACTIONS(2185), + [anon_sym_trait] = ACTIONS(2185), + [anon_sym_type] = ACTIONS(2185), + [anon_sym_union] = ACTIONS(2185), + [anon_sym_unsafe] = ACTIONS(2185), + [anon_sym_use] = ACTIONS(2185), + [anon_sym_while] = ACTIONS(2185), + [anon_sym_extern] = ACTIONS(2185), + [anon_sym_yield] = ACTIONS(2185), + [anon_sym_move] = ACTIONS(2185), + [anon_sym_try] = ACTIONS(2185), + [sym_integer_literal] = ACTIONS(2183), + [aux_sym_string_literal_token1] = ACTIONS(2183), + [sym_char_literal] = ACTIONS(2183), + [anon_sym_true] = ACTIONS(2185), + [anon_sym_false] = ACTIONS(2185), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2185), + [sym_super] = ACTIONS(2185), + [sym_crate] = ACTIONS(2185), + [sym_metavariable] = ACTIONS(2183), + [sym__raw_string_literal_start] = ACTIONS(2183), + [sym_float_literal] = ACTIONS(2183), }, [577] = { [sym_line_comment] = STATE(577), [sym_block_comment] = STATE(577), - [ts_builtin_sym_end] = ACTIONS(2054), - [sym_identifier] = ACTIONS(2056), - [anon_sym_SEMI] = ACTIONS(2054), - [anon_sym_macro_rules_BANG] = ACTIONS(2054), - [anon_sym_LPAREN] = ACTIONS(2054), - [anon_sym_LBRACK] = ACTIONS(2054), - [anon_sym_LBRACE] = ACTIONS(2054), - [anon_sym_RBRACE] = ACTIONS(2054), - [anon_sym_STAR] = ACTIONS(2054), - [anon_sym_u8] = ACTIONS(2056), - [anon_sym_i8] = ACTIONS(2056), - [anon_sym_u16] = ACTIONS(2056), - [anon_sym_i16] = ACTIONS(2056), - [anon_sym_u32] = ACTIONS(2056), - [anon_sym_i32] = ACTIONS(2056), - [anon_sym_u64] = ACTIONS(2056), - [anon_sym_i64] = ACTIONS(2056), - [anon_sym_u128] = ACTIONS(2056), - [anon_sym_i128] = ACTIONS(2056), - [anon_sym_isize] = ACTIONS(2056), - [anon_sym_usize] = ACTIONS(2056), - [anon_sym_f32] = ACTIONS(2056), - [anon_sym_f64] = ACTIONS(2056), - [anon_sym_bool] = ACTIONS(2056), - [anon_sym_str] = ACTIONS(2056), - [anon_sym_char] = ACTIONS(2056), - [anon_sym_DASH] = ACTIONS(2054), - [anon_sym_BANG] = ACTIONS(2054), - [anon_sym_AMP] = ACTIONS(2054), - [anon_sym_PIPE] = ACTIONS(2054), - [anon_sym_LT] = ACTIONS(2054), - [anon_sym_DOT_DOT] = ACTIONS(2054), - [anon_sym_COLON_COLON] = ACTIONS(2054), - [anon_sym_POUND] = ACTIONS(2054), - [anon_sym_SQUOTE] = ACTIONS(2056), - [anon_sym_async] = ACTIONS(2056), - [anon_sym_break] = ACTIONS(2056), - [anon_sym_const] = ACTIONS(2056), - [anon_sym_continue] = ACTIONS(2056), - [anon_sym_default] = ACTIONS(2056), - [anon_sym_enum] = ACTIONS(2056), - [anon_sym_fn] = ACTIONS(2056), - [anon_sym_for] = ACTIONS(2056), - [anon_sym_if] = ACTIONS(2056), - [anon_sym_impl] = ACTIONS(2056), - [anon_sym_let] = ACTIONS(2056), - [anon_sym_loop] = ACTIONS(2056), - [anon_sym_match] = ACTIONS(2056), - [anon_sym_mod] = ACTIONS(2056), - [anon_sym_pub] = ACTIONS(2056), - [anon_sym_return] = ACTIONS(2056), - [anon_sym_static] = ACTIONS(2056), - [anon_sym_struct] = ACTIONS(2056), - [anon_sym_trait] = ACTIONS(2056), - [anon_sym_type] = ACTIONS(2056), - [anon_sym_union] = ACTIONS(2056), - [anon_sym_unsafe] = ACTIONS(2056), - [anon_sym_use] = ACTIONS(2056), - [anon_sym_while] = ACTIONS(2056), - [anon_sym_extern] = ACTIONS(2056), - [anon_sym_yield] = ACTIONS(2056), - [anon_sym_move] = ACTIONS(2056), - [anon_sym_try] = ACTIONS(2056), - [sym_integer_literal] = ACTIONS(2054), - [aux_sym_string_literal_token1] = ACTIONS(2054), - [sym_char_literal] = ACTIONS(2054), - [anon_sym_true] = ACTIONS(2056), - [anon_sym_false] = ACTIONS(2056), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2056), - [sym_super] = ACTIONS(2056), - [sym_crate] = ACTIONS(2056), - [sym_metavariable] = ACTIONS(2054), - [sym__raw_string_literal_start] = ACTIONS(2054), - [sym_float_literal] = ACTIONS(2054), + [ts_builtin_sym_end] = ACTIONS(2187), + [sym_identifier] = ACTIONS(2189), + [anon_sym_SEMI] = ACTIONS(2187), + [anon_sym_macro_rules_BANG] = ACTIONS(2187), + [anon_sym_LPAREN] = ACTIONS(2187), + [anon_sym_LBRACK] = ACTIONS(2187), + [anon_sym_LBRACE] = ACTIONS(2187), + [anon_sym_RBRACE] = ACTIONS(2187), + [anon_sym_macro] = ACTIONS(2189), + [anon_sym_STAR] = ACTIONS(2187), + [anon_sym_u8] = ACTIONS(2189), + [anon_sym_i8] = ACTIONS(2189), + [anon_sym_u16] = ACTIONS(2189), + [anon_sym_i16] = ACTIONS(2189), + [anon_sym_u32] = ACTIONS(2189), + [anon_sym_i32] = ACTIONS(2189), + [anon_sym_u64] = ACTIONS(2189), + [anon_sym_i64] = ACTIONS(2189), + [anon_sym_u128] = ACTIONS(2189), + [anon_sym_i128] = ACTIONS(2189), + [anon_sym_isize] = ACTIONS(2189), + [anon_sym_usize] = ACTIONS(2189), + [anon_sym_f32] = ACTIONS(2189), + [anon_sym_f64] = ACTIONS(2189), + [anon_sym_bool] = ACTIONS(2189), + [anon_sym_str] = ACTIONS(2189), + [anon_sym_char] = ACTIONS(2189), + [anon_sym_DASH] = ACTIONS(2187), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_AMP] = ACTIONS(2187), + [anon_sym_PIPE] = ACTIONS(2187), + [anon_sym_LT] = ACTIONS(2187), + [anon_sym_DOT_DOT] = ACTIONS(2187), + [anon_sym_COLON_COLON] = ACTIONS(2187), + [anon_sym_POUND] = ACTIONS(2187), + [anon_sym_SQUOTE] = ACTIONS(2189), + [anon_sym_async] = ACTIONS(2189), + [anon_sym_break] = ACTIONS(2189), + [anon_sym_const] = ACTIONS(2189), + [anon_sym_continue] = ACTIONS(2189), + [anon_sym_default] = ACTIONS(2189), + [anon_sym_enum] = ACTIONS(2189), + [anon_sym_fn] = ACTIONS(2189), + [anon_sym_for] = ACTIONS(2189), + [anon_sym_if] = ACTIONS(2189), + [anon_sym_impl] = ACTIONS(2189), + [anon_sym_let] = ACTIONS(2189), + [anon_sym_loop] = ACTIONS(2189), + [anon_sym_match] = ACTIONS(2189), + [anon_sym_mod] = ACTIONS(2189), + [anon_sym_pub] = ACTIONS(2189), + [anon_sym_return] = ACTIONS(2189), + [anon_sym_static] = ACTIONS(2189), + [anon_sym_struct] = ACTIONS(2189), + [anon_sym_trait] = ACTIONS(2189), + [anon_sym_type] = ACTIONS(2189), + [anon_sym_union] = ACTIONS(2189), + [anon_sym_unsafe] = ACTIONS(2189), + [anon_sym_use] = ACTIONS(2189), + [anon_sym_while] = ACTIONS(2189), + [anon_sym_extern] = ACTIONS(2189), + [anon_sym_yield] = ACTIONS(2189), + [anon_sym_move] = ACTIONS(2189), + [anon_sym_try] = ACTIONS(2189), + [sym_integer_literal] = ACTIONS(2187), + [aux_sym_string_literal_token1] = ACTIONS(2187), + [sym_char_literal] = ACTIONS(2187), + [anon_sym_true] = ACTIONS(2189), + [anon_sym_false] = ACTIONS(2189), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2189), + [sym_super] = ACTIONS(2189), + [sym_crate] = ACTIONS(2189), + [sym_metavariable] = ACTIONS(2187), + [sym__raw_string_literal_start] = ACTIONS(2187), + [sym_float_literal] = ACTIONS(2187), }, [578] = { [sym_line_comment] = STATE(578), [sym_block_comment] = STATE(578), - [ts_builtin_sym_end] = ACTIONS(2058), - [sym_identifier] = ACTIONS(2060), - [anon_sym_SEMI] = ACTIONS(2058), - [anon_sym_macro_rules_BANG] = ACTIONS(2058), - [anon_sym_LPAREN] = ACTIONS(2058), - [anon_sym_LBRACK] = ACTIONS(2058), - [anon_sym_LBRACE] = ACTIONS(2058), - [anon_sym_RBRACE] = ACTIONS(2058), - [anon_sym_STAR] = ACTIONS(2058), - [anon_sym_u8] = ACTIONS(2060), - [anon_sym_i8] = ACTIONS(2060), - [anon_sym_u16] = ACTIONS(2060), - [anon_sym_i16] = ACTIONS(2060), - [anon_sym_u32] = ACTIONS(2060), - [anon_sym_i32] = ACTIONS(2060), - [anon_sym_u64] = ACTIONS(2060), - [anon_sym_i64] = ACTIONS(2060), - [anon_sym_u128] = ACTIONS(2060), - [anon_sym_i128] = ACTIONS(2060), - [anon_sym_isize] = ACTIONS(2060), - [anon_sym_usize] = ACTIONS(2060), - [anon_sym_f32] = ACTIONS(2060), - [anon_sym_f64] = ACTIONS(2060), - [anon_sym_bool] = ACTIONS(2060), - [anon_sym_str] = ACTIONS(2060), - [anon_sym_char] = ACTIONS(2060), - [anon_sym_DASH] = ACTIONS(2058), - [anon_sym_BANG] = ACTIONS(2058), - [anon_sym_AMP] = ACTIONS(2058), - [anon_sym_PIPE] = ACTIONS(2058), - [anon_sym_LT] = ACTIONS(2058), - [anon_sym_DOT_DOT] = ACTIONS(2058), - [anon_sym_COLON_COLON] = ACTIONS(2058), - [anon_sym_POUND] = ACTIONS(2058), - [anon_sym_SQUOTE] = ACTIONS(2060), - [anon_sym_async] = ACTIONS(2060), - [anon_sym_break] = ACTIONS(2060), - [anon_sym_const] = ACTIONS(2060), - [anon_sym_continue] = ACTIONS(2060), - [anon_sym_default] = ACTIONS(2060), - [anon_sym_enum] = ACTIONS(2060), - [anon_sym_fn] = ACTIONS(2060), - [anon_sym_for] = ACTIONS(2060), - [anon_sym_if] = ACTIONS(2060), - [anon_sym_impl] = ACTIONS(2060), - [anon_sym_let] = ACTIONS(2060), - [anon_sym_loop] = ACTIONS(2060), - [anon_sym_match] = ACTIONS(2060), - [anon_sym_mod] = ACTIONS(2060), - [anon_sym_pub] = ACTIONS(2060), - [anon_sym_return] = ACTIONS(2060), - [anon_sym_static] = ACTIONS(2060), - [anon_sym_struct] = ACTIONS(2060), - [anon_sym_trait] = ACTIONS(2060), - [anon_sym_type] = ACTIONS(2060), - [anon_sym_union] = ACTIONS(2060), - [anon_sym_unsafe] = ACTIONS(2060), - [anon_sym_use] = ACTIONS(2060), - [anon_sym_while] = ACTIONS(2060), - [anon_sym_extern] = ACTIONS(2060), - [anon_sym_yield] = ACTIONS(2060), - [anon_sym_move] = ACTIONS(2060), - [anon_sym_try] = ACTIONS(2060), - [sym_integer_literal] = ACTIONS(2058), - [aux_sym_string_literal_token1] = ACTIONS(2058), - [sym_char_literal] = ACTIONS(2058), - [anon_sym_true] = ACTIONS(2060), - [anon_sym_false] = ACTIONS(2060), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2060), - [sym_super] = ACTIONS(2060), - [sym_crate] = ACTIONS(2060), - [sym_metavariable] = ACTIONS(2058), - [sym__raw_string_literal_start] = ACTIONS(2058), - [sym_float_literal] = ACTIONS(2058), + [ts_builtin_sym_end] = ACTIONS(2191), + [sym_identifier] = ACTIONS(2193), + [anon_sym_SEMI] = ACTIONS(2191), + [anon_sym_macro_rules_BANG] = ACTIONS(2191), + [anon_sym_LPAREN] = ACTIONS(2191), + [anon_sym_LBRACK] = ACTIONS(2191), + [anon_sym_LBRACE] = ACTIONS(2191), + [anon_sym_RBRACE] = ACTIONS(2191), + [anon_sym_macro] = ACTIONS(2193), + [anon_sym_STAR] = ACTIONS(2191), + [anon_sym_u8] = ACTIONS(2193), + [anon_sym_i8] = ACTIONS(2193), + [anon_sym_u16] = ACTIONS(2193), + [anon_sym_i16] = ACTIONS(2193), + [anon_sym_u32] = ACTIONS(2193), + [anon_sym_i32] = ACTIONS(2193), + [anon_sym_u64] = ACTIONS(2193), + [anon_sym_i64] = ACTIONS(2193), + [anon_sym_u128] = ACTIONS(2193), + [anon_sym_i128] = ACTIONS(2193), + [anon_sym_isize] = ACTIONS(2193), + [anon_sym_usize] = ACTIONS(2193), + [anon_sym_f32] = ACTIONS(2193), + [anon_sym_f64] = ACTIONS(2193), + [anon_sym_bool] = ACTIONS(2193), + [anon_sym_str] = ACTIONS(2193), + [anon_sym_char] = ACTIONS(2193), + [anon_sym_DASH] = ACTIONS(2191), + [anon_sym_BANG] = ACTIONS(2191), + [anon_sym_AMP] = ACTIONS(2191), + [anon_sym_PIPE] = ACTIONS(2191), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_DOT_DOT] = ACTIONS(2191), + [anon_sym_COLON_COLON] = ACTIONS(2191), + [anon_sym_POUND] = ACTIONS(2191), + [anon_sym_SQUOTE] = ACTIONS(2193), + [anon_sym_async] = ACTIONS(2193), + [anon_sym_break] = ACTIONS(2193), + [anon_sym_const] = ACTIONS(2193), + [anon_sym_continue] = ACTIONS(2193), + [anon_sym_default] = ACTIONS(2193), + [anon_sym_enum] = ACTIONS(2193), + [anon_sym_fn] = ACTIONS(2193), + [anon_sym_for] = ACTIONS(2193), + [anon_sym_if] = ACTIONS(2193), + [anon_sym_impl] = ACTIONS(2193), + [anon_sym_let] = ACTIONS(2193), + [anon_sym_loop] = ACTIONS(2193), + [anon_sym_match] = ACTIONS(2193), + [anon_sym_mod] = ACTIONS(2193), + [anon_sym_pub] = ACTIONS(2193), + [anon_sym_return] = ACTIONS(2193), + [anon_sym_static] = ACTIONS(2193), + [anon_sym_struct] = ACTIONS(2193), + [anon_sym_trait] = ACTIONS(2193), + [anon_sym_type] = ACTIONS(2193), + [anon_sym_union] = ACTIONS(2193), + [anon_sym_unsafe] = ACTIONS(2193), + [anon_sym_use] = ACTIONS(2193), + [anon_sym_while] = ACTIONS(2193), + [anon_sym_extern] = ACTIONS(2193), + [anon_sym_yield] = ACTIONS(2193), + [anon_sym_move] = ACTIONS(2193), + [anon_sym_try] = ACTIONS(2193), + [sym_integer_literal] = ACTIONS(2191), + [aux_sym_string_literal_token1] = ACTIONS(2191), + [sym_char_literal] = ACTIONS(2191), + [anon_sym_true] = ACTIONS(2193), + [anon_sym_false] = ACTIONS(2193), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2193), + [sym_super] = ACTIONS(2193), + [sym_crate] = ACTIONS(2193), + [sym_metavariable] = ACTIONS(2191), + [sym__raw_string_literal_start] = ACTIONS(2191), + [sym_float_literal] = ACTIONS(2191), }, [579] = { [sym_line_comment] = STATE(579), [sym_block_comment] = STATE(579), - [ts_builtin_sym_end] = ACTIONS(2062), - [sym_identifier] = ACTIONS(2064), - [anon_sym_SEMI] = ACTIONS(2062), - [anon_sym_macro_rules_BANG] = ACTIONS(2062), - [anon_sym_LPAREN] = ACTIONS(2062), - [anon_sym_LBRACK] = ACTIONS(2062), - [anon_sym_LBRACE] = ACTIONS(2062), - [anon_sym_RBRACE] = ACTIONS(2062), - [anon_sym_STAR] = ACTIONS(2062), - [anon_sym_u8] = ACTIONS(2064), - [anon_sym_i8] = ACTIONS(2064), - [anon_sym_u16] = ACTIONS(2064), - [anon_sym_i16] = ACTIONS(2064), - [anon_sym_u32] = ACTIONS(2064), - [anon_sym_i32] = ACTIONS(2064), - [anon_sym_u64] = ACTIONS(2064), - [anon_sym_i64] = ACTIONS(2064), - [anon_sym_u128] = ACTIONS(2064), - [anon_sym_i128] = ACTIONS(2064), - [anon_sym_isize] = ACTIONS(2064), - [anon_sym_usize] = ACTIONS(2064), - [anon_sym_f32] = ACTIONS(2064), - [anon_sym_f64] = ACTIONS(2064), - [anon_sym_bool] = ACTIONS(2064), - [anon_sym_str] = ACTIONS(2064), - [anon_sym_char] = ACTIONS(2064), - [anon_sym_DASH] = ACTIONS(2062), - [anon_sym_BANG] = ACTIONS(2062), - [anon_sym_AMP] = ACTIONS(2062), - [anon_sym_PIPE] = ACTIONS(2062), - [anon_sym_LT] = ACTIONS(2062), - [anon_sym_DOT_DOT] = ACTIONS(2062), - [anon_sym_COLON_COLON] = ACTIONS(2062), - [anon_sym_POUND] = ACTIONS(2062), - [anon_sym_SQUOTE] = ACTIONS(2064), - [anon_sym_async] = ACTIONS(2064), - [anon_sym_break] = ACTIONS(2064), - [anon_sym_const] = ACTIONS(2064), - [anon_sym_continue] = ACTIONS(2064), - [anon_sym_default] = ACTIONS(2064), - [anon_sym_enum] = ACTIONS(2064), - [anon_sym_fn] = ACTIONS(2064), - [anon_sym_for] = ACTIONS(2064), - [anon_sym_if] = ACTIONS(2064), - [anon_sym_impl] = ACTIONS(2064), - [anon_sym_let] = ACTIONS(2064), - [anon_sym_loop] = ACTIONS(2064), - [anon_sym_match] = ACTIONS(2064), - [anon_sym_mod] = ACTIONS(2064), - [anon_sym_pub] = ACTIONS(2064), - [anon_sym_return] = ACTIONS(2064), - [anon_sym_static] = ACTIONS(2064), - [anon_sym_struct] = ACTIONS(2064), - [anon_sym_trait] = ACTIONS(2064), - [anon_sym_type] = ACTIONS(2064), - [anon_sym_union] = ACTIONS(2064), - [anon_sym_unsafe] = ACTIONS(2064), - [anon_sym_use] = ACTIONS(2064), - [anon_sym_while] = ACTIONS(2064), - [anon_sym_extern] = ACTIONS(2064), - [anon_sym_yield] = ACTIONS(2064), - [anon_sym_move] = ACTIONS(2064), - [anon_sym_try] = ACTIONS(2064), - [sym_integer_literal] = ACTIONS(2062), - [aux_sym_string_literal_token1] = ACTIONS(2062), - [sym_char_literal] = ACTIONS(2062), - [anon_sym_true] = ACTIONS(2064), - [anon_sym_false] = ACTIONS(2064), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2064), - [sym_super] = ACTIONS(2064), - [sym_crate] = ACTIONS(2064), - [sym_metavariable] = ACTIONS(2062), - [sym__raw_string_literal_start] = ACTIONS(2062), - [sym_float_literal] = ACTIONS(2062), + [ts_builtin_sym_end] = ACTIONS(2195), + [sym_identifier] = ACTIONS(2197), + [anon_sym_SEMI] = ACTIONS(2195), + [anon_sym_macro_rules_BANG] = ACTIONS(2195), + [anon_sym_LPAREN] = ACTIONS(2195), + [anon_sym_LBRACK] = ACTIONS(2195), + [anon_sym_LBRACE] = ACTIONS(2195), + [anon_sym_RBRACE] = ACTIONS(2195), + [anon_sym_macro] = ACTIONS(2197), + [anon_sym_STAR] = ACTIONS(2195), + [anon_sym_u8] = ACTIONS(2197), + [anon_sym_i8] = ACTIONS(2197), + [anon_sym_u16] = ACTIONS(2197), + [anon_sym_i16] = ACTIONS(2197), + [anon_sym_u32] = ACTIONS(2197), + [anon_sym_i32] = ACTIONS(2197), + [anon_sym_u64] = ACTIONS(2197), + [anon_sym_i64] = ACTIONS(2197), + [anon_sym_u128] = ACTIONS(2197), + [anon_sym_i128] = ACTIONS(2197), + [anon_sym_isize] = ACTIONS(2197), + [anon_sym_usize] = ACTIONS(2197), + [anon_sym_f32] = ACTIONS(2197), + [anon_sym_f64] = ACTIONS(2197), + [anon_sym_bool] = ACTIONS(2197), + [anon_sym_str] = ACTIONS(2197), + [anon_sym_char] = ACTIONS(2197), + [anon_sym_DASH] = ACTIONS(2195), + [anon_sym_BANG] = ACTIONS(2195), + [anon_sym_AMP] = ACTIONS(2195), + [anon_sym_PIPE] = ACTIONS(2195), + [anon_sym_LT] = ACTIONS(2195), + [anon_sym_DOT_DOT] = ACTIONS(2195), + [anon_sym_COLON_COLON] = ACTIONS(2195), + [anon_sym_POUND] = ACTIONS(2195), + [anon_sym_SQUOTE] = ACTIONS(2197), + [anon_sym_async] = ACTIONS(2197), + [anon_sym_break] = ACTIONS(2197), + [anon_sym_const] = ACTIONS(2197), + [anon_sym_continue] = ACTIONS(2197), + [anon_sym_default] = ACTIONS(2197), + [anon_sym_enum] = ACTIONS(2197), + [anon_sym_fn] = ACTIONS(2197), + [anon_sym_for] = ACTIONS(2197), + [anon_sym_if] = ACTIONS(2197), + [anon_sym_impl] = ACTIONS(2197), + [anon_sym_let] = ACTIONS(2197), + [anon_sym_loop] = ACTIONS(2197), + [anon_sym_match] = ACTIONS(2197), + [anon_sym_mod] = ACTIONS(2197), + [anon_sym_pub] = ACTIONS(2197), + [anon_sym_return] = ACTIONS(2197), + [anon_sym_static] = ACTIONS(2197), + [anon_sym_struct] = ACTIONS(2197), + [anon_sym_trait] = ACTIONS(2197), + [anon_sym_type] = ACTIONS(2197), + [anon_sym_union] = ACTIONS(2197), + [anon_sym_unsafe] = ACTIONS(2197), + [anon_sym_use] = ACTIONS(2197), + [anon_sym_while] = ACTIONS(2197), + [anon_sym_extern] = ACTIONS(2197), + [anon_sym_yield] = ACTIONS(2197), + [anon_sym_move] = ACTIONS(2197), + [anon_sym_try] = ACTIONS(2197), + [sym_integer_literal] = ACTIONS(2195), + [aux_sym_string_literal_token1] = ACTIONS(2195), + [sym_char_literal] = ACTIONS(2195), + [anon_sym_true] = ACTIONS(2197), + [anon_sym_false] = ACTIONS(2197), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2197), + [sym_super] = ACTIONS(2197), + [sym_crate] = ACTIONS(2197), + [sym_metavariable] = ACTIONS(2195), + [sym__raw_string_literal_start] = ACTIONS(2195), + [sym_float_literal] = ACTIONS(2195), }, [580] = { [sym_line_comment] = STATE(580), [sym_block_comment] = STATE(580), - [ts_builtin_sym_end] = ACTIONS(2066), - [sym_identifier] = ACTIONS(2068), - [anon_sym_SEMI] = ACTIONS(2066), - [anon_sym_macro_rules_BANG] = ACTIONS(2066), - [anon_sym_LPAREN] = ACTIONS(2066), - [anon_sym_LBRACK] = ACTIONS(2066), - [anon_sym_LBRACE] = ACTIONS(2066), - [anon_sym_RBRACE] = ACTIONS(2066), - [anon_sym_STAR] = ACTIONS(2066), - [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), - [anon_sym_DASH] = ACTIONS(2066), - [anon_sym_BANG] = ACTIONS(2066), - [anon_sym_AMP] = ACTIONS(2066), - [anon_sym_PIPE] = ACTIONS(2066), - [anon_sym_LT] = ACTIONS(2066), - [anon_sym_DOT_DOT] = ACTIONS(2066), - [anon_sym_COLON_COLON] = ACTIONS(2066), - [anon_sym_POUND] = ACTIONS(2066), - [anon_sym_SQUOTE] = ACTIONS(2068), - [anon_sym_async] = 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_while] = ACTIONS(2068), - [anon_sym_extern] = ACTIONS(2068), - [anon_sym_yield] = ACTIONS(2068), - [anon_sym_move] = ACTIONS(2068), - [anon_sym_try] = ACTIONS(2068), - [sym_integer_literal] = ACTIONS(2066), - [aux_sym_string_literal_token1] = ACTIONS(2066), - [sym_char_literal] = ACTIONS(2066), - [anon_sym_true] = ACTIONS(2068), - [anon_sym_false] = ACTIONS(2068), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2068), - [sym_super] = ACTIONS(2068), - [sym_crate] = ACTIONS(2068), - [sym_metavariable] = ACTIONS(2066), - [sym__raw_string_literal_start] = ACTIONS(2066), - [sym_float_literal] = ACTIONS(2066), + [ts_builtin_sym_end] = ACTIONS(2199), + [sym_identifier] = ACTIONS(2201), + [anon_sym_SEMI] = ACTIONS(2199), + [anon_sym_macro_rules_BANG] = ACTIONS(2199), + [anon_sym_LPAREN] = ACTIONS(2199), + [anon_sym_LBRACK] = ACTIONS(2199), + [anon_sym_LBRACE] = ACTIONS(2199), + [anon_sym_RBRACE] = ACTIONS(2199), + [anon_sym_macro] = ACTIONS(2201), + [anon_sym_STAR] = ACTIONS(2199), + [anon_sym_u8] = ACTIONS(2201), + [anon_sym_i8] = ACTIONS(2201), + [anon_sym_u16] = ACTIONS(2201), + [anon_sym_i16] = ACTIONS(2201), + [anon_sym_u32] = ACTIONS(2201), + [anon_sym_i32] = ACTIONS(2201), + [anon_sym_u64] = ACTIONS(2201), + [anon_sym_i64] = ACTIONS(2201), + [anon_sym_u128] = ACTIONS(2201), + [anon_sym_i128] = ACTIONS(2201), + [anon_sym_isize] = ACTIONS(2201), + [anon_sym_usize] = ACTIONS(2201), + [anon_sym_f32] = ACTIONS(2201), + [anon_sym_f64] = ACTIONS(2201), + [anon_sym_bool] = ACTIONS(2201), + [anon_sym_str] = ACTIONS(2201), + [anon_sym_char] = ACTIONS(2201), + [anon_sym_DASH] = ACTIONS(2199), + [anon_sym_BANG] = ACTIONS(2199), + [anon_sym_AMP] = ACTIONS(2199), + [anon_sym_PIPE] = ACTIONS(2199), + [anon_sym_LT] = ACTIONS(2199), + [anon_sym_DOT_DOT] = ACTIONS(2199), + [anon_sym_COLON_COLON] = ACTIONS(2199), + [anon_sym_POUND] = ACTIONS(2199), + [anon_sym_SQUOTE] = ACTIONS(2201), + [anon_sym_async] = ACTIONS(2201), + [anon_sym_break] = ACTIONS(2201), + [anon_sym_const] = ACTIONS(2201), + [anon_sym_continue] = ACTIONS(2201), + [anon_sym_default] = ACTIONS(2201), + [anon_sym_enum] = ACTIONS(2201), + [anon_sym_fn] = ACTIONS(2201), + [anon_sym_for] = ACTIONS(2201), + [anon_sym_if] = ACTIONS(2201), + [anon_sym_impl] = ACTIONS(2201), + [anon_sym_let] = ACTIONS(2201), + [anon_sym_loop] = ACTIONS(2201), + [anon_sym_match] = ACTIONS(2201), + [anon_sym_mod] = ACTIONS(2201), + [anon_sym_pub] = ACTIONS(2201), + [anon_sym_return] = ACTIONS(2201), + [anon_sym_static] = ACTIONS(2201), + [anon_sym_struct] = ACTIONS(2201), + [anon_sym_trait] = ACTIONS(2201), + [anon_sym_type] = ACTIONS(2201), + [anon_sym_union] = ACTIONS(2201), + [anon_sym_unsafe] = ACTIONS(2201), + [anon_sym_use] = ACTIONS(2201), + [anon_sym_while] = ACTIONS(2201), + [anon_sym_extern] = ACTIONS(2201), + [anon_sym_yield] = ACTIONS(2201), + [anon_sym_move] = ACTIONS(2201), + [anon_sym_try] = ACTIONS(2201), + [sym_integer_literal] = ACTIONS(2199), + [aux_sym_string_literal_token1] = ACTIONS(2199), + [sym_char_literal] = ACTIONS(2199), + [anon_sym_true] = ACTIONS(2201), + [anon_sym_false] = ACTIONS(2201), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2201), + [sym_super] = ACTIONS(2201), + [sym_crate] = ACTIONS(2201), + [sym_metavariable] = ACTIONS(2199), + [sym__raw_string_literal_start] = ACTIONS(2199), + [sym_float_literal] = ACTIONS(2199), }, [581] = { [sym_line_comment] = STATE(581), [sym_block_comment] = STATE(581), - [ts_builtin_sym_end] = ACTIONS(2070), - [sym_identifier] = ACTIONS(2072), - [anon_sym_SEMI] = ACTIONS(2070), - [anon_sym_macro_rules_BANG] = ACTIONS(2070), - [anon_sym_LPAREN] = ACTIONS(2070), - [anon_sym_LBRACK] = ACTIONS(2070), - [anon_sym_LBRACE] = ACTIONS(2070), - [anon_sym_RBRACE] = ACTIONS(2070), - [anon_sym_STAR] = ACTIONS(2070), - [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), - [anon_sym_DASH] = ACTIONS(2070), - [anon_sym_BANG] = ACTIONS(2070), - [anon_sym_AMP] = ACTIONS(2070), - [anon_sym_PIPE] = ACTIONS(2070), - [anon_sym_LT] = ACTIONS(2070), - [anon_sym_DOT_DOT] = ACTIONS(2070), - [anon_sym_COLON_COLON] = ACTIONS(2070), - [anon_sym_POUND] = ACTIONS(2070), - [anon_sym_SQUOTE] = ACTIONS(2072), - [anon_sym_async] = 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_while] = ACTIONS(2072), - [anon_sym_extern] = ACTIONS(2072), - [anon_sym_yield] = ACTIONS(2072), - [anon_sym_move] = ACTIONS(2072), - [anon_sym_try] = ACTIONS(2072), - [sym_integer_literal] = ACTIONS(2070), - [aux_sym_string_literal_token1] = ACTIONS(2070), - [sym_char_literal] = ACTIONS(2070), - [anon_sym_true] = ACTIONS(2072), - [anon_sym_false] = ACTIONS(2072), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2072), - [sym_super] = ACTIONS(2072), - [sym_crate] = ACTIONS(2072), - [sym_metavariable] = ACTIONS(2070), - [sym__raw_string_literal_start] = ACTIONS(2070), - [sym_float_literal] = ACTIONS(2070), + [ts_builtin_sym_end] = ACTIONS(2203), + [sym_identifier] = ACTIONS(2205), + [anon_sym_SEMI] = ACTIONS(2203), + [anon_sym_macro_rules_BANG] = ACTIONS(2203), + [anon_sym_LPAREN] = ACTIONS(2203), + [anon_sym_LBRACK] = ACTIONS(2203), + [anon_sym_LBRACE] = ACTIONS(2203), + [anon_sym_RBRACE] = ACTIONS(2203), + [anon_sym_macro] = ACTIONS(2205), + [anon_sym_STAR] = ACTIONS(2203), + [anon_sym_u8] = ACTIONS(2205), + [anon_sym_i8] = ACTIONS(2205), + [anon_sym_u16] = ACTIONS(2205), + [anon_sym_i16] = ACTIONS(2205), + [anon_sym_u32] = ACTIONS(2205), + [anon_sym_i32] = ACTIONS(2205), + [anon_sym_u64] = ACTIONS(2205), + [anon_sym_i64] = ACTIONS(2205), + [anon_sym_u128] = ACTIONS(2205), + [anon_sym_i128] = ACTIONS(2205), + [anon_sym_isize] = ACTIONS(2205), + [anon_sym_usize] = ACTIONS(2205), + [anon_sym_f32] = ACTIONS(2205), + [anon_sym_f64] = ACTIONS(2205), + [anon_sym_bool] = ACTIONS(2205), + [anon_sym_str] = ACTIONS(2205), + [anon_sym_char] = ACTIONS(2205), + [anon_sym_DASH] = ACTIONS(2203), + [anon_sym_BANG] = ACTIONS(2203), + [anon_sym_AMP] = ACTIONS(2203), + [anon_sym_PIPE] = ACTIONS(2203), + [anon_sym_LT] = ACTIONS(2203), + [anon_sym_DOT_DOT] = ACTIONS(2203), + [anon_sym_COLON_COLON] = ACTIONS(2203), + [anon_sym_POUND] = ACTIONS(2203), + [anon_sym_SQUOTE] = ACTIONS(2205), + [anon_sym_async] = ACTIONS(2205), + [anon_sym_break] = ACTIONS(2205), + [anon_sym_const] = ACTIONS(2205), + [anon_sym_continue] = ACTIONS(2205), + [anon_sym_default] = ACTIONS(2205), + [anon_sym_enum] = ACTIONS(2205), + [anon_sym_fn] = ACTIONS(2205), + [anon_sym_for] = ACTIONS(2205), + [anon_sym_if] = ACTIONS(2205), + [anon_sym_impl] = ACTIONS(2205), + [anon_sym_let] = ACTIONS(2205), + [anon_sym_loop] = ACTIONS(2205), + [anon_sym_match] = ACTIONS(2205), + [anon_sym_mod] = ACTIONS(2205), + [anon_sym_pub] = ACTIONS(2205), + [anon_sym_return] = ACTIONS(2205), + [anon_sym_static] = ACTIONS(2205), + [anon_sym_struct] = ACTIONS(2205), + [anon_sym_trait] = ACTIONS(2205), + [anon_sym_type] = ACTIONS(2205), + [anon_sym_union] = ACTIONS(2205), + [anon_sym_unsafe] = ACTIONS(2205), + [anon_sym_use] = ACTIONS(2205), + [anon_sym_while] = ACTIONS(2205), + [anon_sym_extern] = ACTIONS(2205), + [anon_sym_yield] = ACTIONS(2205), + [anon_sym_move] = ACTIONS(2205), + [anon_sym_try] = ACTIONS(2205), + [sym_integer_literal] = ACTIONS(2203), + [aux_sym_string_literal_token1] = ACTIONS(2203), + [sym_char_literal] = ACTIONS(2203), + [anon_sym_true] = ACTIONS(2205), + [anon_sym_false] = ACTIONS(2205), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2205), + [sym_super] = ACTIONS(2205), + [sym_crate] = ACTIONS(2205), + [sym_metavariable] = ACTIONS(2203), + [sym__raw_string_literal_start] = ACTIONS(2203), + [sym_float_literal] = ACTIONS(2203), }, [582] = { [sym_line_comment] = STATE(582), [sym_block_comment] = STATE(582), - [ts_builtin_sym_end] = ACTIONS(2074), - [sym_identifier] = ACTIONS(2076), - [anon_sym_SEMI] = ACTIONS(2074), - [anon_sym_macro_rules_BANG] = ACTIONS(2074), - [anon_sym_LPAREN] = ACTIONS(2074), - [anon_sym_LBRACK] = ACTIONS(2074), - [anon_sym_LBRACE] = ACTIONS(2074), - [anon_sym_RBRACE] = ACTIONS(2074), - [anon_sym_STAR] = ACTIONS(2074), - [anon_sym_u8] = ACTIONS(2076), - [anon_sym_i8] = ACTIONS(2076), - [anon_sym_u16] = ACTIONS(2076), - [anon_sym_i16] = ACTIONS(2076), - [anon_sym_u32] = ACTIONS(2076), - [anon_sym_i32] = ACTIONS(2076), - [anon_sym_u64] = ACTIONS(2076), - [anon_sym_i64] = ACTIONS(2076), - [anon_sym_u128] = ACTIONS(2076), - [anon_sym_i128] = ACTIONS(2076), - [anon_sym_isize] = ACTIONS(2076), - [anon_sym_usize] = ACTIONS(2076), - [anon_sym_f32] = ACTIONS(2076), - [anon_sym_f64] = ACTIONS(2076), - [anon_sym_bool] = ACTIONS(2076), - [anon_sym_str] = ACTIONS(2076), - [anon_sym_char] = ACTIONS(2076), - [anon_sym_DASH] = ACTIONS(2074), - [anon_sym_BANG] = ACTIONS(2074), - [anon_sym_AMP] = ACTIONS(2074), - [anon_sym_PIPE] = ACTIONS(2074), - [anon_sym_LT] = ACTIONS(2074), - [anon_sym_DOT_DOT] = ACTIONS(2074), - [anon_sym_COLON_COLON] = ACTIONS(2074), - [anon_sym_POUND] = ACTIONS(2074), - [anon_sym_SQUOTE] = ACTIONS(2076), - [anon_sym_async] = ACTIONS(2076), - [anon_sym_break] = ACTIONS(2076), - [anon_sym_const] = ACTIONS(2076), - [anon_sym_continue] = ACTIONS(2076), - [anon_sym_default] = ACTIONS(2076), - [anon_sym_enum] = ACTIONS(2076), - [anon_sym_fn] = ACTIONS(2076), - [anon_sym_for] = ACTIONS(2076), - [anon_sym_if] = ACTIONS(2076), - [anon_sym_impl] = ACTIONS(2076), - [anon_sym_let] = ACTIONS(2076), - [anon_sym_loop] = ACTIONS(2076), - [anon_sym_match] = ACTIONS(2076), - [anon_sym_mod] = ACTIONS(2076), - [anon_sym_pub] = ACTIONS(2076), - [anon_sym_return] = ACTIONS(2076), - [anon_sym_static] = ACTIONS(2076), - [anon_sym_struct] = ACTIONS(2076), - [anon_sym_trait] = ACTIONS(2076), - [anon_sym_type] = ACTIONS(2076), - [anon_sym_union] = ACTIONS(2076), - [anon_sym_unsafe] = ACTIONS(2076), - [anon_sym_use] = ACTIONS(2076), - [anon_sym_while] = ACTIONS(2076), - [anon_sym_extern] = ACTIONS(2076), - [anon_sym_yield] = ACTIONS(2076), - [anon_sym_move] = ACTIONS(2076), - [anon_sym_try] = ACTIONS(2076), - [sym_integer_literal] = ACTIONS(2074), - [aux_sym_string_literal_token1] = ACTIONS(2074), - [sym_char_literal] = ACTIONS(2074), - [anon_sym_true] = ACTIONS(2076), - [anon_sym_false] = ACTIONS(2076), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2076), - [sym_super] = ACTIONS(2076), - [sym_crate] = ACTIONS(2076), - [sym_metavariable] = ACTIONS(2074), - [sym__raw_string_literal_start] = ACTIONS(2074), - [sym_float_literal] = ACTIONS(2074), + [ts_builtin_sym_end] = ACTIONS(2207), + [sym_identifier] = ACTIONS(2209), + [anon_sym_SEMI] = ACTIONS(2207), + [anon_sym_macro_rules_BANG] = ACTIONS(2207), + [anon_sym_LPAREN] = ACTIONS(2207), + [anon_sym_LBRACK] = ACTIONS(2207), + [anon_sym_LBRACE] = ACTIONS(2207), + [anon_sym_RBRACE] = ACTIONS(2207), + [anon_sym_macro] = ACTIONS(2209), + [anon_sym_STAR] = ACTIONS(2207), + [anon_sym_u8] = ACTIONS(2209), + [anon_sym_i8] = ACTIONS(2209), + [anon_sym_u16] = ACTIONS(2209), + [anon_sym_i16] = ACTIONS(2209), + [anon_sym_u32] = ACTIONS(2209), + [anon_sym_i32] = ACTIONS(2209), + [anon_sym_u64] = ACTIONS(2209), + [anon_sym_i64] = ACTIONS(2209), + [anon_sym_u128] = ACTIONS(2209), + [anon_sym_i128] = ACTIONS(2209), + [anon_sym_isize] = ACTIONS(2209), + [anon_sym_usize] = ACTIONS(2209), + [anon_sym_f32] = ACTIONS(2209), + [anon_sym_f64] = ACTIONS(2209), + [anon_sym_bool] = ACTIONS(2209), + [anon_sym_str] = ACTIONS(2209), + [anon_sym_char] = ACTIONS(2209), + [anon_sym_DASH] = ACTIONS(2207), + [anon_sym_BANG] = ACTIONS(2207), + [anon_sym_AMP] = ACTIONS(2207), + [anon_sym_PIPE] = ACTIONS(2207), + [anon_sym_LT] = ACTIONS(2207), + [anon_sym_DOT_DOT] = ACTIONS(2207), + [anon_sym_COLON_COLON] = ACTIONS(2207), + [anon_sym_POUND] = ACTIONS(2207), + [anon_sym_SQUOTE] = ACTIONS(2209), + [anon_sym_async] = ACTIONS(2209), + [anon_sym_break] = ACTIONS(2209), + [anon_sym_const] = ACTIONS(2209), + [anon_sym_continue] = ACTIONS(2209), + [anon_sym_default] = ACTIONS(2209), + [anon_sym_enum] = ACTIONS(2209), + [anon_sym_fn] = ACTIONS(2209), + [anon_sym_for] = ACTIONS(2209), + [anon_sym_if] = ACTIONS(2209), + [anon_sym_impl] = ACTIONS(2209), + [anon_sym_let] = ACTIONS(2209), + [anon_sym_loop] = ACTIONS(2209), + [anon_sym_match] = ACTIONS(2209), + [anon_sym_mod] = ACTIONS(2209), + [anon_sym_pub] = ACTIONS(2209), + [anon_sym_return] = ACTIONS(2209), + [anon_sym_static] = ACTIONS(2209), + [anon_sym_struct] = ACTIONS(2209), + [anon_sym_trait] = ACTIONS(2209), + [anon_sym_type] = ACTIONS(2209), + [anon_sym_union] = ACTIONS(2209), + [anon_sym_unsafe] = ACTIONS(2209), + [anon_sym_use] = ACTIONS(2209), + [anon_sym_while] = ACTIONS(2209), + [anon_sym_extern] = ACTIONS(2209), + [anon_sym_yield] = ACTIONS(2209), + [anon_sym_move] = ACTIONS(2209), + [anon_sym_try] = ACTIONS(2209), + [sym_integer_literal] = ACTIONS(2207), + [aux_sym_string_literal_token1] = ACTIONS(2207), + [sym_char_literal] = ACTIONS(2207), + [anon_sym_true] = ACTIONS(2209), + [anon_sym_false] = ACTIONS(2209), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2209), + [sym_super] = ACTIONS(2209), + [sym_crate] = ACTIONS(2209), + [sym_metavariable] = ACTIONS(2207), + [sym__raw_string_literal_start] = ACTIONS(2207), + [sym_float_literal] = ACTIONS(2207), }, [583] = { [sym_line_comment] = STATE(583), [sym_block_comment] = STATE(583), - [ts_builtin_sym_end] = ACTIONS(2078), - [sym_identifier] = ACTIONS(2080), - [anon_sym_SEMI] = ACTIONS(2078), - [anon_sym_macro_rules_BANG] = ACTIONS(2078), - [anon_sym_LPAREN] = ACTIONS(2078), - [anon_sym_LBRACK] = ACTIONS(2078), - [anon_sym_LBRACE] = ACTIONS(2078), - [anon_sym_RBRACE] = ACTIONS(2078), - [anon_sym_STAR] = ACTIONS(2078), - [anon_sym_u8] = ACTIONS(2080), - [anon_sym_i8] = ACTIONS(2080), - [anon_sym_u16] = ACTIONS(2080), - [anon_sym_i16] = ACTIONS(2080), - [anon_sym_u32] = ACTIONS(2080), - [anon_sym_i32] = ACTIONS(2080), - [anon_sym_u64] = ACTIONS(2080), - [anon_sym_i64] = ACTIONS(2080), - [anon_sym_u128] = ACTIONS(2080), - [anon_sym_i128] = ACTIONS(2080), - [anon_sym_isize] = ACTIONS(2080), - [anon_sym_usize] = ACTIONS(2080), - [anon_sym_f32] = ACTIONS(2080), - [anon_sym_f64] = ACTIONS(2080), - [anon_sym_bool] = ACTIONS(2080), - [anon_sym_str] = ACTIONS(2080), - [anon_sym_char] = ACTIONS(2080), - [anon_sym_DASH] = ACTIONS(2078), - [anon_sym_BANG] = ACTIONS(2078), - [anon_sym_AMP] = ACTIONS(2078), - [anon_sym_PIPE] = ACTIONS(2078), - [anon_sym_LT] = ACTIONS(2078), - [anon_sym_DOT_DOT] = ACTIONS(2078), - [anon_sym_COLON_COLON] = ACTIONS(2078), - [anon_sym_POUND] = ACTIONS(2078), - [anon_sym_SQUOTE] = ACTIONS(2080), - [anon_sym_async] = ACTIONS(2080), - [anon_sym_break] = ACTIONS(2080), - [anon_sym_const] = ACTIONS(2080), - [anon_sym_continue] = ACTIONS(2080), - [anon_sym_default] = ACTIONS(2080), - [anon_sym_enum] = ACTIONS(2080), - [anon_sym_fn] = ACTIONS(2080), - [anon_sym_for] = ACTIONS(2080), - [anon_sym_if] = ACTIONS(2080), - [anon_sym_impl] = ACTIONS(2080), - [anon_sym_let] = ACTIONS(2080), - [anon_sym_loop] = ACTIONS(2080), - [anon_sym_match] = ACTIONS(2080), - [anon_sym_mod] = ACTIONS(2080), - [anon_sym_pub] = ACTIONS(2080), - [anon_sym_return] = ACTIONS(2080), - [anon_sym_static] = ACTIONS(2080), - [anon_sym_struct] = ACTIONS(2080), - [anon_sym_trait] = ACTIONS(2080), - [anon_sym_type] = ACTIONS(2080), - [anon_sym_union] = ACTIONS(2080), - [anon_sym_unsafe] = ACTIONS(2080), - [anon_sym_use] = ACTIONS(2080), - [anon_sym_while] = ACTIONS(2080), - [anon_sym_extern] = ACTIONS(2080), - [anon_sym_yield] = ACTIONS(2080), - [anon_sym_move] = ACTIONS(2080), - [anon_sym_try] = ACTIONS(2080), - [sym_integer_literal] = ACTIONS(2078), - [aux_sym_string_literal_token1] = ACTIONS(2078), - [sym_char_literal] = ACTIONS(2078), - [anon_sym_true] = ACTIONS(2080), - [anon_sym_false] = ACTIONS(2080), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2080), - [sym_super] = ACTIONS(2080), - [sym_crate] = ACTIONS(2080), - [sym_metavariable] = ACTIONS(2078), - [sym__raw_string_literal_start] = ACTIONS(2078), - [sym_float_literal] = ACTIONS(2078), + [ts_builtin_sym_end] = ACTIONS(2211), + [sym_identifier] = ACTIONS(2213), + [anon_sym_SEMI] = ACTIONS(2211), + [anon_sym_macro_rules_BANG] = ACTIONS(2211), + [anon_sym_LPAREN] = ACTIONS(2211), + [anon_sym_LBRACK] = ACTIONS(2211), + [anon_sym_LBRACE] = ACTIONS(2211), + [anon_sym_RBRACE] = ACTIONS(2211), + [anon_sym_macro] = ACTIONS(2213), + [anon_sym_STAR] = ACTIONS(2211), + [anon_sym_u8] = ACTIONS(2213), + [anon_sym_i8] = ACTIONS(2213), + [anon_sym_u16] = ACTIONS(2213), + [anon_sym_i16] = ACTIONS(2213), + [anon_sym_u32] = ACTIONS(2213), + [anon_sym_i32] = ACTIONS(2213), + [anon_sym_u64] = ACTIONS(2213), + [anon_sym_i64] = ACTIONS(2213), + [anon_sym_u128] = ACTIONS(2213), + [anon_sym_i128] = ACTIONS(2213), + [anon_sym_isize] = ACTIONS(2213), + [anon_sym_usize] = ACTIONS(2213), + [anon_sym_f32] = ACTIONS(2213), + [anon_sym_f64] = ACTIONS(2213), + [anon_sym_bool] = ACTIONS(2213), + [anon_sym_str] = ACTIONS(2213), + [anon_sym_char] = ACTIONS(2213), + [anon_sym_DASH] = ACTIONS(2211), + [anon_sym_BANG] = ACTIONS(2211), + [anon_sym_AMP] = ACTIONS(2211), + [anon_sym_PIPE] = ACTIONS(2211), + [anon_sym_LT] = ACTIONS(2211), + [anon_sym_DOT_DOT] = ACTIONS(2211), + [anon_sym_COLON_COLON] = ACTIONS(2211), + [anon_sym_POUND] = ACTIONS(2211), + [anon_sym_SQUOTE] = ACTIONS(2213), + [anon_sym_async] = ACTIONS(2213), + [anon_sym_break] = ACTIONS(2213), + [anon_sym_const] = ACTIONS(2213), + [anon_sym_continue] = ACTIONS(2213), + [anon_sym_default] = ACTIONS(2213), + [anon_sym_enum] = ACTIONS(2213), + [anon_sym_fn] = ACTIONS(2213), + [anon_sym_for] = ACTIONS(2213), + [anon_sym_if] = ACTIONS(2213), + [anon_sym_impl] = ACTIONS(2213), + [anon_sym_let] = ACTIONS(2213), + [anon_sym_loop] = ACTIONS(2213), + [anon_sym_match] = ACTIONS(2213), + [anon_sym_mod] = ACTIONS(2213), + [anon_sym_pub] = ACTIONS(2213), + [anon_sym_return] = ACTIONS(2213), + [anon_sym_static] = ACTIONS(2213), + [anon_sym_struct] = ACTIONS(2213), + [anon_sym_trait] = ACTIONS(2213), + [anon_sym_type] = ACTIONS(2213), + [anon_sym_union] = ACTIONS(2213), + [anon_sym_unsafe] = ACTIONS(2213), + [anon_sym_use] = ACTIONS(2213), + [anon_sym_while] = ACTIONS(2213), + [anon_sym_extern] = ACTIONS(2213), + [anon_sym_yield] = ACTIONS(2213), + [anon_sym_move] = ACTIONS(2213), + [anon_sym_try] = ACTIONS(2213), + [sym_integer_literal] = ACTIONS(2211), + [aux_sym_string_literal_token1] = ACTIONS(2211), + [sym_char_literal] = ACTIONS(2211), + [anon_sym_true] = ACTIONS(2213), + [anon_sym_false] = ACTIONS(2213), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2213), + [sym_super] = ACTIONS(2213), + [sym_crate] = ACTIONS(2213), + [sym_metavariable] = ACTIONS(2211), + [sym__raw_string_literal_start] = ACTIONS(2211), + [sym_float_literal] = ACTIONS(2211), }, [584] = { [sym_line_comment] = STATE(584), [sym_block_comment] = STATE(584), - [ts_builtin_sym_end] = ACTIONS(2082), - [sym_identifier] = ACTIONS(2084), - [anon_sym_SEMI] = ACTIONS(2082), - [anon_sym_macro_rules_BANG] = ACTIONS(2082), - [anon_sym_LPAREN] = ACTIONS(2082), - [anon_sym_LBRACK] = ACTIONS(2082), - [anon_sym_LBRACE] = ACTIONS(2082), - [anon_sym_RBRACE] = ACTIONS(2082), - [anon_sym_STAR] = ACTIONS(2082), - [anon_sym_u8] = ACTIONS(2084), - [anon_sym_i8] = ACTIONS(2084), - [anon_sym_u16] = ACTIONS(2084), - [anon_sym_i16] = ACTIONS(2084), - [anon_sym_u32] = ACTIONS(2084), - [anon_sym_i32] = ACTIONS(2084), - [anon_sym_u64] = ACTIONS(2084), - [anon_sym_i64] = ACTIONS(2084), - [anon_sym_u128] = ACTIONS(2084), - [anon_sym_i128] = ACTIONS(2084), - [anon_sym_isize] = ACTIONS(2084), - [anon_sym_usize] = ACTIONS(2084), - [anon_sym_f32] = ACTIONS(2084), - [anon_sym_f64] = ACTIONS(2084), - [anon_sym_bool] = ACTIONS(2084), - [anon_sym_str] = ACTIONS(2084), - [anon_sym_char] = ACTIONS(2084), - [anon_sym_DASH] = ACTIONS(2082), - [anon_sym_BANG] = ACTIONS(2082), - [anon_sym_AMP] = ACTIONS(2082), - [anon_sym_PIPE] = ACTIONS(2082), - [anon_sym_LT] = ACTIONS(2082), - [anon_sym_DOT_DOT] = ACTIONS(2082), - [anon_sym_COLON_COLON] = ACTIONS(2082), - [anon_sym_POUND] = ACTIONS(2082), - [anon_sym_SQUOTE] = ACTIONS(2084), - [anon_sym_async] = ACTIONS(2084), - [anon_sym_break] = ACTIONS(2084), - [anon_sym_const] = ACTIONS(2084), - [anon_sym_continue] = ACTIONS(2084), - [anon_sym_default] = ACTIONS(2084), - [anon_sym_enum] = ACTIONS(2084), - [anon_sym_fn] = ACTIONS(2084), - [anon_sym_for] = ACTIONS(2084), - [anon_sym_if] = ACTIONS(2084), - [anon_sym_impl] = ACTIONS(2084), - [anon_sym_let] = ACTIONS(2084), - [anon_sym_loop] = ACTIONS(2084), - [anon_sym_match] = ACTIONS(2084), - [anon_sym_mod] = ACTIONS(2084), - [anon_sym_pub] = ACTIONS(2084), - [anon_sym_return] = ACTIONS(2084), - [anon_sym_static] = ACTIONS(2084), - [anon_sym_struct] = ACTIONS(2084), - [anon_sym_trait] = ACTIONS(2084), - [anon_sym_type] = ACTIONS(2084), - [anon_sym_union] = ACTIONS(2084), - [anon_sym_unsafe] = ACTIONS(2084), - [anon_sym_use] = ACTIONS(2084), - [anon_sym_while] = ACTIONS(2084), - [anon_sym_extern] = ACTIONS(2084), - [anon_sym_yield] = ACTIONS(2084), - [anon_sym_move] = ACTIONS(2084), - [anon_sym_try] = ACTIONS(2084), - [sym_integer_literal] = ACTIONS(2082), - [aux_sym_string_literal_token1] = ACTIONS(2082), - [sym_char_literal] = ACTIONS(2082), - [anon_sym_true] = ACTIONS(2084), - [anon_sym_false] = ACTIONS(2084), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2084), - [sym_super] = ACTIONS(2084), - [sym_crate] = ACTIONS(2084), - [sym_metavariable] = ACTIONS(2082), - [sym__raw_string_literal_start] = ACTIONS(2082), - [sym_float_literal] = ACTIONS(2082), + [ts_builtin_sym_end] = ACTIONS(2215), + [sym_identifier] = ACTIONS(2217), + [anon_sym_SEMI] = ACTIONS(2215), + [anon_sym_macro_rules_BANG] = ACTIONS(2215), + [anon_sym_LPAREN] = ACTIONS(2215), + [anon_sym_LBRACK] = ACTIONS(2215), + [anon_sym_LBRACE] = ACTIONS(2215), + [anon_sym_RBRACE] = ACTIONS(2215), + [anon_sym_macro] = ACTIONS(2217), + [anon_sym_STAR] = ACTIONS(2215), + [anon_sym_u8] = ACTIONS(2217), + [anon_sym_i8] = ACTIONS(2217), + [anon_sym_u16] = ACTIONS(2217), + [anon_sym_i16] = ACTIONS(2217), + [anon_sym_u32] = ACTIONS(2217), + [anon_sym_i32] = ACTIONS(2217), + [anon_sym_u64] = ACTIONS(2217), + [anon_sym_i64] = ACTIONS(2217), + [anon_sym_u128] = ACTIONS(2217), + [anon_sym_i128] = ACTIONS(2217), + [anon_sym_isize] = ACTIONS(2217), + [anon_sym_usize] = ACTIONS(2217), + [anon_sym_f32] = ACTIONS(2217), + [anon_sym_f64] = ACTIONS(2217), + [anon_sym_bool] = ACTIONS(2217), + [anon_sym_str] = ACTIONS(2217), + [anon_sym_char] = ACTIONS(2217), + [anon_sym_DASH] = ACTIONS(2215), + [anon_sym_BANG] = ACTIONS(2215), + [anon_sym_AMP] = ACTIONS(2215), + [anon_sym_PIPE] = ACTIONS(2215), + [anon_sym_LT] = ACTIONS(2215), + [anon_sym_DOT_DOT] = ACTIONS(2215), + [anon_sym_COLON_COLON] = ACTIONS(2215), + [anon_sym_POUND] = ACTIONS(2215), + [anon_sym_SQUOTE] = ACTIONS(2217), + [anon_sym_async] = ACTIONS(2217), + [anon_sym_break] = ACTIONS(2217), + [anon_sym_const] = ACTIONS(2217), + [anon_sym_continue] = ACTIONS(2217), + [anon_sym_default] = ACTIONS(2217), + [anon_sym_enum] = ACTIONS(2217), + [anon_sym_fn] = ACTIONS(2217), + [anon_sym_for] = ACTIONS(2217), + [anon_sym_if] = ACTIONS(2217), + [anon_sym_impl] = ACTIONS(2217), + [anon_sym_let] = ACTIONS(2217), + [anon_sym_loop] = ACTIONS(2217), + [anon_sym_match] = ACTIONS(2217), + [anon_sym_mod] = ACTIONS(2217), + [anon_sym_pub] = ACTIONS(2217), + [anon_sym_return] = ACTIONS(2217), + [anon_sym_static] = ACTIONS(2217), + [anon_sym_struct] = ACTIONS(2217), + [anon_sym_trait] = ACTIONS(2217), + [anon_sym_type] = ACTIONS(2217), + [anon_sym_union] = ACTIONS(2217), + [anon_sym_unsafe] = ACTIONS(2217), + [anon_sym_use] = ACTIONS(2217), + [anon_sym_while] = ACTIONS(2217), + [anon_sym_extern] = ACTIONS(2217), + [anon_sym_yield] = ACTIONS(2217), + [anon_sym_move] = ACTIONS(2217), + [anon_sym_try] = ACTIONS(2217), + [sym_integer_literal] = ACTIONS(2215), + [aux_sym_string_literal_token1] = ACTIONS(2215), + [sym_char_literal] = ACTIONS(2215), + [anon_sym_true] = ACTIONS(2217), + [anon_sym_false] = ACTIONS(2217), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2217), + [sym_super] = ACTIONS(2217), + [sym_crate] = ACTIONS(2217), + [sym_metavariable] = ACTIONS(2215), + [sym__raw_string_literal_start] = ACTIONS(2215), + [sym_float_literal] = ACTIONS(2215), }, [585] = { [sym_line_comment] = STATE(585), [sym_block_comment] = STATE(585), - [ts_builtin_sym_end] = ACTIONS(2086), - [sym_identifier] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2086), - [anon_sym_macro_rules_BANG] = ACTIONS(2086), - [anon_sym_LPAREN] = ACTIONS(2086), - [anon_sym_LBRACK] = ACTIONS(2086), - [anon_sym_LBRACE] = ACTIONS(2086), - [anon_sym_RBRACE] = ACTIONS(2086), - [anon_sym_STAR] = ACTIONS(2086), - [anon_sym_u8] = ACTIONS(2088), - [anon_sym_i8] = ACTIONS(2088), - [anon_sym_u16] = ACTIONS(2088), - [anon_sym_i16] = ACTIONS(2088), - [anon_sym_u32] = ACTIONS(2088), - [anon_sym_i32] = ACTIONS(2088), - [anon_sym_u64] = ACTIONS(2088), - [anon_sym_i64] = ACTIONS(2088), - [anon_sym_u128] = ACTIONS(2088), - [anon_sym_i128] = ACTIONS(2088), - [anon_sym_isize] = ACTIONS(2088), - [anon_sym_usize] = ACTIONS(2088), - [anon_sym_f32] = ACTIONS(2088), - [anon_sym_f64] = ACTIONS(2088), - [anon_sym_bool] = ACTIONS(2088), - [anon_sym_str] = ACTIONS(2088), - [anon_sym_char] = ACTIONS(2088), - [anon_sym_DASH] = ACTIONS(2086), - [anon_sym_BANG] = ACTIONS(2086), - [anon_sym_AMP] = ACTIONS(2086), - [anon_sym_PIPE] = ACTIONS(2086), - [anon_sym_LT] = ACTIONS(2086), - [anon_sym_DOT_DOT] = ACTIONS(2086), - [anon_sym_COLON_COLON] = ACTIONS(2086), - [anon_sym_POUND] = ACTIONS(2086), - [anon_sym_SQUOTE] = ACTIONS(2088), - [anon_sym_async] = ACTIONS(2088), - [anon_sym_break] = ACTIONS(2088), - [anon_sym_const] = ACTIONS(2088), - [anon_sym_continue] = ACTIONS(2088), - [anon_sym_default] = ACTIONS(2088), - [anon_sym_enum] = ACTIONS(2088), - [anon_sym_fn] = ACTIONS(2088), - [anon_sym_for] = ACTIONS(2088), - [anon_sym_if] = ACTIONS(2088), - [anon_sym_impl] = ACTIONS(2088), - [anon_sym_let] = ACTIONS(2088), - [anon_sym_loop] = ACTIONS(2088), - [anon_sym_match] = ACTIONS(2088), - [anon_sym_mod] = ACTIONS(2088), - [anon_sym_pub] = ACTIONS(2088), - [anon_sym_return] = ACTIONS(2088), - [anon_sym_static] = ACTIONS(2088), - [anon_sym_struct] = ACTIONS(2088), - [anon_sym_trait] = ACTIONS(2088), - [anon_sym_type] = ACTIONS(2088), - [anon_sym_union] = ACTIONS(2088), - [anon_sym_unsafe] = ACTIONS(2088), - [anon_sym_use] = ACTIONS(2088), - [anon_sym_while] = ACTIONS(2088), - [anon_sym_extern] = ACTIONS(2088), - [anon_sym_yield] = ACTIONS(2088), - [anon_sym_move] = ACTIONS(2088), - [anon_sym_try] = ACTIONS(2088), - [sym_integer_literal] = ACTIONS(2086), - [aux_sym_string_literal_token1] = ACTIONS(2086), - [sym_char_literal] = ACTIONS(2086), - [anon_sym_true] = ACTIONS(2088), - [anon_sym_false] = ACTIONS(2088), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2088), - [sym_super] = ACTIONS(2088), - [sym_crate] = ACTIONS(2088), - [sym_metavariable] = ACTIONS(2086), - [sym__raw_string_literal_start] = ACTIONS(2086), - [sym_float_literal] = ACTIONS(2086), + [ts_builtin_sym_end] = ACTIONS(2219), + [sym_identifier] = ACTIONS(2221), + [anon_sym_SEMI] = ACTIONS(2219), + [anon_sym_macro_rules_BANG] = ACTIONS(2219), + [anon_sym_LPAREN] = ACTIONS(2219), + [anon_sym_LBRACK] = ACTIONS(2219), + [anon_sym_LBRACE] = ACTIONS(2219), + [anon_sym_RBRACE] = ACTIONS(2219), + [anon_sym_macro] = ACTIONS(2221), + [anon_sym_STAR] = ACTIONS(2219), + [anon_sym_u8] = ACTIONS(2221), + [anon_sym_i8] = ACTIONS(2221), + [anon_sym_u16] = ACTIONS(2221), + [anon_sym_i16] = ACTIONS(2221), + [anon_sym_u32] = ACTIONS(2221), + [anon_sym_i32] = ACTIONS(2221), + [anon_sym_u64] = ACTIONS(2221), + [anon_sym_i64] = ACTIONS(2221), + [anon_sym_u128] = ACTIONS(2221), + [anon_sym_i128] = ACTIONS(2221), + [anon_sym_isize] = ACTIONS(2221), + [anon_sym_usize] = ACTIONS(2221), + [anon_sym_f32] = ACTIONS(2221), + [anon_sym_f64] = ACTIONS(2221), + [anon_sym_bool] = ACTIONS(2221), + [anon_sym_str] = ACTIONS(2221), + [anon_sym_char] = ACTIONS(2221), + [anon_sym_DASH] = ACTIONS(2219), + [anon_sym_BANG] = ACTIONS(2219), + [anon_sym_AMP] = ACTIONS(2219), + [anon_sym_PIPE] = ACTIONS(2219), + [anon_sym_LT] = ACTIONS(2219), + [anon_sym_DOT_DOT] = ACTIONS(2219), + [anon_sym_COLON_COLON] = ACTIONS(2219), + [anon_sym_POUND] = ACTIONS(2219), + [anon_sym_SQUOTE] = ACTIONS(2221), + [anon_sym_async] = ACTIONS(2221), + [anon_sym_break] = ACTIONS(2221), + [anon_sym_const] = ACTIONS(2221), + [anon_sym_continue] = ACTIONS(2221), + [anon_sym_default] = ACTIONS(2221), + [anon_sym_enum] = ACTIONS(2221), + [anon_sym_fn] = ACTIONS(2221), + [anon_sym_for] = ACTIONS(2221), + [anon_sym_if] = ACTIONS(2221), + [anon_sym_impl] = ACTIONS(2221), + [anon_sym_let] = ACTIONS(2221), + [anon_sym_loop] = ACTIONS(2221), + [anon_sym_match] = ACTIONS(2221), + [anon_sym_mod] = ACTIONS(2221), + [anon_sym_pub] = ACTIONS(2221), + [anon_sym_return] = ACTIONS(2221), + [anon_sym_static] = ACTIONS(2221), + [anon_sym_struct] = ACTIONS(2221), + [anon_sym_trait] = ACTIONS(2221), + [anon_sym_type] = ACTIONS(2221), + [anon_sym_union] = ACTIONS(2221), + [anon_sym_unsafe] = ACTIONS(2221), + [anon_sym_use] = ACTIONS(2221), + [anon_sym_while] = ACTIONS(2221), + [anon_sym_extern] = ACTIONS(2221), + [anon_sym_yield] = ACTIONS(2221), + [anon_sym_move] = ACTIONS(2221), + [anon_sym_try] = ACTIONS(2221), + [sym_integer_literal] = ACTIONS(2219), + [aux_sym_string_literal_token1] = ACTIONS(2219), + [sym_char_literal] = ACTIONS(2219), + [anon_sym_true] = ACTIONS(2221), + [anon_sym_false] = ACTIONS(2221), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2221), + [sym_super] = ACTIONS(2221), + [sym_crate] = ACTIONS(2221), + [sym_metavariable] = ACTIONS(2219), + [sym__raw_string_literal_start] = ACTIONS(2219), + [sym_float_literal] = ACTIONS(2219), }, [586] = { [sym_line_comment] = STATE(586), [sym_block_comment] = STATE(586), - [ts_builtin_sym_end] = ACTIONS(2090), - [sym_identifier] = ACTIONS(2092), - [anon_sym_SEMI] = ACTIONS(2090), - [anon_sym_macro_rules_BANG] = ACTIONS(2090), - [anon_sym_LPAREN] = ACTIONS(2090), - [anon_sym_LBRACK] = ACTIONS(2090), - [anon_sym_LBRACE] = ACTIONS(2090), - [anon_sym_RBRACE] = ACTIONS(2090), - [anon_sym_STAR] = ACTIONS(2090), - [anon_sym_u8] = ACTIONS(2092), - [anon_sym_i8] = ACTIONS(2092), - [anon_sym_u16] = ACTIONS(2092), - [anon_sym_i16] = ACTIONS(2092), - [anon_sym_u32] = ACTIONS(2092), - [anon_sym_i32] = ACTIONS(2092), - [anon_sym_u64] = ACTIONS(2092), - [anon_sym_i64] = ACTIONS(2092), - [anon_sym_u128] = ACTIONS(2092), - [anon_sym_i128] = ACTIONS(2092), - [anon_sym_isize] = ACTIONS(2092), - [anon_sym_usize] = ACTIONS(2092), - [anon_sym_f32] = ACTIONS(2092), - [anon_sym_f64] = ACTIONS(2092), - [anon_sym_bool] = ACTIONS(2092), - [anon_sym_str] = ACTIONS(2092), - [anon_sym_char] = ACTIONS(2092), - [anon_sym_DASH] = ACTIONS(2090), - [anon_sym_BANG] = ACTIONS(2090), - [anon_sym_AMP] = ACTIONS(2090), - [anon_sym_PIPE] = ACTIONS(2090), - [anon_sym_LT] = ACTIONS(2090), - [anon_sym_DOT_DOT] = ACTIONS(2090), - [anon_sym_COLON_COLON] = ACTIONS(2090), - [anon_sym_POUND] = ACTIONS(2090), - [anon_sym_SQUOTE] = ACTIONS(2092), - [anon_sym_async] = ACTIONS(2092), - [anon_sym_break] = ACTIONS(2092), - [anon_sym_const] = ACTIONS(2092), - [anon_sym_continue] = ACTIONS(2092), - [anon_sym_default] = ACTIONS(2092), - [anon_sym_enum] = ACTIONS(2092), - [anon_sym_fn] = ACTIONS(2092), - [anon_sym_for] = ACTIONS(2092), - [anon_sym_if] = ACTIONS(2092), - [anon_sym_impl] = ACTIONS(2092), - [anon_sym_let] = ACTIONS(2092), - [anon_sym_loop] = ACTIONS(2092), - [anon_sym_match] = ACTIONS(2092), - [anon_sym_mod] = ACTIONS(2092), - [anon_sym_pub] = ACTIONS(2092), - [anon_sym_return] = ACTIONS(2092), - [anon_sym_static] = ACTIONS(2092), - [anon_sym_struct] = ACTIONS(2092), - [anon_sym_trait] = ACTIONS(2092), - [anon_sym_type] = ACTIONS(2092), - [anon_sym_union] = ACTIONS(2092), - [anon_sym_unsafe] = ACTIONS(2092), - [anon_sym_use] = ACTIONS(2092), - [anon_sym_while] = ACTIONS(2092), - [anon_sym_extern] = ACTIONS(2092), - [anon_sym_yield] = ACTIONS(2092), - [anon_sym_move] = ACTIONS(2092), - [anon_sym_try] = ACTIONS(2092), - [sym_integer_literal] = ACTIONS(2090), - [aux_sym_string_literal_token1] = ACTIONS(2090), - [sym_char_literal] = ACTIONS(2090), - [anon_sym_true] = ACTIONS(2092), - [anon_sym_false] = ACTIONS(2092), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2092), - [sym_super] = ACTIONS(2092), - [sym_crate] = ACTIONS(2092), - [sym_metavariable] = ACTIONS(2090), - [sym__raw_string_literal_start] = ACTIONS(2090), - [sym_float_literal] = ACTIONS(2090), + [ts_builtin_sym_end] = ACTIONS(2223), + [sym_identifier] = ACTIONS(2225), + [anon_sym_SEMI] = ACTIONS(2223), + [anon_sym_macro_rules_BANG] = ACTIONS(2223), + [anon_sym_LPAREN] = ACTIONS(2223), + [anon_sym_LBRACK] = ACTIONS(2223), + [anon_sym_LBRACE] = ACTIONS(2223), + [anon_sym_RBRACE] = ACTIONS(2223), + [anon_sym_macro] = ACTIONS(2225), + [anon_sym_STAR] = ACTIONS(2223), + [anon_sym_u8] = ACTIONS(2225), + [anon_sym_i8] = ACTIONS(2225), + [anon_sym_u16] = ACTIONS(2225), + [anon_sym_i16] = ACTIONS(2225), + [anon_sym_u32] = ACTIONS(2225), + [anon_sym_i32] = ACTIONS(2225), + [anon_sym_u64] = ACTIONS(2225), + [anon_sym_i64] = ACTIONS(2225), + [anon_sym_u128] = ACTIONS(2225), + [anon_sym_i128] = ACTIONS(2225), + [anon_sym_isize] = ACTIONS(2225), + [anon_sym_usize] = ACTIONS(2225), + [anon_sym_f32] = ACTIONS(2225), + [anon_sym_f64] = ACTIONS(2225), + [anon_sym_bool] = ACTIONS(2225), + [anon_sym_str] = ACTIONS(2225), + [anon_sym_char] = ACTIONS(2225), + [anon_sym_DASH] = ACTIONS(2223), + [anon_sym_BANG] = ACTIONS(2223), + [anon_sym_AMP] = ACTIONS(2223), + [anon_sym_PIPE] = ACTIONS(2223), + [anon_sym_LT] = ACTIONS(2223), + [anon_sym_DOT_DOT] = ACTIONS(2223), + [anon_sym_COLON_COLON] = ACTIONS(2223), + [anon_sym_POUND] = ACTIONS(2223), + [anon_sym_SQUOTE] = ACTIONS(2225), + [anon_sym_async] = ACTIONS(2225), + [anon_sym_break] = ACTIONS(2225), + [anon_sym_const] = ACTIONS(2225), + [anon_sym_continue] = ACTIONS(2225), + [anon_sym_default] = ACTIONS(2225), + [anon_sym_enum] = ACTIONS(2225), + [anon_sym_fn] = ACTIONS(2225), + [anon_sym_for] = ACTIONS(2225), + [anon_sym_if] = ACTIONS(2225), + [anon_sym_impl] = ACTIONS(2225), + [anon_sym_let] = ACTIONS(2225), + [anon_sym_loop] = ACTIONS(2225), + [anon_sym_match] = ACTIONS(2225), + [anon_sym_mod] = ACTIONS(2225), + [anon_sym_pub] = ACTIONS(2225), + [anon_sym_return] = ACTIONS(2225), + [anon_sym_static] = ACTIONS(2225), + [anon_sym_struct] = ACTIONS(2225), + [anon_sym_trait] = ACTIONS(2225), + [anon_sym_type] = ACTIONS(2225), + [anon_sym_union] = ACTIONS(2225), + [anon_sym_unsafe] = ACTIONS(2225), + [anon_sym_use] = ACTIONS(2225), + [anon_sym_while] = ACTIONS(2225), + [anon_sym_extern] = ACTIONS(2225), + [anon_sym_yield] = ACTIONS(2225), + [anon_sym_move] = ACTIONS(2225), + [anon_sym_try] = ACTIONS(2225), + [sym_integer_literal] = ACTIONS(2223), + [aux_sym_string_literal_token1] = ACTIONS(2223), + [sym_char_literal] = ACTIONS(2223), + [anon_sym_true] = ACTIONS(2225), + [anon_sym_false] = ACTIONS(2225), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2225), + [sym_super] = ACTIONS(2225), + [sym_crate] = ACTIONS(2225), + [sym_metavariable] = ACTIONS(2223), + [sym__raw_string_literal_start] = ACTIONS(2223), + [sym_float_literal] = ACTIONS(2223), }, [587] = { [sym_line_comment] = STATE(587), [sym_block_comment] = STATE(587), - [ts_builtin_sym_end] = ACTIONS(2094), - [sym_identifier] = ACTIONS(2096), - [anon_sym_SEMI] = ACTIONS(2094), - [anon_sym_macro_rules_BANG] = ACTIONS(2094), - [anon_sym_LPAREN] = ACTIONS(2094), - [anon_sym_LBRACK] = ACTIONS(2094), - [anon_sym_LBRACE] = ACTIONS(2094), - [anon_sym_RBRACE] = ACTIONS(2094), - [anon_sym_STAR] = ACTIONS(2094), - [anon_sym_u8] = ACTIONS(2096), - [anon_sym_i8] = ACTIONS(2096), - [anon_sym_u16] = ACTIONS(2096), - [anon_sym_i16] = ACTIONS(2096), - [anon_sym_u32] = ACTIONS(2096), - [anon_sym_i32] = ACTIONS(2096), - [anon_sym_u64] = ACTIONS(2096), - [anon_sym_i64] = ACTIONS(2096), - [anon_sym_u128] = ACTIONS(2096), - [anon_sym_i128] = ACTIONS(2096), - [anon_sym_isize] = ACTIONS(2096), - [anon_sym_usize] = ACTIONS(2096), - [anon_sym_f32] = ACTIONS(2096), - [anon_sym_f64] = ACTIONS(2096), - [anon_sym_bool] = ACTIONS(2096), - [anon_sym_str] = ACTIONS(2096), - [anon_sym_char] = ACTIONS(2096), - [anon_sym_DASH] = ACTIONS(2094), - [anon_sym_BANG] = ACTIONS(2094), - [anon_sym_AMP] = ACTIONS(2094), - [anon_sym_PIPE] = ACTIONS(2094), - [anon_sym_LT] = ACTIONS(2094), - [anon_sym_DOT_DOT] = ACTIONS(2094), - [anon_sym_COLON_COLON] = ACTIONS(2094), - [anon_sym_POUND] = ACTIONS(2094), - [anon_sym_SQUOTE] = ACTIONS(2096), - [anon_sym_async] = ACTIONS(2096), - [anon_sym_break] = ACTIONS(2096), - [anon_sym_const] = ACTIONS(2096), - [anon_sym_continue] = ACTIONS(2096), - [anon_sym_default] = ACTIONS(2096), - [anon_sym_enum] = ACTIONS(2096), - [anon_sym_fn] = ACTIONS(2096), - [anon_sym_for] = ACTIONS(2096), - [anon_sym_if] = ACTIONS(2096), - [anon_sym_impl] = ACTIONS(2096), - [anon_sym_let] = ACTIONS(2096), - [anon_sym_loop] = ACTIONS(2096), - [anon_sym_match] = ACTIONS(2096), - [anon_sym_mod] = ACTIONS(2096), - [anon_sym_pub] = ACTIONS(2096), - [anon_sym_return] = ACTIONS(2096), - [anon_sym_static] = ACTIONS(2096), - [anon_sym_struct] = ACTIONS(2096), - [anon_sym_trait] = ACTIONS(2096), - [anon_sym_type] = ACTIONS(2096), - [anon_sym_union] = ACTIONS(2096), - [anon_sym_unsafe] = ACTIONS(2096), - [anon_sym_use] = ACTIONS(2096), - [anon_sym_while] = ACTIONS(2096), - [anon_sym_extern] = ACTIONS(2096), - [anon_sym_yield] = ACTIONS(2096), - [anon_sym_move] = ACTIONS(2096), - [anon_sym_try] = ACTIONS(2096), - [sym_integer_literal] = ACTIONS(2094), - [aux_sym_string_literal_token1] = ACTIONS(2094), - [sym_char_literal] = ACTIONS(2094), - [anon_sym_true] = ACTIONS(2096), - [anon_sym_false] = ACTIONS(2096), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2096), - [sym_super] = ACTIONS(2096), - [sym_crate] = ACTIONS(2096), - [sym_metavariable] = ACTIONS(2094), - [sym__raw_string_literal_start] = ACTIONS(2094), - [sym_float_literal] = ACTIONS(2094), + [ts_builtin_sym_end] = ACTIONS(2227), + [sym_identifier] = ACTIONS(2229), + [anon_sym_SEMI] = ACTIONS(2227), + [anon_sym_macro_rules_BANG] = ACTIONS(2227), + [anon_sym_LPAREN] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(2227), + [anon_sym_LBRACE] = ACTIONS(2227), + [anon_sym_RBRACE] = ACTIONS(2227), + [anon_sym_macro] = ACTIONS(2229), + [anon_sym_STAR] = ACTIONS(2227), + [anon_sym_u8] = ACTIONS(2229), + [anon_sym_i8] = ACTIONS(2229), + [anon_sym_u16] = ACTIONS(2229), + [anon_sym_i16] = ACTIONS(2229), + [anon_sym_u32] = ACTIONS(2229), + [anon_sym_i32] = ACTIONS(2229), + [anon_sym_u64] = ACTIONS(2229), + [anon_sym_i64] = ACTIONS(2229), + [anon_sym_u128] = ACTIONS(2229), + [anon_sym_i128] = ACTIONS(2229), + [anon_sym_isize] = ACTIONS(2229), + [anon_sym_usize] = ACTIONS(2229), + [anon_sym_f32] = ACTIONS(2229), + [anon_sym_f64] = ACTIONS(2229), + [anon_sym_bool] = ACTIONS(2229), + [anon_sym_str] = ACTIONS(2229), + [anon_sym_char] = ACTIONS(2229), + [anon_sym_DASH] = ACTIONS(2227), + [anon_sym_BANG] = ACTIONS(2227), + [anon_sym_AMP] = ACTIONS(2227), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LT] = ACTIONS(2227), + [anon_sym_DOT_DOT] = ACTIONS(2227), + [anon_sym_COLON_COLON] = ACTIONS(2227), + [anon_sym_POUND] = ACTIONS(2227), + [anon_sym_SQUOTE] = ACTIONS(2229), + [anon_sym_async] = ACTIONS(2229), + [anon_sym_break] = ACTIONS(2229), + [anon_sym_const] = ACTIONS(2229), + [anon_sym_continue] = ACTIONS(2229), + [anon_sym_default] = ACTIONS(2229), + [anon_sym_enum] = ACTIONS(2229), + [anon_sym_fn] = ACTIONS(2229), + [anon_sym_for] = ACTIONS(2229), + [anon_sym_if] = ACTIONS(2229), + [anon_sym_impl] = ACTIONS(2229), + [anon_sym_let] = ACTIONS(2229), + [anon_sym_loop] = ACTIONS(2229), + [anon_sym_match] = ACTIONS(2229), + [anon_sym_mod] = ACTIONS(2229), + [anon_sym_pub] = ACTIONS(2229), + [anon_sym_return] = ACTIONS(2229), + [anon_sym_static] = ACTIONS(2229), + [anon_sym_struct] = ACTIONS(2229), + [anon_sym_trait] = ACTIONS(2229), + [anon_sym_type] = ACTIONS(2229), + [anon_sym_union] = ACTIONS(2229), + [anon_sym_unsafe] = ACTIONS(2229), + [anon_sym_use] = ACTIONS(2229), + [anon_sym_while] = ACTIONS(2229), + [anon_sym_extern] = ACTIONS(2229), + [anon_sym_yield] = ACTIONS(2229), + [anon_sym_move] = ACTIONS(2229), + [anon_sym_try] = ACTIONS(2229), + [sym_integer_literal] = ACTIONS(2227), + [aux_sym_string_literal_token1] = ACTIONS(2227), + [sym_char_literal] = ACTIONS(2227), + [anon_sym_true] = ACTIONS(2229), + [anon_sym_false] = ACTIONS(2229), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2229), + [sym_super] = ACTIONS(2229), + [sym_crate] = ACTIONS(2229), + [sym_metavariable] = ACTIONS(2227), + [sym__raw_string_literal_start] = ACTIONS(2227), + [sym_float_literal] = ACTIONS(2227), }, [588] = { [sym_line_comment] = STATE(588), [sym_block_comment] = STATE(588), - [ts_builtin_sym_end] = ACTIONS(2098), - [sym_identifier] = ACTIONS(2100), - [anon_sym_SEMI] = ACTIONS(2098), - [anon_sym_macro_rules_BANG] = ACTIONS(2098), - [anon_sym_LPAREN] = ACTIONS(2098), - [anon_sym_LBRACK] = ACTIONS(2098), - [anon_sym_LBRACE] = ACTIONS(2098), - [anon_sym_RBRACE] = ACTIONS(2098), - [anon_sym_STAR] = ACTIONS(2098), - [anon_sym_u8] = ACTIONS(2100), - [anon_sym_i8] = ACTIONS(2100), - [anon_sym_u16] = ACTIONS(2100), - [anon_sym_i16] = ACTIONS(2100), - [anon_sym_u32] = ACTIONS(2100), - [anon_sym_i32] = ACTIONS(2100), - [anon_sym_u64] = ACTIONS(2100), - [anon_sym_i64] = ACTIONS(2100), - [anon_sym_u128] = ACTIONS(2100), - [anon_sym_i128] = ACTIONS(2100), - [anon_sym_isize] = ACTIONS(2100), - [anon_sym_usize] = ACTIONS(2100), - [anon_sym_f32] = ACTIONS(2100), - [anon_sym_f64] = ACTIONS(2100), - [anon_sym_bool] = ACTIONS(2100), - [anon_sym_str] = ACTIONS(2100), - [anon_sym_char] = ACTIONS(2100), - [anon_sym_DASH] = ACTIONS(2098), - [anon_sym_BANG] = ACTIONS(2098), - [anon_sym_AMP] = ACTIONS(2098), - [anon_sym_PIPE] = ACTIONS(2098), - [anon_sym_LT] = ACTIONS(2098), - [anon_sym_DOT_DOT] = ACTIONS(2098), - [anon_sym_COLON_COLON] = ACTIONS(2098), - [anon_sym_POUND] = ACTIONS(2098), - [anon_sym_SQUOTE] = ACTIONS(2100), - [anon_sym_async] = ACTIONS(2100), - [anon_sym_break] = ACTIONS(2100), - [anon_sym_const] = ACTIONS(2100), - [anon_sym_continue] = ACTIONS(2100), - [anon_sym_default] = ACTIONS(2100), - [anon_sym_enum] = ACTIONS(2100), - [anon_sym_fn] = ACTIONS(2100), - [anon_sym_for] = ACTIONS(2100), - [anon_sym_if] = ACTIONS(2100), - [anon_sym_impl] = ACTIONS(2100), - [anon_sym_let] = ACTIONS(2100), - [anon_sym_loop] = ACTIONS(2100), - [anon_sym_match] = ACTIONS(2100), - [anon_sym_mod] = ACTIONS(2100), - [anon_sym_pub] = ACTIONS(2100), - [anon_sym_return] = ACTIONS(2100), - [anon_sym_static] = ACTIONS(2100), - [anon_sym_struct] = ACTIONS(2100), - [anon_sym_trait] = ACTIONS(2100), - [anon_sym_type] = ACTIONS(2100), - [anon_sym_union] = ACTIONS(2100), - [anon_sym_unsafe] = ACTIONS(2100), - [anon_sym_use] = ACTIONS(2100), - [anon_sym_while] = ACTIONS(2100), - [anon_sym_extern] = ACTIONS(2100), - [anon_sym_yield] = ACTIONS(2100), - [anon_sym_move] = ACTIONS(2100), - [anon_sym_try] = ACTIONS(2100), - [sym_integer_literal] = ACTIONS(2098), - [aux_sym_string_literal_token1] = ACTIONS(2098), - [sym_char_literal] = ACTIONS(2098), - [anon_sym_true] = ACTIONS(2100), - [anon_sym_false] = ACTIONS(2100), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2100), - [sym_super] = ACTIONS(2100), - [sym_crate] = ACTIONS(2100), - [sym_metavariable] = ACTIONS(2098), - [sym__raw_string_literal_start] = ACTIONS(2098), - [sym_float_literal] = ACTIONS(2098), + [ts_builtin_sym_end] = ACTIONS(2231), + [sym_identifier] = ACTIONS(2233), + [anon_sym_SEMI] = ACTIONS(2231), + [anon_sym_macro_rules_BANG] = ACTIONS(2231), + [anon_sym_LPAREN] = ACTIONS(2231), + [anon_sym_LBRACK] = ACTIONS(2231), + [anon_sym_LBRACE] = ACTIONS(2231), + [anon_sym_RBRACE] = ACTIONS(2231), + [anon_sym_macro] = ACTIONS(2233), + [anon_sym_STAR] = ACTIONS(2231), + [anon_sym_u8] = ACTIONS(2233), + [anon_sym_i8] = ACTIONS(2233), + [anon_sym_u16] = ACTIONS(2233), + [anon_sym_i16] = ACTIONS(2233), + [anon_sym_u32] = ACTIONS(2233), + [anon_sym_i32] = ACTIONS(2233), + [anon_sym_u64] = ACTIONS(2233), + [anon_sym_i64] = ACTIONS(2233), + [anon_sym_u128] = ACTIONS(2233), + [anon_sym_i128] = ACTIONS(2233), + [anon_sym_isize] = ACTIONS(2233), + [anon_sym_usize] = ACTIONS(2233), + [anon_sym_f32] = ACTIONS(2233), + [anon_sym_f64] = ACTIONS(2233), + [anon_sym_bool] = ACTIONS(2233), + [anon_sym_str] = ACTIONS(2233), + [anon_sym_char] = ACTIONS(2233), + [anon_sym_DASH] = ACTIONS(2231), + [anon_sym_BANG] = ACTIONS(2231), + [anon_sym_AMP] = ACTIONS(2231), + [anon_sym_PIPE] = ACTIONS(2231), + [anon_sym_LT] = ACTIONS(2231), + [anon_sym_DOT_DOT] = ACTIONS(2231), + [anon_sym_COLON_COLON] = ACTIONS(2231), + [anon_sym_POUND] = ACTIONS(2231), + [anon_sym_SQUOTE] = ACTIONS(2233), + [anon_sym_async] = ACTIONS(2233), + [anon_sym_break] = ACTIONS(2233), + [anon_sym_const] = ACTIONS(2233), + [anon_sym_continue] = ACTIONS(2233), + [anon_sym_default] = ACTIONS(2233), + [anon_sym_enum] = ACTIONS(2233), + [anon_sym_fn] = ACTIONS(2233), + [anon_sym_for] = ACTIONS(2233), + [anon_sym_if] = ACTIONS(2233), + [anon_sym_impl] = ACTIONS(2233), + [anon_sym_let] = ACTIONS(2233), + [anon_sym_loop] = ACTIONS(2233), + [anon_sym_match] = ACTIONS(2233), + [anon_sym_mod] = ACTIONS(2233), + [anon_sym_pub] = ACTIONS(2233), + [anon_sym_return] = ACTIONS(2233), + [anon_sym_static] = ACTIONS(2233), + [anon_sym_struct] = ACTIONS(2233), + [anon_sym_trait] = ACTIONS(2233), + [anon_sym_type] = ACTIONS(2233), + [anon_sym_union] = ACTIONS(2233), + [anon_sym_unsafe] = ACTIONS(2233), + [anon_sym_use] = ACTIONS(2233), + [anon_sym_while] = ACTIONS(2233), + [anon_sym_extern] = ACTIONS(2233), + [anon_sym_yield] = ACTIONS(2233), + [anon_sym_move] = ACTIONS(2233), + [anon_sym_try] = ACTIONS(2233), + [sym_integer_literal] = ACTIONS(2231), + [aux_sym_string_literal_token1] = ACTIONS(2231), + [sym_char_literal] = ACTIONS(2231), + [anon_sym_true] = ACTIONS(2233), + [anon_sym_false] = ACTIONS(2233), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2233), + [sym_super] = ACTIONS(2233), + [sym_crate] = ACTIONS(2233), + [sym_metavariable] = ACTIONS(2231), + [sym__raw_string_literal_start] = ACTIONS(2231), + [sym_float_literal] = ACTIONS(2231), }, [589] = { [sym_line_comment] = STATE(589), [sym_block_comment] = STATE(589), - [ts_builtin_sym_end] = ACTIONS(2102), - [sym_identifier] = ACTIONS(2104), - [anon_sym_SEMI] = ACTIONS(2102), - [anon_sym_macro_rules_BANG] = ACTIONS(2102), - [anon_sym_LPAREN] = ACTIONS(2102), - [anon_sym_LBRACK] = ACTIONS(2102), - [anon_sym_LBRACE] = ACTIONS(2102), - [anon_sym_RBRACE] = ACTIONS(2102), - [anon_sym_STAR] = ACTIONS(2102), - [anon_sym_u8] = ACTIONS(2104), - [anon_sym_i8] = ACTIONS(2104), - [anon_sym_u16] = ACTIONS(2104), - [anon_sym_i16] = ACTIONS(2104), - [anon_sym_u32] = ACTIONS(2104), - [anon_sym_i32] = ACTIONS(2104), - [anon_sym_u64] = ACTIONS(2104), - [anon_sym_i64] = ACTIONS(2104), - [anon_sym_u128] = ACTIONS(2104), - [anon_sym_i128] = ACTIONS(2104), - [anon_sym_isize] = ACTIONS(2104), - [anon_sym_usize] = ACTIONS(2104), - [anon_sym_f32] = ACTIONS(2104), - [anon_sym_f64] = ACTIONS(2104), - [anon_sym_bool] = ACTIONS(2104), - [anon_sym_str] = ACTIONS(2104), - [anon_sym_char] = ACTIONS(2104), - [anon_sym_DASH] = ACTIONS(2102), - [anon_sym_BANG] = ACTIONS(2102), - [anon_sym_AMP] = ACTIONS(2102), - [anon_sym_PIPE] = ACTIONS(2102), - [anon_sym_LT] = ACTIONS(2102), - [anon_sym_DOT_DOT] = ACTIONS(2102), - [anon_sym_COLON_COLON] = ACTIONS(2102), - [anon_sym_POUND] = ACTIONS(2102), - [anon_sym_SQUOTE] = ACTIONS(2104), - [anon_sym_async] = ACTIONS(2104), - [anon_sym_break] = ACTIONS(2104), - [anon_sym_const] = ACTIONS(2104), - [anon_sym_continue] = ACTIONS(2104), - [anon_sym_default] = ACTIONS(2104), - [anon_sym_enum] = ACTIONS(2104), - [anon_sym_fn] = ACTIONS(2104), - [anon_sym_for] = ACTIONS(2104), - [anon_sym_if] = ACTIONS(2104), - [anon_sym_impl] = ACTIONS(2104), - [anon_sym_let] = ACTIONS(2104), - [anon_sym_loop] = ACTIONS(2104), - [anon_sym_match] = ACTIONS(2104), - [anon_sym_mod] = ACTIONS(2104), - [anon_sym_pub] = ACTIONS(2104), - [anon_sym_return] = ACTIONS(2104), - [anon_sym_static] = ACTIONS(2104), - [anon_sym_struct] = ACTIONS(2104), - [anon_sym_trait] = ACTIONS(2104), - [anon_sym_type] = ACTIONS(2104), - [anon_sym_union] = ACTIONS(2104), - [anon_sym_unsafe] = ACTIONS(2104), - [anon_sym_use] = ACTIONS(2104), - [anon_sym_while] = ACTIONS(2104), - [anon_sym_extern] = ACTIONS(2104), - [anon_sym_yield] = ACTIONS(2104), - [anon_sym_move] = ACTIONS(2104), - [anon_sym_try] = ACTIONS(2104), - [sym_integer_literal] = ACTIONS(2102), - [aux_sym_string_literal_token1] = ACTIONS(2102), - [sym_char_literal] = ACTIONS(2102), - [anon_sym_true] = ACTIONS(2104), - [anon_sym_false] = ACTIONS(2104), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2104), - [sym_super] = ACTIONS(2104), - [sym_crate] = ACTIONS(2104), - [sym_metavariable] = ACTIONS(2102), - [sym__raw_string_literal_start] = ACTIONS(2102), - [sym_float_literal] = ACTIONS(2102), + [ts_builtin_sym_end] = ACTIONS(2235), + [sym_identifier] = ACTIONS(2237), + [anon_sym_SEMI] = ACTIONS(2235), + [anon_sym_macro_rules_BANG] = ACTIONS(2235), + [anon_sym_LPAREN] = ACTIONS(2235), + [anon_sym_LBRACK] = ACTIONS(2235), + [anon_sym_LBRACE] = ACTIONS(2235), + [anon_sym_RBRACE] = ACTIONS(2235), + [anon_sym_macro] = ACTIONS(2237), + [anon_sym_STAR] = ACTIONS(2235), + [anon_sym_u8] = ACTIONS(2237), + [anon_sym_i8] = ACTIONS(2237), + [anon_sym_u16] = ACTIONS(2237), + [anon_sym_i16] = ACTIONS(2237), + [anon_sym_u32] = ACTIONS(2237), + [anon_sym_i32] = ACTIONS(2237), + [anon_sym_u64] = ACTIONS(2237), + [anon_sym_i64] = ACTIONS(2237), + [anon_sym_u128] = ACTIONS(2237), + [anon_sym_i128] = ACTIONS(2237), + [anon_sym_isize] = ACTIONS(2237), + [anon_sym_usize] = ACTIONS(2237), + [anon_sym_f32] = ACTIONS(2237), + [anon_sym_f64] = ACTIONS(2237), + [anon_sym_bool] = ACTIONS(2237), + [anon_sym_str] = ACTIONS(2237), + [anon_sym_char] = ACTIONS(2237), + [anon_sym_DASH] = ACTIONS(2235), + [anon_sym_BANG] = ACTIONS(2235), + [anon_sym_AMP] = ACTIONS(2235), + [anon_sym_PIPE] = ACTIONS(2235), + [anon_sym_LT] = ACTIONS(2235), + [anon_sym_DOT_DOT] = ACTIONS(2235), + [anon_sym_COLON_COLON] = ACTIONS(2235), + [anon_sym_POUND] = ACTIONS(2235), + [anon_sym_SQUOTE] = ACTIONS(2237), + [anon_sym_async] = ACTIONS(2237), + [anon_sym_break] = ACTIONS(2237), + [anon_sym_const] = ACTIONS(2237), + [anon_sym_continue] = ACTIONS(2237), + [anon_sym_default] = ACTIONS(2237), + [anon_sym_enum] = ACTIONS(2237), + [anon_sym_fn] = ACTIONS(2237), + [anon_sym_for] = ACTIONS(2237), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_impl] = ACTIONS(2237), + [anon_sym_let] = ACTIONS(2237), + [anon_sym_loop] = ACTIONS(2237), + [anon_sym_match] = ACTIONS(2237), + [anon_sym_mod] = ACTIONS(2237), + [anon_sym_pub] = ACTIONS(2237), + [anon_sym_return] = ACTIONS(2237), + [anon_sym_static] = ACTIONS(2237), + [anon_sym_struct] = ACTIONS(2237), + [anon_sym_trait] = ACTIONS(2237), + [anon_sym_type] = ACTIONS(2237), + [anon_sym_union] = ACTIONS(2237), + [anon_sym_unsafe] = ACTIONS(2237), + [anon_sym_use] = ACTIONS(2237), + [anon_sym_while] = ACTIONS(2237), + [anon_sym_extern] = ACTIONS(2237), + [anon_sym_yield] = ACTIONS(2237), + [anon_sym_move] = ACTIONS(2237), + [anon_sym_try] = ACTIONS(2237), + [sym_integer_literal] = ACTIONS(2235), + [aux_sym_string_literal_token1] = ACTIONS(2235), + [sym_char_literal] = ACTIONS(2235), + [anon_sym_true] = ACTIONS(2237), + [anon_sym_false] = ACTIONS(2237), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2237), + [sym_super] = ACTIONS(2237), + [sym_crate] = ACTIONS(2237), + [sym_metavariable] = ACTIONS(2235), + [sym__raw_string_literal_start] = ACTIONS(2235), + [sym_float_literal] = ACTIONS(2235), }, [590] = { [sym_line_comment] = STATE(590), [sym_block_comment] = STATE(590), - [ts_builtin_sym_end] = ACTIONS(2106), - [sym_identifier] = ACTIONS(2108), - [anon_sym_SEMI] = ACTIONS(2106), - [anon_sym_macro_rules_BANG] = ACTIONS(2106), - [anon_sym_LPAREN] = ACTIONS(2106), - [anon_sym_LBRACK] = ACTIONS(2106), - [anon_sym_LBRACE] = ACTIONS(2106), - [anon_sym_RBRACE] = ACTIONS(2106), - [anon_sym_STAR] = ACTIONS(2106), - [anon_sym_u8] = ACTIONS(2108), - [anon_sym_i8] = ACTIONS(2108), - [anon_sym_u16] = ACTIONS(2108), - [anon_sym_i16] = ACTIONS(2108), - [anon_sym_u32] = ACTIONS(2108), - [anon_sym_i32] = ACTIONS(2108), - [anon_sym_u64] = ACTIONS(2108), - [anon_sym_i64] = ACTIONS(2108), - [anon_sym_u128] = ACTIONS(2108), - [anon_sym_i128] = ACTIONS(2108), - [anon_sym_isize] = ACTIONS(2108), - [anon_sym_usize] = ACTIONS(2108), - [anon_sym_f32] = ACTIONS(2108), - [anon_sym_f64] = ACTIONS(2108), - [anon_sym_bool] = ACTIONS(2108), - [anon_sym_str] = ACTIONS(2108), - [anon_sym_char] = ACTIONS(2108), - [anon_sym_DASH] = ACTIONS(2106), - [anon_sym_BANG] = ACTIONS(2106), - [anon_sym_AMP] = ACTIONS(2106), - [anon_sym_PIPE] = ACTIONS(2106), - [anon_sym_LT] = ACTIONS(2106), - [anon_sym_DOT_DOT] = ACTIONS(2106), - [anon_sym_COLON_COLON] = ACTIONS(2106), - [anon_sym_POUND] = ACTIONS(2106), - [anon_sym_SQUOTE] = ACTIONS(2108), - [anon_sym_async] = ACTIONS(2108), - [anon_sym_break] = ACTIONS(2108), - [anon_sym_const] = ACTIONS(2108), - [anon_sym_continue] = ACTIONS(2108), - [anon_sym_default] = ACTIONS(2108), - [anon_sym_enum] = ACTIONS(2108), - [anon_sym_fn] = ACTIONS(2108), - [anon_sym_for] = ACTIONS(2108), - [anon_sym_if] = ACTIONS(2108), - [anon_sym_impl] = ACTIONS(2108), - [anon_sym_let] = ACTIONS(2108), - [anon_sym_loop] = ACTIONS(2108), - [anon_sym_match] = ACTIONS(2108), - [anon_sym_mod] = ACTIONS(2108), - [anon_sym_pub] = ACTIONS(2108), - [anon_sym_return] = ACTIONS(2108), - [anon_sym_static] = ACTIONS(2108), - [anon_sym_struct] = ACTIONS(2108), - [anon_sym_trait] = ACTIONS(2108), - [anon_sym_type] = ACTIONS(2108), - [anon_sym_union] = ACTIONS(2108), - [anon_sym_unsafe] = ACTIONS(2108), - [anon_sym_use] = ACTIONS(2108), - [anon_sym_while] = ACTIONS(2108), - [anon_sym_extern] = ACTIONS(2108), - [anon_sym_yield] = ACTIONS(2108), - [anon_sym_move] = ACTIONS(2108), - [anon_sym_try] = ACTIONS(2108), - [sym_integer_literal] = ACTIONS(2106), - [aux_sym_string_literal_token1] = ACTIONS(2106), - [sym_char_literal] = ACTIONS(2106), - [anon_sym_true] = ACTIONS(2108), - [anon_sym_false] = ACTIONS(2108), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2108), - [sym_super] = ACTIONS(2108), - [sym_crate] = ACTIONS(2108), - [sym_metavariable] = ACTIONS(2106), - [sym__raw_string_literal_start] = ACTIONS(2106), - [sym_float_literal] = ACTIONS(2106), + [ts_builtin_sym_end] = ACTIONS(2239), + [sym_identifier] = ACTIONS(2241), + [anon_sym_SEMI] = ACTIONS(2239), + [anon_sym_macro_rules_BANG] = ACTIONS(2239), + [anon_sym_LPAREN] = ACTIONS(2239), + [anon_sym_LBRACK] = ACTIONS(2239), + [anon_sym_LBRACE] = ACTIONS(2239), + [anon_sym_RBRACE] = ACTIONS(2239), + [anon_sym_macro] = ACTIONS(2241), + [anon_sym_STAR] = ACTIONS(2239), + [anon_sym_u8] = ACTIONS(2241), + [anon_sym_i8] = ACTIONS(2241), + [anon_sym_u16] = ACTIONS(2241), + [anon_sym_i16] = ACTIONS(2241), + [anon_sym_u32] = ACTIONS(2241), + [anon_sym_i32] = ACTIONS(2241), + [anon_sym_u64] = ACTIONS(2241), + [anon_sym_i64] = ACTIONS(2241), + [anon_sym_u128] = ACTIONS(2241), + [anon_sym_i128] = ACTIONS(2241), + [anon_sym_isize] = ACTIONS(2241), + [anon_sym_usize] = ACTIONS(2241), + [anon_sym_f32] = ACTIONS(2241), + [anon_sym_f64] = ACTIONS(2241), + [anon_sym_bool] = ACTIONS(2241), + [anon_sym_str] = ACTIONS(2241), + [anon_sym_char] = ACTIONS(2241), + [anon_sym_DASH] = ACTIONS(2239), + [anon_sym_BANG] = ACTIONS(2239), + [anon_sym_AMP] = ACTIONS(2239), + [anon_sym_PIPE] = ACTIONS(2239), + [anon_sym_LT] = ACTIONS(2239), + [anon_sym_DOT_DOT] = ACTIONS(2239), + [anon_sym_COLON_COLON] = ACTIONS(2239), + [anon_sym_POUND] = ACTIONS(2239), + [anon_sym_SQUOTE] = ACTIONS(2241), + [anon_sym_async] = ACTIONS(2241), + [anon_sym_break] = ACTIONS(2241), + [anon_sym_const] = ACTIONS(2241), + [anon_sym_continue] = ACTIONS(2241), + [anon_sym_default] = ACTIONS(2241), + [anon_sym_enum] = ACTIONS(2241), + [anon_sym_fn] = ACTIONS(2241), + [anon_sym_for] = ACTIONS(2241), + [anon_sym_if] = ACTIONS(2241), + [anon_sym_impl] = ACTIONS(2241), + [anon_sym_let] = ACTIONS(2241), + [anon_sym_loop] = ACTIONS(2241), + [anon_sym_match] = ACTIONS(2241), + [anon_sym_mod] = ACTIONS(2241), + [anon_sym_pub] = ACTIONS(2241), + [anon_sym_return] = ACTIONS(2241), + [anon_sym_static] = ACTIONS(2241), + [anon_sym_struct] = ACTIONS(2241), + [anon_sym_trait] = ACTIONS(2241), + [anon_sym_type] = ACTIONS(2241), + [anon_sym_union] = ACTIONS(2241), + [anon_sym_unsafe] = ACTIONS(2241), + [anon_sym_use] = ACTIONS(2241), + [anon_sym_while] = ACTIONS(2241), + [anon_sym_extern] = ACTIONS(2241), + [anon_sym_yield] = ACTIONS(2241), + [anon_sym_move] = ACTIONS(2241), + [anon_sym_try] = ACTIONS(2241), + [sym_integer_literal] = ACTIONS(2239), + [aux_sym_string_literal_token1] = ACTIONS(2239), + [sym_char_literal] = ACTIONS(2239), + [anon_sym_true] = ACTIONS(2241), + [anon_sym_false] = ACTIONS(2241), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2241), + [sym_super] = ACTIONS(2241), + [sym_crate] = ACTIONS(2241), + [sym_metavariable] = ACTIONS(2239), + [sym__raw_string_literal_start] = ACTIONS(2239), + [sym_float_literal] = ACTIONS(2239), }, [591] = { [sym_line_comment] = STATE(591), [sym_block_comment] = STATE(591), - [ts_builtin_sym_end] = ACTIONS(2110), - [sym_identifier] = ACTIONS(2112), - [anon_sym_SEMI] = ACTIONS(2110), - [anon_sym_macro_rules_BANG] = ACTIONS(2110), - [anon_sym_LPAREN] = ACTIONS(2110), - [anon_sym_LBRACK] = ACTIONS(2110), - [anon_sym_LBRACE] = ACTIONS(2110), - [anon_sym_RBRACE] = ACTIONS(2110), - [anon_sym_STAR] = ACTIONS(2110), - [anon_sym_u8] = ACTIONS(2112), - [anon_sym_i8] = ACTIONS(2112), - [anon_sym_u16] = ACTIONS(2112), - [anon_sym_i16] = ACTIONS(2112), - [anon_sym_u32] = ACTIONS(2112), - [anon_sym_i32] = ACTIONS(2112), - [anon_sym_u64] = ACTIONS(2112), - [anon_sym_i64] = ACTIONS(2112), - [anon_sym_u128] = ACTIONS(2112), - [anon_sym_i128] = ACTIONS(2112), - [anon_sym_isize] = ACTIONS(2112), - [anon_sym_usize] = ACTIONS(2112), - [anon_sym_f32] = ACTIONS(2112), - [anon_sym_f64] = ACTIONS(2112), - [anon_sym_bool] = ACTIONS(2112), - [anon_sym_str] = ACTIONS(2112), - [anon_sym_char] = ACTIONS(2112), - [anon_sym_DASH] = ACTIONS(2110), - [anon_sym_BANG] = ACTIONS(2110), - [anon_sym_AMP] = ACTIONS(2110), - [anon_sym_PIPE] = ACTIONS(2110), - [anon_sym_LT] = ACTIONS(2110), - [anon_sym_DOT_DOT] = ACTIONS(2110), - [anon_sym_COLON_COLON] = ACTIONS(2110), - [anon_sym_POUND] = ACTIONS(2110), - [anon_sym_SQUOTE] = ACTIONS(2112), - [anon_sym_async] = ACTIONS(2112), - [anon_sym_break] = ACTIONS(2112), - [anon_sym_const] = ACTIONS(2112), - [anon_sym_continue] = ACTIONS(2112), - [anon_sym_default] = ACTIONS(2112), - [anon_sym_enum] = ACTIONS(2112), - [anon_sym_fn] = ACTIONS(2112), - [anon_sym_for] = ACTIONS(2112), - [anon_sym_if] = ACTIONS(2112), - [anon_sym_impl] = ACTIONS(2112), - [anon_sym_let] = ACTIONS(2112), - [anon_sym_loop] = ACTIONS(2112), - [anon_sym_match] = ACTIONS(2112), - [anon_sym_mod] = ACTIONS(2112), - [anon_sym_pub] = ACTIONS(2112), - [anon_sym_return] = ACTIONS(2112), - [anon_sym_static] = ACTIONS(2112), - [anon_sym_struct] = ACTIONS(2112), - [anon_sym_trait] = ACTIONS(2112), - [anon_sym_type] = ACTIONS(2112), - [anon_sym_union] = ACTIONS(2112), - [anon_sym_unsafe] = ACTIONS(2112), - [anon_sym_use] = ACTIONS(2112), - [anon_sym_while] = ACTIONS(2112), - [anon_sym_extern] = ACTIONS(2112), - [anon_sym_yield] = ACTIONS(2112), - [anon_sym_move] = ACTIONS(2112), - [anon_sym_try] = ACTIONS(2112), - [sym_integer_literal] = ACTIONS(2110), - [aux_sym_string_literal_token1] = ACTIONS(2110), - [sym_char_literal] = ACTIONS(2110), - [anon_sym_true] = ACTIONS(2112), - [anon_sym_false] = ACTIONS(2112), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2112), - [sym_super] = ACTIONS(2112), - [sym_crate] = ACTIONS(2112), - [sym_metavariable] = ACTIONS(2110), - [sym__raw_string_literal_start] = ACTIONS(2110), - [sym_float_literal] = ACTIONS(2110), + [ts_builtin_sym_end] = ACTIONS(2243), + [sym_identifier] = ACTIONS(2245), + [anon_sym_SEMI] = ACTIONS(2243), + [anon_sym_macro_rules_BANG] = ACTIONS(2243), + [anon_sym_LPAREN] = ACTIONS(2243), + [anon_sym_LBRACK] = ACTIONS(2243), + [anon_sym_LBRACE] = ACTIONS(2243), + [anon_sym_RBRACE] = ACTIONS(2243), + [anon_sym_macro] = ACTIONS(2245), + [anon_sym_STAR] = ACTIONS(2243), + [anon_sym_u8] = ACTIONS(2245), + [anon_sym_i8] = ACTIONS(2245), + [anon_sym_u16] = ACTIONS(2245), + [anon_sym_i16] = ACTIONS(2245), + [anon_sym_u32] = ACTIONS(2245), + [anon_sym_i32] = ACTIONS(2245), + [anon_sym_u64] = ACTIONS(2245), + [anon_sym_i64] = ACTIONS(2245), + [anon_sym_u128] = ACTIONS(2245), + [anon_sym_i128] = ACTIONS(2245), + [anon_sym_isize] = ACTIONS(2245), + [anon_sym_usize] = ACTIONS(2245), + [anon_sym_f32] = ACTIONS(2245), + [anon_sym_f64] = ACTIONS(2245), + [anon_sym_bool] = ACTIONS(2245), + [anon_sym_str] = ACTIONS(2245), + [anon_sym_char] = ACTIONS(2245), + [anon_sym_DASH] = ACTIONS(2243), + [anon_sym_BANG] = ACTIONS(2243), + [anon_sym_AMP] = ACTIONS(2243), + [anon_sym_PIPE] = ACTIONS(2243), + [anon_sym_LT] = ACTIONS(2243), + [anon_sym_DOT_DOT] = ACTIONS(2243), + [anon_sym_COLON_COLON] = ACTIONS(2243), + [anon_sym_POUND] = ACTIONS(2243), + [anon_sym_SQUOTE] = ACTIONS(2245), + [anon_sym_async] = ACTIONS(2245), + [anon_sym_break] = ACTIONS(2245), + [anon_sym_const] = ACTIONS(2245), + [anon_sym_continue] = ACTIONS(2245), + [anon_sym_default] = ACTIONS(2245), + [anon_sym_enum] = ACTIONS(2245), + [anon_sym_fn] = ACTIONS(2245), + [anon_sym_for] = ACTIONS(2245), + [anon_sym_if] = ACTIONS(2245), + [anon_sym_impl] = ACTIONS(2245), + [anon_sym_let] = ACTIONS(2245), + [anon_sym_loop] = ACTIONS(2245), + [anon_sym_match] = ACTIONS(2245), + [anon_sym_mod] = ACTIONS(2245), + [anon_sym_pub] = ACTIONS(2245), + [anon_sym_return] = ACTIONS(2245), + [anon_sym_static] = ACTIONS(2245), + [anon_sym_struct] = ACTIONS(2245), + [anon_sym_trait] = ACTIONS(2245), + [anon_sym_type] = ACTIONS(2245), + [anon_sym_union] = ACTIONS(2245), + [anon_sym_unsafe] = ACTIONS(2245), + [anon_sym_use] = ACTIONS(2245), + [anon_sym_while] = ACTIONS(2245), + [anon_sym_extern] = ACTIONS(2245), + [anon_sym_yield] = ACTIONS(2245), + [anon_sym_move] = ACTIONS(2245), + [anon_sym_try] = ACTIONS(2245), + [sym_integer_literal] = ACTIONS(2243), + [aux_sym_string_literal_token1] = ACTIONS(2243), + [sym_char_literal] = ACTIONS(2243), + [anon_sym_true] = ACTIONS(2245), + [anon_sym_false] = ACTIONS(2245), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2245), + [sym_super] = ACTIONS(2245), + [sym_crate] = ACTIONS(2245), + [sym_metavariable] = ACTIONS(2243), + [sym__raw_string_literal_start] = ACTIONS(2243), + [sym_float_literal] = ACTIONS(2243), }, [592] = { [sym_line_comment] = STATE(592), [sym_block_comment] = STATE(592), - [ts_builtin_sym_end] = ACTIONS(2114), - [sym_identifier] = ACTIONS(2116), - [anon_sym_SEMI] = ACTIONS(2114), - [anon_sym_macro_rules_BANG] = ACTIONS(2114), - [anon_sym_LPAREN] = ACTIONS(2114), - [anon_sym_LBRACK] = ACTIONS(2114), - [anon_sym_LBRACE] = ACTIONS(2114), - [anon_sym_RBRACE] = ACTIONS(2114), - [anon_sym_STAR] = ACTIONS(2114), - [anon_sym_u8] = ACTIONS(2116), - [anon_sym_i8] = ACTIONS(2116), - [anon_sym_u16] = ACTIONS(2116), - [anon_sym_i16] = ACTIONS(2116), - [anon_sym_u32] = ACTIONS(2116), - [anon_sym_i32] = ACTIONS(2116), - [anon_sym_u64] = ACTIONS(2116), - [anon_sym_i64] = ACTIONS(2116), - [anon_sym_u128] = ACTIONS(2116), - [anon_sym_i128] = ACTIONS(2116), - [anon_sym_isize] = ACTIONS(2116), - [anon_sym_usize] = ACTIONS(2116), - [anon_sym_f32] = ACTIONS(2116), - [anon_sym_f64] = ACTIONS(2116), - [anon_sym_bool] = ACTIONS(2116), - [anon_sym_str] = ACTIONS(2116), - [anon_sym_char] = ACTIONS(2116), - [anon_sym_DASH] = ACTIONS(2114), - [anon_sym_BANG] = ACTIONS(2114), - [anon_sym_AMP] = ACTIONS(2114), - [anon_sym_PIPE] = ACTIONS(2114), - [anon_sym_LT] = ACTIONS(2114), - [anon_sym_DOT_DOT] = ACTIONS(2114), - [anon_sym_COLON_COLON] = ACTIONS(2114), - [anon_sym_POUND] = ACTIONS(2114), - [anon_sym_SQUOTE] = ACTIONS(2116), - [anon_sym_async] = ACTIONS(2116), - [anon_sym_break] = ACTIONS(2116), - [anon_sym_const] = ACTIONS(2116), - [anon_sym_continue] = ACTIONS(2116), - [anon_sym_default] = ACTIONS(2116), - [anon_sym_enum] = ACTIONS(2116), - [anon_sym_fn] = ACTIONS(2116), - [anon_sym_for] = ACTIONS(2116), - [anon_sym_if] = ACTIONS(2116), - [anon_sym_impl] = ACTIONS(2116), - [anon_sym_let] = ACTIONS(2116), - [anon_sym_loop] = ACTIONS(2116), - [anon_sym_match] = ACTIONS(2116), - [anon_sym_mod] = ACTIONS(2116), - [anon_sym_pub] = ACTIONS(2116), - [anon_sym_return] = ACTIONS(2116), - [anon_sym_static] = ACTIONS(2116), - [anon_sym_struct] = ACTIONS(2116), - [anon_sym_trait] = ACTIONS(2116), - [anon_sym_type] = ACTIONS(2116), - [anon_sym_union] = ACTIONS(2116), - [anon_sym_unsafe] = ACTIONS(2116), - [anon_sym_use] = ACTIONS(2116), - [anon_sym_while] = ACTIONS(2116), - [anon_sym_extern] = ACTIONS(2116), - [anon_sym_yield] = ACTIONS(2116), - [anon_sym_move] = ACTIONS(2116), - [anon_sym_try] = ACTIONS(2116), - [sym_integer_literal] = ACTIONS(2114), - [aux_sym_string_literal_token1] = ACTIONS(2114), - [sym_char_literal] = ACTIONS(2114), - [anon_sym_true] = ACTIONS(2116), - [anon_sym_false] = ACTIONS(2116), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2116), - [sym_super] = ACTIONS(2116), - [sym_crate] = ACTIONS(2116), - [sym_metavariable] = ACTIONS(2114), - [sym__raw_string_literal_start] = ACTIONS(2114), - [sym_float_literal] = ACTIONS(2114), + [ts_builtin_sym_end] = ACTIONS(2247), + [sym_identifier] = ACTIONS(2249), + [anon_sym_SEMI] = ACTIONS(2247), + [anon_sym_macro_rules_BANG] = ACTIONS(2247), + [anon_sym_LPAREN] = ACTIONS(2247), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_LBRACE] = ACTIONS(2247), + [anon_sym_RBRACE] = ACTIONS(2247), + [anon_sym_macro] = ACTIONS(2249), + [anon_sym_STAR] = ACTIONS(2247), + [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), + [anon_sym_DASH] = ACTIONS(2247), + [anon_sym_BANG] = ACTIONS(2247), + [anon_sym_AMP] = ACTIONS(2247), + [anon_sym_PIPE] = ACTIONS(2247), + [anon_sym_LT] = ACTIONS(2247), + [anon_sym_DOT_DOT] = ACTIONS(2247), + [anon_sym_COLON_COLON] = ACTIONS(2247), + [anon_sym_POUND] = ACTIONS(2247), + [anon_sym_SQUOTE] = ACTIONS(2249), + [anon_sym_async] = 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_while] = ACTIONS(2249), + [anon_sym_extern] = ACTIONS(2249), + [anon_sym_yield] = ACTIONS(2249), + [anon_sym_move] = ACTIONS(2249), + [anon_sym_try] = ACTIONS(2249), + [sym_integer_literal] = ACTIONS(2247), + [aux_sym_string_literal_token1] = ACTIONS(2247), + [sym_char_literal] = ACTIONS(2247), + [anon_sym_true] = ACTIONS(2249), + [anon_sym_false] = ACTIONS(2249), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2249), + [sym_super] = ACTIONS(2249), + [sym_crate] = ACTIONS(2249), + [sym_metavariable] = ACTIONS(2247), + [sym__raw_string_literal_start] = ACTIONS(2247), + [sym_float_literal] = ACTIONS(2247), }, [593] = { [sym_line_comment] = STATE(593), [sym_block_comment] = STATE(593), - [ts_builtin_sym_end] = ACTIONS(2118), - [sym_identifier] = ACTIONS(2120), - [anon_sym_SEMI] = ACTIONS(2118), - [anon_sym_macro_rules_BANG] = ACTIONS(2118), - [anon_sym_LPAREN] = ACTIONS(2118), - [anon_sym_LBRACK] = ACTIONS(2118), - [anon_sym_LBRACE] = ACTIONS(2118), - [anon_sym_RBRACE] = ACTIONS(2118), - [anon_sym_STAR] = ACTIONS(2118), - [anon_sym_u8] = ACTIONS(2120), - [anon_sym_i8] = ACTIONS(2120), - [anon_sym_u16] = ACTIONS(2120), - [anon_sym_i16] = ACTIONS(2120), - [anon_sym_u32] = ACTIONS(2120), - [anon_sym_i32] = ACTIONS(2120), - [anon_sym_u64] = ACTIONS(2120), - [anon_sym_i64] = ACTIONS(2120), - [anon_sym_u128] = ACTIONS(2120), - [anon_sym_i128] = ACTIONS(2120), - [anon_sym_isize] = ACTIONS(2120), - [anon_sym_usize] = ACTIONS(2120), - [anon_sym_f32] = ACTIONS(2120), - [anon_sym_f64] = ACTIONS(2120), - [anon_sym_bool] = ACTIONS(2120), - [anon_sym_str] = ACTIONS(2120), - [anon_sym_char] = ACTIONS(2120), - [anon_sym_DASH] = ACTIONS(2118), - [anon_sym_BANG] = ACTIONS(2118), - [anon_sym_AMP] = ACTIONS(2118), - [anon_sym_PIPE] = ACTIONS(2118), - [anon_sym_LT] = ACTIONS(2118), - [anon_sym_DOT_DOT] = ACTIONS(2118), - [anon_sym_COLON_COLON] = ACTIONS(2118), - [anon_sym_POUND] = ACTIONS(2118), - [anon_sym_SQUOTE] = ACTIONS(2120), - [anon_sym_async] = ACTIONS(2120), - [anon_sym_break] = ACTIONS(2120), - [anon_sym_const] = ACTIONS(2120), - [anon_sym_continue] = ACTIONS(2120), - [anon_sym_default] = ACTIONS(2120), - [anon_sym_enum] = ACTIONS(2120), - [anon_sym_fn] = ACTIONS(2120), - [anon_sym_for] = ACTIONS(2120), - [anon_sym_if] = ACTIONS(2120), - [anon_sym_impl] = ACTIONS(2120), - [anon_sym_let] = ACTIONS(2120), - [anon_sym_loop] = ACTIONS(2120), - [anon_sym_match] = ACTIONS(2120), - [anon_sym_mod] = ACTIONS(2120), - [anon_sym_pub] = ACTIONS(2120), - [anon_sym_return] = ACTIONS(2120), - [anon_sym_static] = ACTIONS(2120), - [anon_sym_struct] = ACTIONS(2120), - [anon_sym_trait] = ACTIONS(2120), - [anon_sym_type] = ACTIONS(2120), - [anon_sym_union] = ACTIONS(2120), - [anon_sym_unsafe] = ACTIONS(2120), - [anon_sym_use] = ACTIONS(2120), - [anon_sym_while] = ACTIONS(2120), - [anon_sym_extern] = ACTIONS(2120), - [anon_sym_yield] = ACTIONS(2120), - [anon_sym_move] = ACTIONS(2120), - [anon_sym_try] = ACTIONS(2120), - [sym_integer_literal] = ACTIONS(2118), - [aux_sym_string_literal_token1] = ACTIONS(2118), - [sym_char_literal] = ACTIONS(2118), - [anon_sym_true] = ACTIONS(2120), - [anon_sym_false] = ACTIONS(2120), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2120), - [sym_super] = ACTIONS(2120), - [sym_crate] = ACTIONS(2120), - [sym_metavariable] = ACTIONS(2118), - [sym__raw_string_literal_start] = ACTIONS(2118), - [sym_float_literal] = ACTIONS(2118), + [ts_builtin_sym_end] = ACTIONS(2251), + [sym_identifier] = ACTIONS(2253), + [anon_sym_SEMI] = ACTIONS(2251), + [anon_sym_macro_rules_BANG] = ACTIONS(2251), + [anon_sym_LPAREN] = ACTIONS(2251), + [anon_sym_LBRACK] = ACTIONS(2251), + [anon_sym_LBRACE] = ACTIONS(2251), + [anon_sym_RBRACE] = ACTIONS(2251), + [anon_sym_macro] = ACTIONS(2253), + [anon_sym_STAR] = ACTIONS(2251), + [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), + [anon_sym_DASH] = ACTIONS(2251), + [anon_sym_BANG] = ACTIONS(2251), + [anon_sym_AMP] = ACTIONS(2251), + [anon_sym_PIPE] = ACTIONS(2251), + [anon_sym_LT] = ACTIONS(2251), + [anon_sym_DOT_DOT] = ACTIONS(2251), + [anon_sym_COLON_COLON] = ACTIONS(2251), + [anon_sym_POUND] = ACTIONS(2251), + [anon_sym_SQUOTE] = ACTIONS(2253), + [anon_sym_async] = 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_while] = ACTIONS(2253), + [anon_sym_extern] = ACTIONS(2253), + [anon_sym_yield] = ACTIONS(2253), + [anon_sym_move] = ACTIONS(2253), + [anon_sym_try] = ACTIONS(2253), + [sym_integer_literal] = ACTIONS(2251), + [aux_sym_string_literal_token1] = ACTIONS(2251), + [sym_char_literal] = ACTIONS(2251), + [anon_sym_true] = ACTIONS(2253), + [anon_sym_false] = ACTIONS(2253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2253), + [sym_super] = ACTIONS(2253), + [sym_crate] = ACTIONS(2253), + [sym_metavariable] = ACTIONS(2251), + [sym__raw_string_literal_start] = ACTIONS(2251), + [sym_float_literal] = ACTIONS(2251), }, [594] = { [sym_line_comment] = STATE(594), [sym_block_comment] = STATE(594), - [ts_builtin_sym_end] = ACTIONS(2122), - [sym_identifier] = ACTIONS(2124), - [anon_sym_SEMI] = ACTIONS(2122), - [anon_sym_macro_rules_BANG] = ACTIONS(2122), - [anon_sym_LPAREN] = ACTIONS(2122), - [anon_sym_LBRACK] = ACTIONS(2122), - [anon_sym_LBRACE] = ACTIONS(2122), - [anon_sym_RBRACE] = ACTIONS(2122), - [anon_sym_STAR] = ACTIONS(2122), - [anon_sym_u8] = ACTIONS(2124), - [anon_sym_i8] = ACTIONS(2124), - [anon_sym_u16] = ACTIONS(2124), - [anon_sym_i16] = ACTIONS(2124), - [anon_sym_u32] = ACTIONS(2124), - [anon_sym_i32] = ACTIONS(2124), - [anon_sym_u64] = ACTIONS(2124), - [anon_sym_i64] = ACTIONS(2124), - [anon_sym_u128] = ACTIONS(2124), - [anon_sym_i128] = ACTIONS(2124), - [anon_sym_isize] = ACTIONS(2124), - [anon_sym_usize] = ACTIONS(2124), - [anon_sym_f32] = ACTIONS(2124), - [anon_sym_f64] = ACTIONS(2124), - [anon_sym_bool] = ACTIONS(2124), - [anon_sym_str] = ACTIONS(2124), - [anon_sym_char] = ACTIONS(2124), - [anon_sym_DASH] = ACTIONS(2122), - [anon_sym_BANG] = ACTIONS(2122), - [anon_sym_AMP] = ACTIONS(2122), - [anon_sym_PIPE] = ACTIONS(2122), - [anon_sym_LT] = ACTIONS(2122), - [anon_sym_DOT_DOT] = ACTIONS(2122), - [anon_sym_COLON_COLON] = ACTIONS(2122), - [anon_sym_POUND] = ACTIONS(2122), - [anon_sym_SQUOTE] = ACTIONS(2124), - [anon_sym_async] = ACTIONS(2124), - [anon_sym_break] = ACTIONS(2124), - [anon_sym_const] = ACTIONS(2124), - [anon_sym_continue] = ACTIONS(2124), - [anon_sym_default] = ACTIONS(2124), - [anon_sym_enum] = ACTIONS(2124), - [anon_sym_fn] = ACTIONS(2124), - [anon_sym_for] = ACTIONS(2124), - [anon_sym_if] = ACTIONS(2124), - [anon_sym_impl] = ACTIONS(2124), - [anon_sym_let] = ACTIONS(2124), - [anon_sym_loop] = ACTIONS(2124), - [anon_sym_match] = ACTIONS(2124), - [anon_sym_mod] = ACTIONS(2124), - [anon_sym_pub] = ACTIONS(2124), - [anon_sym_return] = ACTIONS(2124), - [anon_sym_static] = ACTIONS(2124), - [anon_sym_struct] = ACTIONS(2124), - [anon_sym_trait] = ACTIONS(2124), - [anon_sym_type] = ACTIONS(2124), - [anon_sym_union] = ACTIONS(2124), - [anon_sym_unsafe] = ACTIONS(2124), - [anon_sym_use] = ACTIONS(2124), - [anon_sym_while] = ACTIONS(2124), - [anon_sym_extern] = ACTIONS(2124), - [anon_sym_yield] = ACTIONS(2124), - [anon_sym_move] = ACTIONS(2124), - [anon_sym_try] = ACTIONS(2124), - [sym_integer_literal] = ACTIONS(2122), - [aux_sym_string_literal_token1] = ACTIONS(2122), - [sym_char_literal] = ACTIONS(2122), - [anon_sym_true] = ACTIONS(2124), - [anon_sym_false] = ACTIONS(2124), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2124), - [sym_super] = ACTIONS(2124), - [sym_crate] = ACTIONS(2124), - [sym_metavariable] = ACTIONS(2122), - [sym__raw_string_literal_start] = ACTIONS(2122), - [sym_float_literal] = ACTIONS(2122), + [ts_builtin_sym_end] = ACTIONS(2255), + [sym_identifier] = ACTIONS(2257), + [anon_sym_SEMI] = ACTIONS(2255), + [anon_sym_macro_rules_BANG] = ACTIONS(2255), + [anon_sym_LPAREN] = ACTIONS(2255), + [anon_sym_LBRACK] = ACTIONS(2255), + [anon_sym_LBRACE] = ACTIONS(2255), + [anon_sym_RBRACE] = ACTIONS(2255), + [anon_sym_macro] = ACTIONS(2257), + [anon_sym_STAR] = ACTIONS(2255), + [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), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_BANG] = ACTIONS(2255), + [anon_sym_AMP] = ACTIONS(2255), + [anon_sym_PIPE] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2255), + [anon_sym_DOT_DOT] = ACTIONS(2255), + [anon_sym_COLON_COLON] = ACTIONS(2255), + [anon_sym_POUND] = ACTIONS(2255), + [anon_sym_SQUOTE] = ACTIONS(2257), + [anon_sym_async] = 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_while] = ACTIONS(2257), + [anon_sym_extern] = ACTIONS(2257), + [anon_sym_yield] = ACTIONS(2257), + [anon_sym_move] = ACTIONS(2257), + [anon_sym_try] = ACTIONS(2257), + [sym_integer_literal] = ACTIONS(2255), + [aux_sym_string_literal_token1] = ACTIONS(2255), + [sym_char_literal] = ACTIONS(2255), + [anon_sym_true] = ACTIONS(2257), + [anon_sym_false] = ACTIONS(2257), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2257), + [sym_super] = ACTIONS(2257), + [sym_crate] = ACTIONS(2257), + [sym_metavariable] = ACTIONS(2255), + [sym__raw_string_literal_start] = ACTIONS(2255), + [sym_float_literal] = ACTIONS(2255), }, [595] = { [sym_line_comment] = STATE(595), [sym_block_comment] = STATE(595), - [ts_builtin_sym_end] = ACTIONS(2126), - [sym_identifier] = ACTIONS(2128), - [anon_sym_SEMI] = ACTIONS(2126), - [anon_sym_macro_rules_BANG] = ACTIONS(2126), - [anon_sym_LPAREN] = ACTIONS(2126), - [anon_sym_LBRACK] = ACTIONS(2126), - [anon_sym_LBRACE] = ACTIONS(2126), - [anon_sym_RBRACE] = ACTIONS(2126), - [anon_sym_STAR] = ACTIONS(2126), - [anon_sym_u8] = ACTIONS(2128), - [anon_sym_i8] = ACTIONS(2128), - [anon_sym_u16] = ACTIONS(2128), - [anon_sym_i16] = ACTIONS(2128), - [anon_sym_u32] = ACTIONS(2128), - [anon_sym_i32] = ACTIONS(2128), - [anon_sym_u64] = ACTIONS(2128), - [anon_sym_i64] = ACTIONS(2128), - [anon_sym_u128] = ACTIONS(2128), - [anon_sym_i128] = ACTIONS(2128), - [anon_sym_isize] = ACTIONS(2128), - [anon_sym_usize] = ACTIONS(2128), - [anon_sym_f32] = ACTIONS(2128), - [anon_sym_f64] = ACTIONS(2128), - [anon_sym_bool] = ACTIONS(2128), - [anon_sym_str] = ACTIONS(2128), - [anon_sym_char] = ACTIONS(2128), - [anon_sym_DASH] = ACTIONS(2126), - [anon_sym_BANG] = ACTIONS(2126), - [anon_sym_AMP] = ACTIONS(2126), - [anon_sym_PIPE] = ACTIONS(2126), - [anon_sym_LT] = ACTIONS(2126), - [anon_sym_DOT_DOT] = ACTIONS(2126), - [anon_sym_COLON_COLON] = ACTIONS(2126), - [anon_sym_POUND] = ACTIONS(2126), - [anon_sym_SQUOTE] = ACTIONS(2128), - [anon_sym_async] = ACTIONS(2128), - [anon_sym_break] = ACTIONS(2128), - [anon_sym_const] = ACTIONS(2128), - [anon_sym_continue] = ACTIONS(2128), - [anon_sym_default] = ACTIONS(2128), - [anon_sym_enum] = ACTIONS(2128), - [anon_sym_fn] = ACTIONS(2128), - [anon_sym_for] = ACTIONS(2128), - [anon_sym_if] = ACTIONS(2128), - [anon_sym_impl] = ACTIONS(2128), - [anon_sym_let] = ACTIONS(2128), - [anon_sym_loop] = ACTIONS(2128), - [anon_sym_match] = ACTIONS(2128), - [anon_sym_mod] = ACTIONS(2128), - [anon_sym_pub] = ACTIONS(2128), - [anon_sym_return] = ACTIONS(2128), - [anon_sym_static] = ACTIONS(2128), - [anon_sym_struct] = ACTIONS(2128), - [anon_sym_trait] = ACTIONS(2128), - [anon_sym_type] = ACTIONS(2128), - [anon_sym_union] = ACTIONS(2128), - [anon_sym_unsafe] = ACTIONS(2128), - [anon_sym_use] = ACTIONS(2128), - [anon_sym_while] = ACTIONS(2128), - [anon_sym_extern] = ACTIONS(2128), - [anon_sym_yield] = ACTIONS(2128), - [anon_sym_move] = ACTIONS(2128), - [anon_sym_try] = ACTIONS(2128), - [sym_integer_literal] = ACTIONS(2126), - [aux_sym_string_literal_token1] = ACTIONS(2126), - [sym_char_literal] = ACTIONS(2126), - [anon_sym_true] = ACTIONS(2128), - [anon_sym_false] = ACTIONS(2128), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2128), - [sym_super] = ACTIONS(2128), - [sym_crate] = ACTIONS(2128), - [sym_metavariable] = ACTIONS(2126), - [sym__raw_string_literal_start] = ACTIONS(2126), - [sym_float_literal] = ACTIONS(2126), + [ts_builtin_sym_end] = ACTIONS(2259), + [sym_identifier] = ACTIONS(2261), + [anon_sym_SEMI] = ACTIONS(2259), + [anon_sym_macro_rules_BANG] = ACTIONS(2259), + [anon_sym_LPAREN] = ACTIONS(2259), + [anon_sym_LBRACK] = ACTIONS(2259), + [anon_sym_LBRACE] = ACTIONS(2259), + [anon_sym_RBRACE] = ACTIONS(2259), + [anon_sym_macro] = ACTIONS(2261), + [anon_sym_STAR] = ACTIONS(2259), + [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), + [anon_sym_DASH] = ACTIONS(2259), + [anon_sym_BANG] = ACTIONS(2259), + [anon_sym_AMP] = ACTIONS(2259), + [anon_sym_PIPE] = ACTIONS(2259), + [anon_sym_LT] = ACTIONS(2259), + [anon_sym_DOT_DOT] = ACTIONS(2259), + [anon_sym_COLON_COLON] = ACTIONS(2259), + [anon_sym_POUND] = ACTIONS(2259), + [anon_sym_SQUOTE] = ACTIONS(2261), + [anon_sym_async] = 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_while] = ACTIONS(2261), + [anon_sym_extern] = ACTIONS(2261), + [anon_sym_yield] = ACTIONS(2261), + [anon_sym_move] = ACTIONS(2261), + [anon_sym_try] = ACTIONS(2261), + [sym_integer_literal] = ACTIONS(2259), + [aux_sym_string_literal_token1] = ACTIONS(2259), + [sym_char_literal] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(2261), + [anon_sym_false] = ACTIONS(2261), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2261), + [sym_super] = ACTIONS(2261), + [sym_crate] = ACTIONS(2261), + [sym_metavariable] = ACTIONS(2259), + [sym__raw_string_literal_start] = ACTIONS(2259), + [sym_float_literal] = ACTIONS(2259), }, [596] = { [sym_line_comment] = STATE(596), [sym_block_comment] = STATE(596), - [ts_builtin_sym_end] = ACTIONS(2130), - [sym_identifier] = ACTIONS(2132), - [anon_sym_SEMI] = ACTIONS(2130), - [anon_sym_macro_rules_BANG] = ACTIONS(2130), - [anon_sym_LPAREN] = ACTIONS(2130), - [anon_sym_LBRACK] = ACTIONS(2130), - [anon_sym_LBRACE] = ACTIONS(2130), - [anon_sym_RBRACE] = ACTIONS(2130), - [anon_sym_STAR] = ACTIONS(2130), - [anon_sym_u8] = ACTIONS(2132), - [anon_sym_i8] = ACTIONS(2132), - [anon_sym_u16] = ACTIONS(2132), - [anon_sym_i16] = ACTIONS(2132), - [anon_sym_u32] = ACTIONS(2132), - [anon_sym_i32] = ACTIONS(2132), - [anon_sym_u64] = ACTIONS(2132), - [anon_sym_i64] = ACTIONS(2132), - [anon_sym_u128] = ACTIONS(2132), - [anon_sym_i128] = ACTIONS(2132), - [anon_sym_isize] = ACTIONS(2132), - [anon_sym_usize] = ACTIONS(2132), - [anon_sym_f32] = ACTIONS(2132), - [anon_sym_f64] = ACTIONS(2132), - [anon_sym_bool] = ACTIONS(2132), - [anon_sym_str] = ACTIONS(2132), - [anon_sym_char] = ACTIONS(2132), - [anon_sym_DASH] = ACTIONS(2130), - [anon_sym_BANG] = ACTIONS(2130), - [anon_sym_AMP] = ACTIONS(2130), - [anon_sym_PIPE] = ACTIONS(2130), - [anon_sym_LT] = ACTIONS(2130), - [anon_sym_DOT_DOT] = ACTIONS(2130), - [anon_sym_COLON_COLON] = ACTIONS(2130), - [anon_sym_POUND] = ACTIONS(2130), - [anon_sym_SQUOTE] = ACTIONS(2132), - [anon_sym_async] = ACTIONS(2132), - [anon_sym_break] = ACTIONS(2132), - [anon_sym_const] = ACTIONS(2132), - [anon_sym_continue] = ACTIONS(2132), - [anon_sym_default] = ACTIONS(2132), - [anon_sym_enum] = ACTIONS(2132), - [anon_sym_fn] = ACTIONS(2132), - [anon_sym_for] = ACTIONS(2132), - [anon_sym_if] = ACTIONS(2132), - [anon_sym_impl] = ACTIONS(2132), - [anon_sym_let] = ACTIONS(2132), - [anon_sym_loop] = ACTIONS(2132), - [anon_sym_match] = ACTIONS(2132), - [anon_sym_mod] = ACTIONS(2132), - [anon_sym_pub] = ACTIONS(2132), - [anon_sym_return] = ACTIONS(2132), - [anon_sym_static] = ACTIONS(2132), - [anon_sym_struct] = ACTIONS(2132), - [anon_sym_trait] = ACTIONS(2132), - [anon_sym_type] = ACTIONS(2132), - [anon_sym_union] = ACTIONS(2132), - [anon_sym_unsafe] = ACTIONS(2132), - [anon_sym_use] = ACTIONS(2132), - [anon_sym_while] = ACTIONS(2132), - [anon_sym_extern] = ACTIONS(2132), - [anon_sym_yield] = ACTIONS(2132), - [anon_sym_move] = ACTIONS(2132), - [anon_sym_try] = ACTIONS(2132), - [sym_integer_literal] = ACTIONS(2130), - [aux_sym_string_literal_token1] = ACTIONS(2130), - [sym_char_literal] = ACTIONS(2130), - [anon_sym_true] = ACTIONS(2132), - [anon_sym_false] = ACTIONS(2132), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2132), - [sym_super] = ACTIONS(2132), - [sym_crate] = ACTIONS(2132), - [sym_metavariable] = ACTIONS(2130), - [sym__raw_string_literal_start] = ACTIONS(2130), - [sym_float_literal] = ACTIONS(2130), + [ts_builtin_sym_end] = ACTIONS(1219), + [sym_identifier] = ACTIONS(1221), + [anon_sym_SEMI] = ACTIONS(1219), + [anon_sym_macro_rules_BANG] = ACTIONS(1219), + [anon_sym_LPAREN] = ACTIONS(1219), + [anon_sym_LBRACK] = ACTIONS(1219), + [anon_sym_LBRACE] = ACTIONS(1219), + [anon_sym_RBRACE] = ACTIONS(1219), + [anon_sym_macro] = ACTIONS(1221), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_u8] = ACTIONS(1221), + [anon_sym_i8] = ACTIONS(1221), + [anon_sym_u16] = ACTIONS(1221), + [anon_sym_i16] = ACTIONS(1221), + [anon_sym_u32] = ACTIONS(1221), + [anon_sym_i32] = ACTIONS(1221), + [anon_sym_u64] = ACTIONS(1221), + [anon_sym_i64] = ACTIONS(1221), + [anon_sym_u128] = ACTIONS(1221), + [anon_sym_i128] = ACTIONS(1221), + [anon_sym_isize] = ACTIONS(1221), + [anon_sym_usize] = ACTIONS(1221), + [anon_sym_f32] = ACTIONS(1221), + [anon_sym_f64] = ACTIONS(1221), + [anon_sym_bool] = ACTIONS(1221), + [anon_sym_str] = ACTIONS(1221), + [anon_sym_char] = ACTIONS(1221), + [anon_sym_DASH] = ACTIONS(1219), + [anon_sym_BANG] = ACTIONS(1219), + [anon_sym_AMP] = ACTIONS(1219), + [anon_sym_PIPE] = ACTIONS(1219), + [anon_sym_LT] = ACTIONS(1219), + [anon_sym_DOT_DOT] = ACTIONS(1219), + [anon_sym_COLON_COLON] = ACTIONS(1219), + [anon_sym_POUND] = ACTIONS(1219), + [anon_sym_SQUOTE] = ACTIONS(1221), + [anon_sym_async] = ACTIONS(1221), + [anon_sym_break] = ACTIONS(1221), + [anon_sym_const] = ACTIONS(1221), + [anon_sym_continue] = ACTIONS(1221), + [anon_sym_default] = ACTIONS(1221), + [anon_sym_enum] = ACTIONS(1221), + [anon_sym_fn] = ACTIONS(1221), + [anon_sym_for] = ACTIONS(1221), + [anon_sym_if] = ACTIONS(1221), + [anon_sym_impl] = ACTIONS(1221), + [anon_sym_let] = ACTIONS(1221), + [anon_sym_loop] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1221), + [anon_sym_mod] = ACTIONS(1221), + [anon_sym_pub] = ACTIONS(1221), + [anon_sym_return] = ACTIONS(1221), + [anon_sym_static] = ACTIONS(1221), + [anon_sym_struct] = ACTIONS(1221), + [anon_sym_trait] = ACTIONS(1221), + [anon_sym_type] = ACTIONS(1221), + [anon_sym_union] = ACTIONS(1221), + [anon_sym_unsafe] = ACTIONS(1221), + [anon_sym_use] = ACTIONS(1221), + [anon_sym_while] = ACTIONS(1221), + [anon_sym_extern] = ACTIONS(1221), + [anon_sym_yield] = ACTIONS(1221), + [anon_sym_move] = ACTIONS(1221), + [anon_sym_try] = ACTIONS(1221), + [sym_integer_literal] = ACTIONS(1219), + [aux_sym_string_literal_token1] = ACTIONS(1219), + [sym_char_literal] = ACTIONS(1219), + [anon_sym_true] = ACTIONS(1221), + [anon_sym_false] = ACTIONS(1221), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1221), + [sym_super] = ACTIONS(1221), + [sym_crate] = ACTIONS(1221), + [sym_metavariable] = ACTIONS(1219), + [sym__raw_string_literal_start] = ACTIONS(1219), + [sym_float_literal] = ACTIONS(1219), }, [597] = { [sym_line_comment] = STATE(597), [sym_block_comment] = STATE(597), - [ts_builtin_sym_end] = ACTIONS(2134), - [sym_identifier] = ACTIONS(2136), - [anon_sym_SEMI] = ACTIONS(2134), - [anon_sym_macro_rules_BANG] = ACTIONS(2134), - [anon_sym_LPAREN] = ACTIONS(2134), - [anon_sym_LBRACK] = ACTIONS(2134), - [anon_sym_LBRACE] = ACTIONS(2134), - [anon_sym_RBRACE] = ACTIONS(2134), - [anon_sym_STAR] = ACTIONS(2134), - [anon_sym_u8] = ACTIONS(2136), - [anon_sym_i8] = ACTIONS(2136), - [anon_sym_u16] = ACTIONS(2136), - [anon_sym_i16] = ACTIONS(2136), - [anon_sym_u32] = ACTIONS(2136), - [anon_sym_i32] = ACTIONS(2136), - [anon_sym_u64] = ACTIONS(2136), - [anon_sym_i64] = ACTIONS(2136), - [anon_sym_u128] = ACTIONS(2136), - [anon_sym_i128] = ACTIONS(2136), - [anon_sym_isize] = ACTIONS(2136), - [anon_sym_usize] = ACTIONS(2136), - [anon_sym_f32] = ACTIONS(2136), - [anon_sym_f64] = ACTIONS(2136), - [anon_sym_bool] = ACTIONS(2136), - [anon_sym_str] = ACTIONS(2136), - [anon_sym_char] = ACTIONS(2136), - [anon_sym_DASH] = ACTIONS(2134), - [anon_sym_BANG] = ACTIONS(2134), - [anon_sym_AMP] = ACTIONS(2134), - [anon_sym_PIPE] = ACTIONS(2134), - [anon_sym_LT] = ACTIONS(2134), - [anon_sym_DOT_DOT] = ACTIONS(2134), - [anon_sym_COLON_COLON] = ACTIONS(2134), - [anon_sym_POUND] = ACTIONS(2134), - [anon_sym_SQUOTE] = ACTIONS(2136), - [anon_sym_async] = ACTIONS(2136), - [anon_sym_break] = ACTIONS(2136), - [anon_sym_const] = ACTIONS(2136), - [anon_sym_continue] = ACTIONS(2136), - [anon_sym_default] = ACTIONS(2136), - [anon_sym_enum] = ACTIONS(2136), - [anon_sym_fn] = ACTIONS(2136), - [anon_sym_for] = ACTIONS(2136), - [anon_sym_if] = ACTIONS(2136), - [anon_sym_impl] = ACTIONS(2136), - [anon_sym_let] = ACTIONS(2136), - [anon_sym_loop] = ACTIONS(2136), - [anon_sym_match] = ACTIONS(2136), - [anon_sym_mod] = ACTIONS(2136), - [anon_sym_pub] = ACTIONS(2136), - [anon_sym_return] = ACTIONS(2136), - [anon_sym_static] = ACTIONS(2136), - [anon_sym_struct] = ACTIONS(2136), - [anon_sym_trait] = ACTIONS(2136), - [anon_sym_type] = ACTIONS(2136), - [anon_sym_union] = ACTIONS(2136), - [anon_sym_unsafe] = ACTIONS(2136), - [anon_sym_use] = ACTIONS(2136), - [anon_sym_while] = ACTIONS(2136), - [anon_sym_extern] = ACTIONS(2136), - [anon_sym_yield] = ACTIONS(2136), - [anon_sym_move] = ACTIONS(2136), - [anon_sym_try] = ACTIONS(2136), - [sym_integer_literal] = ACTIONS(2134), - [aux_sym_string_literal_token1] = ACTIONS(2134), - [sym_char_literal] = ACTIONS(2134), - [anon_sym_true] = ACTIONS(2136), - [anon_sym_false] = ACTIONS(2136), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2136), - [sym_super] = ACTIONS(2136), - [sym_crate] = ACTIONS(2136), - [sym_metavariable] = ACTIONS(2134), - [sym__raw_string_literal_start] = ACTIONS(2134), - [sym_float_literal] = ACTIONS(2134), + [ts_builtin_sym_end] = ACTIONS(2263), + [sym_identifier] = ACTIONS(2265), + [anon_sym_SEMI] = ACTIONS(2263), + [anon_sym_macro_rules_BANG] = ACTIONS(2263), + [anon_sym_LPAREN] = ACTIONS(2263), + [anon_sym_LBRACK] = ACTIONS(2263), + [anon_sym_LBRACE] = ACTIONS(2263), + [anon_sym_RBRACE] = ACTIONS(2263), + [anon_sym_macro] = ACTIONS(2265), + [anon_sym_STAR] = ACTIONS(2263), + [anon_sym_u8] = ACTIONS(2265), + [anon_sym_i8] = ACTIONS(2265), + [anon_sym_u16] = ACTIONS(2265), + [anon_sym_i16] = ACTIONS(2265), + [anon_sym_u32] = ACTIONS(2265), + [anon_sym_i32] = ACTIONS(2265), + [anon_sym_u64] = ACTIONS(2265), + [anon_sym_i64] = ACTIONS(2265), + [anon_sym_u128] = ACTIONS(2265), + [anon_sym_i128] = ACTIONS(2265), + [anon_sym_isize] = ACTIONS(2265), + [anon_sym_usize] = ACTIONS(2265), + [anon_sym_f32] = ACTIONS(2265), + [anon_sym_f64] = ACTIONS(2265), + [anon_sym_bool] = ACTIONS(2265), + [anon_sym_str] = ACTIONS(2265), + [anon_sym_char] = ACTIONS(2265), + [anon_sym_DASH] = ACTIONS(2263), + [anon_sym_BANG] = ACTIONS(2263), + [anon_sym_AMP] = ACTIONS(2263), + [anon_sym_PIPE] = ACTIONS(2263), + [anon_sym_LT] = ACTIONS(2263), + [anon_sym_DOT_DOT] = ACTIONS(2263), + [anon_sym_COLON_COLON] = ACTIONS(2263), + [anon_sym_POUND] = ACTIONS(2263), + [anon_sym_SQUOTE] = ACTIONS(2265), + [anon_sym_async] = ACTIONS(2265), + [anon_sym_break] = ACTIONS(2265), + [anon_sym_const] = ACTIONS(2265), + [anon_sym_continue] = ACTIONS(2265), + [anon_sym_default] = ACTIONS(2265), + [anon_sym_enum] = ACTIONS(2265), + [anon_sym_fn] = ACTIONS(2265), + [anon_sym_for] = ACTIONS(2265), + [anon_sym_if] = ACTIONS(2265), + [anon_sym_impl] = ACTIONS(2265), + [anon_sym_let] = ACTIONS(2265), + [anon_sym_loop] = ACTIONS(2265), + [anon_sym_match] = ACTIONS(2265), + [anon_sym_mod] = ACTIONS(2265), + [anon_sym_pub] = ACTIONS(2265), + [anon_sym_return] = ACTIONS(2265), + [anon_sym_static] = ACTIONS(2265), + [anon_sym_struct] = ACTIONS(2265), + [anon_sym_trait] = ACTIONS(2265), + [anon_sym_type] = ACTIONS(2265), + [anon_sym_union] = ACTIONS(2265), + [anon_sym_unsafe] = ACTIONS(2265), + [anon_sym_use] = ACTIONS(2265), + [anon_sym_while] = ACTIONS(2265), + [anon_sym_extern] = ACTIONS(2265), + [anon_sym_yield] = ACTIONS(2265), + [anon_sym_move] = ACTIONS(2265), + [anon_sym_try] = ACTIONS(2265), + [sym_integer_literal] = ACTIONS(2263), + [aux_sym_string_literal_token1] = ACTIONS(2263), + [sym_char_literal] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(2265), + [anon_sym_false] = ACTIONS(2265), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2265), + [sym_super] = ACTIONS(2265), + [sym_crate] = ACTIONS(2265), + [sym_metavariable] = ACTIONS(2263), + [sym__raw_string_literal_start] = ACTIONS(2263), + [sym_float_literal] = ACTIONS(2263), }, [598] = { [sym_line_comment] = STATE(598), [sym_block_comment] = STATE(598), - [ts_builtin_sym_end] = ACTIONS(2138), - [sym_identifier] = ACTIONS(2140), - [anon_sym_SEMI] = ACTIONS(2138), - [anon_sym_macro_rules_BANG] = ACTIONS(2138), - [anon_sym_LPAREN] = ACTIONS(2138), - [anon_sym_LBRACK] = ACTIONS(2138), - [anon_sym_LBRACE] = ACTIONS(2138), - [anon_sym_RBRACE] = ACTIONS(2138), - [anon_sym_STAR] = ACTIONS(2138), - [anon_sym_u8] = ACTIONS(2140), - [anon_sym_i8] = ACTIONS(2140), - [anon_sym_u16] = ACTIONS(2140), - [anon_sym_i16] = ACTIONS(2140), - [anon_sym_u32] = ACTIONS(2140), - [anon_sym_i32] = ACTIONS(2140), - [anon_sym_u64] = ACTIONS(2140), - [anon_sym_i64] = ACTIONS(2140), - [anon_sym_u128] = ACTIONS(2140), - [anon_sym_i128] = ACTIONS(2140), - [anon_sym_isize] = ACTIONS(2140), - [anon_sym_usize] = ACTIONS(2140), - [anon_sym_f32] = ACTIONS(2140), - [anon_sym_f64] = ACTIONS(2140), - [anon_sym_bool] = ACTIONS(2140), - [anon_sym_str] = ACTIONS(2140), - [anon_sym_char] = ACTIONS(2140), - [anon_sym_DASH] = ACTIONS(2138), - [anon_sym_BANG] = ACTIONS(2138), - [anon_sym_AMP] = ACTIONS(2138), - [anon_sym_PIPE] = ACTIONS(2138), - [anon_sym_LT] = ACTIONS(2138), - [anon_sym_DOT_DOT] = ACTIONS(2138), - [anon_sym_COLON_COLON] = ACTIONS(2138), - [anon_sym_POUND] = ACTIONS(2138), - [anon_sym_SQUOTE] = ACTIONS(2140), - [anon_sym_async] = ACTIONS(2140), - [anon_sym_break] = ACTIONS(2140), - [anon_sym_const] = ACTIONS(2140), - [anon_sym_continue] = ACTIONS(2140), - [anon_sym_default] = ACTIONS(2140), - [anon_sym_enum] = ACTIONS(2140), - [anon_sym_fn] = ACTIONS(2140), - [anon_sym_for] = ACTIONS(2140), - [anon_sym_if] = ACTIONS(2140), - [anon_sym_impl] = ACTIONS(2140), - [anon_sym_let] = ACTIONS(2140), - [anon_sym_loop] = ACTIONS(2140), - [anon_sym_match] = ACTIONS(2140), - [anon_sym_mod] = ACTIONS(2140), - [anon_sym_pub] = ACTIONS(2140), - [anon_sym_return] = ACTIONS(2140), - [anon_sym_static] = ACTIONS(2140), - [anon_sym_struct] = ACTIONS(2140), - [anon_sym_trait] = ACTIONS(2140), - [anon_sym_type] = ACTIONS(2140), - [anon_sym_union] = ACTIONS(2140), - [anon_sym_unsafe] = ACTIONS(2140), - [anon_sym_use] = ACTIONS(2140), - [anon_sym_while] = ACTIONS(2140), - [anon_sym_extern] = ACTIONS(2140), - [anon_sym_yield] = ACTIONS(2140), - [anon_sym_move] = ACTIONS(2140), - [anon_sym_try] = ACTIONS(2140), - [sym_integer_literal] = ACTIONS(2138), - [aux_sym_string_literal_token1] = ACTIONS(2138), - [sym_char_literal] = ACTIONS(2138), - [anon_sym_true] = ACTIONS(2140), - [anon_sym_false] = ACTIONS(2140), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2140), - [sym_super] = ACTIONS(2140), - [sym_crate] = ACTIONS(2140), - [sym_metavariable] = ACTIONS(2138), - [sym__raw_string_literal_start] = ACTIONS(2138), - [sym_float_literal] = ACTIONS(2138), + [ts_builtin_sym_end] = ACTIONS(2267), + [sym_identifier] = ACTIONS(2269), + [anon_sym_SEMI] = ACTIONS(2267), + [anon_sym_macro_rules_BANG] = ACTIONS(2267), + [anon_sym_LPAREN] = ACTIONS(2267), + [anon_sym_LBRACK] = ACTIONS(2267), + [anon_sym_LBRACE] = ACTIONS(2267), + [anon_sym_RBRACE] = ACTIONS(2267), + [anon_sym_macro] = ACTIONS(2269), + [anon_sym_STAR] = ACTIONS(2267), + [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), + [anon_sym_DASH] = ACTIONS(2267), + [anon_sym_BANG] = ACTIONS(2267), + [anon_sym_AMP] = ACTIONS(2267), + [anon_sym_PIPE] = ACTIONS(2267), + [anon_sym_LT] = ACTIONS(2267), + [anon_sym_DOT_DOT] = ACTIONS(2267), + [anon_sym_COLON_COLON] = ACTIONS(2267), + [anon_sym_POUND] = ACTIONS(2267), + [anon_sym_SQUOTE] = ACTIONS(2269), + [anon_sym_async] = 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_while] = ACTIONS(2269), + [anon_sym_extern] = ACTIONS(2269), + [anon_sym_yield] = ACTIONS(2269), + [anon_sym_move] = ACTIONS(2269), + [anon_sym_try] = ACTIONS(2269), + [sym_integer_literal] = ACTIONS(2267), + [aux_sym_string_literal_token1] = ACTIONS(2267), + [sym_char_literal] = ACTIONS(2267), + [anon_sym_true] = ACTIONS(2269), + [anon_sym_false] = ACTIONS(2269), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2269), + [sym_super] = ACTIONS(2269), + [sym_crate] = ACTIONS(2269), + [sym_metavariable] = ACTIONS(2267), + [sym__raw_string_literal_start] = ACTIONS(2267), + [sym_float_literal] = ACTIONS(2267), }, [599] = { [sym_line_comment] = STATE(599), [sym_block_comment] = STATE(599), - [ts_builtin_sym_end] = ACTIONS(2142), - [sym_identifier] = ACTIONS(2144), - [anon_sym_SEMI] = ACTIONS(2142), - [anon_sym_macro_rules_BANG] = ACTIONS(2142), - [anon_sym_LPAREN] = ACTIONS(2142), - [anon_sym_LBRACK] = ACTIONS(2142), - [anon_sym_LBRACE] = ACTIONS(2142), - [anon_sym_RBRACE] = ACTIONS(2142), - [anon_sym_STAR] = ACTIONS(2142), - [anon_sym_u8] = ACTIONS(2144), - [anon_sym_i8] = ACTIONS(2144), - [anon_sym_u16] = ACTIONS(2144), - [anon_sym_i16] = ACTIONS(2144), - [anon_sym_u32] = ACTIONS(2144), - [anon_sym_i32] = ACTIONS(2144), - [anon_sym_u64] = ACTIONS(2144), - [anon_sym_i64] = ACTIONS(2144), - [anon_sym_u128] = ACTIONS(2144), - [anon_sym_i128] = ACTIONS(2144), - [anon_sym_isize] = ACTIONS(2144), - [anon_sym_usize] = ACTIONS(2144), - [anon_sym_f32] = ACTIONS(2144), - [anon_sym_f64] = ACTIONS(2144), - [anon_sym_bool] = ACTIONS(2144), - [anon_sym_str] = ACTIONS(2144), - [anon_sym_char] = ACTIONS(2144), - [anon_sym_DASH] = ACTIONS(2142), - [anon_sym_BANG] = ACTIONS(2142), - [anon_sym_AMP] = ACTIONS(2142), - [anon_sym_PIPE] = ACTIONS(2142), - [anon_sym_LT] = ACTIONS(2142), - [anon_sym_DOT_DOT] = ACTIONS(2142), - [anon_sym_COLON_COLON] = ACTIONS(2142), - [anon_sym_POUND] = ACTIONS(2142), - [anon_sym_SQUOTE] = ACTIONS(2144), - [anon_sym_async] = ACTIONS(2144), - [anon_sym_break] = ACTIONS(2144), - [anon_sym_const] = ACTIONS(2144), - [anon_sym_continue] = ACTIONS(2144), - [anon_sym_default] = ACTIONS(2144), - [anon_sym_enum] = ACTIONS(2144), - [anon_sym_fn] = ACTIONS(2144), - [anon_sym_for] = ACTIONS(2144), - [anon_sym_if] = ACTIONS(2144), - [anon_sym_impl] = ACTIONS(2144), - [anon_sym_let] = ACTIONS(2144), - [anon_sym_loop] = ACTIONS(2144), - [anon_sym_match] = ACTIONS(2144), - [anon_sym_mod] = ACTIONS(2144), - [anon_sym_pub] = ACTIONS(2144), - [anon_sym_return] = ACTIONS(2144), - [anon_sym_static] = ACTIONS(2144), - [anon_sym_struct] = ACTIONS(2144), - [anon_sym_trait] = ACTIONS(2144), - [anon_sym_type] = ACTIONS(2144), - [anon_sym_union] = ACTIONS(2144), - [anon_sym_unsafe] = ACTIONS(2144), - [anon_sym_use] = ACTIONS(2144), - [anon_sym_while] = ACTIONS(2144), - [anon_sym_extern] = ACTIONS(2144), - [anon_sym_yield] = ACTIONS(2144), - [anon_sym_move] = ACTIONS(2144), - [anon_sym_try] = ACTIONS(2144), - [sym_integer_literal] = ACTIONS(2142), - [aux_sym_string_literal_token1] = ACTIONS(2142), - [sym_char_literal] = ACTIONS(2142), - [anon_sym_true] = ACTIONS(2144), - [anon_sym_false] = ACTIONS(2144), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2144), - [sym_super] = ACTIONS(2144), - [sym_crate] = ACTIONS(2144), - [sym_metavariable] = ACTIONS(2142), - [sym__raw_string_literal_start] = ACTIONS(2142), - [sym_float_literal] = ACTIONS(2142), + [ts_builtin_sym_end] = ACTIONS(2271), + [sym_identifier] = ACTIONS(2273), + [anon_sym_SEMI] = ACTIONS(2271), + [anon_sym_macro_rules_BANG] = ACTIONS(2271), + [anon_sym_LPAREN] = ACTIONS(2271), + [anon_sym_LBRACK] = ACTIONS(2271), + [anon_sym_LBRACE] = ACTIONS(2271), + [anon_sym_RBRACE] = ACTIONS(2271), + [anon_sym_macro] = ACTIONS(2273), + [anon_sym_STAR] = ACTIONS(2271), + [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), + [anon_sym_DASH] = ACTIONS(2271), + [anon_sym_BANG] = ACTIONS(2271), + [anon_sym_AMP] = ACTIONS(2271), + [anon_sym_PIPE] = ACTIONS(2271), + [anon_sym_LT] = ACTIONS(2271), + [anon_sym_DOT_DOT] = ACTIONS(2271), + [anon_sym_COLON_COLON] = ACTIONS(2271), + [anon_sym_POUND] = ACTIONS(2271), + [anon_sym_SQUOTE] = ACTIONS(2273), + [anon_sym_async] = 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_while] = ACTIONS(2273), + [anon_sym_extern] = ACTIONS(2273), + [anon_sym_yield] = ACTIONS(2273), + [anon_sym_move] = ACTIONS(2273), + [anon_sym_try] = ACTIONS(2273), + [sym_integer_literal] = ACTIONS(2271), + [aux_sym_string_literal_token1] = ACTIONS(2271), + [sym_char_literal] = ACTIONS(2271), + [anon_sym_true] = ACTIONS(2273), + [anon_sym_false] = ACTIONS(2273), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2273), + [sym_super] = ACTIONS(2273), + [sym_crate] = ACTIONS(2273), + [sym_metavariable] = ACTIONS(2271), + [sym__raw_string_literal_start] = ACTIONS(2271), + [sym_float_literal] = ACTIONS(2271), }, [600] = { [sym_line_comment] = STATE(600), [sym_block_comment] = STATE(600), - [ts_builtin_sym_end] = ACTIONS(2146), - [sym_identifier] = ACTIONS(2148), - [anon_sym_SEMI] = ACTIONS(2146), - [anon_sym_macro_rules_BANG] = ACTIONS(2146), - [anon_sym_LPAREN] = ACTIONS(2146), - [anon_sym_LBRACK] = ACTIONS(2146), - [anon_sym_LBRACE] = ACTIONS(2146), - [anon_sym_RBRACE] = ACTIONS(2146), - [anon_sym_STAR] = ACTIONS(2146), - [anon_sym_u8] = ACTIONS(2148), - [anon_sym_i8] = ACTIONS(2148), - [anon_sym_u16] = ACTIONS(2148), - [anon_sym_i16] = ACTIONS(2148), - [anon_sym_u32] = ACTIONS(2148), - [anon_sym_i32] = ACTIONS(2148), - [anon_sym_u64] = ACTIONS(2148), - [anon_sym_i64] = ACTIONS(2148), - [anon_sym_u128] = ACTIONS(2148), - [anon_sym_i128] = ACTIONS(2148), - [anon_sym_isize] = ACTIONS(2148), - [anon_sym_usize] = ACTIONS(2148), - [anon_sym_f32] = ACTIONS(2148), - [anon_sym_f64] = ACTIONS(2148), - [anon_sym_bool] = ACTIONS(2148), - [anon_sym_str] = ACTIONS(2148), - [anon_sym_char] = ACTIONS(2148), - [anon_sym_DASH] = ACTIONS(2146), - [anon_sym_BANG] = ACTIONS(2146), - [anon_sym_AMP] = ACTIONS(2146), - [anon_sym_PIPE] = ACTIONS(2146), - [anon_sym_LT] = ACTIONS(2146), - [anon_sym_DOT_DOT] = ACTIONS(2146), - [anon_sym_COLON_COLON] = ACTIONS(2146), - [anon_sym_POUND] = ACTIONS(2146), - [anon_sym_SQUOTE] = ACTIONS(2148), - [anon_sym_async] = ACTIONS(2148), - [anon_sym_break] = ACTIONS(2148), - [anon_sym_const] = ACTIONS(2148), - [anon_sym_continue] = ACTIONS(2148), - [anon_sym_default] = ACTIONS(2148), - [anon_sym_enum] = ACTIONS(2148), - [anon_sym_fn] = ACTIONS(2148), - [anon_sym_for] = ACTIONS(2148), - [anon_sym_if] = ACTIONS(2148), - [anon_sym_impl] = ACTIONS(2148), - [anon_sym_let] = ACTIONS(2148), - [anon_sym_loop] = ACTIONS(2148), - [anon_sym_match] = ACTIONS(2148), - [anon_sym_mod] = ACTIONS(2148), - [anon_sym_pub] = ACTIONS(2148), - [anon_sym_return] = ACTIONS(2148), - [anon_sym_static] = ACTIONS(2148), - [anon_sym_struct] = ACTIONS(2148), - [anon_sym_trait] = ACTIONS(2148), - [anon_sym_type] = ACTIONS(2148), - [anon_sym_union] = ACTIONS(2148), - [anon_sym_unsafe] = ACTIONS(2148), - [anon_sym_use] = ACTIONS(2148), - [anon_sym_while] = ACTIONS(2148), - [anon_sym_extern] = ACTIONS(2148), - [anon_sym_yield] = ACTIONS(2148), - [anon_sym_move] = ACTIONS(2148), - [anon_sym_try] = ACTIONS(2148), - [sym_integer_literal] = ACTIONS(2146), - [aux_sym_string_literal_token1] = ACTIONS(2146), - [sym_char_literal] = ACTIONS(2146), - [anon_sym_true] = ACTIONS(2148), - [anon_sym_false] = ACTIONS(2148), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2148), - [sym_super] = ACTIONS(2148), - [sym_crate] = ACTIONS(2148), - [sym_metavariable] = ACTIONS(2146), - [sym__raw_string_literal_start] = ACTIONS(2146), - [sym_float_literal] = ACTIONS(2146), + [ts_builtin_sym_end] = ACTIONS(2275), + [sym_identifier] = ACTIONS(2277), + [anon_sym_SEMI] = ACTIONS(2275), + [anon_sym_macro_rules_BANG] = ACTIONS(2275), + [anon_sym_LPAREN] = ACTIONS(2275), + [anon_sym_LBRACK] = ACTIONS(2275), + [anon_sym_LBRACE] = ACTIONS(2275), + [anon_sym_RBRACE] = ACTIONS(2275), + [anon_sym_macro] = ACTIONS(2277), + [anon_sym_STAR] = ACTIONS(2275), + [anon_sym_u8] = ACTIONS(2277), + [anon_sym_i8] = ACTIONS(2277), + [anon_sym_u16] = ACTIONS(2277), + [anon_sym_i16] = ACTIONS(2277), + [anon_sym_u32] = ACTIONS(2277), + [anon_sym_i32] = ACTIONS(2277), + [anon_sym_u64] = ACTIONS(2277), + [anon_sym_i64] = ACTIONS(2277), + [anon_sym_u128] = ACTIONS(2277), + [anon_sym_i128] = ACTIONS(2277), + [anon_sym_isize] = ACTIONS(2277), + [anon_sym_usize] = ACTIONS(2277), + [anon_sym_f32] = ACTIONS(2277), + [anon_sym_f64] = ACTIONS(2277), + [anon_sym_bool] = ACTIONS(2277), + [anon_sym_str] = ACTIONS(2277), + [anon_sym_char] = ACTIONS(2277), + [anon_sym_DASH] = ACTIONS(2275), + [anon_sym_BANG] = ACTIONS(2275), + [anon_sym_AMP] = ACTIONS(2275), + [anon_sym_PIPE] = ACTIONS(2275), + [anon_sym_LT] = ACTIONS(2275), + [anon_sym_DOT_DOT] = ACTIONS(2275), + [anon_sym_COLON_COLON] = ACTIONS(2275), + [anon_sym_POUND] = ACTIONS(2275), + [anon_sym_SQUOTE] = ACTIONS(2277), + [anon_sym_async] = ACTIONS(2277), + [anon_sym_break] = ACTIONS(2277), + [anon_sym_const] = ACTIONS(2277), + [anon_sym_continue] = ACTIONS(2277), + [anon_sym_default] = ACTIONS(2277), + [anon_sym_enum] = ACTIONS(2277), + [anon_sym_fn] = ACTIONS(2277), + [anon_sym_for] = ACTIONS(2277), + [anon_sym_if] = ACTIONS(2277), + [anon_sym_impl] = ACTIONS(2277), + [anon_sym_let] = ACTIONS(2277), + [anon_sym_loop] = ACTIONS(2277), + [anon_sym_match] = ACTIONS(2277), + [anon_sym_mod] = ACTIONS(2277), + [anon_sym_pub] = ACTIONS(2277), + [anon_sym_return] = ACTIONS(2277), + [anon_sym_static] = ACTIONS(2277), + [anon_sym_struct] = ACTIONS(2277), + [anon_sym_trait] = ACTIONS(2277), + [anon_sym_type] = ACTIONS(2277), + [anon_sym_union] = ACTIONS(2277), + [anon_sym_unsafe] = ACTIONS(2277), + [anon_sym_use] = ACTIONS(2277), + [anon_sym_while] = ACTIONS(2277), + [anon_sym_extern] = ACTIONS(2277), + [anon_sym_yield] = ACTIONS(2277), + [anon_sym_move] = ACTIONS(2277), + [anon_sym_try] = ACTIONS(2277), + [sym_integer_literal] = ACTIONS(2275), + [aux_sym_string_literal_token1] = ACTIONS(2275), + [sym_char_literal] = ACTIONS(2275), + [anon_sym_true] = ACTIONS(2277), + [anon_sym_false] = ACTIONS(2277), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2277), + [sym_super] = ACTIONS(2277), + [sym_crate] = ACTIONS(2277), + [sym_metavariable] = ACTIONS(2275), + [sym__raw_string_literal_start] = ACTIONS(2275), + [sym_float_literal] = ACTIONS(2275), }, [601] = { [sym_line_comment] = STATE(601), [sym_block_comment] = STATE(601), - [ts_builtin_sym_end] = ACTIONS(2150), - [sym_identifier] = ACTIONS(2152), - [anon_sym_SEMI] = ACTIONS(2150), - [anon_sym_macro_rules_BANG] = ACTIONS(2150), - [anon_sym_LPAREN] = ACTIONS(2150), - [anon_sym_LBRACK] = ACTIONS(2150), - [anon_sym_LBRACE] = ACTIONS(2150), - [anon_sym_RBRACE] = ACTIONS(2150), - [anon_sym_STAR] = ACTIONS(2150), - [anon_sym_u8] = ACTIONS(2152), - [anon_sym_i8] = ACTIONS(2152), - [anon_sym_u16] = ACTIONS(2152), - [anon_sym_i16] = ACTIONS(2152), - [anon_sym_u32] = ACTIONS(2152), - [anon_sym_i32] = ACTIONS(2152), - [anon_sym_u64] = ACTIONS(2152), - [anon_sym_i64] = ACTIONS(2152), - [anon_sym_u128] = ACTIONS(2152), - [anon_sym_i128] = ACTIONS(2152), - [anon_sym_isize] = ACTIONS(2152), - [anon_sym_usize] = ACTIONS(2152), - [anon_sym_f32] = ACTIONS(2152), - [anon_sym_f64] = ACTIONS(2152), - [anon_sym_bool] = ACTIONS(2152), - [anon_sym_str] = ACTIONS(2152), - [anon_sym_char] = ACTIONS(2152), - [anon_sym_DASH] = ACTIONS(2150), - [anon_sym_BANG] = ACTIONS(2150), - [anon_sym_AMP] = ACTIONS(2150), - [anon_sym_PIPE] = ACTIONS(2150), - [anon_sym_LT] = ACTIONS(2150), - [anon_sym_DOT_DOT] = ACTIONS(2150), - [anon_sym_COLON_COLON] = ACTIONS(2150), - [anon_sym_POUND] = ACTIONS(2150), - [anon_sym_SQUOTE] = ACTIONS(2152), - [anon_sym_async] = ACTIONS(2152), - [anon_sym_break] = ACTIONS(2152), - [anon_sym_const] = ACTIONS(2152), - [anon_sym_continue] = ACTIONS(2152), - [anon_sym_default] = ACTIONS(2152), - [anon_sym_enum] = ACTIONS(2152), - [anon_sym_fn] = ACTIONS(2152), - [anon_sym_for] = ACTIONS(2152), - [anon_sym_if] = ACTIONS(2152), - [anon_sym_impl] = ACTIONS(2152), - [anon_sym_let] = ACTIONS(2152), - [anon_sym_loop] = ACTIONS(2152), - [anon_sym_match] = ACTIONS(2152), - [anon_sym_mod] = ACTIONS(2152), - [anon_sym_pub] = ACTIONS(2152), - [anon_sym_return] = ACTIONS(2152), - [anon_sym_static] = ACTIONS(2152), - [anon_sym_struct] = ACTIONS(2152), - [anon_sym_trait] = ACTIONS(2152), - [anon_sym_type] = ACTIONS(2152), - [anon_sym_union] = ACTIONS(2152), - [anon_sym_unsafe] = ACTIONS(2152), - [anon_sym_use] = ACTIONS(2152), - [anon_sym_while] = ACTIONS(2152), - [anon_sym_extern] = ACTIONS(2152), - [anon_sym_yield] = ACTIONS(2152), - [anon_sym_move] = ACTIONS(2152), - [anon_sym_try] = ACTIONS(2152), - [sym_integer_literal] = ACTIONS(2150), - [aux_sym_string_literal_token1] = ACTIONS(2150), - [sym_char_literal] = ACTIONS(2150), - [anon_sym_true] = ACTIONS(2152), - [anon_sym_false] = ACTIONS(2152), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2152), - [sym_super] = ACTIONS(2152), - [sym_crate] = ACTIONS(2152), - [sym_metavariable] = ACTIONS(2150), - [sym__raw_string_literal_start] = ACTIONS(2150), - [sym_float_literal] = ACTIONS(2150), + [ts_builtin_sym_end] = ACTIONS(2279), + [sym_identifier] = ACTIONS(2281), + [anon_sym_SEMI] = ACTIONS(2279), + [anon_sym_macro_rules_BANG] = ACTIONS(2279), + [anon_sym_LPAREN] = ACTIONS(2279), + [anon_sym_LBRACK] = ACTIONS(2279), + [anon_sym_LBRACE] = ACTIONS(2279), + [anon_sym_RBRACE] = ACTIONS(2279), + [anon_sym_macro] = ACTIONS(2281), + [anon_sym_STAR] = ACTIONS(2279), + [anon_sym_u8] = ACTIONS(2281), + [anon_sym_i8] = ACTIONS(2281), + [anon_sym_u16] = ACTIONS(2281), + [anon_sym_i16] = ACTIONS(2281), + [anon_sym_u32] = ACTIONS(2281), + [anon_sym_i32] = ACTIONS(2281), + [anon_sym_u64] = ACTIONS(2281), + [anon_sym_i64] = ACTIONS(2281), + [anon_sym_u128] = ACTIONS(2281), + [anon_sym_i128] = ACTIONS(2281), + [anon_sym_isize] = ACTIONS(2281), + [anon_sym_usize] = ACTIONS(2281), + [anon_sym_f32] = ACTIONS(2281), + [anon_sym_f64] = ACTIONS(2281), + [anon_sym_bool] = ACTIONS(2281), + [anon_sym_str] = ACTIONS(2281), + [anon_sym_char] = ACTIONS(2281), + [anon_sym_DASH] = ACTIONS(2279), + [anon_sym_BANG] = ACTIONS(2279), + [anon_sym_AMP] = ACTIONS(2279), + [anon_sym_PIPE] = ACTIONS(2279), + [anon_sym_LT] = ACTIONS(2279), + [anon_sym_DOT_DOT] = ACTIONS(2279), + [anon_sym_COLON_COLON] = ACTIONS(2279), + [anon_sym_POUND] = ACTIONS(2279), + [anon_sym_SQUOTE] = ACTIONS(2281), + [anon_sym_async] = ACTIONS(2281), + [anon_sym_break] = ACTIONS(2281), + [anon_sym_const] = ACTIONS(2281), + [anon_sym_continue] = ACTIONS(2281), + [anon_sym_default] = ACTIONS(2281), + [anon_sym_enum] = ACTIONS(2281), + [anon_sym_fn] = ACTIONS(2281), + [anon_sym_for] = ACTIONS(2281), + [anon_sym_if] = ACTIONS(2281), + [anon_sym_impl] = ACTIONS(2281), + [anon_sym_let] = ACTIONS(2281), + [anon_sym_loop] = ACTIONS(2281), + [anon_sym_match] = ACTIONS(2281), + [anon_sym_mod] = ACTIONS(2281), + [anon_sym_pub] = ACTIONS(2281), + [anon_sym_return] = ACTIONS(2281), + [anon_sym_static] = ACTIONS(2281), + [anon_sym_struct] = ACTIONS(2281), + [anon_sym_trait] = ACTIONS(2281), + [anon_sym_type] = ACTIONS(2281), + [anon_sym_union] = ACTIONS(2281), + [anon_sym_unsafe] = ACTIONS(2281), + [anon_sym_use] = ACTIONS(2281), + [anon_sym_while] = ACTIONS(2281), + [anon_sym_extern] = ACTIONS(2281), + [anon_sym_yield] = ACTIONS(2281), + [anon_sym_move] = ACTIONS(2281), + [anon_sym_try] = ACTIONS(2281), + [sym_integer_literal] = ACTIONS(2279), + [aux_sym_string_literal_token1] = ACTIONS(2279), + [sym_char_literal] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(2281), + [anon_sym_false] = ACTIONS(2281), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2281), + [sym_super] = ACTIONS(2281), + [sym_crate] = ACTIONS(2281), + [sym_metavariable] = ACTIONS(2279), + [sym__raw_string_literal_start] = ACTIONS(2279), + [sym_float_literal] = ACTIONS(2279), }, [602] = { [sym_line_comment] = STATE(602), [sym_block_comment] = STATE(602), - [ts_builtin_sym_end] = ACTIONS(2154), - [sym_identifier] = ACTIONS(2156), - [anon_sym_SEMI] = ACTIONS(2154), - [anon_sym_macro_rules_BANG] = ACTIONS(2154), - [anon_sym_LPAREN] = ACTIONS(2154), - [anon_sym_LBRACK] = ACTIONS(2154), - [anon_sym_LBRACE] = ACTIONS(2154), - [anon_sym_RBRACE] = ACTIONS(2154), - [anon_sym_STAR] = ACTIONS(2154), - [anon_sym_u8] = ACTIONS(2156), - [anon_sym_i8] = ACTIONS(2156), - [anon_sym_u16] = ACTIONS(2156), - [anon_sym_i16] = ACTIONS(2156), - [anon_sym_u32] = ACTIONS(2156), - [anon_sym_i32] = ACTIONS(2156), - [anon_sym_u64] = ACTIONS(2156), - [anon_sym_i64] = ACTIONS(2156), - [anon_sym_u128] = ACTIONS(2156), - [anon_sym_i128] = ACTIONS(2156), - [anon_sym_isize] = ACTIONS(2156), - [anon_sym_usize] = ACTIONS(2156), - [anon_sym_f32] = ACTIONS(2156), - [anon_sym_f64] = ACTIONS(2156), - [anon_sym_bool] = ACTIONS(2156), - [anon_sym_str] = ACTIONS(2156), - [anon_sym_char] = ACTIONS(2156), - [anon_sym_DASH] = ACTIONS(2154), - [anon_sym_BANG] = ACTIONS(2154), - [anon_sym_AMP] = ACTIONS(2154), - [anon_sym_PIPE] = ACTIONS(2154), - [anon_sym_LT] = ACTIONS(2154), - [anon_sym_DOT_DOT] = ACTIONS(2154), - [anon_sym_COLON_COLON] = ACTIONS(2154), - [anon_sym_POUND] = ACTIONS(2154), - [anon_sym_SQUOTE] = ACTIONS(2156), - [anon_sym_async] = ACTIONS(2156), - [anon_sym_break] = ACTIONS(2156), - [anon_sym_const] = ACTIONS(2156), - [anon_sym_continue] = ACTIONS(2156), - [anon_sym_default] = ACTIONS(2156), - [anon_sym_enum] = ACTIONS(2156), - [anon_sym_fn] = ACTIONS(2156), - [anon_sym_for] = ACTIONS(2156), - [anon_sym_if] = ACTIONS(2156), - [anon_sym_impl] = ACTIONS(2156), - [anon_sym_let] = ACTIONS(2156), - [anon_sym_loop] = ACTIONS(2156), - [anon_sym_match] = ACTIONS(2156), - [anon_sym_mod] = ACTIONS(2156), - [anon_sym_pub] = ACTIONS(2156), - [anon_sym_return] = ACTIONS(2156), - [anon_sym_static] = ACTIONS(2156), - [anon_sym_struct] = ACTIONS(2156), - [anon_sym_trait] = ACTIONS(2156), - [anon_sym_type] = ACTIONS(2156), - [anon_sym_union] = ACTIONS(2156), - [anon_sym_unsafe] = ACTIONS(2156), - [anon_sym_use] = ACTIONS(2156), - [anon_sym_while] = ACTIONS(2156), - [anon_sym_extern] = ACTIONS(2156), - [anon_sym_yield] = ACTIONS(2156), - [anon_sym_move] = ACTIONS(2156), - [anon_sym_try] = ACTIONS(2156), - [sym_integer_literal] = ACTIONS(2154), - [aux_sym_string_literal_token1] = ACTIONS(2154), - [sym_char_literal] = ACTIONS(2154), - [anon_sym_true] = ACTIONS(2156), - [anon_sym_false] = ACTIONS(2156), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2156), - [sym_super] = ACTIONS(2156), - [sym_crate] = ACTIONS(2156), - [sym_metavariable] = ACTIONS(2154), - [sym__raw_string_literal_start] = ACTIONS(2154), - [sym_float_literal] = ACTIONS(2154), + [ts_builtin_sym_end] = ACTIONS(2283), + [sym_identifier] = ACTIONS(2285), + [anon_sym_SEMI] = ACTIONS(2283), + [anon_sym_macro_rules_BANG] = ACTIONS(2283), + [anon_sym_LPAREN] = ACTIONS(2283), + [anon_sym_LBRACK] = ACTIONS(2283), + [anon_sym_LBRACE] = ACTIONS(2283), + [anon_sym_RBRACE] = ACTIONS(2283), + [anon_sym_macro] = ACTIONS(2285), + [anon_sym_STAR] = ACTIONS(2283), + [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), + [anon_sym_DASH] = ACTIONS(2283), + [anon_sym_BANG] = ACTIONS(2283), + [anon_sym_AMP] = ACTIONS(2283), + [anon_sym_PIPE] = ACTIONS(2283), + [anon_sym_LT] = ACTIONS(2283), + [anon_sym_DOT_DOT] = ACTIONS(2283), + [anon_sym_COLON_COLON] = ACTIONS(2283), + [anon_sym_POUND] = ACTIONS(2283), + [anon_sym_SQUOTE] = ACTIONS(2285), + [anon_sym_async] = 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_while] = ACTIONS(2285), + [anon_sym_extern] = ACTIONS(2285), + [anon_sym_yield] = ACTIONS(2285), + [anon_sym_move] = ACTIONS(2285), + [anon_sym_try] = ACTIONS(2285), + [sym_integer_literal] = ACTIONS(2283), + [aux_sym_string_literal_token1] = ACTIONS(2283), + [sym_char_literal] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(2285), + [anon_sym_false] = ACTIONS(2285), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2285), + [sym_super] = ACTIONS(2285), + [sym_crate] = ACTIONS(2285), + [sym_metavariable] = ACTIONS(2283), + [sym__raw_string_literal_start] = ACTIONS(2283), + [sym_float_literal] = ACTIONS(2283), }, [603] = { [sym_line_comment] = STATE(603), [sym_block_comment] = STATE(603), - [ts_builtin_sym_end] = ACTIONS(2158), - [sym_identifier] = ACTIONS(2160), - [anon_sym_SEMI] = ACTIONS(2158), - [anon_sym_macro_rules_BANG] = ACTIONS(2158), - [anon_sym_LPAREN] = ACTIONS(2158), - [anon_sym_LBRACK] = ACTIONS(2158), - [anon_sym_LBRACE] = ACTIONS(2158), - [anon_sym_RBRACE] = ACTIONS(2158), - [anon_sym_STAR] = ACTIONS(2158), - [anon_sym_u8] = ACTIONS(2160), - [anon_sym_i8] = ACTIONS(2160), - [anon_sym_u16] = ACTIONS(2160), - [anon_sym_i16] = ACTIONS(2160), - [anon_sym_u32] = ACTIONS(2160), - [anon_sym_i32] = ACTIONS(2160), - [anon_sym_u64] = ACTIONS(2160), - [anon_sym_i64] = ACTIONS(2160), - [anon_sym_u128] = ACTIONS(2160), - [anon_sym_i128] = ACTIONS(2160), - [anon_sym_isize] = ACTIONS(2160), - [anon_sym_usize] = ACTIONS(2160), - [anon_sym_f32] = ACTIONS(2160), - [anon_sym_f64] = ACTIONS(2160), - [anon_sym_bool] = ACTIONS(2160), - [anon_sym_str] = ACTIONS(2160), - [anon_sym_char] = ACTIONS(2160), - [anon_sym_DASH] = ACTIONS(2158), - [anon_sym_BANG] = ACTIONS(2158), - [anon_sym_AMP] = ACTIONS(2158), - [anon_sym_PIPE] = ACTIONS(2158), - [anon_sym_LT] = ACTIONS(2158), - [anon_sym_DOT_DOT] = ACTIONS(2158), - [anon_sym_COLON_COLON] = ACTIONS(2158), - [anon_sym_POUND] = ACTIONS(2158), - [anon_sym_SQUOTE] = ACTIONS(2160), - [anon_sym_async] = ACTIONS(2160), - [anon_sym_break] = ACTIONS(2160), - [anon_sym_const] = ACTIONS(2160), - [anon_sym_continue] = ACTIONS(2160), - [anon_sym_default] = ACTIONS(2160), - [anon_sym_enum] = ACTIONS(2160), - [anon_sym_fn] = ACTIONS(2160), - [anon_sym_for] = ACTIONS(2160), - [anon_sym_if] = ACTIONS(2160), - [anon_sym_impl] = ACTIONS(2160), - [anon_sym_let] = ACTIONS(2160), - [anon_sym_loop] = ACTIONS(2160), - [anon_sym_match] = ACTIONS(2160), - [anon_sym_mod] = ACTIONS(2160), - [anon_sym_pub] = ACTIONS(2160), - [anon_sym_return] = ACTIONS(2160), - [anon_sym_static] = ACTIONS(2160), - [anon_sym_struct] = ACTIONS(2160), - [anon_sym_trait] = ACTIONS(2160), - [anon_sym_type] = ACTIONS(2160), - [anon_sym_union] = ACTIONS(2160), - [anon_sym_unsafe] = ACTIONS(2160), - [anon_sym_use] = ACTIONS(2160), - [anon_sym_while] = ACTIONS(2160), - [anon_sym_extern] = ACTIONS(2160), - [anon_sym_yield] = ACTIONS(2160), - [anon_sym_move] = ACTIONS(2160), - [anon_sym_try] = ACTIONS(2160), - [sym_integer_literal] = ACTIONS(2158), - [aux_sym_string_literal_token1] = ACTIONS(2158), - [sym_char_literal] = ACTIONS(2158), - [anon_sym_true] = ACTIONS(2160), - [anon_sym_false] = ACTIONS(2160), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2160), - [sym_super] = ACTIONS(2160), - [sym_crate] = ACTIONS(2160), - [sym_metavariable] = ACTIONS(2158), - [sym__raw_string_literal_start] = ACTIONS(2158), - [sym_float_literal] = ACTIONS(2158), + [ts_builtin_sym_end] = ACTIONS(2287), + [sym_identifier] = ACTIONS(2289), + [anon_sym_SEMI] = ACTIONS(2287), + [anon_sym_macro_rules_BANG] = ACTIONS(2287), + [anon_sym_LPAREN] = ACTIONS(2287), + [anon_sym_LBRACK] = ACTIONS(2287), + [anon_sym_LBRACE] = ACTIONS(2287), + [anon_sym_RBRACE] = ACTIONS(2287), + [anon_sym_macro] = ACTIONS(2289), + [anon_sym_STAR] = ACTIONS(2287), + [anon_sym_u8] = ACTIONS(2289), + [anon_sym_i8] = ACTIONS(2289), + [anon_sym_u16] = ACTIONS(2289), + [anon_sym_i16] = ACTIONS(2289), + [anon_sym_u32] = ACTIONS(2289), + [anon_sym_i32] = ACTIONS(2289), + [anon_sym_u64] = ACTIONS(2289), + [anon_sym_i64] = ACTIONS(2289), + [anon_sym_u128] = ACTIONS(2289), + [anon_sym_i128] = ACTIONS(2289), + [anon_sym_isize] = ACTIONS(2289), + [anon_sym_usize] = ACTIONS(2289), + [anon_sym_f32] = ACTIONS(2289), + [anon_sym_f64] = ACTIONS(2289), + [anon_sym_bool] = ACTIONS(2289), + [anon_sym_str] = ACTIONS(2289), + [anon_sym_char] = ACTIONS(2289), + [anon_sym_DASH] = ACTIONS(2287), + [anon_sym_BANG] = ACTIONS(2287), + [anon_sym_AMP] = ACTIONS(2287), + [anon_sym_PIPE] = ACTIONS(2287), + [anon_sym_LT] = ACTIONS(2287), + [anon_sym_DOT_DOT] = ACTIONS(2287), + [anon_sym_COLON_COLON] = ACTIONS(2287), + [anon_sym_POUND] = ACTIONS(2287), + [anon_sym_SQUOTE] = ACTIONS(2289), + [anon_sym_async] = ACTIONS(2289), + [anon_sym_break] = ACTIONS(2289), + [anon_sym_const] = ACTIONS(2289), + [anon_sym_continue] = ACTIONS(2289), + [anon_sym_default] = ACTIONS(2289), + [anon_sym_enum] = ACTIONS(2289), + [anon_sym_fn] = ACTIONS(2289), + [anon_sym_for] = ACTIONS(2289), + [anon_sym_if] = ACTIONS(2289), + [anon_sym_impl] = ACTIONS(2289), + [anon_sym_let] = ACTIONS(2289), + [anon_sym_loop] = ACTIONS(2289), + [anon_sym_match] = ACTIONS(2289), + [anon_sym_mod] = ACTIONS(2289), + [anon_sym_pub] = ACTIONS(2289), + [anon_sym_return] = ACTIONS(2289), + [anon_sym_static] = ACTIONS(2289), + [anon_sym_struct] = ACTIONS(2289), + [anon_sym_trait] = ACTIONS(2289), + [anon_sym_type] = ACTIONS(2289), + [anon_sym_union] = ACTIONS(2289), + [anon_sym_unsafe] = ACTIONS(2289), + [anon_sym_use] = ACTIONS(2289), + [anon_sym_while] = ACTIONS(2289), + [anon_sym_extern] = ACTIONS(2289), + [anon_sym_yield] = ACTIONS(2289), + [anon_sym_move] = ACTIONS(2289), + [anon_sym_try] = ACTIONS(2289), + [sym_integer_literal] = ACTIONS(2287), + [aux_sym_string_literal_token1] = ACTIONS(2287), + [sym_char_literal] = ACTIONS(2287), + [anon_sym_true] = ACTIONS(2289), + [anon_sym_false] = ACTIONS(2289), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2289), + [sym_super] = ACTIONS(2289), + [sym_crate] = ACTIONS(2289), + [sym_metavariable] = ACTIONS(2287), + [sym__raw_string_literal_start] = ACTIONS(2287), + [sym_float_literal] = ACTIONS(2287), }, [604] = { [sym_line_comment] = STATE(604), [sym_block_comment] = STATE(604), - [ts_builtin_sym_end] = ACTIONS(2162), - [sym_identifier] = ACTIONS(2164), - [anon_sym_SEMI] = ACTIONS(2162), - [anon_sym_macro_rules_BANG] = ACTIONS(2162), - [anon_sym_LPAREN] = ACTIONS(2162), - [anon_sym_LBRACK] = ACTIONS(2162), - [anon_sym_LBRACE] = ACTIONS(2162), - [anon_sym_RBRACE] = ACTIONS(2162), - [anon_sym_STAR] = ACTIONS(2162), - [anon_sym_u8] = ACTIONS(2164), - [anon_sym_i8] = ACTIONS(2164), - [anon_sym_u16] = ACTIONS(2164), - [anon_sym_i16] = ACTIONS(2164), - [anon_sym_u32] = ACTIONS(2164), - [anon_sym_i32] = ACTIONS(2164), - [anon_sym_u64] = ACTIONS(2164), - [anon_sym_i64] = ACTIONS(2164), - [anon_sym_u128] = ACTIONS(2164), - [anon_sym_i128] = ACTIONS(2164), - [anon_sym_isize] = ACTIONS(2164), - [anon_sym_usize] = ACTIONS(2164), - [anon_sym_f32] = ACTIONS(2164), - [anon_sym_f64] = ACTIONS(2164), - [anon_sym_bool] = ACTIONS(2164), - [anon_sym_str] = ACTIONS(2164), - [anon_sym_char] = ACTIONS(2164), - [anon_sym_DASH] = ACTIONS(2162), - [anon_sym_BANG] = ACTIONS(2162), - [anon_sym_AMP] = ACTIONS(2162), - [anon_sym_PIPE] = ACTIONS(2162), - [anon_sym_LT] = ACTIONS(2162), - [anon_sym_DOT_DOT] = ACTIONS(2162), - [anon_sym_COLON_COLON] = ACTIONS(2162), - [anon_sym_POUND] = ACTIONS(2162), - [anon_sym_SQUOTE] = ACTIONS(2164), - [anon_sym_async] = ACTIONS(2164), - [anon_sym_break] = ACTIONS(2164), - [anon_sym_const] = ACTIONS(2164), - [anon_sym_continue] = ACTIONS(2164), - [anon_sym_default] = ACTIONS(2164), - [anon_sym_enum] = ACTIONS(2164), - [anon_sym_fn] = ACTIONS(2164), - [anon_sym_for] = ACTIONS(2164), - [anon_sym_if] = ACTIONS(2164), - [anon_sym_impl] = ACTIONS(2164), - [anon_sym_let] = ACTIONS(2164), - [anon_sym_loop] = ACTIONS(2164), - [anon_sym_match] = ACTIONS(2164), - [anon_sym_mod] = ACTIONS(2164), - [anon_sym_pub] = ACTIONS(2164), - [anon_sym_return] = ACTIONS(2164), - [anon_sym_static] = ACTIONS(2164), - [anon_sym_struct] = ACTIONS(2164), - [anon_sym_trait] = ACTIONS(2164), - [anon_sym_type] = ACTIONS(2164), - [anon_sym_union] = ACTIONS(2164), - [anon_sym_unsafe] = ACTIONS(2164), - [anon_sym_use] = ACTIONS(2164), - [anon_sym_while] = ACTIONS(2164), - [anon_sym_extern] = ACTIONS(2164), - [anon_sym_yield] = ACTIONS(2164), - [anon_sym_move] = ACTIONS(2164), - [anon_sym_try] = ACTIONS(2164), - [sym_integer_literal] = ACTIONS(2162), - [aux_sym_string_literal_token1] = ACTIONS(2162), - [sym_char_literal] = ACTIONS(2162), - [anon_sym_true] = ACTIONS(2164), - [anon_sym_false] = ACTIONS(2164), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2164), - [sym_super] = ACTIONS(2164), - [sym_crate] = ACTIONS(2164), - [sym_metavariable] = ACTIONS(2162), - [sym__raw_string_literal_start] = ACTIONS(2162), - [sym_float_literal] = ACTIONS(2162), + [ts_builtin_sym_end] = ACTIONS(1239), + [sym_identifier] = ACTIONS(1241), + [anon_sym_SEMI] = ACTIONS(1239), + [anon_sym_macro_rules_BANG] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(1239), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_LBRACE] = ACTIONS(1239), + [anon_sym_RBRACE] = ACTIONS(1239), + [anon_sym_macro] = ACTIONS(1241), + [anon_sym_STAR] = ACTIONS(1239), + [anon_sym_u8] = ACTIONS(1241), + [anon_sym_i8] = ACTIONS(1241), + [anon_sym_u16] = ACTIONS(1241), + [anon_sym_i16] = ACTIONS(1241), + [anon_sym_u32] = ACTIONS(1241), + [anon_sym_i32] = ACTIONS(1241), + [anon_sym_u64] = ACTIONS(1241), + [anon_sym_i64] = ACTIONS(1241), + [anon_sym_u128] = ACTIONS(1241), + [anon_sym_i128] = ACTIONS(1241), + [anon_sym_isize] = ACTIONS(1241), + [anon_sym_usize] = ACTIONS(1241), + [anon_sym_f32] = ACTIONS(1241), + [anon_sym_f64] = ACTIONS(1241), + [anon_sym_bool] = ACTIONS(1241), + [anon_sym_str] = ACTIONS(1241), + [anon_sym_char] = ACTIONS(1241), + [anon_sym_DASH] = ACTIONS(1239), + [anon_sym_BANG] = ACTIONS(1239), + [anon_sym_AMP] = ACTIONS(1239), + [anon_sym_PIPE] = ACTIONS(1239), + [anon_sym_LT] = ACTIONS(1239), + [anon_sym_DOT_DOT] = ACTIONS(1239), + [anon_sym_COLON_COLON] = ACTIONS(1239), + [anon_sym_POUND] = ACTIONS(1239), + [anon_sym_SQUOTE] = ACTIONS(1241), + [anon_sym_async] = ACTIONS(1241), + [anon_sym_break] = ACTIONS(1241), + [anon_sym_const] = ACTIONS(1241), + [anon_sym_continue] = ACTIONS(1241), + [anon_sym_default] = ACTIONS(1241), + [anon_sym_enum] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1241), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_if] = ACTIONS(1241), + [anon_sym_impl] = ACTIONS(1241), + [anon_sym_let] = ACTIONS(1241), + [anon_sym_loop] = ACTIONS(1241), + [anon_sym_match] = ACTIONS(1241), + [anon_sym_mod] = ACTIONS(1241), + [anon_sym_pub] = ACTIONS(1241), + [anon_sym_return] = ACTIONS(1241), + [anon_sym_static] = ACTIONS(1241), + [anon_sym_struct] = ACTIONS(1241), + [anon_sym_trait] = ACTIONS(1241), + [anon_sym_type] = ACTIONS(1241), + [anon_sym_union] = ACTIONS(1241), + [anon_sym_unsafe] = ACTIONS(1241), + [anon_sym_use] = ACTIONS(1241), + [anon_sym_while] = ACTIONS(1241), + [anon_sym_extern] = ACTIONS(1241), + [anon_sym_yield] = ACTIONS(1241), + [anon_sym_move] = ACTIONS(1241), + [anon_sym_try] = ACTIONS(1241), + [sym_integer_literal] = ACTIONS(1239), + [aux_sym_string_literal_token1] = ACTIONS(1239), + [sym_char_literal] = ACTIONS(1239), + [anon_sym_true] = ACTIONS(1241), + [anon_sym_false] = ACTIONS(1241), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1241), + [sym_super] = ACTIONS(1241), + [sym_crate] = ACTIONS(1241), + [sym_metavariable] = ACTIONS(1239), + [sym__raw_string_literal_start] = ACTIONS(1239), + [sym_float_literal] = ACTIONS(1239), }, [605] = { [sym_line_comment] = STATE(605), [sym_block_comment] = STATE(605), - [ts_builtin_sym_end] = ACTIONS(2166), - [sym_identifier] = ACTIONS(2168), - [anon_sym_SEMI] = ACTIONS(2166), - [anon_sym_macro_rules_BANG] = ACTIONS(2166), - [anon_sym_LPAREN] = ACTIONS(2166), - [anon_sym_LBRACK] = ACTIONS(2166), - [anon_sym_LBRACE] = ACTIONS(2166), - [anon_sym_RBRACE] = ACTIONS(2166), - [anon_sym_STAR] = ACTIONS(2166), - [anon_sym_u8] = ACTIONS(2168), - [anon_sym_i8] = ACTIONS(2168), - [anon_sym_u16] = ACTIONS(2168), - [anon_sym_i16] = ACTIONS(2168), - [anon_sym_u32] = ACTIONS(2168), - [anon_sym_i32] = ACTIONS(2168), - [anon_sym_u64] = ACTIONS(2168), - [anon_sym_i64] = ACTIONS(2168), - [anon_sym_u128] = ACTIONS(2168), - [anon_sym_i128] = ACTIONS(2168), - [anon_sym_isize] = ACTIONS(2168), - [anon_sym_usize] = ACTIONS(2168), - [anon_sym_f32] = ACTIONS(2168), - [anon_sym_f64] = ACTIONS(2168), - [anon_sym_bool] = ACTIONS(2168), - [anon_sym_str] = ACTIONS(2168), - [anon_sym_char] = ACTIONS(2168), - [anon_sym_DASH] = ACTIONS(2166), - [anon_sym_BANG] = ACTIONS(2166), - [anon_sym_AMP] = ACTIONS(2166), - [anon_sym_PIPE] = ACTIONS(2166), - [anon_sym_LT] = ACTIONS(2166), - [anon_sym_DOT_DOT] = ACTIONS(2166), - [anon_sym_COLON_COLON] = ACTIONS(2166), - [anon_sym_POUND] = ACTIONS(2166), - [anon_sym_SQUOTE] = ACTIONS(2168), - [anon_sym_async] = ACTIONS(2168), - [anon_sym_break] = ACTIONS(2168), - [anon_sym_const] = ACTIONS(2168), - [anon_sym_continue] = ACTIONS(2168), - [anon_sym_default] = ACTIONS(2168), - [anon_sym_enum] = ACTIONS(2168), - [anon_sym_fn] = ACTIONS(2168), - [anon_sym_for] = ACTIONS(2168), - [anon_sym_if] = ACTIONS(2168), - [anon_sym_impl] = ACTIONS(2168), - [anon_sym_let] = ACTIONS(2168), - [anon_sym_loop] = ACTIONS(2168), - [anon_sym_match] = ACTIONS(2168), - [anon_sym_mod] = ACTIONS(2168), - [anon_sym_pub] = ACTIONS(2168), - [anon_sym_return] = ACTIONS(2168), - [anon_sym_static] = ACTIONS(2168), - [anon_sym_struct] = ACTIONS(2168), - [anon_sym_trait] = ACTIONS(2168), - [anon_sym_type] = ACTIONS(2168), - [anon_sym_union] = ACTIONS(2168), - [anon_sym_unsafe] = ACTIONS(2168), - [anon_sym_use] = ACTIONS(2168), - [anon_sym_while] = ACTIONS(2168), - [anon_sym_extern] = ACTIONS(2168), - [anon_sym_yield] = ACTIONS(2168), - [anon_sym_move] = ACTIONS(2168), - [anon_sym_try] = ACTIONS(2168), - [sym_integer_literal] = ACTIONS(2166), - [aux_sym_string_literal_token1] = ACTIONS(2166), - [sym_char_literal] = ACTIONS(2166), - [anon_sym_true] = ACTIONS(2168), - [anon_sym_false] = ACTIONS(2168), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2168), - [sym_super] = ACTIONS(2168), - [sym_crate] = ACTIONS(2168), - [sym_metavariable] = ACTIONS(2166), - [sym__raw_string_literal_start] = ACTIONS(2166), - [sym_float_literal] = ACTIONS(2166), + [ts_builtin_sym_end] = ACTIONS(2291), + [sym_identifier] = ACTIONS(2293), + [anon_sym_SEMI] = ACTIONS(2291), + [anon_sym_macro_rules_BANG] = ACTIONS(2291), + [anon_sym_LPAREN] = ACTIONS(2291), + [anon_sym_LBRACK] = ACTIONS(2291), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_RBRACE] = ACTIONS(2291), + [anon_sym_macro] = ACTIONS(2293), + [anon_sym_STAR] = ACTIONS(2291), + [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), + [anon_sym_DASH] = ACTIONS(2291), + [anon_sym_BANG] = ACTIONS(2291), + [anon_sym_AMP] = ACTIONS(2291), + [anon_sym_PIPE] = ACTIONS(2291), + [anon_sym_LT] = ACTIONS(2291), + [anon_sym_DOT_DOT] = ACTIONS(2291), + [anon_sym_COLON_COLON] = ACTIONS(2291), + [anon_sym_POUND] = ACTIONS(2291), + [anon_sym_SQUOTE] = ACTIONS(2293), + [anon_sym_async] = 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_while] = ACTIONS(2293), + [anon_sym_extern] = ACTIONS(2293), + [anon_sym_yield] = ACTIONS(2293), + [anon_sym_move] = ACTIONS(2293), + [anon_sym_try] = ACTIONS(2293), + [sym_integer_literal] = ACTIONS(2291), + [aux_sym_string_literal_token1] = ACTIONS(2291), + [sym_char_literal] = ACTIONS(2291), + [anon_sym_true] = ACTIONS(2293), + [anon_sym_false] = ACTIONS(2293), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2293), + [sym_super] = ACTIONS(2293), + [sym_crate] = ACTIONS(2293), + [sym_metavariable] = ACTIONS(2291), + [sym__raw_string_literal_start] = ACTIONS(2291), + [sym_float_literal] = ACTIONS(2291), }, [606] = { [sym_line_comment] = STATE(606), [sym_block_comment] = STATE(606), - [ts_builtin_sym_end] = ACTIONS(2170), - [sym_identifier] = ACTIONS(2172), - [anon_sym_SEMI] = ACTIONS(2170), - [anon_sym_macro_rules_BANG] = ACTIONS(2170), - [anon_sym_LPAREN] = ACTIONS(2170), - [anon_sym_LBRACK] = ACTIONS(2170), - [anon_sym_LBRACE] = ACTIONS(2170), - [anon_sym_RBRACE] = ACTIONS(2170), - [anon_sym_STAR] = ACTIONS(2170), - [anon_sym_u8] = ACTIONS(2172), - [anon_sym_i8] = ACTIONS(2172), - [anon_sym_u16] = ACTIONS(2172), - [anon_sym_i16] = ACTIONS(2172), - [anon_sym_u32] = ACTIONS(2172), - [anon_sym_i32] = ACTIONS(2172), - [anon_sym_u64] = ACTIONS(2172), - [anon_sym_i64] = ACTIONS(2172), - [anon_sym_u128] = ACTIONS(2172), - [anon_sym_i128] = ACTIONS(2172), - [anon_sym_isize] = ACTIONS(2172), - [anon_sym_usize] = ACTIONS(2172), - [anon_sym_f32] = ACTIONS(2172), - [anon_sym_f64] = ACTIONS(2172), - [anon_sym_bool] = ACTIONS(2172), - [anon_sym_str] = ACTIONS(2172), - [anon_sym_char] = ACTIONS(2172), - [anon_sym_DASH] = ACTIONS(2170), - [anon_sym_BANG] = ACTIONS(2170), - [anon_sym_AMP] = ACTIONS(2170), - [anon_sym_PIPE] = ACTIONS(2170), - [anon_sym_LT] = ACTIONS(2170), - [anon_sym_DOT_DOT] = ACTIONS(2170), - [anon_sym_COLON_COLON] = ACTIONS(2170), - [anon_sym_POUND] = ACTIONS(2170), - [anon_sym_SQUOTE] = ACTIONS(2172), - [anon_sym_async] = ACTIONS(2172), - [anon_sym_break] = ACTIONS(2172), - [anon_sym_const] = ACTIONS(2172), - [anon_sym_continue] = ACTIONS(2172), - [anon_sym_default] = ACTIONS(2172), - [anon_sym_enum] = ACTIONS(2172), - [anon_sym_fn] = ACTIONS(2172), - [anon_sym_for] = ACTIONS(2172), - [anon_sym_if] = ACTIONS(2172), - [anon_sym_impl] = ACTIONS(2172), - [anon_sym_let] = ACTIONS(2172), - [anon_sym_loop] = ACTIONS(2172), - [anon_sym_match] = ACTIONS(2172), - [anon_sym_mod] = ACTIONS(2172), - [anon_sym_pub] = ACTIONS(2172), - [anon_sym_return] = ACTIONS(2172), - [anon_sym_static] = ACTIONS(2172), - [anon_sym_struct] = ACTIONS(2172), - [anon_sym_trait] = ACTIONS(2172), - [anon_sym_type] = ACTIONS(2172), - [anon_sym_union] = ACTIONS(2172), - [anon_sym_unsafe] = ACTIONS(2172), - [anon_sym_use] = ACTIONS(2172), - [anon_sym_while] = ACTIONS(2172), - [anon_sym_extern] = ACTIONS(2172), - [anon_sym_yield] = ACTIONS(2172), - [anon_sym_move] = ACTIONS(2172), - [anon_sym_try] = ACTIONS(2172), - [sym_integer_literal] = ACTIONS(2170), - [aux_sym_string_literal_token1] = ACTIONS(2170), - [sym_char_literal] = ACTIONS(2170), - [anon_sym_true] = ACTIONS(2172), - [anon_sym_false] = ACTIONS(2172), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2172), - [sym_super] = ACTIONS(2172), - [sym_crate] = ACTIONS(2172), - [sym_metavariable] = ACTIONS(2170), - [sym__raw_string_literal_start] = ACTIONS(2170), - [sym_float_literal] = ACTIONS(2170), + [ts_builtin_sym_end] = ACTIONS(2295), + [sym_identifier] = ACTIONS(2297), + [anon_sym_SEMI] = ACTIONS(2295), + [anon_sym_macro_rules_BANG] = ACTIONS(2295), + [anon_sym_LPAREN] = ACTIONS(2295), + [anon_sym_LBRACK] = ACTIONS(2295), + [anon_sym_LBRACE] = ACTIONS(2295), + [anon_sym_RBRACE] = ACTIONS(2295), + [anon_sym_macro] = ACTIONS(2297), + [anon_sym_STAR] = ACTIONS(2295), + [anon_sym_u8] = ACTIONS(2297), + [anon_sym_i8] = ACTIONS(2297), + [anon_sym_u16] = ACTIONS(2297), + [anon_sym_i16] = ACTIONS(2297), + [anon_sym_u32] = ACTIONS(2297), + [anon_sym_i32] = ACTIONS(2297), + [anon_sym_u64] = ACTIONS(2297), + [anon_sym_i64] = ACTIONS(2297), + [anon_sym_u128] = ACTIONS(2297), + [anon_sym_i128] = ACTIONS(2297), + [anon_sym_isize] = ACTIONS(2297), + [anon_sym_usize] = ACTIONS(2297), + [anon_sym_f32] = ACTIONS(2297), + [anon_sym_f64] = ACTIONS(2297), + [anon_sym_bool] = ACTIONS(2297), + [anon_sym_str] = ACTIONS(2297), + [anon_sym_char] = ACTIONS(2297), + [anon_sym_DASH] = ACTIONS(2295), + [anon_sym_BANG] = ACTIONS(2295), + [anon_sym_AMP] = ACTIONS(2295), + [anon_sym_PIPE] = ACTIONS(2295), + [anon_sym_LT] = ACTIONS(2295), + [anon_sym_DOT_DOT] = ACTIONS(2295), + [anon_sym_COLON_COLON] = ACTIONS(2295), + [anon_sym_POUND] = ACTIONS(2295), + [anon_sym_SQUOTE] = ACTIONS(2297), + [anon_sym_async] = ACTIONS(2297), + [anon_sym_break] = ACTIONS(2297), + [anon_sym_const] = ACTIONS(2297), + [anon_sym_continue] = ACTIONS(2297), + [anon_sym_default] = ACTIONS(2297), + [anon_sym_enum] = ACTIONS(2297), + [anon_sym_fn] = ACTIONS(2297), + [anon_sym_for] = ACTIONS(2297), + [anon_sym_if] = ACTIONS(2297), + [anon_sym_impl] = ACTIONS(2297), + [anon_sym_let] = ACTIONS(2297), + [anon_sym_loop] = ACTIONS(2297), + [anon_sym_match] = ACTIONS(2297), + [anon_sym_mod] = ACTIONS(2297), + [anon_sym_pub] = ACTIONS(2297), + [anon_sym_return] = ACTIONS(2297), + [anon_sym_static] = ACTIONS(2297), + [anon_sym_struct] = ACTIONS(2297), + [anon_sym_trait] = ACTIONS(2297), + [anon_sym_type] = ACTIONS(2297), + [anon_sym_union] = ACTIONS(2297), + [anon_sym_unsafe] = ACTIONS(2297), + [anon_sym_use] = ACTIONS(2297), + [anon_sym_while] = ACTIONS(2297), + [anon_sym_extern] = ACTIONS(2297), + [anon_sym_yield] = ACTIONS(2297), + [anon_sym_move] = ACTIONS(2297), + [anon_sym_try] = ACTIONS(2297), + [sym_integer_literal] = ACTIONS(2295), + [aux_sym_string_literal_token1] = ACTIONS(2295), + [sym_char_literal] = ACTIONS(2295), + [anon_sym_true] = ACTIONS(2297), + [anon_sym_false] = ACTIONS(2297), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2297), + [sym_super] = ACTIONS(2297), + [sym_crate] = ACTIONS(2297), + [sym_metavariable] = ACTIONS(2295), + [sym__raw_string_literal_start] = ACTIONS(2295), + [sym_float_literal] = ACTIONS(2295), }, [607] = { [sym_line_comment] = STATE(607), [sym_block_comment] = STATE(607), - [ts_builtin_sym_end] = ACTIONS(2174), - [sym_identifier] = ACTIONS(2176), - [anon_sym_SEMI] = ACTIONS(2174), - [anon_sym_macro_rules_BANG] = ACTIONS(2174), - [anon_sym_LPAREN] = ACTIONS(2174), - [anon_sym_LBRACK] = ACTIONS(2174), - [anon_sym_LBRACE] = ACTIONS(2174), - [anon_sym_RBRACE] = ACTIONS(2174), - [anon_sym_STAR] = ACTIONS(2174), - [anon_sym_u8] = ACTIONS(2176), - [anon_sym_i8] = ACTIONS(2176), - [anon_sym_u16] = ACTIONS(2176), - [anon_sym_i16] = ACTIONS(2176), - [anon_sym_u32] = ACTIONS(2176), - [anon_sym_i32] = ACTIONS(2176), - [anon_sym_u64] = ACTIONS(2176), - [anon_sym_i64] = ACTIONS(2176), - [anon_sym_u128] = ACTIONS(2176), - [anon_sym_i128] = ACTIONS(2176), - [anon_sym_isize] = ACTIONS(2176), - [anon_sym_usize] = ACTIONS(2176), - [anon_sym_f32] = ACTIONS(2176), - [anon_sym_f64] = ACTIONS(2176), - [anon_sym_bool] = ACTIONS(2176), - [anon_sym_str] = ACTIONS(2176), - [anon_sym_char] = ACTIONS(2176), - [anon_sym_DASH] = ACTIONS(2174), - [anon_sym_BANG] = ACTIONS(2174), - [anon_sym_AMP] = ACTIONS(2174), - [anon_sym_PIPE] = ACTIONS(2174), - [anon_sym_LT] = ACTIONS(2174), - [anon_sym_DOT_DOT] = ACTIONS(2174), - [anon_sym_COLON_COLON] = ACTIONS(2174), - [anon_sym_POUND] = ACTIONS(2174), - [anon_sym_SQUOTE] = ACTIONS(2176), - [anon_sym_async] = ACTIONS(2176), - [anon_sym_break] = ACTIONS(2176), - [anon_sym_const] = ACTIONS(2176), - [anon_sym_continue] = ACTIONS(2176), - [anon_sym_default] = ACTIONS(2176), - [anon_sym_enum] = ACTIONS(2176), - [anon_sym_fn] = ACTIONS(2176), - [anon_sym_for] = ACTIONS(2176), - [anon_sym_if] = ACTIONS(2176), - [anon_sym_impl] = ACTIONS(2176), - [anon_sym_let] = ACTIONS(2176), - [anon_sym_loop] = ACTIONS(2176), - [anon_sym_match] = ACTIONS(2176), - [anon_sym_mod] = ACTIONS(2176), - [anon_sym_pub] = ACTIONS(2176), - [anon_sym_return] = ACTIONS(2176), - [anon_sym_static] = ACTIONS(2176), - [anon_sym_struct] = ACTIONS(2176), - [anon_sym_trait] = ACTIONS(2176), - [anon_sym_type] = ACTIONS(2176), - [anon_sym_union] = ACTIONS(2176), - [anon_sym_unsafe] = ACTIONS(2176), - [anon_sym_use] = ACTIONS(2176), - [anon_sym_while] = ACTIONS(2176), - [anon_sym_extern] = ACTIONS(2176), - [anon_sym_yield] = ACTIONS(2176), - [anon_sym_move] = ACTIONS(2176), - [anon_sym_try] = ACTIONS(2176), - [sym_integer_literal] = ACTIONS(2174), - [aux_sym_string_literal_token1] = ACTIONS(2174), - [sym_char_literal] = ACTIONS(2174), - [anon_sym_true] = ACTIONS(2176), - [anon_sym_false] = ACTIONS(2176), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2176), - [sym_super] = ACTIONS(2176), - [sym_crate] = ACTIONS(2176), - [sym_metavariable] = ACTIONS(2174), - [sym__raw_string_literal_start] = ACTIONS(2174), - [sym_float_literal] = ACTIONS(2174), + [ts_builtin_sym_end] = ACTIONS(2299), + [sym_identifier] = ACTIONS(2301), + [anon_sym_SEMI] = ACTIONS(2299), + [anon_sym_macro_rules_BANG] = ACTIONS(2299), + [anon_sym_LPAREN] = ACTIONS(2299), + [anon_sym_LBRACK] = ACTIONS(2299), + [anon_sym_LBRACE] = ACTIONS(2299), + [anon_sym_RBRACE] = ACTIONS(2299), + [anon_sym_macro] = ACTIONS(2301), + [anon_sym_STAR] = ACTIONS(2299), + [anon_sym_u8] = ACTIONS(2301), + [anon_sym_i8] = ACTIONS(2301), + [anon_sym_u16] = ACTIONS(2301), + [anon_sym_i16] = ACTIONS(2301), + [anon_sym_u32] = ACTIONS(2301), + [anon_sym_i32] = ACTIONS(2301), + [anon_sym_u64] = ACTIONS(2301), + [anon_sym_i64] = ACTIONS(2301), + [anon_sym_u128] = ACTIONS(2301), + [anon_sym_i128] = ACTIONS(2301), + [anon_sym_isize] = ACTIONS(2301), + [anon_sym_usize] = ACTIONS(2301), + [anon_sym_f32] = ACTIONS(2301), + [anon_sym_f64] = ACTIONS(2301), + [anon_sym_bool] = ACTIONS(2301), + [anon_sym_str] = ACTIONS(2301), + [anon_sym_char] = ACTIONS(2301), + [anon_sym_DASH] = ACTIONS(2299), + [anon_sym_BANG] = ACTIONS(2299), + [anon_sym_AMP] = ACTIONS(2299), + [anon_sym_PIPE] = ACTIONS(2299), + [anon_sym_LT] = ACTIONS(2299), + [anon_sym_DOT_DOT] = ACTIONS(2299), + [anon_sym_COLON_COLON] = ACTIONS(2299), + [anon_sym_POUND] = ACTIONS(2299), + [anon_sym_SQUOTE] = ACTIONS(2301), + [anon_sym_async] = ACTIONS(2301), + [anon_sym_break] = ACTIONS(2301), + [anon_sym_const] = ACTIONS(2301), + [anon_sym_continue] = ACTIONS(2301), + [anon_sym_default] = ACTIONS(2301), + [anon_sym_enum] = ACTIONS(2301), + [anon_sym_fn] = ACTIONS(2301), + [anon_sym_for] = ACTIONS(2301), + [anon_sym_if] = ACTIONS(2301), + [anon_sym_impl] = ACTIONS(2301), + [anon_sym_let] = ACTIONS(2301), + [anon_sym_loop] = ACTIONS(2301), + [anon_sym_match] = ACTIONS(2301), + [anon_sym_mod] = ACTIONS(2301), + [anon_sym_pub] = ACTIONS(2301), + [anon_sym_return] = ACTIONS(2301), + [anon_sym_static] = ACTIONS(2301), + [anon_sym_struct] = ACTIONS(2301), + [anon_sym_trait] = ACTIONS(2301), + [anon_sym_type] = ACTIONS(2301), + [anon_sym_union] = ACTIONS(2301), + [anon_sym_unsafe] = ACTIONS(2301), + [anon_sym_use] = ACTIONS(2301), + [anon_sym_while] = ACTIONS(2301), + [anon_sym_extern] = ACTIONS(2301), + [anon_sym_yield] = ACTIONS(2301), + [anon_sym_move] = ACTIONS(2301), + [anon_sym_try] = ACTIONS(2301), + [sym_integer_literal] = ACTIONS(2299), + [aux_sym_string_literal_token1] = ACTIONS(2299), + [sym_char_literal] = ACTIONS(2299), + [anon_sym_true] = ACTIONS(2301), + [anon_sym_false] = ACTIONS(2301), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2301), + [sym_super] = ACTIONS(2301), + [sym_crate] = ACTIONS(2301), + [sym_metavariable] = ACTIONS(2299), + [sym__raw_string_literal_start] = ACTIONS(2299), + [sym_float_literal] = ACTIONS(2299), }, [608] = { [sym_line_comment] = STATE(608), [sym_block_comment] = STATE(608), - [ts_builtin_sym_end] = ACTIONS(2178), - [sym_identifier] = ACTIONS(2180), - [anon_sym_SEMI] = ACTIONS(2178), - [anon_sym_macro_rules_BANG] = ACTIONS(2178), - [anon_sym_LPAREN] = ACTIONS(2178), - [anon_sym_LBRACK] = ACTIONS(2178), - [anon_sym_LBRACE] = ACTIONS(2178), - [anon_sym_RBRACE] = ACTIONS(2178), - [anon_sym_STAR] = ACTIONS(2178), - [anon_sym_u8] = ACTIONS(2180), - [anon_sym_i8] = ACTIONS(2180), - [anon_sym_u16] = ACTIONS(2180), - [anon_sym_i16] = ACTIONS(2180), - [anon_sym_u32] = ACTIONS(2180), - [anon_sym_i32] = ACTIONS(2180), - [anon_sym_u64] = ACTIONS(2180), - [anon_sym_i64] = ACTIONS(2180), - [anon_sym_u128] = ACTIONS(2180), - [anon_sym_i128] = ACTIONS(2180), - [anon_sym_isize] = ACTIONS(2180), - [anon_sym_usize] = ACTIONS(2180), - [anon_sym_f32] = ACTIONS(2180), - [anon_sym_f64] = ACTIONS(2180), - [anon_sym_bool] = ACTIONS(2180), - [anon_sym_str] = ACTIONS(2180), - [anon_sym_char] = ACTIONS(2180), - [anon_sym_DASH] = ACTIONS(2178), - [anon_sym_BANG] = ACTIONS(2178), - [anon_sym_AMP] = ACTIONS(2178), - [anon_sym_PIPE] = ACTIONS(2178), - [anon_sym_LT] = ACTIONS(2178), - [anon_sym_DOT_DOT] = ACTIONS(2178), - [anon_sym_COLON_COLON] = ACTIONS(2178), - [anon_sym_POUND] = ACTIONS(2178), - [anon_sym_SQUOTE] = ACTIONS(2180), - [anon_sym_async] = ACTIONS(2180), - [anon_sym_break] = ACTIONS(2180), - [anon_sym_const] = ACTIONS(2180), - [anon_sym_continue] = ACTIONS(2180), - [anon_sym_default] = ACTIONS(2180), - [anon_sym_enum] = ACTIONS(2180), - [anon_sym_fn] = ACTIONS(2180), - [anon_sym_for] = ACTIONS(2180), - [anon_sym_if] = ACTIONS(2180), - [anon_sym_impl] = ACTIONS(2180), - [anon_sym_let] = ACTIONS(2180), - [anon_sym_loop] = ACTIONS(2180), - [anon_sym_match] = ACTIONS(2180), - [anon_sym_mod] = ACTIONS(2180), - [anon_sym_pub] = ACTIONS(2180), - [anon_sym_return] = ACTIONS(2180), - [anon_sym_static] = ACTIONS(2180), - [anon_sym_struct] = ACTIONS(2180), - [anon_sym_trait] = ACTIONS(2180), - [anon_sym_type] = ACTIONS(2180), - [anon_sym_union] = ACTIONS(2180), - [anon_sym_unsafe] = ACTIONS(2180), - [anon_sym_use] = ACTIONS(2180), - [anon_sym_while] = ACTIONS(2180), - [anon_sym_extern] = ACTIONS(2180), - [anon_sym_yield] = ACTIONS(2180), - [anon_sym_move] = ACTIONS(2180), - [anon_sym_try] = ACTIONS(2180), - [sym_integer_literal] = ACTIONS(2178), - [aux_sym_string_literal_token1] = ACTIONS(2178), - [sym_char_literal] = ACTIONS(2178), - [anon_sym_true] = ACTIONS(2180), - [anon_sym_false] = ACTIONS(2180), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2180), - [sym_super] = ACTIONS(2180), - [sym_crate] = ACTIONS(2180), - [sym_metavariable] = ACTIONS(2178), - [sym__raw_string_literal_start] = ACTIONS(2178), - [sym_float_literal] = ACTIONS(2178), + [ts_builtin_sym_end] = ACTIONS(2303), + [sym_identifier] = ACTIONS(2305), + [anon_sym_SEMI] = ACTIONS(2303), + [anon_sym_macro_rules_BANG] = ACTIONS(2303), + [anon_sym_LPAREN] = ACTIONS(2303), + [anon_sym_LBRACK] = ACTIONS(2303), + [anon_sym_LBRACE] = ACTIONS(2303), + [anon_sym_RBRACE] = ACTIONS(2303), + [anon_sym_macro] = ACTIONS(2305), + [anon_sym_STAR] = ACTIONS(2303), + [anon_sym_u8] = ACTIONS(2305), + [anon_sym_i8] = ACTIONS(2305), + [anon_sym_u16] = ACTIONS(2305), + [anon_sym_i16] = ACTIONS(2305), + [anon_sym_u32] = ACTIONS(2305), + [anon_sym_i32] = ACTIONS(2305), + [anon_sym_u64] = ACTIONS(2305), + [anon_sym_i64] = ACTIONS(2305), + [anon_sym_u128] = ACTIONS(2305), + [anon_sym_i128] = ACTIONS(2305), + [anon_sym_isize] = ACTIONS(2305), + [anon_sym_usize] = ACTIONS(2305), + [anon_sym_f32] = ACTIONS(2305), + [anon_sym_f64] = ACTIONS(2305), + [anon_sym_bool] = ACTIONS(2305), + [anon_sym_str] = ACTIONS(2305), + [anon_sym_char] = ACTIONS(2305), + [anon_sym_DASH] = ACTIONS(2303), + [anon_sym_BANG] = ACTIONS(2303), + [anon_sym_AMP] = ACTIONS(2303), + [anon_sym_PIPE] = ACTIONS(2303), + [anon_sym_LT] = ACTIONS(2303), + [anon_sym_DOT_DOT] = ACTIONS(2303), + [anon_sym_COLON_COLON] = ACTIONS(2303), + [anon_sym_POUND] = ACTIONS(2303), + [anon_sym_SQUOTE] = ACTIONS(2305), + [anon_sym_async] = ACTIONS(2305), + [anon_sym_break] = ACTIONS(2305), + [anon_sym_const] = ACTIONS(2305), + [anon_sym_continue] = ACTIONS(2305), + [anon_sym_default] = ACTIONS(2305), + [anon_sym_enum] = ACTIONS(2305), + [anon_sym_fn] = ACTIONS(2305), + [anon_sym_for] = ACTIONS(2305), + [anon_sym_if] = ACTIONS(2305), + [anon_sym_impl] = ACTIONS(2305), + [anon_sym_let] = ACTIONS(2305), + [anon_sym_loop] = ACTIONS(2305), + [anon_sym_match] = ACTIONS(2305), + [anon_sym_mod] = ACTIONS(2305), + [anon_sym_pub] = ACTIONS(2305), + [anon_sym_return] = ACTIONS(2305), + [anon_sym_static] = ACTIONS(2305), + [anon_sym_struct] = ACTIONS(2305), + [anon_sym_trait] = ACTIONS(2305), + [anon_sym_type] = ACTIONS(2305), + [anon_sym_union] = ACTIONS(2305), + [anon_sym_unsafe] = ACTIONS(2305), + [anon_sym_use] = ACTIONS(2305), + [anon_sym_while] = ACTIONS(2305), + [anon_sym_extern] = ACTIONS(2305), + [anon_sym_yield] = ACTIONS(2305), + [anon_sym_move] = ACTIONS(2305), + [anon_sym_try] = ACTIONS(2305), + [sym_integer_literal] = ACTIONS(2303), + [aux_sym_string_literal_token1] = ACTIONS(2303), + [sym_char_literal] = ACTIONS(2303), + [anon_sym_true] = ACTIONS(2305), + [anon_sym_false] = ACTIONS(2305), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2305), + [sym_super] = ACTIONS(2305), + [sym_crate] = ACTIONS(2305), + [sym_metavariable] = ACTIONS(2303), + [sym__raw_string_literal_start] = ACTIONS(2303), + [sym_float_literal] = ACTIONS(2303), }, [609] = { [sym_line_comment] = STATE(609), [sym_block_comment] = STATE(609), - [ts_builtin_sym_end] = ACTIONS(2182), - [sym_identifier] = ACTIONS(2184), - [anon_sym_SEMI] = ACTIONS(2182), - [anon_sym_macro_rules_BANG] = ACTIONS(2182), - [anon_sym_LPAREN] = ACTIONS(2182), - [anon_sym_LBRACK] = ACTIONS(2182), - [anon_sym_LBRACE] = ACTIONS(2182), - [anon_sym_RBRACE] = ACTIONS(2182), - [anon_sym_STAR] = ACTIONS(2182), - [anon_sym_u8] = ACTIONS(2184), - [anon_sym_i8] = ACTIONS(2184), - [anon_sym_u16] = ACTIONS(2184), - [anon_sym_i16] = ACTIONS(2184), - [anon_sym_u32] = ACTIONS(2184), - [anon_sym_i32] = ACTIONS(2184), - [anon_sym_u64] = ACTIONS(2184), - [anon_sym_i64] = ACTIONS(2184), - [anon_sym_u128] = ACTIONS(2184), - [anon_sym_i128] = ACTIONS(2184), - [anon_sym_isize] = ACTIONS(2184), - [anon_sym_usize] = ACTIONS(2184), - [anon_sym_f32] = ACTIONS(2184), - [anon_sym_f64] = ACTIONS(2184), - [anon_sym_bool] = ACTIONS(2184), - [anon_sym_str] = ACTIONS(2184), - [anon_sym_char] = ACTIONS(2184), - [anon_sym_DASH] = ACTIONS(2182), - [anon_sym_BANG] = ACTIONS(2182), - [anon_sym_AMP] = ACTIONS(2182), - [anon_sym_PIPE] = ACTIONS(2182), - [anon_sym_LT] = ACTIONS(2182), - [anon_sym_DOT_DOT] = ACTIONS(2182), - [anon_sym_COLON_COLON] = ACTIONS(2182), - [anon_sym_POUND] = ACTIONS(2182), - [anon_sym_SQUOTE] = ACTIONS(2184), - [anon_sym_async] = ACTIONS(2184), - [anon_sym_break] = ACTIONS(2184), - [anon_sym_const] = ACTIONS(2184), - [anon_sym_continue] = ACTIONS(2184), - [anon_sym_default] = ACTIONS(2184), - [anon_sym_enum] = ACTIONS(2184), - [anon_sym_fn] = ACTIONS(2184), - [anon_sym_for] = ACTIONS(2184), - [anon_sym_if] = ACTIONS(2184), - [anon_sym_impl] = ACTIONS(2184), - [anon_sym_let] = ACTIONS(2184), - [anon_sym_loop] = ACTIONS(2184), - [anon_sym_match] = ACTIONS(2184), - [anon_sym_mod] = ACTIONS(2184), - [anon_sym_pub] = ACTIONS(2184), - [anon_sym_return] = ACTIONS(2184), - [anon_sym_static] = ACTIONS(2184), - [anon_sym_struct] = ACTIONS(2184), - [anon_sym_trait] = ACTIONS(2184), - [anon_sym_type] = ACTIONS(2184), - [anon_sym_union] = ACTIONS(2184), - [anon_sym_unsafe] = ACTIONS(2184), - [anon_sym_use] = ACTIONS(2184), - [anon_sym_while] = ACTIONS(2184), - [anon_sym_extern] = ACTIONS(2184), - [anon_sym_yield] = ACTIONS(2184), - [anon_sym_move] = ACTIONS(2184), - [anon_sym_try] = ACTIONS(2184), - [sym_integer_literal] = ACTIONS(2182), - [aux_sym_string_literal_token1] = ACTIONS(2182), - [sym_char_literal] = ACTIONS(2182), - [anon_sym_true] = ACTIONS(2184), - [anon_sym_false] = ACTIONS(2184), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2184), - [sym_super] = ACTIONS(2184), - [sym_crate] = ACTIONS(2184), - [sym_metavariable] = ACTIONS(2182), - [sym__raw_string_literal_start] = ACTIONS(2182), - [sym_float_literal] = ACTIONS(2182), + [ts_builtin_sym_end] = ACTIONS(2307), + [sym_identifier] = ACTIONS(2309), + [anon_sym_SEMI] = ACTIONS(2307), + [anon_sym_macro_rules_BANG] = ACTIONS(2307), + [anon_sym_LPAREN] = ACTIONS(2307), + [anon_sym_LBRACK] = ACTIONS(2307), + [anon_sym_LBRACE] = ACTIONS(2307), + [anon_sym_RBRACE] = ACTIONS(2307), + [anon_sym_macro] = ACTIONS(2309), + [anon_sym_STAR] = ACTIONS(2307), + [anon_sym_u8] = ACTIONS(2309), + [anon_sym_i8] = ACTIONS(2309), + [anon_sym_u16] = ACTIONS(2309), + [anon_sym_i16] = ACTIONS(2309), + [anon_sym_u32] = ACTIONS(2309), + [anon_sym_i32] = ACTIONS(2309), + [anon_sym_u64] = ACTIONS(2309), + [anon_sym_i64] = ACTIONS(2309), + [anon_sym_u128] = ACTIONS(2309), + [anon_sym_i128] = ACTIONS(2309), + [anon_sym_isize] = ACTIONS(2309), + [anon_sym_usize] = ACTIONS(2309), + [anon_sym_f32] = ACTIONS(2309), + [anon_sym_f64] = ACTIONS(2309), + [anon_sym_bool] = ACTIONS(2309), + [anon_sym_str] = ACTIONS(2309), + [anon_sym_char] = ACTIONS(2309), + [anon_sym_DASH] = ACTIONS(2307), + [anon_sym_BANG] = ACTIONS(2307), + [anon_sym_AMP] = ACTIONS(2307), + [anon_sym_PIPE] = ACTIONS(2307), + [anon_sym_LT] = ACTIONS(2307), + [anon_sym_DOT_DOT] = ACTIONS(2307), + [anon_sym_COLON_COLON] = ACTIONS(2307), + [anon_sym_POUND] = ACTIONS(2307), + [anon_sym_SQUOTE] = ACTIONS(2309), + [anon_sym_async] = ACTIONS(2309), + [anon_sym_break] = ACTIONS(2309), + [anon_sym_const] = ACTIONS(2309), + [anon_sym_continue] = ACTIONS(2309), + [anon_sym_default] = ACTIONS(2309), + [anon_sym_enum] = ACTIONS(2309), + [anon_sym_fn] = ACTIONS(2309), + [anon_sym_for] = ACTIONS(2309), + [anon_sym_if] = ACTIONS(2309), + [anon_sym_impl] = ACTIONS(2309), + [anon_sym_let] = ACTIONS(2309), + [anon_sym_loop] = ACTIONS(2309), + [anon_sym_match] = ACTIONS(2309), + [anon_sym_mod] = ACTIONS(2309), + [anon_sym_pub] = ACTIONS(2309), + [anon_sym_return] = ACTIONS(2309), + [anon_sym_static] = ACTIONS(2309), + [anon_sym_struct] = ACTIONS(2309), + [anon_sym_trait] = ACTIONS(2309), + [anon_sym_type] = ACTIONS(2309), + [anon_sym_union] = ACTIONS(2309), + [anon_sym_unsafe] = ACTIONS(2309), + [anon_sym_use] = ACTIONS(2309), + [anon_sym_while] = ACTIONS(2309), + [anon_sym_extern] = ACTIONS(2309), + [anon_sym_yield] = ACTIONS(2309), + [anon_sym_move] = ACTIONS(2309), + [anon_sym_try] = ACTIONS(2309), + [sym_integer_literal] = ACTIONS(2307), + [aux_sym_string_literal_token1] = ACTIONS(2307), + [sym_char_literal] = ACTIONS(2307), + [anon_sym_true] = ACTIONS(2309), + [anon_sym_false] = ACTIONS(2309), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2309), + [sym_super] = ACTIONS(2309), + [sym_crate] = ACTIONS(2309), + [sym_metavariable] = ACTIONS(2307), + [sym__raw_string_literal_start] = ACTIONS(2307), + [sym_float_literal] = ACTIONS(2307), }, [610] = { [sym_line_comment] = STATE(610), [sym_block_comment] = STATE(610), - [ts_builtin_sym_end] = ACTIONS(2186), - [sym_identifier] = ACTIONS(2188), - [anon_sym_SEMI] = ACTIONS(2186), - [anon_sym_macro_rules_BANG] = ACTIONS(2186), - [anon_sym_LPAREN] = ACTIONS(2186), - [anon_sym_LBRACK] = ACTIONS(2186), - [anon_sym_LBRACE] = ACTIONS(2186), - [anon_sym_RBRACE] = ACTIONS(2186), - [anon_sym_STAR] = ACTIONS(2186), - [anon_sym_u8] = ACTIONS(2188), - [anon_sym_i8] = ACTIONS(2188), - [anon_sym_u16] = ACTIONS(2188), - [anon_sym_i16] = ACTIONS(2188), - [anon_sym_u32] = ACTIONS(2188), - [anon_sym_i32] = ACTIONS(2188), - [anon_sym_u64] = ACTIONS(2188), - [anon_sym_i64] = ACTIONS(2188), - [anon_sym_u128] = ACTIONS(2188), - [anon_sym_i128] = ACTIONS(2188), - [anon_sym_isize] = ACTIONS(2188), - [anon_sym_usize] = ACTIONS(2188), - [anon_sym_f32] = ACTIONS(2188), - [anon_sym_f64] = ACTIONS(2188), - [anon_sym_bool] = ACTIONS(2188), - [anon_sym_str] = ACTIONS(2188), - [anon_sym_char] = ACTIONS(2188), - [anon_sym_DASH] = ACTIONS(2186), - [anon_sym_BANG] = ACTIONS(2186), - [anon_sym_AMP] = ACTIONS(2186), - [anon_sym_PIPE] = ACTIONS(2186), - [anon_sym_LT] = ACTIONS(2186), - [anon_sym_DOT_DOT] = ACTIONS(2186), - [anon_sym_COLON_COLON] = ACTIONS(2186), - [anon_sym_POUND] = ACTIONS(2186), - [anon_sym_SQUOTE] = ACTIONS(2188), - [anon_sym_async] = ACTIONS(2188), - [anon_sym_break] = ACTIONS(2188), - [anon_sym_const] = ACTIONS(2188), - [anon_sym_continue] = ACTIONS(2188), - [anon_sym_default] = ACTIONS(2188), - [anon_sym_enum] = ACTIONS(2188), - [anon_sym_fn] = ACTIONS(2188), - [anon_sym_for] = ACTIONS(2188), - [anon_sym_if] = ACTIONS(2188), - [anon_sym_impl] = ACTIONS(2188), - [anon_sym_let] = ACTIONS(2188), - [anon_sym_loop] = ACTIONS(2188), - [anon_sym_match] = ACTIONS(2188), - [anon_sym_mod] = ACTIONS(2188), - [anon_sym_pub] = ACTIONS(2188), - [anon_sym_return] = ACTIONS(2188), - [anon_sym_static] = ACTIONS(2188), - [anon_sym_struct] = ACTIONS(2188), - [anon_sym_trait] = ACTIONS(2188), - [anon_sym_type] = ACTIONS(2188), - [anon_sym_union] = ACTIONS(2188), - [anon_sym_unsafe] = ACTIONS(2188), - [anon_sym_use] = ACTIONS(2188), - [anon_sym_while] = ACTIONS(2188), - [anon_sym_extern] = ACTIONS(2188), - [anon_sym_yield] = ACTIONS(2188), - [anon_sym_move] = ACTIONS(2188), - [anon_sym_try] = ACTIONS(2188), - [sym_integer_literal] = ACTIONS(2186), - [aux_sym_string_literal_token1] = ACTIONS(2186), - [sym_char_literal] = ACTIONS(2186), - [anon_sym_true] = ACTIONS(2188), - [anon_sym_false] = ACTIONS(2188), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2188), - [sym_super] = ACTIONS(2188), - [sym_crate] = ACTIONS(2188), - [sym_metavariable] = ACTIONS(2186), - [sym__raw_string_literal_start] = ACTIONS(2186), - [sym_float_literal] = ACTIONS(2186), + [ts_builtin_sym_end] = ACTIONS(2311), + [sym_identifier] = ACTIONS(2313), + [anon_sym_SEMI] = ACTIONS(2311), + [anon_sym_macro_rules_BANG] = ACTIONS(2311), + [anon_sym_LPAREN] = ACTIONS(2311), + [anon_sym_LBRACK] = ACTIONS(2311), + [anon_sym_LBRACE] = ACTIONS(2311), + [anon_sym_RBRACE] = ACTIONS(2311), + [anon_sym_macro] = ACTIONS(2313), + [anon_sym_STAR] = ACTIONS(2311), + [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), + [anon_sym_DASH] = ACTIONS(2311), + [anon_sym_BANG] = ACTIONS(2311), + [anon_sym_AMP] = ACTIONS(2311), + [anon_sym_PIPE] = ACTIONS(2311), + [anon_sym_LT] = ACTIONS(2311), + [anon_sym_DOT_DOT] = ACTIONS(2311), + [anon_sym_COLON_COLON] = ACTIONS(2311), + [anon_sym_POUND] = ACTIONS(2311), + [anon_sym_SQUOTE] = ACTIONS(2313), + [anon_sym_async] = 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_while] = ACTIONS(2313), + [anon_sym_extern] = ACTIONS(2313), + [anon_sym_yield] = ACTIONS(2313), + [anon_sym_move] = ACTIONS(2313), + [anon_sym_try] = ACTIONS(2313), + [sym_integer_literal] = ACTIONS(2311), + [aux_sym_string_literal_token1] = ACTIONS(2311), + [sym_char_literal] = ACTIONS(2311), + [anon_sym_true] = ACTIONS(2313), + [anon_sym_false] = ACTIONS(2313), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2313), + [sym_super] = ACTIONS(2313), + [sym_crate] = ACTIONS(2313), + [sym_metavariable] = ACTIONS(2311), + [sym__raw_string_literal_start] = ACTIONS(2311), + [sym_float_literal] = ACTIONS(2311), }, [611] = { [sym_line_comment] = STATE(611), [sym_block_comment] = STATE(611), - [ts_builtin_sym_end] = ACTIONS(2190), - [sym_identifier] = ACTIONS(2192), - [anon_sym_SEMI] = ACTIONS(2190), - [anon_sym_macro_rules_BANG] = ACTIONS(2190), - [anon_sym_LPAREN] = ACTIONS(2190), - [anon_sym_LBRACK] = ACTIONS(2190), - [anon_sym_LBRACE] = ACTIONS(2190), - [anon_sym_RBRACE] = ACTIONS(2190), - [anon_sym_STAR] = ACTIONS(2190), - [anon_sym_u8] = ACTIONS(2192), - [anon_sym_i8] = ACTIONS(2192), - [anon_sym_u16] = ACTIONS(2192), - [anon_sym_i16] = ACTIONS(2192), - [anon_sym_u32] = ACTIONS(2192), - [anon_sym_i32] = ACTIONS(2192), - [anon_sym_u64] = ACTIONS(2192), - [anon_sym_i64] = ACTIONS(2192), - [anon_sym_u128] = ACTIONS(2192), - [anon_sym_i128] = ACTIONS(2192), - [anon_sym_isize] = ACTIONS(2192), - [anon_sym_usize] = ACTIONS(2192), - [anon_sym_f32] = ACTIONS(2192), - [anon_sym_f64] = ACTIONS(2192), - [anon_sym_bool] = ACTIONS(2192), - [anon_sym_str] = ACTIONS(2192), - [anon_sym_char] = ACTIONS(2192), - [anon_sym_DASH] = ACTIONS(2190), - [anon_sym_BANG] = ACTIONS(2190), - [anon_sym_AMP] = ACTIONS(2190), - [anon_sym_PIPE] = ACTIONS(2190), - [anon_sym_LT] = ACTIONS(2190), - [anon_sym_DOT_DOT] = ACTIONS(2190), - [anon_sym_COLON_COLON] = ACTIONS(2190), - [anon_sym_POUND] = ACTIONS(2190), - [anon_sym_SQUOTE] = ACTIONS(2192), - [anon_sym_async] = ACTIONS(2192), - [anon_sym_break] = ACTIONS(2192), - [anon_sym_const] = ACTIONS(2192), - [anon_sym_continue] = ACTIONS(2192), - [anon_sym_default] = ACTIONS(2192), - [anon_sym_enum] = ACTIONS(2192), - [anon_sym_fn] = ACTIONS(2192), - [anon_sym_for] = ACTIONS(2192), - [anon_sym_if] = ACTIONS(2192), - [anon_sym_impl] = ACTIONS(2192), - [anon_sym_let] = ACTIONS(2192), - [anon_sym_loop] = ACTIONS(2192), - [anon_sym_match] = ACTIONS(2192), - [anon_sym_mod] = ACTIONS(2192), - [anon_sym_pub] = ACTIONS(2192), - [anon_sym_return] = ACTIONS(2192), - [anon_sym_static] = ACTIONS(2192), - [anon_sym_struct] = ACTIONS(2192), - [anon_sym_trait] = ACTIONS(2192), - [anon_sym_type] = ACTIONS(2192), - [anon_sym_union] = ACTIONS(2192), - [anon_sym_unsafe] = ACTIONS(2192), - [anon_sym_use] = ACTIONS(2192), - [anon_sym_while] = ACTIONS(2192), - [anon_sym_extern] = ACTIONS(2192), - [anon_sym_yield] = ACTIONS(2192), - [anon_sym_move] = ACTIONS(2192), - [anon_sym_try] = ACTIONS(2192), - [sym_integer_literal] = ACTIONS(2190), - [aux_sym_string_literal_token1] = ACTIONS(2190), - [sym_char_literal] = ACTIONS(2190), - [anon_sym_true] = ACTIONS(2192), - [anon_sym_false] = ACTIONS(2192), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2192), - [sym_super] = ACTIONS(2192), - [sym_crate] = ACTIONS(2192), - [sym_metavariable] = ACTIONS(2190), - [sym__raw_string_literal_start] = ACTIONS(2190), - [sym_float_literal] = ACTIONS(2190), + [ts_builtin_sym_end] = ACTIONS(2315), + [sym_identifier] = ACTIONS(2317), + [anon_sym_SEMI] = ACTIONS(2315), + [anon_sym_macro_rules_BANG] = ACTIONS(2315), + [anon_sym_LPAREN] = ACTIONS(2315), + [anon_sym_LBRACK] = ACTIONS(2315), + [anon_sym_LBRACE] = ACTIONS(2315), + [anon_sym_RBRACE] = ACTIONS(2315), + [anon_sym_macro] = ACTIONS(2317), + [anon_sym_STAR] = ACTIONS(2315), + [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), + [anon_sym_DASH] = ACTIONS(2315), + [anon_sym_BANG] = ACTIONS(2315), + [anon_sym_AMP] = ACTIONS(2315), + [anon_sym_PIPE] = ACTIONS(2315), + [anon_sym_LT] = ACTIONS(2315), + [anon_sym_DOT_DOT] = ACTIONS(2315), + [anon_sym_COLON_COLON] = ACTIONS(2315), + [anon_sym_POUND] = ACTIONS(2315), + [anon_sym_SQUOTE] = ACTIONS(2317), + [anon_sym_async] = 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_while] = ACTIONS(2317), + [anon_sym_extern] = ACTIONS(2317), + [anon_sym_yield] = ACTIONS(2317), + [anon_sym_move] = ACTIONS(2317), + [anon_sym_try] = ACTIONS(2317), + [sym_integer_literal] = ACTIONS(2315), + [aux_sym_string_literal_token1] = ACTIONS(2315), + [sym_char_literal] = ACTIONS(2315), + [anon_sym_true] = ACTIONS(2317), + [anon_sym_false] = ACTIONS(2317), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2317), + [sym_super] = ACTIONS(2317), + [sym_crate] = ACTIONS(2317), + [sym_metavariable] = ACTIONS(2315), + [sym__raw_string_literal_start] = ACTIONS(2315), + [sym_float_literal] = ACTIONS(2315), }, [612] = { [sym_line_comment] = STATE(612), [sym_block_comment] = STATE(612), - [ts_builtin_sym_end] = ACTIONS(2194), - [sym_identifier] = ACTIONS(2196), - [anon_sym_SEMI] = ACTIONS(2194), - [anon_sym_macro_rules_BANG] = ACTIONS(2194), - [anon_sym_LPAREN] = ACTIONS(2194), - [anon_sym_LBRACK] = ACTIONS(2194), - [anon_sym_LBRACE] = ACTIONS(2194), - [anon_sym_RBRACE] = ACTIONS(2194), - [anon_sym_STAR] = ACTIONS(2194), - [anon_sym_u8] = ACTIONS(2196), - [anon_sym_i8] = ACTIONS(2196), - [anon_sym_u16] = ACTIONS(2196), - [anon_sym_i16] = ACTIONS(2196), - [anon_sym_u32] = ACTIONS(2196), - [anon_sym_i32] = ACTIONS(2196), - [anon_sym_u64] = ACTIONS(2196), - [anon_sym_i64] = ACTIONS(2196), - [anon_sym_u128] = ACTIONS(2196), - [anon_sym_i128] = ACTIONS(2196), - [anon_sym_isize] = ACTIONS(2196), - [anon_sym_usize] = ACTIONS(2196), - [anon_sym_f32] = ACTIONS(2196), - [anon_sym_f64] = ACTIONS(2196), - [anon_sym_bool] = ACTIONS(2196), - [anon_sym_str] = ACTIONS(2196), - [anon_sym_char] = ACTIONS(2196), - [anon_sym_DASH] = ACTIONS(2194), - [anon_sym_BANG] = ACTIONS(2194), - [anon_sym_AMP] = ACTIONS(2194), - [anon_sym_PIPE] = ACTIONS(2194), - [anon_sym_LT] = ACTIONS(2194), - [anon_sym_DOT_DOT] = ACTIONS(2194), - [anon_sym_COLON_COLON] = ACTIONS(2194), - [anon_sym_POUND] = ACTIONS(2194), - [anon_sym_SQUOTE] = ACTIONS(2196), - [anon_sym_async] = ACTIONS(2196), - [anon_sym_break] = ACTIONS(2196), - [anon_sym_const] = ACTIONS(2196), - [anon_sym_continue] = ACTIONS(2196), - [anon_sym_default] = ACTIONS(2196), - [anon_sym_enum] = ACTIONS(2196), - [anon_sym_fn] = ACTIONS(2196), - [anon_sym_for] = ACTIONS(2196), - [anon_sym_if] = ACTIONS(2196), - [anon_sym_impl] = ACTIONS(2196), - [anon_sym_let] = ACTIONS(2196), - [anon_sym_loop] = ACTIONS(2196), - [anon_sym_match] = ACTIONS(2196), - [anon_sym_mod] = ACTIONS(2196), - [anon_sym_pub] = ACTIONS(2196), - [anon_sym_return] = ACTIONS(2196), - [anon_sym_static] = ACTIONS(2196), - [anon_sym_struct] = ACTIONS(2196), - [anon_sym_trait] = ACTIONS(2196), - [anon_sym_type] = ACTIONS(2196), - [anon_sym_union] = ACTIONS(2196), - [anon_sym_unsafe] = ACTIONS(2196), - [anon_sym_use] = ACTIONS(2196), - [anon_sym_while] = ACTIONS(2196), - [anon_sym_extern] = ACTIONS(2196), - [anon_sym_yield] = ACTIONS(2196), - [anon_sym_move] = ACTIONS(2196), - [anon_sym_try] = ACTIONS(2196), - [sym_integer_literal] = ACTIONS(2194), - [aux_sym_string_literal_token1] = ACTIONS(2194), - [sym_char_literal] = ACTIONS(2194), - [anon_sym_true] = ACTIONS(2196), - [anon_sym_false] = ACTIONS(2196), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2196), - [sym_super] = ACTIONS(2196), - [sym_crate] = ACTIONS(2196), - [sym_metavariable] = ACTIONS(2194), - [sym__raw_string_literal_start] = ACTIONS(2194), - [sym_float_literal] = ACTIONS(2194), + [ts_builtin_sym_end] = ACTIONS(2319), + [sym_identifier] = ACTIONS(2321), + [anon_sym_SEMI] = ACTIONS(2319), + [anon_sym_macro_rules_BANG] = ACTIONS(2319), + [anon_sym_LPAREN] = ACTIONS(2319), + [anon_sym_LBRACK] = ACTIONS(2319), + [anon_sym_LBRACE] = ACTIONS(2319), + [anon_sym_RBRACE] = ACTIONS(2319), + [anon_sym_macro] = ACTIONS(2321), + [anon_sym_STAR] = ACTIONS(2319), + [anon_sym_u8] = ACTIONS(2321), + [anon_sym_i8] = ACTIONS(2321), + [anon_sym_u16] = ACTIONS(2321), + [anon_sym_i16] = ACTIONS(2321), + [anon_sym_u32] = ACTIONS(2321), + [anon_sym_i32] = ACTIONS(2321), + [anon_sym_u64] = ACTIONS(2321), + [anon_sym_i64] = ACTIONS(2321), + [anon_sym_u128] = ACTIONS(2321), + [anon_sym_i128] = ACTIONS(2321), + [anon_sym_isize] = ACTIONS(2321), + [anon_sym_usize] = ACTIONS(2321), + [anon_sym_f32] = ACTIONS(2321), + [anon_sym_f64] = ACTIONS(2321), + [anon_sym_bool] = ACTIONS(2321), + [anon_sym_str] = ACTIONS(2321), + [anon_sym_char] = ACTIONS(2321), + [anon_sym_DASH] = ACTIONS(2319), + [anon_sym_BANG] = ACTIONS(2319), + [anon_sym_AMP] = ACTIONS(2319), + [anon_sym_PIPE] = ACTIONS(2319), + [anon_sym_LT] = ACTIONS(2319), + [anon_sym_DOT_DOT] = ACTIONS(2319), + [anon_sym_COLON_COLON] = ACTIONS(2319), + [anon_sym_POUND] = ACTIONS(2319), + [anon_sym_SQUOTE] = ACTIONS(2321), + [anon_sym_async] = ACTIONS(2321), + [anon_sym_break] = ACTIONS(2321), + [anon_sym_const] = ACTIONS(2321), + [anon_sym_continue] = ACTIONS(2321), + [anon_sym_default] = ACTIONS(2321), + [anon_sym_enum] = ACTIONS(2321), + [anon_sym_fn] = ACTIONS(2321), + [anon_sym_for] = ACTIONS(2321), + [anon_sym_if] = ACTIONS(2321), + [anon_sym_impl] = ACTIONS(2321), + [anon_sym_let] = ACTIONS(2321), + [anon_sym_loop] = ACTIONS(2321), + [anon_sym_match] = ACTIONS(2321), + [anon_sym_mod] = ACTIONS(2321), + [anon_sym_pub] = ACTIONS(2321), + [anon_sym_return] = ACTIONS(2321), + [anon_sym_static] = ACTIONS(2321), + [anon_sym_struct] = ACTIONS(2321), + [anon_sym_trait] = ACTIONS(2321), + [anon_sym_type] = ACTIONS(2321), + [anon_sym_union] = ACTIONS(2321), + [anon_sym_unsafe] = ACTIONS(2321), + [anon_sym_use] = ACTIONS(2321), + [anon_sym_while] = ACTIONS(2321), + [anon_sym_extern] = ACTIONS(2321), + [anon_sym_yield] = ACTIONS(2321), + [anon_sym_move] = ACTIONS(2321), + [anon_sym_try] = ACTIONS(2321), + [sym_integer_literal] = ACTIONS(2319), + [aux_sym_string_literal_token1] = ACTIONS(2319), + [sym_char_literal] = ACTIONS(2319), + [anon_sym_true] = ACTIONS(2321), + [anon_sym_false] = ACTIONS(2321), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2321), + [sym_super] = ACTIONS(2321), + [sym_crate] = ACTIONS(2321), + [sym_metavariable] = ACTIONS(2319), + [sym__raw_string_literal_start] = ACTIONS(2319), + [sym_float_literal] = ACTIONS(2319), }, [613] = { [sym_line_comment] = STATE(613), [sym_block_comment] = STATE(613), - [ts_builtin_sym_end] = ACTIONS(2198), - [sym_identifier] = ACTIONS(2200), - [anon_sym_SEMI] = ACTIONS(2198), - [anon_sym_macro_rules_BANG] = ACTIONS(2198), - [anon_sym_LPAREN] = ACTIONS(2198), - [anon_sym_LBRACK] = ACTIONS(2198), - [anon_sym_LBRACE] = ACTIONS(2198), - [anon_sym_RBRACE] = ACTIONS(2198), - [anon_sym_STAR] = ACTIONS(2198), - [anon_sym_u8] = ACTIONS(2200), - [anon_sym_i8] = ACTIONS(2200), - [anon_sym_u16] = ACTIONS(2200), - [anon_sym_i16] = ACTIONS(2200), - [anon_sym_u32] = ACTIONS(2200), - [anon_sym_i32] = ACTIONS(2200), - [anon_sym_u64] = ACTIONS(2200), - [anon_sym_i64] = ACTIONS(2200), - [anon_sym_u128] = ACTIONS(2200), - [anon_sym_i128] = ACTIONS(2200), - [anon_sym_isize] = ACTIONS(2200), - [anon_sym_usize] = ACTIONS(2200), - [anon_sym_f32] = ACTIONS(2200), - [anon_sym_f64] = ACTIONS(2200), - [anon_sym_bool] = ACTIONS(2200), - [anon_sym_str] = ACTIONS(2200), - [anon_sym_char] = ACTIONS(2200), - [anon_sym_DASH] = ACTIONS(2198), - [anon_sym_BANG] = ACTIONS(2198), - [anon_sym_AMP] = ACTIONS(2198), - [anon_sym_PIPE] = ACTIONS(2198), - [anon_sym_LT] = ACTIONS(2198), - [anon_sym_DOT_DOT] = ACTIONS(2198), - [anon_sym_COLON_COLON] = ACTIONS(2198), - [anon_sym_POUND] = ACTIONS(2198), - [anon_sym_SQUOTE] = ACTIONS(2200), - [anon_sym_async] = ACTIONS(2200), - [anon_sym_break] = ACTIONS(2200), - [anon_sym_const] = ACTIONS(2200), - [anon_sym_continue] = ACTIONS(2200), - [anon_sym_default] = ACTIONS(2200), - [anon_sym_enum] = ACTIONS(2200), - [anon_sym_fn] = ACTIONS(2200), - [anon_sym_for] = ACTIONS(2200), - [anon_sym_if] = ACTIONS(2200), - [anon_sym_impl] = ACTIONS(2200), - [anon_sym_let] = ACTIONS(2200), - [anon_sym_loop] = ACTIONS(2200), - [anon_sym_match] = ACTIONS(2200), - [anon_sym_mod] = ACTIONS(2200), - [anon_sym_pub] = ACTIONS(2200), - [anon_sym_return] = ACTIONS(2200), - [anon_sym_static] = ACTIONS(2200), - [anon_sym_struct] = ACTIONS(2200), - [anon_sym_trait] = ACTIONS(2200), - [anon_sym_type] = ACTIONS(2200), - [anon_sym_union] = ACTIONS(2200), - [anon_sym_unsafe] = ACTIONS(2200), - [anon_sym_use] = ACTIONS(2200), - [anon_sym_while] = ACTIONS(2200), - [anon_sym_extern] = ACTIONS(2200), - [anon_sym_yield] = ACTIONS(2200), - [anon_sym_move] = ACTIONS(2200), - [anon_sym_try] = ACTIONS(2200), - [sym_integer_literal] = ACTIONS(2198), - [aux_sym_string_literal_token1] = ACTIONS(2198), - [sym_char_literal] = ACTIONS(2198), - [anon_sym_true] = ACTIONS(2200), - [anon_sym_false] = ACTIONS(2200), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2200), - [sym_super] = ACTIONS(2200), - [sym_crate] = ACTIONS(2200), - [sym_metavariable] = ACTIONS(2198), - [sym__raw_string_literal_start] = ACTIONS(2198), - [sym_float_literal] = ACTIONS(2198), + [ts_builtin_sym_end] = ACTIONS(2323), + [sym_identifier] = ACTIONS(2325), + [anon_sym_SEMI] = ACTIONS(2323), + [anon_sym_macro_rules_BANG] = ACTIONS(2323), + [anon_sym_LPAREN] = ACTIONS(2323), + [anon_sym_LBRACK] = ACTIONS(2323), + [anon_sym_LBRACE] = ACTIONS(2323), + [anon_sym_RBRACE] = ACTIONS(2323), + [anon_sym_macro] = ACTIONS(2325), + [anon_sym_STAR] = ACTIONS(2323), + [anon_sym_u8] = ACTIONS(2325), + [anon_sym_i8] = ACTIONS(2325), + [anon_sym_u16] = ACTIONS(2325), + [anon_sym_i16] = ACTIONS(2325), + [anon_sym_u32] = ACTIONS(2325), + [anon_sym_i32] = ACTIONS(2325), + [anon_sym_u64] = ACTIONS(2325), + [anon_sym_i64] = ACTIONS(2325), + [anon_sym_u128] = ACTIONS(2325), + [anon_sym_i128] = ACTIONS(2325), + [anon_sym_isize] = ACTIONS(2325), + [anon_sym_usize] = ACTIONS(2325), + [anon_sym_f32] = ACTIONS(2325), + [anon_sym_f64] = ACTIONS(2325), + [anon_sym_bool] = ACTIONS(2325), + [anon_sym_str] = ACTIONS(2325), + [anon_sym_char] = ACTIONS(2325), + [anon_sym_DASH] = ACTIONS(2323), + [anon_sym_BANG] = ACTIONS(2323), + [anon_sym_AMP] = ACTIONS(2323), + [anon_sym_PIPE] = ACTIONS(2323), + [anon_sym_LT] = ACTIONS(2323), + [anon_sym_DOT_DOT] = ACTIONS(2323), + [anon_sym_COLON_COLON] = ACTIONS(2323), + [anon_sym_POUND] = ACTIONS(2323), + [anon_sym_SQUOTE] = ACTIONS(2325), + [anon_sym_async] = ACTIONS(2325), + [anon_sym_break] = ACTIONS(2325), + [anon_sym_const] = ACTIONS(2325), + [anon_sym_continue] = ACTIONS(2325), + [anon_sym_default] = ACTIONS(2325), + [anon_sym_enum] = ACTIONS(2325), + [anon_sym_fn] = ACTIONS(2325), + [anon_sym_for] = ACTIONS(2325), + [anon_sym_if] = ACTIONS(2325), + [anon_sym_impl] = ACTIONS(2325), + [anon_sym_let] = ACTIONS(2325), + [anon_sym_loop] = ACTIONS(2325), + [anon_sym_match] = ACTIONS(2325), + [anon_sym_mod] = ACTIONS(2325), + [anon_sym_pub] = ACTIONS(2325), + [anon_sym_return] = ACTIONS(2325), + [anon_sym_static] = ACTIONS(2325), + [anon_sym_struct] = ACTIONS(2325), + [anon_sym_trait] = ACTIONS(2325), + [anon_sym_type] = ACTIONS(2325), + [anon_sym_union] = ACTIONS(2325), + [anon_sym_unsafe] = ACTIONS(2325), + [anon_sym_use] = ACTIONS(2325), + [anon_sym_while] = ACTIONS(2325), + [anon_sym_extern] = ACTIONS(2325), + [anon_sym_yield] = ACTIONS(2325), + [anon_sym_move] = ACTIONS(2325), + [anon_sym_try] = ACTIONS(2325), + [sym_integer_literal] = ACTIONS(2323), + [aux_sym_string_literal_token1] = ACTIONS(2323), + [sym_char_literal] = ACTIONS(2323), + [anon_sym_true] = ACTIONS(2325), + [anon_sym_false] = ACTIONS(2325), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2325), + [sym_super] = ACTIONS(2325), + [sym_crate] = ACTIONS(2325), + [sym_metavariable] = ACTIONS(2323), + [sym__raw_string_literal_start] = ACTIONS(2323), + [sym_float_literal] = ACTIONS(2323), }, [614] = { [sym_line_comment] = STATE(614), [sym_block_comment] = STATE(614), - [ts_builtin_sym_end] = ACTIONS(2202), - [sym_identifier] = ACTIONS(2204), - [anon_sym_SEMI] = ACTIONS(2202), - [anon_sym_macro_rules_BANG] = ACTIONS(2202), - [anon_sym_LPAREN] = ACTIONS(2202), - [anon_sym_LBRACK] = ACTIONS(2202), - [anon_sym_LBRACE] = ACTIONS(2202), - [anon_sym_RBRACE] = ACTIONS(2202), - [anon_sym_STAR] = ACTIONS(2202), - [anon_sym_u8] = ACTIONS(2204), - [anon_sym_i8] = ACTIONS(2204), - [anon_sym_u16] = ACTIONS(2204), - [anon_sym_i16] = ACTIONS(2204), - [anon_sym_u32] = ACTIONS(2204), - [anon_sym_i32] = ACTIONS(2204), - [anon_sym_u64] = ACTIONS(2204), - [anon_sym_i64] = ACTIONS(2204), - [anon_sym_u128] = ACTIONS(2204), - [anon_sym_i128] = ACTIONS(2204), - [anon_sym_isize] = ACTIONS(2204), - [anon_sym_usize] = ACTIONS(2204), - [anon_sym_f32] = ACTIONS(2204), - [anon_sym_f64] = ACTIONS(2204), - [anon_sym_bool] = ACTIONS(2204), - [anon_sym_str] = ACTIONS(2204), - [anon_sym_char] = ACTIONS(2204), - [anon_sym_DASH] = ACTIONS(2202), - [anon_sym_BANG] = ACTIONS(2202), - [anon_sym_AMP] = ACTIONS(2202), - [anon_sym_PIPE] = ACTIONS(2202), - [anon_sym_LT] = ACTIONS(2202), - [anon_sym_DOT_DOT] = ACTIONS(2202), - [anon_sym_COLON_COLON] = ACTIONS(2202), - [anon_sym_POUND] = ACTIONS(2202), - [anon_sym_SQUOTE] = ACTIONS(2204), - [anon_sym_async] = ACTIONS(2204), - [anon_sym_break] = ACTIONS(2204), - [anon_sym_const] = ACTIONS(2204), - [anon_sym_continue] = ACTIONS(2204), - [anon_sym_default] = ACTIONS(2204), - [anon_sym_enum] = ACTIONS(2204), - [anon_sym_fn] = ACTIONS(2204), - [anon_sym_for] = ACTIONS(2204), - [anon_sym_if] = ACTIONS(2204), - [anon_sym_impl] = ACTIONS(2204), - [anon_sym_let] = ACTIONS(2204), - [anon_sym_loop] = ACTIONS(2204), - [anon_sym_match] = ACTIONS(2204), - [anon_sym_mod] = ACTIONS(2204), - [anon_sym_pub] = ACTIONS(2204), - [anon_sym_return] = ACTIONS(2204), - [anon_sym_static] = ACTIONS(2204), - [anon_sym_struct] = ACTIONS(2204), - [anon_sym_trait] = ACTIONS(2204), - [anon_sym_type] = ACTIONS(2204), - [anon_sym_union] = ACTIONS(2204), - [anon_sym_unsafe] = ACTIONS(2204), - [anon_sym_use] = ACTIONS(2204), - [anon_sym_while] = ACTIONS(2204), - [anon_sym_extern] = ACTIONS(2204), - [anon_sym_yield] = ACTIONS(2204), - [anon_sym_move] = ACTIONS(2204), - [anon_sym_try] = ACTIONS(2204), - [sym_integer_literal] = ACTIONS(2202), - [aux_sym_string_literal_token1] = ACTIONS(2202), - [sym_char_literal] = ACTIONS(2202), - [anon_sym_true] = ACTIONS(2204), - [anon_sym_false] = ACTIONS(2204), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2204), - [sym_super] = ACTIONS(2204), - [sym_crate] = ACTIONS(2204), - [sym_metavariable] = ACTIONS(2202), - [sym__raw_string_literal_start] = ACTIONS(2202), - [sym_float_literal] = ACTIONS(2202), + [ts_builtin_sym_end] = ACTIONS(2327), + [sym_identifier] = ACTIONS(2329), + [anon_sym_SEMI] = ACTIONS(2327), + [anon_sym_macro_rules_BANG] = ACTIONS(2327), + [anon_sym_LPAREN] = ACTIONS(2327), + [anon_sym_LBRACK] = ACTIONS(2327), + [anon_sym_LBRACE] = ACTIONS(2327), + [anon_sym_RBRACE] = ACTIONS(2327), + [anon_sym_macro] = ACTIONS(2329), + [anon_sym_STAR] = ACTIONS(2327), + [anon_sym_u8] = ACTIONS(2329), + [anon_sym_i8] = ACTIONS(2329), + [anon_sym_u16] = ACTIONS(2329), + [anon_sym_i16] = ACTIONS(2329), + [anon_sym_u32] = ACTIONS(2329), + [anon_sym_i32] = ACTIONS(2329), + [anon_sym_u64] = ACTIONS(2329), + [anon_sym_i64] = ACTIONS(2329), + [anon_sym_u128] = ACTIONS(2329), + [anon_sym_i128] = ACTIONS(2329), + [anon_sym_isize] = ACTIONS(2329), + [anon_sym_usize] = ACTIONS(2329), + [anon_sym_f32] = ACTIONS(2329), + [anon_sym_f64] = ACTIONS(2329), + [anon_sym_bool] = ACTIONS(2329), + [anon_sym_str] = ACTIONS(2329), + [anon_sym_char] = ACTIONS(2329), + [anon_sym_DASH] = ACTIONS(2327), + [anon_sym_BANG] = ACTIONS(2327), + [anon_sym_AMP] = ACTIONS(2327), + [anon_sym_PIPE] = ACTIONS(2327), + [anon_sym_LT] = ACTIONS(2327), + [anon_sym_DOT_DOT] = ACTIONS(2327), + [anon_sym_COLON_COLON] = ACTIONS(2327), + [anon_sym_POUND] = ACTIONS(2327), + [anon_sym_SQUOTE] = ACTIONS(2329), + [anon_sym_async] = ACTIONS(2329), + [anon_sym_break] = ACTIONS(2329), + [anon_sym_const] = ACTIONS(2329), + [anon_sym_continue] = ACTIONS(2329), + [anon_sym_default] = ACTIONS(2329), + [anon_sym_enum] = ACTIONS(2329), + [anon_sym_fn] = ACTIONS(2329), + [anon_sym_for] = ACTIONS(2329), + [anon_sym_if] = ACTIONS(2329), + [anon_sym_impl] = ACTIONS(2329), + [anon_sym_let] = ACTIONS(2329), + [anon_sym_loop] = ACTIONS(2329), + [anon_sym_match] = ACTIONS(2329), + [anon_sym_mod] = ACTIONS(2329), + [anon_sym_pub] = ACTIONS(2329), + [anon_sym_return] = ACTIONS(2329), + [anon_sym_static] = ACTIONS(2329), + [anon_sym_struct] = ACTIONS(2329), + [anon_sym_trait] = ACTIONS(2329), + [anon_sym_type] = ACTIONS(2329), + [anon_sym_union] = ACTIONS(2329), + [anon_sym_unsafe] = ACTIONS(2329), + [anon_sym_use] = ACTIONS(2329), + [anon_sym_while] = ACTIONS(2329), + [anon_sym_extern] = ACTIONS(2329), + [anon_sym_yield] = ACTIONS(2329), + [anon_sym_move] = ACTIONS(2329), + [anon_sym_try] = ACTIONS(2329), + [sym_integer_literal] = ACTIONS(2327), + [aux_sym_string_literal_token1] = ACTIONS(2327), + [sym_char_literal] = ACTIONS(2327), + [anon_sym_true] = ACTIONS(2329), + [anon_sym_false] = ACTIONS(2329), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2329), + [sym_super] = ACTIONS(2329), + [sym_crate] = ACTIONS(2329), + [sym_metavariable] = ACTIONS(2327), + [sym__raw_string_literal_start] = ACTIONS(2327), + [sym_float_literal] = ACTIONS(2327), }, [615] = { [sym_line_comment] = STATE(615), [sym_block_comment] = STATE(615), - [ts_builtin_sym_end] = ACTIONS(2206), - [sym_identifier] = ACTIONS(2208), - [anon_sym_SEMI] = ACTIONS(2206), - [anon_sym_macro_rules_BANG] = ACTIONS(2206), - [anon_sym_LPAREN] = ACTIONS(2206), - [anon_sym_LBRACK] = ACTIONS(2206), - [anon_sym_LBRACE] = ACTIONS(2206), - [anon_sym_RBRACE] = ACTIONS(2206), - [anon_sym_STAR] = ACTIONS(2206), - [anon_sym_u8] = ACTIONS(2208), - [anon_sym_i8] = ACTIONS(2208), - [anon_sym_u16] = ACTIONS(2208), - [anon_sym_i16] = ACTIONS(2208), - [anon_sym_u32] = ACTIONS(2208), - [anon_sym_i32] = ACTIONS(2208), - [anon_sym_u64] = ACTIONS(2208), - [anon_sym_i64] = ACTIONS(2208), - [anon_sym_u128] = ACTIONS(2208), - [anon_sym_i128] = ACTIONS(2208), - [anon_sym_isize] = ACTIONS(2208), - [anon_sym_usize] = ACTIONS(2208), - [anon_sym_f32] = ACTIONS(2208), - [anon_sym_f64] = ACTIONS(2208), - [anon_sym_bool] = ACTIONS(2208), - [anon_sym_str] = ACTIONS(2208), - [anon_sym_char] = ACTIONS(2208), - [anon_sym_DASH] = ACTIONS(2206), - [anon_sym_BANG] = ACTIONS(2206), - [anon_sym_AMP] = ACTIONS(2206), - [anon_sym_PIPE] = ACTIONS(2206), - [anon_sym_LT] = ACTIONS(2206), - [anon_sym_DOT_DOT] = ACTIONS(2206), - [anon_sym_COLON_COLON] = ACTIONS(2206), - [anon_sym_POUND] = ACTIONS(2206), - [anon_sym_SQUOTE] = ACTIONS(2208), - [anon_sym_async] = ACTIONS(2208), - [anon_sym_break] = ACTIONS(2208), - [anon_sym_const] = ACTIONS(2208), - [anon_sym_continue] = ACTIONS(2208), - [anon_sym_default] = ACTIONS(2208), - [anon_sym_enum] = ACTIONS(2208), - [anon_sym_fn] = ACTIONS(2208), - [anon_sym_for] = ACTIONS(2208), - [anon_sym_if] = ACTIONS(2208), - [anon_sym_impl] = ACTIONS(2208), - [anon_sym_let] = ACTIONS(2208), - [anon_sym_loop] = ACTIONS(2208), - [anon_sym_match] = ACTIONS(2208), - [anon_sym_mod] = ACTIONS(2208), - [anon_sym_pub] = ACTIONS(2208), - [anon_sym_return] = ACTIONS(2208), - [anon_sym_static] = ACTIONS(2208), - [anon_sym_struct] = ACTIONS(2208), - [anon_sym_trait] = ACTIONS(2208), - [anon_sym_type] = ACTIONS(2208), - [anon_sym_union] = ACTIONS(2208), - [anon_sym_unsafe] = ACTIONS(2208), - [anon_sym_use] = ACTIONS(2208), - [anon_sym_while] = ACTIONS(2208), - [anon_sym_extern] = ACTIONS(2208), - [anon_sym_yield] = ACTIONS(2208), - [anon_sym_move] = ACTIONS(2208), - [anon_sym_try] = ACTIONS(2208), - [sym_integer_literal] = ACTIONS(2206), - [aux_sym_string_literal_token1] = ACTIONS(2206), - [sym_char_literal] = ACTIONS(2206), - [anon_sym_true] = ACTIONS(2208), - [anon_sym_false] = ACTIONS(2208), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2208), - [sym_super] = ACTIONS(2208), - [sym_crate] = ACTIONS(2208), - [sym_metavariable] = ACTIONS(2206), - [sym__raw_string_literal_start] = ACTIONS(2206), - [sym_float_literal] = ACTIONS(2206), + [ts_builtin_sym_end] = ACTIONS(2331), + [sym_identifier] = ACTIONS(2333), + [anon_sym_SEMI] = ACTIONS(2331), + [anon_sym_macro_rules_BANG] = ACTIONS(2331), + [anon_sym_LPAREN] = ACTIONS(2331), + [anon_sym_LBRACK] = ACTIONS(2331), + [anon_sym_LBRACE] = ACTIONS(2331), + [anon_sym_RBRACE] = ACTIONS(2331), + [anon_sym_macro] = ACTIONS(2333), + [anon_sym_STAR] = ACTIONS(2331), + [anon_sym_u8] = ACTIONS(2333), + [anon_sym_i8] = ACTIONS(2333), + [anon_sym_u16] = ACTIONS(2333), + [anon_sym_i16] = ACTIONS(2333), + [anon_sym_u32] = ACTIONS(2333), + [anon_sym_i32] = ACTIONS(2333), + [anon_sym_u64] = ACTIONS(2333), + [anon_sym_i64] = ACTIONS(2333), + [anon_sym_u128] = ACTIONS(2333), + [anon_sym_i128] = ACTIONS(2333), + [anon_sym_isize] = ACTIONS(2333), + [anon_sym_usize] = ACTIONS(2333), + [anon_sym_f32] = ACTIONS(2333), + [anon_sym_f64] = ACTIONS(2333), + [anon_sym_bool] = ACTIONS(2333), + [anon_sym_str] = ACTIONS(2333), + [anon_sym_char] = ACTIONS(2333), + [anon_sym_DASH] = ACTIONS(2331), + [anon_sym_BANG] = ACTIONS(2331), + [anon_sym_AMP] = ACTIONS(2331), + [anon_sym_PIPE] = ACTIONS(2331), + [anon_sym_LT] = ACTIONS(2331), + [anon_sym_DOT_DOT] = ACTIONS(2331), + [anon_sym_COLON_COLON] = ACTIONS(2331), + [anon_sym_POUND] = ACTIONS(2331), + [anon_sym_SQUOTE] = ACTIONS(2333), + [anon_sym_async] = ACTIONS(2333), + [anon_sym_break] = ACTIONS(2333), + [anon_sym_const] = ACTIONS(2333), + [anon_sym_continue] = ACTIONS(2333), + [anon_sym_default] = ACTIONS(2333), + [anon_sym_enum] = ACTIONS(2333), + [anon_sym_fn] = ACTIONS(2333), + [anon_sym_for] = ACTIONS(2333), + [anon_sym_if] = ACTIONS(2333), + [anon_sym_impl] = ACTIONS(2333), + [anon_sym_let] = ACTIONS(2333), + [anon_sym_loop] = ACTIONS(2333), + [anon_sym_match] = ACTIONS(2333), + [anon_sym_mod] = ACTIONS(2333), + [anon_sym_pub] = ACTIONS(2333), + [anon_sym_return] = ACTIONS(2333), + [anon_sym_static] = ACTIONS(2333), + [anon_sym_struct] = ACTIONS(2333), + [anon_sym_trait] = ACTIONS(2333), + [anon_sym_type] = ACTIONS(2333), + [anon_sym_union] = ACTIONS(2333), + [anon_sym_unsafe] = ACTIONS(2333), + [anon_sym_use] = ACTIONS(2333), + [anon_sym_while] = ACTIONS(2333), + [anon_sym_extern] = ACTIONS(2333), + [anon_sym_yield] = ACTIONS(2333), + [anon_sym_move] = ACTIONS(2333), + [anon_sym_try] = ACTIONS(2333), + [sym_integer_literal] = ACTIONS(2331), + [aux_sym_string_literal_token1] = ACTIONS(2331), + [sym_char_literal] = ACTIONS(2331), + [anon_sym_true] = ACTIONS(2333), + [anon_sym_false] = ACTIONS(2333), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2333), + [sym_super] = ACTIONS(2333), + [sym_crate] = ACTIONS(2333), + [sym_metavariable] = ACTIONS(2331), + [sym__raw_string_literal_start] = ACTIONS(2331), + [sym_float_literal] = ACTIONS(2331), }, [616] = { [sym_line_comment] = STATE(616), [sym_block_comment] = STATE(616), - [ts_builtin_sym_end] = ACTIONS(2210), - [sym_identifier] = ACTIONS(2212), - [anon_sym_SEMI] = ACTIONS(2210), - [anon_sym_macro_rules_BANG] = ACTIONS(2210), - [anon_sym_LPAREN] = ACTIONS(2210), - [anon_sym_LBRACK] = ACTIONS(2210), - [anon_sym_LBRACE] = ACTIONS(2210), - [anon_sym_RBRACE] = ACTIONS(2210), - [anon_sym_STAR] = ACTIONS(2210), - [anon_sym_u8] = ACTIONS(2212), - [anon_sym_i8] = ACTIONS(2212), - [anon_sym_u16] = ACTIONS(2212), - [anon_sym_i16] = ACTIONS(2212), - [anon_sym_u32] = ACTIONS(2212), - [anon_sym_i32] = ACTIONS(2212), - [anon_sym_u64] = ACTIONS(2212), - [anon_sym_i64] = ACTIONS(2212), - [anon_sym_u128] = ACTIONS(2212), - [anon_sym_i128] = ACTIONS(2212), - [anon_sym_isize] = ACTIONS(2212), - [anon_sym_usize] = ACTIONS(2212), - [anon_sym_f32] = ACTIONS(2212), - [anon_sym_f64] = ACTIONS(2212), - [anon_sym_bool] = ACTIONS(2212), - [anon_sym_str] = ACTIONS(2212), - [anon_sym_char] = ACTIONS(2212), - [anon_sym_DASH] = ACTIONS(2210), - [anon_sym_BANG] = ACTIONS(2210), - [anon_sym_AMP] = ACTIONS(2210), - [anon_sym_PIPE] = ACTIONS(2210), - [anon_sym_LT] = ACTIONS(2210), - [anon_sym_DOT_DOT] = ACTIONS(2210), - [anon_sym_COLON_COLON] = ACTIONS(2210), - [anon_sym_POUND] = ACTIONS(2210), - [anon_sym_SQUOTE] = ACTIONS(2212), - [anon_sym_async] = ACTIONS(2212), - [anon_sym_break] = ACTIONS(2212), - [anon_sym_const] = ACTIONS(2212), - [anon_sym_continue] = ACTIONS(2212), - [anon_sym_default] = ACTIONS(2212), - [anon_sym_enum] = ACTIONS(2212), - [anon_sym_fn] = ACTIONS(2212), - [anon_sym_for] = ACTIONS(2212), - [anon_sym_if] = ACTIONS(2212), - [anon_sym_impl] = ACTIONS(2212), - [anon_sym_let] = ACTIONS(2212), - [anon_sym_loop] = ACTIONS(2212), - [anon_sym_match] = ACTIONS(2212), - [anon_sym_mod] = ACTIONS(2212), - [anon_sym_pub] = ACTIONS(2212), - [anon_sym_return] = ACTIONS(2212), - [anon_sym_static] = ACTIONS(2212), - [anon_sym_struct] = ACTIONS(2212), - [anon_sym_trait] = ACTIONS(2212), - [anon_sym_type] = ACTIONS(2212), - [anon_sym_union] = ACTIONS(2212), - [anon_sym_unsafe] = ACTIONS(2212), - [anon_sym_use] = ACTIONS(2212), - [anon_sym_while] = ACTIONS(2212), - [anon_sym_extern] = ACTIONS(2212), - [anon_sym_yield] = ACTIONS(2212), - [anon_sym_move] = ACTIONS(2212), - [anon_sym_try] = ACTIONS(2212), - [sym_integer_literal] = ACTIONS(2210), - [aux_sym_string_literal_token1] = ACTIONS(2210), - [sym_char_literal] = ACTIONS(2210), - [anon_sym_true] = ACTIONS(2212), - [anon_sym_false] = ACTIONS(2212), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2212), - [sym_super] = ACTIONS(2212), - [sym_crate] = ACTIONS(2212), - [sym_metavariable] = ACTIONS(2210), - [sym__raw_string_literal_start] = ACTIONS(2210), - [sym_float_literal] = ACTIONS(2210), + [ts_builtin_sym_end] = ACTIONS(2335), + [sym_identifier] = ACTIONS(2337), + [anon_sym_SEMI] = ACTIONS(2335), + [anon_sym_macro_rules_BANG] = ACTIONS(2335), + [anon_sym_LPAREN] = ACTIONS(2335), + [anon_sym_LBRACK] = ACTIONS(2335), + [anon_sym_LBRACE] = ACTIONS(2335), + [anon_sym_RBRACE] = ACTIONS(2335), + [anon_sym_macro] = ACTIONS(2337), + [anon_sym_STAR] = ACTIONS(2335), + [anon_sym_u8] = ACTIONS(2337), + [anon_sym_i8] = ACTIONS(2337), + [anon_sym_u16] = ACTIONS(2337), + [anon_sym_i16] = ACTIONS(2337), + [anon_sym_u32] = ACTIONS(2337), + [anon_sym_i32] = ACTIONS(2337), + [anon_sym_u64] = ACTIONS(2337), + [anon_sym_i64] = ACTIONS(2337), + [anon_sym_u128] = ACTIONS(2337), + [anon_sym_i128] = ACTIONS(2337), + [anon_sym_isize] = ACTIONS(2337), + [anon_sym_usize] = ACTIONS(2337), + [anon_sym_f32] = ACTIONS(2337), + [anon_sym_f64] = ACTIONS(2337), + [anon_sym_bool] = ACTIONS(2337), + [anon_sym_str] = ACTIONS(2337), + [anon_sym_char] = ACTIONS(2337), + [anon_sym_DASH] = ACTIONS(2335), + [anon_sym_BANG] = ACTIONS(2335), + [anon_sym_AMP] = ACTIONS(2335), + [anon_sym_PIPE] = ACTIONS(2335), + [anon_sym_LT] = ACTIONS(2335), + [anon_sym_DOT_DOT] = ACTIONS(2335), + [anon_sym_COLON_COLON] = ACTIONS(2335), + [anon_sym_POUND] = ACTIONS(2335), + [anon_sym_SQUOTE] = ACTIONS(2337), + [anon_sym_async] = ACTIONS(2337), + [anon_sym_break] = ACTIONS(2337), + [anon_sym_const] = ACTIONS(2337), + [anon_sym_continue] = ACTIONS(2337), + [anon_sym_default] = ACTIONS(2337), + [anon_sym_enum] = ACTIONS(2337), + [anon_sym_fn] = ACTIONS(2337), + [anon_sym_for] = ACTIONS(2337), + [anon_sym_if] = ACTIONS(2337), + [anon_sym_impl] = ACTIONS(2337), + [anon_sym_let] = ACTIONS(2337), + [anon_sym_loop] = ACTIONS(2337), + [anon_sym_match] = ACTIONS(2337), + [anon_sym_mod] = ACTIONS(2337), + [anon_sym_pub] = ACTIONS(2337), + [anon_sym_return] = ACTIONS(2337), + [anon_sym_static] = ACTIONS(2337), + [anon_sym_struct] = ACTIONS(2337), + [anon_sym_trait] = ACTIONS(2337), + [anon_sym_type] = ACTIONS(2337), + [anon_sym_union] = ACTIONS(2337), + [anon_sym_unsafe] = ACTIONS(2337), + [anon_sym_use] = ACTIONS(2337), + [anon_sym_while] = ACTIONS(2337), + [anon_sym_extern] = ACTIONS(2337), + [anon_sym_yield] = ACTIONS(2337), + [anon_sym_move] = ACTIONS(2337), + [anon_sym_try] = ACTIONS(2337), + [sym_integer_literal] = ACTIONS(2335), + [aux_sym_string_literal_token1] = ACTIONS(2335), + [sym_char_literal] = ACTIONS(2335), + [anon_sym_true] = ACTIONS(2337), + [anon_sym_false] = ACTIONS(2337), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2337), + [sym_super] = ACTIONS(2337), + [sym_crate] = ACTIONS(2337), + [sym_metavariable] = ACTIONS(2335), + [sym__raw_string_literal_start] = ACTIONS(2335), + [sym_float_literal] = ACTIONS(2335), }, [617] = { [sym_line_comment] = STATE(617), [sym_block_comment] = STATE(617), - [ts_builtin_sym_end] = ACTIONS(2214), - [sym_identifier] = ACTIONS(2216), - [anon_sym_SEMI] = ACTIONS(2214), - [anon_sym_macro_rules_BANG] = ACTIONS(2214), - [anon_sym_LPAREN] = ACTIONS(2214), - [anon_sym_LBRACK] = ACTIONS(2214), - [anon_sym_LBRACE] = ACTIONS(2214), - [anon_sym_RBRACE] = ACTIONS(2214), - [anon_sym_STAR] = ACTIONS(2214), - [anon_sym_u8] = ACTIONS(2216), - [anon_sym_i8] = ACTIONS(2216), - [anon_sym_u16] = ACTIONS(2216), - [anon_sym_i16] = ACTIONS(2216), - [anon_sym_u32] = ACTIONS(2216), - [anon_sym_i32] = ACTIONS(2216), - [anon_sym_u64] = ACTIONS(2216), - [anon_sym_i64] = ACTIONS(2216), - [anon_sym_u128] = ACTIONS(2216), - [anon_sym_i128] = ACTIONS(2216), - [anon_sym_isize] = ACTIONS(2216), - [anon_sym_usize] = ACTIONS(2216), - [anon_sym_f32] = ACTIONS(2216), - [anon_sym_f64] = ACTIONS(2216), - [anon_sym_bool] = ACTIONS(2216), - [anon_sym_str] = ACTIONS(2216), - [anon_sym_char] = ACTIONS(2216), - [anon_sym_DASH] = ACTIONS(2214), - [anon_sym_BANG] = ACTIONS(2214), - [anon_sym_AMP] = ACTIONS(2214), - [anon_sym_PIPE] = ACTIONS(2214), - [anon_sym_LT] = ACTIONS(2214), - [anon_sym_DOT_DOT] = ACTIONS(2214), - [anon_sym_COLON_COLON] = ACTIONS(2214), - [anon_sym_POUND] = ACTIONS(2214), - [anon_sym_SQUOTE] = ACTIONS(2216), - [anon_sym_async] = ACTIONS(2216), - [anon_sym_break] = ACTIONS(2216), - [anon_sym_const] = ACTIONS(2216), - [anon_sym_continue] = ACTIONS(2216), - [anon_sym_default] = ACTIONS(2216), - [anon_sym_enum] = ACTIONS(2216), - [anon_sym_fn] = ACTIONS(2216), - [anon_sym_for] = ACTIONS(2216), - [anon_sym_if] = ACTIONS(2216), - [anon_sym_impl] = ACTIONS(2216), - [anon_sym_let] = ACTIONS(2216), - [anon_sym_loop] = ACTIONS(2216), - [anon_sym_match] = ACTIONS(2216), - [anon_sym_mod] = ACTIONS(2216), - [anon_sym_pub] = ACTIONS(2216), - [anon_sym_return] = ACTIONS(2216), - [anon_sym_static] = ACTIONS(2216), - [anon_sym_struct] = ACTIONS(2216), - [anon_sym_trait] = ACTIONS(2216), - [anon_sym_type] = ACTIONS(2216), - [anon_sym_union] = ACTIONS(2216), - [anon_sym_unsafe] = ACTIONS(2216), - [anon_sym_use] = ACTIONS(2216), - [anon_sym_while] = ACTIONS(2216), - [anon_sym_extern] = ACTIONS(2216), - [anon_sym_yield] = ACTIONS(2216), - [anon_sym_move] = ACTIONS(2216), - [anon_sym_try] = ACTIONS(2216), - [sym_integer_literal] = ACTIONS(2214), - [aux_sym_string_literal_token1] = ACTIONS(2214), - [sym_char_literal] = ACTIONS(2214), - [anon_sym_true] = ACTIONS(2216), - [anon_sym_false] = ACTIONS(2216), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2216), - [sym_super] = ACTIONS(2216), - [sym_crate] = ACTIONS(2216), - [sym_metavariable] = ACTIONS(2214), - [sym__raw_string_literal_start] = ACTIONS(2214), - [sym_float_literal] = ACTIONS(2214), + [ts_builtin_sym_end] = ACTIONS(2339), + [sym_identifier] = ACTIONS(2341), + [anon_sym_SEMI] = ACTIONS(2339), + [anon_sym_macro_rules_BANG] = ACTIONS(2339), + [anon_sym_LPAREN] = ACTIONS(2339), + [anon_sym_LBRACK] = ACTIONS(2339), + [anon_sym_LBRACE] = ACTIONS(2339), + [anon_sym_RBRACE] = ACTIONS(2339), + [anon_sym_macro] = ACTIONS(2341), + [anon_sym_STAR] = ACTIONS(2339), + [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), + [anon_sym_DASH] = ACTIONS(2339), + [anon_sym_BANG] = ACTIONS(2339), + [anon_sym_AMP] = ACTIONS(2339), + [anon_sym_PIPE] = ACTIONS(2339), + [anon_sym_LT] = ACTIONS(2339), + [anon_sym_DOT_DOT] = ACTIONS(2339), + [anon_sym_COLON_COLON] = ACTIONS(2339), + [anon_sym_POUND] = ACTIONS(2339), + [anon_sym_SQUOTE] = ACTIONS(2341), + [anon_sym_async] = 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_while] = ACTIONS(2341), + [anon_sym_extern] = ACTIONS(2341), + [anon_sym_yield] = ACTIONS(2341), + [anon_sym_move] = ACTIONS(2341), + [anon_sym_try] = ACTIONS(2341), + [sym_integer_literal] = ACTIONS(2339), + [aux_sym_string_literal_token1] = ACTIONS(2339), + [sym_char_literal] = ACTIONS(2339), + [anon_sym_true] = ACTIONS(2341), + [anon_sym_false] = ACTIONS(2341), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2341), + [sym_super] = ACTIONS(2341), + [sym_crate] = ACTIONS(2341), + [sym_metavariable] = ACTIONS(2339), + [sym__raw_string_literal_start] = ACTIONS(2339), + [sym_float_literal] = ACTIONS(2339), }, [618] = { [sym_line_comment] = STATE(618), [sym_block_comment] = STATE(618), - [ts_builtin_sym_end] = ACTIONS(2218), - [sym_identifier] = ACTIONS(2220), - [anon_sym_SEMI] = ACTIONS(2218), - [anon_sym_macro_rules_BANG] = ACTIONS(2218), - [anon_sym_LPAREN] = ACTIONS(2218), - [anon_sym_LBRACK] = ACTIONS(2218), - [anon_sym_LBRACE] = ACTIONS(2218), - [anon_sym_RBRACE] = ACTIONS(2218), - [anon_sym_STAR] = ACTIONS(2218), - [anon_sym_u8] = ACTIONS(2220), - [anon_sym_i8] = ACTIONS(2220), - [anon_sym_u16] = ACTIONS(2220), - [anon_sym_i16] = ACTIONS(2220), - [anon_sym_u32] = ACTIONS(2220), - [anon_sym_i32] = ACTIONS(2220), - [anon_sym_u64] = ACTIONS(2220), - [anon_sym_i64] = ACTIONS(2220), - [anon_sym_u128] = ACTIONS(2220), - [anon_sym_i128] = ACTIONS(2220), - [anon_sym_isize] = ACTIONS(2220), - [anon_sym_usize] = ACTIONS(2220), - [anon_sym_f32] = ACTIONS(2220), - [anon_sym_f64] = ACTIONS(2220), - [anon_sym_bool] = ACTIONS(2220), - [anon_sym_str] = ACTIONS(2220), - [anon_sym_char] = ACTIONS(2220), - [anon_sym_DASH] = ACTIONS(2218), - [anon_sym_BANG] = ACTIONS(2218), - [anon_sym_AMP] = ACTIONS(2218), - [anon_sym_PIPE] = ACTIONS(2218), - [anon_sym_LT] = ACTIONS(2218), - [anon_sym_DOT_DOT] = ACTIONS(2218), - [anon_sym_COLON_COLON] = ACTIONS(2218), - [anon_sym_POUND] = ACTIONS(2218), - [anon_sym_SQUOTE] = ACTIONS(2220), - [anon_sym_async] = ACTIONS(2220), - [anon_sym_break] = ACTIONS(2220), - [anon_sym_const] = ACTIONS(2220), - [anon_sym_continue] = ACTIONS(2220), - [anon_sym_default] = ACTIONS(2220), - [anon_sym_enum] = ACTIONS(2220), - [anon_sym_fn] = ACTIONS(2220), - [anon_sym_for] = ACTIONS(2220), - [anon_sym_if] = ACTIONS(2220), - [anon_sym_impl] = ACTIONS(2220), - [anon_sym_let] = ACTIONS(2220), - [anon_sym_loop] = ACTIONS(2220), - [anon_sym_match] = ACTIONS(2220), - [anon_sym_mod] = ACTIONS(2220), - [anon_sym_pub] = ACTIONS(2220), - [anon_sym_return] = ACTIONS(2220), - [anon_sym_static] = ACTIONS(2220), - [anon_sym_struct] = ACTIONS(2220), - [anon_sym_trait] = ACTIONS(2220), - [anon_sym_type] = ACTIONS(2220), - [anon_sym_union] = ACTIONS(2220), - [anon_sym_unsafe] = ACTIONS(2220), - [anon_sym_use] = ACTIONS(2220), - [anon_sym_while] = ACTIONS(2220), - [anon_sym_extern] = ACTIONS(2220), - [anon_sym_yield] = ACTIONS(2220), - [anon_sym_move] = ACTIONS(2220), - [anon_sym_try] = ACTIONS(2220), - [sym_integer_literal] = ACTIONS(2218), - [aux_sym_string_literal_token1] = ACTIONS(2218), - [sym_char_literal] = ACTIONS(2218), - [anon_sym_true] = ACTIONS(2220), - [anon_sym_false] = ACTIONS(2220), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2220), - [sym_super] = ACTIONS(2220), - [sym_crate] = ACTIONS(2220), - [sym_metavariable] = ACTIONS(2218), - [sym__raw_string_literal_start] = ACTIONS(2218), - [sym_float_literal] = ACTIONS(2218), + [ts_builtin_sym_end] = ACTIONS(2343), + [sym_identifier] = ACTIONS(2345), + [anon_sym_SEMI] = ACTIONS(2343), + [anon_sym_macro_rules_BANG] = ACTIONS(2343), + [anon_sym_LPAREN] = ACTIONS(2343), + [anon_sym_LBRACK] = ACTIONS(2343), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_RBRACE] = ACTIONS(2343), + [anon_sym_macro] = ACTIONS(2345), + [anon_sym_STAR] = ACTIONS(2343), + [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), + [anon_sym_DASH] = ACTIONS(2343), + [anon_sym_BANG] = ACTIONS(2343), + [anon_sym_AMP] = ACTIONS(2343), + [anon_sym_PIPE] = ACTIONS(2343), + [anon_sym_LT] = ACTIONS(2343), + [anon_sym_DOT_DOT] = ACTIONS(2343), + [anon_sym_COLON_COLON] = ACTIONS(2343), + [anon_sym_POUND] = ACTIONS(2343), + [anon_sym_SQUOTE] = ACTIONS(2345), + [anon_sym_async] = 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_while] = ACTIONS(2345), + [anon_sym_extern] = ACTIONS(2345), + [anon_sym_yield] = ACTIONS(2345), + [anon_sym_move] = ACTIONS(2345), + [anon_sym_try] = ACTIONS(2345), + [sym_integer_literal] = ACTIONS(2343), + [aux_sym_string_literal_token1] = ACTIONS(2343), + [sym_char_literal] = ACTIONS(2343), + [anon_sym_true] = ACTIONS(2345), + [anon_sym_false] = ACTIONS(2345), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2345), + [sym_super] = ACTIONS(2345), + [sym_crate] = ACTIONS(2345), + [sym_metavariable] = ACTIONS(2343), + [sym__raw_string_literal_start] = ACTIONS(2343), + [sym_float_literal] = ACTIONS(2343), }, [619] = { [sym_line_comment] = STATE(619), [sym_block_comment] = STATE(619), - [ts_builtin_sym_end] = ACTIONS(2222), - [sym_identifier] = ACTIONS(2224), - [anon_sym_SEMI] = ACTIONS(2222), - [anon_sym_macro_rules_BANG] = ACTIONS(2222), - [anon_sym_LPAREN] = ACTIONS(2222), - [anon_sym_LBRACK] = ACTIONS(2222), - [anon_sym_LBRACE] = ACTIONS(2222), - [anon_sym_RBRACE] = ACTIONS(2222), - [anon_sym_STAR] = ACTIONS(2222), - [anon_sym_u8] = ACTIONS(2224), - [anon_sym_i8] = ACTIONS(2224), - [anon_sym_u16] = ACTIONS(2224), - [anon_sym_i16] = ACTIONS(2224), - [anon_sym_u32] = ACTIONS(2224), - [anon_sym_i32] = ACTIONS(2224), - [anon_sym_u64] = ACTIONS(2224), - [anon_sym_i64] = ACTIONS(2224), - [anon_sym_u128] = ACTIONS(2224), - [anon_sym_i128] = ACTIONS(2224), - [anon_sym_isize] = ACTIONS(2224), - [anon_sym_usize] = ACTIONS(2224), - [anon_sym_f32] = ACTIONS(2224), - [anon_sym_f64] = ACTIONS(2224), - [anon_sym_bool] = ACTIONS(2224), - [anon_sym_str] = ACTIONS(2224), - [anon_sym_char] = ACTIONS(2224), - [anon_sym_DASH] = ACTIONS(2222), - [anon_sym_BANG] = ACTIONS(2222), - [anon_sym_AMP] = ACTIONS(2222), - [anon_sym_PIPE] = ACTIONS(2222), - [anon_sym_LT] = ACTIONS(2222), - [anon_sym_DOT_DOT] = ACTIONS(2222), - [anon_sym_COLON_COLON] = ACTIONS(2222), - [anon_sym_POUND] = ACTIONS(2222), - [anon_sym_SQUOTE] = ACTIONS(2224), - [anon_sym_async] = ACTIONS(2224), - [anon_sym_break] = ACTIONS(2224), - [anon_sym_const] = ACTIONS(2224), - [anon_sym_continue] = ACTIONS(2224), - [anon_sym_default] = ACTIONS(2224), - [anon_sym_enum] = ACTIONS(2224), - [anon_sym_fn] = ACTIONS(2224), - [anon_sym_for] = ACTIONS(2224), - [anon_sym_if] = ACTIONS(2224), - [anon_sym_impl] = ACTIONS(2224), - [anon_sym_let] = ACTIONS(2224), - [anon_sym_loop] = ACTIONS(2224), - [anon_sym_match] = ACTIONS(2224), - [anon_sym_mod] = ACTIONS(2224), - [anon_sym_pub] = ACTIONS(2224), - [anon_sym_return] = ACTIONS(2224), - [anon_sym_static] = ACTIONS(2224), - [anon_sym_struct] = ACTIONS(2224), - [anon_sym_trait] = ACTIONS(2224), - [anon_sym_type] = ACTIONS(2224), - [anon_sym_union] = ACTIONS(2224), - [anon_sym_unsafe] = ACTIONS(2224), - [anon_sym_use] = ACTIONS(2224), - [anon_sym_while] = ACTIONS(2224), - [anon_sym_extern] = ACTIONS(2224), - [anon_sym_yield] = ACTIONS(2224), - [anon_sym_move] = ACTIONS(2224), - [anon_sym_try] = ACTIONS(2224), - [sym_integer_literal] = ACTIONS(2222), - [aux_sym_string_literal_token1] = ACTIONS(2222), - [sym_char_literal] = ACTIONS(2222), - [anon_sym_true] = ACTIONS(2224), - [anon_sym_false] = ACTIONS(2224), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2224), - [sym_super] = ACTIONS(2224), - [sym_crate] = ACTIONS(2224), - [sym_metavariable] = ACTIONS(2222), - [sym__raw_string_literal_start] = ACTIONS(2222), - [sym_float_literal] = ACTIONS(2222), + [ts_builtin_sym_end] = ACTIONS(1227), + [sym_identifier] = ACTIONS(1229), + [anon_sym_SEMI] = ACTIONS(1227), + [anon_sym_macro_rules_BANG] = ACTIONS(1227), + [anon_sym_LPAREN] = ACTIONS(1227), + [anon_sym_LBRACK] = ACTIONS(1227), + [anon_sym_LBRACE] = ACTIONS(1227), + [anon_sym_RBRACE] = ACTIONS(1227), + [anon_sym_macro] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1227), + [anon_sym_u8] = ACTIONS(1229), + [anon_sym_i8] = ACTIONS(1229), + [anon_sym_u16] = ACTIONS(1229), + [anon_sym_i16] = ACTIONS(1229), + [anon_sym_u32] = ACTIONS(1229), + [anon_sym_i32] = ACTIONS(1229), + [anon_sym_u64] = ACTIONS(1229), + [anon_sym_i64] = ACTIONS(1229), + [anon_sym_u128] = ACTIONS(1229), + [anon_sym_i128] = ACTIONS(1229), + [anon_sym_isize] = ACTIONS(1229), + [anon_sym_usize] = ACTIONS(1229), + [anon_sym_f32] = ACTIONS(1229), + [anon_sym_f64] = ACTIONS(1229), + [anon_sym_bool] = ACTIONS(1229), + [anon_sym_str] = ACTIONS(1229), + [anon_sym_char] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1227), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(1227), + [anon_sym_PIPE] = ACTIONS(1227), + [anon_sym_LT] = ACTIONS(1227), + [anon_sym_DOT_DOT] = ACTIONS(1227), + [anon_sym_COLON_COLON] = ACTIONS(1227), + [anon_sym_POUND] = ACTIONS(1227), + [anon_sym_SQUOTE] = ACTIONS(1229), + [anon_sym_async] = ACTIONS(1229), + [anon_sym_break] = ACTIONS(1229), + [anon_sym_const] = ACTIONS(1229), + [anon_sym_continue] = ACTIONS(1229), + [anon_sym_default] = ACTIONS(1229), + [anon_sym_enum] = ACTIONS(1229), + [anon_sym_fn] = ACTIONS(1229), + [anon_sym_for] = ACTIONS(1229), + [anon_sym_if] = ACTIONS(1229), + [anon_sym_impl] = ACTIONS(1229), + [anon_sym_let] = ACTIONS(1229), + [anon_sym_loop] = ACTIONS(1229), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_mod] = ACTIONS(1229), + [anon_sym_pub] = ACTIONS(1229), + [anon_sym_return] = ACTIONS(1229), + [anon_sym_static] = ACTIONS(1229), + [anon_sym_struct] = ACTIONS(1229), + [anon_sym_trait] = ACTIONS(1229), + [anon_sym_type] = ACTIONS(1229), + [anon_sym_union] = ACTIONS(1229), + [anon_sym_unsafe] = ACTIONS(1229), + [anon_sym_use] = ACTIONS(1229), + [anon_sym_while] = ACTIONS(1229), + [anon_sym_extern] = ACTIONS(1229), + [anon_sym_yield] = ACTIONS(1229), + [anon_sym_move] = ACTIONS(1229), + [anon_sym_try] = ACTIONS(1229), + [sym_integer_literal] = ACTIONS(1227), + [aux_sym_string_literal_token1] = ACTIONS(1227), + [sym_char_literal] = ACTIONS(1227), + [anon_sym_true] = ACTIONS(1229), + [anon_sym_false] = ACTIONS(1229), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1229), + [sym_super] = ACTIONS(1229), + [sym_crate] = ACTIONS(1229), + [sym_metavariable] = ACTIONS(1227), + [sym__raw_string_literal_start] = ACTIONS(1227), + [sym_float_literal] = ACTIONS(1227), }, [620] = { [sym_line_comment] = STATE(620), [sym_block_comment] = STATE(620), - [ts_builtin_sym_end] = ACTIONS(2226), - [sym_identifier] = ACTIONS(2228), - [anon_sym_SEMI] = ACTIONS(2226), - [anon_sym_macro_rules_BANG] = ACTIONS(2226), - [anon_sym_LPAREN] = ACTIONS(2226), - [anon_sym_LBRACK] = ACTIONS(2226), - [anon_sym_LBRACE] = ACTIONS(2226), - [anon_sym_RBRACE] = ACTIONS(2226), - [anon_sym_STAR] = ACTIONS(2226), - [anon_sym_u8] = ACTIONS(2228), - [anon_sym_i8] = ACTIONS(2228), - [anon_sym_u16] = ACTIONS(2228), - [anon_sym_i16] = ACTIONS(2228), - [anon_sym_u32] = ACTIONS(2228), - [anon_sym_i32] = ACTIONS(2228), - [anon_sym_u64] = ACTIONS(2228), - [anon_sym_i64] = ACTIONS(2228), - [anon_sym_u128] = ACTIONS(2228), - [anon_sym_i128] = ACTIONS(2228), - [anon_sym_isize] = ACTIONS(2228), - [anon_sym_usize] = ACTIONS(2228), - [anon_sym_f32] = ACTIONS(2228), - [anon_sym_f64] = ACTIONS(2228), - [anon_sym_bool] = ACTIONS(2228), - [anon_sym_str] = ACTIONS(2228), - [anon_sym_char] = ACTIONS(2228), - [anon_sym_DASH] = ACTIONS(2226), - [anon_sym_BANG] = ACTIONS(2226), - [anon_sym_AMP] = ACTIONS(2226), - [anon_sym_PIPE] = ACTIONS(2226), - [anon_sym_LT] = ACTIONS(2226), - [anon_sym_DOT_DOT] = ACTIONS(2226), - [anon_sym_COLON_COLON] = ACTIONS(2226), - [anon_sym_POUND] = ACTIONS(2226), - [anon_sym_SQUOTE] = ACTIONS(2228), - [anon_sym_async] = ACTIONS(2228), - [anon_sym_break] = ACTIONS(2228), - [anon_sym_const] = ACTIONS(2228), - [anon_sym_continue] = ACTIONS(2228), - [anon_sym_default] = ACTIONS(2228), - [anon_sym_enum] = ACTIONS(2228), - [anon_sym_fn] = ACTIONS(2228), - [anon_sym_for] = ACTIONS(2228), - [anon_sym_if] = ACTIONS(2228), - [anon_sym_impl] = ACTIONS(2228), - [anon_sym_let] = ACTIONS(2228), - [anon_sym_loop] = ACTIONS(2228), - [anon_sym_match] = ACTIONS(2228), - [anon_sym_mod] = ACTIONS(2228), - [anon_sym_pub] = ACTIONS(2228), - [anon_sym_return] = ACTIONS(2228), - [anon_sym_static] = ACTIONS(2228), - [anon_sym_struct] = ACTIONS(2228), - [anon_sym_trait] = ACTIONS(2228), - [anon_sym_type] = ACTIONS(2228), - [anon_sym_union] = ACTIONS(2228), - [anon_sym_unsafe] = ACTIONS(2228), - [anon_sym_use] = ACTIONS(2228), - [anon_sym_while] = ACTIONS(2228), - [anon_sym_extern] = ACTIONS(2228), - [anon_sym_yield] = ACTIONS(2228), - [anon_sym_move] = ACTIONS(2228), - [anon_sym_try] = ACTIONS(2228), - [sym_integer_literal] = ACTIONS(2226), - [aux_sym_string_literal_token1] = ACTIONS(2226), - [sym_char_literal] = ACTIONS(2226), - [anon_sym_true] = ACTIONS(2228), - [anon_sym_false] = ACTIONS(2228), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2228), - [sym_super] = ACTIONS(2228), - [sym_crate] = ACTIONS(2228), - [sym_metavariable] = ACTIONS(2226), - [sym__raw_string_literal_start] = ACTIONS(2226), - [sym_float_literal] = ACTIONS(2226), + [ts_builtin_sym_end] = ACTIONS(2347), + [sym_identifier] = ACTIONS(2349), + [anon_sym_SEMI] = ACTIONS(2347), + [anon_sym_macro_rules_BANG] = ACTIONS(2347), + [anon_sym_LPAREN] = ACTIONS(2347), + [anon_sym_LBRACK] = ACTIONS(2347), + [anon_sym_LBRACE] = ACTIONS(2347), + [anon_sym_RBRACE] = ACTIONS(2347), + [anon_sym_macro] = ACTIONS(2349), + [anon_sym_STAR] = ACTIONS(2347), + [anon_sym_u8] = ACTIONS(2349), + [anon_sym_i8] = ACTIONS(2349), + [anon_sym_u16] = ACTIONS(2349), + [anon_sym_i16] = ACTIONS(2349), + [anon_sym_u32] = ACTIONS(2349), + [anon_sym_i32] = ACTIONS(2349), + [anon_sym_u64] = ACTIONS(2349), + [anon_sym_i64] = ACTIONS(2349), + [anon_sym_u128] = ACTIONS(2349), + [anon_sym_i128] = ACTIONS(2349), + [anon_sym_isize] = ACTIONS(2349), + [anon_sym_usize] = ACTIONS(2349), + [anon_sym_f32] = ACTIONS(2349), + [anon_sym_f64] = ACTIONS(2349), + [anon_sym_bool] = ACTIONS(2349), + [anon_sym_str] = ACTIONS(2349), + [anon_sym_char] = ACTIONS(2349), + [anon_sym_DASH] = ACTIONS(2347), + [anon_sym_BANG] = ACTIONS(2347), + [anon_sym_AMP] = ACTIONS(2347), + [anon_sym_PIPE] = ACTIONS(2347), + [anon_sym_LT] = ACTIONS(2347), + [anon_sym_DOT_DOT] = ACTIONS(2347), + [anon_sym_COLON_COLON] = ACTIONS(2347), + [anon_sym_POUND] = ACTIONS(2347), + [anon_sym_SQUOTE] = ACTIONS(2349), + [anon_sym_async] = ACTIONS(2349), + [anon_sym_break] = ACTIONS(2349), + [anon_sym_const] = ACTIONS(2349), + [anon_sym_continue] = ACTIONS(2349), + [anon_sym_default] = ACTIONS(2349), + [anon_sym_enum] = ACTIONS(2349), + [anon_sym_fn] = ACTIONS(2349), + [anon_sym_for] = ACTIONS(2349), + [anon_sym_if] = ACTIONS(2349), + [anon_sym_impl] = ACTIONS(2349), + [anon_sym_let] = ACTIONS(2349), + [anon_sym_loop] = ACTIONS(2349), + [anon_sym_match] = ACTIONS(2349), + [anon_sym_mod] = ACTIONS(2349), + [anon_sym_pub] = ACTIONS(2349), + [anon_sym_return] = ACTIONS(2349), + [anon_sym_static] = ACTIONS(2349), + [anon_sym_struct] = ACTIONS(2349), + [anon_sym_trait] = ACTIONS(2349), + [anon_sym_type] = ACTIONS(2349), + [anon_sym_union] = ACTIONS(2349), + [anon_sym_unsafe] = ACTIONS(2349), + [anon_sym_use] = ACTIONS(2349), + [anon_sym_while] = ACTIONS(2349), + [anon_sym_extern] = ACTIONS(2349), + [anon_sym_yield] = ACTIONS(2349), + [anon_sym_move] = ACTIONS(2349), + [anon_sym_try] = ACTIONS(2349), + [sym_integer_literal] = ACTIONS(2347), + [aux_sym_string_literal_token1] = ACTIONS(2347), + [sym_char_literal] = ACTIONS(2347), + [anon_sym_true] = ACTIONS(2349), + [anon_sym_false] = ACTIONS(2349), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2349), + [sym_super] = ACTIONS(2349), + [sym_crate] = ACTIONS(2349), + [sym_metavariable] = ACTIONS(2347), + [sym__raw_string_literal_start] = ACTIONS(2347), + [sym_float_literal] = ACTIONS(2347), }, [621] = { [sym_line_comment] = STATE(621), [sym_block_comment] = STATE(621), - [ts_builtin_sym_end] = ACTIONS(2230), - [sym_identifier] = ACTIONS(2232), - [anon_sym_SEMI] = ACTIONS(2230), - [anon_sym_macro_rules_BANG] = ACTIONS(2230), - [anon_sym_LPAREN] = ACTIONS(2230), - [anon_sym_LBRACK] = ACTIONS(2230), - [anon_sym_LBRACE] = ACTIONS(2230), - [anon_sym_RBRACE] = ACTIONS(2230), - [anon_sym_STAR] = ACTIONS(2230), - [anon_sym_u8] = ACTIONS(2232), - [anon_sym_i8] = ACTIONS(2232), - [anon_sym_u16] = ACTIONS(2232), - [anon_sym_i16] = ACTIONS(2232), - [anon_sym_u32] = ACTIONS(2232), - [anon_sym_i32] = ACTIONS(2232), - [anon_sym_u64] = ACTIONS(2232), - [anon_sym_i64] = ACTIONS(2232), - [anon_sym_u128] = ACTIONS(2232), - [anon_sym_i128] = ACTIONS(2232), - [anon_sym_isize] = ACTIONS(2232), - [anon_sym_usize] = ACTIONS(2232), - [anon_sym_f32] = ACTIONS(2232), - [anon_sym_f64] = ACTIONS(2232), - [anon_sym_bool] = ACTIONS(2232), - [anon_sym_str] = ACTIONS(2232), - [anon_sym_char] = ACTIONS(2232), - [anon_sym_DASH] = ACTIONS(2230), - [anon_sym_BANG] = ACTIONS(2230), - [anon_sym_AMP] = ACTIONS(2230), - [anon_sym_PIPE] = ACTIONS(2230), - [anon_sym_LT] = ACTIONS(2230), - [anon_sym_DOT_DOT] = ACTIONS(2230), - [anon_sym_COLON_COLON] = ACTIONS(2230), - [anon_sym_POUND] = ACTIONS(2230), - [anon_sym_SQUOTE] = ACTIONS(2232), - [anon_sym_async] = ACTIONS(2232), - [anon_sym_break] = ACTIONS(2232), - [anon_sym_const] = ACTIONS(2232), - [anon_sym_continue] = ACTIONS(2232), - [anon_sym_default] = ACTIONS(2232), - [anon_sym_enum] = ACTIONS(2232), - [anon_sym_fn] = ACTIONS(2232), - [anon_sym_for] = ACTIONS(2232), - [anon_sym_if] = ACTIONS(2232), - [anon_sym_impl] = ACTIONS(2232), - [anon_sym_let] = ACTIONS(2232), - [anon_sym_loop] = ACTIONS(2232), - [anon_sym_match] = ACTIONS(2232), - [anon_sym_mod] = ACTIONS(2232), - [anon_sym_pub] = ACTIONS(2232), - [anon_sym_return] = ACTIONS(2232), - [anon_sym_static] = ACTIONS(2232), - [anon_sym_struct] = ACTIONS(2232), - [anon_sym_trait] = ACTIONS(2232), - [anon_sym_type] = ACTIONS(2232), - [anon_sym_union] = ACTIONS(2232), - [anon_sym_unsafe] = ACTIONS(2232), - [anon_sym_use] = ACTIONS(2232), - [anon_sym_while] = ACTIONS(2232), - [anon_sym_extern] = ACTIONS(2232), - [anon_sym_yield] = ACTIONS(2232), - [anon_sym_move] = ACTIONS(2232), - [anon_sym_try] = ACTIONS(2232), - [sym_integer_literal] = ACTIONS(2230), - [aux_sym_string_literal_token1] = ACTIONS(2230), - [sym_char_literal] = ACTIONS(2230), - [anon_sym_true] = ACTIONS(2232), - [anon_sym_false] = ACTIONS(2232), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2232), - [sym_super] = ACTIONS(2232), - [sym_crate] = ACTIONS(2232), - [sym_metavariable] = ACTIONS(2230), - [sym__raw_string_literal_start] = ACTIONS(2230), - [sym_float_literal] = ACTIONS(2230), + [ts_builtin_sym_end] = ACTIONS(2351), + [sym_identifier] = ACTIONS(2353), + [anon_sym_SEMI] = ACTIONS(2351), + [anon_sym_macro_rules_BANG] = ACTIONS(2351), + [anon_sym_LPAREN] = ACTIONS(2351), + [anon_sym_LBRACK] = ACTIONS(2351), + [anon_sym_LBRACE] = ACTIONS(2351), + [anon_sym_RBRACE] = ACTIONS(2351), + [anon_sym_macro] = ACTIONS(2353), + [anon_sym_STAR] = ACTIONS(2351), + [anon_sym_u8] = ACTIONS(2353), + [anon_sym_i8] = ACTIONS(2353), + [anon_sym_u16] = ACTIONS(2353), + [anon_sym_i16] = ACTIONS(2353), + [anon_sym_u32] = ACTIONS(2353), + [anon_sym_i32] = ACTIONS(2353), + [anon_sym_u64] = ACTIONS(2353), + [anon_sym_i64] = ACTIONS(2353), + [anon_sym_u128] = ACTIONS(2353), + [anon_sym_i128] = ACTIONS(2353), + [anon_sym_isize] = ACTIONS(2353), + [anon_sym_usize] = ACTIONS(2353), + [anon_sym_f32] = ACTIONS(2353), + [anon_sym_f64] = ACTIONS(2353), + [anon_sym_bool] = ACTIONS(2353), + [anon_sym_str] = ACTIONS(2353), + [anon_sym_char] = ACTIONS(2353), + [anon_sym_DASH] = ACTIONS(2351), + [anon_sym_BANG] = ACTIONS(2351), + [anon_sym_AMP] = ACTIONS(2351), + [anon_sym_PIPE] = ACTIONS(2351), + [anon_sym_LT] = ACTIONS(2351), + [anon_sym_DOT_DOT] = ACTIONS(2351), + [anon_sym_COLON_COLON] = ACTIONS(2351), + [anon_sym_POUND] = ACTIONS(2351), + [anon_sym_SQUOTE] = ACTIONS(2353), + [anon_sym_async] = ACTIONS(2353), + [anon_sym_break] = ACTIONS(2353), + [anon_sym_const] = ACTIONS(2353), + [anon_sym_continue] = ACTIONS(2353), + [anon_sym_default] = ACTIONS(2353), + [anon_sym_enum] = ACTIONS(2353), + [anon_sym_fn] = ACTIONS(2353), + [anon_sym_for] = ACTIONS(2353), + [anon_sym_if] = ACTIONS(2353), + [anon_sym_impl] = ACTIONS(2353), + [anon_sym_let] = ACTIONS(2353), + [anon_sym_loop] = ACTIONS(2353), + [anon_sym_match] = ACTIONS(2353), + [anon_sym_mod] = ACTIONS(2353), + [anon_sym_pub] = ACTIONS(2353), + [anon_sym_return] = ACTIONS(2353), + [anon_sym_static] = ACTIONS(2353), + [anon_sym_struct] = ACTIONS(2353), + [anon_sym_trait] = ACTIONS(2353), + [anon_sym_type] = ACTIONS(2353), + [anon_sym_union] = ACTIONS(2353), + [anon_sym_unsafe] = ACTIONS(2353), + [anon_sym_use] = ACTIONS(2353), + [anon_sym_while] = ACTIONS(2353), + [anon_sym_extern] = ACTIONS(2353), + [anon_sym_yield] = ACTIONS(2353), + [anon_sym_move] = ACTIONS(2353), + [anon_sym_try] = ACTIONS(2353), + [sym_integer_literal] = ACTIONS(2351), + [aux_sym_string_literal_token1] = ACTIONS(2351), + [sym_char_literal] = ACTIONS(2351), + [anon_sym_true] = ACTIONS(2353), + [anon_sym_false] = ACTIONS(2353), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2353), + [sym_super] = ACTIONS(2353), + [sym_crate] = ACTIONS(2353), + [sym_metavariable] = ACTIONS(2351), + [sym__raw_string_literal_start] = ACTIONS(2351), + [sym_float_literal] = ACTIONS(2351), }, [622] = { [sym_line_comment] = STATE(622), [sym_block_comment] = STATE(622), - [ts_builtin_sym_end] = ACTIONS(2234), - [sym_identifier] = ACTIONS(2236), - [anon_sym_SEMI] = ACTIONS(2234), - [anon_sym_macro_rules_BANG] = ACTIONS(2234), - [anon_sym_LPAREN] = ACTIONS(2234), - [anon_sym_LBRACK] = ACTIONS(2234), - [anon_sym_LBRACE] = ACTIONS(2234), - [anon_sym_RBRACE] = ACTIONS(2234), - [anon_sym_STAR] = ACTIONS(2234), - [anon_sym_u8] = ACTIONS(2236), - [anon_sym_i8] = ACTIONS(2236), - [anon_sym_u16] = ACTIONS(2236), - [anon_sym_i16] = ACTIONS(2236), - [anon_sym_u32] = ACTIONS(2236), - [anon_sym_i32] = ACTIONS(2236), - [anon_sym_u64] = ACTIONS(2236), - [anon_sym_i64] = ACTIONS(2236), - [anon_sym_u128] = ACTIONS(2236), - [anon_sym_i128] = ACTIONS(2236), - [anon_sym_isize] = ACTIONS(2236), - [anon_sym_usize] = ACTIONS(2236), - [anon_sym_f32] = ACTIONS(2236), - [anon_sym_f64] = ACTIONS(2236), - [anon_sym_bool] = ACTIONS(2236), - [anon_sym_str] = ACTIONS(2236), - [anon_sym_char] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2234), - [anon_sym_BANG] = ACTIONS(2234), - [anon_sym_AMP] = ACTIONS(2234), - [anon_sym_PIPE] = ACTIONS(2234), - [anon_sym_LT] = ACTIONS(2234), - [anon_sym_DOT_DOT] = ACTIONS(2234), - [anon_sym_COLON_COLON] = ACTIONS(2234), - [anon_sym_POUND] = ACTIONS(2234), - [anon_sym_SQUOTE] = ACTIONS(2236), - [anon_sym_async] = ACTIONS(2236), - [anon_sym_break] = ACTIONS(2236), - [anon_sym_const] = ACTIONS(2236), - [anon_sym_continue] = ACTIONS(2236), - [anon_sym_default] = ACTIONS(2236), - [anon_sym_enum] = ACTIONS(2236), - [anon_sym_fn] = ACTIONS(2236), - [anon_sym_for] = ACTIONS(2236), - [anon_sym_if] = ACTIONS(2236), - [anon_sym_impl] = ACTIONS(2236), - [anon_sym_let] = ACTIONS(2236), - [anon_sym_loop] = ACTIONS(2236), - [anon_sym_match] = ACTIONS(2236), - [anon_sym_mod] = ACTIONS(2236), - [anon_sym_pub] = ACTIONS(2236), - [anon_sym_return] = ACTIONS(2236), - [anon_sym_static] = ACTIONS(2236), - [anon_sym_struct] = ACTIONS(2236), - [anon_sym_trait] = ACTIONS(2236), - [anon_sym_type] = ACTIONS(2236), - [anon_sym_union] = ACTIONS(2236), - [anon_sym_unsafe] = ACTIONS(2236), - [anon_sym_use] = ACTIONS(2236), - [anon_sym_while] = ACTIONS(2236), - [anon_sym_extern] = ACTIONS(2236), - [anon_sym_yield] = ACTIONS(2236), - [anon_sym_move] = ACTIONS(2236), - [anon_sym_try] = ACTIONS(2236), - [sym_integer_literal] = ACTIONS(2234), - [aux_sym_string_literal_token1] = ACTIONS(2234), - [sym_char_literal] = ACTIONS(2234), - [anon_sym_true] = ACTIONS(2236), - [anon_sym_false] = ACTIONS(2236), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2236), - [sym_super] = ACTIONS(2236), - [sym_crate] = ACTIONS(2236), - [sym_metavariable] = ACTIONS(2234), - [sym__raw_string_literal_start] = ACTIONS(2234), - [sym_float_literal] = ACTIONS(2234), + [ts_builtin_sym_end] = ACTIONS(2355), + [sym_identifier] = ACTIONS(2357), + [anon_sym_SEMI] = ACTIONS(2355), + [anon_sym_macro_rules_BANG] = ACTIONS(2355), + [anon_sym_LPAREN] = ACTIONS(2355), + [anon_sym_LBRACK] = ACTIONS(2355), + [anon_sym_LBRACE] = ACTIONS(2355), + [anon_sym_RBRACE] = ACTIONS(2355), + [anon_sym_macro] = ACTIONS(2357), + [anon_sym_STAR] = ACTIONS(2355), + [anon_sym_u8] = ACTIONS(2357), + [anon_sym_i8] = ACTIONS(2357), + [anon_sym_u16] = ACTIONS(2357), + [anon_sym_i16] = ACTIONS(2357), + [anon_sym_u32] = ACTIONS(2357), + [anon_sym_i32] = ACTIONS(2357), + [anon_sym_u64] = ACTIONS(2357), + [anon_sym_i64] = ACTIONS(2357), + [anon_sym_u128] = ACTIONS(2357), + [anon_sym_i128] = ACTIONS(2357), + [anon_sym_isize] = ACTIONS(2357), + [anon_sym_usize] = ACTIONS(2357), + [anon_sym_f32] = ACTIONS(2357), + [anon_sym_f64] = ACTIONS(2357), + [anon_sym_bool] = ACTIONS(2357), + [anon_sym_str] = ACTIONS(2357), + [anon_sym_char] = ACTIONS(2357), + [anon_sym_DASH] = ACTIONS(2355), + [anon_sym_BANG] = ACTIONS(2355), + [anon_sym_AMP] = ACTIONS(2355), + [anon_sym_PIPE] = ACTIONS(2355), + [anon_sym_LT] = ACTIONS(2355), + [anon_sym_DOT_DOT] = ACTIONS(2355), + [anon_sym_COLON_COLON] = ACTIONS(2355), + [anon_sym_POUND] = ACTIONS(2355), + [anon_sym_SQUOTE] = ACTIONS(2357), + [anon_sym_async] = ACTIONS(2357), + [anon_sym_break] = ACTIONS(2357), + [anon_sym_const] = ACTIONS(2357), + [anon_sym_continue] = ACTIONS(2357), + [anon_sym_default] = ACTIONS(2357), + [anon_sym_enum] = ACTIONS(2357), + [anon_sym_fn] = ACTIONS(2357), + [anon_sym_for] = ACTIONS(2357), + [anon_sym_if] = ACTIONS(2357), + [anon_sym_impl] = ACTIONS(2357), + [anon_sym_let] = ACTIONS(2357), + [anon_sym_loop] = ACTIONS(2357), + [anon_sym_match] = ACTIONS(2357), + [anon_sym_mod] = ACTIONS(2357), + [anon_sym_pub] = ACTIONS(2357), + [anon_sym_return] = ACTIONS(2357), + [anon_sym_static] = ACTIONS(2357), + [anon_sym_struct] = ACTIONS(2357), + [anon_sym_trait] = ACTIONS(2357), + [anon_sym_type] = ACTIONS(2357), + [anon_sym_union] = ACTIONS(2357), + [anon_sym_unsafe] = ACTIONS(2357), + [anon_sym_use] = ACTIONS(2357), + [anon_sym_while] = ACTIONS(2357), + [anon_sym_extern] = ACTIONS(2357), + [anon_sym_yield] = ACTIONS(2357), + [anon_sym_move] = ACTIONS(2357), + [anon_sym_try] = ACTIONS(2357), + [sym_integer_literal] = ACTIONS(2355), + [aux_sym_string_literal_token1] = ACTIONS(2355), + [sym_char_literal] = ACTIONS(2355), + [anon_sym_true] = ACTIONS(2357), + [anon_sym_false] = ACTIONS(2357), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2357), + [sym_super] = ACTIONS(2357), + [sym_crate] = ACTIONS(2357), + [sym_metavariable] = ACTIONS(2355), + [sym__raw_string_literal_start] = ACTIONS(2355), + [sym_float_literal] = ACTIONS(2355), }, [623] = { [sym_line_comment] = STATE(623), [sym_block_comment] = STATE(623), - [ts_builtin_sym_end] = ACTIONS(2238), - [sym_identifier] = ACTIONS(2240), - [anon_sym_SEMI] = ACTIONS(2238), - [anon_sym_macro_rules_BANG] = ACTIONS(2238), - [anon_sym_LPAREN] = ACTIONS(2238), - [anon_sym_LBRACK] = ACTIONS(2238), - [anon_sym_LBRACE] = ACTIONS(2238), - [anon_sym_RBRACE] = ACTIONS(2238), - [anon_sym_STAR] = ACTIONS(2238), - [anon_sym_u8] = ACTIONS(2240), - [anon_sym_i8] = ACTIONS(2240), - [anon_sym_u16] = ACTIONS(2240), - [anon_sym_i16] = ACTIONS(2240), - [anon_sym_u32] = ACTIONS(2240), - [anon_sym_i32] = ACTIONS(2240), - [anon_sym_u64] = ACTIONS(2240), - [anon_sym_i64] = ACTIONS(2240), - [anon_sym_u128] = ACTIONS(2240), - [anon_sym_i128] = ACTIONS(2240), - [anon_sym_isize] = ACTIONS(2240), - [anon_sym_usize] = ACTIONS(2240), - [anon_sym_f32] = ACTIONS(2240), - [anon_sym_f64] = ACTIONS(2240), - [anon_sym_bool] = ACTIONS(2240), - [anon_sym_str] = ACTIONS(2240), - [anon_sym_char] = ACTIONS(2240), - [anon_sym_DASH] = ACTIONS(2238), - [anon_sym_BANG] = ACTIONS(2238), - [anon_sym_AMP] = ACTIONS(2238), - [anon_sym_PIPE] = ACTIONS(2238), - [anon_sym_LT] = ACTIONS(2238), - [anon_sym_DOT_DOT] = ACTIONS(2238), - [anon_sym_COLON_COLON] = ACTIONS(2238), - [anon_sym_POUND] = ACTIONS(2238), - [anon_sym_SQUOTE] = ACTIONS(2240), - [anon_sym_async] = ACTIONS(2240), - [anon_sym_break] = ACTIONS(2240), - [anon_sym_const] = ACTIONS(2240), - [anon_sym_continue] = ACTIONS(2240), - [anon_sym_default] = ACTIONS(2240), - [anon_sym_enum] = ACTIONS(2240), - [anon_sym_fn] = ACTIONS(2240), - [anon_sym_for] = ACTIONS(2240), - [anon_sym_if] = ACTIONS(2240), - [anon_sym_impl] = ACTIONS(2240), - [anon_sym_let] = ACTIONS(2240), - [anon_sym_loop] = ACTIONS(2240), - [anon_sym_match] = ACTIONS(2240), - [anon_sym_mod] = ACTIONS(2240), - [anon_sym_pub] = ACTIONS(2240), - [anon_sym_return] = ACTIONS(2240), - [anon_sym_static] = ACTIONS(2240), - [anon_sym_struct] = ACTIONS(2240), - [anon_sym_trait] = ACTIONS(2240), - [anon_sym_type] = ACTIONS(2240), - [anon_sym_union] = ACTIONS(2240), - [anon_sym_unsafe] = ACTIONS(2240), - [anon_sym_use] = ACTIONS(2240), - [anon_sym_while] = ACTIONS(2240), - [anon_sym_extern] = ACTIONS(2240), - [anon_sym_yield] = ACTIONS(2240), - [anon_sym_move] = ACTIONS(2240), - [anon_sym_try] = ACTIONS(2240), - [sym_integer_literal] = ACTIONS(2238), - [aux_sym_string_literal_token1] = ACTIONS(2238), - [sym_char_literal] = ACTIONS(2238), - [anon_sym_true] = ACTIONS(2240), - [anon_sym_false] = ACTIONS(2240), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2240), - [sym_super] = ACTIONS(2240), - [sym_crate] = ACTIONS(2240), - [sym_metavariable] = ACTIONS(2238), - [sym__raw_string_literal_start] = ACTIONS(2238), - [sym_float_literal] = ACTIONS(2238), + [ts_builtin_sym_end] = ACTIONS(2359), + [sym_identifier] = ACTIONS(2361), + [anon_sym_SEMI] = ACTIONS(2359), + [anon_sym_macro_rules_BANG] = ACTIONS(2359), + [anon_sym_LPAREN] = ACTIONS(2359), + [anon_sym_LBRACK] = ACTIONS(2359), + [anon_sym_LBRACE] = ACTIONS(2359), + [anon_sym_RBRACE] = ACTIONS(2359), + [anon_sym_macro] = ACTIONS(2361), + [anon_sym_STAR] = ACTIONS(2359), + [anon_sym_u8] = ACTIONS(2361), + [anon_sym_i8] = ACTIONS(2361), + [anon_sym_u16] = ACTIONS(2361), + [anon_sym_i16] = ACTIONS(2361), + [anon_sym_u32] = ACTIONS(2361), + [anon_sym_i32] = ACTIONS(2361), + [anon_sym_u64] = ACTIONS(2361), + [anon_sym_i64] = ACTIONS(2361), + [anon_sym_u128] = ACTIONS(2361), + [anon_sym_i128] = ACTIONS(2361), + [anon_sym_isize] = ACTIONS(2361), + [anon_sym_usize] = ACTIONS(2361), + [anon_sym_f32] = ACTIONS(2361), + [anon_sym_f64] = ACTIONS(2361), + [anon_sym_bool] = ACTIONS(2361), + [anon_sym_str] = ACTIONS(2361), + [anon_sym_char] = ACTIONS(2361), + [anon_sym_DASH] = ACTIONS(2359), + [anon_sym_BANG] = ACTIONS(2359), + [anon_sym_AMP] = ACTIONS(2359), + [anon_sym_PIPE] = ACTIONS(2359), + [anon_sym_LT] = ACTIONS(2359), + [anon_sym_DOT_DOT] = ACTIONS(2359), + [anon_sym_COLON_COLON] = ACTIONS(2359), + [anon_sym_POUND] = ACTIONS(2359), + [anon_sym_SQUOTE] = ACTIONS(2361), + [anon_sym_async] = ACTIONS(2361), + [anon_sym_break] = ACTIONS(2361), + [anon_sym_const] = ACTIONS(2361), + [anon_sym_continue] = ACTIONS(2361), + [anon_sym_default] = ACTIONS(2361), + [anon_sym_enum] = ACTIONS(2361), + [anon_sym_fn] = ACTIONS(2361), + [anon_sym_for] = ACTIONS(2361), + [anon_sym_if] = ACTIONS(2361), + [anon_sym_impl] = ACTIONS(2361), + [anon_sym_let] = ACTIONS(2361), + [anon_sym_loop] = ACTIONS(2361), + [anon_sym_match] = ACTIONS(2361), + [anon_sym_mod] = ACTIONS(2361), + [anon_sym_pub] = ACTIONS(2361), + [anon_sym_return] = ACTIONS(2361), + [anon_sym_static] = ACTIONS(2361), + [anon_sym_struct] = ACTIONS(2361), + [anon_sym_trait] = ACTIONS(2361), + [anon_sym_type] = ACTIONS(2361), + [anon_sym_union] = ACTIONS(2361), + [anon_sym_unsafe] = ACTIONS(2361), + [anon_sym_use] = ACTIONS(2361), + [anon_sym_while] = ACTIONS(2361), + [anon_sym_extern] = ACTIONS(2361), + [anon_sym_yield] = ACTIONS(2361), + [anon_sym_move] = ACTIONS(2361), + [anon_sym_try] = ACTIONS(2361), + [sym_integer_literal] = ACTIONS(2359), + [aux_sym_string_literal_token1] = ACTIONS(2359), + [sym_char_literal] = ACTIONS(2359), + [anon_sym_true] = ACTIONS(2361), + [anon_sym_false] = ACTIONS(2361), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2361), + [sym_super] = ACTIONS(2361), + [sym_crate] = ACTIONS(2361), + [sym_metavariable] = ACTIONS(2359), + [sym__raw_string_literal_start] = ACTIONS(2359), + [sym_float_literal] = ACTIONS(2359), }, [624] = { [sym_line_comment] = STATE(624), [sym_block_comment] = STATE(624), - [ts_builtin_sym_end] = ACTIONS(2242), - [sym_identifier] = ACTIONS(2244), - [anon_sym_SEMI] = ACTIONS(2242), - [anon_sym_macro_rules_BANG] = ACTIONS(2242), - [anon_sym_LPAREN] = ACTIONS(2242), - [anon_sym_LBRACK] = ACTIONS(2242), - [anon_sym_LBRACE] = ACTIONS(2242), - [anon_sym_RBRACE] = ACTIONS(2242), - [anon_sym_STAR] = ACTIONS(2242), - [anon_sym_u8] = ACTIONS(2244), - [anon_sym_i8] = ACTIONS(2244), - [anon_sym_u16] = ACTIONS(2244), - [anon_sym_i16] = ACTIONS(2244), - [anon_sym_u32] = ACTIONS(2244), - [anon_sym_i32] = ACTIONS(2244), - [anon_sym_u64] = ACTIONS(2244), - [anon_sym_i64] = ACTIONS(2244), - [anon_sym_u128] = ACTIONS(2244), - [anon_sym_i128] = ACTIONS(2244), - [anon_sym_isize] = ACTIONS(2244), - [anon_sym_usize] = ACTIONS(2244), - [anon_sym_f32] = ACTIONS(2244), - [anon_sym_f64] = ACTIONS(2244), - [anon_sym_bool] = ACTIONS(2244), - [anon_sym_str] = ACTIONS(2244), - [anon_sym_char] = ACTIONS(2244), - [anon_sym_DASH] = ACTIONS(2242), - [anon_sym_BANG] = ACTIONS(2242), - [anon_sym_AMP] = ACTIONS(2242), - [anon_sym_PIPE] = ACTIONS(2242), - [anon_sym_LT] = ACTIONS(2242), - [anon_sym_DOT_DOT] = ACTIONS(2242), - [anon_sym_COLON_COLON] = ACTIONS(2242), - [anon_sym_POUND] = ACTIONS(2242), - [anon_sym_SQUOTE] = ACTIONS(2244), - [anon_sym_async] = ACTIONS(2244), - [anon_sym_break] = ACTIONS(2244), - [anon_sym_const] = ACTIONS(2244), - [anon_sym_continue] = ACTIONS(2244), - [anon_sym_default] = ACTIONS(2244), - [anon_sym_enum] = ACTIONS(2244), - [anon_sym_fn] = ACTIONS(2244), - [anon_sym_for] = ACTIONS(2244), - [anon_sym_if] = ACTIONS(2244), - [anon_sym_impl] = ACTIONS(2244), - [anon_sym_let] = ACTIONS(2244), - [anon_sym_loop] = ACTIONS(2244), - [anon_sym_match] = ACTIONS(2244), - [anon_sym_mod] = ACTIONS(2244), - [anon_sym_pub] = ACTIONS(2244), - [anon_sym_return] = ACTIONS(2244), - [anon_sym_static] = ACTIONS(2244), - [anon_sym_struct] = ACTIONS(2244), - [anon_sym_trait] = ACTIONS(2244), - [anon_sym_type] = ACTIONS(2244), - [anon_sym_union] = ACTIONS(2244), - [anon_sym_unsafe] = ACTIONS(2244), - [anon_sym_use] = ACTIONS(2244), - [anon_sym_while] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(2244), - [anon_sym_yield] = ACTIONS(2244), - [anon_sym_move] = ACTIONS(2244), - [anon_sym_try] = ACTIONS(2244), - [sym_integer_literal] = ACTIONS(2242), - [aux_sym_string_literal_token1] = ACTIONS(2242), - [sym_char_literal] = ACTIONS(2242), - [anon_sym_true] = ACTIONS(2244), - [anon_sym_false] = ACTIONS(2244), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2244), - [sym_super] = ACTIONS(2244), - [sym_crate] = ACTIONS(2244), - [sym_metavariable] = ACTIONS(2242), - [sym__raw_string_literal_start] = ACTIONS(2242), - [sym_float_literal] = ACTIONS(2242), + [ts_builtin_sym_end] = ACTIONS(2363), + [sym_identifier] = ACTIONS(2365), + [anon_sym_SEMI] = ACTIONS(2363), + [anon_sym_macro_rules_BANG] = ACTIONS(2363), + [anon_sym_LPAREN] = ACTIONS(2363), + [anon_sym_LBRACK] = ACTIONS(2363), + [anon_sym_LBRACE] = ACTIONS(2363), + [anon_sym_RBRACE] = ACTIONS(2363), + [anon_sym_macro] = ACTIONS(2365), + [anon_sym_STAR] = ACTIONS(2363), + [anon_sym_u8] = ACTIONS(2365), + [anon_sym_i8] = ACTIONS(2365), + [anon_sym_u16] = ACTIONS(2365), + [anon_sym_i16] = ACTIONS(2365), + [anon_sym_u32] = ACTIONS(2365), + [anon_sym_i32] = ACTIONS(2365), + [anon_sym_u64] = ACTIONS(2365), + [anon_sym_i64] = ACTIONS(2365), + [anon_sym_u128] = ACTIONS(2365), + [anon_sym_i128] = ACTIONS(2365), + [anon_sym_isize] = ACTIONS(2365), + [anon_sym_usize] = ACTIONS(2365), + [anon_sym_f32] = ACTIONS(2365), + [anon_sym_f64] = ACTIONS(2365), + [anon_sym_bool] = ACTIONS(2365), + [anon_sym_str] = ACTIONS(2365), + [anon_sym_char] = ACTIONS(2365), + [anon_sym_DASH] = ACTIONS(2363), + [anon_sym_BANG] = ACTIONS(2363), + [anon_sym_AMP] = ACTIONS(2363), + [anon_sym_PIPE] = ACTIONS(2363), + [anon_sym_LT] = ACTIONS(2363), + [anon_sym_DOT_DOT] = ACTIONS(2363), + [anon_sym_COLON_COLON] = ACTIONS(2363), + [anon_sym_POUND] = ACTIONS(2363), + [anon_sym_SQUOTE] = ACTIONS(2365), + [anon_sym_async] = ACTIONS(2365), + [anon_sym_break] = ACTIONS(2365), + [anon_sym_const] = ACTIONS(2365), + [anon_sym_continue] = ACTIONS(2365), + [anon_sym_default] = ACTIONS(2365), + [anon_sym_enum] = ACTIONS(2365), + [anon_sym_fn] = ACTIONS(2365), + [anon_sym_for] = ACTIONS(2365), + [anon_sym_if] = ACTIONS(2365), + [anon_sym_impl] = ACTIONS(2365), + [anon_sym_let] = ACTIONS(2365), + [anon_sym_loop] = ACTIONS(2365), + [anon_sym_match] = ACTIONS(2365), + [anon_sym_mod] = ACTIONS(2365), + [anon_sym_pub] = ACTIONS(2365), + [anon_sym_return] = ACTIONS(2365), + [anon_sym_static] = ACTIONS(2365), + [anon_sym_struct] = ACTIONS(2365), + [anon_sym_trait] = ACTIONS(2365), + [anon_sym_type] = ACTIONS(2365), + [anon_sym_union] = ACTIONS(2365), + [anon_sym_unsafe] = ACTIONS(2365), + [anon_sym_use] = ACTIONS(2365), + [anon_sym_while] = ACTIONS(2365), + [anon_sym_extern] = ACTIONS(2365), + [anon_sym_yield] = ACTIONS(2365), + [anon_sym_move] = ACTIONS(2365), + [anon_sym_try] = ACTIONS(2365), + [sym_integer_literal] = ACTIONS(2363), + [aux_sym_string_literal_token1] = ACTIONS(2363), + [sym_char_literal] = ACTIONS(2363), + [anon_sym_true] = ACTIONS(2365), + [anon_sym_false] = ACTIONS(2365), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2365), + [sym_super] = ACTIONS(2365), + [sym_crate] = ACTIONS(2365), + [sym_metavariable] = ACTIONS(2363), + [sym__raw_string_literal_start] = ACTIONS(2363), + [sym_float_literal] = ACTIONS(2363), }, [625] = { [sym_line_comment] = STATE(625), [sym_block_comment] = STATE(625), - [ts_builtin_sym_end] = ACTIONS(2246), - [sym_identifier] = ACTIONS(2248), - [anon_sym_SEMI] = ACTIONS(2246), - [anon_sym_macro_rules_BANG] = ACTIONS(2246), - [anon_sym_LPAREN] = ACTIONS(2246), - [anon_sym_LBRACK] = ACTIONS(2246), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_RBRACE] = ACTIONS(2246), - [anon_sym_STAR] = ACTIONS(2246), - [anon_sym_u8] = ACTIONS(2248), - [anon_sym_i8] = ACTIONS(2248), - [anon_sym_u16] = ACTIONS(2248), - [anon_sym_i16] = ACTIONS(2248), - [anon_sym_u32] = ACTIONS(2248), - [anon_sym_i32] = ACTIONS(2248), - [anon_sym_u64] = ACTIONS(2248), - [anon_sym_i64] = ACTIONS(2248), - [anon_sym_u128] = ACTIONS(2248), - [anon_sym_i128] = ACTIONS(2248), - [anon_sym_isize] = ACTIONS(2248), - [anon_sym_usize] = ACTIONS(2248), - [anon_sym_f32] = ACTIONS(2248), - [anon_sym_f64] = ACTIONS(2248), - [anon_sym_bool] = ACTIONS(2248), - [anon_sym_str] = ACTIONS(2248), - [anon_sym_char] = ACTIONS(2248), - [anon_sym_DASH] = ACTIONS(2246), - [anon_sym_BANG] = ACTIONS(2246), - [anon_sym_AMP] = ACTIONS(2246), - [anon_sym_PIPE] = ACTIONS(2246), - [anon_sym_LT] = ACTIONS(2246), - [anon_sym_DOT_DOT] = ACTIONS(2246), - [anon_sym_COLON_COLON] = ACTIONS(2246), - [anon_sym_POUND] = ACTIONS(2246), - [anon_sym_SQUOTE] = ACTIONS(2248), - [anon_sym_async] = ACTIONS(2248), - [anon_sym_break] = ACTIONS(2248), - [anon_sym_const] = ACTIONS(2248), - [anon_sym_continue] = ACTIONS(2248), - [anon_sym_default] = ACTIONS(2248), - [anon_sym_enum] = ACTIONS(2248), - [anon_sym_fn] = ACTIONS(2248), - [anon_sym_for] = ACTIONS(2248), - [anon_sym_if] = ACTIONS(2248), - [anon_sym_impl] = ACTIONS(2248), - [anon_sym_let] = ACTIONS(2248), - [anon_sym_loop] = ACTIONS(2248), - [anon_sym_match] = ACTIONS(2248), - [anon_sym_mod] = ACTIONS(2248), - [anon_sym_pub] = ACTIONS(2248), - [anon_sym_return] = ACTIONS(2248), - [anon_sym_static] = ACTIONS(2248), - [anon_sym_struct] = ACTIONS(2248), - [anon_sym_trait] = ACTIONS(2248), - [anon_sym_type] = ACTIONS(2248), - [anon_sym_union] = ACTIONS(2248), - [anon_sym_unsafe] = ACTIONS(2248), - [anon_sym_use] = ACTIONS(2248), - [anon_sym_while] = ACTIONS(2248), - [anon_sym_extern] = ACTIONS(2248), - [anon_sym_yield] = ACTIONS(2248), - [anon_sym_move] = ACTIONS(2248), - [anon_sym_try] = ACTIONS(2248), - [sym_integer_literal] = ACTIONS(2246), - [aux_sym_string_literal_token1] = ACTIONS(2246), - [sym_char_literal] = ACTIONS(2246), - [anon_sym_true] = ACTIONS(2248), - [anon_sym_false] = ACTIONS(2248), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2248), - [sym_super] = ACTIONS(2248), - [sym_crate] = ACTIONS(2248), - [sym_metavariable] = ACTIONS(2246), - [sym__raw_string_literal_start] = ACTIONS(2246), - [sym_float_literal] = ACTIONS(2246), + [ts_builtin_sym_end] = ACTIONS(2367), + [sym_identifier] = ACTIONS(2369), + [anon_sym_SEMI] = ACTIONS(2367), + [anon_sym_macro_rules_BANG] = ACTIONS(2367), + [anon_sym_LPAREN] = ACTIONS(2367), + [anon_sym_LBRACK] = ACTIONS(2367), + [anon_sym_LBRACE] = ACTIONS(2367), + [anon_sym_RBRACE] = ACTIONS(2367), + [anon_sym_macro] = ACTIONS(2369), + [anon_sym_STAR] = ACTIONS(2367), + [anon_sym_u8] = ACTIONS(2369), + [anon_sym_i8] = ACTIONS(2369), + [anon_sym_u16] = ACTIONS(2369), + [anon_sym_i16] = ACTIONS(2369), + [anon_sym_u32] = ACTIONS(2369), + [anon_sym_i32] = ACTIONS(2369), + [anon_sym_u64] = ACTIONS(2369), + [anon_sym_i64] = ACTIONS(2369), + [anon_sym_u128] = ACTIONS(2369), + [anon_sym_i128] = ACTIONS(2369), + [anon_sym_isize] = ACTIONS(2369), + [anon_sym_usize] = ACTIONS(2369), + [anon_sym_f32] = ACTIONS(2369), + [anon_sym_f64] = ACTIONS(2369), + [anon_sym_bool] = ACTIONS(2369), + [anon_sym_str] = ACTIONS(2369), + [anon_sym_char] = ACTIONS(2369), + [anon_sym_DASH] = ACTIONS(2367), + [anon_sym_BANG] = ACTIONS(2367), + [anon_sym_AMP] = ACTIONS(2367), + [anon_sym_PIPE] = ACTIONS(2367), + [anon_sym_LT] = ACTIONS(2367), + [anon_sym_DOT_DOT] = ACTIONS(2367), + [anon_sym_COLON_COLON] = ACTIONS(2367), + [anon_sym_POUND] = ACTIONS(2367), + [anon_sym_SQUOTE] = ACTIONS(2369), + [anon_sym_async] = ACTIONS(2369), + [anon_sym_break] = ACTIONS(2369), + [anon_sym_const] = ACTIONS(2369), + [anon_sym_continue] = ACTIONS(2369), + [anon_sym_default] = ACTIONS(2369), + [anon_sym_enum] = ACTIONS(2369), + [anon_sym_fn] = ACTIONS(2369), + [anon_sym_for] = ACTIONS(2369), + [anon_sym_if] = ACTIONS(2369), + [anon_sym_impl] = ACTIONS(2369), + [anon_sym_let] = ACTIONS(2369), + [anon_sym_loop] = ACTIONS(2369), + [anon_sym_match] = ACTIONS(2369), + [anon_sym_mod] = ACTIONS(2369), + [anon_sym_pub] = ACTIONS(2369), + [anon_sym_return] = ACTIONS(2369), + [anon_sym_static] = ACTIONS(2369), + [anon_sym_struct] = ACTIONS(2369), + [anon_sym_trait] = ACTIONS(2369), + [anon_sym_type] = ACTIONS(2369), + [anon_sym_union] = ACTIONS(2369), + [anon_sym_unsafe] = ACTIONS(2369), + [anon_sym_use] = ACTIONS(2369), + [anon_sym_while] = ACTIONS(2369), + [anon_sym_extern] = ACTIONS(2369), + [anon_sym_yield] = ACTIONS(2369), + [anon_sym_move] = ACTIONS(2369), + [anon_sym_try] = ACTIONS(2369), + [sym_integer_literal] = ACTIONS(2367), + [aux_sym_string_literal_token1] = ACTIONS(2367), + [sym_char_literal] = ACTIONS(2367), + [anon_sym_true] = ACTIONS(2369), + [anon_sym_false] = ACTIONS(2369), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2369), + [sym_super] = ACTIONS(2369), + [sym_crate] = ACTIONS(2369), + [sym_metavariable] = ACTIONS(2367), + [sym__raw_string_literal_start] = ACTIONS(2367), + [sym_float_literal] = ACTIONS(2367), }, [626] = { [sym_line_comment] = STATE(626), [sym_block_comment] = STATE(626), - [ts_builtin_sym_end] = ACTIONS(2250), - [sym_identifier] = ACTIONS(2252), - [anon_sym_SEMI] = ACTIONS(2250), - [anon_sym_macro_rules_BANG] = ACTIONS(2250), - [anon_sym_LPAREN] = ACTIONS(2250), - [anon_sym_LBRACK] = ACTIONS(2250), - [anon_sym_LBRACE] = ACTIONS(2250), - [anon_sym_RBRACE] = ACTIONS(2250), - [anon_sym_STAR] = ACTIONS(2250), - [anon_sym_u8] = ACTIONS(2252), - [anon_sym_i8] = ACTIONS(2252), - [anon_sym_u16] = ACTIONS(2252), - [anon_sym_i16] = ACTIONS(2252), - [anon_sym_u32] = ACTIONS(2252), - [anon_sym_i32] = ACTIONS(2252), - [anon_sym_u64] = ACTIONS(2252), - [anon_sym_i64] = ACTIONS(2252), - [anon_sym_u128] = ACTIONS(2252), - [anon_sym_i128] = ACTIONS(2252), - [anon_sym_isize] = ACTIONS(2252), - [anon_sym_usize] = ACTIONS(2252), - [anon_sym_f32] = ACTIONS(2252), - [anon_sym_f64] = ACTIONS(2252), - [anon_sym_bool] = ACTIONS(2252), - [anon_sym_str] = ACTIONS(2252), - [anon_sym_char] = ACTIONS(2252), - [anon_sym_DASH] = ACTIONS(2250), - [anon_sym_BANG] = ACTIONS(2250), - [anon_sym_AMP] = ACTIONS(2250), - [anon_sym_PIPE] = ACTIONS(2250), - [anon_sym_LT] = ACTIONS(2250), - [anon_sym_DOT_DOT] = ACTIONS(2250), - [anon_sym_COLON_COLON] = ACTIONS(2250), - [anon_sym_POUND] = ACTIONS(2250), - [anon_sym_SQUOTE] = ACTIONS(2252), - [anon_sym_async] = ACTIONS(2252), - [anon_sym_break] = ACTIONS(2252), - [anon_sym_const] = ACTIONS(2252), - [anon_sym_continue] = ACTIONS(2252), - [anon_sym_default] = ACTIONS(2252), - [anon_sym_enum] = ACTIONS(2252), - [anon_sym_fn] = ACTIONS(2252), - [anon_sym_for] = ACTIONS(2252), - [anon_sym_if] = ACTIONS(2252), - [anon_sym_impl] = ACTIONS(2252), - [anon_sym_let] = ACTIONS(2252), - [anon_sym_loop] = ACTIONS(2252), - [anon_sym_match] = ACTIONS(2252), - [anon_sym_mod] = ACTIONS(2252), - [anon_sym_pub] = ACTIONS(2252), - [anon_sym_return] = ACTIONS(2252), - [anon_sym_static] = ACTIONS(2252), - [anon_sym_struct] = ACTIONS(2252), - [anon_sym_trait] = ACTIONS(2252), - [anon_sym_type] = ACTIONS(2252), - [anon_sym_union] = ACTIONS(2252), - [anon_sym_unsafe] = ACTIONS(2252), - [anon_sym_use] = ACTIONS(2252), - [anon_sym_while] = ACTIONS(2252), - [anon_sym_extern] = ACTIONS(2252), - [anon_sym_yield] = ACTIONS(2252), - [anon_sym_move] = ACTIONS(2252), - [anon_sym_try] = ACTIONS(2252), - [sym_integer_literal] = ACTIONS(2250), - [aux_sym_string_literal_token1] = ACTIONS(2250), - [sym_char_literal] = ACTIONS(2250), - [anon_sym_true] = ACTIONS(2252), - [anon_sym_false] = ACTIONS(2252), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2252), - [sym_super] = ACTIONS(2252), - [sym_crate] = ACTIONS(2252), - [sym_metavariable] = ACTIONS(2250), - [sym__raw_string_literal_start] = ACTIONS(2250), - [sym_float_literal] = ACTIONS(2250), + [ts_builtin_sym_end] = ACTIONS(2371), + [sym_identifier] = ACTIONS(2373), + [anon_sym_SEMI] = ACTIONS(2371), + [anon_sym_macro_rules_BANG] = ACTIONS(2371), + [anon_sym_LPAREN] = ACTIONS(2371), + [anon_sym_LBRACK] = ACTIONS(2371), + [anon_sym_LBRACE] = ACTIONS(2371), + [anon_sym_RBRACE] = ACTIONS(2371), + [anon_sym_macro] = ACTIONS(2373), + [anon_sym_STAR] = ACTIONS(2371), + [anon_sym_u8] = ACTIONS(2373), + [anon_sym_i8] = ACTIONS(2373), + [anon_sym_u16] = ACTIONS(2373), + [anon_sym_i16] = ACTIONS(2373), + [anon_sym_u32] = ACTIONS(2373), + [anon_sym_i32] = ACTIONS(2373), + [anon_sym_u64] = ACTIONS(2373), + [anon_sym_i64] = ACTIONS(2373), + [anon_sym_u128] = ACTIONS(2373), + [anon_sym_i128] = ACTIONS(2373), + [anon_sym_isize] = ACTIONS(2373), + [anon_sym_usize] = ACTIONS(2373), + [anon_sym_f32] = ACTIONS(2373), + [anon_sym_f64] = ACTIONS(2373), + [anon_sym_bool] = ACTIONS(2373), + [anon_sym_str] = ACTIONS(2373), + [anon_sym_char] = ACTIONS(2373), + [anon_sym_DASH] = ACTIONS(2371), + [anon_sym_BANG] = ACTIONS(2371), + [anon_sym_AMP] = ACTIONS(2371), + [anon_sym_PIPE] = ACTIONS(2371), + [anon_sym_LT] = ACTIONS(2371), + [anon_sym_DOT_DOT] = ACTIONS(2371), + [anon_sym_COLON_COLON] = ACTIONS(2371), + [anon_sym_POUND] = ACTIONS(2371), + [anon_sym_SQUOTE] = ACTIONS(2373), + [anon_sym_async] = ACTIONS(2373), + [anon_sym_break] = ACTIONS(2373), + [anon_sym_const] = ACTIONS(2373), + [anon_sym_continue] = ACTIONS(2373), + [anon_sym_default] = ACTIONS(2373), + [anon_sym_enum] = ACTIONS(2373), + [anon_sym_fn] = ACTIONS(2373), + [anon_sym_for] = ACTIONS(2373), + [anon_sym_if] = ACTIONS(2373), + [anon_sym_impl] = ACTIONS(2373), + [anon_sym_let] = ACTIONS(2373), + [anon_sym_loop] = ACTIONS(2373), + [anon_sym_match] = ACTIONS(2373), + [anon_sym_mod] = ACTIONS(2373), + [anon_sym_pub] = ACTIONS(2373), + [anon_sym_return] = ACTIONS(2373), + [anon_sym_static] = ACTIONS(2373), + [anon_sym_struct] = ACTIONS(2373), + [anon_sym_trait] = ACTIONS(2373), + [anon_sym_type] = ACTIONS(2373), + [anon_sym_union] = ACTIONS(2373), + [anon_sym_unsafe] = ACTIONS(2373), + [anon_sym_use] = ACTIONS(2373), + [anon_sym_while] = ACTIONS(2373), + [anon_sym_extern] = ACTIONS(2373), + [anon_sym_yield] = ACTIONS(2373), + [anon_sym_move] = ACTIONS(2373), + [anon_sym_try] = ACTIONS(2373), + [sym_integer_literal] = ACTIONS(2371), + [aux_sym_string_literal_token1] = ACTIONS(2371), + [sym_char_literal] = ACTIONS(2371), + [anon_sym_true] = ACTIONS(2373), + [anon_sym_false] = ACTIONS(2373), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2373), + [sym_super] = ACTIONS(2373), + [sym_crate] = ACTIONS(2373), + [sym_metavariable] = ACTIONS(2371), + [sym__raw_string_literal_start] = ACTIONS(2371), + [sym_float_literal] = ACTIONS(2371), }, [627] = { [sym_line_comment] = STATE(627), [sym_block_comment] = STATE(627), - [ts_builtin_sym_end] = ACTIONS(2254), - [sym_identifier] = ACTIONS(2256), - [anon_sym_SEMI] = ACTIONS(2254), - [anon_sym_macro_rules_BANG] = ACTIONS(2254), - [anon_sym_LPAREN] = ACTIONS(2254), - [anon_sym_LBRACK] = ACTIONS(2254), - [anon_sym_LBRACE] = ACTIONS(2254), - [anon_sym_RBRACE] = ACTIONS(2254), - [anon_sym_STAR] = ACTIONS(2254), - [anon_sym_u8] = ACTIONS(2256), - [anon_sym_i8] = ACTIONS(2256), - [anon_sym_u16] = ACTIONS(2256), - [anon_sym_i16] = ACTIONS(2256), - [anon_sym_u32] = ACTIONS(2256), - [anon_sym_i32] = ACTIONS(2256), - [anon_sym_u64] = ACTIONS(2256), - [anon_sym_i64] = ACTIONS(2256), - [anon_sym_u128] = ACTIONS(2256), - [anon_sym_i128] = ACTIONS(2256), - [anon_sym_isize] = ACTIONS(2256), - [anon_sym_usize] = ACTIONS(2256), - [anon_sym_f32] = ACTIONS(2256), - [anon_sym_f64] = ACTIONS(2256), - [anon_sym_bool] = ACTIONS(2256), - [anon_sym_str] = ACTIONS(2256), - [anon_sym_char] = ACTIONS(2256), - [anon_sym_DASH] = ACTIONS(2254), - [anon_sym_BANG] = ACTIONS(2254), - [anon_sym_AMP] = ACTIONS(2254), - [anon_sym_PIPE] = ACTIONS(2254), - [anon_sym_LT] = ACTIONS(2254), - [anon_sym_DOT_DOT] = ACTIONS(2254), - [anon_sym_COLON_COLON] = ACTIONS(2254), - [anon_sym_POUND] = ACTIONS(2254), - [anon_sym_SQUOTE] = ACTIONS(2256), - [anon_sym_async] = ACTIONS(2256), - [anon_sym_break] = ACTIONS(2256), - [anon_sym_const] = ACTIONS(2256), - [anon_sym_continue] = ACTIONS(2256), - [anon_sym_default] = ACTIONS(2256), - [anon_sym_enum] = ACTIONS(2256), - [anon_sym_fn] = ACTIONS(2256), - [anon_sym_for] = ACTIONS(2256), - [anon_sym_if] = ACTIONS(2256), - [anon_sym_impl] = ACTIONS(2256), - [anon_sym_let] = ACTIONS(2256), - [anon_sym_loop] = ACTIONS(2256), - [anon_sym_match] = ACTIONS(2256), - [anon_sym_mod] = ACTIONS(2256), - [anon_sym_pub] = ACTIONS(2256), - [anon_sym_return] = ACTIONS(2256), - [anon_sym_static] = ACTIONS(2256), - [anon_sym_struct] = ACTIONS(2256), - [anon_sym_trait] = ACTIONS(2256), - [anon_sym_type] = ACTIONS(2256), - [anon_sym_union] = ACTIONS(2256), - [anon_sym_unsafe] = ACTIONS(2256), - [anon_sym_use] = ACTIONS(2256), - [anon_sym_while] = ACTIONS(2256), - [anon_sym_extern] = ACTIONS(2256), - [anon_sym_yield] = ACTIONS(2256), - [anon_sym_move] = ACTIONS(2256), - [anon_sym_try] = ACTIONS(2256), - [sym_integer_literal] = ACTIONS(2254), - [aux_sym_string_literal_token1] = ACTIONS(2254), - [sym_char_literal] = ACTIONS(2254), - [anon_sym_true] = ACTIONS(2256), - [anon_sym_false] = ACTIONS(2256), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2256), - [sym_super] = ACTIONS(2256), - [sym_crate] = ACTIONS(2256), - [sym_metavariable] = ACTIONS(2254), - [sym__raw_string_literal_start] = ACTIONS(2254), - [sym_float_literal] = ACTIONS(2254), + [ts_builtin_sym_end] = ACTIONS(2375), + [sym_identifier] = ACTIONS(2377), + [anon_sym_SEMI] = ACTIONS(2375), + [anon_sym_macro_rules_BANG] = ACTIONS(2375), + [anon_sym_LPAREN] = ACTIONS(2375), + [anon_sym_LBRACK] = ACTIONS(2375), + [anon_sym_LBRACE] = ACTIONS(2375), + [anon_sym_RBRACE] = ACTIONS(2375), + [anon_sym_macro] = ACTIONS(2377), + [anon_sym_STAR] = ACTIONS(2375), + [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), + [anon_sym_DASH] = ACTIONS(2375), + [anon_sym_BANG] = ACTIONS(2375), + [anon_sym_AMP] = ACTIONS(2375), + [anon_sym_PIPE] = ACTIONS(2375), + [anon_sym_LT] = ACTIONS(2375), + [anon_sym_DOT_DOT] = ACTIONS(2375), + [anon_sym_COLON_COLON] = ACTIONS(2375), + [anon_sym_POUND] = ACTIONS(2375), + [anon_sym_SQUOTE] = ACTIONS(2377), + [anon_sym_async] = 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_while] = ACTIONS(2377), + [anon_sym_extern] = ACTIONS(2377), + [anon_sym_yield] = ACTIONS(2377), + [anon_sym_move] = ACTIONS(2377), + [anon_sym_try] = ACTIONS(2377), + [sym_integer_literal] = ACTIONS(2375), + [aux_sym_string_literal_token1] = ACTIONS(2375), + [sym_char_literal] = ACTIONS(2375), + [anon_sym_true] = ACTIONS(2377), + [anon_sym_false] = ACTIONS(2377), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2377), + [sym_super] = ACTIONS(2377), + [sym_crate] = ACTIONS(2377), + [sym_metavariable] = ACTIONS(2375), + [sym__raw_string_literal_start] = ACTIONS(2375), + [sym_float_literal] = ACTIONS(2375), }, [628] = { [sym_line_comment] = STATE(628), [sym_block_comment] = STATE(628), - [ts_builtin_sym_end] = ACTIONS(2258), - [sym_identifier] = ACTIONS(2260), - [anon_sym_SEMI] = ACTIONS(2258), - [anon_sym_macro_rules_BANG] = ACTIONS(2258), - [anon_sym_LPAREN] = ACTIONS(2258), - [anon_sym_LBRACK] = ACTIONS(2258), - [anon_sym_LBRACE] = ACTIONS(2258), - [anon_sym_RBRACE] = ACTIONS(2258), - [anon_sym_STAR] = ACTIONS(2258), - [anon_sym_u8] = ACTIONS(2260), - [anon_sym_i8] = ACTIONS(2260), - [anon_sym_u16] = ACTIONS(2260), - [anon_sym_i16] = ACTIONS(2260), - [anon_sym_u32] = ACTIONS(2260), - [anon_sym_i32] = ACTIONS(2260), - [anon_sym_u64] = ACTIONS(2260), - [anon_sym_i64] = ACTIONS(2260), - [anon_sym_u128] = ACTIONS(2260), - [anon_sym_i128] = ACTIONS(2260), - [anon_sym_isize] = ACTIONS(2260), - [anon_sym_usize] = ACTIONS(2260), - [anon_sym_f32] = ACTIONS(2260), - [anon_sym_f64] = ACTIONS(2260), - [anon_sym_bool] = ACTIONS(2260), - [anon_sym_str] = ACTIONS(2260), - [anon_sym_char] = ACTIONS(2260), - [anon_sym_DASH] = ACTIONS(2258), - [anon_sym_BANG] = ACTIONS(2258), - [anon_sym_AMP] = ACTIONS(2258), - [anon_sym_PIPE] = ACTIONS(2258), - [anon_sym_LT] = ACTIONS(2258), - [anon_sym_DOT_DOT] = ACTIONS(2258), - [anon_sym_COLON_COLON] = ACTIONS(2258), - [anon_sym_POUND] = ACTIONS(2258), - [anon_sym_SQUOTE] = ACTIONS(2260), - [anon_sym_async] = ACTIONS(2260), - [anon_sym_break] = ACTIONS(2260), - [anon_sym_const] = ACTIONS(2260), - [anon_sym_continue] = ACTIONS(2260), - [anon_sym_default] = ACTIONS(2260), - [anon_sym_enum] = ACTIONS(2260), - [anon_sym_fn] = ACTIONS(2260), - [anon_sym_for] = ACTIONS(2260), - [anon_sym_if] = ACTIONS(2260), - [anon_sym_impl] = ACTIONS(2260), - [anon_sym_let] = ACTIONS(2260), - [anon_sym_loop] = ACTIONS(2260), - [anon_sym_match] = ACTIONS(2260), - [anon_sym_mod] = ACTIONS(2260), - [anon_sym_pub] = ACTIONS(2260), - [anon_sym_return] = ACTIONS(2260), - [anon_sym_static] = ACTIONS(2260), - [anon_sym_struct] = ACTIONS(2260), - [anon_sym_trait] = ACTIONS(2260), - [anon_sym_type] = ACTIONS(2260), - [anon_sym_union] = ACTIONS(2260), - [anon_sym_unsafe] = ACTIONS(2260), - [anon_sym_use] = ACTIONS(2260), - [anon_sym_while] = ACTIONS(2260), - [anon_sym_extern] = ACTIONS(2260), - [anon_sym_yield] = ACTIONS(2260), - [anon_sym_move] = ACTIONS(2260), - [anon_sym_try] = ACTIONS(2260), - [sym_integer_literal] = ACTIONS(2258), - [aux_sym_string_literal_token1] = ACTIONS(2258), - [sym_char_literal] = ACTIONS(2258), - [anon_sym_true] = ACTIONS(2260), - [anon_sym_false] = ACTIONS(2260), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2260), - [sym_super] = ACTIONS(2260), - [sym_crate] = ACTIONS(2260), - [sym_metavariable] = ACTIONS(2258), - [sym__raw_string_literal_start] = ACTIONS(2258), - [sym_float_literal] = ACTIONS(2258), + [ts_builtin_sym_end] = ACTIONS(2379), + [sym_identifier] = ACTIONS(2381), + [anon_sym_SEMI] = ACTIONS(2379), + [anon_sym_macro_rules_BANG] = ACTIONS(2379), + [anon_sym_LPAREN] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(2379), + [anon_sym_LBRACE] = ACTIONS(2379), + [anon_sym_RBRACE] = ACTIONS(2379), + [anon_sym_macro] = ACTIONS(2381), + [anon_sym_STAR] = ACTIONS(2379), + [anon_sym_u8] = ACTIONS(2381), + [anon_sym_i8] = ACTIONS(2381), + [anon_sym_u16] = ACTIONS(2381), + [anon_sym_i16] = ACTIONS(2381), + [anon_sym_u32] = ACTIONS(2381), + [anon_sym_i32] = ACTIONS(2381), + [anon_sym_u64] = ACTIONS(2381), + [anon_sym_i64] = ACTIONS(2381), + [anon_sym_u128] = ACTIONS(2381), + [anon_sym_i128] = ACTIONS(2381), + [anon_sym_isize] = ACTIONS(2381), + [anon_sym_usize] = ACTIONS(2381), + [anon_sym_f32] = ACTIONS(2381), + [anon_sym_f64] = ACTIONS(2381), + [anon_sym_bool] = ACTIONS(2381), + [anon_sym_str] = ACTIONS(2381), + [anon_sym_char] = ACTIONS(2381), + [anon_sym_DASH] = ACTIONS(2379), + [anon_sym_BANG] = ACTIONS(2379), + [anon_sym_AMP] = ACTIONS(2379), + [anon_sym_PIPE] = ACTIONS(2379), + [anon_sym_LT] = ACTIONS(2379), + [anon_sym_DOT_DOT] = ACTIONS(2379), + [anon_sym_COLON_COLON] = ACTIONS(2379), + [anon_sym_POUND] = ACTIONS(2379), + [anon_sym_SQUOTE] = ACTIONS(2381), + [anon_sym_async] = ACTIONS(2381), + [anon_sym_break] = ACTIONS(2381), + [anon_sym_const] = ACTIONS(2381), + [anon_sym_continue] = ACTIONS(2381), + [anon_sym_default] = ACTIONS(2381), + [anon_sym_enum] = ACTIONS(2381), + [anon_sym_fn] = ACTIONS(2381), + [anon_sym_for] = ACTIONS(2381), + [anon_sym_if] = ACTIONS(2381), + [anon_sym_impl] = ACTIONS(2381), + [anon_sym_let] = ACTIONS(2381), + [anon_sym_loop] = ACTIONS(2381), + [anon_sym_match] = ACTIONS(2381), + [anon_sym_mod] = ACTIONS(2381), + [anon_sym_pub] = ACTIONS(2381), + [anon_sym_return] = ACTIONS(2381), + [anon_sym_static] = ACTIONS(2381), + [anon_sym_struct] = ACTIONS(2381), + [anon_sym_trait] = ACTIONS(2381), + [anon_sym_type] = ACTIONS(2381), + [anon_sym_union] = ACTIONS(2381), + [anon_sym_unsafe] = ACTIONS(2381), + [anon_sym_use] = ACTIONS(2381), + [anon_sym_while] = ACTIONS(2381), + [anon_sym_extern] = ACTIONS(2381), + [anon_sym_yield] = ACTIONS(2381), + [anon_sym_move] = ACTIONS(2381), + [anon_sym_try] = ACTIONS(2381), + [sym_integer_literal] = ACTIONS(2379), + [aux_sym_string_literal_token1] = ACTIONS(2379), + [sym_char_literal] = ACTIONS(2379), + [anon_sym_true] = ACTIONS(2381), + [anon_sym_false] = ACTIONS(2381), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2381), + [sym_super] = ACTIONS(2381), + [sym_crate] = ACTIONS(2381), + [sym_metavariable] = ACTIONS(2379), + [sym__raw_string_literal_start] = ACTIONS(2379), + [sym_float_literal] = ACTIONS(2379), }, [629] = { [sym_line_comment] = STATE(629), [sym_block_comment] = STATE(629), - [ts_builtin_sym_end] = ACTIONS(2262), - [sym_identifier] = ACTIONS(2264), - [anon_sym_SEMI] = ACTIONS(2262), - [anon_sym_macro_rules_BANG] = ACTIONS(2262), - [anon_sym_LPAREN] = ACTIONS(2262), - [anon_sym_LBRACK] = ACTIONS(2262), - [anon_sym_LBRACE] = ACTIONS(2262), - [anon_sym_RBRACE] = ACTIONS(2262), - [anon_sym_STAR] = ACTIONS(2262), - [anon_sym_u8] = ACTIONS(2264), - [anon_sym_i8] = ACTIONS(2264), - [anon_sym_u16] = ACTIONS(2264), - [anon_sym_i16] = ACTIONS(2264), - [anon_sym_u32] = ACTIONS(2264), - [anon_sym_i32] = ACTIONS(2264), - [anon_sym_u64] = ACTIONS(2264), - [anon_sym_i64] = ACTIONS(2264), - [anon_sym_u128] = ACTIONS(2264), - [anon_sym_i128] = ACTIONS(2264), - [anon_sym_isize] = ACTIONS(2264), - [anon_sym_usize] = ACTIONS(2264), - [anon_sym_f32] = ACTIONS(2264), - [anon_sym_f64] = ACTIONS(2264), - [anon_sym_bool] = ACTIONS(2264), - [anon_sym_str] = ACTIONS(2264), - [anon_sym_char] = ACTIONS(2264), - [anon_sym_DASH] = ACTIONS(2262), - [anon_sym_BANG] = ACTIONS(2262), - [anon_sym_AMP] = ACTIONS(2262), - [anon_sym_PIPE] = ACTIONS(2262), - [anon_sym_LT] = ACTIONS(2262), - [anon_sym_DOT_DOT] = ACTIONS(2262), - [anon_sym_COLON_COLON] = ACTIONS(2262), - [anon_sym_POUND] = ACTIONS(2262), - [anon_sym_SQUOTE] = ACTIONS(2264), - [anon_sym_async] = ACTIONS(2264), - [anon_sym_break] = ACTIONS(2264), - [anon_sym_const] = ACTIONS(2264), - [anon_sym_continue] = ACTIONS(2264), - [anon_sym_default] = ACTIONS(2264), - [anon_sym_enum] = ACTIONS(2264), - [anon_sym_fn] = ACTIONS(2264), - [anon_sym_for] = ACTIONS(2264), - [anon_sym_if] = ACTIONS(2264), - [anon_sym_impl] = ACTIONS(2264), - [anon_sym_let] = ACTIONS(2264), - [anon_sym_loop] = ACTIONS(2264), - [anon_sym_match] = ACTIONS(2264), - [anon_sym_mod] = ACTIONS(2264), - [anon_sym_pub] = ACTIONS(2264), - [anon_sym_return] = ACTIONS(2264), - [anon_sym_static] = ACTIONS(2264), - [anon_sym_struct] = ACTIONS(2264), - [anon_sym_trait] = ACTIONS(2264), - [anon_sym_type] = ACTIONS(2264), - [anon_sym_union] = ACTIONS(2264), - [anon_sym_unsafe] = ACTIONS(2264), - [anon_sym_use] = ACTIONS(2264), - [anon_sym_while] = ACTIONS(2264), - [anon_sym_extern] = ACTIONS(2264), - [anon_sym_yield] = ACTIONS(2264), - [anon_sym_move] = ACTIONS(2264), - [anon_sym_try] = ACTIONS(2264), - [sym_integer_literal] = ACTIONS(2262), - [aux_sym_string_literal_token1] = ACTIONS(2262), - [sym_char_literal] = ACTIONS(2262), - [anon_sym_true] = ACTIONS(2264), - [anon_sym_false] = ACTIONS(2264), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2264), - [sym_super] = ACTIONS(2264), - [sym_crate] = ACTIONS(2264), - [sym_metavariable] = ACTIONS(2262), - [sym__raw_string_literal_start] = ACTIONS(2262), - [sym_float_literal] = ACTIONS(2262), + [ts_builtin_sym_end] = ACTIONS(2383), + [sym_identifier] = ACTIONS(2385), + [anon_sym_SEMI] = ACTIONS(2383), + [anon_sym_macro_rules_BANG] = ACTIONS(2383), + [anon_sym_LPAREN] = ACTIONS(2383), + [anon_sym_LBRACK] = ACTIONS(2383), + [anon_sym_LBRACE] = ACTIONS(2383), + [anon_sym_RBRACE] = ACTIONS(2383), + [anon_sym_macro] = ACTIONS(2385), + [anon_sym_STAR] = ACTIONS(2383), + [anon_sym_u8] = ACTIONS(2385), + [anon_sym_i8] = ACTIONS(2385), + [anon_sym_u16] = ACTIONS(2385), + [anon_sym_i16] = ACTIONS(2385), + [anon_sym_u32] = ACTIONS(2385), + [anon_sym_i32] = ACTIONS(2385), + [anon_sym_u64] = ACTIONS(2385), + [anon_sym_i64] = ACTIONS(2385), + [anon_sym_u128] = ACTIONS(2385), + [anon_sym_i128] = ACTIONS(2385), + [anon_sym_isize] = ACTIONS(2385), + [anon_sym_usize] = ACTIONS(2385), + [anon_sym_f32] = ACTIONS(2385), + [anon_sym_f64] = ACTIONS(2385), + [anon_sym_bool] = ACTIONS(2385), + [anon_sym_str] = ACTIONS(2385), + [anon_sym_char] = ACTIONS(2385), + [anon_sym_DASH] = ACTIONS(2383), + [anon_sym_BANG] = ACTIONS(2383), + [anon_sym_AMP] = ACTIONS(2383), + [anon_sym_PIPE] = ACTIONS(2383), + [anon_sym_LT] = ACTIONS(2383), + [anon_sym_DOT_DOT] = ACTIONS(2383), + [anon_sym_COLON_COLON] = ACTIONS(2383), + [anon_sym_POUND] = ACTIONS(2383), + [anon_sym_SQUOTE] = ACTIONS(2385), + [anon_sym_async] = ACTIONS(2385), + [anon_sym_break] = ACTIONS(2385), + [anon_sym_const] = ACTIONS(2385), + [anon_sym_continue] = ACTIONS(2385), + [anon_sym_default] = ACTIONS(2385), + [anon_sym_enum] = ACTIONS(2385), + [anon_sym_fn] = ACTIONS(2385), + [anon_sym_for] = ACTIONS(2385), + [anon_sym_if] = ACTIONS(2385), + [anon_sym_impl] = ACTIONS(2385), + [anon_sym_let] = ACTIONS(2385), + [anon_sym_loop] = ACTIONS(2385), + [anon_sym_match] = ACTIONS(2385), + [anon_sym_mod] = ACTIONS(2385), + [anon_sym_pub] = ACTIONS(2385), + [anon_sym_return] = ACTIONS(2385), + [anon_sym_static] = ACTIONS(2385), + [anon_sym_struct] = ACTIONS(2385), + [anon_sym_trait] = ACTIONS(2385), + [anon_sym_type] = ACTIONS(2385), + [anon_sym_union] = ACTIONS(2385), + [anon_sym_unsafe] = ACTIONS(2385), + [anon_sym_use] = ACTIONS(2385), + [anon_sym_while] = ACTIONS(2385), + [anon_sym_extern] = ACTIONS(2385), + [anon_sym_yield] = ACTIONS(2385), + [anon_sym_move] = ACTIONS(2385), + [anon_sym_try] = ACTIONS(2385), + [sym_integer_literal] = ACTIONS(2383), + [aux_sym_string_literal_token1] = ACTIONS(2383), + [sym_char_literal] = ACTIONS(2383), + [anon_sym_true] = ACTIONS(2385), + [anon_sym_false] = ACTIONS(2385), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2385), + [sym_super] = ACTIONS(2385), + [sym_crate] = ACTIONS(2385), + [sym_metavariable] = ACTIONS(2383), + [sym__raw_string_literal_start] = ACTIONS(2383), + [sym_float_literal] = ACTIONS(2383), }, [630] = { [sym_line_comment] = STATE(630), [sym_block_comment] = STATE(630), - [ts_builtin_sym_end] = ACTIONS(2266), - [sym_identifier] = ACTIONS(2268), - [anon_sym_SEMI] = ACTIONS(2266), - [anon_sym_macro_rules_BANG] = ACTIONS(2266), - [anon_sym_LPAREN] = ACTIONS(2266), - [anon_sym_LBRACK] = ACTIONS(2266), - [anon_sym_LBRACE] = ACTIONS(2266), - [anon_sym_RBRACE] = ACTIONS(2266), - [anon_sym_STAR] = ACTIONS(2266), - [anon_sym_u8] = ACTIONS(2268), - [anon_sym_i8] = ACTIONS(2268), - [anon_sym_u16] = ACTIONS(2268), - [anon_sym_i16] = ACTIONS(2268), - [anon_sym_u32] = ACTIONS(2268), - [anon_sym_i32] = ACTIONS(2268), - [anon_sym_u64] = ACTIONS(2268), - [anon_sym_i64] = ACTIONS(2268), - [anon_sym_u128] = ACTIONS(2268), - [anon_sym_i128] = ACTIONS(2268), - [anon_sym_isize] = ACTIONS(2268), - [anon_sym_usize] = ACTIONS(2268), - [anon_sym_f32] = ACTIONS(2268), - [anon_sym_f64] = ACTIONS(2268), - [anon_sym_bool] = ACTIONS(2268), - [anon_sym_str] = ACTIONS(2268), - [anon_sym_char] = ACTIONS(2268), - [anon_sym_DASH] = ACTIONS(2266), - [anon_sym_BANG] = ACTIONS(2266), - [anon_sym_AMP] = ACTIONS(2266), - [anon_sym_PIPE] = ACTIONS(2266), - [anon_sym_LT] = ACTIONS(2266), - [anon_sym_DOT_DOT] = ACTIONS(2266), - [anon_sym_COLON_COLON] = ACTIONS(2266), - [anon_sym_POUND] = ACTIONS(2266), - [anon_sym_SQUOTE] = ACTIONS(2268), - [anon_sym_async] = ACTIONS(2268), - [anon_sym_break] = ACTIONS(2268), - [anon_sym_const] = ACTIONS(2268), - [anon_sym_continue] = ACTIONS(2268), - [anon_sym_default] = ACTIONS(2268), - [anon_sym_enum] = ACTIONS(2268), - [anon_sym_fn] = ACTIONS(2268), - [anon_sym_for] = ACTIONS(2268), - [anon_sym_if] = ACTIONS(2268), - [anon_sym_impl] = ACTIONS(2268), - [anon_sym_let] = ACTIONS(2268), - [anon_sym_loop] = ACTIONS(2268), - [anon_sym_match] = ACTIONS(2268), - [anon_sym_mod] = ACTIONS(2268), - [anon_sym_pub] = ACTIONS(2268), - [anon_sym_return] = ACTIONS(2268), - [anon_sym_static] = ACTIONS(2268), - [anon_sym_struct] = ACTIONS(2268), - [anon_sym_trait] = ACTIONS(2268), - [anon_sym_type] = ACTIONS(2268), - [anon_sym_union] = ACTIONS(2268), - [anon_sym_unsafe] = ACTIONS(2268), - [anon_sym_use] = ACTIONS(2268), - [anon_sym_while] = ACTIONS(2268), - [anon_sym_extern] = ACTIONS(2268), - [anon_sym_yield] = ACTIONS(2268), - [anon_sym_move] = ACTIONS(2268), - [anon_sym_try] = ACTIONS(2268), - [sym_integer_literal] = ACTIONS(2266), - [aux_sym_string_literal_token1] = ACTIONS(2266), - [sym_char_literal] = ACTIONS(2266), - [anon_sym_true] = ACTIONS(2268), - [anon_sym_false] = ACTIONS(2268), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2268), - [sym_super] = ACTIONS(2268), - [sym_crate] = ACTIONS(2268), - [sym_metavariable] = ACTIONS(2266), - [sym__raw_string_literal_start] = ACTIONS(2266), - [sym_float_literal] = ACTIONS(2266), + [ts_builtin_sym_end] = ACTIONS(2387), + [sym_identifier] = ACTIONS(2389), + [anon_sym_SEMI] = ACTIONS(2387), + [anon_sym_macro_rules_BANG] = ACTIONS(2387), + [anon_sym_LPAREN] = ACTIONS(2387), + [anon_sym_LBRACK] = ACTIONS(2387), + [anon_sym_LBRACE] = ACTIONS(2387), + [anon_sym_RBRACE] = ACTIONS(2387), + [anon_sym_macro] = ACTIONS(2389), + [anon_sym_STAR] = ACTIONS(2387), + [anon_sym_u8] = ACTIONS(2389), + [anon_sym_i8] = ACTIONS(2389), + [anon_sym_u16] = ACTIONS(2389), + [anon_sym_i16] = ACTIONS(2389), + [anon_sym_u32] = ACTIONS(2389), + [anon_sym_i32] = ACTIONS(2389), + [anon_sym_u64] = ACTIONS(2389), + [anon_sym_i64] = ACTIONS(2389), + [anon_sym_u128] = ACTIONS(2389), + [anon_sym_i128] = ACTIONS(2389), + [anon_sym_isize] = ACTIONS(2389), + [anon_sym_usize] = ACTIONS(2389), + [anon_sym_f32] = ACTIONS(2389), + [anon_sym_f64] = ACTIONS(2389), + [anon_sym_bool] = ACTIONS(2389), + [anon_sym_str] = ACTIONS(2389), + [anon_sym_char] = ACTIONS(2389), + [anon_sym_DASH] = ACTIONS(2387), + [anon_sym_BANG] = ACTIONS(2387), + [anon_sym_AMP] = ACTIONS(2387), + [anon_sym_PIPE] = ACTIONS(2387), + [anon_sym_LT] = ACTIONS(2387), + [anon_sym_DOT_DOT] = ACTIONS(2387), + [anon_sym_COLON_COLON] = ACTIONS(2387), + [anon_sym_POUND] = ACTIONS(2387), + [anon_sym_SQUOTE] = ACTIONS(2389), + [anon_sym_async] = ACTIONS(2389), + [anon_sym_break] = ACTIONS(2389), + [anon_sym_const] = ACTIONS(2389), + [anon_sym_continue] = ACTIONS(2389), + [anon_sym_default] = ACTIONS(2389), + [anon_sym_enum] = ACTIONS(2389), + [anon_sym_fn] = ACTIONS(2389), + [anon_sym_for] = ACTIONS(2389), + [anon_sym_if] = ACTIONS(2389), + [anon_sym_impl] = ACTIONS(2389), + [anon_sym_let] = ACTIONS(2389), + [anon_sym_loop] = ACTIONS(2389), + [anon_sym_match] = ACTIONS(2389), + [anon_sym_mod] = ACTIONS(2389), + [anon_sym_pub] = ACTIONS(2389), + [anon_sym_return] = ACTIONS(2389), + [anon_sym_static] = ACTIONS(2389), + [anon_sym_struct] = ACTIONS(2389), + [anon_sym_trait] = ACTIONS(2389), + [anon_sym_type] = ACTIONS(2389), + [anon_sym_union] = ACTIONS(2389), + [anon_sym_unsafe] = ACTIONS(2389), + [anon_sym_use] = ACTIONS(2389), + [anon_sym_while] = ACTIONS(2389), + [anon_sym_extern] = ACTIONS(2389), + [anon_sym_yield] = ACTIONS(2389), + [anon_sym_move] = ACTIONS(2389), + [anon_sym_try] = ACTIONS(2389), + [sym_integer_literal] = ACTIONS(2387), + [aux_sym_string_literal_token1] = ACTIONS(2387), + [sym_char_literal] = ACTIONS(2387), + [anon_sym_true] = ACTIONS(2389), + [anon_sym_false] = ACTIONS(2389), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2389), + [sym_super] = ACTIONS(2389), + [sym_crate] = ACTIONS(2389), + [sym_metavariable] = ACTIONS(2387), + [sym__raw_string_literal_start] = ACTIONS(2387), + [sym_float_literal] = ACTIONS(2387), }, [631] = { [sym_line_comment] = STATE(631), [sym_block_comment] = STATE(631), - [ts_builtin_sym_end] = ACTIONS(2270), - [sym_identifier] = ACTIONS(2272), - [anon_sym_SEMI] = ACTIONS(2270), - [anon_sym_macro_rules_BANG] = ACTIONS(2270), - [anon_sym_LPAREN] = ACTIONS(2270), - [anon_sym_LBRACK] = ACTIONS(2270), - [anon_sym_LBRACE] = ACTIONS(2270), - [anon_sym_RBRACE] = ACTIONS(2270), - [anon_sym_STAR] = ACTIONS(2270), - [anon_sym_u8] = ACTIONS(2272), - [anon_sym_i8] = ACTIONS(2272), - [anon_sym_u16] = ACTIONS(2272), - [anon_sym_i16] = ACTIONS(2272), - [anon_sym_u32] = ACTIONS(2272), - [anon_sym_i32] = ACTIONS(2272), - [anon_sym_u64] = ACTIONS(2272), - [anon_sym_i64] = ACTIONS(2272), - [anon_sym_u128] = ACTIONS(2272), - [anon_sym_i128] = ACTIONS(2272), - [anon_sym_isize] = ACTIONS(2272), - [anon_sym_usize] = ACTIONS(2272), - [anon_sym_f32] = ACTIONS(2272), - [anon_sym_f64] = ACTIONS(2272), - [anon_sym_bool] = ACTIONS(2272), - [anon_sym_str] = ACTIONS(2272), - [anon_sym_char] = ACTIONS(2272), - [anon_sym_DASH] = ACTIONS(2270), - [anon_sym_BANG] = ACTIONS(2270), - [anon_sym_AMP] = ACTIONS(2270), - [anon_sym_PIPE] = ACTIONS(2270), - [anon_sym_LT] = ACTIONS(2270), - [anon_sym_DOT_DOT] = ACTIONS(2270), - [anon_sym_COLON_COLON] = ACTIONS(2270), - [anon_sym_POUND] = ACTIONS(2270), - [anon_sym_SQUOTE] = ACTIONS(2272), - [anon_sym_async] = ACTIONS(2272), - [anon_sym_break] = ACTIONS(2272), - [anon_sym_const] = ACTIONS(2272), - [anon_sym_continue] = ACTIONS(2272), - [anon_sym_default] = ACTIONS(2272), - [anon_sym_enum] = ACTIONS(2272), - [anon_sym_fn] = ACTIONS(2272), - [anon_sym_for] = ACTIONS(2272), - [anon_sym_if] = ACTIONS(2272), - [anon_sym_impl] = ACTIONS(2272), - [anon_sym_let] = ACTIONS(2272), - [anon_sym_loop] = ACTIONS(2272), - [anon_sym_match] = ACTIONS(2272), - [anon_sym_mod] = ACTIONS(2272), - [anon_sym_pub] = ACTIONS(2272), - [anon_sym_return] = ACTIONS(2272), - [anon_sym_static] = ACTIONS(2272), - [anon_sym_struct] = ACTIONS(2272), - [anon_sym_trait] = ACTIONS(2272), - [anon_sym_type] = ACTIONS(2272), - [anon_sym_union] = ACTIONS(2272), - [anon_sym_unsafe] = ACTIONS(2272), - [anon_sym_use] = ACTIONS(2272), - [anon_sym_while] = ACTIONS(2272), - [anon_sym_extern] = ACTIONS(2272), - [anon_sym_yield] = ACTIONS(2272), - [anon_sym_move] = ACTIONS(2272), - [anon_sym_try] = ACTIONS(2272), - [sym_integer_literal] = ACTIONS(2270), - [aux_sym_string_literal_token1] = ACTIONS(2270), - [sym_char_literal] = ACTIONS(2270), - [anon_sym_true] = ACTIONS(2272), - [anon_sym_false] = ACTIONS(2272), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2272), - [sym_super] = ACTIONS(2272), - [sym_crate] = ACTIONS(2272), - [sym_metavariable] = ACTIONS(2270), - [sym__raw_string_literal_start] = ACTIONS(2270), - [sym_float_literal] = ACTIONS(2270), + [ts_builtin_sym_end] = ACTIONS(2391), + [sym_identifier] = ACTIONS(2393), + [anon_sym_SEMI] = ACTIONS(2391), + [anon_sym_macro_rules_BANG] = ACTIONS(2391), + [anon_sym_LPAREN] = ACTIONS(2391), + [anon_sym_LBRACK] = ACTIONS(2391), + [anon_sym_LBRACE] = ACTIONS(2391), + [anon_sym_RBRACE] = ACTIONS(2391), + [anon_sym_macro] = ACTIONS(2393), + [anon_sym_STAR] = ACTIONS(2391), + [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), + [anon_sym_DASH] = ACTIONS(2391), + [anon_sym_BANG] = ACTIONS(2391), + [anon_sym_AMP] = ACTIONS(2391), + [anon_sym_PIPE] = ACTIONS(2391), + [anon_sym_LT] = ACTIONS(2391), + [anon_sym_DOT_DOT] = ACTIONS(2391), + [anon_sym_COLON_COLON] = ACTIONS(2391), + [anon_sym_POUND] = ACTIONS(2391), + [anon_sym_SQUOTE] = ACTIONS(2393), + [anon_sym_async] = 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_while] = ACTIONS(2393), + [anon_sym_extern] = ACTIONS(2393), + [anon_sym_yield] = ACTIONS(2393), + [anon_sym_move] = ACTIONS(2393), + [anon_sym_try] = ACTIONS(2393), + [sym_integer_literal] = ACTIONS(2391), + [aux_sym_string_literal_token1] = ACTIONS(2391), + [sym_char_literal] = ACTIONS(2391), + [anon_sym_true] = ACTIONS(2393), + [anon_sym_false] = ACTIONS(2393), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2393), + [sym_super] = ACTIONS(2393), + [sym_crate] = ACTIONS(2393), + [sym_metavariable] = ACTIONS(2391), + [sym__raw_string_literal_start] = ACTIONS(2391), + [sym_float_literal] = ACTIONS(2391), }, [632] = { [sym_line_comment] = STATE(632), [sym_block_comment] = STATE(632), - [ts_builtin_sym_end] = ACTIONS(2274), - [sym_identifier] = ACTIONS(2276), - [anon_sym_SEMI] = ACTIONS(2274), - [anon_sym_macro_rules_BANG] = ACTIONS(2274), - [anon_sym_LPAREN] = ACTIONS(2274), - [anon_sym_LBRACK] = ACTIONS(2274), - [anon_sym_LBRACE] = ACTIONS(2274), - [anon_sym_RBRACE] = ACTIONS(2274), - [anon_sym_STAR] = ACTIONS(2274), - [anon_sym_u8] = ACTIONS(2276), - [anon_sym_i8] = ACTIONS(2276), - [anon_sym_u16] = ACTIONS(2276), - [anon_sym_i16] = ACTIONS(2276), - [anon_sym_u32] = ACTIONS(2276), - [anon_sym_i32] = ACTIONS(2276), - [anon_sym_u64] = ACTIONS(2276), - [anon_sym_i64] = ACTIONS(2276), - [anon_sym_u128] = ACTIONS(2276), - [anon_sym_i128] = ACTIONS(2276), - [anon_sym_isize] = ACTIONS(2276), - [anon_sym_usize] = ACTIONS(2276), - [anon_sym_f32] = ACTIONS(2276), - [anon_sym_f64] = ACTIONS(2276), - [anon_sym_bool] = ACTIONS(2276), - [anon_sym_str] = ACTIONS(2276), - [anon_sym_char] = ACTIONS(2276), - [anon_sym_DASH] = ACTIONS(2274), - [anon_sym_BANG] = ACTIONS(2274), - [anon_sym_AMP] = ACTIONS(2274), - [anon_sym_PIPE] = ACTIONS(2274), - [anon_sym_LT] = ACTIONS(2274), - [anon_sym_DOT_DOT] = ACTIONS(2274), - [anon_sym_COLON_COLON] = ACTIONS(2274), - [anon_sym_POUND] = ACTIONS(2274), - [anon_sym_SQUOTE] = ACTIONS(2276), - [anon_sym_async] = ACTIONS(2276), - [anon_sym_break] = ACTIONS(2276), - [anon_sym_const] = ACTIONS(2276), - [anon_sym_continue] = ACTIONS(2276), - [anon_sym_default] = ACTIONS(2276), - [anon_sym_enum] = ACTIONS(2276), - [anon_sym_fn] = ACTIONS(2276), - [anon_sym_for] = ACTIONS(2276), - [anon_sym_if] = ACTIONS(2276), - [anon_sym_impl] = ACTIONS(2276), - [anon_sym_let] = ACTIONS(2276), - [anon_sym_loop] = ACTIONS(2276), - [anon_sym_match] = ACTIONS(2276), - [anon_sym_mod] = ACTIONS(2276), - [anon_sym_pub] = ACTIONS(2276), - [anon_sym_return] = ACTIONS(2276), - [anon_sym_static] = ACTIONS(2276), - [anon_sym_struct] = ACTIONS(2276), - [anon_sym_trait] = ACTIONS(2276), - [anon_sym_type] = ACTIONS(2276), - [anon_sym_union] = ACTIONS(2276), - [anon_sym_unsafe] = ACTIONS(2276), - [anon_sym_use] = ACTIONS(2276), - [anon_sym_while] = ACTIONS(2276), - [anon_sym_extern] = ACTIONS(2276), - [anon_sym_yield] = ACTIONS(2276), - [anon_sym_move] = ACTIONS(2276), - [anon_sym_try] = ACTIONS(2276), - [sym_integer_literal] = ACTIONS(2274), - [aux_sym_string_literal_token1] = ACTIONS(2274), - [sym_char_literal] = ACTIONS(2274), - [anon_sym_true] = ACTIONS(2276), - [anon_sym_false] = ACTIONS(2276), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2276), - [sym_super] = ACTIONS(2276), - [sym_crate] = ACTIONS(2276), - [sym_metavariable] = ACTIONS(2274), - [sym__raw_string_literal_start] = ACTIONS(2274), - [sym_float_literal] = ACTIONS(2274), + [ts_builtin_sym_end] = ACTIONS(2395), + [sym_identifier] = ACTIONS(2397), + [anon_sym_SEMI] = ACTIONS(2395), + [anon_sym_macro_rules_BANG] = ACTIONS(2395), + [anon_sym_LPAREN] = ACTIONS(2395), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2395), + [anon_sym_RBRACE] = ACTIONS(2395), + [anon_sym_macro] = ACTIONS(2397), + [anon_sym_STAR] = ACTIONS(2395), + [anon_sym_u8] = ACTIONS(2397), + [anon_sym_i8] = ACTIONS(2397), + [anon_sym_u16] = ACTIONS(2397), + [anon_sym_i16] = ACTIONS(2397), + [anon_sym_u32] = ACTIONS(2397), + [anon_sym_i32] = ACTIONS(2397), + [anon_sym_u64] = ACTIONS(2397), + [anon_sym_i64] = ACTIONS(2397), + [anon_sym_u128] = ACTIONS(2397), + [anon_sym_i128] = ACTIONS(2397), + [anon_sym_isize] = ACTIONS(2397), + [anon_sym_usize] = ACTIONS(2397), + [anon_sym_f32] = ACTIONS(2397), + [anon_sym_f64] = ACTIONS(2397), + [anon_sym_bool] = ACTIONS(2397), + [anon_sym_str] = ACTIONS(2397), + [anon_sym_char] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_BANG] = ACTIONS(2395), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_PIPE] = ACTIONS(2395), + [anon_sym_LT] = ACTIONS(2395), + [anon_sym_DOT_DOT] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2395), + [anon_sym_POUND] = ACTIONS(2395), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_async] = ACTIONS(2397), + [anon_sym_break] = ACTIONS(2397), + [anon_sym_const] = ACTIONS(2397), + [anon_sym_continue] = ACTIONS(2397), + [anon_sym_default] = ACTIONS(2397), + [anon_sym_enum] = ACTIONS(2397), + [anon_sym_fn] = ACTIONS(2397), + [anon_sym_for] = ACTIONS(2397), + [anon_sym_if] = ACTIONS(2397), + [anon_sym_impl] = ACTIONS(2397), + [anon_sym_let] = ACTIONS(2397), + [anon_sym_loop] = ACTIONS(2397), + [anon_sym_match] = ACTIONS(2397), + [anon_sym_mod] = ACTIONS(2397), + [anon_sym_pub] = ACTIONS(2397), + [anon_sym_return] = ACTIONS(2397), + [anon_sym_static] = ACTIONS(2397), + [anon_sym_struct] = ACTIONS(2397), + [anon_sym_trait] = ACTIONS(2397), + [anon_sym_type] = ACTIONS(2397), + [anon_sym_union] = ACTIONS(2397), + [anon_sym_unsafe] = ACTIONS(2397), + [anon_sym_use] = ACTIONS(2397), + [anon_sym_while] = ACTIONS(2397), + [anon_sym_extern] = ACTIONS(2397), + [anon_sym_yield] = ACTIONS(2397), + [anon_sym_move] = ACTIONS(2397), + [anon_sym_try] = ACTIONS(2397), + [sym_integer_literal] = ACTIONS(2395), + [aux_sym_string_literal_token1] = ACTIONS(2395), + [sym_char_literal] = ACTIONS(2395), + [anon_sym_true] = ACTIONS(2397), + [anon_sym_false] = ACTIONS(2397), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2397), + [sym_super] = ACTIONS(2397), + [sym_crate] = ACTIONS(2397), + [sym_metavariable] = ACTIONS(2395), + [sym__raw_string_literal_start] = ACTIONS(2395), + [sym_float_literal] = ACTIONS(2395), }, [633] = { + [sym_attribute_item] = STATE(1515), + [sym_inner_attribute_item] = STATE(1515), + [sym_bracketed_type] = STATE(3618), + [sym_generic_type] = STATE(3491), + [sym_generic_type_with_turbofish] = STATE(3218), + [sym_macro_invocation] = STATE(2994), + [sym_scoped_identifier] = STATE(2165), + [sym_scoped_type_identifier] = STATE(2786), + [sym_match_arm] = STATE(1505), + [sym_last_match_arm] = STATE(3471), + [sym_match_pattern] = STATE(3700), + [sym_const_block] = STATE(2994), + [sym__pattern] = STATE(3082), + [sym_tuple_pattern] = STATE(2994), + [sym_slice_pattern] = STATE(2994), + [sym_tuple_struct_pattern] = STATE(2994), + [sym_struct_pattern] = STATE(2994), + [sym_remaining_field_pattern] = STATE(2994), + [sym_mut_pattern] = STATE(2994), + [sym_range_pattern] = STATE(2994), + [sym_ref_pattern] = STATE(2994), + [sym_captured_pattern] = STATE(2994), + [sym_reference_pattern] = STATE(2994), + [sym_or_pattern] = STATE(2994), + [sym__literal_pattern] = STATE(2380), + [sym_negative_literal] = STATE(2383), + [sym_string_literal] = STATE(2383), + [sym_raw_string_literal] = STATE(2383), + [sym_boolean_literal] = STATE(2383), [sym_line_comment] = STATE(633), [sym_block_comment] = STATE(633), - [ts_builtin_sym_end] = ACTIONS(2278), - [sym_identifier] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2278), - [anon_sym_macro_rules_BANG] = ACTIONS(2278), - [anon_sym_LPAREN] = ACTIONS(2278), - [anon_sym_LBRACK] = ACTIONS(2278), - [anon_sym_LBRACE] = ACTIONS(2278), - [anon_sym_RBRACE] = ACTIONS(2278), - [anon_sym_STAR] = ACTIONS(2278), - [anon_sym_u8] = ACTIONS(2280), - [anon_sym_i8] = ACTIONS(2280), - [anon_sym_u16] = ACTIONS(2280), - [anon_sym_i16] = ACTIONS(2280), - [anon_sym_u32] = ACTIONS(2280), - [anon_sym_i32] = ACTIONS(2280), - [anon_sym_u64] = ACTIONS(2280), - [anon_sym_i64] = ACTIONS(2280), - [anon_sym_u128] = ACTIONS(2280), - [anon_sym_i128] = ACTIONS(2280), - [anon_sym_isize] = ACTIONS(2280), - [anon_sym_usize] = ACTIONS(2280), - [anon_sym_f32] = ACTIONS(2280), - [anon_sym_f64] = ACTIONS(2280), - [anon_sym_bool] = ACTIONS(2280), - [anon_sym_str] = ACTIONS(2280), - [anon_sym_char] = ACTIONS(2280), - [anon_sym_DASH] = ACTIONS(2278), - [anon_sym_BANG] = ACTIONS(2278), - [anon_sym_AMP] = ACTIONS(2278), - [anon_sym_PIPE] = ACTIONS(2278), - [anon_sym_LT] = ACTIONS(2278), - [anon_sym_DOT_DOT] = ACTIONS(2278), - [anon_sym_COLON_COLON] = ACTIONS(2278), - [anon_sym_POUND] = ACTIONS(2278), - [anon_sym_SQUOTE] = ACTIONS(2280), - [anon_sym_async] = ACTIONS(2280), - [anon_sym_break] = ACTIONS(2280), - [anon_sym_const] = ACTIONS(2280), - [anon_sym_continue] = ACTIONS(2280), - [anon_sym_default] = ACTIONS(2280), - [anon_sym_enum] = ACTIONS(2280), - [anon_sym_fn] = ACTIONS(2280), - [anon_sym_for] = ACTIONS(2280), - [anon_sym_if] = ACTIONS(2280), - [anon_sym_impl] = ACTIONS(2280), - [anon_sym_let] = ACTIONS(2280), - [anon_sym_loop] = ACTIONS(2280), - [anon_sym_match] = ACTIONS(2280), - [anon_sym_mod] = ACTIONS(2280), - [anon_sym_pub] = ACTIONS(2280), - [anon_sym_return] = ACTIONS(2280), - [anon_sym_static] = ACTIONS(2280), - [anon_sym_struct] = ACTIONS(2280), - [anon_sym_trait] = ACTIONS(2280), - [anon_sym_type] = ACTIONS(2280), - [anon_sym_union] = ACTIONS(2280), - [anon_sym_unsafe] = ACTIONS(2280), - [anon_sym_use] = ACTIONS(2280), - [anon_sym_while] = ACTIONS(2280), - [anon_sym_extern] = ACTIONS(2280), - [anon_sym_yield] = ACTIONS(2280), - [anon_sym_move] = ACTIONS(2280), - [anon_sym_try] = ACTIONS(2280), - [sym_integer_literal] = ACTIONS(2278), - [aux_sym_string_literal_token1] = ACTIONS(2278), - [sym_char_literal] = ACTIONS(2278), - [anon_sym_true] = ACTIONS(2280), - [anon_sym_false] = ACTIONS(2280), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2280), - [sym_super] = ACTIONS(2280), - [sym_crate] = ACTIONS(2280), - [sym_metavariable] = ACTIONS(2278), - [sym__raw_string_literal_start] = ACTIONS(2278), - [sym_float_literal] = ACTIONS(2278), + [aux_sym_match_block_repeat1] = STATE(773), + [aux_sym_match_arm_repeat1] = STATE(780), + [sym_identifier] = ACTIONS(1621), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACK] = ACTIONS(1625), + [anon_sym_u8] = ACTIONS(1629), + [anon_sym_i8] = ACTIONS(1629), + [anon_sym_u16] = ACTIONS(1629), + [anon_sym_i16] = ACTIONS(1629), + [anon_sym_u32] = ACTIONS(1629), + [anon_sym_i32] = ACTIONS(1629), + [anon_sym_u64] = ACTIONS(1629), + [anon_sym_i64] = ACTIONS(1629), + [anon_sym_u128] = ACTIONS(1629), + [anon_sym_i128] = ACTIONS(1629), + [anon_sym_isize] = ACTIONS(1629), + [anon_sym_usize] = ACTIONS(1629), + [anon_sym_f32] = ACTIONS(1629), + [anon_sym_f64] = ACTIONS(1629), + [anon_sym_bool] = ACTIONS(1629), + [anon_sym_str] = ACTIONS(1629), + [anon_sym_char] = ACTIONS(1629), + [anon_sym_DASH] = ACTIONS(1631), + [anon_sym_AMP] = ACTIONS(1633), + [anon_sym_PIPE] = ACTIONS(1635), + [anon_sym_LT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1637), + [anon_sym_DOT_DOT] = ACTIONS(1639), + [anon_sym_COLON_COLON] = ACTIONS(1641), + [anon_sym_POUND] = ACTIONS(1643), + [anon_sym_const] = ACTIONS(1645), + [anon_sym_default] = ACTIONS(1647), + [anon_sym_union] = ACTIONS(1647), + [anon_sym_ref] = ACTIONS(1649), + [sym_mutable_specifier] = ACTIONS(1651), + [sym_integer_literal] = ACTIONS(1653), + [aux_sym_string_literal_token1] = ACTIONS(1655), + [sym_char_literal] = ACTIONS(1653), + [anon_sym_true] = ACTIONS(1657), + [anon_sym_false] = ACTIONS(1657), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1659), + [sym_super] = ACTIONS(1659), + [sym_crate] = ACTIONS(1659), + [sym_metavariable] = ACTIONS(1661), + [sym__raw_string_literal_start] = ACTIONS(1663), + [sym_float_literal] = ACTIONS(1653), }, [634] = { [sym_line_comment] = STATE(634), [sym_block_comment] = STATE(634), - [ts_builtin_sym_end] = ACTIONS(2282), - [sym_identifier] = ACTIONS(2284), - [anon_sym_SEMI] = ACTIONS(2282), - [anon_sym_macro_rules_BANG] = ACTIONS(2282), - [anon_sym_LPAREN] = ACTIONS(2282), - [anon_sym_LBRACK] = ACTIONS(2282), - [anon_sym_LBRACE] = ACTIONS(2282), - [anon_sym_RBRACE] = ACTIONS(2282), - [anon_sym_STAR] = ACTIONS(2282), - [anon_sym_u8] = ACTIONS(2284), - [anon_sym_i8] = ACTIONS(2284), - [anon_sym_u16] = ACTIONS(2284), - [anon_sym_i16] = ACTIONS(2284), - [anon_sym_u32] = ACTIONS(2284), - [anon_sym_i32] = ACTIONS(2284), - [anon_sym_u64] = ACTIONS(2284), - [anon_sym_i64] = ACTIONS(2284), - [anon_sym_u128] = ACTIONS(2284), - [anon_sym_i128] = ACTIONS(2284), - [anon_sym_isize] = ACTIONS(2284), - [anon_sym_usize] = ACTIONS(2284), - [anon_sym_f32] = ACTIONS(2284), - [anon_sym_f64] = ACTIONS(2284), - [anon_sym_bool] = ACTIONS(2284), - [anon_sym_str] = ACTIONS(2284), - [anon_sym_char] = ACTIONS(2284), - [anon_sym_DASH] = ACTIONS(2282), - [anon_sym_BANG] = ACTIONS(2282), - [anon_sym_AMP] = ACTIONS(2282), - [anon_sym_PIPE] = ACTIONS(2282), - [anon_sym_LT] = ACTIONS(2282), - [anon_sym_DOT_DOT] = ACTIONS(2282), - [anon_sym_COLON_COLON] = ACTIONS(2282), - [anon_sym_POUND] = ACTIONS(2282), - [anon_sym_SQUOTE] = ACTIONS(2284), - [anon_sym_async] = ACTIONS(2284), - [anon_sym_break] = ACTIONS(2284), - [anon_sym_const] = ACTIONS(2284), - [anon_sym_continue] = ACTIONS(2284), - [anon_sym_default] = ACTIONS(2284), - [anon_sym_enum] = ACTIONS(2284), - [anon_sym_fn] = ACTIONS(2284), - [anon_sym_for] = ACTIONS(2284), - [anon_sym_if] = ACTIONS(2284), - [anon_sym_impl] = ACTIONS(2284), - [anon_sym_let] = ACTIONS(2284), - [anon_sym_loop] = ACTIONS(2284), - [anon_sym_match] = ACTIONS(2284), - [anon_sym_mod] = ACTIONS(2284), - [anon_sym_pub] = ACTIONS(2284), - [anon_sym_return] = ACTIONS(2284), - [anon_sym_static] = ACTIONS(2284), - [anon_sym_struct] = ACTIONS(2284), - [anon_sym_trait] = ACTIONS(2284), - [anon_sym_type] = ACTIONS(2284), - [anon_sym_union] = ACTIONS(2284), - [anon_sym_unsafe] = ACTIONS(2284), - [anon_sym_use] = ACTIONS(2284), - [anon_sym_while] = ACTIONS(2284), - [anon_sym_extern] = ACTIONS(2284), - [anon_sym_yield] = ACTIONS(2284), - [anon_sym_move] = ACTIONS(2284), - [anon_sym_try] = ACTIONS(2284), - [sym_integer_literal] = ACTIONS(2282), - [aux_sym_string_literal_token1] = ACTIONS(2282), - [sym_char_literal] = ACTIONS(2282), - [anon_sym_true] = ACTIONS(2284), - [anon_sym_false] = ACTIONS(2284), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2284), - [sym_super] = ACTIONS(2284), - [sym_crate] = ACTIONS(2284), - [sym_metavariable] = ACTIONS(2282), - [sym__raw_string_literal_start] = ACTIONS(2282), - [sym_float_literal] = ACTIONS(2282), + [ts_builtin_sym_end] = ACTIONS(2399), + [sym_identifier] = ACTIONS(2401), + [anon_sym_SEMI] = ACTIONS(2399), + [anon_sym_macro_rules_BANG] = ACTIONS(2399), + [anon_sym_LPAREN] = ACTIONS(2399), + [anon_sym_LBRACK] = ACTIONS(2399), + [anon_sym_LBRACE] = ACTIONS(2399), + [anon_sym_RBRACE] = ACTIONS(2399), + [anon_sym_macro] = ACTIONS(2401), + [anon_sym_STAR] = ACTIONS(2399), + [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), + [anon_sym_DASH] = ACTIONS(2399), + [anon_sym_BANG] = ACTIONS(2399), + [anon_sym_AMP] = ACTIONS(2399), + [anon_sym_PIPE] = ACTIONS(2399), + [anon_sym_LT] = ACTIONS(2399), + [anon_sym_DOT_DOT] = ACTIONS(2399), + [anon_sym_COLON_COLON] = ACTIONS(2399), + [anon_sym_POUND] = ACTIONS(2399), + [anon_sym_SQUOTE] = ACTIONS(2401), + [anon_sym_async] = 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_while] = ACTIONS(2401), + [anon_sym_extern] = ACTIONS(2401), + [anon_sym_yield] = ACTIONS(2401), + [anon_sym_move] = ACTIONS(2401), + [anon_sym_try] = ACTIONS(2401), + [sym_integer_literal] = ACTIONS(2399), + [aux_sym_string_literal_token1] = ACTIONS(2399), + [sym_char_literal] = ACTIONS(2399), + [anon_sym_true] = ACTIONS(2401), + [anon_sym_false] = ACTIONS(2401), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2401), + [sym_super] = ACTIONS(2401), + [sym_crate] = ACTIONS(2401), + [sym_metavariable] = ACTIONS(2399), + [sym__raw_string_literal_start] = ACTIONS(2399), + [sym_float_literal] = ACTIONS(2399), }, [635] = { [sym_line_comment] = STATE(635), [sym_block_comment] = STATE(635), - [ts_builtin_sym_end] = ACTIONS(2286), - [sym_identifier] = ACTIONS(2288), - [anon_sym_SEMI] = ACTIONS(2286), - [anon_sym_macro_rules_BANG] = ACTIONS(2286), - [anon_sym_LPAREN] = ACTIONS(2286), - [anon_sym_LBRACK] = ACTIONS(2286), - [anon_sym_LBRACE] = ACTIONS(2286), - [anon_sym_RBRACE] = ACTIONS(2286), - [anon_sym_STAR] = ACTIONS(2286), - [anon_sym_u8] = ACTIONS(2288), - [anon_sym_i8] = ACTIONS(2288), - [anon_sym_u16] = ACTIONS(2288), - [anon_sym_i16] = ACTIONS(2288), - [anon_sym_u32] = ACTIONS(2288), - [anon_sym_i32] = ACTIONS(2288), - [anon_sym_u64] = ACTIONS(2288), - [anon_sym_i64] = ACTIONS(2288), - [anon_sym_u128] = ACTIONS(2288), - [anon_sym_i128] = ACTIONS(2288), - [anon_sym_isize] = ACTIONS(2288), - [anon_sym_usize] = ACTIONS(2288), - [anon_sym_f32] = ACTIONS(2288), - [anon_sym_f64] = ACTIONS(2288), - [anon_sym_bool] = ACTIONS(2288), - [anon_sym_str] = ACTIONS(2288), - [anon_sym_char] = ACTIONS(2288), - [anon_sym_DASH] = ACTIONS(2286), - [anon_sym_BANG] = ACTIONS(2286), - [anon_sym_AMP] = ACTIONS(2286), - [anon_sym_PIPE] = ACTIONS(2286), - [anon_sym_LT] = ACTIONS(2286), - [anon_sym_DOT_DOT] = ACTIONS(2286), - [anon_sym_COLON_COLON] = ACTIONS(2286), - [anon_sym_POUND] = ACTIONS(2286), - [anon_sym_SQUOTE] = ACTIONS(2288), - [anon_sym_async] = ACTIONS(2288), - [anon_sym_break] = ACTIONS(2288), - [anon_sym_const] = ACTIONS(2288), - [anon_sym_continue] = ACTIONS(2288), - [anon_sym_default] = ACTIONS(2288), - [anon_sym_enum] = ACTIONS(2288), - [anon_sym_fn] = ACTIONS(2288), - [anon_sym_for] = ACTIONS(2288), - [anon_sym_if] = ACTIONS(2288), - [anon_sym_impl] = ACTIONS(2288), - [anon_sym_let] = ACTIONS(2288), - [anon_sym_loop] = ACTIONS(2288), - [anon_sym_match] = ACTIONS(2288), - [anon_sym_mod] = ACTIONS(2288), - [anon_sym_pub] = ACTIONS(2288), - [anon_sym_return] = ACTIONS(2288), - [anon_sym_static] = ACTIONS(2288), - [anon_sym_struct] = ACTIONS(2288), - [anon_sym_trait] = ACTIONS(2288), - [anon_sym_type] = ACTIONS(2288), - [anon_sym_union] = ACTIONS(2288), - [anon_sym_unsafe] = ACTIONS(2288), - [anon_sym_use] = ACTIONS(2288), - [anon_sym_while] = ACTIONS(2288), - [anon_sym_extern] = ACTIONS(2288), - [anon_sym_yield] = ACTIONS(2288), - [anon_sym_move] = ACTIONS(2288), - [anon_sym_try] = ACTIONS(2288), - [sym_integer_literal] = ACTIONS(2286), - [aux_sym_string_literal_token1] = ACTIONS(2286), - [sym_char_literal] = ACTIONS(2286), - [anon_sym_true] = ACTIONS(2288), - [anon_sym_false] = ACTIONS(2288), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2288), - [sym_super] = ACTIONS(2288), - [sym_crate] = ACTIONS(2288), - [sym_metavariable] = ACTIONS(2286), - [sym__raw_string_literal_start] = ACTIONS(2286), - [sym_float_literal] = ACTIONS(2286), + [ts_builtin_sym_end] = ACTIONS(2403), + [sym_identifier] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2403), + [anon_sym_macro_rules_BANG] = ACTIONS(2403), + [anon_sym_LPAREN] = ACTIONS(2403), + [anon_sym_LBRACK] = ACTIONS(2403), + [anon_sym_LBRACE] = ACTIONS(2403), + [anon_sym_RBRACE] = ACTIONS(2403), + [anon_sym_macro] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2403), + [anon_sym_u8] = ACTIONS(2405), + [anon_sym_i8] = ACTIONS(2405), + [anon_sym_u16] = ACTIONS(2405), + [anon_sym_i16] = ACTIONS(2405), + [anon_sym_u32] = ACTIONS(2405), + [anon_sym_i32] = ACTIONS(2405), + [anon_sym_u64] = ACTIONS(2405), + [anon_sym_i64] = ACTIONS(2405), + [anon_sym_u128] = ACTIONS(2405), + [anon_sym_i128] = ACTIONS(2405), + [anon_sym_isize] = ACTIONS(2405), + [anon_sym_usize] = ACTIONS(2405), + [anon_sym_f32] = ACTIONS(2405), + [anon_sym_f64] = ACTIONS(2405), + [anon_sym_bool] = ACTIONS(2405), + [anon_sym_str] = ACTIONS(2405), + [anon_sym_char] = ACTIONS(2405), + [anon_sym_DASH] = ACTIONS(2403), + [anon_sym_BANG] = ACTIONS(2403), + [anon_sym_AMP] = ACTIONS(2403), + [anon_sym_PIPE] = ACTIONS(2403), + [anon_sym_LT] = ACTIONS(2403), + [anon_sym_DOT_DOT] = ACTIONS(2403), + [anon_sym_COLON_COLON] = ACTIONS(2403), + [anon_sym_POUND] = ACTIONS(2403), + [anon_sym_SQUOTE] = ACTIONS(2405), + [anon_sym_async] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_fn] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_impl] = ACTIONS(2405), + [anon_sym_let] = ACTIONS(2405), + [anon_sym_loop] = ACTIONS(2405), + [anon_sym_match] = ACTIONS(2405), + [anon_sym_mod] = ACTIONS(2405), + [anon_sym_pub] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_trait] = ACTIONS(2405), + [anon_sym_type] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_unsafe] = ACTIONS(2405), + [anon_sym_use] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym_yield] = ACTIONS(2405), + [anon_sym_move] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [sym_integer_literal] = ACTIONS(2403), + [aux_sym_string_literal_token1] = ACTIONS(2403), + [sym_char_literal] = ACTIONS(2403), + [anon_sym_true] = ACTIONS(2405), + [anon_sym_false] = ACTIONS(2405), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2405), + [sym_super] = ACTIONS(2405), + [sym_crate] = ACTIONS(2405), + [sym_metavariable] = ACTIONS(2403), + [sym__raw_string_literal_start] = ACTIONS(2403), + [sym_float_literal] = ACTIONS(2403), }, [636] = { [sym_line_comment] = STATE(636), [sym_block_comment] = STATE(636), - [ts_builtin_sym_end] = ACTIONS(2290), - [sym_identifier] = ACTIONS(2292), - [anon_sym_SEMI] = ACTIONS(2290), - [anon_sym_macro_rules_BANG] = ACTIONS(2290), - [anon_sym_LPAREN] = ACTIONS(2290), - [anon_sym_LBRACK] = ACTIONS(2290), - [anon_sym_LBRACE] = ACTIONS(2290), - [anon_sym_RBRACE] = ACTIONS(2290), - [anon_sym_STAR] = ACTIONS(2290), - [anon_sym_u8] = ACTIONS(2292), - [anon_sym_i8] = ACTIONS(2292), - [anon_sym_u16] = ACTIONS(2292), - [anon_sym_i16] = ACTIONS(2292), - [anon_sym_u32] = ACTIONS(2292), - [anon_sym_i32] = ACTIONS(2292), - [anon_sym_u64] = ACTIONS(2292), - [anon_sym_i64] = ACTIONS(2292), - [anon_sym_u128] = ACTIONS(2292), - [anon_sym_i128] = ACTIONS(2292), - [anon_sym_isize] = ACTIONS(2292), - [anon_sym_usize] = ACTIONS(2292), - [anon_sym_f32] = ACTIONS(2292), - [anon_sym_f64] = ACTIONS(2292), - [anon_sym_bool] = ACTIONS(2292), - [anon_sym_str] = ACTIONS(2292), - [anon_sym_char] = ACTIONS(2292), - [anon_sym_DASH] = ACTIONS(2290), - [anon_sym_BANG] = ACTIONS(2290), - [anon_sym_AMP] = ACTIONS(2290), - [anon_sym_PIPE] = ACTIONS(2290), - [anon_sym_LT] = ACTIONS(2290), - [anon_sym_DOT_DOT] = ACTIONS(2290), - [anon_sym_COLON_COLON] = ACTIONS(2290), - [anon_sym_POUND] = ACTIONS(2290), - [anon_sym_SQUOTE] = ACTIONS(2292), - [anon_sym_async] = ACTIONS(2292), - [anon_sym_break] = ACTIONS(2292), - [anon_sym_const] = ACTIONS(2292), - [anon_sym_continue] = ACTIONS(2292), - [anon_sym_default] = ACTIONS(2292), - [anon_sym_enum] = ACTIONS(2292), - [anon_sym_fn] = ACTIONS(2292), - [anon_sym_for] = ACTIONS(2292), - [anon_sym_if] = ACTIONS(2292), - [anon_sym_impl] = ACTIONS(2292), - [anon_sym_let] = ACTIONS(2292), - [anon_sym_loop] = ACTIONS(2292), - [anon_sym_match] = ACTIONS(2292), - [anon_sym_mod] = ACTIONS(2292), - [anon_sym_pub] = ACTIONS(2292), - [anon_sym_return] = ACTIONS(2292), - [anon_sym_static] = ACTIONS(2292), - [anon_sym_struct] = ACTIONS(2292), - [anon_sym_trait] = ACTIONS(2292), - [anon_sym_type] = ACTIONS(2292), - [anon_sym_union] = ACTIONS(2292), - [anon_sym_unsafe] = ACTIONS(2292), - [anon_sym_use] = ACTIONS(2292), - [anon_sym_while] = ACTIONS(2292), - [anon_sym_extern] = ACTIONS(2292), - [anon_sym_yield] = ACTIONS(2292), - [anon_sym_move] = ACTIONS(2292), - [anon_sym_try] = ACTIONS(2292), - [sym_integer_literal] = ACTIONS(2290), - [aux_sym_string_literal_token1] = ACTIONS(2290), - [sym_char_literal] = ACTIONS(2290), - [anon_sym_true] = ACTIONS(2292), - [anon_sym_false] = ACTIONS(2292), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2292), - [sym_super] = ACTIONS(2292), - [sym_crate] = ACTIONS(2292), - [sym_metavariable] = ACTIONS(2290), - [sym__raw_string_literal_start] = ACTIONS(2290), - [sym_float_literal] = ACTIONS(2290), + [ts_builtin_sym_end] = ACTIONS(2407), + [sym_identifier] = ACTIONS(2409), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_macro_rules_BANG] = ACTIONS(2407), + [anon_sym_LPAREN] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2407), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_RBRACE] = ACTIONS(2407), + [anon_sym_macro] = ACTIONS(2409), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_u8] = ACTIONS(2409), + [anon_sym_i8] = ACTIONS(2409), + [anon_sym_u16] = ACTIONS(2409), + [anon_sym_i16] = ACTIONS(2409), + [anon_sym_u32] = ACTIONS(2409), + [anon_sym_i32] = ACTIONS(2409), + [anon_sym_u64] = ACTIONS(2409), + [anon_sym_i64] = ACTIONS(2409), + [anon_sym_u128] = ACTIONS(2409), + [anon_sym_i128] = ACTIONS(2409), + [anon_sym_isize] = ACTIONS(2409), + [anon_sym_usize] = ACTIONS(2409), + [anon_sym_f32] = ACTIONS(2409), + [anon_sym_f64] = ACTIONS(2409), + [anon_sym_bool] = ACTIONS(2409), + [anon_sym_str] = ACTIONS(2409), + [anon_sym_char] = ACTIONS(2409), + [anon_sym_DASH] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2407), + [anon_sym_PIPE] = ACTIONS(2407), + [anon_sym_LT] = ACTIONS(2407), + [anon_sym_DOT_DOT] = ACTIONS(2407), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_POUND] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2409), + [anon_sym_async] = ACTIONS(2409), + [anon_sym_break] = ACTIONS(2409), + [anon_sym_const] = ACTIONS(2409), + [anon_sym_continue] = ACTIONS(2409), + [anon_sym_default] = ACTIONS(2409), + [anon_sym_enum] = ACTIONS(2409), + [anon_sym_fn] = ACTIONS(2409), + [anon_sym_for] = ACTIONS(2409), + [anon_sym_if] = ACTIONS(2409), + [anon_sym_impl] = ACTIONS(2409), + [anon_sym_let] = ACTIONS(2409), + [anon_sym_loop] = ACTIONS(2409), + [anon_sym_match] = ACTIONS(2409), + [anon_sym_mod] = ACTIONS(2409), + [anon_sym_pub] = ACTIONS(2409), + [anon_sym_return] = ACTIONS(2409), + [anon_sym_static] = ACTIONS(2409), + [anon_sym_struct] = ACTIONS(2409), + [anon_sym_trait] = ACTIONS(2409), + [anon_sym_type] = ACTIONS(2409), + [anon_sym_union] = ACTIONS(2409), + [anon_sym_unsafe] = ACTIONS(2409), + [anon_sym_use] = ACTIONS(2409), + [anon_sym_while] = ACTIONS(2409), + [anon_sym_extern] = ACTIONS(2409), + [anon_sym_yield] = ACTIONS(2409), + [anon_sym_move] = ACTIONS(2409), + [anon_sym_try] = ACTIONS(2409), + [sym_integer_literal] = ACTIONS(2407), + [aux_sym_string_literal_token1] = ACTIONS(2407), + [sym_char_literal] = ACTIONS(2407), + [anon_sym_true] = ACTIONS(2409), + [anon_sym_false] = ACTIONS(2409), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2409), + [sym_super] = ACTIONS(2409), + [sym_crate] = ACTIONS(2409), + [sym_metavariable] = ACTIONS(2407), + [sym__raw_string_literal_start] = ACTIONS(2407), + [sym_float_literal] = ACTIONS(2407), }, [637] = { [sym_line_comment] = STATE(637), [sym_block_comment] = STATE(637), - [ts_builtin_sym_end] = ACTIONS(2294), - [sym_identifier] = ACTIONS(2296), - [anon_sym_SEMI] = ACTIONS(2294), - [anon_sym_macro_rules_BANG] = ACTIONS(2294), - [anon_sym_LPAREN] = ACTIONS(2294), - [anon_sym_LBRACK] = ACTIONS(2294), - [anon_sym_LBRACE] = ACTIONS(2294), - [anon_sym_RBRACE] = ACTIONS(2294), - [anon_sym_STAR] = ACTIONS(2294), - [anon_sym_u8] = ACTIONS(2296), - [anon_sym_i8] = ACTIONS(2296), - [anon_sym_u16] = ACTIONS(2296), - [anon_sym_i16] = ACTIONS(2296), - [anon_sym_u32] = ACTIONS(2296), - [anon_sym_i32] = ACTIONS(2296), - [anon_sym_u64] = ACTIONS(2296), - [anon_sym_i64] = ACTIONS(2296), - [anon_sym_u128] = ACTIONS(2296), - [anon_sym_i128] = ACTIONS(2296), - [anon_sym_isize] = ACTIONS(2296), - [anon_sym_usize] = ACTIONS(2296), - [anon_sym_f32] = ACTIONS(2296), - [anon_sym_f64] = ACTIONS(2296), - [anon_sym_bool] = ACTIONS(2296), - [anon_sym_str] = ACTIONS(2296), - [anon_sym_char] = ACTIONS(2296), - [anon_sym_DASH] = ACTIONS(2294), - [anon_sym_BANG] = ACTIONS(2294), - [anon_sym_AMP] = ACTIONS(2294), - [anon_sym_PIPE] = ACTIONS(2294), - [anon_sym_LT] = ACTIONS(2294), - [anon_sym_DOT_DOT] = ACTIONS(2294), - [anon_sym_COLON_COLON] = ACTIONS(2294), - [anon_sym_POUND] = ACTIONS(2294), - [anon_sym_SQUOTE] = ACTIONS(2296), - [anon_sym_async] = ACTIONS(2296), - [anon_sym_break] = ACTIONS(2296), - [anon_sym_const] = ACTIONS(2296), - [anon_sym_continue] = ACTIONS(2296), - [anon_sym_default] = ACTIONS(2296), - [anon_sym_enum] = ACTIONS(2296), - [anon_sym_fn] = ACTIONS(2296), - [anon_sym_for] = ACTIONS(2296), - [anon_sym_if] = ACTIONS(2296), - [anon_sym_impl] = ACTIONS(2296), - [anon_sym_let] = ACTIONS(2296), - [anon_sym_loop] = ACTIONS(2296), - [anon_sym_match] = ACTIONS(2296), - [anon_sym_mod] = ACTIONS(2296), - [anon_sym_pub] = ACTIONS(2296), - [anon_sym_return] = ACTIONS(2296), - [anon_sym_static] = ACTIONS(2296), - [anon_sym_struct] = ACTIONS(2296), - [anon_sym_trait] = ACTIONS(2296), - [anon_sym_type] = ACTIONS(2296), - [anon_sym_union] = ACTIONS(2296), - [anon_sym_unsafe] = ACTIONS(2296), - [anon_sym_use] = ACTIONS(2296), - [anon_sym_while] = ACTIONS(2296), - [anon_sym_extern] = ACTIONS(2296), - [anon_sym_yield] = ACTIONS(2296), - [anon_sym_move] = ACTIONS(2296), - [anon_sym_try] = ACTIONS(2296), - [sym_integer_literal] = ACTIONS(2294), - [aux_sym_string_literal_token1] = ACTIONS(2294), - [sym_char_literal] = ACTIONS(2294), - [anon_sym_true] = ACTIONS(2296), - [anon_sym_false] = ACTIONS(2296), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2296), - [sym_super] = ACTIONS(2296), - [sym_crate] = ACTIONS(2296), - [sym_metavariable] = ACTIONS(2294), - [sym__raw_string_literal_start] = ACTIONS(2294), - [sym_float_literal] = ACTIONS(2294), + [ts_builtin_sym_end] = ACTIONS(2411), + [sym_identifier] = ACTIONS(2413), + [anon_sym_SEMI] = ACTIONS(2411), + [anon_sym_macro_rules_BANG] = ACTIONS(2411), + [anon_sym_LPAREN] = ACTIONS(2411), + [anon_sym_LBRACK] = ACTIONS(2411), + [anon_sym_LBRACE] = ACTIONS(2411), + [anon_sym_RBRACE] = ACTIONS(2411), + [anon_sym_macro] = ACTIONS(2413), + [anon_sym_STAR] = ACTIONS(2411), + [anon_sym_u8] = ACTIONS(2413), + [anon_sym_i8] = ACTIONS(2413), + [anon_sym_u16] = ACTIONS(2413), + [anon_sym_i16] = ACTIONS(2413), + [anon_sym_u32] = ACTIONS(2413), + [anon_sym_i32] = ACTIONS(2413), + [anon_sym_u64] = ACTIONS(2413), + [anon_sym_i64] = ACTIONS(2413), + [anon_sym_u128] = ACTIONS(2413), + [anon_sym_i128] = ACTIONS(2413), + [anon_sym_isize] = ACTIONS(2413), + [anon_sym_usize] = ACTIONS(2413), + [anon_sym_f32] = ACTIONS(2413), + [anon_sym_f64] = ACTIONS(2413), + [anon_sym_bool] = ACTIONS(2413), + [anon_sym_str] = ACTIONS(2413), + [anon_sym_char] = ACTIONS(2413), + [anon_sym_DASH] = ACTIONS(2411), + [anon_sym_BANG] = ACTIONS(2411), + [anon_sym_AMP] = ACTIONS(2411), + [anon_sym_PIPE] = ACTIONS(2411), + [anon_sym_LT] = ACTIONS(2411), + [anon_sym_DOT_DOT] = ACTIONS(2411), + [anon_sym_COLON_COLON] = ACTIONS(2411), + [anon_sym_POUND] = ACTIONS(2411), + [anon_sym_SQUOTE] = ACTIONS(2413), + [anon_sym_async] = ACTIONS(2413), + [anon_sym_break] = ACTIONS(2413), + [anon_sym_const] = ACTIONS(2413), + [anon_sym_continue] = ACTIONS(2413), + [anon_sym_default] = ACTIONS(2413), + [anon_sym_enum] = ACTIONS(2413), + [anon_sym_fn] = ACTIONS(2413), + [anon_sym_for] = ACTIONS(2413), + [anon_sym_if] = ACTIONS(2413), + [anon_sym_impl] = ACTIONS(2413), + [anon_sym_let] = ACTIONS(2413), + [anon_sym_loop] = ACTIONS(2413), + [anon_sym_match] = ACTIONS(2413), + [anon_sym_mod] = ACTIONS(2413), + [anon_sym_pub] = ACTIONS(2413), + [anon_sym_return] = ACTIONS(2413), + [anon_sym_static] = ACTIONS(2413), + [anon_sym_struct] = ACTIONS(2413), + [anon_sym_trait] = ACTIONS(2413), + [anon_sym_type] = ACTIONS(2413), + [anon_sym_union] = ACTIONS(2413), + [anon_sym_unsafe] = ACTIONS(2413), + [anon_sym_use] = ACTIONS(2413), + [anon_sym_while] = ACTIONS(2413), + [anon_sym_extern] = ACTIONS(2413), + [anon_sym_yield] = ACTIONS(2413), + [anon_sym_move] = ACTIONS(2413), + [anon_sym_try] = ACTIONS(2413), + [sym_integer_literal] = ACTIONS(2411), + [aux_sym_string_literal_token1] = ACTIONS(2411), + [sym_char_literal] = ACTIONS(2411), + [anon_sym_true] = ACTIONS(2413), + [anon_sym_false] = ACTIONS(2413), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2413), + [sym_super] = ACTIONS(2413), + [sym_crate] = ACTIONS(2413), + [sym_metavariable] = ACTIONS(2411), + [sym__raw_string_literal_start] = ACTIONS(2411), + [sym_float_literal] = ACTIONS(2411), }, [638] = { [sym_line_comment] = STATE(638), [sym_block_comment] = STATE(638), - [ts_builtin_sym_end] = ACTIONS(2298), - [sym_identifier] = ACTIONS(2300), - [anon_sym_SEMI] = ACTIONS(2298), - [anon_sym_macro_rules_BANG] = ACTIONS(2298), - [anon_sym_LPAREN] = ACTIONS(2298), - [anon_sym_LBRACK] = ACTIONS(2298), - [anon_sym_LBRACE] = ACTIONS(2298), - [anon_sym_RBRACE] = ACTIONS(2298), - [anon_sym_STAR] = ACTIONS(2298), - [anon_sym_u8] = ACTIONS(2300), - [anon_sym_i8] = ACTIONS(2300), - [anon_sym_u16] = ACTIONS(2300), - [anon_sym_i16] = ACTIONS(2300), - [anon_sym_u32] = ACTIONS(2300), - [anon_sym_i32] = ACTIONS(2300), - [anon_sym_u64] = ACTIONS(2300), - [anon_sym_i64] = ACTIONS(2300), - [anon_sym_u128] = ACTIONS(2300), - [anon_sym_i128] = ACTIONS(2300), - [anon_sym_isize] = ACTIONS(2300), - [anon_sym_usize] = ACTIONS(2300), - [anon_sym_f32] = ACTIONS(2300), - [anon_sym_f64] = ACTIONS(2300), - [anon_sym_bool] = ACTIONS(2300), - [anon_sym_str] = ACTIONS(2300), - [anon_sym_char] = ACTIONS(2300), - [anon_sym_DASH] = ACTIONS(2298), - [anon_sym_BANG] = ACTIONS(2298), - [anon_sym_AMP] = ACTIONS(2298), - [anon_sym_PIPE] = ACTIONS(2298), - [anon_sym_LT] = ACTIONS(2298), - [anon_sym_DOT_DOT] = ACTIONS(2298), - [anon_sym_COLON_COLON] = ACTIONS(2298), - [anon_sym_POUND] = ACTIONS(2298), - [anon_sym_SQUOTE] = ACTIONS(2300), - [anon_sym_async] = ACTIONS(2300), - [anon_sym_break] = ACTIONS(2300), - [anon_sym_const] = ACTIONS(2300), - [anon_sym_continue] = ACTIONS(2300), - [anon_sym_default] = ACTIONS(2300), - [anon_sym_enum] = ACTIONS(2300), - [anon_sym_fn] = ACTIONS(2300), - [anon_sym_for] = ACTIONS(2300), - [anon_sym_if] = ACTIONS(2300), - [anon_sym_impl] = ACTIONS(2300), - [anon_sym_let] = ACTIONS(2300), - [anon_sym_loop] = ACTIONS(2300), - [anon_sym_match] = ACTIONS(2300), - [anon_sym_mod] = ACTIONS(2300), - [anon_sym_pub] = ACTIONS(2300), - [anon_sym_return] = ACTIONS(2300), - [anon_sym_static] = ACTIONS(2300), - [anon_sym_struct] = ACTIONS(2300), - [anon_sym_trait] = ACTIONS(2300), - [anon_sym_type] = ACTIONS(2300), - [anon_sym_union] = ACTIONS(2300), - [anon_sym_unsafe] = ACTIONS(2300), - [anon_sym_use] = ACTIONS(2300), - [anon_sym_while] = ACTIONS(2300), - [anon_sym_extern] = ACTIONS(2300), - [anon_sym_yield] = ACTIONS(2300), - [anon_sym_move] = ACTIONS(2300), - [anon_sym_try] = ACTIONS(2300), - [sym_integer_literal] = ACTIONS(2298), - [aux_sym_string_literal_token1] = ACTIONS(2298), - [sym_char_literal] = ACTIONS(2298), - [anon_sym_true] = ACTIONS(2300), - [anon_sym_false] = ACTIONS(2300), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2300), - [sym_super] = ACTIONS(2300), - [sym_crate] = ACTIONS(2300), - [sym_metavariable] = ACTIONS(2298), - [sym__raw_string_literal_start] = ACTIONS(2298), - [sym_float_literal] = ACTIONS(2298), + [ts_builtin_sym_end] = ACTIONS(2415), + [sym_identifier] = ACTIONS(2417), + [anon_sym_SEMI] = ACTIONS(2415), + [anon_sym_macro_rules_BANG] = ACTIONS(2415), + [anon_sym_LPAREN] = ACTIONS(2415), + [anon_sym_LBRACK] = ACTIONS(2415), + [anon_sym_LBRACE] = ACTIONS(2415), + [anon_sym_RBRACE] = ACTIONS(2415), + [anon_sym_macro] = ACTIONS(2417), + [anon_sym_STAR] = ACTIONS(2415), + [anon_sym_u8] = ACTIONS(2417), + [anon_sym_i8] = ACTIONS(2417), + [anon_sym_u16] = ACTIONS(2417), + [anon_sym_i16] = ACTIONS(2417), + [anon_sym_u32] = ACTIONS(2417), + [anon_sym_i32] = ACTIONS(2417), + [anon_sym_u64] = ACTIONS(2417), + [anon_sym_i64] = ACTIONS(2417), + [anon_sym_u128] = ACTIONS(2417), + [anon_sym_i128] = ACTIONS(2417), + [anon_sym_isize] = ACTIONS(2417), + [anon_sym_usize] = ACTIONS(2417), + [anon_sym_f32] = ACTIONS(2417), + [anon_sym_f64] = ACTIONS(2417), + [anon_sym_bool] = ACTIONS(2417), + [anon_sym_str] = ACTIONS(2417), + [anon_sym_char] = ACTIONS(2417), + [anon_sym_DASH] = ACTIONS(2415), + [anon_sym_BANG] = ACTIONS(2415), + [anon_sym_AMP] = ACTIONS(2415), + [anon_sym_PIPE] = ACTIONS(2415), + [anon_sym_LT] = ACTIONS(2415), + [anon_sym_DOT_DOT] = ACTIONS(2415), + [anon_sym_COLON_COLON] = ACTIONS(2415), + [anon_sym_POUND] = ACTIONS(2415), + [anon_sym_SQUOTE] = ACTIONS(2417), + [anon_sym_async] = ACTIONS(2417), + [anon_sym_break] = ACTIONS(2417), + [anon_sym_const] = ACTIONS(2417), + [anon_sym_continue] = ACTIONS(2417), + [anon_sym_default] = ACTIONS(2417), + [anon_sym_enum] = ACTIONS(2417), + [anon_sym_fn] = ACTIONS(2417), + [anon_sym_for] = ACTIONS(2417), + [anon_sym_if] = ACTIONS(2417), + [anon_sym_impl] = ACTIONS(2417), + [anon_sym_let] = ACTIONS(2417), + [anon_sym_loop] = ACTIONS(2417), + [anon_sym_match] = ACTIONS(2417), + [anon_sym_mod] = ACTIONS(2417), + [anon_sym_pub] = ACTIONS(2417), + [anon_sym_return] = ACTIONS(2417), + [anon_sym_static] = ACTIONS(2417), + [anon_sym_struct] = ACTIONS(2417), + [anon_sym_trait] = ACTIONS(2417), + [anon_sym_type] = ACTIONS(2417), + [anon_sym_union] = ACTIONS(2417), + [anon_sym_unsafe] = ACTIONS(2417), + [anon_sym_use] = ACTIONS(2417), + [anon_sym_while] = ACTIONS(2417), + [anon_sym_extern] = ACTIONS(2417), + [anon_sym_yield] = ACTIONS(2417), + [anon_sym_move] = ACTIONS(2417), + [anon_sym_try] = ACTIONS(2417), + [sym_integer_literal] = ACTIONS(2415), + [aux_sym_string_literal_token1] = ACTIONS(2415), + [sym_char_literal] = ACTIONS(2415), + [anon_sym_true] = ACTIONS(2417), + [anon_sym_false] = ACTIONS(2417), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2417), + [sym_super] = ACTIONS(2417), + [sym_crate] = ACTIONS(2417), + [sym_metavariable] = ACTIONS(2415), + [sym__raw_string_literal_start] = ACTIONS(2415), + [sym_float_literal] = ACTIONS(2415), }, [639] = { [sym_line_comment] = STATE(639), [sym_block_comment] = STATE(639), - [ts_builtin_sym_end] = ACTIONS(2302), - [sym_identifier] = ACTIONS(2304), - [anon_sym_SEMI] = ACTIONS(2302), - [anon_sym_macro_rules_BANG] = ACTIONS(2302), - [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_LBRACK] = ACTIONS(2302), - [anon_sym_LBRACE] = ACTIONS(2302), - [anon_sym_RBRACE] = ACTIONS(2302), - [anon_sym_STAR] = ACTIONS(2302), - [anon_sym_u8] = ACTIONS(2304), - [anon_sym_i8] = ACTIONS(2304), - [anon_sym_u16] = ACTIONS(2304), - [anon_sym_i16] = ACTIONS(2304), - [anon_sym_u32] = ACTIONS(2304), - [anon_sym_i32] = ACTIONS(2304), - [anon_sym_u64] = ACTIONS(2304), - [anon_sym_i64] = ACTIONS(2304), - [anon_sym_u128] = ACTIONS(2304), - [anon_sym_i128] = ACTIONS(2304), - [anon_sym_isize] = ACTIONS(2304), - [anon_sym_usize] = ACTIONS(2304), - [anon_sym_f32] = ACTIONS(2304), - [anon_sym_f64] = ACTIONS(2304), - [anon_sym_bool] = ACTIONS(2304), - [anon_sym_str] = ACTIONS(2304), - [anon_sym_char] = ACTIONS(2304), - [anon_sym_DASH] = ACTIONS(2302), - [anon_sym_BANG] = ACTIONS(2302), - [anon_sym_AMP] = ACTIONS(2302), - [anon_sym_PIPE] = ACTIONS(2302), - [anon_sym_LT] = ACTIONS(2302), - [anon_sym_DOT_DOT] = ACTIONS(2302), - [anon_sym_COLON_COLON] = ACTIONS(2302), - [anon_sym_POUND] = ACTIONS(2302), - [anon_sym_SQUOTE] = ACTIONS(2304), - [anon_sym_async] = ACTIONS(2304), - [anon_sym_break] = ACTIONS(2304), - [anon_sym_const] = ACTIONS(2304), - [anon_sym_continue] = ACTIONS(2304), - [anon_sym_default] = ACTIONS(2304), - [anon_sym_enum] = ACTIONS(2304), - [anon_sym_fn] = ACTIONS(2304), - [anon_sym_for] = ACTIONS(2304), - [anon_sym_if] = ACTIONS(2304), - [anon_sym_impl] = ACTIONS(2304), - [anon_sym_let] = ACTIONS(2304), - [anon_sym_loop] = ACTIONS(2304), - [anon_sym_match] = ACTIONS(2304), - [anon_sym_mod] = ACTIONS(2304), - [anon_sym_pub] = ACTIONS(2304), - [anon_sym_return] = ACTIONS(2304), - [anon_sym_static] = ACTIONS(2304), - [anon_sym_struct] = ACTIONS(2304), - [anon_sym_trait] = ACTIONS(2304), - [anon_sym_type] = ACTIONS(2304), - [anon_sym_union] = ACTIONS(2304), - [anon_sym_unsafe] = ACTIONS(2304), - [anon_sym_use] = ACTIONS(2304), - [anon_sym_while] = ACTIONS(2304), - [anon_sym_extern] = ACTIONS(2304), - [anon_sym_yield] = ACTIONS(2304), - [anon_sym_move] = ACTIONS(2304), - [anon_sym_try] = ACTIONS(2304), - [sym_integer_literal] = ACTIONS(2302), - [aux_sym_string_literal_token1] = ACTIONS(2302), - [sym_char_literal] = ACTIONS(2302), - [anon_sym_true] = ACTIONS(2304), - [anon_sym_false] = ACTIONS(2304), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2304), - [sym_super] = ACTIONS(2304), - [sym_crate] = ACTIONS(2304), - [sym_metavariable] = ACTIONS(2302), - [sym__raw_string_literal_start] = ACTIONS(2302), - [sym_float_literal] = ACTIONS(2302), + [ts_builtin_sym_end] = ACTIONS(2419), + [sym_identifier] = ACTIONS(2421), + [anon_sym_SEMI] = ACTIONS(2419), + [anon_sym_macro_rules_BANG] = ACTIONS(2419), + [anon_sym_LPAREN] = ACTIONS(2419), + [anon_sym_LBRACK] = ACTIONS(2419), + [anon_sym_LBRACE] = ACTIONS(2419), + [anon_sym_RBRACE] = ACTIONS(2419), + [anon_sym_macro] = ACTIONS(2421), + [anon_sym_STAR] = ACTIONS(2419), + [anon_sym_u8] = ACTIONS(2421), + [anon_sym_i8] = ACTIONS(2421), + [anon_sym_u16] = ACTIONS(2421), + [anon_sym_i16] = ACTIONS(2421), + [anon_sym_u32] = ACTIONS(2421), + [anon_sym_i32] = ACTIONS(2421), + [anon_sym_u64] = ACTIONS(2421), + [anon_sym_i64] = ACTIONS(2421), + [anon_sym_u128] = ACTIONS(2421), + [anon_sym_i128] = ACTIONS(2421), + [anon_sym_isize] = ACTIONS(2421), + [anon_sym_usize] = ACTIONS(2421), + [anon_sym_f32] = ACTIONS(2421), + [anon_sym_f64] = ACTIONS(2421), + [anon_sym_bool] = ACTIONS(2421), + [anon_sym_str] = ACTIONS(2421), + [anon_sym_char] = ACTIONS(2421), + [anon_sym_DASH] = ACTIONS(2419), + [anon_sym_BANG] = ACTIONS(2419), + [anon_sym_AMP] = ACTIONS(2419), + [anon_sym_PIPE] = ACTIONS(2419), + [anon_sym_LT] = ACTIONS(2419), + [anon_sym_DOT_DOT] = ACTIONS(2419), + [anon_sym_COLON_COLON] = ACTIONS(2419), + [anon_sym_POUND] = ACTIONS(2419), + [anon_sym_SQUOTE] = ACTIONS(2421), + [anon_sym_async] = ACTIONS(2421), + [anon_sym_break] = ACTIONS(2421), + [anon_sym_const] = ACTIONS(2421), + [anon_sym_continue] = ACTIONS(2421), + [anon_sym_default] = ACTIONS(2421), + [anon_sym_enum] = ACTIONS(2421), + [anon_sym_fn] = ACTIONS(2421), + [anon_sym_for] = ACTIONS(2421), + [anon_sym_if] = ACTIONS(2421), + [anon_sym_impl] = ACTIONS(2421), + [anon_sym_let] = ACTIONS(2421), + [anon_sym_loop] = ACTIONS(2421), + [anon_sym_match] = ACTIONS(2421), + [anon_sym_mod] = ACTIONS(2421), + [anon_sym_pub] = ACTIONS(2421), + [anon_sym_return] = ACTIONS(2421), + [anon_sym_static] = ACTIONS(2421), + [anon_sym_struct] = ACTIONS(2421), + [anon_sym_trait] = ACTIONS(2421), + [anon_sym_type] = ACTIONS(2421), + [anon_sym_union] = ACTIONS(2421), + [anon_sym_unsafe] = ACTIONS(2421), + [anon_sym_use] = ACTIONS(2421), + [anon_sym_while] = ACTIONS(2421), + [anon_sym_extern] = ACTIONS(2421), + [anon_sym_yield] = ACTIONS(2421), + [anon_sym_move] = ACTIONS(2421), + [anon_sym_try] = ACTIONS(2421), + [sym_integer_literal] = ACTIONS(2419), + [aux_sym_string_literal_token1] = ACTIONS(2419), + [sym_char_literal] = ACTIONS(2419), + [anon_sym_true] = ACTIONS(2421), + [anon_sym_false] = ACTIONS(2421), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2421), + [sym_super] = ACTIONS(2421), + [sym_crate] = ACTIONS(2421), + [sym_metavariable] = ACTIONS(2419), + [sym__raw_string_literal_start] = ACTIONS(2419), + [sym_float_literal] = ACTIONS(2419), }, [640] = { [sym_line_comment] = STATE(640), [sym_block_comment] = STATE(640), - [ts_builtin_sym_end] = ACTIONS(2306), - [sym_identifier] = ACTIONS(2308), - [anon_sym_SEMI] = ACTIONS(2306), - [anon_sym_macro_rules_BANG] = ACTIONS(2306), - [anon_sym_LPAREN] = ACTIONS(2306), - [anon_sym_LBRACK] = ACTIONS(2306), - [anon_sym_LBRACE] = ACTIONS(2306), - [anon_sym_RBRACE] = ACTIONS(2306), - [anon_sym_STAR] = ACTIONS(2306), - [anon_sym_u8] = ACTIONS(2308), - [anon_sym_i8] = ACTIONS(2308), - [anon_sym_u16] = ACTIONS(2308), - [anon_sym_i16] = ACTIONS(2308), - [anon_sym_u32] = ACTIONS(2308), - [anon_sym_i32] = ACTIONS(2308), - [anon_sym_u64] = ACTIONS(2308), - [anon_sym_i64] = ACTIONS(2308), - [anon_sym_u128] = ACTIONS(2308), - [anon_sym_i128] = ACTIONS(2308), - [anon_sym_isize] = ACTIONS(2308), - [anon_sym_usize] = ACTIONS(2308), - [anon_sym_f32] = ACTIONS(2308), - [anon_sym_f64] = ACTIONS(2308), - [anon_sym_bool] = ACTIONS(2308), - [anon_sym_str] = ACTIONS(2308), - [anon_sym_char] = ACTIONS(2308), - [anon_sym_DASH] = ACTIONS(2306), - [anon_sym_BANG] = ACTIONS(2306), - [anon_sym_AMP] = ACTIONS(2306), - [anon_sym_PIPE] = ACTIONS(2306), - [anon_sym_LT] = ACTIONS(2306), - [anon_sym_DOT_DOT] = ACTIONS(2306), - [anon_sym_COLON_COLON] = ACTIONS(2306), - [anon_sym_POUND] = ACTIONS(2306), - [anon_sym_SQUOTE] = ACTIONS(2308), - [anon_sym_async] = ACTIONS(2308), - [anon_sym_break] = ACTIONS(2308), - [anon_sym_const] = ACTIONS(2308), - [anon_sym_continue] = ACTIONS(2308), - [anon_sym_default] = ACTIONS(2308), - [anon_sym_enum] = ACTIONS(2308), - [anon_sym_fn] = ACTIONS(2308), - [anon_sym_for] = ACTIONS(2308), - [anon_sym_if] = ACTIONS(2308), - [anon_sym_impl] = ACTIONS(2308), - [anon_sym_let] = ACTIONS(2308), - [anon_sym_loop] = ACTIONS(2308), - [anon_sym_match] = ACTIONS(2308), - [anon_sym_mod] = ACTIONS(2308), - [anon_sym_pub] = ACTIONS(2308), - [anon_sym_return] = ACTIONS(2308), - [anon_sym_static] = ACTIONS(2308), - [anon_sym_struct] = ACTIONS(2308), - [anon_sym_trait] = ACTIONS(2308), - [anon_sym_type] = ACTIONS(2308), - [anon_sym_union] = ACTIONS(2308), - [anon_sym_unsafe] = ACTIONS(2308), - [anon_sym_use] = ACTIONS(2308), - [anon_sym_while] = ACTIONS(2308), - [anon_sym_extern] = ACTIONS(2308), - [anon_sym_yield] = ACTIONS(2308), - [anon_sym_move] = ACTIONS(2308), - [anon_sym_try] = ACTIONS(2308), - [sym_integer_literal] = ACTIONS(2306), - [aux_sym_string_literal_token1] = ACTIONS(2306), - [sym_char_literal] = ACTIONS(2306), - [anon_sym_true] = ACTIONS(2308), - [anon_sym_false] = ACTIONS(2308), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2308), - [sym_super] = ACTIONS(2308), - [sym_crate] = ACTIONS(2308), - [sym_metavariable] = ACTIONS(2306), - [sym__raw_string_literal_start] = ACTIONS(2306), - [sym_float_literal] = ACTIONS(2306), + [ts_builtin_sym_end] = ACTIONS(2423), + [sym_identifier] = ACTIONS(2425), + [anon_sym_SEMI] = ACTIONS(2423), + [anon_sym_macro_rules_BANG] = ACTIONS(2423), + [anon_sym_LPAREN] = ACTIONS(2423), + [anon_sym_LBRACK] = ACTIONS(2423), + [anon_sym_LBRACE] = ACTIONS(2423), + [anon_sym_RBRACE] = ACTIONS(2423), + [anon_sym_macro] = ACTIONS(2425), + [anon_sym_STAR] = ACTIONS(2423), + [anon_sym_u8] = ACTIONS(2425), + [anon_sym_i8] = ACTIONS(2425), + [anon_sym_u16] = ACTIONS(2425), + [anon_sym_i16] = ACTIONS(2425), + [anon_sym_u32] = ACTIONS(2425), + [anon_sym_i32] = ACTIONS(2425), + [anon_sym_u64] = ACTIONS(2425), + [anon_sym_i64] = ACTIONS(2425), + [anon_sym_u128] = ACTIONS(2425), + [anon_sym_i128] = ACTIONS(2425), + [anon_sym_isize] = ACTIONS(2425), + [anon_sym_usize] = ACTIONS(2425), + [anon_sym_f32] = ACTIONS(2425), + [anon_sym_f64] = ACTIONS(2425), + [anon_sym_bool] = ACTIONS(2425), + [anon_sym_str] = ACTIONS(2425), + [anon_sym_char] = ACTIONS(2425), + [anon_sym_DASH] = ACTIONS(2423), + [anon_sym_BANG] = ACTIONS(2423), + [anon_sym_AMP] = ACTIONS(2423), + [anon_sym_PIPE] = ACTIONS(2423), + [anon_sym_LT] = ACTIONS(2423), + [anon_sym_DOT_DOT] = ACTIONS(2423), + [anon_sym_COLON_COLON] = ACTIONS(2423), + [anon_sym_POUND] = ACTIONS(2423), + [anon_sym_SQUOTE] = ACTIONS(2425), + [anon_sym_async] = ACTIONS(2425), + [anon_sym_break] = ACTIONS(2425), + [anon_sym_const] = ACTIONS(2425), + [anon_sym_continue] = ACTIONS(2425), + [anon_sym_default] = ACTIONS(2425), + [anon_sym_enum] = ACTIONS(2425), + [anon_sym_fn] = ACTIONS(2425), + [anon_sym_for] = ACTIONS(2425), + [anon_sym_if] = ACTIONS(2425), + [anon_sym_impl] = ACTIONS(2425), + [anon_sym_let] = ACTIONS(2425), + [anon_sym_loop] = ACTIONS(2425), + [anon_sym_match] = ACTIONS(2425), + [anon_sym_mod] = ACTIONS(2425), + [anon_sym_pub] = ACTIONS(2425), + [anon_sym_return] = ACTIONS(2425), + [anon_sym_static] = ACTIONS(2425), + [anon_sym_struct] = ACTIONS(2425), + [anon_sym_trait] = ACTIONS(2425), + [anon_sym_type] = ACTIONS(2425), + [anon_sym_union] = ACTIONS(2425), + [anon_sym_unsafe] = ACTIONS(2425), + [anon_sym_use] = ACTIONS(2425), + [anon_sym_while] = ACTIONS(2425), + [anon_sym_extern] = ACTIONS(2425), + [anon_sym_yield] = ACTIONS(2425), + [anon_sym_move] = ACTIONS(2425), + [anon_sym_try] = ACTIONS(2425), + [sym_integer_literal] = ACTIONS(2423), + [aux_sym_string_literal_token1] = ACTIONS(2423), + [sym_char_literal] = ACTIONS(2423), + [anon_sym_true] = ACTIONS(2425), + [anon_sym_false] = ACTIONS(2425), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2425), + [sym_super] = ACTIONS(2425), + [sym_crate] = ACTIONS(2425), + [sym_metavariable] = ACTIONS(2423), + [sym__raw_string_literal_start] = ACTIONS(2423), + [sym_float_literal] = ACTIONS(2423), }, [641] = { [sym_line_comment] = STATE(641), [sym_block_comment] = STATE(641), - [ts_builtin_sym_end] = ACTIONS(2310), - [sym_identifier] = ACTIONS(2312), - [anon_sym_SEMI] = ACTIONS(2310), - [anon_sym_macro_rules_BANG] = ACTIONS(2310), - [anon_sym_LPAREN] = ACTIONS(2310), - [anon_sym_LBRACK] = ACTIONS(2310), - [anon_sym_LBRACE] = ACTIONS(2310), - [anon_sym_RBRACE] = ACTIONS(2310), - [anon_sym_STAR] = ACTIONS(2310), - [anon_sym_u8] = ACTIONS(2312), - [anon_sym_i8] = ACTIONS(2312), - [anon_sym_u16] = ACTIONS(2312), - [anon_sym_i16] = ACTIONS(2312), - [anon_sym_u32] = ACTIONS(2312), - [anon_sym_i32] = ACTIONS(2312), - [anon_sym_u64] = ACTIONS(2312), - [anon_sym_i64] = ACTIONS(2312), - [anon_sym_u128] = ACTIONS(2312), - [anon_sym_i128] = ACTIONS(2312), - [anon_sym_isize] = ACTIONS(2312), - [anon_sym_usize] = ACTIONS(2312), - [anon_sym_f32] = ACTIONS(2312), - [anon_sym_f64] = ACTIONS(2312), - [anon_sym_bool] = ACTIONS(2312), - [anon_sym_str] = ACTIONS(2312), - [anon_sym_char] = ACTIONS(2312), - [anon_sym_DASH] = ACTIONS(2310), - [anon_sym_BANG] = ACTIONS(2310), - [anon_sym_AMP] = ACTIONS(2310), - [anon_sym_PIPE] = ACTIONS(2310), - [anon_sym_LT] = ACTIONS(2310), - [anon_sym_DOT_DOT] = ACTIONS(2310), - [anon_sym_COLON_COLON] = ACTIONS(2310), - [anon_sym_POUND] = ACTIONS(2310), - [anon_sym_SQUOTE] = ACTIONS(2312), - [anon_sym_async] = ACTIONS(2312), - [anon_sym_break] = ACTIONS(2312), - [anon_sym_const] = ACTIONS(2312), - [anon_sym_continue] = ACTIONS(2312), - [anon_sym_default] = ACTIONS(2312), - [anon_sym_enum] = ACTIONS(2312), - [anon_sym_fn] = ACTIONS(2312), - [anon_sym_for] = ACTIONS(2312), - [anon_sym_if] = ACTIONS(2312), - [anon_sym_impl] = ACTIONS(2312), - [anon_sym_let] = ACTIONS(2312), - [anon_sym_loop] = ACTIONS(2312), - [anon_sym_match] = ACTIONS(2312), - [anon_sym_mod] = ACTIONS(2312), - [anon_sym_pub] = ACTIONS(2312), - [anon_sym_return] = ACTIONS(2312), - [anon_sym_static] = ACTIONS(2312), - [anon_sym_struct] = ACTIONS(2312), - [anon_sym_trait] = ACTIONS(2312), - [anon_sym_type] = ACTIONS(2312), - [anon_sym_union] = ACTIONS(2312), - [anon_sym_unsafe] = ACTIONS(2312), - [anon_sym_use] = ACTIONS(2312), - [anon_sym_while] = ACTIONS(2312), - [anon_sym_extern] = ACTIONS(2312), - [anon_sym_yield] = ACTIONS(2312), - [anon_sym_move] = ACTIONS(2312), - [anon_sym_try] = ACTIONS(2312), - [sym_integer_literal] = ACTIONS(2310), - [aux_sym_string_literal_token1] = ACTIONS(2310), - [sym_char_literal] = ACTIONS(2310), - [anon_sym_true] = ACTIONS(2312), - [anon_sym_false] = ACTIONS(2312), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2312), - [sym_super] = ACTIONS(2312), - [sym_crate] = ACTIONS(2312), - [sym_metavariable] = ACTIONS(2310), - [sym__raw_string_literal_start] = ACTIONS(2310), - [sym_float_literal] = ACTIONS(2310), + [ts_builtin_sym_end] = ACTIONS(2427), + [sym_identifier] = ACTIONS(2429), + [anon_sym_SEMI] = ACTIONS(2427), + [anon_sym_macro_rules_BANG] = ACTIONS(2427), + [anon_sym_LPAREN] = ACTIONS(2427), + [anon_sym_LBRACK] = ACTIONS(2427), + [anon_sym_LBRACE] = ACTIONS(2427), + [anon_sym_RBRACE] = ACTIONS(2427), + [anon_sym_macro] = ACTIONS(2429), + [anon_sym_STAR] = ACTIONS(2427), + [anon_sym_u8] = ACTIONS(2429), + [anon_sym_i8] = ACTIONS(2429), + [anon_sym_u16] = ACTIONS(2429), + [anon_sym_i16] = ACTIONS(2429), + [anon_sym_u32] = ACTIONS(2429), + [anon_sym_i32] = ACTIONS(2429), + [anon_sym_u64] = ACTIONS(2429), + [anon_sym_i64] = ACTIONS(2429), + [anon_sym_u128] = ACTIONS(2429), + [anon_sym_i128] = ACTIONS(2429), + [anon_sym_isize] = ACTIONS(2429), + [anon_sym_usize] = ACTIONS(2429), + [anon_sym_f32] = ACTIONS(2429), + [anon_sym_f64] = ACTIONS(2429), + [anon_sym_bool] = ACTIONS(2429), + [anon_sym_str] = ACTIONS(2429), + [anon_sym_char] = ACTIONS(2429), + [anon_sym_DASH] = ACTIONS(2427), + [anon_sym_BANG] = ACTIONS(2427), + [anon_sym_AMP] = ACTIONS(2427), + [anon_sym_PIPE] = ACTIONS(2427), + [anon_sym_LT] = ACTIONS(2427), + [anon_sym_DOT_DOT] = ACTIONS(2427), + [anon_sym_COLON_COLON] = ACTIONS(2427), + [anon_sym_POUND] = ACTIONS(2427), + [anon_sym_SQUOTE] = ACTIONS(2429), + [anon_sym_async] = ACTIONS(2429), + [anon_sym_break] = ACTIONS(2429), + [anon_sym_const] = ACTIONS(2429), + [anon_sym_continue] = ACTIONS(2429), + [anon_sym_default] = ACTIONS(2429), + [anon_sym_enum] = ACTIONS(2429), + [anon_sym_fn] = ACTIONS(2429), + [anon_sym_for] = ACTIONS(2429), + [anon_sym_if] = ACTIONS(2429), + [anon_sym_impl] = ACTIONS(2429), + [anon_sym_let] = ACTIONS(2429), + [anon_sym_loop] = ACTIONS(2429), + [anon_sym_match] = ACTIONS(2429), + [anon_sym_mod] = ACTIONS(2429), + [anon_sym_pub] = ACTIONS(2429), + [anon_sym_return] = ACTIONS(2429), + [anon_sym_static] = ACTIONS(2429), + [anon_sym_struct] = ACTIONS(2429), + [anon_sym_trait] = ACTIONS(2429), + [anon_sym_type] = ACTIONS(2429), + [anon_sym_union] = ACTIONS(2429), + [anon_sym_unsafe] = ACTIONS(2429), + [anon_sym_use] = ACTIONS(2429), + [anon_sym_while] = ACTIONS(2429), + [anon_sym_extern] = ACTIONS(2429), + [anon_sym_yield] = ACTIONS(2429), + [anon_sym_move] = ACTIONS(2429), + [anon_sym_try] = ACTIONS(2429), + [sym_integer_literal] = ACTIONS(2427), + [aux_sym_string_literal_token1] = ACTIONS(2427), + [sym_char_literal] = ACTIONS(2427), + [anon_sym_true] = ACTIONS(2429), + [anon_sym_false] = ACTIONS(2429), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2429), + [sym_super] = ACTIONS(2429), + [sym_crate] = ACTIONS(2429), + [sym_metavariable] = ACTIONS(2427), + [sym__raw_string_literal_start] = ACTIONS(2427), + [sym_float_literal] = ACTIONS(2427), }, [642] = { [sym_line_comment] = STATE(642), [sym_block_comment] = STATE(642), - [ts_builtin_sym_end] = ACTIONS(2314), - [sym_identifier] = ACTIONS(2316), - [anon_sym_SEMI] = ACTIONS(2314), - [anon_sym_macro_rules_BANG] = ACTIONS(2314), - [anon_sym_LPAREN] = ACTIONS(2314), - [anon_sym_LBRACK] = ACTIONS(2314), - [anon_sym_LBRACE] = ACTIONS(2314), - [anon_sym_RBRACE] = ACTIONS(2314), - [anon_sym_STAR] = ACTIONS(2314), - [anon_sym_u8] = ACTIONS(2316), - [anon_sym_i8] = ACTIONS(2316), - [anon_sym_u16] = ACTIONS(2316), - [anon_sym_i16] = ACTIONS(2316), - [anon_sym_u32] = ACTIONS(2316), - [anon_sym_i32] = ACTIONS(2316), - [anon_sym_u64] = ACTIONS(2316), - [anon_sym_i64] = ACTIONS(2316), - [anon_sym_u128] = ACTIONS(2316), - [anon_sym_i128] = ACTIONS(2316), - [anon_sym_isize] = ACTIONS(2316), - [anon_sym_usize] = ACTIONS(2316), - [anon_sym_f32] = ACTIONS(2316), - [anon_sym_f64] = ACTIONS(2316), - [anon_sym_bool] = ACTIONS(2316), - [anon_sym_str] = ACTIONS(2316), - [anon_sym_char] = ACTIONS(2316), - [anon_sym_DASH] = ACTIONS(2314), - [anon_sym_BANG] = ACTIONS(2314), - [anon_sym_AMP] = ACTIONS(2314), - [anon_sym_PIPE] = ACTIONS(2314), - [anon_sym_LT] = ACTIONS(2314), - [anon_sym_DOT_DOT] = ACTIONS(2314), - [anon_sym_COLON_COLON] = ACTIONS(2314), - [anon_sym_POUND] = ACTIONS(2314), - [anon_sym_SQUOTE] = ACTIONS(2316), - [anon_sym_async] = ACTIONS(2316), - [anon_sym_break] = ACTIONS(2316), - [anon_sym_const] = ACTIONS(2316), - [anon_sym_continue] = ACTIONS(2316), - [anon_sym_default] = ACTIONS(2316), - [anon_sym_enum] = ACTIONS(2316), - [anon_sym_fn] = ACTIONS(2316), - [anon_sym_for] = ACTIONS(2316), - [anon_sym_if] = ACTIONS(2316), - [anon_sym_impl] = ACTIONS(2316), - [anon_sym_let] = ACTIONS(2316), - [anon_sym_loop] = ACTIONS(2316), - [anon_sym_match] = ACTIONS(2316), - [anon_sym_mod] = ACTIONS(2316), - [anon_sym_pub] = ACTIONS(2316), - [anon_sym_return] = ACTIONS(2316), - [anon_sym_static] = ACTIONS(2316), - [anon_sym_struct] = ACTIONS(2316), - [anon_sym_trait] = ACTIONS(2316), - [anon_sym_type] = ACTIONS(2316), - [anon_sym_union] = ACTIONS(2316), - [anon_sym_unsafe] = ACTIONS(2316), - [anon_sym_use] = ACTIONS(2316), - [anon_sym_while] = ACTIONS(2316), - [anon_sym_extern] = ACTIONS(2316), - [anon_sym_yield] = ACTIONS(2316), - [anon_sym_move] = ACTIONS(2316), - [anon_sym_try] = ACTIONS(2316), - [sym_integer_literal] = ACTIONS(2314), - [aux_sym_string_literal_token1] = ACTIONS(2314), - [sym_char_literal] = ACTIONS(2314), - [anon_sym_true] = ACTIONS(2316), - [anon_sym_false] = ACTIONS(2316), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2316), - [sym_super] = ACTIONS(2316), - [sym_crate] = ACTIONS(2316), - [sym_metavariable] = ACTIONS(2314), - [sym__raw_string_literal_start] = ACTIONS(2314), - [sym_float_literal] = ACTIONS(2314), + [ts_builtin_sym_end] = ACTIONS(2431), + [sym_identifier] = ACTIONS(2433), + [anon_sym_SEMI] = ACTIONS(2431), + [anon_sym_macro_rules_BANG] = ACTIONS(2431), + [anon_sym_LPAREN] = ACTIONS(2431), + [anon_sym_LBRACK] = ACTIONS(2431), + [anon_sym_LBRACE] = ACTIONS(2431), + [anon_sym_RBRACE] = ACTIONS(2431), + [anon_sym_macro] = ACTIONS(2433), + [anon_sym_STAR] = ACTIONS(2431), + [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), + [anon_sym_DASH] = ACTIONS(2431), + [anon_sym_BANG] = ACTIONS(2431), + [anon_sym_AMP] = ACTIONS(2431), + [anon_sym_PIPE] = ACTIONS(2431), + [anon_sym_LT] = ACTIONS(2431), + [anon_sym_DOT_DOT] = ACTIONS(2431), + [anon_sym_COLON_COLON] = ACTIONS(2431), + [anon_sym_POUND] = ACTIONS(2431), + [anon_sym_SQUOTE] = ACTIONS(2433), + [anon_sym_async] = 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_while] = ACTIONS(2433), + [anon_sym_extern] = ACTIONS(2433), + [anon_sym_yield] = ACTIONS(2433), + [anon_sym_move] = ACTIONS(2433), + [anon_sym_try] = ACTIONS(2433), + [sym_integer_literal] = ACTIONS(2431), + [aux_sym_string_literal_token1] = ACTIONS(2431), + [sym_char_literal] = ACTIONS(2431), + [anon_sym_true] = ACTIONS(2433), + [anon_sym_false] = ACTIONS(2433), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2433), + [sym_super] = ACTIONS(2433), + [sym_crate] = ACTIONS(2433), + [sym_metavariable] = ACTIONS(2431), + [sym__raw_string_literal_start] = ACTIONS(2431), + [sym_float_literal] = ACTIONS(2431), }, [643] = { [sym_line_comment] = STATE(643), [sym_block_comment] = STATE(643), - [ts_builtin_sym_end] = ACTIONS(2318), - [sym_identifier] = ACTIONS(2320), - [anon_sym_SEMI] = ACTIONS(2318), - [anon_sym_macro_rules_BANG] = ACTIONS(2318), - [anon_sym_LPAREN] = ACTIONS(2318), - [anon_sym_LBRACK] = ACTIONS(2318), - [anon_sym_LBRACE] = ACTIONS(2318), - [anon_sym_RBRACE] = ACTIONS(2318), - [anon_sym_STAR] = ACTIONS(2318), - [anon_sym_u8] = ACTIONS(2320), - [anon_sym_i8] = ACTIONS(2320), - [anon_sym_u16] = ACTIONS(2320), - [anon_sym_i16] = ACTIONS(2320), - [anon_sym_u32] = ACTIONS(2320), - [anon_sym_i32] = ACTIONS(2320), - [anon_sym_u64] = ACTIONS(2320), - [anon_sym_i64] = ACTIONS(2320), - [anon_sym_u128] = ACTIONS(2320), - [anon_sym_i128] = ACTIONS(2320), - [anon_sym_isize] = ACTIONS(2320), - [anon_sym_usize] = ACTIONS(2320), - [anon_sym_f32] = ACTIONS(2320), - [anon_sym_f64] = ACTIONS(2320), - [anon_sym_bool] = ACTIONS(2320), - [anon_sym_str] = ACTIONS(2320), - [anon_sym_char] = ACTIONS(2320), - [anon_sym_DASH] = ACTIONS(2318), - [anon_sym_BANG] = ACTIONS(2318), - [anon_sym_AMP] = ACTIONS(2318), - [anon_sym_PIPE] = ACTIONS(2318), - [anon_sym_LT] = ACTIONS(2318), - [anon_sym_DOT_DOT] = ACTIONS(2318), - [anon_sym_COLON_COLON] = ACTIONS(2318), - [anon_sym_POUND] = ACTIONS(2318), - [anon_sym_SQUOTE] = ACTIONS(2320), - [anon_sym_async] = ACTIONS(2320), - [anon_sym_break] = ACTIONS(2320), - [anon_sym_const] = ACTIONS(2320), - [anon_sym_continue] = ACTIONS(2320), - [anon_sym_default] = ACTIONS(2320), - [anon_sym_enum] = ACTIONS(2320), - [anon_sym_fn] = ACTIONS(2320), - [anon_sym_for] = ACTIONS(2320), - [anon_sym_if] = ACTIONS(2320), - [anon_sym_impl] = ACTIONS(2320), - [anon_sym_let] = ACTIONS(2320), - [anon_sym_loop] = ACTIONS(2320), - [anon_sym_match] = ACTIONS(2320), - [anon_sym_mod] = ACTIONS(2320), - [anon_sym_pub] = ACTIONS(2320), - [anon_sym_return] = ACTIONS(2320), - [anon_sym_static] = ACTIONS(2320), - [anon_sym_struct] = ACTIONS(2320), - [anon_sym_trait] = ACTIONS(2320), - [anon_sym_type] = ACTIONS(2320), - [anon_sym_union] = ACTIONS(2320), - [anon_sym_unsafe] = ACTIONS(2320), - [anon_sym_use] = ACTIONS(2320), - [anon_sym_while] = ACTIONS(2320), - [anon_sym_extern] = ACTIONS(2320), - [anon_sym_yield] = ACTIONS(2320), - [anon_sym_move] = ACTIONS(2320), - [anon_sym_try] = ACTIONS(2320), - [sym_integer_literal] = ACTIONS(2318), - [aux_sym_string_literal_token1] = ACTIONS(2318), - [sym_char_literal] = ACTIONS(2318), - [anon_sym_true] = ACTIONS(2320), - [anon_sym_false] = ACTIONS(2320), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2320), - [sym_super] = ACTIONS(2320), - [sym_crate] = ACTIONS(2320), - [sym_metavariable] = ACTIONS(2318), - [sym__raw_string_literal_start] = ACTIONS(2318), - [sym_float_literal] = ACTIONS(2318), + [ts_builtin_sym_end] = ACTIONS(2435), + [sym_identifier] = ACTIONS(2437), + [anon_sym_SEMI] = ACTIONS(2435), + [anon_sym_macro_rules_BANG] = ACTIONS(2435), + [anon_sym_LPAREN] = ACTIONS(2435), + [anon_sym_LBRACK] = ACTIONS(2435), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_RBRACE] = ACTIONS(2435), + [anon_sym_macro] = ACTIONS(2437), + [anon_sym_STAR] = ACTIONS(2435), + [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), + [anon_sym_DASH] = ACTIONS(2435), + [anon_sym_BANG] = ACTIONS(2435), + [anon_sym_AMP] = ACTIONS(2435), + [anon_sym_PIPE] = ACTIONS(2435), + [anon_sym_LT] = ACTIONS(2435), + [anon_sym_DOT_DOT] = ACTIONS(2435), + [anon_sym_COLON_COLON] = ACTIONS(2435), + [anon_sym_POUND] = ACTIONS(2435), + [anon_sym_SQUOTE] = ACTIONS(2437), + [anon_sym_async] = 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_while] = ACTIONS(2437), + [anon_sym_extern] = ACTIONS(2437), + [anon_sym_yield] = ACTIONS(2437), + [anon_sym_move] = ACTIONS(2437), + [anon_sym_try] = ACTIONS(2437), + [sym_integer_literal] = ACTIONS(2435), + [aux_sym_string_literal_token1] = ACTIONS(2435), + [sym_char_literal] = ACTIONS(2435), + [anon_sym_true] = ACTIONS(2437), + [anon_sym_false] = ACTIONS(2437), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2437), + [sym_super] = ACTIONS(2437), + [sym_crate] = ACTIONS(2437), + [sym_metavariable] = ACTIONS(2435), + [sym__raw_string_literal_start] = ACTIONS(2435), + [sym_float_literal] = ACTIONS(2435), }, [644] = { [sym_line_comment] = STATE(644), [sym_block_comment] = STATE(644), - [ts_builtin_sym_end] = ACTIONS(2322), - [sym_identifier] = ACTIONS(2324), - [anon_sym_SEMI] = ACTIONS(2322), - [anon_sym_macro_rules_BANG] = ACTIONS(2322), - [anon_sym_LPAREN] = ACTIONS(2322), - [anon_sym_LBRACK] = ACTIONS(2322), - [anon_sym_LBRACE] = ACTIONS(2322), - [anon_sym_RBRACE] = ACTIONS(2322), - [anon_sym_STAR] = ACTIONS(2322), - [anon_sym_u8] = ACTIONS(2324), - [anon_sym_i8] = ACTIONS(2324), - [anon_sym_u16] = ACTIONS(2324), - [anon_sym_i16] = ACTIONS(2324), - [anon_sym_u32] = ACTIONS(2324), - [anon_sym_i32] = ACTIONS(2324), - [anon_sym_u64] = ACTIONS(2324), - [anon_sym_i64] = ACTIONS(2324), - [anon_sym_u128] = ACTIONS(2324), - [anon_sym_i128] = ACTIONS(2324), - [anon_sym_isize] = ACTIONS(2324), - [anon_sym_usize] = ACTIONS(2324), - [anon_sym_f32] = ACTIONS(2324), - [anon_sym_f64] = ACTIONS(2324), - [anon_sym_bool] = ACTIONS(2324), - [anon_sym_str] = ACTIONS(2324), - [anon_sym_char] = ACTIONS(2324), - [anon_sym_DASH] = ACTIONS(2322), - [anon_sym_BANG] = ACTIONS(2322), - [anon_sym_AMP] = ACTIONS(2322), - [anon_sym_PIPE] = ACTIONS(2322), - [anon_sym_LT] = ACTIONS(2322), - [anon_sym_DOT_DOT] = ACTIONS(2322), - [anon_sym_COLON_COLON] = ACTIONS(2322), - [anon_sym_POUND] = ACTIONS(2322), - [anon_sym_SQUOTE] = ACTIONS(2324), - [anon_sym_async] = ACTIONS(2324), - [anon_sym_break] = ACTIONS(2324), - [anon_sym_const] = ACTIONS(2324), - [anon_sym_continue] = ACTIONS(2324), - [anon_sym_default] = ACTIONS(2324), - [anon_sym_enum] = ACTIONS(2324), - [anon_sym_fn] = ACTIONS(2324), - [anon_sym_for] = ACTIONS(2324), - [anon_sym_if] = ACTIONS(2324), - [anon_sym_impl] = ACTIONS(2324), - [anon_sym_let] = ACTIONS(2324), - [anon_sym_loop] = ACTIONS(2324), - [anon_sym_match] = ACTIONS(2324), - [anon_sym_mod] = ACTIONS(2324), - [anon_sym_pub] = ACTIONS(2324), - [anon_sym_return] = ACTIONS(2324), - [anon_sym_static] = ACTIONS(2324), - [anon_sym_struct] = ACTIONS(2324), - [anon_sym_trait] = ACTIONS(2324), - [anon_sym_type] = ACTIONS(2324), - [anon_sym_union] = ACTIONS(2324), - [anon_sym_unsafe] = ACTIONS(2324), - [anon_sym_use] = ACTIONS(2324), - [anon_sym_while] = ACTIONS(2324), - [anon_sym_extern] = ACTIONS(2324), - [anon_sym_yield] = ACTIONS(2324), - [anon_sym_move] = ACTIONS(2324), - [anon_sym_try] = ACTIONS(2324), - [sym_integer_literal] = ACTIONS(2322), - [aux_sym_string_literal_token1] = ACTIONS(2322), - [sym_char_literal] = ACTIONS(2322), - [anon_sym_true] = ACTIONS(2324), - [anon_sym_false] = ACTIONS(2324), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2324), - [sym_super] = ACTIONS(2324), - [sym_crate] = ACTIONS(2324), - [sym_metavariable] = ACTIONS(2322), - [sym__raw_string_literal_start] = ACTIONS(2322), - [sym_float_literal] = ACTIONS(2322), + [ts_builtin_sym_end] = ACTIONS(2439), + [sym_identifier] = ACTIONS(2441), + [anon_sym_SEMI] = ACTIONS(2439), + [anon_sym_macro_rules_BANG] = ACTIONS(2439), + [anon_sym_LPAREN] = ACTIONS(2439), + [anon_sym_LBRACK] = ACTIONS(2439), + [anon_sym_LBRACE] = ACTIONS(2439), + [anon_sym_RBRACE] = ACTIONS(2439), + [anon_sym_macro] = ACTIONS(2441), + [anon_sym_STAR] = ACTIONS(2439), + [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), + [anon_sym_DASH] = ACTIONS(2439), + [anon_sym_BANG] = ACTIONS(2439), + [anon_sym_AMP] = ACTIONS(2439), + [anon_sym_PIPE] = ACTIONS(2439), + [anon_sym_LT] = ACTIONS(2439), + [anon_sym_DOT_DOT] = ACTIONS(2439), + [anon_sym_COLON_COLON] = ACTIONS(2439), + [anon_sym_POUND] = ACTIONS(2439), + [anon_sym_SQUOTE] = ACTIONS(2441), + [anon_sym_async] = 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_while] = ACTIONS(2441), + [anon_sym_extern] = ACTIONS(2441), + [anon_sym_yield] = ACTIONS(2441), + [anon_sym_move] = ACTIONS(2441), + [anon_sym_try] = ACTIONS(2441), + [sym_integer_literal] = ACTIONS(2439), + [aux_sym_string_literal_token1] = ACTIONS(2439), + [sym_char_literal] = ACTIONS(2439), + [anon_sym_true] = ACTIONS(2441), + [anon_sym_false] = ACTIONS(2441), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2441), + [sym_super] = ACTIONS(2441), + [sym_crate] = ACTIONS(2441), + [sym_metavariable] = ACTIONS(2439), + [sym__raw_string_literal_start] = ACTIONS(2439), + [sym_float_literal] = ACTIONS(2439), }, [645] = { [sym_line_comment] = STATE(645), [sym_block_comment] = STATE(645), - [ts_builtin_sym_end] = ACTIONS(2326), - [sym_identifier] = ACTIONS(2328), - [anon_sym_SEMI] = ACTIONS(2326), - [anon_sym_macro_rules_BANG] = ACTIONS(2326), - [anon_sym_LPAREN] = ACTIONS(2326), - [anon_sym_LBRACK] = ACTIONS(2326), - [anon_sym_LBRACE] = ACTIONS(2326), - [anon_sym_RBRACE] = ACTIONS(2326), - [anon_sym_STAR] = ACTIONS(2326), - [anon_sym_u8] = ACTIONS(2328), - [anon_sym_i8] = ACTIONS(2328), - [anon_sym_u16] = ACTIONS(2328), - [anon_sym_i16] = ACTIONS(2328), - [anon_sym_u32] = ACTIONS(2328), - [anon_sym_i32] = ACTIONS(2328), - [anon_sym_u64] = ACTIONS(2328), - [anon_sym_i64] = ACTIONS(2328), - [anon_sym_u128] = ACTIONS(2328), - [anon_sym_i128] = ACTIONS(2328), - [anon_sym_isize] = ACTIONS(2328), - [anon_sym_usize] = ACTIONS(2328), - [anon_sym_f32] = ACTIONS(2328), - [anon_sym_f64] = ACTIONS(2328), - [anon_sym_bool] = ACTIONS(2328), - [anon_sym_str] = ACTIONS(2328), - [anon_sym_char] = ACTIONS(2328), - [anon_sym_DASH] = ACTIONS(2326), - [anon_sym_BANG] = ACTIONS(2326), - [anon_sym_AMP] = ACTIONS(2326), - [anon_sym_PIPE] = ACTIONS(2326), - [anon_sym_LT] = ACTIONS(2326), - [anon_sym_DOT_DOT] = ACTIONS(2326), - [anon_sym_COLON_COLON] = ACTIONS(2326), - [anon_sym_POUND] = ACTIONS(2326), - [anon_sym_SQUOTE] = ACTIONS(2328), - [anon_sym_async] = ACTIONS(2328), - [anon_sym_break] = ACTIONS(2328), - [anon_sym_const] = ACTIONS(2328), - [anon_sym_continue] = ACTIONS(2328), - [anon_sym_default] = ACTIONS(2328), - [anon_sym_enum] = ACTIONS(2328), - [anon_sym_fn] = ACTIONS(2328), - [anon_sym_for] = ACTIONS(2328), - [anon_sym_if] = ACTIONS(2328), - [anon_sym_impl] = ACTIONS(2328), - [anon_sym_let] = ACTIONS(2328), - [anon_sym_loop] = ACTIONS(2328), - [anon_sym_match] = ACTIONS(2328), - [anon_sym_mod] = ACTIONS(2328), - [anon_sym_pub] = ACTIONS(2328), - [anon_sym_return] = ACTIONS(2328), - [anon_sym_static] = ACTIONS(2328), - [anon_sym_struct] = ACTIONS(2328), - [anon_sym_trait] = ACTIONS(2328), - [anon_sym_type] = ACTIONS(2328), - [anon_sym_union] = ACTIONS(2328), - [anon_sym_unsafe] = ACTIONS(2328), - [anon_sym_use] = ACTIONS(2328), - [anon_sym_while] = ACTIONS(2328), - [anon_sym_extern] = ACTIONS(2328), - [anon_sym_yield] = ACTIONS(2328), - [anon_sym_move] = ACTIONS(2328), - [anon_sym_try] = ACTIONS(2328), - [sym_integer_literal] = ACTIONS(2326), - [aux_sym_string_literal_token1] = ACTIONS(2326), - [sym_char_literal] = ACTIONS(2326), - [anon_sym_true] = ACTIONS(2328), - [anon_sym_false] = ACTIONS(2328), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2328), - [sym_super] = ACTIONS(2328), - [sym_crate] = ACTIONS(2328), - [sym_metavariable] = ACTIONS(2326), - [sym__raw_string_literal_start] = ACTIONS(2326), - [sym_float_literal] = ACTIONS(2326), + [ts_builtin_sym_end] = ACTIONS(2443), + [sym_identifier] = ACTIONS(2445), + [anon_sym_SEMI] = ACTIONS(2443), + [anon_sym_macro_rules_BANG] = ACTIONS(2443), + [anon_sym_LPAREN] = ACTIONS(2443), + [anon_sym_LBRACK] = ACTIONS(2443), + [anon_sym_LBRACE] = ACTIONS(2443), + [anon_sym_RBRACE] = ACTIONS(2443), + [anon_sym_macro] = ACTIONS(2445), + [anon_sym_STAR] = ACTIONS(2443), + [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), + [anon_sym_DASH] = ACTIONS(2443), + [anon_sym_BANG] = ACTIONS(2443), + [anon_sym_AMP] = ACTIONS(2443), + [anon_sym_PIPE] = ACTIONS(2443), + [anon_sym_LT] = ACTIONS(2443), + [anon_sym_DOT_DOT] = ACTIONS(2443), + [anon_sym_COLON_COLON] = ACTIONS(2443), + [anon_sym_POUND] = ACTIONS(2443), + [anon_sym_SQUOTE] = ACTIONS(2445), + [anon_sym_async] = 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_while] = ACTIONS(2445), + [anon_sym_extern] = ACTIONS(2445), + [anon_sym_yield] = ACTIONS(2445), + [anon_sym_move] = ACTIONS(2445), + [anon_sym_try] = ACTIONS(2445), + [sym_integer_literal] = ACTIONS(2443), + [aux_sym_string_literal_token1] = ACTIONS(2443), + [sym_char_literal] = ACTIONS(2443), + [anon_sym_true] = ACTIONS(2445), + [anon_sym_false] = ACTIONS(2445), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2445), + [sym_super] = ACTIONS(2445), + [sym_crate] = ACTIONS(2445), + [sym_metavariable] = ACTIONS(2443), + [sym__raw_string_literal_start] = ACTIONS(2443), + [sym_float_literal] = ACTIONS(2443), }, [646] = { - [sym_empty_statement] = STATE(1456), - [sym_macro_definition] = STATE(1456), - [sym_attribute_item] = STATE(1456), - [sym_inner_attribute_item] = STATE(1456), - [sym_mod_item] = STATE(1456), - [sym_foreign_mod_item] = STATE(1456), - [sym_struct_item] = STATE(1456), - [sym_union_item] = STATE(1456), - [sym_enum_item] = STATE(1456), - [sym_extern_crate_declaration] = STATE(1456), - [sym_const_item] = STATE(1456), - [sym_static_item] = STATE(1456), - [sym_type_item] = STATE(1456), - [sym_function_item] = STATE(1456), - [sym_function_signature_item] = STATE(1456), - [sym_function_modifiers] = STATE(3593), - [sym_impl_item] = STATE(1456), - [sym_trait_item] = STATE(1456), - [sym_associated_type] = STATE(1456), - [sym_let_declaration] = STATE(1456), - [sym_use_declaration] = STATE(1456), - [sym_extern_modifier] = STATE(2154), - [sym_visibility_modifier] = STATE(1934), - [sym_bracketed_type] = STATE(3324), - [sym_generic_type_with_turbofish] = STATE(3350), - [sym_macro_invocation] = STATE(1456), - [sym_scoped_identifier] = STATE(3156), [sym_line_comment] = STATE(646), [sym_block_comment] = STATE(646), - [aux_sym_declaration_list_repeat1] = STATE(692), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2330), - [anon_sym_SEMI] = ACTIONS(2332), - [anon_sym_macro_rules_BANG] = ACTIONS(2334), - [anon_sym_RBRACE] = ACTIONS(2336), - [anon_sym_u8] = ACTIONS(2338), - [anon_sym_i8] = ACTIONS(2338), - [anon_sym_u16] = ACTIONS(2338), - [anon_sym_i16] = ACTIONS(2338), - [anon_sym_u32] = ACTIONS(2338), - [anon_sym_i32] = ACTIONS(2338), - [anon_sym_u64] = ACTIONS(2338), - [anon_sym_i64] = ACTIONS(2338), - [anon_sym_u128] = ACTIONS(2338), - [anon_sym_i128] = ACTIONS(2338), - [anon_sym_isize] = ACTIONS(2338), - [anon_sym_usize] = ACTIONS(2338), - [anon_sym_f32] = ACTIONS(2338), - [anon_sym_f64] = ACTIONS(2338), - [anon_sym_bool] = ACTIONS(2338), - [anon_sym_str] = ACTIONS(2338), - [anon_sym_char] = ACTIONS(2338), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(2340), - [anon_sym_POUND] = ACTIONS(2342), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(2344), - [anon_sym_default] = ACTIONS(2346), - [anon_sym_enum] = ACTIONS(2348), - [anon_sym_fn] = ACTIONS(2350), - [anon_sym_impl] = ACTIONS(2352), - [anon_sym_let] = ACTIONS(2354), - [anon_sym_mod] = ACTIONS(2356), - [anon_sym_pub] = ACTIONS(67), - [anon_sym_static] = ACTIONS(2358), - [anon_sym_struct] = ACTIONS(2360), - [anon_sym_trait] = ACTIONS(2362), - [anon_sym_type] = ACTIONS(2364), - [anon_sym_union] = ACTIONS(2366), - [anon_sym_unsafe] = ACTIONS(2368), - [anon_sym_use] = ACTIONS(2370), - [anon_sym_extern] = ACTIONS(2372), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2374), - [sym_super] = ACTIONS(2374), - [sym_crate] = ACTIONS(2376), - [sym_metavariable] = ACTIONS(2378), + [ts_builtin_sym_end] = ACTIONS(2447), + [sym_identifier] = ACTIONS(2449), + [anon_sym_SEMI] = ACTIONS(2447), + [anon_sym_macro_rules_BANG] = ACTIONS(2447), + [anon_sym_LPAREN] = ACTIONS(2447), + [anon_sym_LBRACK] = ACTIONS(2447), + [anon_sym_LBRACE] = ACTIONS(2447), + [anon_sym_RBRACE] = ACTIONS(2447), + [anon_sym_macro] = ACTIONS(2449), + [anon_sym_STAR] = ACTIONS(2447), + [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), + [anon_sym_DASH] = ACTIONS(2447), + [anon_sym_BANG] = ACTIONS(2447), + [anon_sym_AMP] = ACTIONS(2447), + [anon_sym_PIPE] = ACTIONS(2447), + [anon_sym_LT] = ACTIONS(2447), + [anon_sym_DOT_DOT] = ACTIONS(2447), + [anon_sym_COLON_COLON] = ACTIONS(2447), + [anon_sym_POUND] = ACTIONS(2447), + [anon_sym_SQUOTE] = ACTIONS(2449), + [anon_sym_async] = 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_while] = ACTIONS(2449), + [anon_sym_extern] = ACTIONS(2449), + [anon_sym_yield] = ACTIONS(2449), + [anon_sym_move] = ACTIONS(2449), + [anon_sym_try] = ACTIONS(2449), + [sym_integer_literal] = ACTIONS(2447), + [aux_sym_string_literal_token1] = ACTIONS(2447), + [sym_char_literal] = ACTIONS(2447), + [anon_sym_true] = ACTIONS(2449), + [anon_sym_false] = ACTIONS(2449), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2449), + [sym_super] = ACTIONS(2449), + [sym_crate] = ACTIONS(2449), + [sym_metavariable] = ACTIONS(2447), + [sym__raw_string_literal_start] = ACTIONS(2447), + [sym_float_literal] = ACTIONS(2447), }, [647] = { [sym_line_comment] = STATE(647), [sym_block_comment] = STATE(647), - [ts_builtin_sym_end] = ACTIONS(2380), - [sym_identifier] = ACTIONS(2382), - [anon_sym_SEMI] = ACTIONS(2380), - [anon_sym_macro_rules_BANG] = ACTIONS(2380), - [anon_sym_LPAREN] = ACTIONS(2380), - [anon_sym_LBRACK] = ACTIONS(2380), - [anon_sym_LBRACE] = ACTIONS(2380), - [anon_sym_RBRACE] = ACTIONS(2380), - [anon_sym_STAR] = ACTIONS(2380), - [anon_sym_u8] = ACTIONS(2382), - [anon_sym_i8] = ACTIONS(2382), - [anon_sym_u16] = ACTIONS(2382), - [anon_sym_i16] = ACTIONS(2382), - [anon_sym_u32] = ACTIONS(2382), - [anon_sym_i32] = ACTIONS(2382), - [anon_sym_u64] = ACTIONS(2382), - [anon_sym_i64] = ACTIONS(2382), - [anon_sym_u128] = ACTIONS(2382), - [anon_sym_i128] = ACTIONS(2382), - [anon_sym_isize] = ACTIONS(2382), - [anon_sym_usize] = ACTIONS(2382), - [anon_sym_f32] = ACTIONS(2382), - [anon_sym_f64] = ACTIONS(2382), - [anon_sym_bool] = ACTIONS(2382), - [anon_sym_str] = ACTIONS(2382), - [anon_sym_char] = ACTIONS(2382), - [anon_sym_DASH] = ACTIONS(2380), - [anon_sym_BANG] = ACTIONS(2380), - [anon_sym_AMP] = ACTIONS(2380), - [anon_sym_PIPE] = ACTIONS(2380), - [anon_sym_LT] = ACTIONS(2380), - [anon_sym_DOT_DOT] = ACTIONS(2380), - [anon_sym_COLON_COLON] = ACTIONS(2380), - [anon_sym_POUND] = ACTIONS(2380), - [anon_sym_SQUOTE] = ACTIONS(2382), - [anon_sym_async] = ACTIONS(2382), - [anon_sym_break] = ACTIONS(2382), - [anon_sym_const] = ACTIONS(2382), - [anon_sym_continue] = ACTIONS(2382), - [anon_sym_default] = ACTIONS(2382), - [anon_sym_enum] = ACTIONS(2382), - [anon_sym_fn] = ACTIONS(2382), - [anon_sym_for] = ACTIONS(2382), - [anon_sym_if] = ACTIONS(2382), - [anon_sym_impl] = ACTIONS(2382), - [anon_sym_let] = ACTIONS(2382), - [anon_sym_loop] = ACTIONS(2382), - [anon_sym_match] = ACTIONS(2382), - [anon_sym_mod] = ACTIONS(2382), - [anon_sym_pub] = ACTIONS(2382), - [anon_sym_return] = ACTIONS(2382), - [anon_sym_static] = ACTIONS(2382), - [anon_sym_struct] = ACTIONS(2382), - [anon_sym_trait] = ACTIONS(2382), - [anon_sym_type] = ACTIONS(2382), - [anon_sym_union] = ACTIONS(2382), - [anon_sym_unsafe] = ACTIONS(2382), - [anon_sym_use] = ACTIONS(2382), - [anon_sym_while] = ACTIONS(2382), - [anon_sym_extern] = ACTIONS(2382), - [anon_sym_yield] = ACTIONS(2382), - [anon_sym_move] = ACTIONS(2382), - [anon_sym_try] = ACTIONS(2382), - [sym_integer_literal] = ACTIONS(2380), - [aux_sym_string_literal_token1] = ACTIONS(2380), - [sym_char_literal] = ACTIONS(2380), - [anon_sym_true] = ACTIONS(2382), - [anon_sym_false] = ACTIONS(2382), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2382), - [sym_super] = ACTIONS(2382), - [sym_crate] = ACTIONS(2382), - [sym_metavariable] = ACTIONS(2380), - [sym__raw_string_literal_start] = ACTIONS(2380), - [sym_float_literal] = ACTIONS(2380), + [ts_builtin_sym_end] = ACTIONS(2451), + [sym_identifier] = ACTIONS(2453), + [anon_sym_SEMI] = ACTIONS(2451), + [anon_sym_macro_rules_BANG] = ACTIONS(2451), + [anon_sym_LPAREN] = ACTIONS(2451), + [anon_sym_LBRACK] = ACTIONS(2451), + [anon_sym_LBRACE] = ACTIONS(2451), + [anon_sym_RBRACE] = ACTIONS(2451), + [anon_sym_macro] = ACTIONS(2453), + [anon_sym_STAR] = ACTIONS(2451), + [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), + [anon_sym_DASH] = ACTIONS(2451), + [anon_sym_BANG] = ACTIONS(2451), + [anon_sym_AMP] = ACTIONS(2451), + [anon_sym_PIPE] = ACTIONS(2451), + [anon_sym_LT] = ACTIONS(2451), + [anon_sym_DOT_DOT] = ACTIONS(2451), + [anon_sym_COLON_COLON] = ACTIONS(2451), + [anon_sym_POUND] = ACTIONS(2451), + [anon_sym_SQUOTE] = ACTIONS(2453), + [anon_sym_async] = 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_while] = ACTIONS(2453), + [anon_sym_extern] = ACTIONS(2453), + [anon_sym_yield] = ACTIONS(2453), + [anon_sym_move] = ACTIONS(2453), + [anon_sym_try] = ACTIONS(2453), + [sym_integer_literal] = ACTIONS(2451), + [aux_sym_string_literal_token1] = ACTIONS(2451), + [sym_char_literal] = ACTIONS(2451), + [anon_sym_true] = ACTIONS(2453), + [anon_sym_false] = ACTIONS(2453), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2453), + [sym_super] = ACTIONS(2453), + [sym_crate] = ACTIONS(2453), + [sym_metavariable] = ACTIONS(2451), + [sym__raw_string_literal_start] = ACTIONS(2451), + [sym_float_literal] = ACTIONS(2451), }, [648] = { [sym_line_comment] = STATE(648), [sym_block_comment] = STATE(648), - [ts_builtin_sym_end] = ACTIONS(2384), - [sym_identifier] = ACTIONS(2386), - [anon_sym_SEMI] = ACTIONS(2384), - [anon_sym_macro_rules_BANG] = ACTIONS(2384), - [anon_sym_LPAREN] = ACTIONS(2384), - [anon_sym_LBRACK] = ACTIONS(2384), - [anon_sym_LBRACE] = ACTIONS(2384), - [anon_sym_RBRACE] = ACTIONS(2384), - [anon_sym_STAR] = ACTIONS(2384), - [anon_sym_u8] = ACTIONS(2386), - [anon_sym_i8] = ACTIONS(2386), - [anon_sym_u16] = ACTIONS(2386), - [anon_sym_i16] = ACTIONS(2386), - [anon_sym_u32] = ACTIONS(2386), - [anon_sym_i32] = ACTIONS(2386), - [anon_sym_u64] = ACTIONS(2386), - [anon_sym_i64] = ACTIONS(2386), - [anon_sym_u128] = ACTIONS(2386), - [anon_sym_i128] = ACTIONS(2386), - [anon_sym_isize] = ACTIONS(2386), - [anon_sym_usize] = ACTIONS(2386), - [anon_sym_f32] = ACTIONS(2386), - [anon_sym_f64] = ACTIONS(2386), - [anon_sym_bool] = ACTIONS(2386), - [anon_sym_str] = ACTIONS(2386), - [anon_sym_char] = ACTIONS(2386), - [anon_sym_DASH] = ACTIONS(2384), - [anon_sym_BANG] = ACTIONS(2384), - [anon_sym_AMP] = ACTIONS(2384), - [anon_sym_PIPE] = ACTIONS(2384), - [anon_sym_LT] = ACTIONS(2384), - [anon_sym_DOT_DOT] = ACTIONS(2384), - [anon_sym_COLON_COLON] = ACTIONS(2384), - [anon_sym_POUND] = ACTIONS(2384), - [anon_sym_SQUOTE] = ACTIONS(2386), - [anon_sym_async] = ACTIONS(2386), - [anon_sym_break] = ACTIONS(2386), - [anon_sym_const] = ACTIONS(2386), - [anon_sym_continue] = ACTIONS(2386), - [anon_sym_default] = ACTIONS(2386), - [anon_sym_enum] = ACTIONS(2386), - [anon_sym_fn] = ACTIONS(2386), - [anon_sym_for] = ACTIONS(2386), - [anon_sym_if] = ACTIONS(2386), - [anon_sym_impl] = ACTIONS(2386), - [anon_sym_let] = ACTIONS(2386), - [anon_sym_loop] = ACTIONS(2386), - [anon_sym_match] = ACTIONS(2386), - [anon_sym_mod] = ACTIONS(2386), - [anon_sym_pub] = ACTIONS(2386), - [anon_sym_return] = ACTIONS(2386), - [anon_sym_static] = ACTIONS(2386), - [anon_sym_struct] = ACTIONS(2386), - [anon_sym_trait] = ACTIONS(2386), - [anon_sym_type] = ACTIONS(2386), - [anon_sym_union] = ACTIONS(2386), - [anon_sym_unsafe] = ACTIONS(2386), - [anon_sym_use] = ACTIONS(2386), - [anon_sym_while] = ACTIONS(2386), - [anon_sym_extern] = ACTIONS(2386), - [anon_sym_yield] = ACTIONS(2386), - [anon_sym_move] = ACTIONS(2386), - [anon_sym_try] = ACTIONS(2386), - [sym_integer_literal] = ACTIONS(2384), - [aux_sym_string_literal_token1] = ACTIONS(2384), - [sym_char_literal] = ACTIONS(2384), - [anon_sym_true] = ACTIONS(2386), - [anon_sym_false] = ACTIONS(2386), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2386), - [sym_super] = ACTIONS(2386), - [sym_crate] = ACTIONS(2386), - [sym_metavariable] = ACTIONS(2384), - [sym__raw_string_literal_start] = ACTIONS(2384), - [sym_float_literal] = ACTIONS(2384), + [ts_builtin_sym_end] = ACTIONS(2455), + [sym_identifier] = ACTIONS(2457), + [anon_sym_SEMI] = ACTIONS(2455), + [anon_sym_macro_rules_BANG] = ACTIONS(2455), + [anon_sym_LPAREN] = ACTIONS(2455), + [anon_sym_LBRACK] = ACTIONS(2455), + [anon_sym_LBRACE] = ACTIONS(2455), + [anon_sym_RBRACE] = ACTIONS(2455), + [anon_sym_macro] = ACTIONS(2457), + [anon_sym_STAR] = ACTIONS(2455), + [anon_sym_u8] = ACTIONS(2457), + [anon_sym_i8] = ACTIONS(2457), + [anon_sym_u16] = ACTIONS(2457), + [anon_sym_i16] = ACTIONS(2457), + [anon_sym_u32] = ACTIONS(2457), + [anon_sym_i32] = ACTIONS(2457), + [anon_sym_u64] = ACTIONS(2457), + [anon_sym_i64] = ACTIONS(2457), + [anon_sym_u128] = ACTIONS(2457), + [anon_sym_i128] = ACTIONS(2457), + [anon_sym_isize] = ACTIONS(2457), + [anon_sym_usize] = ACTIONS(2457), + [anon_sym_f32] = ACTIONS(2457), + [anon_sym_f64] = ACTIONS(2457), + [anon_sym_bool] = ACTIONS(2457), + [anon_sym_str] = ACTIONS(2457), + [anon_sym_char] = ACTIONS(2457), + [anon_sym_DASH] = ACTIONS(2455), + [anon_sym_BANG] = ACTIONS(2455), + [anon_sym_AMP] = ACTIONS(2455), + [anon_sym_PIPE] = ACTIONS(2455), + [anon_sym_LT] = ACTIONS(2455), + [anon_sym_DOT_DOT] = ACTIONS(2455), + [anon_sym_COLON_COLON] = ACTIONS(2455), + [anon_sym_POUND] = ACTIONS(2455), + [anon_sym_SQUOTE] = ACTIONS(2457), + [anon_sym_async] = ACTIONS(2457), + [anon_sym_break] = ACTIONS(2457), + [anon_sym_const] = ACTIONS(2457), + [anon_sym_continue] = ACTIONS(2457), + [anon_sym_default] = ACTIONS(2457), + [anon_sym_enum] = ACTIONS(2457), + [anon_sym_fn] = ACTIONS(2457), + [anon_sym_for] = ACTIONS(2457), + [anon_sym_if] = ACTIONS(2457), + [anon_sym_impl] = ACTIONS(2457), + [anon_sym_let] = ACTIONS(2457), + [anon_sym_loop] = ACTIONS(2457), + [anon_sym_match] = ACTIONS(2457), + [anon_sym_mod] = ACTIONS(2457), + [anon_sym_pub] = ACTIONS(2457), + [anon_sym_return] = ACTIONS(2457), + [anon_sym_static] = ACTIONS(2457), + [anon_sym_struct] = ACTIONS(2457), + [anon_sym_trait] = ACTIONS(2457), + [anon_sym_type] = ACTIONS(2457), + [anon_sym_union] = ACTIONS(2457), + [anon_sym_unsafe] = ACTIONS(2457), + [anon_sym_use] = ACTIONS(2457), + [anon_sym_while] = ACTIONS(2457), + [anon_sym_extern] = ACTIONS(2457), + [anon_sym_yield] = ACTIONS(2457), + [anon_sym_move] = ACTIONS(2457), + [anon_sym_try] = ACTIONS(2457), + [sym_integer_literal] = ACTIONS(2455), + [aux_sym_string_literal_token1] = ACTIONS(2455), + [sym_char_literal] = ACTIONS(2455), + [anon_sym_true] = ACTIONS(2457), + [anon_sym_false] = ACTIONS(2457), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2457), + [sym_super] = ACTIONS(2457), + [sym_crate] = ACTIONS(2457), + [sym_metavariable] = ACTIONS(2455), + [sym__raw_string_literal_start] = ACTIONS(2455), + [sym_float_literal] = ACTIONS(2455), }, [649] = { + [sym_attribute_item] = STATE(1515), + [sym_inner_attribute_item] = STATE(1515), + [sym_bracketed_type] = STATE(3618), + [sym_generic_type] = STATE(3491), + [sym_generic_type_with_turbofish] = STATE(3218), + [sym_macro_invocation] = STATE(2994), + [sym_scoped_identifier] = STATE(2165), + [sym_scoped_type_identifier] = STATE(2786), + [sym_match_arm] = STATE(1505), + [sym_last_match_arm] = STATE(3544), + [sym_match_pattern] = STATE(3700), + [sym_const_block] = STATE(2994), + [sym__pattern] = STATE(3082), + [sym_tuple_pattern] = STATE(2994), + [sym_slice_pattern] = STATE(2994), + [sym_tuple_struct_pattern] = STATE(2994), + [sym_struct_pattern] = STATE(2994), + [sym_remaining_field_pattern] = STATE(2994), + [sym_mut_pattern] = STATE(2994), + [sym_range_pattern] = STATE(2994), + [sym_ref_pattern] = STATE(2994), + [sym_captured_pattern] = STATE(2994), + [sym_reference_pattern] = STATE(2994), + [sym_or_pattern] = STATE(2994), + [sym__literal_pattern] = STATE(2380), + [sym_negative_literal] = STATE(2383), + [sym_string_literal] = STATE(2383), + [sym_raw_string_literal] = STATE(2383), + [sym_boolean_literal] = STATE(2383), [sym_line_comment] = STATE(649), [sym_block_comment] = STATE(649), - [ts_builtin_sym_end] = ACTIONS(2388), - [sym_identifier] = ACTIONS(2390), - [anon_sym_SEMI] = ACTIONS(2388), - [anon_sym_macro_rules_BANG] = ACTIONS(2388), - [anon_sym_LPAREN] = ACTIONS(2388), - [anon_sym_LBRACK] = ACTIONS(2388), - [anon_sym_LBRACE] = ACTIONS(2388), - [anon_sym_RBRACE] = ACTIONS(2388), - [anon_sym_STAR] = ACTIONS(2388), - [anon_sym_u8] = ACTIONS(2390), - [anon_sym_i8] = ACTIONS(2390), - [anon_sym_u16] = ACTIONS(2390), - [anon_sym_i16] = ACTIONS(2390), - [anon_sym_u32] = ACTIONS(2390), - [anon_sym_i32] = ACTIONS(2390), - [anon_sym_u64] = ACTIONS(2390), - [anon_sym_i64] = ACTIONS(2390), - [anon_sym_u128] = ACTIONS(2390), - [anon_sym_i128] = ACTIONS(2390), - [anon_sym_isize] = ACTIONS(2390), - [anon_sym_usize] = ACTIONS(2390), - [anon_sym_f32] = ACTIONS(2390), - [anon_sym_f64] = ACTIONS(2390), - [anon_sym_bool] = ACTIONS(2390), - [anon_sym_str] = ACTIONS(2390), - [anon_sym_char] = ACTIONS(2390), - [anon_sym_DASH] = ACTIONS(2388), - [anon_sym_BANG] = ACTIONS(2388), - [anon_sym_AMP] = ACTIONS(2388), - [anon_sym_PIPE] = ACTIONS(2388), - [anon_sym_LT] = ACTIONS(2388), - [anon_sym_DOT_DOT] = ACTIONS(2388), - [anon_sym_COLON_COLON] = ACTIONS(2388), - [anon_sym_POUND] = ACTIONS(2388), - [anon_sym_SQUOTE] = ACTIONS(2390), - [anon_sym_async] = ACTIONS(2390), - [anon_sym_break] = ACTIONS(2390), - [anon_sym_const] = ACTIONS(2390), - [anon_sym_continue] = ACTIONS(2390), - [anon_sym_default] = ACTIONS(2390), - [anon_sym_enum] = ACTIONS(2390), - [anon_sym_fn] = ACTIONS(2390), - [anon_sym_for] = ACTIONS(2390), - [anon_sym_if] = ACTIONS(2390), - [anon_sym_impl] = ACTIONS(2390), - [anon_sym_let] = ACTIONS(2390), - [anon_sym_loop] = ACTIONS(2390), - [anon_sym_match] = ACTIONS(2390), - [anon_sym_mod] = ACTIONS(2390), - [anon_sym_pub] = ACTIONS(2390), - [anon_sym_return] = ACTIONS(2390), - [anon_sym_static] = ACTIONS(2390), - [anon_sym_struct] = ACTIONS(2390), - [anon_sym_trait] = ACTIONS(2390), - [anon_sym_type] = ACTIONS(2390), - [anon_sym_union] = ACTIONS(2390), - [anon_sym_unsafe] = ACTIONS(2390), - [anon_sym_use] = ACTIONS(2390), - [anon_sym_while] = ACTIONS(2390), - [anon_sym_extern] = ACTIONS(2390), - [anon_sym_yield] = ACTIONS(2390), - [anon_sym_move] = ACTIONS(2390), - [anon_sym_try] = ACTIONS(2390), - [sym_integer_literal] = ACTIONS(2388), - [aux_sym_string_literal_token1] = ACTIONS(2388), - [sym_char_literal] = ACTIONS(2388), - [anon_sym_true] = ACTIONS(2390), - [anon_sym_false] = ACTIONS(2390), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2390), - [sym_super] = ACTIONS(2390), - [sym_crate] = ACTIONS(2390), - [sym_metavariable] = ACTIONS(2388), - [sym__raw_string_literal_start] = ACTIONS(2388), - [sym_float_literal] = ACTIONS(2388), + [aux_sym_match_block_repeat1] = STATE(773), + [aux_sym_match_arm_repeat1] = STATE(780), + [sym_identifier] = ACTIONS(1621), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACK] = ACTIONS(1625), + [anon_sym_u8] = ACTIONS(1629), + [anon_sym_i8] = ACTIONS(1629), + [anon_sym_u16] = ACTIONS(1629), + [anon_sym_i16] = ACTIONS(1629), + [anon_sym_u32] = ACTIONS(1629), + [anon_sym_i32] = ACTIONS(1629), + [anon_sym_u64] = ACTIONS(1629), + [anon_sym_i64] = ACTIONS(1629), + [anon_sym_u128] = ACTIONS(1629), + [anon_sym_i128] = ACTIONS(1629), + [anon_sym_isize] = ACTIONS(1629), + [anon_sym_usize] = ACTIONS(1629), + [anon_sym_f32] = ACTIONS(1629), + [anon_sym_f64] = ACTIONS(1629), + [anon_sym_bool] = ACTIONS(1629), + [anon_sym_str] = ACTIONS(1629), + [anon_sym_char] = ACTIONS(1629), + [anon_sym_DASH] = ACTIONS(1631), + [anon_sym_AMP] = ACTIONS(1633), + [anon_sym_PIPE] = ACTIONS(1635), + [anon_sym_LT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1637), + [anon_sym_DOT_DOT] = ACTIONS(1639), + [anon_sym_COLON_COLON] = ACTIONS(1641), + [anon_sym_POUND] = ACTIONS(1643), + [anon_sym_const] = ACTIONS(1645), + [anon_sym_default] = ACTIONS(1647), + [anon_sym_union] = ACTIONS(1647), + [anon_sym_ref] = ACTIONS(1649), + [sym_mutable_specifier] = ACTIONS(1651), + [sym_integer_literal] = ACTIONS(1653), + [aux_sym_string_literal_token1] = ACTIONS(1655), + [sym_char_literal] = ACTIONS(1653), + [anon_sym_true] = ACTIONS(1657), + [anon_sym_false] = ACTIONS(1657), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1659), + [sym_super] = ACTIONS(1659), + [sym_crate] = ACTIONS(1659), + [sym_metavariable] = ACTIONS(1661), + [sym__raw_string_literal_start] = ACTIONS(1663), + [sym_float_literal] = ACTIONS(1653), }, [650] = { [sym_line_comment] = STATE(650), [sym_block_comment] = STATE(650), - [ts_builtin_sym_end] = ACTIONS(2392), - [sym_identifier] = ACTIONS(2394), - [anon_sym_SEMI] = ACTIONS(2392), - [anon_sym_macro_rules_BANG] = ACTIONS(2392), - [anon_sym_LPAREN] = ACTIONS(2392), - [anon_sym_LBRACK] = ACTIONS(2392), - [anon_sym_LBRACE] = ACTIONS(2392), - [anon_sym_RBRACE] = ACTIONS(2392), - [anon_sym_STAR] = ACTIONS(2392), - [anon_sym_u8] = ACTIONS(2394), - [anon_sym_i8] = ACTIONS(2394), - [anon_sym_u16] = ACTIONS(2394), - [anon_sym_i16] = ACTIONS(2394), - [anon_sym_u32] = ACTIONS(2394), - [anon_sym_i32] = ACTIONS(2394), - [anon_sym_u64] = ACTIONS(2394), - [anon_sym_i64] = ACTIONS(2394), - [anon_sym_u128] = ACTIONS(2394), - [anon_sym_i128] = ACTIONS(2394), - [anon_sym_isize] = ACTIONS(2394), - [anon_sym_usize] = ACTIONS(2394), - [anon_sym_f32] = ACTIONS(2394), - [anon_sym_f64] = ACTIONS(2394), - [anon_sym_bool] = ACTIONS(2394), - [anon_sym_str] = ACTIONS(2394), - [anon_sym_char] = ACTIONS(2394), - [anon_sym_DASH] = ACTIONS(2392), - [anon_sym_BANG] = ACTIONS(2392), - [anon_sym_AMP] = ACTIONS(2392), - [anon_sym_PIPE] = ACTIONS(2392), - [anon_sym_LT] = ACTIONS(2392), - [anon_sym_DOT_DOT] = ACTIONS(2392), - [anon_sym_COLON_COLON] = ACTIONS(2392), - [anon_sym_POUND] = ACTIONS(2392), - [anon_sym_SQUOTE] = ACTIONS(2394), - [anon_sym_async] = ACTIONS(2394), - [anon_sym_break] = ACTIONS(2394), - [anon_sym_const] = ACTIONS(2394), - [anon_sym_continue] = ACTIONS(2394), - [anon_sym_default] = ACTIONS(2394), - [anon_sym_enum] = ACTIONS(2394), - [anon_sym_fn] = ACTIONS(2394), - [anon_sym_for] = ACTIONS(2394), - [anon_sym_if] = ACTIONS(2394), - [anon_sym_impl] = ACTIONS(2394), - [anon_sym_let] = ACTIONS(2394), - [anon_sym_loop] = ACTIONS(2394), - [anon_sym_match] = ACTIONS(2394), - [anon_sym_mod] = ACTIONS(2394), - [anon_sym_pub] = ACTIONS(2394), - [anon_sym_return] = ACTIONS(2394), - [anon_sym_static] = ACTIONS(2394), - [anon_sym_struct] = ACTIONS(2394), - [anon_sym_trait] = ACTIONS(2394), - [anon_sym_type] = ACTIONS(2394), - [anon_sym_union] = ACTIONS(2394), - [anon_sym_unsafe] = ACTIONS(2394), - [anon_sym_use] = ACTIONS(2394), - [anon_sym_while] = ACTIONS(2394), - [anon_sym_extern] = ACTIONS(2394), - [anon_sym_yield] = ACTIONS(2394), - [anon_sym_move] = ACTIONS(2394), - [anon_sym_try] = ACTIONS(2394), - [sym_integer_literal] = ACTIONS(2392), - [aux_sym_string_literal_token1] = ACTIONS(2392), - [sym_char_literal] = ACTIONS(2392), - [anon_sym_true] = ACTIONS(2394), - [anon_sym_false] = ACTIONS(2394), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2394), - [sym_super] = ACTIONS(2394), - [sym_crate] = ACTIONS(2394), - [sym_metavariable] = ACTIONS(2392), - [sym__raw_string_literal_start] = ACTIONS(2392), - [sym_float_literal] = ACTIONS(2392), + [ts_builtin_sym_end] = ACTIONS(2459), + [sym_identifier] = ACTIONS(2461), + [anon_sym_SEMI] = ACTIONS(2459), + [anon_sym_macro_rules_BANG] = ACTIONS(2459), + [anon_sym_LPAREN] = ACTIONS(2459), + [anon_sym_LBRACK] = ACTIONS(2459), + [anon_sym_LBRACE] = ACTIONS(2459), + [anon_sym_RBRACE] = ACTIONS(2459), + [anon_sym_macro] = ACTIONS(2461), + [anon_sym_STAR] = ACTIONS(2459), + [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), + [anon_sym_DASH] = ACTIONS(2459), + [anon_sym_BANG] = ACTIONS(2459), + [anon_sym_AMP] = ACTIONS(2459), + [anon_sym_PIPE] = ACTIONS(2459), + [anon_sym_LT] = ACTIONS(2459), + [anon_sym_DOT_DOT] = ACTIONS(2459), + [anon_sym_COLON_COLON] = ACTIONS(2459), + [anon_sym_POUND] = ACTIONS(2459), + [anon_sym_SQUOTE] = ACTIONS(2461), + [anon_sym_async] = 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_while] = ACTIONS(2461), + [anon_sym_extern] = ACTIONS(2461), + [anon_sym_yield] = ACTIONS(2461), + [anon_sym_move] = ACTIONS(2461), + [anon_sym_try] = ACTIONS(2461), + [sym_integer_literal] = ACTIONS(2459), + [aux_sym_string_literal_token1] = ACTIONS(2459), + [sym_char_literal] = ACTIONS(2459), + [anon_sym_true] = ACTIONS(2461), + [anon_sym_false] = ACTIONS(2461), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2461), + [sym_super] = ACTIONS(2461), + [sym_crate] = ACTIONS(2461), + [sym_metavariable] = ACTIONS(2459), + [sym__raw_string_literal_start] = ACTIONS(2459), + [sym_float_literal] = ACTIONS(2459), }, [651] = { [sym_line_comment] = STATE(651), [sym_block_comment] = STATE(651), - [ts_builtin_sym_end] = ACTIONS(2396), - [sym_identifier] = ACTIONS(2398), - [anon_sym_SEMI] = ACTIONS(2396), - [anon_sym_macro_rules_BANG] = ACTIONS(2396), - [anon_sym_LPAREN] = ACTIONS(2396), - [anon_sym_LBRACK] = ACTIONS(2396), - [anon_sym_LBRACE] = ACTIONS(2396), - [anon_sym_RBRACE] = ACTIONS(2396), - [anon_sym_STAR] = ACTIONS(2396), - [anon_sym_u8] = ACTIONS(2398), - [anon_sym_i8] = ACTIONS(2398), - [anon_sym_u16] = ACTIONS(2398), - [anon_sym_i16] = ACTIONS(2398), - [anon_sym_u32] = ACTIONS(2398), - [anon_sym_i32] = ACTIONS(2398), - [anon_sym_u64] = ACTIONS(2398), - [anon_sym_i64] = ACTIONS(2398), - [anon_sym_u128] = ACTIONS(2398), - [anon_sym_i128] = ACTIONS(2398), - [anon_sym_isize] = ACTIONS(2398), - [anon_sym_usize] = ACTIONS(2398), - [anon_sym_f32] = ACTIONS(2398), - [anon_sym_f64] = ACTIONS(2398), - [anon_sym_bool] = ACTIONS(2398), - [anon_sym_str] = ACTIONS(2398), - [anon_sym_char] = ACTIONS(2398), - [anon_sym_DASH] = ACTIONS(2396), - [anon_sym_BANG] = ACTIONS(2396), - [anon_sym_AMP] = ACTIONS(2396), - [anon_sym_PIPE] = ACTIONS(2396), - [anon_sym_LT] = ACTIONS(2396), - [anon_sym_DOT_DOT] = ACTIONS(2396), - [anon_sym_COLON_COLON] = ACTIONS(2396), - [anon_sym_POUND] = ACTIONS(2396), - [anon_sym_SQUOTE] = ACTIONS(2398), - [anon_sym_async] = ACTIONS(2398), - [anon_sym_break] = ACTIONS(2398), - [anon_sym_const] = ACTIONS(2398), - [anon_sym_continue] = ACTIONS(2398), - [anon_sym_default] = ACTIONS(2398), - [anon_sym_enum] = ACTIONS(2398), - [anon_sym_fn] = ACTIONS(2398), - [anon_sym_for] = ACTIONS(2398), - [anon_sym_if] = ACTIONS(2398), - [anon_sym_impl] = ACTIONS(2398), - [anon_sym_let] = ACTIONS(2398), - [anon_sym_loop] = ACTIONS(2398), - [anon_sym_match] = ACTIONS(2398), - [anon_sym_mod] = ACTIONS(2398), - [anon_sym_pub] = ACTIONS(2398), - [anon_sym_return] = ACTIONS(2398), - [anon_sym_static] = ACTIONS(2398), - [anon_sym_struct] = ACTIONS(2398), - [anon_sym_trait] = ACTIONS(2398), - [anon_sym_type] = ACTIONS(2398), - [anon_sym_union] = ACTIONS(2398), - [anon_sym_unsafe] = ACTIONS(2398), - [anon_sym_use] = ACTIONS(2398), - [anon_sym_while] = ACTIONS(2398), - [anon_sym_extern] = ACTIONS(2398), - [anon_sym_yield] = ACTIONS(2398), - [anon_sym_move] = ACTIONS(2398), - [anon_sym_try] = ACTIONS(2398), - [sym_integer_literal] = ACTIONS(2396), - [aux_sym_string_literal_token1] = ACTIONS(2396), - [sym_char_literal] = ACTIONS(2396), - [anon_sym_true] = ACTIONS(2398), - [anon_sym_false] = ACTIONS(2398), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2398), - [sym_super] = ACTIONS(2398), - [sym_crate] = ACTIONS(2398), - [sym_metavariable] = ACTIONS(2396), - [sym__raw_string_literal_start] = ACTIONS(2396), - [sym_float_literal] = ACTIONS(2396), + [ts_builtin_sym_end] = ACTIONS(2463), + [sym_identifier] = ACTIONS(2465), + [anon_sym_SEMI] = ACTIONS(2463), + [anon_sym_macro_rules_BANG] = ACTIONS(2463), + [anon_sym_LPAREN] = ACTIONS(2463), + [anon_sym_LBRACK] = ACTIONS(2463), + [anon_sym_LBRACE] = ACTIONS(2463), + [anon_sym_RBRACE] = ACTIONS(2463), + [anon_sym_macro] = ACTIONS(2465), + [anon_sym_STAR] = ACTIONS(2463), + [anon_sym_u8] = ACTIONS(2465), + [anon_sym_i8] = ACTIONS(2465), + [anon_sym_u16] = ACTIONS(2465), + [anon_sym_i16] = ACTIONS(2465), + [anon_sym_u32] = ACTIONS(2465), + [anon_sym_i32] = ACTIONS(2465), + [anon_sym_u64] = ACTIONS(2465), + [anon_sym_i64] = ACTIONS(2465), + [anon_sym_u128] = ACTIONS(2465), + [anon_sym_i128] = ACTIONS(2465), + [anon_sym_isize] = ACTIONS(2465), + [anon_sym_usize] = ACTIONS(2465), + [anon_sym_f32] = ACTIONS(2465), + [anon_sym_f64] = ACTIONS(2465), + [anon_sym_bool] = ACTIONS(2465), + [anon_sym_str] = ACTIONS(2465), + [anon_sym_char] = ACTIONS(2465), + [anon_sym_DASH] = ACTIONS(2463), + [anon_sym_BANG] = ACTIONS(2463), + [anon_sym_AMP] = ACTIONS(2463), + [anon_sym_PIPE] = ACTIONS(2463), + [anon_sym_LT] = ACTIONS(2463), + [anon_sym_DOT_DOT] = ACTIONS(2463), + [anon_sym_COLON_COLON] = ACTIONS(2463), + [anon_sym_POUND] = ACTIONS(2463), + [anon_sym_SQUOTE] = ACTIONS(2465), + [anon_sym_async] = ACTIONS(2465), + [anon_sym_break] = ACTIONS(2465), + [anon_sym_const] = ACTIONS(2465), + [anon_sym_continue] = ACTIONS(2465), + [anon_sym_default] = ACTIONS(2465), + [anon_sym_enum] = ACTIONS(2465), + [anon_sym_fn] = ACTIONS(2465), + [anon_sym_for] = ACTIONS(2465), + [anon_sym_if] = ACTIONS(2465), + [anon_sym_impl] = ACTIONS(2465), + [anon_sym_let] = ACTIONS(2465), + [anon_sym_loop] = ACTIONS(2465), + [anon_sym_match] = ACTIONS(2465), + [anon_sym_mod] = ACTIONS(2465), + [anon_sym_pub] = ACTIONS(2465), + [anon_sym_return] = ACTIONS(2465), + [anon_sym_static] = ACTIONS(2465), + [anon_sym_struct] = ACTIONS(2465), + [anon_sym_trait] = ACTIONS(2465), + [anon_sym_type] = ACTIONS(2465), + [anon_sym_union] = ACTIONS(2465), + [anon_sym_unsafe] = ACTIONS(2465), + [anon_sym_use] = ACTIONS(2465), + [anon_sym_while] = ACTIONS(2465), + [anon_sym_extern] = ACTIONS(2465), + [anon_sym_yield] = ACTIONS(2465), + [anon_sym_move] = ACTIONS(2465), + [anon_sym_try] = ACTIONS(2465), + [sym_integer_literal] = ACTIONS(2463), + [aux_sym_string_literal_token1] = ACTIONS(2463), + [sym_char_literal] = ACTIONS(2463), + [anon_sym_true] = ACTIONS(2465), + [anon_sym_false] = ACTIONS(2465), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2465), + [sym_super] = ACTIONS(2465), + [sym_crate] = ACTIONS(2465), + [sym_metavariable] = ACTIONS(2463), + [sym__raw_string_literal_start] = ACTIONS(2463), + [sym_float_literal] = ACTIONS(2463), }, [652] = { [sym_line_comment] = STATE(652), [sym_block_comment] = STATE(652), - [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_LBRACK] = ACTIONS(1432), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(1432), - [anon_sym_BANG] = ACTIONS(1432), - [anon_sym_AMP] = ACTIONS(1432), - [anon_sym_PIPE] = ACTIONS(1432), - [anon_sym_LT] = ACTIONS(1432), - [anon_sym_DOT_DOT] = ACTIONS(1432), - [anon_sym_COLON_COLON] = ACTIONS(1432), - [anon_sym_POUND] = ACTIONS(1432), - [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_extern] = ACTIONS(1434), - [anon_sym_yield] = ACTIONS(1434), - [anon_sym_move] = ACTIONS(1434), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1434), - [sym_super] = ACTIONS(1434), - [sym_crate] = ACTIONS(1434), - [sym_metavariable] = ACTIONS(1432), - [sym__raw_string_literal_start] = ACTIONS(1432), - [sym_float_literal] = ACTIONS(1432), + [ts_builtin_sym_end] = ACTIONS(2467), + [sym_identifier] = ACTIONS(2469), + [anon_sym_SEMI] = ACTIONS(2467), + [anon_sym_macro_rules_BANG] = ACTIONS(2467), + [anon_sym_LPAREN] = ACTIONS(2467), + [anon_sym_LBRACK] = ACTIONS(2467), + [anon_sym_LBRACE] = ACTIONS(2467), + [anon_sym_RBRACE] = ACTIONS(2467), + [anon_sym_macro] = ACTIONS(2469), + [anon_sym_STAR] = ACTIONS(2467), + [anon_sym_u8] = ACTIONS(2469), + [anon_sym_i8] = ACTIONS(2469), + [anon_sym_u16] = ACTIONS(2469), + [anon_sym_i16] = ACTIONS(2469), + [anon_sym_u32] = ACTIONS(2469), + [anon_sym_i32] = ACTIONS(2469), + [anon_sym_u64] = ACTIONS(2469), + [anon_sym_i64] = ACTIONS(2469), + [anon_sym_u128] = ACTIONS(2469), + [anon_sym_i128] = ACTIONS(2469), + [anon_sym_isize] = ACTIONS(2469), + [anon_sym_usize] = ACTIONS(2469), + [anon_sym_f32] = ACTIONS(2469), + [anon_sym_f64] = ACTIONS(2469), + [anon_sym_bool] = ACTIONS(2469), + [anon_sym_str] = ACTIONS(2469), + [anon_sym_char] = ACTIONS(2469), + [anon_sym_DASH] = ACTIONS(2467), + [anon_sym_BANG] = ACTIONS(2467), + [anon_sym_AMP] = ACTIONS(2467), + [anon_sym_PIPE] = ACTIONS(2467), + [anon_sym_LT] = ACTIONS(2467), + [anon_sym_DOT_DOT] = ACTIONS(2467), + [anon_sym_COLON_COLON] = ACTIONS(2467), + [anon_sym_POUND] = ACTIONS(2467), + [anon_sym_SQUOTE] = ACTIONS(2469), + [anon_sym_async] = ACTIONS(2469), + [anon_sym_break] = ACTIONS(2469), + [anon_sym_const] = ACTIONS(2469), + [anon_sym_continue] = ACTIONS(2469), + [anon_sym_default] = ACTIONS(2469), + [anon_sym_enum] = ACTIONS(2469), + [anon_sym_fn] = ACTIONS(2469), + [anon_sym_for] = ACTIONS(2469), + [anon_sym_if] = ACTIONS(2469), + [anon_sym_impl] = ACTIONS(2469), + [anon_sym_let] = ACTIONS(2469), + [anon_sym_loop] = ACTIONS(2469), + [anon_sym_match] = ACTIONS(2469), + [anon_sym_mod] = ACTIONS(2469), + [anon_sym_pub] = ACTIONS(2469), + [anon_sym_return] = ACTIONS(2469), + [anon_sym_static] = ACTIONS(2469), + [anon_sym_struct] = ACTIONS(2469), + [anon_sym_trait] = ACTIONS(2469), + [anon_sym_type] = ACTIONS(2469), + [anon_sym_union] = ACTIONS(2469), + [anon_sym_unsafe] = ACTIONS(2469), + [anon_sym_use] = ACTIONS(2469), + [anon_sym_while] = ACTIONS(2469), + [anon_sym_extern] = ACTIONS(2469), + [anon_sym_yield] = ACTIONS(2469), + [anon_sym_move] = ACTIONS(2469), + [anon_sym_try] = ACTIONS(2469), + [sym_integer_literal] = ACTIONS(2467), + [aux_sym_string_literal_token1] = ACTIONS(2467), + [sym_char_literal] = ACTIONS(2467), + [anon_sym_true] = ACTIONS(2469), + [anon_sym_false] = ACTIONS(2469), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2469), + [sym_super] = ACTIONS(2469), + [sym_crate] = ACTIONS(2469), + [sym_metavariable] = ACTIONS(2467), + [sym__raw_string_literal_start] = ACTIONS(2467), + [sym_float_literal] = ACTIONS(2467), }, [653] = { [sym_line_comment] = STATE(653), [sym_block_comment] = STATE(653), - [ts_builtin_sym_end] = ACTIONS(2400), - [sym_identifier] = ACTIONS(2402), - [anon_sym_SEMI] = ACTIONS(2400), - [anon_sym_macro_rules_BANG] = ACTIONS(2400), - [anon_sym_LPAREN] = ACTIONS(2400), - [anon_sym_LBRACK] = ACTIONS(2400), - [anon_sym_LBRACE] = ACTIONS(2400), - [anon_sym_RBRACE] = ACTIONS(2400), - [anon_sym_STAR] = ACTIONS(2400), - [anon_sym_u8] = ACTIONS(2402), - [anon_sym_i8] = ACTIONS(2402), - [anon_sym_u16] = ACTIONS(2402), - [anon_sym_i16] = ACTIONS(2402), - [anon_sym_u32] = ACTIONS(2402), - [anon_sym_i32] = ACTIONS(2402), - [anon_sym_u64] = ACTIONS(2402), - [anon_sym_i64] = ACTIONS(2402), - [anon_sym_u128] = ACTIONS(2402), - [anon_sym_i128] = ACTIONS(2402), - [anon_sym_isize] = ACTIONS(2402), - [anon_sym_usize] = ACTIONS(2402), - [anon_sym_f32] = ACTIONS(2402), - [anon_sym_f64] = ACTIONS(2402), - [anon_sym_bool] = ACTIONS(2402), - [anon_sym_str] = ACTIONS(2402), - [anon_sym_char] = ACTIONS(2402), - [anon_sym_DASH] = ACTIONS(2400), - [anon_sym_BANG] = ACTIONS(2400), - [anon_sym_AMP] = ACTIONS(2400), - [anon_sym_PIPE] = ACTIONS(2400), - [anon_sym_LT] = ACTIONS(2400), - [anon_sym_DOT_DOT] = ACTIONS(2400), - [anon_sym_COLON_COLON] = ACTIONS(2400), - [anon_sym_POUND] = ACTIONS(2400), - [anon_sym_SQUOTE] = ACTIONS(2402), - [anon_sym_async] = ACTIONS(2402), - [anon_sym_break] = ACTIONS(2402), - [anon_sym_const] = ACTIONS(2402), - [anon_sym_continue] = ACTIONS(2402), - [anon_sym_default] = ACTIONS(2402), - [anon_sym_enum] = ACTIONS(2402), - [anon_sym_fn] = ACTIONS(2402), - [anon_sym_for] = ACTIONS(2402), - [anon_sym_if] = ACTIONS(2402), - [anon_sym_impl] = ACTIONS(2402), - [anon_sym_let] = ACTIONS(2402), - [anon_sym_loop] = ACTIONS(2402), - [anon_sym_match] = ACTIONS(2402), - [anon_sym_mod] = ACTIONS(2402), - [anon_sym_pub] = ACTIONS(2402), - [anon_sym_return] = ACTIONS(2402), - [anon_sym_static] = ACTIONS(2402), - [anon_sym_struct] = ACTIONS(2402), - [anon_sym_trait] = ACTIONS(2402), - [anon_sym_type] = ACTIONS(2402), - [anon_sym_union] = ACTIONS(2402), - [anon_sym_unsafe] = ACTIONS(2402), - [anon_sym_use] = ACTIONS(2402), - [anon_sym_while] = ACTIONS(2402), - [anon_sym_extern] = ACTIONS(2402), - [anon_sym_yield] = ACTIONS(2402), - [anon_sym_move] = ACTIONS(2402), - [anon_sym_try] = ACTIONS(2402), - [sym_integer_literal] = ACTIONS(2400), - [aux_sym_string_literal_token1] = ACTIONS(2400), - [sym_char_literal] = ACTIONS(2400), - [anon_sym_true] = ACTIONS(2402), - [anon_sym_false] = ACTIONS(2402), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2402), - [sym_super] = ACTIONS(2402), - [sym_crate] = ACTIONS(2402), - [sym_metavariable] = ACTIONS(2400), - [sym__raw_string_literal_start] = ACTIONS(2400), - [sym_float_literal] = ACTIONS(2400), + [ts_builtin_sym_end] = ACTIONS(2471), + [sym_identifier] = ACTIONS(2473), + [anon_sym_SEMI] = ACTIONS(2471), + [anon_sym_macro_rules_BANG] = ACTIONS(2471), + [anon_sym_LPAREN] = ACTIONS(2471), + [anon_sym_LBRACK] = ACTIONS(2471), + [anon_sym_LBRACE] = ACTIONS(2471), + [anon_sym_RBRACE] = ACTIONS(2471), + [anon_sym_macro] = ACTIONS(2473), + [anon_sym_STAR] = ACTIONS(2471), + [anon_sym_u8] = ACTIONS(2473), + [anon_sym_i8] = ACTIONS(2473), + [anon_sym_u16] = ACTIONS(2473), + [anon_sym_i16] = ACTIONS(2473), + [anon_sym_u32] = ACTIONS(2473), + [anon_sym_i32] = ACTIONS(2473), + [anon_sym_u64] = ACTIONS(2473), + [anon_sym_i64] = ACTIONS(2473), + [anon_sym_u128] = ACTIONS(2473), + [anon_sym_i128] = ACTIONS(2473), + [anon_sym_isize] = ACTIONS(2473), + [anon_sym_usize] = ACTIONS(2473), + [anon_sym_f32] = ACTIONS(2473), + [anon_sym_f64] = ACTIONS(2473), + [anon_sym_bool] = ACTIONS(2473), + [anon_sym_str] = ACTIONS(2473), + [anon_sym_char] = ACTIONS(2473), + [anon_sym_DASH] = ACTIONS(2471), + [anon_sym_BANG] = ACTIONS(2471), + [anon_sym_AMP] = ACTIONS(2471), + [anon_sym_PIPE] = ACTIONS(2471), + [anon_sym_LT] = ACTIONS(2471), + [anon_sym_DOT_DOT] = ACTIONS(2471), + [anon_sym_COLON_COLON] = ACTIONS(2471), + [anon_sym_POUND] = ACTIONS(2471), + [anon_sym_SQUOTE] = ACTIONS(2473), + [anon_sym_async] = ACTIONS(2473), + [anon_sym_break] = ACTIONS(2473), + [anon_sym_const] = ACTIONS(2473), + [anon_sym_continue] = ACTIONS(2473), + [anon_sym_default] = ACTIONS(2473), + [anon_sym_enum] = ACTIONS(2473), + [anon_sym_fn] = ACTIONS(2473), + [anon_sym_for] = ACTIONS(2473), + [anon_sym_if] = ACTIONS(2473), + [anon_sym_impl] = ACTIONS(2473), + [anon_sym_let] = ACTIONS(2473), + [anon_sym_loop] = ACTIONS(2473), + [anon_sym_match] = ACTIONS(2473), + [anon_sym_mod] = ACTIONS(2473), + [anon_sym_pub] = ACTIONS(2473), + [anon_sym_return] = ACTIONS(2473), + [anon_sym_static] = ACTIONS(2473), + [anon_sym_struct] = ACTIONS(2473), + [anon_sym_trait] = ACTIONS(2473), + [anon_sym_type] = ACTIONS(2473), + [anon_sym_union] = ACTIONS(2473), + [anon_sym_unsafe] = ACTIONS(2473), + [anon_sym_use] = ACTIONS(2473), + [anon_sym_while] = ACTIONS(2473), + [anon_sym_extern] = ACTIONS(2473), + [anon_sym_yield] = ACTIONS(2473), + [anon_sym_move] = ACTIONS(2473), + [anon_sym_try] = ACTIONS(2473), + [sym_integer_literal] = ACTIONS(2471), + [aux_sym_string_literal_token1] = ACTIONS(2471), + [sym_char_literal] = ACTIONS(2471), + [anon_sym_true] = ACTIONS(2473), + [anon_sym_false] = ACTIONS(2473), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2473), + [sym_super] = ACTIONS(2473), + [sym_crate] = ACTIONS(2473), + [sym_metavariable] = ACTIONS(2471), + [sym__raw_string_literal_start] = ACTIONS(2471), + [sym_float_literal] = ACTIONS(2471), }, [654] = { - [sym_empty_statement] = STATE(1456), - [sym_macro_definition] = STATE(1456), - [sym_attribute_item] = STATE(1456), - [sym_inner_attribute_item] = STATE(1456), - [sym_mod_item] = STATE(1456), - [sym_foreign_mod_item] = STATE(1456), - [sym_struct_item] = STATE(1456), - [sym_union_item] = STATE(1456), - [sym_enum_item] = STATE(1456), - [sym_extern_crate_declaration] = STATE(1456), - [sym_const_item] = STATE(1456), - [sym_static_item] = STATE(1456), - [sym_type_item] = STATE(1456), - [sym_function_item] = STATE(1456), - [sym_function_signature_item] = STATE(1456), - [sym_function_modifiers] = STATE(3593), - [sym_impl_item] = STATE(1456), - [sym_trait_item] = STATE(1456), - [sym_associated_type] = STATE(1456), - [sym_let_declaration] = STATE(1456), - [sym_use_declaration] = STATE(1456), - [sym_extern_modifier] = STATE(2154), - [sym_visibility_modifier] = STATE(1934), - [sym_bracketed_type] = STATE(3324), - [sym_generic_type_with_turbofish] = STATE(3350), - [sym_macro_invocation] = STATE(1456), - [sym_scoped_identifier] = STATE(3156), [sym_line_comment] = STATE(654), [sym_block_comment] = STATE(654), - [aux_sym_declaration_list_repeat1] = STATE(646), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2330), - [anon_sym_SEMI] = ACTIONS(2332), - [anon_sym_macro_rules_BANG] = ACTIONS(2334), - [anon_sym_RBRACE] = ACTIONS(2404), - [anon_sym_u8] = ACTIONS(2338), - [anon_sym_i8] = ACTIONS(2338), - [anon_sym_u16] = ACTIONS(2338), - [anon_sym_i16] = ACTIONS(2338), - [anon_sym_u32] = ACTIONS(2338), - [anon_sym_i32] = ACTIONS(2338), - [anon_sym_u64] = ACTIONS(2338), - [anon_sym_i64] = ACTIONS(2338), - [anon_sym_u128] = ACTIONS(2338), - [anon_sym_i128] = ACTIONS(2338), - [anon_sym_isize] = ACTIONS(2338), - [anon_sym_usize] = ACTIONS(2338), - [anon_sym_f32] = ACTIONS(2338), - [anon_sym_f64] = ACTIONS(2338), - [anon_sym_bool] = ACTIONS(2338), - [anon_sym_str] = ACTIONS(2338), - [anon_sym_char] = ACTIONS(2338), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(2340), - [anon_sym_POUND] = ACTIONS(2342), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(2344), - [anon_sym_default] = ACTIONS(2346), - [anon_sym_enum] = ACTIONS(2348), - [anon_sym_fn] = ACTIONS(2350), - [anon_sym_impl] = ACTIONS(2352), - [anon_sym_let] = ACTIONS(2354), - [anon_sym_mod] = ACTIONS(2356), - [anon_sym_pub] = ACTIONS(67), - [anon_sym_static] = ACTIONS(2358), - [anon_sym_struct] = ACTIONS(2360), - [anon_sym_trait] = ACTIONS(2362), - [anon_sym_type] = ACTIONS(2364), - [anon_sym_union] = ACTIONS(2366), - [anon_sym_unsafe] = ACTIONS(2368), - [anon_sym_use] = ACTIONS(2370), - [anon_sym_extern] = ACTIONS(2372), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2374), - [sym_super] = ACTIONS(2374), - [sym_crate] = ACTIONS(2376), - [sym_metavariable] = ACTIONS(2378), + [ts_builtin_sym_end] = ACTIONS(2475), + [sym_identifier] = ACTIONS(2477), + [anon_sym_SEMI] = ACTIONS(2475), + [anon_sym_macro_rules_BANG] = ACTIONS(2475), + [anon_sym_LPAREN] = ACTIONS(2475), + [anon_sym_LBRACK] = ACTIONS(2475), + [anon_sym_LBRACE] = ACTIONS(2475), + [anon_sym_RBRACE] = ACTIONS(2475), + [anon_sym_macro] = ACTIONS(2477), + [anon_sym_STAR] = ACTIONS(2475), + [anon_sym_u8] = ACTIONS(2477), + [anon_sym_i8] = ACTIONS(2477), + [anon_sym_u16] = ACTIONS(2477), + [anon_sym_i16] = ACTIONS(2477), + [anon_sym_u32] = ACTIONS(2477), + [anon_sym_i32] = ACTIONS(2477), + [anon_sym_u64] = ACTIONS(2477), + [anon_sym_i64] = ACTIONS(2477), + [anon_sym_u128] = ACTIONS(2477), + [anon_sym_i128] = ACTIONS(2477), + [anon_sym_isize] = ACTIONS(2477), + [anon_sym_usize] = ACTIONS(2477), + [anon_sym_f32] = ACTIONS(2477), + [anon_sym_f64] = ACTIONS(2477), + [anon_sym_bool] = ACTIONS(2477), + [anon_sym_str] = ACTIONS(2477), + [anon_sym_char] = ACTIONS(2477), + [anon_sym_DASH] = ACTIONS(2475), + [anon_sym_BANG] = ACTIONS(2475), + [anon_sym_AMP] = ACTIONS(2475), + [anon_sym_PIPE] = ACTIONS(2475), + [anon_sym_LT] = ACTIONS(2475), + [anon_sym_DOT_DOT] = ACTIONS(2475), + [anon_sym_COLON_COLON] = ACTIONS(2475), + [anon_sym_POUND] = ACTIONS(2475), + [anon_sym_SQUOTE] = ACTIONS(2477), + [anon_sym_async] = ACTIONS(2477), + [anon_sym_break] = ACTIONS(2477), + [anon_sym_const] = ACTIONS(2477), + [anon_sym_continue] = ACTIONS(2477), + [anon_sym_default] = ACTIONS(2477), + [anon_sym_enum] = ACTIONS(2477), + [anon_sym_fn] = ACTIONS(2477), + [anon_sym_for] = ACTIONS(2477), + [anon_sym_if] = ACTIONS(2477), + [anon_sym_impl] = ACTIONS(2477), + [anon_sym_let] = ACTIONS(2477), + [anon_sym_loop] = ACTIONS(2477), + [anon_sym_match] = ACTIONS(2477), + [anon_sym_mod] = ACTIONS(2477), + [anon_sym_pub] = ACTIONS(2477), + [anon_sym_return] = ACTIONS(2477), + [anon_sym_static] = ACTIONS(2477), + [anon_sym_struct] = ACTIONS(2477), + [anon_sym_trait] = ACTIONS(2477), + [anon_sym_type] = ACTIONS(2477), + [anon_sym_union] = ACTIONS(2477), + [anon_sym_unsafe] = ACTIONS(2477), + [anon_sym_use] = ACTIONS(2477), + [anon_sym_while] = ACTIONS(2477), + [anon_sym_extern] = ACTIONS(2477), + [anon_sym_yield] = ACTIONS(2477), + [anon_sym_move] = ACTIONS(2477), + [anon_sym_try] = ACTIONS(2477), + [sym_integer_literal] = ACTIONS(2475), + [aux_sym_string_literal_token1] = ACTIONS(2475), + [sym_char_literal] = ACTIONS(2475), + [anon_sym_true] = ACTIONS(2477), + [anon_sym_false] = ACTIONS(2477), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2477), + [sym_super] = ACTIONS(2477), + [sym_crate] = ACTIONS(2477), + [sym_metavariable] = ACTIONS(2475), + [sym__raw_string_literal_start] = ACTIONS(2475), + [sym_float_literal] = ACTIONS(2475), }, [655] = { [sym_line_comment] = STATE(655), [sym_block_comment] = STATE(655), - [ts_builtin_sym_end] = ACTIONS(2406), - [sym_identifier] = ACTIONS(2408), - [anon_sym_SEMI] = ACTIONS(2406), - [anon_sym_macro_rules_BANG] = ACTIONS(2406), - [anon_sym_LPAREN] = ACTIONS(2406), - [anon_sym_LBRACK] = ACTIONS(2406), - [anon_sym_LBRACE] = ACTIONS(2406), - [anon_sym_RBRACE] = ACTIONS(2406), - [anon_sym_STAR] = ACTIONS(2406), - [anon_sym_u8] = ACTIONS(2408), - [anon_sym_i8] = ACTIONS(2408), - [anon_sym_u16] = ACTIONS(2408), - [anon_sym_i16] = ACTIONS(2408), - [anon_sym_u32] = ACTIONS(2408), - [anon_sym_i32] = ACTIONS(2408), - [anon_sym_u64] = ACTIONS(2408), - [anon_sym_i64] = ACTIONS(2408), - [anon_sym_u128] = ACTIONS(2408), - [anon_sym_i128] = ACTIONS(2408), - [anon_sym_isize] = ACTIONS(2408), - [anon_sym_usize] = ACTIONS(2408), - [anon_sym_f32] = ACTIONS(2408), - [anon_sym_f64] = ACTIONS(2408), - [anon_sym_bool] = ACTIONS(2408), - [anon_sym_str] = ACTIONS(2408), - [anon_sym_char] = ACTIONS(2408), - [anon_sym_DASH] = ACTIONS(2406), - [anon_sym_BANG] = ACTIONS(2406), - [anon_sym_AMP] = ACTIONS(2406), - [anon_sym_PIPE] = ACTIONS(2406), - [anon_sym_LT] = ACTIONS(2406), - [anon_sym_DOT_DOT] = ACTIONS(2406), - [anon_sym_COLON_COLON] = ACTIONS(2406), - [anon_sym_POUND] = ACTIONS(2406), - [anon_sym_SQUOTE] = ACTIONS(2408), - [anon_sym_async] = ACTIONS(2408), - [anon_sym_break] = ACTIONS(2408), - [anon_sym_const] = ACTIONS(2408), - [anon_sym_continue] = ACTIONS(2408), - [anon_sym_default] = ACTIONS(2408), - [anon_sym_enum] = ACTIONS(2408), - [anon_sym_fn] = ACTIONS(2408), - [anon_sym_for] = ACTIONS(2408), - [anon_sym_if] = ACTIONS(2408), - [anon_sym_impl] = ACTIONS(2408), - [anon_sym_let] = ACTIONS(2408), - [anon_sym_loop] = ACTIONS(2408), - [anon_sym_match] = ACTIONS(2408), - [anon_sym_mod] = ACTIONS(2408), - [anon_sym_pub] = ACTIONS(2408), - [anon_sym_return] = ACTIONS(2408), - [anon_sym_static] = ACTIONS(2408), - [anon_sym_struct] = ACTIONS(2408), - [anon_sym_trait] = ACTIONS(2408), - [anon_sym_type] = ACTIONS(2408), - [anon_sym_union] = ACTIONS(2408), - [anon_sym_unsafe] = ACTIONS(2408), - [anon_sym_use] = ACTIONS(2408), - [anon_sym_while] = ACTIONS(2408), - [anon_sym_extern] = ACTIONS(2408), - [anon_sym_yield] = ACTIONS(2408), - [anon_sym_move] = ACTIONS(2408), - [anon_sym_try] = ACTIONS(2408), - [sym_integer_literal] = ACTIONS(2406), - [aux_sym_string_literal_token1] = ACTIONS(2406), - [sym_char_literal] = ACTIONS(2406), - [anon_sym_true] = ACTIONS(2408), - [anon_sym_false] = ACTIONS(2408), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2408), - [sym_super] = ACTIONS(2408), - [sym_crate] = ACTIONS(2408), - [sym_metavariable] = ACTIONS(2406), - [sym__raw_string_literal_start] = ACTIONS(2406), - [sym_float_literal] = ACTIONS(2406), + [ts_builtin_sym_end] = ACTIONS(2479), + [sym_identifier] = ACTIONS(2481), + [anon_sym_SEMI] = ACTIONS(2479), + [anon_sym_macro_rules_BANG] = ACTIONS(2479), + [anon_sym_LPAREN] = ACTIONS(2479), + [anon_sym_LBRACK] = ACTIONS(2479), + [anon_sym_LBRACE] = ACTIONS(2479), + [anon_sym_RBRACE] = ACTIONS(2479), + [anon_sym_macro] = ACTIONS(2481), + [anon_sym_STAR] = ACTIONS(2479), + [anon_sym_u8] = ACTIONS(2481), + [anon_sym_i8] = ACTIONS(2481), + [anon_sym_u16] = ACTIONS(2481), + [anon_sym_i16] = ACTIONS(2481), + [anon_sym_u32] = ACTIONS(2481), + [anon_sym_i32] = ACTIONS(2481), + [anon_sym_u64] = ACTIONS(2481), + [anon_sym_i64] = ACTIONS(2481), + [anon_sym_u128] = ACTIONS(2481), + [anon_sym_i128] = ACTIONS(2481), + [anon_sym_isize] = ACTIONS(2481), + [anon_sym_usize] = ACTIONS(2481), + [anon_sym_f32] = ACTIONS(2481), + [anon_sym_f64] = ACTIONS(2481), + [anon_sym_bool] = ACTIONS(2481), + [anon_sym_str] = ACTIONS(2481), + [anon_sym_char] = ACTIONS(2481), + [anon_sym_DASH] = ACTIONS(2479), + [anon_sym_BANG] = ACTIONS(2479), + [anon_sym_AMP] = ACTIONS(2479), + [anon_sym_PIPE] = ACTIONS(2479), + [anon_sym_LT] = ACTIONS(2479), + [anon_sym_DOT_DOT] = ACTIONS(2479), + [anon_sym_COLON_COLON] = ACTIONS(2479), + [anon_sym_POUND] = ACTIONS(2479), + [anon_sym_SQUOTE] = ACTIONS(2481), + [anon_sym_async] = ACTIONS(2481), + [anon_sym_break] = ACTIONS(2481), + [anon_sym_const] = ACTIONS(2481), + [anon_sym_continue] = ACTIONS(2481), + [anon_sym_default] = ACTIONS(2481), + [anon_sym_enum] = ACTIONS(2481), + [anon_sym_fn] = ACTIONS(2481), + [anon_sym_for] = ACTIONS(2481), + [anon_sym_if] = ACTIONS(2481), + [anon_sym_impl] = ACTIONS(2481), + [anon_sym_let] = ACTIONS(2481), + [anon_sym_loop] = ACTIONS(2481), + [anon_sym_match] = ACTIONS(2481), + [anon_sym_mod] = ACTIONS(2481), + [anon_sym_pub] = ACTIONS(2481), + [anon_sym_return] = ACTIONS(2481), + [anon_sym_static] = ACTIONS(2481), + [anon_sym_struct] = ACTIONS(2481), + [anon_sym_trait] = ACTIONS(2481), + [anon_sym_type] = ACTIONS(2481), + [anon_sym_union] = ACTIONS(2481), + [anon_sym_unsafe] = ACTIONS(2481), + [anon_sym_use] = ACTIONS(2481), + [anon_sym_while] = ACTIONS(2481), + [anon_sym_extern] = ACTIONS(2481), + [anon_sym_yield] = ACTIONS(2481), + [anon_sym_move] = ACTIONS(2481), + [anon_sym_try] = ACTIONS(2481), + [sym_integer_literal] = ACTIONS(2479), + [aux_sym_string_literal_token1] = ACTIONS(2479), + [sym_char_literal] = ACTIONS(2479), + [anon_sym_true] = ACTIONS(2481), + [anon_sym_false] = ACTIONS(2481), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2481), + [sym_super] = ACTIONS(2481), + [sym_crate] = ACTIONS(2481), + [sym_metavariable] = ACTIONS(2479), + [sym__raw_string_literal_start] = ACTIONS(2479), + [sym_float_literal] = ACTIONS(2479), }, [656] = { [sym_line_comment] = STATE(656), [sym_block_comment] = STATE(656), - [ts_builtin_sym_end] = ACTIONS(2410), - [sym_identifier] = ACTIONS(2412), - [anon_sym_SEMI] = ACTIONS(2410), - [anon_sym_macro_rules_BANG] = ACTIONS(2410), - [anon_sym_LPAREN] = ACTIONS(2410), - [anon_sym_LBRACK] = ACTIONS(2410), - [anon_sym_LBRACE] = ACTIONS(2410), - [anon_sym_RBRACE] = ACTIONS(2410), - [anon_sym_STAR] = ACTIONS(2410), - [anon_sym_u8] = ACTIONS(2412), - [anon_sym_i8] = ACTIONS(2412), - [anon_sym_u16] = ACTIONS(2412), - [anon_sym_i16] = ACTIONS(2412), - [anon_sym_u32] = ACTIONS(2412), - [anon_sym_i32] = ACTIONS(2412), - [anon_sym_u64] = ACTIONS(2412), - [anon_sym_i64] = ACTIONS(2412), - [anon_sym_u128] = ACTIONS(2412), - [anon_sym_i128] = ACTIONS(2412), - [anon_sym_isize] = ACTIONS(2412), - [anon_sym_usize] = ACTIONS(2412), - [anon_sym_f32] = ACTIONS(2412), - [anon_sym_f64] = ACTIONS(2412), - [anon_sym_bool] = ACTIONS(2412), - [anon_sym_str] = ACTIONS(2412), - [anon_sym_char] = ACTIONS(2412), - [anon_sym_DASH] = ACTIONS(2410), - [anon_sym_BANG] = ACTIONS(2410), - [anon_sym_AMP] = ACTIONS(2410), - [anon_sym_PIPE] = ACTIONS(2410), - [anon_sym_LT] = ACTIONS(2410), - [anon_sym_DOT_DOT] = ACTIONS(2410), - [anon_sym_COLON_COLON] = ACTIONS(2410), - [anon_sym_POUND] = ACTIONS(2410), - [anon_sym_SQUOTE] = ACTIONS(2412), - [anon_sym_async] = ACTIONS(2412), - [anon_sym_break] = ACTIONS(2412), - [anon_sym_const] = ACTIONS(2412), - [anon_sym_continue] = ACTIONS(2412), - [anon_sym_default] = ACTIONS(2412), - [anon_sym_enum] = ACTIONS(2412), - [anon_sym_fn] = ACTIONS(2412), - [anon_sym_for] = ACTIONS(2412), - [anon_sym_if] = ACTIONS(2412), - [anon_sym_impl] = ACTIONS(2412), - [anon_sym_let] = ACTIONS(2412), - [anon_sym_loop] = ACTIONS(2412), - [anon_sym_match] = ACTIONS(2412), - [anon_sym_mod] = ACTIONS(2412), - [anon_sym_pub] = ACTIONS(2412), - [anon_sym_return] = ACTIONS(2412), - [anon_sym_static] = ACTIONS(2412), - [anon_sym_struct] = ACTIONS(2412), - [anon_sym_trait] = ACTIONS(2412), - [anon_sym_type] = ACTIONS(2412), - [anon_sym_union] = ACTIONS(2412), - [anon_sym_unsafe] = ACTIONS(2412), - [anon_sym_use] = ACTIONS(2412), - [anon_sym_while] = ACTIONS(2412), - [anon_sym_extern] = ACTIONS(2412), - [anon_sym_yield] = ACTIONS(2412), - [anon_sym_move] = ACTIONS(2412), - [anon_sym_try] = ACTIONS(2412), - [sym_integer_literal] = ACTIONS(2410), - [aux_sym_string_literal_token1] = ACTIONS(2410), - [sym_char_literal] = ACTIONS(2410), - [anon_sym_true] = ACTIONS(2412), - [anon_sym_false] = ACTIONS(2412), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2412), - [sym_super] = ACTIONS(2412), - [sym_crate] = ACTIONS(2412), - [sym_metavariable] = ACTIONS(2410), - [sym__raw_string_literal_start] = ACTIONS(2410), - [sym_float_literal] = ACTIONS(2410), + [ts_builtin_sym_end] = ACTIONS(2483), + [sym_identifier] = ACTIONS(2485), + [anon_sym_SEMI] = ACTIONS(2483), + [anon_sym_macro_rules_BANG] = ACTIONS(2483), + [anon_sym_LPAREN] = ACTIONS(2483), + [anon_sym_LBRACK] = ACTIONS(2483), + [anon_sym_LBRACE] = ACTIONS(2483), + [anon_sym_RBRACE] = ACTIONS(2483), + [anon_sym_macro] = ACTIONS(2485), + [anon_sym_STAR] = ACTIONS(2483), + [anon_sym_u8] = ACTIONS(2485), + [anon_sym_i8] = ACTIONS(2485), + [anon_sym_u16] = ACTIONS(2485), + [anon_sym_i16] = ACTIONS(2485), + [anon_sym_u32] = ACTIONS(2485), + [anon_sym_i32] = ACTIONS(2485), + [anon_sym_u64] = ACTIONS(2485), + [anon_sym_i64] = ACTIONS(2485), + [anon_sym_u128] = ACTIONS(2485), + [anon_sym_i128] = ACTIONS(2485), + [anon_sym_isize] = ACTIONS(2485), + [anon_sym_usize] = ACTIONS(2485), + [anon_sym_f32] = ACTIONS(2485), + [anon_sym_f64] = ACTIONS(2485), + [anon_sym_bool] = ACTIONS(2485), + [anon_sym_str] = ACTIONS(2485), + [anon_sym_char] = ACTIONS(2485), + [anon_sym_DASH] = ACTIONS(2483), + [anon_sym_BANG] = ACTIONS(2483), + [anon_sym_AMP] = ACTIONS(2483), + [anon_sym_PIPE] = ACTIONS(2483), + [anon_sym_LT] = ACTIONS(2483), + [anon_sym_DOT_DOT] = ACTIONS(2483), + [anon_sym_COLON_COLON] = ACTIONS(2483), + [anon_sym_POUND] = ACTIONS(2483), + [anon_sym_SQUOTE] = ACTIONS(2485), + [anon_sym_async] = ACTIONS(2485), + [anon_sym_break] = ACTIONS(2485), + [anon_sym_const] = ACTIONS(2485), + [anon_sym_continue] = ACTIONS(2485), + [anon_sym_default] = ACTIONS(2485), + [anon_sym_enum] = ACTIONS(2485), + [anon_sym_fn] = ACTIONS(2485), + [anon_sym_for] = ACTIONS(2485), + [anon_sym_if] = ACTIONS(2485), + [anon_sym_impl] = ACTIONS(2485), + [anon_sym_let] = ACTIONS(2485), + [anon_sym_loop] = ACTIONS(2485), + [anon_sym_match] = ACTIONS(2485), + [anon_sym_mod] = ACTIONS(2485), + [anon_sym_pub] = ACTIONS(2485), + [anon_sym_return] = ACTIONS(2485), + [anon_sym_static] = ACTIONS(2485), + [anon_sym_struct] = ACTIONS(2485), + [anon_sym_trait] = ACTIONS(2485), + [anon_sym_type] = ACTIONS(2485), + [anon_sym_union] = ACTIONS(2485), + [anon_sym_unsafe] = ACTIONS(2485), + [anon_sym_use] = ACTIONS(2485), + [anon_sym_while] = ACTIONS(2485), + [anon_sym_extern] = ACTIONS(2485), + [anon_sym_yield] = ACTIONS(2485), + [anon_sym_move] = ACTIONS(2485), + [anon_sym_try] = ACTIONS(2485), + [sym_integer_literal] = ACTIONS(2483), + [aux_sym_string_literal_token1] = ACTIONS(2483), + [sym_char_literal] = ACTIONS(2483), + [anon_sym_true] = ACTIONS(2485), + [anon_sym_false] = ACTIONS(2485), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2485), + [sym_super] = ACTIONS(2485), + [sym_crate] = ACTIONS(2485), + [sym_metavariable] = ACTIONS(2483), + [sym__raw_string_literal_start] = ACTIONS(2483), + [sym_float_literal] = ACTIONS(2483), }, [657] = { [sym_line_comment] = STATE(657), [sym_block_comment] = STATE(657), - [ts_builtin_sym_end] = ACTIONS(2414), - [sym_identifier] = ACTIONS(2416), - [anon_sym_SEMI] = ACTIONS(2414), - [anon_sym_macro_rules_BANG] = ACTIONS(2414), - [anon_sym_LPAREN] = ACTIONS(2414), - [anon_sym_LBRACK] = ACTIONS(2414), - [anon_sym_LBRACE] = ACTIONS(2414), - [anon_sym_RBRACE] = ACTIONS(2414), - [anon_sym_STAR] = ACTIONS(2414), - [anon_sym_u8] = ACTIONS(2416), - [anon_sym_i8] = ACTIONS(2416), - [anon_sym_u16] = ACTIONS(2416), - [anon_sym_i16] = ACTIONS(2416), - [anon_sym_u32] = ACTIONS(2416), - [anon_sym_i32] = ACTIONS(2416), - [anon_sym_u64] = ACTIONS(2416), - [anon_sym_i64] = ACTIONS(2416), - [anon_sym_u128] = ACTIONS(2416), - [anon_sym_i128] = ACTIONS(2416), - [anon_sym_isize] = ACTIONS(2416), - [anon_sym_usize] = ACTIONS(2416), - [anon_sym_f32] = ACTIONS(2416), - [anon_sym_f64] = ACTIONS(2416), - [anon_sym_bool] = ACTIONS(2416), - [anon_sym_str] = ACTIONS(2416), - [anon_sym_char] = ACTIONS(2416), - [anon_sym_DASH] = ACTIONS(2414), - [anon_sym_BANG] = ACTIONS(2414), - [anon_sym_AMP] = ACTIONS(2414), - [anon_sym_PIPE] = ACTIONS(2414), - [anon_sym_LT] = ACTIONS(2414), - [anon_sym_DOT_DOT] = ACTIONS(2414), - [anon_sym_COLON_COLON] = ACTIONS(2414), - [anon_sym_POUND] = ACTIONS(2414), - [anon_sym_SQUOTE] = ACTIONS(2416), - [anon_sym_async] = ACTIONS(2416), - [anon_sym_break] = ACTIONS(2416), - [anon_sym_const] = ACTIONS(2416), - [anon_sym_continue] = ACTIONS(2416), - [anon_sym_default] = ACTIONS(2416), - [anon_sym_enum] = ACTIONS(2416), - [anon_sym_fn] = ACTIONS(2416), - [anon_sym_for] = ACTIONS(2416), - [anon_sym_if] = ACTIONS(2416), - [anon_sym_impl] = ACTIONS(2416), - [anon_sym_let] = ACTIONS(2416), - [anon_sym_loop] = ACTIONS(2416), - [anon_sym_match] = ACTIONS(2416), - [anon_sym_mod] = ACTIONS(2416), - [anon_sym_pub] = ACTIONS(2416), - [anon_sym_return] = ACTIONS(2416), - [anon_sym_static] = ACTIONS(2416), - [anon_sym_struct] = ACTIONS(2416), - [anon_sym_trait] = ACTIONS(2416), - [anon_sym_type] = ACTIONS(2416), - [anon_sym_union] = ACTIONS(2416), - [anon_sym_unsafe] = ACTIONS(2416), - [anon_sym_use] = ACTIONS(2416), - [anon_sym_while] = ACTIONS(2416), - [anon_sym_extern] = ACTIONS(2416), - [anon_sym_yield] = ACTIONS(2416), - [anon_sym_move] = ACTIONS(2416), - [anon_sym_try] = ACTIONS(2416), - [sym_integer_literal] = ACTIONS(2414), - [aux_sym_string_literal_token1] = ACTIONS(2414), - [sym_char_literal] = ACTIONS(2414), - [anon_sym_true] = ACTIONS(2416), - [anon_sym_false] = ACTIONS(2416), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2416), - [sym_super] = ACTIONS(2416), - [sym_crate] = ACTIONS(2416), - [sym_metavariable] = ACTIONS(2414), - [sym__raw_string_literal_start] = ACTIONS(2414), - [sym_float_literal] = ACTIONS(2414), + [ts_builtin_sym_end] = ACTIONS(2487), + [sym_identifier] = ACTIONS(2489), + [anon_sym_SEMI] = ACTIONS(2487), + [anon_sym_macro_rules_BANG] = ACTIONS(2487), + [anon_sym_LPAREN] = ACTIONS(2487), + [anon_sym_LBRACK] = ACTIONS(2487), + [anon_sym_LBRACE] = ACTIONS(2487), + [anon_sym_RBRACE] = ACTIONS(2487), + [anon_sym_macro] = ACTIONS(2489), + [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_DASH] = ACTIONS(2487), + [anon_sym_BANG] = ACTIONS(2487), + [anon_sym_AMP] = ACTIONS(2487), + [anon_sym_PIPE] = ACTIONS(2487), + [anon_sym_LT] = ACTIONS(2487), + [anon_sym_DOT_DOT] = ACTIONS(2487), + [anon_sym_COLON_COLON] = ACTIONS(2487), + [anon_sym_POUND] = ACTIONS(2487), + [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_enum] = ACTIONS(2489), + [anon_sym_fn] = ACTIONS(2489), + [anon_sym_for] = ACTIONS(2489), + [anon_sym_if] = ACTIONS(2489), + [anon_sym_impl] = ACTIONS(2489), + [anon_sym_let] = ACTIONS(2489), + [anon_sym_loop] = ACTIONS(2489), + [anon_sym_match] = ACTIONS(2489), + [anon_sym_mod] = ACTIONS(2489), + [anon_sym_pub] = ACTIONS(2489), + [anon_sym_return] = ACTIONS(2489), + [anon_sym_static] = ACTIONS(2489), + [anon_sym_struct] = ACTIONS(2489), + [anon_sym_trait] = ACTIONS(2489), + [anon_sym_type] = ACTIONS(2489), + [anon_sym_union] = ACTIONS(2489), + [anon_sym_unsafe] = ACTIONS(2489), + [anon_sym_use] = ACTIONS(2489), + [anon_sym_while] = ACTIONS(2489), + [anon_sym_extern] = ACTIONS(2489), + [anon_sym_yield] = ACTIONS(2489), + [anon_sym_move] = ACTIONS(2489), + [anon_sym_try] = ACTIONS(2489), + [sym_integer_literal] = ACTIONS(2487), + [aux_sym_string_literal_token1] = ACTIONS(2487), + [sym_char_literal] = ACTIONS(2487), + [anon_sym_true] = ACTIONS(2489), + [anon_sym_false] = ACTIONS(2489), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2489), + [sym_super] = ACTIONS(2489), + [sym_crate] = ACTIONS(2489), + [sym_metavariable] = ACTIONS(2487), + [sym__raw_string_literal_start] = ACTIONS(2487), + [sym_float_literal] = ACTIONS(2487), }, [658] = { [sym_line_comment] = STATE(658), [sym_block_comment] = STATE(658), - [ts_builtin_sym_end] = ACTIONS(2418), - [sym_identifier] = ACTIONS(2420), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_macro_rules_BANG] = ACTIONS(2418), - [anon_sym_LPAREN] = ACTIONS(2418), - [anon_sym_LBRACK] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_RBRACE] = ACTIONS(2418), - [anon_sym_STAR] = ACTIONS(2418), - [anon_sym_u8] = ACTIONS(2420), - [anon_sym_i8] = ACTIONS(2420), - [anon_sym_u16] = ACTIONS(2420), - [anon_sym_i16] = ACTIONS(2420), - [anon_sym_u32] = ACTIONS(2420), - [anon_sym_i32] = ACTIONS(2420), - [anon_sym_u64] = ACTIONS(2420), - [anon_sym_i64] = ACTIONS(2420), - [anon_sym_u128] = ACTIONS(2420), - [anon_sym_i128] = ACTIONS(2420), - [anon_sym_isize] = ACTIONS(2420), - [anon_sym_usize] = ACTIONS(2420), - [anon_sym_f32] = ACTIONS(2420), - [anon_sym_f64] = ACTIONS(2420), - [anon_sym_bool] = ACTIONS(2420), - [anon_sym_str] = ACTIONS(2420), - [anon_sym_char] = ACTIONS(2420), - [anon_sym_DASH] = ACTIONS(2418), - [anon_sym_BANG] = ACTIONS(2418), - [anon_sym_AMP] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_LT] = ACTIONS(2418), - [anon_sym_DOT_DOT] = ACTIONS(2418), - [anon_sym_COLON_COLON] = ACTIONS(2418), - [anon_sym_POUND] = ACTIONS(2418), - [anon_sym_SQUOTE] = ACTIONS(2420), - [anon_sym_async] = ACTIONS(2420), - [anon_sym_break] = ACTIONS(2420), - [anon_sym_const] = ACTIONS(2420), - [anon_sym_continue] = ACTIONS(2420), - [anon_sym_default] = ACTIONS(2420), - [anon_sym_enum] = ACTIONS(2420), - [anon_sym_fn] = ACTIONS(2420), - [anon_sym_for] = ACTIONS(2420), - [anon_sym_if] = ACTIONS(2420), - [anon_sym_impl] = ACTIONS(2420), - [anon_sym_let] = ACTIONS(2420), - [anon_sym_loop] = ACTIONS(2420), - [anon_sym_match] = ACTIONS(2420), - [anon_sym_mod] = ACTIONS(2420), - [anon_sym_pub] = ACTIONS(2420), - [anon_sym_return] = ACTIONS(2420), - [anon_sym_static] = ACTIONS(2420), - [anon_sym_struct] = ACTIONS(2420), - [anon_sym_trait] = ACTIONS(2420), - [anon_sym_type] = ACTIONS(2420), - [anon_sym_union] = ACTIONS(2420), - [anon_sym_unsafe] = ACTIONS(2420), - [anon_sym_use] = ACTIONS(2420), - [anon_sym_while] = ACTIONS(2420), - [anon_sym_extern] = ACTIONS(2420), - [anon_sym_yield] = ACTIONS(2420), - [anon_sym_move] = ACTIONS(2420), - [anon_sym_try] = ACTIONS(2420), - [sym_integer_literal] = ACTIONS(2418), - [aux_sym_string_literal_token1] = ACTIONS(2418), - [sym_char_literal] = ACTIONS(2418), - [anon_sym_true] = ACTIONS(2420), - [anon_sym_false] = ACTIONS(2420), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2420), - [sym_super] = ACTIONS(2420), - [sym_crate] = ACTIONS(2420), - [sym_metavariable] = ACTIONS(2418), - [sym__raw_string_literal_start] = ACTIONS(2418), - [sym_float_literal] = ACTIONS(2418), + [ts_builtin_sym_end] = ACTIONS(2491), + [sym_identifier] = ACTIONS(2493), + [anon_sym_SEMI] = ACTIONS(2491), + [anon_sym_macro_rules_BANG] = ACTIONS(2491), + [anon_sym_LPAREN] = ACTIONS(2491), + [anon_sym_LBRACK] = ACTIONS(2491), + [anon_sym_LBRACE] = ACTIONS(2491), + [anon_sym_RBRACE] = ACTIONS(2491), + [anon_sym_macro] = ACTIONS(2493), + [anon_sym_STAR] = ACTIONS(2491), + [anon_sym_u8] = ACTIONS(2493), + [anon_sym_i8] = ACTIONS(2493), + [anon_sym_u16] = ACTIONS(2493), + [anon_sym_i16] = ACTIONS(2493), + [anon_sym_u32] = ACTIONS(2493), + [anon_sym_i32] = ACTIONS(2493), + [anon_sym_u64] = ACTIONS(2493), + [anon_sym_i64] = ACTIONS(2493), + [anon_sym_u128] = ACTIONS(2493), + [anon_sym_i128] = ACTIONS(2493), + [anon_sym_isize] = ACTIONS(2493), + [anon_sym_usize] = ACTIONS(2493), + [anon_sym_f32] = ACTIONS(2493), + [anon_sym_f64] = ACTIONS(2493), + [anon_sym_bool] = ACTIONS(2493), + [anon_sym_str] = ACTIONS(2493), + [anon_sym_char] = ACTIONS(2493), + [anon_sym_DASH] = ACTIONS(2491), + [anon_sym_BANG] = ACTIONS(2491), + [anon_sym_AMP] = ACTIONS(2491), + [anon_sym_PIPE] = ACTIONS(2491), + [anon_sym_LT] = ACTIONS(2491), + [anon_sym_DOT_DOT] = ACTIONS(2491), + [anon_sym_COLON_COLON] = ACTIONS(2491), + [anon_sym_POUND] = ACTIONS(2491), + [anon_sym_SQUOTE] = ACTIONS(2493), + [anon_sym_async] = ACTIONS(2493), + [anon_sym_break] = ACTIONS(2493), + [anon_sym_const] = ACTIONS(2493), + [anon_sym_continue] = ACTIONS(2493), + [anon_sym_default] = ACTIONS(2493), + [anon_sym_enum] = ACTIONS(2493), + [anon_sym_fn] = ACTIONS(2493), + [anon_sym_for] = ACTIONS(2493), + [anon_sym_if] = ACTIONS(2493), + [anon_sym_impl] = ACTIONS(2493), + [anon_sym_let] = ACTIONS(2493), + [anon_sym_loop] = ACTIONS(2493), + [anon_sym_match] = ACTIONS(2493), + [anon_sym_mod] = ACTIONS(2493), + [anon_sym_pub] = ACTIONS(2493), + [anon_sym_return] = ACTIONS(2493), + [anon_sym_static] = ACTIONS(2493), + [anon_sym_struct] = ACTIONS(2493), + [anon_sym_trait] = ACTIONS(2493), + [anon_sym_type] = ACTIONS(2493), + [anon_sym_union] = ACTIONS(2493), + [anon_sym_unsafe] = ACTIONS(2493), + [anon_sym_use] = ACTIONS(2493), + [anon_sym_while] = ACTIONS(2493), + [anon_sym_extern] = ACTIONS(2493), + [anon_sym_yield] = ACTIONS(2493), + [anon_sym_move] = ACTIONS(2493), + [anon_sym_try] = ACTIONS(2493), + [sym_integer_literal] = ACTIONS(2491), + [aux_sym_string_literal_token1] = ACTIONS(2491), + [sym_char_literal] = ACTIONS(2491), + [anon_sym_true] = ACTIONS(2493), + [anon_sym_false] = ACTIONS(2493), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2493), + [sym_super] = ACTIONS(2493), + [sym_crate] = ACTIONS(2493), + [sym_metavariable] = ACTIONS(2491), + [sym__raw_string_literal_start] = ACTIONS(2491), + [sym_float_literal] = ACTIONS(2491), }, [659] = { [sym_line_comment] = STATE(659), [sym_block_comment] = STATE(659), - [ts_builtin_sym_end] = ACTIONS(2422), - [sym_identifier] = ACTIONS(2424), - [anon_sym_SEMI] = ACTIONS(2422), - [anon_sym_macro_rules_BANG] = ACTIONS(2422), - [anon_sym_LPAREN] = ACTIONS(2422), - [anon_sym_LBRACK] = ACTIONS(2422), - [anon_sym_LBRACE] = ACTIONS(2422), - [anon_sym_RBRACE] = ACTIONS(2422), - [anon_sym_STAR] = ACTIONS(2422), - [anon_sym_u8] = ACTIONS(2424), - [anon_sym_i8] = ACTIONS(2424), - [anon_sym_u16] = ACTIONS(2424), - [anon_sym_i16] = ACTIONS(2424), - [anon_sym_u32] = ACTIONS(2424), - [anon_sym_i32] = ACTIONS(2424), - [anon_sym_u64] = ACTIONS(2424), - [anon_sym_i64] = ACTIONS(2424), - [anon_sym_u128] = ACTIONS(2424), - [anon_sym_i128] = ACTIONS(2424), - [anon_sym_isize] = ACTIONS(2424), - [anon_sym_usize] = ACTIONS(2424), - [anon_sym_f32] = ACTIONS(2424), - [anon_sym_f64] = ACTIONS(2424), - [anon_sym_bool] = ACTIONS(2424), - [anon_sym_str] = ACTIONS(2424), - [anon_sym_char] = ACTIONS(2424), - [anon_sym_DASH] = ACTIONS(2422), - [anon_sym_BANG] = ACTIONS(2422), - [anon_sym_AMP] = ACTIONS(2422), - [anon_sym_PIPE] = ACTIONS(2422), - [anon_sym_LT] = ACTIONS(2422), - [anon_sym_DOT_DOT] = ACTIONS(2422), - [anon_sym_COLON_COLON] = ACTIONS(2422), - [anon_sym_POUND] = ACTIONS(2422), - [anon_sym_SQUOTE] = ACTIONS(2424), - [anon_sym_async] = ACTIONS(2424), - [anon_sym_break] = ACTIONS(2424), - [anon_sym_const] = ACTIONS(2424), - [anon_sym_continue] = ACTIONS(2424), - [anon_sym_default] = ACTIONS(2424), - [anon_sym_enum] = ACTIONS(2424), - [anon_sym_fn] = ACTIONS(2424), - [anon_sym_for] = ACTIONS(2424), - [anon_sym_if] = ACTIONS(2424), - [anon_sym_impl] = ACTIONS(2424), - [anon_sym_let] = ACTIONS(2424), - [anon_sym_loop] = ACTIONS(2424), - [anon_sym_match] = ACTIONS(2424), - [anon_sym_mod] = ACTIONS(2424), - [anon_sym_pub] = ACTIONS(2424), - [anon_sym_return] = ACTIONS(2424), - [anon_sym_static] = ACTIONS(2424), - [anon_sym_struct] = ACTIONS(2424), - [anon_sym_trait] = ACTIONS(2424), - [anon_sym_type] = ACTIONS(2424), - [anon_sym_union] = ACTIONS(2424), - [anon_sym_unsafe] = ACTIONS(2424), - [anon_sym_use] = ACTIONS(2424), - [anon_sym_while] = ACTIONS(2424), - [anon_sym_extern] = ACTIONS(2424), - [anon_sym_yield] = ACTIONS(2424), - [anon_sym_move] = ACTIONS(2424), - [anon_sym_try] = ACTIONS(2424), - [sym_integer_literal] = ACTIONS(2422), - [aux_sym_string_literal_token1] = ACTIONS(2422), - [sym_char_literal] = ACTIONS(2422), - [anon_sym_true] = ACTIONS(2424), - [anon_sym_false] = ACTIONS(2424), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2424), - [sym_super] = ACTIONS(2424), - [sym_crate] = ACTIONS(2424), - [sym_metavariable] = ACTIONS(2422), - [sym__raw_string_literal_start] = ACTIONS(2422), - [sym_float_literal] = ACTIONS(2422), + [ts_builtin_sym_end] = ACTIONS(2495), + [sym_identifier] = ACTIONS(2497), + [anon_sym_SEMI] = ACTIONS(2495), + [anon_sym_macro_rules_BANG] = ACTIONS(2495), + [anon_sym_LPAREN] = ACTIONS(2495), + [anon_sym_LBRACK] = ACTIONS(2495), + [anon_sym_LBRACE] = ACTIONS(2495), + [anon_sym_RBRACE] = ACTIONS(2495), + [anon_sym_macro] = ACTIONS(2497), + [anon_sym_STAR] = ACTIONS(2495), + [anon_sym_u8] = ACTIONS(2497), + [anon_sym_i8] = ACTIONS(2497), + [anon_sym_u16] = ACTIONS(2497), + [anon_sym_i16] = ACTIONS(2497), + [anon_sym_u32] = ACTIONS(2497), + [anon_sym_i32] = ACTIONS(2497), + [anon_sym_u64] = ACTIONS(2497), + [anon_sym_i64] = ACTIONS(2497), + [anon_sym_u128] = ACTIONS(2497), + [anon_sym_i128] = ACTIONS(2497), + [anon_sym_isize] = ACTIONS(2497), + [anon_sym_usize] = ACTIONS(2497), + [anon_sym_f32] = ACTIONS(2497), + [anon_sym_f64] = ACTIONS(2497), + [anon_sym_bool] = ACTIONS(2497), + [anon_sym_str] = ACTIONS(2497), + [anon_sym_char] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2495), + [anon_sym_BANG] = ACTIONS(2495), + [anon_sym_AMP] = ACTIONS(2495), + [anon_sym_PIPE] = ACTIONS(2495), + [anon_sym_LT] = ACTIONS(2495), + [anon_sym_DOT_DOT] = ACTIONS(2495), + [anon_sym_COLON_COLON] = ACTIONS(2495), + [anon_sym_POUND] = ACTIONS(2495), + [anon_sym_SQUOTE] = ACTIONS(2497), + [anon_sym_async] = ACTIONS(2497), + [anon_sym_break] = ACTIONS(2497), + [anon_sym_const] = ACTIONS(2497), + [anon_sym_continue] = ACTIONS(2497), + [anon_sym_default] = ACTIONS(2497), + [anon_sym_enum] = ACTIONS(2497), + [anon_sym_fn] = ACTIONS(2497), + [anon_sym_for] = ACTIONS(2497), + [anon_sym_if] = ACTIONS(2497), + [anon_sym_impl] = ACTIONS(2497), + [anon_sym_let] = ACTIONS(2497), + [anon_sym_loop] = ACTIONS(2497), + [anon_sym_match] = ACTIONS(2497), + [anon_sym_mod] = ACTIONS(2497), + [anon_sym_pub] = ACTIONS(2497), + [anon_sym_return] = ACTIONS(2497), + [anon_sym_static] = ACTIONS(2497), + [anon_sym_struct] = ACTIONS(2497), + [anon_sym_trait] = ACTIONS(2497), + [anon_sym_type] = ACTIONS(2497), + [anon_sym_union] = ACTIONS(2497), + [anon_sym_unsafe] = ACTIONS(2497), + [anon_sym_use] = ACTIONS(2497), + [anon_sym_while] = ACTIONS(2497), + [anon_sym_extern] = ACTIONS(2497), + [anon_sym_yield] = ACTIONS(2497), + [anon_sym_move] = ACTIONS(2497), + [anon_sym_try] = ACTIONS(2497), + [sym_integer_literal] = ACTIONS(2495), + [aux_sym_string_literal_token1] = ACTIONS(2495), + [sym_char_literal] = ACTIONS(2495), + [anon_sym_true] = ACTIONS(2497), + [anon_sym_false] = ACTIONS(2497), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2497), + [sym_super] = ACTIONS(2497), + [sym_crate] = ACTIONS(2497), + [sym_metavariable] = ACTIONS(2495), + [sym__raw_string_literal_start] = ACTIONS(2495), + [sym_float_literal] = ACTIONS(2495), }, [660] = { [sym_line_comment] = STATE(660), [sym_block_comment] = STATE(660), - [ts_builtin_sym_end] = ACTIONS(2426), - [sym_identifier] = ACTIONS(2428), - [anon_sym_SEMI] = ACTIONS(2426), - [anon_sym_macro_rules_BANG] = ACTIONS(2426), - [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_LBRACK] = ACTIONS(2426), - [anon_sym_LBRACE] = ACTIONS(2426), - [anon_sym_RBRACE] = ACTIONS(2426), - [anon_sym_STAR] = ACTIONS(2426), - [anon_sym_u8] = ACTIONS(2428), - [anon_sym_i8] = ACTIONS(2428), - [anon_sym_u16] = ACTIONS(2428), - [anon_sym_i16] = ACTIONS(2428), - [anon_sym_u32] = ACTIONS(2428), - [anon_sym_i32] = ACTIONS(2428), - [anon_sym_u64] = ACTIONS(2428), - [anon_sym_i64] = ACTIONS(2428), - [anon_sym_u128] = ACTIONS(2428), - [anon_sym_i128] = ACTIONS(2428), - [anon_sym_isize] = ACTIONS(2428), - [anon_sym_usize] = ACTIONS(2428), - [anon_sym_f32] = ACTIONS(2428), - [anon_sym_f64] = ACTIONS(2428), - [anon_sym_bool] = ACTIONS(2428), - [anon_sym_str] = ACTIONS(2428), - [anon_sym_char] = ACTIONS(2428), - [anon_sym_DASH] = ACTIONS(2426), - [anon_sym_BANG] = ACTIONS(2426), - [anon_sym_AMP] = ACTIONS(2426), - [anon_sym_PIPE] = ACTIONS(2426), - [anon_sym_LT] = ACTIONS(2426), - [anon_sym_DOT_DOT] = ACTIONS(2426), - [anon_sym_COLON_COLON] = ACTIONS(2426), - [anon_sym_POUND] = ACTIONS(2426), - [anon_sym_SQUOTE] = ACTIONS(2428), - [anon_sym_async] = ACTIONS(2428), - [anon_sym_break] = ACTIONS(2428), - [anon_sym_const] = ACTIONS(2428), - [anon_sym_continue] = ACTIONS(2428), - [anon_sym_default] = ACTIONS(2428), - [anon_sym_enum] = ACTIONS(2428), - [anon_sym_fn] = ACTIONS(2428), - [anon_sym_for] = ACTIONS(2428), - [anon_sym_if] = ACTIONS(2428), - [anon_sym_impl] = ACTIONS(2428), - [anon_sym_let] = ACTIONS(2428), - [anon_sym_loop] = ACTIONS(2428), - [anon_sym_match] = ACTIONS(2428), - [anon_sym_mod] = ACTIONS(2428), - [anon_sym_pub] = ACTIONS(2428), - [anon_sym_return] = ACTIONS(2428), - [anon_sym_static] = ACTIONS(2428), - [anon_sym_struct] = ACTIONS(2428), - [anon_sym_trait] = ACTIONS(2428), - [anon_sym_type] = ACTIONS(2428), - [anon_sym_union] = ACTIONS(2428), - [anon_sym_unsafe] = ACTIONS(2428), - [anon_sym_use] = ACTIONS(2428), - [anon_sym_while] = ACTIONS(2428), - [anon_sym_extern] = ACTIONS(2428), - [anon_sym_yield] = ACTIONS(2428), - [anon_sym_move] = ACTIONS(2428), - [anon_sym_try] = ACTIONS(2428), - [sym_integer_literal] = ACTIONS(2426), - [aux_sym_string_literal_token1] = ACTIONS(2426), - [sym_char_literal] = ACTIONS(2426), - [anon_sym_true] = ACTIONS(2428), - [anon_sym_false] = ACTIONS(2428), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2428), - [sym_super] = ACTIONS(2428), - [sym_crate] = ACTIONS(2428), - [sym_metavariable] = ACTIONS(2426), - [sym__raw_string_literal_start] = ACTIONS(2426), - [sym_float_literal] = ACTIONS(2426), + [ts_builtin_sym_end] = ACTIONS(2499), + [sym_identifier] = ACTIONS(2501), + [anon_sym_SEMI] = ACTIONS(2499), + [anon_sym_macro_rules_BANG] = ACTIONS(2499), + [anon_sym_LPAREN] = ACTIONS(2499), + [anon_sym_LBRACK] = ACTIONS(2499), + [anon_sym_LBRACE] = ACTIONS(2499), + [anon_sym_RBRACE] = ACTIONS(2499), + [anon_sym_macro] = ACTIONS(2501), + [anon_sym_STAR] = ACTIONS(2499), + [anon_sym_u8] = ACTIONS(2501), + [anon_sym_i8] = ACTIONS(2501), + [anon_sym_u16] = ACTIONS(2501), + [anon_sym_i16] = ACTIONS(2501), + [anon_sym_u32] = ACTIONS(2501), + [anon_sym_i32] = ACTIONS(2501), + [anon_sym_u64] = ACTIONS(2501), + [anon_sym_i64] = ACTIONS(2501), + [anon_sym_u128] = ACTIONS(2501), + [anon_sym_i128] = ACTIONS(2501), + [anon_sym_isize] = ACTIONS(2501), + [anon_sym_usize] = ACTIONS(2501), + [anon_sym_f32] = ACTIONS(2501), + [anon_sym_f64] = ACTIONS(2501), + [anon_sym_bool] = ACTIONS(2501), + [anon_sym_str] = ACTIONS(2501), + [anon_sym_char] = ACTIONS(2501), + [anon_sym_DASH] = ACTIONS(2499), + [anon_sym_BANG] = ACTIONS(2499), + [anon_sym_AMP] = ACTIONS(2499), + [anon_sym_PIPE] = ACTIONS(2499), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_DOT_DOT] = ACTIONS(2499), + [anon_sym_COLON_COLON] = ACTIONS(2499), + [anon_sym_POUND] = ACTIONS(2499), + [anon_sym_SQUOTE] = ACTIONS(2501), + [anon_sym_async] = ACTIONS(2501), + [anon_sym_break] = ACTIONS(2501), + [anon_sym_const] = ACTIONS(2501), + [anon_sym_continue] = ACTIONS(2501), + [anon_sym_default] = ACTIONS(2501), + [anon_sym_enum] = ACTIONS(2501), + [anon_sym_fn] = ACTIONS(2501), + [anon_sym_for] = ACTIONS(2501), + [anon_sym_if] = ACTIONS(2501), + [anon_sym_impl] = ACTIONS(2501), + [anon_sym_let] = ACTIONS(2501), + [anon_sym_loop] = ACTIONS(2501), + [anon_sym_match] = ACTIONS(2501), + [anon_sym_mod] = ACTIONS(2501), + [anon_sym_pub] = ACTIONS(2501), + [anon_sym_return] = ACTIONS(2501), + [anon_sym_static] = ACTIONS(2501), + [anon_sym_struct] = ACTIONS(2501), + [anon_sym_trait] = ACTIONS(2501), + [anon_sym_type] = ACTIONS(2501), + [anon_sym_union] = ACTIONS(2501), + [anon_sym_unsafe] = ACTIONS(2501), + [anon_sym_use] = ACTIONS(2501), + [anon_sym_while] = ACTIONS(2501), + [anon_sym_extern] = ACTIONS(2501), + [anon_sym_yield] = ACTIONS(2501), + [anon_sym_move] = ACTIONS(2501), + [anon_sym_try] = ACTIONS(2501), + [sym_integer_literal] = ACTIONS(2499), + [aux_sym_string_literal_token1] = ACTIONS(2499), + [sym_char_literal] = ACTIONS(2499), + [anon_sym_true] = ACTIONS(2501), + [anon_sym_false] = ACTIONS(2501), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2501), + [sym_super] = ACTIONS(2501), + [sym_crate] = ACTIONS(2501), + [sym_metavariable] = ACTIONS(2499), + [sym__raw_string_literal_start] = ACTIONS(2499), + [sym_float_literal] = ACTIONS(2499), }, [661] = { [sym_line_comment] = STATE(661), [sym_block_comment] = STATE(661), - [ts_builtin_sym_end] = ACTIONS(2430), - [sym_identifier] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2430), - [anon_sym_macro_rules_BANG] = ACTIONS(2430), - [anon_sym_LPAREN] = ACTIONS(2430), - [anon_sym_LBRACK] = ACTIONS(2430), - [anon_sym_LBRACE] = ACTIONS(2430), - [anon_sym_RBRACE] = ACTIONS(2430), - [anon_sym_STAR] = ACTIONS(2430), - [anon_sym_u8] = ACTIONS(2432), - [anon_sym_i8] = ACTIONS(2432), - [anon_sym_u16] = ACTIONS(2432), - [anon_sym_i16] = ACTIONS(2432), - [anon_sym_u32] = ACTIONS(2432), - [anon_sym_i32] = ACTIONS(2432), - [anon_sym_u64] = ACTIONS(2432), - [anon_sym_i64] = ACTIONS(2432), - [anon_sym_u128] = ACTIONS(2432), - [anon_sym_i128] = ACTIONS(2432), - [anon_sym_isize] = ACTIONS(2432), - [anon_sym_usize] = ACTIONS(2432), - [anon_sym_f32] = ACTIONS(2432), - [anon_sym_f64] = ACTIONS(2432), - [anon_sym_bool] = ACTIONS(2432), - [anon_sym_str] = ACTIONS(2432), - [anon_sym_char] = ACTIONS(2432), - [anon_sym_DASH] = ACTIONS(2430), - [anon_sym_BANG] = ACTIONS(2430), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_DOT_DOT] = ACTIONS(2430), - [anon_sym_COLON_COLON] = ACTIONS(2430), - [anon_sym_POUND] = ACTIONS(2430), - [anon_sym_SQUOTE] = ACTIONS(2432), - [anon_sym_async] = ACTIONS(2432), - [anon_sym_break] = ACTIONS(2432), - [anon_sym_const] = ACTIONS(2432), - [anon_sym_continue] = ACTIONS(2432), - [anon_sym_default] = ACTIONS(2432), - [anon_sym_enum] = ACTIONS(2432), - [anon_sym_fn] = ACTIONS(2432), - [anon_sym_for] = ACTIONS(2432), - [anon_sym_if] = ACTIONS(2432), - [anon_sym_impl] = ACTIONS(2432), - [anon_sym_let] = ACTIONS(2432), - [anon_sym_loop] = ACTIONS(2432), - [anon_sym_match] = ACTIONS(2432), - [anon_sym_mod] = ACTIONS(2432), - [anon_sym_pub] = ACTIONS(2432), - [anon_sym_return] = ACTIONS(2432), - [anon_sym_static] = ACTIONS(2432), - [anon_sym_struct] = ACTIONS(2432), - [anon_sym_trait] = ACTIONS(2432), - [anon_sym_type] = ACTIONS(2432), - [anon_sym_union] = ACTIONS(2432), - [anon_sym_unsafe] = ACTIONS(2432), - [anon_sym_use] = ACTIONS(2432), - [anon_sym_while] = ACTIONS(2432), - [anon_sym_extern] = ACTIONS(2432), - [anon_sym_yield] = ACTIONS(2432), - [anon_sym_move] = ACTIONS(2432), - [anon_sym_try] = ACTIONS(2432), - [sym_integer_literal] = ACTIONS(2430), - [aux_sym_string_literal_token1] = ACTIONS(2430), - [sym_char_literal] = ACTIONS(2430), - [anon_sym_true] = ACTIONS(2432), - [anon_sym_false] = ACTIONS(2432), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2432), - [sym_super] = ACTIONS(2432), - [sym_crate] = ACTIONS(2432), - [sym_metavariable] = ACTIONS(2430), - [sym__raw_string_literal_start] = ACTIONS(2430), - [sym_float_literal] = ACTIONS(2430), + [ts_builtin_sym_end] = ACTIONS(2503), + [sym_identifier] = ACTIONS(2505), + [anon_sym_SEMI] = ACTIONS(2503), + [anon_sym_macro_rules_BANG] = ACTIONS(2503), + [anon_sym_LPAREN] = ACTIONS(2503), + [anon_sym_LBRACK] = ACTIONS(2503), + [anon_sym_LBRACE] = ACTIONS(2503), + [anon_sym_RBRACE] = ACTIONS(2503), + [anon_sym_macro] = ACTIONS(2505), + [anon_sym_STAR] = ACTIONS(2503), + [anon_sym_u8] = ACTIONS(2505), + [anon_sym_i8] = ACTIONS(2505), + [anon_sym_u16] = ACTIONS(2505), + [anon_sym_i16] = ACTIONS(2505), + [anon_sym_u32] = ACTIONS(2505), + [anon_sym_i32] = ACTIONS(2505), + [anon_sym_u64] = ACTIONS(2505), + [anon_sym_i64] = ACTIONS(2505), + [anon_sym_u128] = ACTIONS(2505), + [anon_sym_i128] = ACTIONS(2505), + [anon_sym_isize] = ACTIONS(2505), + [anon_sym_usize] = ACTIONS(2505), + [anon_sym_f32] = ACTIONS(2505), + [anon_sym_f64] = ACTIONS(2505), + [anon_sym_bool] = ACTIONS(2505), + [anon_sym_str] = ACTIONS(2505), + [anon_sym_char] = ACTIONS(2505), + [anon_sym_DASH] = ACTIONS(2503), + [anon_sym_BANG] = ACTIONS(2503), + [anon_sym_AMP] = ACTIONS(2503), + [anon_sym_PIPE] = ACTIONS(2503), + [anon_sym_LT] = ACTIONS(2503), + [anon_sym_DOT_DOT] = ACTIONS(2503), + [anon_sym_COLON_COLON] = ACTIONS(2503), + [anon_sym_POUND] = ACTIONS(2503), + [anon_sym_SQUOTE] = ACTIONS(2505), + [anon_sym_async] = ACTIONS(2505), + [anon_sym_break] = ACTIONS(2505), + [anon_sym_const] = ACTIONS(2505), + [anon_sym_continue] = ACTIONS(2505), + [anon_sym_default] = ACTIONS(2505), + [anon_sym_enum] = ACTIONS(2505), + [anon_sym_fn] = ACTIONS(2505), + [anon_sym_for] = ACTIONS(2505), + [anon_sym_if] = ACTIONS(2505), + [anon_sym_impl] = ACTIONS(2505), + [anon_sym_let] = ACTIONS(2505), + [anon_sym_loop] = ACTIONS(2505), + [anon_sym_match] = ACTIONS(2505), + [anon_sym_mod] = ACTIONS(2505), + [anon_sym_pub] = ACTIONS(2505), + [anon_sym_return] = ACTIONS(2505), + [anon_sym_static] = ACTIONS(2505), + [anon_sym_struct] = ACTIONS(2505), + [anon_sym_trait] = ACTIONS(2505), + [anon_sym_type] = ACTIONS(2505), + [anon_sym_union] = ACTIONS(2505), + [anon_sym_unsafe] = ACTIONS(2505), + [anon_sym_use] = ACTIONS(2505), + [anon_sym_while] = ACTIONS(2505), + [anon_sym_extern] = ACTIONS(2505), + [anon_sym_yield] = ACTIONS(2505), + [anon_sym_move] = ACTIONS(2505), + [anon_sym_try] = ACTIONS(2505), + [sym_integer_literal] = ACTIONS(2503), + [aux_sym_string_literal_token1] = ACTIONS(2503), + [sym_char_literal] = ACTIONS(2503), + [anon_sym_true] = ACTIONS(2505), + [anon_sym_false] = ACTIONS(2505), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2505), + [sym_super] = ACTIONS(2505), + [sym_crate] = ACTIONS(2505), + [sym_metavariable] = ACTIONS(2503), + [sym__raw_string_literal_start] = ACTIONS(2503), + [sym_float_literal] = ACTIONS(2503), }, [662] = { [sym_line_comment] = STATE(662), [sym_block_comment] = STATE(662), - [ts_builtin_sym_end] = ACTIONS(2434), - [sym_identifier] = ACTIONS(2436), - [anon_sym_SEMI] = ACTIONS(2434), - [anon_sym_macro_rules_BANG] = ACTIONS(2434), - [anon_sym_LPAREN] = ACTIONS(2434), - [anon_sym_LBRACK] = ACTIONS(2434), - [anon_sym_LBRACE] = ACTIONS(2434), - [anon_sym_RBRACE] = ACTIONS(2434), - [anon_sym_STAR] = ACTIONS(2434), - [anon_sym_u8] = ACTIONS(2436), - [anon_sym_i8] = ACTIONS(2436), - [anon_sym_u16] = ACTIONS(2436), - [anon_sym_i16] = ACTIONS(2436), - [anon_sym_u32] = ACTIONS(2436), - [anon_sym_i32] = ACTIONS(2436), - [anon_sym_u64] = ACTIONS(2436), - [anon_sym_i64] = ACTIONS(2436), - [anon_sym_u128] = ACTIONS(2436), - [anon_sym_i128] = ACTIONS(2436), - [anon_sym_isize] = ACTIONS(2436), - [anon_sym_usize] = ACTIONS(2436), - [anon_sym_f32] = ACTIONS(2436), - [anon_sym_f64] = ACTIONS(2436), - [anon_sym_bool] = ACTIONS(2436), - [anon_sym_str] = ACTIONS(2436), - [anon_sym_char] = ACTIONS(2436), - [anon_sym_DASH] = ACTIONS(2434), - [anon_sym_BANG] = ACTIONS(2434), - [anon_sym_AMP] = ACTIONS(2434), - [anon_sym_PIPE] = ACTIONS(2434), - [anon_sym_LT] = ACTIONS(2434), - [anon_sym_DOT_DOT] = ACTIONS(2434), - [anon_sym_COLON_COLON] = ACTIONS(2434), - [anon_sym_POUND] = ACTIONS(2434), - [anon_sym_SQUOTE] = ACTIONS(2436), - [anon_sym_async] = ACTIONS(2436), - [anon_sym_break] = ACTIONS(2436), - [anon_sym_const] = ACTIONS(2436), - [anon_sym_continue] = ACTIONS(2436), - [anon_sym_default] = ACTIONS(2436), - [anon_sym_enum] = ACTIONS(2436), - [anon_sym_fn] = ACTIONS(2436), - [anon_sym_for] = ACTIONS(2436), - [anon_sym_if] = ACTIONS(2436), - [anon_sym_impl] = ACTIONS(2436), - [anon_sym_let] = ACTIONS(2436), - [anon_sym_loop] = ACTIONS(2436), - [anon_sym_match] = ACTIONS(2436), - [anon_sym_mod] = ACTIONS(2436), - [anon_sym_pub] = ACTIONS(2436), - [anon_sym_return] = ACTIONS(2436), - [anon_sym_static] = ACTIONS(2436), - [anon_sym_struct] = ACTIONS(2436), - [anon_sym_trait] = ACTIONS(2436), - [anon_sym_type] = ACTIONS(2436), - [anon_sym_union] = ACTIONS(2436), - [anon_sym_unsafe] = ACTIONS(2436), - [anon_sym_use] = ACTIONS(2436), - [anon_sym_while] = ACTIONS(2436), - [anon_sym_extern] = ACTIONS(2436), - [anon_sym_yield] = ACTIONS(2436), - [anon_sym_move] = ACTIONS(2436), - [anon_sym_try] = ACTIONS(2436), - [sym_integer_literal] = ACTIONS(2434), - [aux_sym_string_literal_token1] = ACTIONS(2434), - [sym_char_literal] = ACTIONS(2434), - [anon_sym_true] = ACTIONS(2436), - [anon_sym_false] = ACTIONS(2436), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2436), - [sym_super] = ACTIONS(2436), - [sym_crate] = ACTIONS(2436), - [sym_metavariable] = ACTIONS(2434), - [sym__raw_string_literal_start] = ACTIONS(2434), - [sym_float_literal] = ACTIONS(2434), + [ts_builtin_sym_end] = ACTIONS(2507), + [sym_identifier] = ACTIONS(2509), + [anon_sym_SEMI] = ACTIONS(2507), + [anon_sym_macro_rules_BANG] = ACTIONS(2507), + [anon_sym_LPAREN] = ACTIONS(2507), + [anon_sym_LBRACK] = ACTIONS(2507), + [anon_sym_LBRACE] = ACTIONS(2507), + [anon_sym_RBRACE] = ACTIONS(2507), + [anon_sym_macro] = ACTIONS(2509), + [anon_sym_STAR] = ACTIONS(2507), + [anon_sym_u8] = ACTIONS(2509), + [anon_sym_i8] = ACTIONS(2509), + [anon_sym_u16] = ACTIONS(2509), + [anon_sym_i16] = ACTIONS(2509), + [anon_sym_u32] = ACTIONS(2509), + [anon_sym_i32] = ACTIONS(2509), + [anon_sym_u64] = ACTIONS(2509), + [anon_sym_i64] = ACTIONS(2509), + [anon_sym_u128] = ACTIONS(2509), + [anon_sym_i128] = ACTIONS(2509), + [anon_sym_isize] = ACTIONS(2509), + [anon_sym_usize] = ACTIONS(2509), + [anon_sym_f32] = ACTIONS(2509), + [anon_sym_f64] = ACTIONS(2509), + [anon_sym_bool] = ACTIONS(2509), + [anon_sym_str] = ACTIONS(2509), + [anon_sym_char] = ACTIONS(2509), + [anon_sym_DASH] = ACTIONS(2507), + [anon_sym_BANG] = ACTIONS(2507), + [anon_sym_AMP] = ACTIONS(2507), + [anon_sym_PIPE] = ACTIONS(2507), + [anon_sym_LT] = ACTIONS(2507), + [anon_sym_DOT_DOT] = ACTIONS(2507), + [anon_sym_COLON_COLON] = ACTIONS(2507), + [anon_sym_POUND] = ACTIONS(2507), + [anon_sym_SQUOTE] = ACTIONS(2509), + [anon_sym_async] = ACTIONS(2509), + [anon_sym_break] = ACTIONS(2509), + [anon_sym_const] = ACTIONS(2509), + [anon_sym_continue] = ACTIONS(2509), + [anon_sym_default] = ACTIONS(2509), + [anon_sym_enum] = ACTIONS(2509), + [anon_sym_fn] = ACTIONS(2509), + [anon_sym_for] = ACTIONS(2509), + [anon_sym_if] = ACTIONS(2509), + [anon_sym_impl] = ACTIONS(2509), + [anon_sym_let] = ACTIONS(2509), + [anon_sym_loop] = ACTIONS(2509), + [anon_sym_match] = ACTIONS(2509), + [anon_sym_mod] = ACTIONS(2509), + [anon_sym_pub] = ACTIONS(2509), + [anon_sym_return] = ACTIONS(2509), + [anon_sym_static] = ACTIONS(2509), + [anon_sym_struct] = ACTIONS(2509), + [anon_sym_trait] = ACTIONS(2509), + [anon_sym_type] = ACTIONS(2509), + [anon_sym_union] = ACTIONS(2509), + [anon_sym_unsafe] = ACTIONS(2509), + [anon_sym_use] = ACTIONS(2509), + [anon_sym_while] = ACTIONS(2509), + [anon_sym_extern] = ACTIONS(2509), + [anon_sym_yield] = ACTIONS(2509), + [anon_sym_move] = ACTIONS(2509), + [anon_sym_try] = ACTIONS(2509), + [sym_integer_literal] = ACTIONS(2507), + [aux_sym_string_literal_token1] = ACTIONS(2507), + [sym_char_literal] = ACTIONS(2507), + [anon_sym_true] = ACTIONS(2509), + [anon_sym_false] = ACTIONS(2509), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2509), + [sym_super] = ACTIONS(2509), + [sym_crate] = ACTIONS(2509), + [sym_metavariable] = ACTIONS(2507), + [sym__raw_string_literal_start] = ACTIONS(2507), + [sym_float_literal] = ACTIONS(2507), }, [663] = { [sym_line_comment] = STATE(663), [sym_block_comment] = STATE(663), - [ts_builtin_sym_end] = ACTIONS(1244), - [sym_identifier] = ACTIONS(1246), - [anon_sym_SEMI] = ACTIONS(1244), - [anon_sym_macro_rules_BANG] = ACTIONS(1244), - [anon_sym_LPAREN] = ACTIONS(1244), - [anon_sym_LBRACK] = ACTIONS(1244), - [anon_sym_LBRACE] = ACTIONS(1244), - [anon_sym_RBRACE] = ACTIONS(1244), - [anon_sym_STAR] = ACTIONS(1244), - [anon_sym_u8] = ACTIONS(1246), - [anon_sym_i8] = ACTIONS(1246), - [anon_sym_u16] = ACTIONS(1246), - [anon_sym_i16] = ACTIONS(1246), - [anon_sym_u32] = ACTIONS(1246), - [anon_sym_i32] = ACTIONS(1246), - [anon_sym_u64] = ACTIONS(1246), - [anon_sym_i64] = ACTIONS(1246), - [anon_sym_u128] = ACTIONS(1246), - [anon_sym_i128] = ACTIONS(1246), - [anon_sym_isize] = ACTIONS(1246), - [anon_sym_usize] = ACTIONS(1246), - [anon_sym_f32] = ACTIONS(1246), - [anon_sym_f64] = ACTIONS(1246), - [anon_sym_bool] = ACTIONS(1246), - [anon_sym_str] = ACTIONS(1246), - [anon_sym_char] = ACTIONS(1246), - [anon_sym_DASH] = ACTIONS(1244), - [anon_sym_BANG] = ACTIONS(1244), - [anon_sym_AMP] = ACTIONS(1244), - [anon_sym_PIPE] = ACTIONS(1244), - [anon_sym_LT] = ACTIONS(1244), - [anon_sym_DOT_DOT] = ACTIONS(1244), - [anon_sym_COLON_COLON] = ACTIONS(1244), - [anon_sym_POUND] = ACTIONS(1244), - [anon_sym_SQUOTE] = ACTIONS(1246), - [anon_sym_async] = ACTIONS(1246), - [anon_sym_break] = ACTIONS(1246), - [anon_sym_const] = ACTIONS(1246), - [anon_sym_continue] = ACTIONS(1246), - [anon_sym_default] = ACTIONS(1246), - [anon_sym_enum] = ACTIONS(1246), - [anon_sym_fn] = ACTIONS(1246), - [anon_sym_for] = ACTIONS(1246), - [anon_sym_if] = ACTIONS(1246), - [anon_sym_impl] = ACTIONS(1246), - [anon_sym_let] = ACTIONS(1246), - [anon_sym_loop] = ACTIONS(1246), - [anon_sym_match] = ACTIONS(1246), - [anon_sym_mod] = ACTIONS(1246), - [anon_sym_pub] = ACTIONS(1246), - [anon_sym_return] = ACTIONS(1246), - [anon_sym_static] = ACTIONS(1246), - [anon_sym_struct] = ACTIONS(1246), - [anon_sym_trait] = ACTIONS(1246), - [anon_sym_type] = ACTIONS(1246), - [anon_sym_union] = ACTIONS(1246), - [anon_sym_unsafe] = ACTIONS(1246), - [anon_sym_use] = ACTIONS(1246), - [anon_sym_while] = ACTIONS(1246), - [anon_sym_extern] = ACTIONS(1246), - [anon_sym_yield] = ACTIONS(1246), - [anon_sym_move] = ACTIONS(1246), - [anon_sym_try] = ACTIONS(1246), - [sym_integer_literal] = ACTIONS(1244), - [aux_sym_string_literal_token1] = ACTIONS(1244), - [sym_char_literal] = ACTIONS(1244), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1246), - [sym_super] = ACTIONS(1246), - [sym_crate] = ACTIONS(1246), - [sym_metavariable] = ACTIONS(1244), - [sym__raw_string_literal_start] = ACTIONS(1244), - [sym_float_literal] = ACTIONS(1244), + [ts_builtin_sym_end] = ACTIONS(1223), + [sym_identifier] = ACTIONS(1225), + [anon_sym_SEMI] = ACTIONS(1223), + [anon_sym_macro_rules_BANG] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1223), + [anon_sym_LBRACK] = ACTIONS(1223), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_RBRACE] = ACTIONS(1223), + [anon_sym_macro] = ACTIONS(1225), + [anon_sym_STAR] = ACTIONS(1223), + [anon_sym_u8] = ACTIONS(1225), + [anon_sym_i8] = ACTIONS(1225), + [anon_sym_u16] = ACTIONS(1225), + [anon_sym_i16] = ACTIONS(1225), + [anon_sym_u32] = ACTIONS(1225), + [anon_sym_i32] = ACTIONS(1225), + [anon_sym_u64] = ACTIONS(1225), + [anon_sym_i64] = ACTIONS(1225), + [anon_sym_u128] = ACTIONS(1225), + [anon_sym_i128] = ACTIONS(1225), + [anon_sym_isize] = ACTIONS(1225), + [anon_sym_usize] = ACTIONS(1225), + [anon_sym_f32] = ACTIONS(1225), + [anon_sym_f64] = ACTIONS(1225), + [anon_sym_bool] = ACTIONS(1225), + [anon_sym_str] = ACTIONS(1225), + [anon_sym_char] = ACTIONS(1225), + [anon_sym_DASH] = ACTIONS(1223), + [anon_sym_BANG] = ACTIONS(1223), + [anon_sym_AMP] = ACTIONS(1223), + [anon_sym_PIPE] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(1223), + [anon_sym_DOT_DOT] = ACTIONS(1223), + [anon_sym_COLON_COLON] = ACTIONS(1223), + [anon_sym_POUND] = ACTIONS(1223), + [anon_sym_SQUOTE] = ACTIONS(1225), + [anon_sym_async] = ACTIONS(1225), + [anon_sym_break] = ACTIONS(1225), + [anon_sym_const] = ACTIONS(1225), + [anon_sym_continue] = ACTIONS(1225), + [anon_sym_default] = ACTIONS(1225), + [anon_sym_enum] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1225), + [anon_sym_for] = ACTIONS(1225), + [anon_sym_if] = ACTIONS(1225), + [anon_sym_impl] = ACTIONS(1225), + [anon_sym_let] = ACTIONS(1225), + [anon_sym_loop] = ACTIONS(1225), + [anon_sym_match] = ACTIONS(1225), + [anon_sym_mod] = ACTIONS(1225), + [anon_sym_pub] = ACTIONS(1225), + [anon_sym_return] = ACTIONS(1225), + [anon_sym_static] = ACTIONS(1225), + [anon_sym_struct] = ACTIONS(1225), + [anon_sym_trait] = ACTIONS(1225), + [anon_sym_type] = ACTIONS(1225), + [anon_sym_union] = ACTIONS(1225), + [anon_sym_unsafe] = ACTIONS(1225), + [anon_sym_use] = ACTIONS(1225), + [anon_sym_while] = ACTIONS(1225), + [anon_sym_extern] = ACTIONS(1225), + [anon_sym_yield] = ACTIONS(1225), + [anon_sym_move] = ACTIONS(1225), + [anon_sym_try] = ACTIONS(1225), + [sym_integer_literal] = ACTIONS(1223), + [aux_sym_string_literal_token1] = ACTIONS(1223), + [sym_char_literal] = ACTIONS(1223), + [anon_sym_true] = ACTIONS(1225), + [anon_sym_false] = ACTIONS(1225), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1225), + [sym_super] = ACTIONS(1225), + [sym_crate] = ACTIONS(1225), + [sym_metavariable] = ACTIONS(1223), + [sym__raw_string_literal_start] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1223), }, [664] = { [sym_line_comment] = STATE(664), [sym_block_comment] = STATE(664), - [ts_builtin_sym_end] = ACTIONS(2438), - [sym_identifier] = ACTIONS(2440), - [anon_sym_SEMI] = ACTIONS(2438), - [anon_sym_macro_rules_BANG] = ACTIONS(2438), - [anon_sym_LPAREN] = ACTIONS(2438), - [anon_sym_LBRACK] = ACTIONS(2438), - [anon_sym_LBRACE] = ACTIONS(2438), - [anon_sym_RBRACE] = ACTIONS(2438), - [anon_sym_STAR] = ACTIONS(2438), - [anon_sym_u8] = ACTIONS(2440), - [anon_sym_i8] = ACTIONS(2440), - [anon_sym_u16] = ACTIONS(2440), - [anon_sym_i16] = ACTIONS(2440), - [anon_sym_u32] = ACTIONS(2440), - [anon_sym_i32] = ACTIONS(2440), - [anon_sym_u64] = ACTIONS(2440), - [anon_sym_i64] = ACTIONS(2440), - [anon_sym_u128] = ACTIONS(2440), - [anon_sym_i128] = ACTIONS(2440), - [anon_sym_isize] = ACTIONS(2440), - [anon_sym_usize] = ACTIONS(2440), - [anon_sym_f32] = ACTIONS(2440), - [anon_sym_f64] = ACTIONS(2440), - [anon_sym_bool] = ACTIONS(2440), - [anon_sym_str] = ACTIONS(2440), - [anon_sym_char] = ACTIONS(2440), - [anon_sym_DASH] = ACTIONS(2438), - [anon_sym_BANG] = ACTIONS(2438), - [anon_sym_AMP] = ACTIONS(2438), - [anon_sym_PIPE] = ACTIONS(2438), - [anon_sym_LT] = ACTIONS(2438), - [anon_sym_DOT_DOT] = ACTIONS(2438), - [anon_sym_COLON_COLON] = ACTIONS(2438), - [anon_sym_POUND] = ACTIONS(2438), - [anon_sym_SQUOTE] = ACTIONS(2440), - [anon_sym_async] = ACTIONS(2440), - [anon_sym_break] = ACTIONS(2440), - [anon_sym_const] = ACTIONS(2440), - [anon_sym_continue] = ACTIONS(2440), - [anon_sym_default] = ACTIONS(2440), - [anon_sym_enum] = ACTIONS(2440), - [anon_sym_fn] = ACTIONS(2440), - [anon_sym_for] = ACTIONS(2440), - [anon_sym_if] = ACTIONS(2440), - [anon_sym_impl] = ACTIONS(2440), - [anon_sym_let] = ACTIONS(2440), - [anon_sym_loop] = ACTIONS(2440), - [anon_sym_match] = ACTIONS(2440), - [anon_sym_mod] = ACTIONS(2440), - [anon_sym_pub] = ACTIONS(2440), - [anon_sym_return] = ACTIONS(2440), - [anon_sym_static] = ACTIONS(2440), - [anon_sym_struct] = ACTIONS(2440), - [anon_sym_trait] = ACTIONS(2440), - [anon_sym_type] = ACTIONS(2440), - [anon_sym_union] = ACTIONS(2440), - [anon_sym_unsafe] = ACTIONS(2440), - [anon_sym_use] = ACTIONS(2440), - [anon_sym_while] = ACTIONS(2440), - [anon_sym_extern] = ACTIONS(2440), - [anon_sym_yield] = ACTIONS(2440), - [anon_sym_move] = ACTIONS(2440), - [anon_sym_try] = ACTIONS(2440), - [sym_integer_literal] = ACTIONS(2438), - [aux_sym_string_literal_token1] = ACTIONS(2438), - [sym_char_literal] = ACTIONS(2438), - [anon_sym_true] = ACTIONS(2440), - [anon_sym_false] = ACTIONS(2440), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2440), - [sym_super] = ACTIONS(2440), - [sym_crate] = ACTIONS(2440), - [sym_metavariable] = ACTIONS(2438), - [sym__raw_string_literal_start] = ACTIONS(2438), - [sym_float_literal] = ACTIONS(2438), + [ts_builtin_sym_end] = ACTIONS(2511), + [sym_identifier] = ACTIONS(2513), + [anon_sym_SEMI] = ACTIONS(2511), + [anon_sym_macro_rules_BANG] = ACTIONS(2511), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2511), + [anon_sym_RBRACE] = ACTIONS(2511), + [anon_sym_macro] = ACTIONS(2513), + [anon_sym_STAR] = ACTIONS(2511), + [anon_sym_u8] = ACTIONS(2513), + [anon_sym_i8] = ACTIONS(2513), + [anon_sym_u16] = ACTIONS(2513), + [anon_sym_i16] = ACTIONS(2513), + [anon_sym_u32] = ACTIONS(2513), + [anon_sym_i32] = ACTIONS(2513), + [anon_sym_u64] = ACTIONS(2513), + [anon_sym_i64] = ACTIONS(2513), + [anon_sym_u128] = ACTIONS(2513), + [anon_sym_i128] = ACTIONS(2513), + [anon_sym_isize] = ACTIONS(2513), + [anon_sym_usize] = ACTIONS(2513), + [anon_sym_f32] = ACTIONS(2513), + [anon_sym_f64] = ACTIONS(2513), + [anon_sym_bool] = ACTIONS(2513), + [anon_sym_str] = ACTIONS(2513), + [anon_sym_char] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_BANG] = ACTIONS(2511), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_PIPE] = ACTIONS(2511), + [anon_sym_LT] = ACTIONS(2511), + [anon_sym_DOT_DOT] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2511), + [anon_sym_POUND] = ACTIONS(2511), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_async] = ACTIONS(2513), + [anon_sym_break] = ACTIONS(2513), + [anon_sym_const] = ACTIONS(2513), + [anon_sym_continue] = ACTIONS(2513), + [anon_sym_default] = ACTIONS(2513), + [anon_sym_enum] = ACTIONS(2513), + [anon_sym_fn] = ACTIONS(2513), + [anon_sym_for] = ACTIONS(2513), + [anon_sym_if] = ACTIONS(2513), + [anon_sym_impl] = ACTIONS(2513), + [anon_sym_let] = ACTIONS(2513), + [anon_sym_loop] = ACTIONS(2513), + [anon_sym_match] = ACTIONS(2513), + [anon_sym_mod] = ACTIONS(2513), + [anon_sym_pub] = ACTIONS(2513), + [anon_sym_return] = ACTIONS(2513), + [anon_sym_static] = ACTIONS(2513), + [anon_sym_struct] = ACTIONS(2513), + [anon_sym_trait] = ACTIONS(2513), + [anon_sym_type] = ACTIONS(2513), + [anon_sym_union] = ACTIONS(2513), + [anon_sym_unsafe] = ACTIONS(2513), + [anon_sym_use] = ACTIONS(2513), + [anon_sym_while] = ACTIONS(2513), + [anon_sym_extern] = ACTIONS(2513), + [anon_sym_yield] = ACTIONS(2513), + [anon_sym_move] = ACTIONS(2513), + [anon_sym_try] = ACTIONS(2513), + [sym_integer_literal] = ACTIONS(2511), + [aux_sym_string_literal_token1] = ACTIONS(2511), + [sym_char_literal] = ACTIONS(2511), + [anon_sym_true] = ACTIONS(2513), + [anon_sym_false] = ACTIONS(2513), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2513), + [sym_super] = ACTIONS(2513), + [sym_crate] = ACTIONS(2513), + [sym_metavariable] = ACTIONS(2511), + [sym__raw_string_literal_start] = ACTIONS(2511), + [sym_float_literal] = ACTIONS(2511), }, [665] = { [sym_line_comment] = STATE(665), [sym_block_comment] = STATE(665), - [ts_builtin_sym_end] = ACTIONS(2442), - [sym_identifier] = ACTIONS(2444), - [anon_sym_SEMI] = ACTIONS(2442), - [anon_sym_macro_rules_BANG] = ACTIONS(2442), - [anon_sym_LPAREN] = ACTIONS(2442), - [anon_sym_LBRACK] = ACTIONS(2442), - [anon_sym_LBRACE] = ACTIONS(2442), - [anon_sym_RBRACE] = ACTIONS(2442), - [anon_sym_STAR] = ACTIONS(2442), - [anon_sym_u8] = ACTIONS(2444), - [anon_sym_i8] = ACTIONS(2444), - [anon_sym_u16] = ACTIONS(2444), - [anon_sym_i16] = ACTIONS(2444), - [anon_sym_u32] = ACTIONS(2444), - [anon_sym_i32] = ACTIONS(2444), - [anon_sym_u64] = ACTIONS(2444), - [anon_sym_i64] = ACTIONS(2444), - [anon_sym_u128] = ACTIONS(2444), - [anon_sym_i128] = ACTIONS(2444), - [anon_sym_isize] = ACTIONS(2444), - [anon_sym_usize] = ACTIONS(2444), - [anon_sym_f32] = ACTIONS(2444), - [anon_sym_f64] = ACTIONS(2444), - [anon_sym_bool] = ACTIONS(2444), - [anon_sym_str] = ACTIONS(2444), - [anon_sym_char] = ACTIONS(2444), - [anon_sym_DASH] = ACTIONS(2442), - [anon_sym_BANG] = ACTIONS(2442), - [anon_sym_AMP] = ACTIONS(2442), - [anon_sym_PIPE] = ACTIONS(2442), - [anon_sym_LT] = ACTIONS(2442), - [anon_sym_DOT_DOT] = ACTIONS(2442), - [anon_sym_COLON_COLON] = ACTIONS(2442), - [anon_sym_POUND] = ACTIONS(2442), - [anon_sym_SQUOTE] = ACTIONS(2444), - [anon_sym_async] = ACTIONS(2444), - [anon_sym_break] = ACTIONS(2444), - [anon_sym_const] = ACTIONS(2444), - [anon_sym_continue] = ACTIONS(2444), - [anon_sym_default] = ACTIONS(2444), - [anon_sym_enum] = ACTIONS(2444), - [anon_sym_fn] = ACTIONS(2444), - [anon_sym_for] = ACTIONS(2444), - [anon_sym_if] = ACTIONS(2444), - [anon_sym_impl] = ACTIONS(2444), - [anon_sym_let] = ACTIONS(2444), - [anon_sym_loop] = ACTIONS(2444), - [anon_sym_match] = ACTIONS(2444), - [anon_sym_mod] = ACTIONS(2444), - [anon_sym_pub] = ACTIONS(2444), - [anon_sym_return] = ACTIONS(2444), - [anon_sym_static] = ACTIONS(2444), - [anon_sym_struct] = ACTIONS(2444), - [anon_sym_trait] = ACTIONS(2444), - [anon_sym_type] = ACTIONS(2444), - [anon_sym_union] = ACTIONS(2444), - [anon_sym_unsafe] = ACTIONS(2444), - [anon_sym_use] = ACTIONS(2444), - [anon_sym_while] = ACTIONS(2444), - [anon_sym_extern] = ACTIONS(2444), - [anon_sym_yield] = ACTIONS(2444), - [anon_sym_move] = ACTIONS(2444), - [anon_sym_try] = ACTIONS(2444), - [sym_integer_literal] = ACTIONS(2442), - [aux_sym_string_literal_token1] = ACTIONS(2442), - [sym_char_literal] = ACTIONS(2442), - [anon_sym_true] = ACTIONS(2444), - [anon_sym_false] = ACTIONS(2444), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2444), - [sym_super] = ACTIONS(2444), - [sym_crate] = ACTIONS(2444), - [sym_metavariable] = ACTIONS(2442), - [sym__raw_string_literal_start] = ACTIONS(2442), - [sym_float_literal] = ACTIONS(2442), + [ts_builtin_sym_end] = ACTIONS(2515), + [sym_identifier] = ACTIONS(2517), + [anon_sym_SEMI] = ACTIONS(2515), + [anon_sym_macro_rules_BANG] = ACTIONS(2515), + [anon_sym_LPAREN] = ACTIONS(2515), + [anon_sym_LBRACK] = ACTIONS(2515), + [anon_sym_LBRACE] = ACTIONS(2515), + [anon_sym_RBRACE] = ACTIONS(2515), + [anon_sym_macro] = ACTIONS(2517), + [anon_sym_STAR] = ACTIONS(2515), + [anon_sym_u8] = ACTIONS(2517), + [anon_sym_i8] = ACTIONS(2517), + [anon_sym_u16] = ACTIONS(2517), + [anon_sym_i16] = ACTIONS(2517), + [anon_sym_u32] = ACTIONS(2517), + [anon_sym_i32] = ACTIONS(2517), + [anon_sym_u64] = ACTIONS(2517), + [anon_sym_i64] = ACTIONS(2517), + [anon_sym_u128] = ACTIONS(2517), + [anon_sym_i128] = ACTIONS(2517), + [anon_sym_isize] = ACTIONS(2517), + [anon_sym_usize] = ACTIONS(2517), + [anon_sym_f32] = ACTIONS(2517), + [anon_sym_f64] = ACTIONS(2517), + [anon_sym_bool] = ACTIONS(2517), + [anon_sym_str] = ACTIONS(2517), + [anon_sym_char] = ACTIONS(2517), + [anon_sym_DASH] = ACTIONS(2515), + [anon_sym_BANG] = ACTIONS(2515), + [anon_sym_AMP] = ACTIONS(2515), + [anon_sym_PIPE] = ACTIONS(2515), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_DOT_DOT] = ACTIONS(2515), + [anon_sym_COLON_COLON] = ACTIONS(2515), + [anon_sym_POUND] = ACTIONS(2515), + [anon_sym_SQUOTE] = ACTIONS(2517), + [anon_sym_async] = ACTIONS(2517), + [anon_sym_break] = ACTIONS(2517), + [anon_sym_const] = ACTIONS(2517), + [anon_sym_continue] = ACTIONS(2517), + [anon_sym_default] = ACTIONS(2517), + [anon_sym_enum] = ACTIONS(2517), + [anon_sym_fn] = ACTIONS(2517), + [anon_sym_for] = ACTIONS(2517), + [anon_sym_if] = ACTIONS(2517), + [anon_sym_impl] = ACTIONS(2517), + [anon_sym_let] = ACTIONS(2517), + [anon_sym_loop] = ACTIONS(2517), + [anon_sym_match] = ACTIONS(2517), + [anon_sym_mod] = ACTIONS(2517), + [anon_sym_pub] = ACTIONS(2517), + [anon_sym_return] = ACTIONS(2517), + [anon_sym_static] = ACTIONS(2517), + [anon_sym_struct] = ACTIONS(2517), + [anon_sym_trait] = ACTIONS(2517), + [anon_sym_type] = ACTIONS(2517), + [anon_sym_union] = ACTIONS(2517), + [anon_sym_unsafe] = ACTIONS(2517), + [anon_sym_use] = ACTIONS(2517), + [anon_sym_while] = ACTIONS(2517), + [anon_sym_extern] = ACTIONS(2517), + [anon_sym_yield] = ACTIONS(2517), + [anon_sym_move] = ACTIONS(2517), + [anon_sym_try] = ACTIONS(2517), + [sym_integer_literal] = ACTIONS(2515), + [aux_sym_string_literal_token1] = ACTIONS(2515), + [sym_char_literal] = ACTIONS(2515), + [anon_sym_true] = ACTIONS(2517), + [anon_sym_false] = ACTIONS(2517), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2517), + [sym_super] = ACTIONS(2517), + [sym_crate] = ACTIONS(2517), + [sym_metavariable] = ACTIONS(2515), + [sym__raw_string_literal_start] = ACTIONS(2515), + [sym_float_literal] = ACTIONS(2515), }, [666] = { [sym_line_comment] = STATE(666), [sym_block_comment] = STATE(666), - [ts_builtin_sym_end] = ACTIONS(2446), - [sym_identifier] = ACTIONS(2448), - [anon_sym_SEMI] = ACTIONS(2446), - [anon_sym_macro_rules_BANG] = ACTIONS(2446), - [anon_sym_LPAREN] = ACTIONS(2446), - [anon_sym_LBRACK] = ACTIONS(2446), - [anon_sym_LBRACE] = ACTIONS(2446), - [anon_sym_RBRACE] = ACTIONS(2446), - [anon_sym_STAR] = ACTIONS(2446), - [anon_sym_u8] = ACTIONS(2448), - [anon_sym_i8] = ACTIONS(2448), - [anon_sym_u16] = ACTIONS(2448), - [anon_sym_i16] = ACTIONS(2448), - [anon_sym_u32] = ACTIONS(2448), - [anon_sym_i32] = ACTIONS(2448), - [anon_sym_u64] = ACTIONS(2448), - [anon_sym_i64] = ACTIONS(2448), - [anon_sym_u128] = ACTIONS(2448), - [anon_sym_i128] = ACTIONS(2448), - [anon_sym_isize] = ACTIONS(2448), - [anon_sym_usize] = ACTIONS(2448), - [anon_sym_f32] = ACTIONS(2448), - [anon_sym_f64] = ACTIONS(2448), - [anon_sym_bool] = ACTIONS(2448), - [anon_sym_str] = ACTIONS(2448), - [anon_sym_char] = ACTIONS(2448), - [anon_sym_DASH] = ACTIONS(2446), - [anon_sym_BANG] = ACTIONS(2446), - [anon_sym_AMP] = ACTIONS(2446), - [anon_sym_PIPE] = ACTIONS(2446), - [anon_sym_LT] = ACTIONS(2446), - [anon_sym_DOT_DOT] = ACTIONS(2446), - [anon_sym_COLON_COLON] = ACTIONS(2446), - [anon_sym_POUND] = ACTIONS(2446), - [anon_sym_SQUOTE] = ACTIONS(2448), - [anon_sym_async] = ACTIONS(2448), - [anon_sym_break] = ACTIONS(2448), - [anon_sym_const] = ACTIONS(2448), - [anon_sym_continue] = ACTIONS(2448), - [anon_sym_default] = ACTIONS(2448), - [anon_sym_enum] = ACTIONS(2448), - [anon_sym_fn] = ACTIONS(2448), - [anon_sym_for] = ACTIONS(2448), - [anon_sym_if] = ACTIONS(2448), - [anon_sym_impl] = ACTIONS(2448), - [anon_sym_let] = ACTIONS(2448), - [anon_sym_loop] = ACTIONS(2448), - [anon_sym_match] = ACTIONS(2448), - [anon_sym_mod] = ACTIONS(2448), - [anon_sym_pub] = ACTIONS(2448), - [anon_sym_return] = ACTIONS(2448), - [anon_sym_static] = ACTIONS(2448), - [anon_sym_struct] = ACTIONS(2448), - [anon_sym_trait] = ACTIONS(2448), - [anon_sym_type] = ACTIONS(2448), - [anon_sym_union] = ACTIONS(2448), - [anon_sym_unsafe] = ACTIONS(2448), - [anon_sym_use] = ACTIONS(2448), - [anon_sym_while] = ACTIONS(2448), - [anon_sym_extern] = ACTIONS(2448), - [anon_sym_yield] = ACTIONS(2448), - [anon_sym_move] = ACTIONS(2448), - [anon_sym_try] = ACTIONS(2448), - [sym_integer_literal] = ACTIONS(2446), - [aux_sym_string_literal_token1] = ACTIONS(2446), - [sym_char_literal] = ACTIONS(2446), - [anon_sym_true] = ACTIONS(2448), - [anon_sym_false] = ACTIONS(2448), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2448), - [sym_super] = ACTIONS(2448), - [sym_crate] = ACTIONS(2448), - [sym_metavariable] = ACTIONS(2446), - [sym__raw_string_literal_start] = ACTIONS(2446), - [sym_float_literal] = ACTIONS(2446), + [ts_builtin_sym_end] = ACTIONS(2519), + [sym_identifier] = ACTIONS(2521), + [anon_sym_SEMI] = ACTIONS(2519), + [anon_sym_macro_rules_BANG] = ACTIONS(2519), + [anon_sym_LPAREN] = ACTIONS(2519), + [anon_sym_LBRACK] = ACTIONS(2519), + [anon_sym_LBRACE] = ACTIONS(2519), + [anon_sym_RBRACE] = ACTIONS(2519), + [anon_sym_macro] = ACTIONS(2521), + [anon_sym_STAR] = ACTIONS(2519), + [anon_sym_u8] = ACTIONS(2521), + [anon_sym_i8] = ACTIONS(2521), + [anon_sym_u16] = ACTIONS(2521), + [anon_sym_i16] = ACTIONS(2521), + [anon_sym_u32] = ACTIONS(2521), + [anon_sym_i32] = ACTIONS(2521), + [anon_sym_u64] = ACTIONS(2521), + [anon_sym_i64] = ACTIONS(2521), + [anon_sym_u128] = ACTIONS(2521), + [anon_sym_i128] = ACTIONS(2521), + [anon_sym_isize] = ACTIONS(2521), + [anon_sym_usize] = ACTIONS(2521), + [anon_sym_f32] = ACTIONS(2521), + [anon_sym_f64] = ACTIONS(2521), + [anon_sym_bool] = ACTIONS(2521), + [anon_sym_str] = ACTIONS(2521), + [anon_sym_char] = ACTIONS(2521), + [anon_sym_DASH] = ACTIONS(2519), + [anon_sym_BANG] = ACTIONS(2519), + [anon_sym_AMP] = ACTIONS(2519), + [anon_sym_PIPE] = ACTIONS(2519), + [anon_sym_LT] = ACTIONS(2519), + [anon_sym_DOT_DOT] = ACTIONS(2519), + [anon_sym_COLON_COLON] = ACTIONS(2519), + [anon_sym_POUND] = ACTIONS(2519), + [anon_sym_SQUOTE] = ACTIONS(2521), + [anon_sym_async] = ACTIONS(2521), + [anon_sym_break] = ACTIONS(2521), + [anon_sym_const] = ACTIONS(2521), + [anon_sym_continue] = ACTIONS(2521), + [anon_sym_default] = ACTIONS(2521), + [anon_sym_enum] = ACTIONS(2521), + [anon_sym_fn] = ACTIONS(2521), + [anon_sym_for] = ACTIONS(2521), + [anon_sym_if] = ACTIONS(2521), + [anon_sym_impl] = ACTIONS(2521), + [anon_sym_let] = ACTIONS(2521), + [anon_sym_loop] = ACTIONS(2521), + [anon_sym_match] = ACTIONS(2521), + [anon_sym_mod] = ACTIONS(2521), + [anon_sym_pub] = ACTIONS(2521), + [anon_sym_return] = ACTIONS(2521), + [anon_sym_static] = ACTIONS(2521), + [anon_sym_struct] = ACTIONS(2521), + [anon_sym_trait] = ACTIONS(2521), + [anon_sym_type] = ACTIONS(2521), + [anon_sym_union] = ACTIONS(2521), + [anon_sym_unsafe] = ACTIONS(2521), + [anon_sym_use] = ACTIONS(2521), + [anon_sym_while] = ACTIONS(2521), + [anon_sym_extern] = ACTIONS(2521), + [anon_sym_yield] = ACTIONS(2521), + [anon_sym_move] = ACTIONS(2521), + [anon_sym_try] = ACTIONS(2521), + [sym_integer_literal] = ACTIONS(2519), + [aux_sym_string_literal_token1] = ACTIONS(2519), + [sym_char_literal] = ACTIONS(2519), + [anon_sym_true] = ACTIONS(2521), + [anon_sym_false] = ACTIONS(2521), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2521), + [sym_super] = ACTIONS(2521), + [sym_crate] = ACTIONS(2521), + [sym_metavariable] = ACTIONS(2519), + [sym__raw_string_literal_start] = ACTIONS(2519), + [sym_float_literal] = ACTIONS(2519), }, [667] = { [sym_line_comment] = STATE(667), [sym_block_comment] = STATE(667), - [ts_builtin_sym_end] = ACTIONS(2450), - [sym_identifier] = ACTIONS(2452), - [anon_sym_SEMI] = ACTIONS(2450), - [anon_sym_macro_rules_BANG] = ACTIONS(2450), - [anon_sym_LPAREN] = ACTIONS(2450), - [anon_sym_LBRACK] = ACTIONS(2450), - [anon_sym_LBRACE] = ACTIONS(2450), - [anon_sym_RBRACE] = ACTIONS(2450), - [anon_sym_STAR] = ACTIONS(2450), - [anon_sym_u8] = ACTIONS(2452), - [anon_sym_i8] = ACTIONS(2452), - [anon_sym_u16] = ACTIONS(2452), - [anon_sym_i16] = ACTIONS(2452), - [anon_sym_u32] = ACTIONS(2452), - [anon_sym_i32] = ACTIONS(2452), - [anon_sym_u64] = ACTIONS(2452), - [anon_sym_i64] = ACTIONS(2452), - [anon_sym_u128] = ACTIONS(2452), - [anon_sym_i128] = ACTIONS(2452), - [anon_sym_isize] = ACTIONS(2452), - [anon_sym_usize] = ACTIONS(2452), - [anon_sym_f32] = ACTIONS(2452), - [anon_sym_f64] = ACTIONS(2452), - [anon_sym_bool] = ACTIONS(2452), - [anon_sym_str] = ACTIONS(2452), - [anon_sym_char] = ACTIONS(2452), - [anon_sym_DASH] = ACTIONS(2450), - [anon_sym_BANG] = ACTIONS(2450), - [anon_sym_AMP] = ACTIONS(2450), - [anon_sym_PIPE] = ACTIONS(2450), - [anon_sym_LT] = ACTIONS(2450), - [anon_sym_DOT_DOT] = ACTIONS(2450), - [anon_sym_COLON_COLON] = ACTIONS(2450), - [anon_sym_POUND] = ACTIONS(2450), - [anon_sym_SQUOTE] = ACTIONS(2452), - [anon_sym_async] = ACTIONS(2452), - [anon_sym_break] = ACTIONS(2452), - [anon_sym_const] = ACTIONS(2452), - [anon_sym_continue] = ACTIONS(2452), - [anon_sym_default] = ACTIONS(2452), - [anon_sym_enum] = ACTIONS(2452), - [anon_sym_fn] = ACTIONS(2452), - [anon_sym_for] = ACTIONS(2452), - [anon_sym_if] = ACTIONS(2452), - [anon_sym_impl] = ACTIONS(2452), - [anon_sym_let] = ACTIONS(2452), - [anon_sym_loop] = ACTIONS(2452), - [anon_sym_match] = ACTIONS(2452), - [anon_sym_mod] = ACTIONS(2452), - [anon_sym_pub] = ACTIONS(2452), - [anon_sym_return] = ACTIONS(2452), - [anon_sym_static] = ACTIONS(2452), - [anon_sym_struct] = ACTIONS(2452), - [anon_sym_trait] = ACTIONS(2452), - [anon_sym_type] = ACTIONS(2452), - [anon_sym_union] = ACTIONS(2452), - [anon_sym_unsafe] = ACTIONS(2452), - [anon_sym_use] = ACTIONS(2452), - [anon_sym_while] = ACTIONS(2452), - [anon_sym_extern] = ACTIONS(2452), - [anon_sym_yield] = ACTIONS(2452), - [anon_sym_move] = ACTIONS(2452), - [anon_sym_try] = ACTIONS(2452), - [sym_integer_literal] = ACTIONS(2450), - [aux_sym_string_literal_token1] = ACTIONS(2450), - [sym_char_literal] = ACTIONS(2450), - [anon_sym_true] = ACTIONS(2452), - [anon_sym_false] = ACTIONS(2452), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2452), - [sym_super] = ACTIONS(2452), - [sym_crate] = ACTIONS(2452), - [sym_metavariable] = ACTIONS(2450), - [sym__raw_string_literal_start] = ACTIONS(2450), - [sym_float_literal] = ACTIONS(2450), + [ts_builtin_sym_end] = ACTIONS(2523), + [sym_identifier] = ACTIONS(2525), + [anon_sym_SEMI] = ACTIONS(2523), + [anon_sym_macro_rules_BANG] = ACTIONS(2523), + [anon_sym_LPAREN] = ACTIONS(2523), + [anon_sym_LBRACK] = ACTIONS(2523), + [anon_sym_LBRACE] = ACTIONS(2523), + [anon_sym_RBRACE] = ACTIONS(2523), + [anon_sym_macro] = ACTIONS(2525), + [anon_sym_STAR] = ACTIONS(2523), + [anon_sym_u8] = ACTIONS(2525), + [anon_sym_i8] = ACTIONS(2525), + [anon_sym_u16] = ACTIONS(2525), + [anon_sym_i16] = ACTIONS(2525), + [anon_sym_u32] = ACTIONS(2525), + [anon_sym_i32] = ACTIONS(2525), + [anon_sym_u64] = ACTIONS(2525), + [anon_sym_i64] = ACTIONS(2525), + [anon_sym_u128] = ACTIONS(2525), + [anon_sym_i128] = ACTIONS(2525), + [anon_sym_isize] = ACTIONS(2525), + [anon_sym_usize] = ACTIONS(2525), + [anon_sym_f32] = ACTIONS(2525), + [anon_sym_f64] = ACTIONS(2525), + [anon_sym_bool] = ACTIONS(2525), + [anon_sym_str] = ACTIONS(2525), + [anon_sym_char] = ACTIONS(2525), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_BANG] = ACTIONS(2523), + [anon_sym_AMP] = ACTIONS(2523), + [anon_sym_PIPE] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2523), + [anon_sym_DOT_DOT] = ACTIONS(2523), + [anon_sym_COLON_COLON] = ACTIONS(2523), + [anon_sym_POUND] = ACTIONS(2523), + [anon_sym_SQUOTE] = ACTIONS(2525), + [anon_sym_async] = ACTIONS(2525), + [anon_sym_break] = ACTIONS(2525), + [anon_sym_const] = ACTIONS(2525), + [anon_sym_continue] = ACTIONS(2525), + [anon_sym_default] = ACTIONS(2525), + [anon_sym_enum] = ACTIONS(2525), + [anon_sym_fn] = ACTIONS(2525), + [anon_sym_for] = ACTIONS(2525), + [anon_sym_if] = ACTIONS(2525), + [anon_sym_impl] = ACTIONS(2525), + [anon_sym_let] = ACTIONS(2525), + [anon_sym_loop] = ACTIONS(2525), + [anon_sym_match] = ACTIONS(2525), + [anon_sym_mod] = ACTIONS(2525), + [anon_sym_pub] = ACTIONS(2525), + [anon_sym_return] = ACTIONS(2525), + [anon_sym_static] = ACTIONS(2525), + [anon_sym_struct] = ACTIONS(2525), + [anon_sym_trait] = ACTIONS(2525), + [anon_sym_type] = ACTIONS(2525), + [anon_sym_union] = ACTIONS(2525), + [anon_sym_unsafe] = ACTIONS(2525), + [anon_sym_use] = ACTIONS(2525), + [anon_sym_while] = ACTIONS(2525), + [anon_sym_extern] = ACTIONS(2525), + [anon_sym_yield] = ACTIONS(2525), + [anon_sym_move] = ACTIONS(2525), + [anon_sym_try] = ACTIONS(2525), + [sym_integer_literal] = ACTIONS(2523), + [aux_sym_string_literal_token1] = ACTIONS(2523), + [sym_char_literal] = ACTIONS(2523), + [anon_sym_true] = ACTIONS(2525), + [anon_sym_false] = ACTIONS(2525), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2525), + [sym_super] = ACTIONS(2525), + [sym_crate] = ACTIONS(2525), + [sym_metavariable] = ACTIONS(2523), + [sym__raw_string_literal_start] = ACTIONS(2523), + [sym_float_literal] = ACTIONS(2523), }, [668] = { [sym_line_comment] = STATE(668), [sym_block_comment] = STATE(668), - [ts_builtin_sym_end] = ACTIONS(2454), - [sym_identifier] = ACTIONS(2456), - [anon_sym_SEMI] = ACTIONS(2454), - [anon_sym_macro_rules_BANG] = ACTIONS(2454), - [anon_sym_LPAREN] = ACTIONS(2454), - [anon_sym_LBRACK] = ACTIONS(2454), - [anon_sym_LBRACE] = ACTIONS(2454), - [anon_sym_RBRACE] = ACTIONS(2454), - [anon_sym_STAR] = ACTIONS(2454), - [anon_sym_u8] = ACTIONS(2456), - [anon_sym_i8] = ACTIONS(2456), - [anon_sym_u16] = ACTIONS(2456), - [anon_sym_i16] = ACTIONS(2456), - [anon_sym_u32] = ACTIONS(2456), - [anon_sym_i32] = ACTIONS(2456), - [anon_sym_u64] = ACTIONS(2456), - [anon_sym_i64] = ACTIONS(2456), - [anon_sym_u128] = ACTIONS(2456), - [anon_sym_i128] = ACTIONS(2456), - [anon_sym_isize] = ACTIONS(2456), - [anon_sym_usize] = ACTIONS(2456), - [anon_sym_f32] = ACTIONS(2456), - [anon_sym_f64] = ACTIONS(2456), - [anon_sym_bool] = ACTIONS(2456), - [anon_sym_str] = ACTIONS(2456), - [anon_sym_char] = ACTIONS(2456), - [anon_sym_DASH] = ACTIONS(2454), - [anon_sym_BANG] = ACTIONS(2454), - [anon_sym_AMP] = ACTIONS(2454), - [anon_sym_PIPE] = ACTIONS(2454), - [anon_sym_LT] = ACTIONS(2454), - [anon_sym_DOT_DOT] = ACTIONS(2454), - [anon_sym_COLON_COLON] = ACTIONS(2454), - [anon_sym_POUND] = ACTIONS(2454), - [anon_sym_SQUOTE] = ACTIONS(2456), - [anon_sym_async] = ACTIONS(2456), - [anon_sym_break] = ACTIONS(2456), - [anon_sym_const] = ACTIONS(2456), - [anon_sym_continue] = ACTIONS(2456), - [anon_sym_default] = ACTIONS(2456), - [anon_sym_enum] = ACTIONS(2456), - [anon_sym_fn] = ACTIONS(2456), - [anon_sym_for] = ACTIONS(2456), - [anon_sym_if] = ACTIONS(2456), - [anon_sym_impl] = ACTIONS(2456), - [anon_sym_let] = ACTIONS(2456), - [anon_sym_loop] = ACTIONS(2456), - [anon_sym_match] = ACTIONS(2456), - [anon_sym_mod] = ACTIONS(2456), - [anon_sym_pub] = ACTIONS(2456), - [anon_sym_return] = ACTIONS(2456), - [anon_sym_static] = ACTIONS(2456), - [anon_sym_struct] = ACTIONS(2456), - [anon_sym_trait] = ACTIONS(2456), - [anon_sym_type] = ACTIONS(2456), - [anon_sym_union] = ACTIONS(2456), - [anon_sym_unsafe] = ACTIONS(2456), - [anon_sym_use] = ACTIONS(2456), - [anon_sym_while] = ACTIONS(2456), - [anon_sym_extern] = ACTIONS(2456), - [anon_sym_yield] = ACTIONS(2456), - [anon_sym_move] = ACTIONS(2456), - [anon_sym_try] = ACTIONS(2456), - [sym_integer_literal] = ACTIONS(2454), - [aux_sym_string_literal_token1] = ACTIONS(2454), - [sym_char_literal] = ACTIONS(2454), - [anon_sym_true] = ACTIONS(2456), - [anon_sym_false] = ACTIONS(2456), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2456), - [sym_super] = ACTIONS(2456), - [sym_crate] = ACTIONS(2456), - [sym_metavariable] = ACTIONS(2454), - [sym__raw_string_literal_start] = ACTIONS(2454), - [sym_float_literal] = ACTIONS(2454), + [ts_builtin_sym_end] = ACTIONS(2527), + [sym_identifier] = ACTIONS(2529), + [anon_sym_SEMI] = ACTIONS(2527), + [anon_sym_macro_rules_BANG] = ACTIONS(2527), + [anon_sym_LPAREN] = ACTIONS(2527), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2527), + [anon_sym_RBRACE] = ACTIONS(2527), + [anon_sym_macro] = ACTIONS(2529), + [anon_sym_STAR] = ACTIONS(2527), + [anon_sym_u8] = ACTIONS(2529), + [anon_sym_i8] = ACTIONS(2529), + [anon_sym_u16] = ACTIONS(2529), + [anon_sym_i16] = ACTIONS(2529), + [anon_sym_u32] = ACTIONS(2529), + [anon_sym_i32] = ACTIONS(2529), + [anon_sym_u64] = ACTIONS(2529), + [anon_sym_i64] = ACTIONS(2529), + [anon_sym_u128] = ACTIONS(2529), + [anon_sym_i128] = ACTIONS(2529), + [anon_sym_isize] = ACTIONS(2529), + [anon_sym_usize] = ACTIONS(2529), + [anon_sym_f32] = ACTIONS(2529), + [anon_sym_f64] = ACTIONS(2529), + [anon_sym_bool] = ACTIONS(2529), + [anon_sym_str] = ACTIONS(2529), + [anon_sym_char] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_BANG] = ACTIONS(2527), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_PIPE] = ACTIONS(2527), + [anon_sym_LT] = ACTIONS(2527), + [anon_sym_DOT_DOT] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2527), + [anon_sym_POUND] = ACTIONS(2527), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_async] = ACTIONS(2529), + [anon_sym_break] = ACTIONS(2529), + [anon_sym_const] = ACTIONS(2529), + [anon_sym_continue] = ACTIONS(2529), + [anon_sym_default] = ACTIONS(2529), + [anon_sym_enum] = ACTIONS(2529), + [anon_sym_fn] = ACTIONS(2529), + [anon_sym_for] = ACTIONS(2529), + [anon_sym_if] = ACTIONS(2529), + [anon_sym_impl] = ACTIONS(2529), + [anon_sym_let] = ACTIONS(2529), + [anon_sym_loop] = ACTIONS(2529), + [anon_sym_match] = ACTIONS(2529), + [anon_sym_mod] = ACTIONS(2529), + [anon_sym_pub] = ACTIONS(2529), + [anon_sym_return] = ACTIONS(2529), + [anon_sym_static] = ACTIONS(2529), + [anon_sym_struct] = ACTIONS(2529), + [anon_sym_trait] = ACTIONS(2529), + [anon_sym_type] = ACTIONS(2529), + [anon_sym_union] = ACTIONS(2529), + [anon_sym_unsafe] = ACTIONS(2529), + [anon_sym_use] = ACTIONS(2529), + [anon_sym_while] = ACTIONS(2529), + [anon_sym_extern] = ACTIONS(2529), + [anon_sym_yield] = ACTIONS(2529), + [anon_sym_move] = ACTIONS(2529), + [anon_sym_try] = ACTIONS(2529), + [sym_integer_literal] = ACTIONS(2527), + [aux_sym_string_literal_token1] = ACTIONS(2527), + [sym_char_literal] = ACTIONS(2527), + [anon_sym_true] = ACTIONS(2529), + [anon_sym_false] = ACTIONS(2529), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2529), + [sym_super] = ACTIONS(2529), + [sym_crate] = ACTIONS(2529), + [sym_metavariable] = ACTIONS(2527), + [sym__raw_string_literal_start] = ACTIONS(2527), + [sym_float_literal] = ACTIONS(2527), }, [669] = { [sym_line_comment] = STATE(669), [sym_block_comment] = STATE(669), - [ts_builtin_sym_end] = ACTIONS(1240), - [sym_identifier] = ACTIONS(1242), - [anon_sym_SEMI] = ACTIONS(1240), - [anon_sym_macro_rules_BANG] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(1240), - [anon_sym_LBRACK] = ACTIONS(1240), - [anon_sym_LBRACE] = ACTIONS(1240), - [anon_sym_RBRACE] = ACTIONS(1240), - [anon_sym_STAR] = ACTIONS(1240), - [anon_sym_u8] = ACTIONS(1242), - [anon_sym_i8] = ACTIONS(1242), - [anon_sym_u16] = ACTIONS(1242), - [anon_sym_i16] = ACTIONS(1242), - [anon_sym_u32] = ACTIONS(1242), - [anon_sym_i32] = ACTIONS(1242), - [anon_sym_u64] = ACTIONS(1242), - [anon_sym_i64] = ACTIONS(1242), - [anon_sym_u128] = ACTIONS(1242), - [anon_sym_i128] = ACTIONS(1242), - [anon_sym_isize] = ACTIONS(1242), - [anon_sym_usize] = ACTIONS(1242), - [anon_sym_f32] = ACTIONS(1242), - [anon_sym_f64] = ACTIONS(1242), - [anon_sym_bool] = ACTIONS(1242), - [anon_sym_str] = ACTIONS(1242), - [anon_sym_char] = ACTIONS(1242), - [anon_sym_DASH] = ACTIONS(1240), - [anon_sym_BANG] = ACTIONS(1240), - [anon_sym_AMP] = ACTIONS(1240), - [anon_sym_PIPE] = ACTIONS(1240), - [anon_sym_LT] = ACTIONS(1240), - [anon_sym_DOT_DOT] = ACTIONS(1240), - [anon_sym_COLON_COLON] = ACTIONS(1240), - [anon_sym_POUND] = ACTIONS(1240), - [anon_sym_SQUOTE] = ACTIONS(1242), - [anon_sym_async] = ACTIONS(1242), - [anon_sym_break] = ACTIONS(1242), - [anon_sym_const] = ACTIONS(1242), - [anon_sym_continue] = ACTIONS(1242), - [anon_sym_default] = ACTIONS(1242), - [anon_sym_enum] = ACTIONS(1242), - [anon_sym_fn] = ACTIONS(1242), - [anon_sym_for] = ACTIONS(1242), - [anon_sym_if] = ACTIONS(1242), - [anon_sym_impl] = ACTIONS(1242), - [anon_sym_let] = ACTIONS(1242), - [anon_sym_loop] = ACTIONS(1242), - [anon_sym_match] = ACTIONS(1242), - [anon_sym_mod] = ACTIONS(1242), - [anon_sym_pub] = ACTIONS(1242), - [anon_sym_return] = ACTIONS(1242), - [anon_sym_static] = ACTIONS(1242), - [anon_sym_struct] = ACTIONS(1242), - [anon_sym_trait] = ACTIONS(1242), - [anon_sym_type] = ACTIONS(1242), - [anon_sym_union] = ACTIONS(1242), - [anon_sym_unsafe] = ACTIONS(1242), - [anon_sym_use] = ACTIONS(1242), - [anon_sym_while] = ACTIONS(1242), - [anon_sym_extern] = ACTIONS(1242), - [anon_sym_yield] = ACTIONS(1242), - [anon_sym_move] = ACTIONS(1242), - [anon_sym_try] = ACTIONS(1242), - [sym_integer_literal] = ACTIONS(1240), - [aux_sym_string_literal_token1] = ACTIONS(1240), - [sym_char_literal] = ACTIONS(1240), - [anon_sym_true] = ACTIONS(1242), - [anon_sym_false] = ACTIONS(1242), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1242), - [sym_super] = ACTIONS(1242), - [sym_crate] = ACTIONS(1242), - [sym_metavariable] = ACTIONS(1240), - [sym__raw_string_literal_start] = ACTIONS(1240), - [sym_float_literal] = ACTIONS(1240), + [ts_builtin_sym_end] = ACTIONS(2531), + [sym_identifier] = ACTIONS(2533), + [anon_sym_SEMI] = ACTIONS(2531), + [anon_sym_macro_rules_BANG] = ACTIONS(2531), + [anon_sym_LPAREN] = ACTIONS(2531), + [anon_sym_LBRACK] = ACTIONS(2531), + [anon_sym_LBRACE] = ACTIONS(2531), + [anon_sym_RBRACE] = ACTIONS(2531), + [anon_sym_macro] = ACTIONS(2533), + [anon_sym_STAR] = ACTIONS(2531), + [anon_sym_u8] = ACTIONS(2533), + [anon_sym_i8] = ACTIONS(2533), + [anon_sym_u16] = ACTIONS(2533), + [anon_sym_i16] = ACTIONS(2533), + [anon_sym_u32] = ACTIONS(2533), + [anon_sym_i32] = ACTIONS(2533), + [anon_sym_u64] = ACTIONS(2533), + [anon_sym_i64] = ACTIONS(2533), + [anon_sym_u128] = ACTIONS(2533), + [anon_sym_i128] = ACTIONS(2533), + [anon_sym_isize] = ACTIONS(2533), + [anon_sym_usize] = ACTIONS(2533), + [anon_sym_f32] = ACTIONS(2533), + [anon_sym_f64] = ACTIONS(2533), + [anon_sym_bool] = ACTIONS(2533), + [anon_sym_str] = ACTIONS(2533), + [anon_sym_char] = ACTIONS(2533), + [anon_sym_DASH] = ACTIONS(2531), + [anon_sym_BANG] = ACTIONS(2531), + [anon_sym_AMP] = ACTIONS(2531), + [anon_sym_PIPE] = ACTIONS(2531), + [anon_sym_LT] = ACTIONS(2531), + [anon_sym_DOT_DOT] = ACTIONS(2531), + [anon_sym_COLON_COLON] = ACTIONS(2531), + [anon_sym_POUND] = ACTIONS(2531), + [anon_sym_SQUOTE] = ACTIONS(2533), + [anon_sym_async] = ACTIONS(2533), + [anon_sym_break] = ACTIONS(2533), + [anon_sym_const] = ACTIONS(2533), + [anon_sym_continue] = ACTIONS(2533), + [anon_sym_default] = ACTIONS(2533), + [anon_sym_enum] = ACTIONS(2533), + [anon_sym_fn] = ACTIONS(2533), + [anon_sym_for] = ACTIONS(2533), + [anon_sym_if] = ACTIONS(2533), + [anon_sym_impl] = ACTIONS(2533), + [anon_sym_let] = ACTIONS(2533), + [anon_sym_loop] = ACTIONS(2533), + [anon_sym_match] = ACTIONS(2533), + [anon_sym_mod] = ACTIONS(2533), + [anon_sym_pub] = ACTIONS(2533), + [anon_sym_return] = ACTIONS(2533), + [anon_sym_static] = ACTIONS(2533), + [anon_sym_struct] = ACTIONS(2533), + [anon_sym_trait] = ACTIONS(2533), + [anon_sym_type] = ACTIONS(2533), + [anon_sym_union] = ACTIONS(2533), + [anon_sym_unsafe] = ACTIONS(2533), + [anon_sym_use] = ACTIONS(2533), + [anon_sym_while] = ACTIONS(2533), + [anon_sym_extern] = ACTIONS(2533), + [anon_sym_yield] = ACTIONS(2533), + [anon_sym_move] = ACTIONS(2533), + [anon_sym_try] = ACTIONS(2533), + [sym_integer_literal] = ACTIONS(2531), + [aux_sym_string_literal_token1] = ACTIONS(2531), + [sym_char_literal] = ACTIONS(2531), + [anon_sym_true] = ACTIONS(2533), + [anon_sym_false] = ACTIONS(2533), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2533), + [sym_super] = ACTIONS(2533), + [sym_crate] = ACTIONS(2533), + [sym_metavariable] = ACTIONS(2531), + [sym__raw_string_literal_start] = ACTIONS(2531), + [sym_float_literal] = ACTIONS(2531), }, [670] = { [sym_line_comment] = STATE(670), [sym_block_comment] = STATE(670), - [ts_builtin_sym_end] = ACTIONS(1206), - [sym_identifier] = ACTIONS(1208), - [anon_sym_SEMI] = ACTIONS(1206), - [anon_sym_macro_rules_BANG] = ACTIONS(1206), - [anon_sym_LPAREN] = ACTIONS(1206), - [anon_sym_LBRACK] = ACTIONS(1206), - [anon_sym_LBRACE] = ACTIONS(1206), - [anon_sym_RBRACE] = ACTIONS(1206), - [anon_sym_STAR] = ACTIONS(1206), - [anon_sym_u8] = ACTIONS(1208), - [anon_sym_i8] = ACTIONS(1208), - [anon_sym_u16] = ACTIONS(1208), - [anon_sym_i16] = ACTIONS(1208), - [anon_sym_u32] = ACTIONS(1208), - [anon_sym_i32] = ACTIONS(1208), - [anon_sym_u64] = ACTIONS(1208), - [anon_sym_i64] = ACTIONS(1208), - [anon_sym_u128] = ACTIONS(1208), - [anon_sym_i128] = ACTIONS(1208), - [anon_sym_isize] = ACTIONS(1208), - [anon_sym_usize] = ACTIONS(1208), - [anon_sym_f32] = ACTIONS(1208), - [anon_sym_f64] = ACTIONS(1208), - [anon_sym_bool] = ACTIONS(1208), - [anon_sym_str] = ACTIONS(1208), - [anon_sym_char] = ACTIONS(1208), - [anon_sym_DASH] = ACTIONS(1206), - [anon_sym_BANG] = ACTIONS(1206), - [anon_sym_AMP] = ACTIONS(1206), - [anon_sym_PIPE] = ACTIONS(1206), - [anon_sym_LT] = ACTIONS(1206), - [anon_sym_DOT_DOT] = ACTIONS(1206), - [anon_sym_COLON_COLON] = ACTIONS(1206), - [anon_sym_POUND] = ACTIONS(1206), - [anon_sym_SQUOTE] = ACTIONS(1208), - [anon_sym_async] = ACTIONS(1208), - [anon_sym_break] = ACTIONS(1208), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_continue] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(1208), - [anon_sym_enum] = ACTIONS(1208), - [anon_sym_fn] = ACTIONS(1208), - [anon_sym_for] = ACTIONS(1208), - [anon_sym_if] = ACTIONS(1208), - [anon_sym_impl] = ACTIONS(1208), - [anon_sym_let] = ACTIONS(1208), - [anon_sym_loop] = ACTIONS(1208), - [anon_sym_match] = ACTIONS(1208), - [anon_sym_mod] = ACTIONS(1208), - [anon_sym_pub] = ACTIONS(1208), - [anon_sym_return] = ACTIONS(1208), - [anon_sym_static] = ACTIONS(1208), - [anon_sym_struct] = ACTIONS(1208), - [anon_sym_trait] = ACTIONS(1208), - [anon_sym_type] = ACTIONS(1208), - [anon_sym_union] = ACTIONS(1208), - [anon_sym_unsafe] = ACTIONS(1208), - [anon_sym_use] = ACTIONS(1208), - [anon_sym_while] = ACTIONS(1208), - [anon_sym_extern] = ACTIONS(1208), - [anon_sym_yield] = ACTIONS(1208), - [anon_sym_move] = ACTIONS(1208), - [anon_sym_try] = ACTIONS(1208), - [sym_integer_literal] = ACTIONS(1206), - [aux_sym_string_literal_token1] = ACTIONS(1206), - [sym_char_literal] = ACTIONS(1206), - [anon_sym_true] = ACTIONS(1208), - [anon_sym_false] = ACTIONS(1208), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1208), - [sym_super] = ACTIONS(1208), - [sym_crate] = ACTIONS(1208), - [sym_metavariable] = ACTIONS(1206), - [sym__raw_string_literal_start] = ACTIONS(1206), - [sym_float_literal] = ACTIONS(1206), + [ts_builtin_sym_end] = ACTIONS(2535), + [sym_identifier] = ACTIONS(2537), + [anon_sym_SEMI] = ACTIONS(2535), + [anon_sym_macro_rules_BANG] = ACTIONS(2535), + [anon_sym_LPAREN] = ACTIONS(2535), + [anon_sym_LBRACK] = ACTIONS(2535), + [anon_sym_LBRACE] = ACTIONS(2535), + [anon_sym_RBRACE] = ACTIONS(2535), + [anon_sym_macro] = ACTIONS(2537), + [anon_sym_STAR] = ACTIONS(2535), + [anon_sym_u8] = ACTIONS(2537), + [anon_sym_i8] = ACTIONS(2537), + [anon_sym_u16] = ACTIONS(2537), + [anon_sym_i16] = ACTIONS(2537), + [anon_sym_u32] = ACTIONS(2537), + [anon_sym_i32] = ACTIONS(2537), + [anon_sym_u64] = ACTIONS(2537), + [anon_sym_i64] = ACTIONS(2537), + [anon_sym_u128] = ACTIONS(2537), + [anon_sym_i128] = ACTIONS(2537), + [anon_sym_isize] = ACTIONS(2537), + [anon_sym_usize] = ACTIONS(2537), + [anon_sym_f32] = ACTIONS(2537), + [anon_sym_f64] = ACTIONS(2537), + [anon_sym_bool] = ACTIONS(2537), + [anon_sym_str] = ACTIONS(2537), + [anon_sym_char] = ACTIONS(2537), + [anon_sym_DASH] = ACTIONS(2535), + [anon_sym_BANG] = ACTIONS(2535), + [anon_sym_AMP] = ACTIONS(2535), + [anon_sym_PIPE] = ACTIONS(2535), + [anon_sym_LT] = ACTIONS(2535), + [anon_sym_DOT_DOT] = ACTIONS(2535), + [anon_sym_COLON_COLON] = ACTIONS(2535), + [anon_sym_POUND] = ACTIONS(2535), + [anon_sym_SQUOTE] = ACTIONS(2537), + [anon_sym_async] = ACTIONS(2537), + [anon_sym_break] = ACTIONS(2537), + [anon_sym_const] = ACTIONS(2537), + [anon_sym_continue] = ACTIONS(2537), + [anon_sym_default] = ACTIONS(2537), + [anon_sym_enum] = ACTIONS(2537), + [anon_sym_fn] = ACTIONS(2537), + [anon_sym_for] = ACTIONS(2537), + [anon_sym_if] = ACTIONS(2537), + [anon_sym_impl] = ACTIONS(2537), + [anon_sym_let] = ACTIONS(2537), + [anon_sym_loop] = ACTIONS(2537), + [anon_sym_match] = ACTIONS(2537), + [anon_sym_mod] = ACTIONS(2537), + [anon_sym_pub] = ACTIONS(2537), + [anon_sym_return] = ACTIONS(2537), + [anon_sym_static] = ACTIONS(2537), + [anon_sym_struct] = ACTIONS(2537), + [anon_sym_trait] = ACTIONS(2537), + [anon_sym_type] = ACTIONS(2537), + [anon_sym_union] = ACTIONS(2537), + [anon_sym_unsafe] = ACTIONS(2537), + [anon_sym_use] = ACTIONS(2537), + [anon_sym_while] = ACTIONS(2537), + [anon_sym_extern] = ACTIONS(2537), + [anon_sym_yield] = ACTIONS(2537), + [anon_sym_move] = ACTIONS(2537), + [anon_sym_try] = ACTIONS(2537), + [sym_integer_literal] = ACTIONS(2535), + [aux_sym_string_literal_token1] = ACTIONS(2535), + [sym_char_literal] = ACTIONS(2535), + [anon_sym_true] = ACTIONS(2537), + [anon_sym_false] = ACTIONS(2537), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2537), + [sym_super] = ACTIONS(2537), + [sym_crate] = ACTIONS(2537), + [sym_metavariable] = ACTIONS(2535), + [sym__raw_string_literal_start] = ACTIONS(2535), + [sym_float_literal] = ACTIONS(2535), }, [671] = { [sym_line_comment] = STATE(671), [sym_block_comment] = STATE(671), - [ts_builtin_sym_end] = ACTIONS(1232), - [sym_identifier] = ACTIONS(1234), - [anon_sym_SEMI] = ACTIONS(1232), - [anon_sym_macro_rules_BANG] = ACTIONS(1232), - [anon_sym_LPAREN] = ACTIONS(1232), - [anon_sym_LBRACK] = ACTIONS(1232), - [anon_sym_LBRACE] = ACTIONS(1232), - [anon_sym_RBRACE] = ACTIONS(1232), - [anon_sym_STAR] = ACTIONS(1232), - [anon_sym_u8] = ACTIONS(1234), - [anon_sym_i8] = ACTIONS(1234), - [anon_sym_u16] = ACTIONS(1234), - [anon_sym_i16] = ACTIONS(1234), - [anon_sym_u32] = ACTIONS(1234), - [anon_sym_i32] = ACTIONS(1234), - [anon_sym_u64] = ACTIONS(1234), - [anon_sym_i64] = ACTIONS(1234), - [anon_sym_u128] = ACTIONS(1234), - [anon_sym_i128] = ACTIONS(1234), - [anon_sym_isize] = ACTIONS(1234), - [anon_sym_usize] = ACTIONS(1234), - [anon_sym_f32] = ACTIONS(1234), - [anon_sym_f64] = ACTIONS(1234), - [anon_sym_bool] = ACTIONS(1234), - [anon_sym_str] = ACTIONS(1234), - [anon_sym_char] = ACTIONS(1234), - [anon_sym_DASH] = ACTIONS(1232), - [anon_sym_BANG] = ACTIONS(1232), - [anon_sym_AMP] = ACTIONS(1232), - [anon_sym_PIPE] = ACTIONS(1232), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_DOT_DOT] = ACTIONS(1232), - [anon_sym_COLON_COLON] = ACTIONS(1232), - [anon_sym_POUND] = ACTIONS(1232), - [anon_sym_SQUOTE] = ACTIONS(1234), - [anon_sym_async] = ACTIONS(1234), - [anon_sym_break] = ACTIONS(1234), - [anon_sym_const] = ACTIONS(1234), - [anon_sym_continue] = ACTIONS(1234), - [anon_sym_default] = ACTIONS(1234), - [anon_sym_enum] = ACTIONS(1234), - [anon_sym_fn] = ACTIONS(1234), - [anon_sym_for] = ACTIONS(1234), - [anon_sym_if] = ACTIONS(1234), - [anon_sym_impl] = ACTIONS(1234), - [anon_sym_let] = ACTIONS(1234), - [anon_sym_loop] = ACTIONS(1234), - [anon_sym_match] = ACTIONS(1234), - [anon_sym_mod] = ACTIONS(1234), - [anon_sym_pub] = ACTIONS(1234), - [anon_sym_return] = ACTIONS(1234), - [anon_sym_static] = ACTIONS(1234), - [anon_sym_struct] = ACTIONS(1234), - [anon_sym_trait] = ACTIONS(1234), - [anon_sym_type] = ACTIONS(1234), - [anon_sym_union] = ACTIONS(1234), - [anon_sym_unsafe] = ACTIONS(1234), - [anon_sym_use] = ACTIONS(1234), - [anon_sym_while] = ACTIONS(1234), - [anon_sym_extern] = ACTIONS(1234), - [anon_sym_yield] = ACTIONS(1234), - [anon_sym_move] = ACTIONS(1234), - [anon_sym_try] = ACTIONS(1234), - [sym_integer_literal] = ACTIONS(1232), - [aux_sym_string_literal_token1] = ACTIONS(1232), - [sym_char_literal] = ACTIONS(1232), - [anon_sym_true] = ACTIONS(1234), - [anon_sym_false] = ACTIONS(1234), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1234), - [sym_super] = ACTIONS(1234), - [sym_crate] = ACTIONS(1234), - [sym_metavariable] = ACTIONS(1232), - [sym__raw_string_literal_start] = ACTIONS(1232), - [sym_float_literal] = ACTIONS(1232), + [ts_builtin_sym_end] = ACTIONS(2539), + [sym_identifier] = ACTIONS(2541), + [anon_sym_SEMI] = ACTIONS(2539), + [anon_sym_macro_rules_BANG] = ACTIONS(2539), + [anon_sym_LPAREN] = ACTIONS(2539), + [anon_sym_LBRACK] = ACTIONS(2539), + [anon_sym_LBRACE] = ACTIONS(2539), + [anon_sym_RBRACE] = ACTIONS(2539), + [anon_sym_macro] = ACTIONS(2541), + [anon_sym_STAR] = ACTIONS(2539), + [anon_sym_u8] = ACTIONS(2541), + [anon_sym_i8] = ACTIONS(2541), + [anon_sym_u16] = ACTIONS(2541), + [anon_sym_i16] = ACTIONS(2541), + [anon_sym_u32] = ACTIONS(2541), + [anon_sym_i32] = ACTIONS(2541), + [anon_sym_u64] = ACTIONS(2541), + [anon_sym_i64] = ACTIONS(2541), + [anon_sym_u128] = ACTIONS(2541), + [anon_sym_i128] = ACTIONS(2541), + [anon_sym_isize] = ACTIONS(2541), + [anon_sym_usize] = ACTIONS(2541), + [anon_sym_f32] = ACTIONS(2541), + [anon_sym_f64] = ACTIONS(2541), + [anon_sym_bool] = ACTIONS(2541), + [anon_sym_str] = ACTIONS(2541), + [anon_sym_char] = ACTIONS(2541), + [anon_sym_DASH] = ACTIONS(2539), + [anon_sym_BANG] = ACTIONS(2539), + [anon_sym_AMP] = ACTIONS(2539), + [anon_sym_PIPE] = ACTIONS(2539), + [anon_sym_LT] = ACTIONS(2539), + [anon_sym_DOT_DOT] = ACTIONS(2539), + [anon_sym_COLON_COLON] = ACTIONS(2539), + [anon_sym_POUND] = ACTIONS(2539), + [anon_sym_SQUOTE] = ACTIONS(2541), + [anon_sym_async] = ACTIONS(2541), + [anon_sym_break] = ACTIONS(2541), + [anon_sym_const] = ACTIONS(2541), + [anon_sym_continue] = ACTIONS(2541), + [anon_sym_default] = ACTIONS(2541), + [anon_sym_enum] = ACTIONS(2541), + [anon_sym_fn] = ACTIONS(2541), + [anon_sym_for] = ACTIONS(2541), + [anon_sym_if] = ACTIONS(2541), + [anon_sym_impl] = ACTIONS(2541), + [anon_sym_let] = ACTIONS(2541), + [anon_sym_loop] = ACTIONS(2541), + [anon_sym_match] = ACTIONS(2541), + [anon_sym_mod] = ACTIONS(2541), + [anon_sym_pub] = ACTIONS(2541), + [anon_sym_return] = ACTIONS(2541), + [anon_sym_static] = ACTIONS(2541), + [anon_sym_struct] = ACTIONS(2541), + [anon_sym_trait] = ACTIONS(2541), + [anon_sym_type] = ACTIONS(2541), + [anon_sym_union] = ACTIONS(2541), + [anon_sym_unsafe] = ACTIONS(2541), + [anon_sym_use] = ACTIONS(2541), + [anon_sym_while] = ACTIONS(2541), + [anon_sym_extern] = ACTIONS(2541), + [anon_sym_yield] = ACTIONS(2541), + [anon_sym_move] = ACTIONS(2541), + [anon_sym_try] = ACTIONS(2541), + [sym_integer_literal] = ACTIONS(2539), + [aux_sym_string_literal_token1] = ACTIONS(2539), + [sym_char_literal] = ACTIONS(2539), + [anon_sym_true] = ACTIONS(2541), + [anon_sym_false] = ACTIONS(2541), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2541), + [sym_super] = ACTIONS(2541), + [sym_crate] = ACTIONS(2541), + [sym_metavariable] = ACTIONS(2539), + [sym__raw_string_literal_start] = ACTIONS(2539), + [sym_float_literal] = ACTIONS(2539), }, [672] = { [sym_line_comment] = STATE(672), [sym_block_comment] = STATE(672), - [ts_builtin_sym_end] = ACTIONS(1236), - [sym_identifier] = ACTIONS(1238), - [anon_sym_SEMI] = ACTIONS(1236), - [anon_sym_macro_rules_BANG] = ACTIONS(1236), - [anon_sym_LPAREN] = ACTIONS(1236), - [anon_sym_LBRACK] = ACTIONS(1236), - [anon_sym_LBRACE] = ACTIONS(1236), - [anon_sym_RBRACE] = ACTIONS(1236), - [anon_sym_STAR] = ACTIONS(1236), - [anon_sym_u8] = ACTIONS(1238), - [anon_sym_i8] = ACTIONS(1238), - [anon_sym_u16] = ACTIONS(1238), - [anon_sym_i16] = ACTIONS(1238), - [anon_sym_u32] = ACTIONS(1238), - [anon_sym_i32] = ACTIONS(1238), - [anon_sym_u64] = ACTIONS(1238), - [anon_sym_i64] = ACTIONS(1238), - [anon_sym_u128] = ACTIONS(1238), - [anon_sym_i128] = ACTIONS(1238), - [anon_sym_isize] = ACTIONS(1238), - [anon_sym_usize] = ACTIONS(1238), - [anon_sym_f32] = ACTIONS(1238), - [anon_sym_f64] = ACTIONS(1238), - [anon_sym_bool] = ACTIONS(1238), - [anon_sym_str] = ACTIONS(1238), - [anon_sym_char] = ACTIONS(1238), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_BANG] = ACTIONS(1236), - [anon_sym_AMP] = ACTIONS(1236), - [anon_sym_PIPE] = ACTIONS(1236), - [anon_sym_LT] = ACTIONS(1236), - [anon_sym_DOT_DOT] = ACTIONS(1236), - [anon_sym_COLON_COLON] = ACTIONS(1236), - [anon_sym_POUND] = ACTIONS(1236), - [anon_sym_SQUOTE] = ACTIONS(1238), - [anon_sym_async] = ACTIONS(1238), - [anon_sym_break] = ACTIONS(1238), - [anon_sym_const] = ACTIONS(1238), - [anon_sym_continue] = ACTIONS(1238), - [anon_sym_default] = ACTIONS(1238), - [anon_sym_enum] = ACTIONS(1238), - [anon_sym_fn] = ACTIONS(1238), - [anon_sym_for] = ACTIONS(1238), - [anon_sym_if] = ACTIONS(1238), - [anon_sym_impl] = ACTIONS(1238), - [anon_sym_let] = ACTIONS(1238), - [anon_sym_loop] = ACTIONS(1238), - [anon_sym_match] = ACTIONS(1238), - [anon_sym_mod] = ACTIONS(1238), - [anon_sym_pub] = ACTIONS(1238), - [anon_sym_return] = ACTIONS(1238), - [anon_sym_static] = ACTIONS(1238), - [anon_sym_struct] = ACTIONS(1238), - [anon_sym_trait] = ACTIONS(1238), - [anon_sym_type] = ACTIONS(1238), - [anon_sym_union] = ACTIONS(1238), - [anon_sym_unsafe] = ACTIONS(1238), - [anon_sym_use] = ACTIONS(1238), - [anon_sym_while] = ACTIONS(1238), - [anon_sym_extern] = ACTIONS(1238), - [anon_sym_yield] = ACTIONS(1238), - [anon_sym_move] = ACTIONS(1238), - [anon_sym_try] = ACTIONS(1238), - [sym_integer_literal] = ACTIONS(1236), - [aux_sym_string_literal_token1] = ACTIONS(1236), - [sym_char_literal] = ACTIONS(1236), - [anon_sym_true] = ACTIONS(1238), - [anon_sym_false] = ACTIONS(1238), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1238), - [sym_super] = ACTIONS(1238), - [sym_crate] = ACTIONS(1238), - [sym_metavariable] = ACTIONS(1236), - [sym__raw_string_literal_start] = ACTIONS(1236), - [sym_float_literal] = ACTIONS(1236), + [ts_builtin_sym_end] = ACTIONS(2543), + [sym_identifier] = ACTIONS(2545), + [anon_sym_SEMI] = ACTIONS(2543), + [anon_sym_macro_rules_BANG] = ACTIONS(2543), + [anon_sym_LPAREN] = ACTIONS(2543), + [anon_sym_LBRACK] = ACTIONS(2543), + [anon_sym_LBRACE] = ACTIONS(2543), + [anon_sym_RBRACE] = ACTIONS(2543), + [anon_sym_macro] = ACTIONS(2545), + [anon_sym_STAR] = ACTIONS(2543), + [anon_sym_u8] = ACTIONS(2545), + [anon_sym_i8] = ACTIONS(2545), + [anon_sym_u16] = ACTIONS(2545), + [anon_sym_i16] = ACTIONS(2545), + [anon_sym_u32] = ACTIONS(2545), + [anon_sym_i32] = ACTIONS(2545), + [anon_sym_u64] = ACTIONS(2545), + [anon_sym_i64] = ACTIONS(2545), + [anon_sym_u128] = ACTIONS(2545), + [anon_sym_i128] = ACTIONS(2545), + [anon_sym_isize] = ACTIONS(2545), + [anon_sym_usize] = ACTIONS(2545), + [anon_sym_f32] = ACTIONS(2545), + [anon_sym_f64] = ACTIONS(2545), + [anon_sym_bool] = ACTIONS(2545), + [anon_sym_str] = ACTIONS(2545), + [anon_sym_char] = ACTIONS(2545), + [anon_sym_DASH] = ACTIONS(2543), + [anon_sym_BANG] = ACTIONS(2543), + [anon_sym_AMP] = ACTIONS(2543), + [anon_sym_PIPE] = ACTIONS(2543), + [anon_sym_LT] = ACTIONS(2543), + [anon_sym_DOT_DOT] = ACTIONS(2543), + [anon_sym_COLON_COLON] = ACTIONS(2543), + [anon_sym_POUND] = ACTIONS(2543), + [anon_sym_SQUOTE] = ACTIONS(2545), + [anon_sym_async] = ACTIONS(2545), + [anon_sym_break] = ACTIONS(2545), + [anon_sym_const] = ACTIONS(2545), + [anon_sym_continue] = ACTIONS(2545), + [anon_sym_default] = ACTIONS(2545), + [anon_sym_enum] = ACTIONS(2545), + [anon_sym_fn] = ACTIONS(2545), + [anon_sym_for] = ACTIONS(2545), + [anon_sym_if] = ACTIONS(2545), + [anon_sym_impl] = ACTIONS(2545), + [anon_sym_let] = ACTIONS(2545), + [anon_sym_loop] = ACTIONS(2545), + [anon_sym_match] = ACTIONS(2545), + [anon_sym_mod] = ACTIONS(2545), + [anon_sym_pub] = ACTIONS(2545), + [anon_sym_return] = ACTIONS(2545), + [anon_sym_static] = ACTIONS(2545), + [anon_sym_struct] = ACTIONS(2545), + [anon_sym_trait] = ACTIONS(2545), + [anon_sym_type] = ACTIONS(2545), + [anon_sym_union] = ACTIONS(2545), + [anon_sym_unsafe] = ACTIONS(2545), + [anon_sym_use] = ACTIONS(2545), + [anon_sym_while] = ACTIONS(2545), + [anon_sym_extern] = ACTIONS(2545), + [anon_sym_yield] = ACTIONS(2545), + [anon_sym_move] = ACTIONS(2545), + [anon_sym_try] = ACTIONS(2545), + [sym_integer_literal] = ACTIONS(2543), + [aux_sym_string_literal_token1] = ACTIONS(2543), + [sym_char_literal] = ACTIONS(2543), + [anon_sym_true] = ACTIONS(2545), + [anon_sym_false] = ACTIONS(2545), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2545), + [sym_super] = ACTIONS(2545), + [sym_crate] = ACTIONS(2545), + [sym_metavariable] = ACTIONS(2543), + [sym__raw_string_literal_start] = ACTIONS(2543), + [sym_float_literal] = ACTIONS(2543), }, [673] = { + [sym_attribute_item] = STATE(1515), + [sym_inner_attribute_item] = STATE(1515), + [sym_bracketed_type] = STATE(3618), + [sym_generic_type] = STATE(3491), + [sym_generic_type_with_turbofish] = STATE(3218), + [sym_macro_invocation] = STATE(2994), + [sym_scoped_identifier] = STATE(2165), + [sym_scoped_type_identifier] = STATE(2786), + [sym_match_arm] = STATE(1505), + [sym_last_match_arm] = STATE(3661), + [sym_match_pattern] = STATE(3700), + [sym_const_block] = STATE(2994), + [sym__pattern] = STATE(3082), + [sym_tuple_pattern] = STATE(2994), + [sym_slice_pattern] = STATE(2994), + [sym_tuple_struct_pattern] = STATE(2994), + [sym_struct_pattern] = STATE(2994), + [sym_remaining_field_pattern] = STATE(2994), + [sym_mut_pattern] = STATE(2994), + [sym_range_pattern] = STATE(2994), + [sym_ref_pattern] = STATE(2994), + [sym_captured_pattern] = STATE(2994), + [sym_reference_pattern] = STATE(2994), + [sym_or_pattern] = STATE(2994), + [sym__literal_pattern] = STATE(2380), + [sym_negative_literal] = STATE(2383), + [sym_string_literal] = STATE(2383), + [sym_raw_string_literal] = STATE(2383), + [sym_boolean_literal] = STATE(2383), [sym_line_comment] = STATE(673), [sym_block_comment] = STATE(673), - [ts_builtin_sym_end] = ACTIONS(2458), - [sym_identifier] = ACTIONS(2460), - [anon_sym_SEMI] = ACTIONS(2458), - [anon_sym_macro_rules_BANG] = ACTIONS(2458), - [anon_sym_LPAREN] = ACTIONS(2458), - [anon_sym_LBRACK] = ACTIONS(2458), - [anon_sym_LBRACE] = ACTIONS(2458), - [anon_sym_RBRACE] = ACTIONS(2458), - [anon_sym_STAR] = ACTIONS(2458), - [anon_sym_u8] = ACTIONS(2460), - [anon_sym_i8] = ACTIONS(2460), - [anon_sym_u16] = ACTIONS(2460), - [anon_sym_i16] = ACTIONS(2460), - [anon_sym_u32] = ACTIONS(2460), - [anon_sym_i32] = ACTIONS(2460), - [anon_sym_u64] = ACTIONS(2460), - [anon_sym_i64] = ACTIONS(2460), - [anon_sym_u128] = ACTIONS(2460), - [anon_sym_i128] = ACTIONS(2460), - [anon_sym_isize] = ACTIONS(2460), - [anon_sym_usize] = ACTIONS(2460), - [anon_sym_f32] = ACTIONS(2460), - [anon_sym_f64] = ACTIONS(2460), - [anon_sym_bool] = ACTIONS(2460), - [anon_sym_str] = ACTIONS(2460), - [anon_sym_char] = ACTIONS(2460), - [anon_sym_DASH] = ACTIONS(2458), - [anon_sym_BANG] = ACTIONS(2458), - [anon_sym_AMP] = ACTIONS(2458), - [anon_sym_PIPE] = ACTIONS(2458), - [anon_sym_LT] = ACTIONS(2458), - [anon_sym_DOT_DOT] = ACTIONS(2458), - [anon_sym_COLON_COLON] = ACTIONS(2458), - [anon_sym_POUND] = ACTIONS(2458), - [anon_sym_SQUOTE] = ACTIONS(2460), - [anon_sym_async] = ACTIONS(2460), - [anon_sym_break] = ACTIONS(2460), - [anon_sym_const] = ACTIONS(2460), - [anon_sym_continue] = ACTIONS(2460), - [anon_sym_default] = ACTIONS(2460), - [anon_sym_enum] = ACTIONS(2460), - [anon_sym_fn] = ACTIONS(2460), - [anon_sym_for] = ACTIONS(2460), - [anon_sym_if] = ACTIONS(2460), - [anon_sym_impl] = ACTIONS(2460), - [anon_sym_let] = ACTIONS(2460), - [anon_sym_loop] = ACTIONS(2460), - [anon_sym_match] = ACTIONS(2460), - [anon_sym_mod] = ACTIONS(2460), - [anon_sym_pub] = ACTIONS(2460), - [anon_sym_return] = ACTIONS(2460), - [anon_sym_static] = ACTIONS(2460), - [anon_sym_struct] = ACTIONS(2460), - [anon_sym_trait] = ACTIONS(2460), - [anon_sym_type] = ACTIONS(2460), - [anon_sym_union] = ACTIONS(2460), - [anon_sym_unsafe] = ACTIONS(2460), - [anon_sym_use] = ACTIONS(2460), - [anon_sym_while] = ACTIONS(2460), - [anon_sym_extern] = ACTIONS(2460), - [anon_sym_yield] = ACTIONS(2460), - [anon_sym_move] = ACTIONS(2460), - [anon_sym_try] = ACTIONS(2460), - [sym_integer_literal] = ACTIONS(2458), - [aux_sym_string_literal_token1] = ACTIONS(2458), - [sym_char_literal] = ACTIONS(2458), - [anon_sym_true] = ACTIONS(2460), - [anon_sym_false] = ACTIONS(2460), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2460), - [sym_super] = ACTIONS(2460), - [sym_crate] = ACTIONS(2460), - [sym_metavariable] = ACTIONS(2458), - [sym__raw_string_literal_start] = ACTIONS(2458), - [sym_float_literal] = ACTIONS(2458), + [aux_sym_match_block_repeat1] = STATE(773), + [aux_sym_match_arm_repeat1] = STATE(780), + [sym_identifier] = ACTIONS(1621), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACK] = ACTIONS(1625), + [anon_sym_u8] = ACTIONS(1629), + [anon_sym_i8] = ACTIONS(1629), + [anon_sym_u16] = ACTIONS(1629), + [anon_sym_i16] = ACTIONS(1629), + [anon_sym_u32] = ACTIONS(1629), + [anon_sym_i32] = ACTIONS(1629), + [anon_sym_u64] = ACTIONS(1629), + [anon_sym_i64] = ACTIONS(1629), + [anon_sym_u128] = ACTIONS(1629), + [anon_sym_i128] = ACTIONS(1629), + [anon_sym_isize] = ACTIONS(1629), + [anon_sym_usize] = ACTIONS(1629), + [anon_sym_f32] = ACTIONS(1629), + [anon_sym_f64] = ACTIONS(1629), + [anon_sym_bool] = ACTIONS(1629), + [anon_sym_str] = ACTIONS(1629), + [anon_sym_char] = ACTIONS(1629), + [anon_sym_DASH] = ACTIONS(1631), + [anon_sym_AMP] = ACTIONS(1633), + [anon_sym_PIPE] = ACTIONS(1635), + [anon_sym_LT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1637), + [anon_sym_DOT_DOT] = ACTIONS(1639), + [anon_sym_COLON_COLON] = ACTIONS(1641), + [anon_sym_POUND] = ACTIONS(1643), + [anon_sym_const] = ACTIONS(1645), + [anon_sym_default] = ACTIONS(1647), + [anon_sym_union] = ACTIONS(1647), + [anon_sym_ref] = ACTIONS(1649), + [sym_mutable_specifier] = ACTIONS(1651), + [sym_integer_literal] = ACTIONS(1653), + [aux_sym_string_literal_token1] = ACTIONS(1655), + [sym_char_literal] = ACTIONS(1653), + [anon_sym_true] = ACTIONS(1657), + [anon_sym_false] = ACTIONS(1657), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1659), + [sym_super] = ACTIONS(1659), + [sym_crate] = ACTIONS(1659), + [sym_metavariable] = ACTIONS(1661), + [sym__raw_string_literal_start] = ACTIONS(1663), + [sym_float_literal] = ACTIONS(1653), }, [674] = { [sym_line_comment] = STATE(674), [sym_block_comment] = STATE(674), - [ts_builtin_sym_end] = ACTIONS(2462), - [sym_identifier] = ACTIONS(2464), - [anon_sym_SEMI] = ACTIONS(2462), - [anon_sym_macro_rules_BANG] = ACTIONS(2462), - [anon_sym_LPAREN] = ACTIONS(2462), - [anon_sym_LBRACK] = ACTIONS(2462), - [anon_sym_LBRACE] = ACTIONS(2462), - [anon_sym_RBRACE] = ACTIONS(2462), - [anon_sym_STAR] = ACTIONS(2462), - [anon_sym_u8] = ACTIONS(2464), - [anon_sym_i8] = ACTIONS(2464), - [anon_sym_u16] = ACTIONS(2464), - [anon_sym_i16] = ACTIONS(2464), - [anon_sym_u32] = ACTIONS(2464), - [anon_sym_i32] = ACTIONS(2464), - [anon_sym_u64] = ACTIONS(2464), - [anon_sym_i64] = ACTIONS(2464), - [anon_sym_u128] = ACTIONS(2464), - [anon_sym_i128] = ACTIONS(2464), - [anon_sym_isize] = ACTIONS(2464), - [anon_sym_usize] = ACTIONS(2464), - [anon_sym_f32] = ACTIONS(2464), - [anon_sym_f64] = ACTIONS(2464), - [anon_sym_bool] = ACTIONS(2464), - [anon_sym_str] = ACTIONS(2464), - [anon_sym_char] = ACTIONS(2464), - [anon_sym_DASH] = ACTIONS(2462), - [anon_sym_BANG] = ACTIONS(2462), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_PIPE] = ACTIONS(2462), - [anon_sym_LT] = ACTIONS(2462), - [anon_sym_DOT_DOT] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2462), - [anon_sym_POUND] = ACTIONS(2462), - [anon_sym_SQUOTE] = ACTIONS(2464), - [anon_sym_async] = ACTIONS(2464), - [anon_sym_break] = ACTIONS(2464), - [anon_sym_const] = ACTIONS(2464), - [anon_sym_continue] = ACTIONS(2464), - [anon_sym_default] = ACTIONS(2464), - [anon_sym_enum] = ACTIONS(2464), - [anon_sym_fn] = ACTIONS(2464), - [anon_sym_for] = ACTIONS(2464), - [anon_sym_if] = ACTIONS(2464), - [anon_sym_impl] = ACTIONS(2464), - [anon_sym_let] = ACTIONS(2464), - [anon_sym_loop] = ACTIONS(2464), - [anon_sym_match] = ACTIONS(2464), - [anon_sym_mod] = ACTIONS(2464), - [anon_sym_pub] = ACTIONS(2464), - [anon_sym_return] = ACTIONS(2464), - [anon_sym_static] = ACTIONS(2464), - [anon_sym_struct] = ACTIONS(2464), - [anon_sym_trait] = ACTIONS(2464), - [anon_sym_type] = ACTIONS(2464), - [anon_sym_union] = ACTIONS(2464), - [anon_sym_unsafe] = ACTIONS(2464), - [anon_sym_use] = ACTIONS(2464), - [anon_sym_while] = ACTIONS(2464), - [anon_sym_extern] = ACTIONS(2464), - [anon_sym_yield] = ACTIONS(2464), - [anon_sym_move] = ACTIONS(2464), - [anon_sym_try] = ACTIONS(2464), - [sym_integer_literal] = ACTIONS(2462), - [aux_sym_string_literal_token1] = ACTIONS(2462), - [sym_char_literal] = ACTIONS(2462), - [anon_sym_true] = ACTIONS(2464), - [anon_sym_false] = ACTIONS(2464), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2464), - [sym_super] = ACTIONS(2464), - [sym_crate] = ACTIONS(2464), - [sym_metavariable] = ACTIONS(2462), - [sym__raw_string_literal_start] = ACTIONS(2462), - [sym_float_literal] = ACTIONS(2462), + [ts_builtin_sym_end] = ACTIONS(2547), + [sym_identifier] = ACTIONS(2549), + [anon_sym_SEMI] = ACTIONS(2547), + [anon_sym_macro_rules_BANG] = ACTIONS(2547), + [anon_sym_LPAREN] = ACTIONS(2547), + [anon_sym_LBRACK] = ACTIONS(2547), + [anon_sym_LBRACE] = ACTIONS(2547), + [anon_sym_RBRACE] = ACTIONS(2547), + [anon_sym_macro] = ACTIONS(2549), + [anon_sym_STAR] = ACTIONS(2547), + [anon_sym_u8] = ACTIONS(2549), + [anon_sym_i8] = ACTIONS(2549), + [anon_sym_u16] = ACTIONS(2549), + [anon_sym_i16] = ACTIONS(2549), + [anon_sym_u32] = ACTIONS(2549), + [anon_sym_i32] = ACTIONS(2549), + [anon_sym_u64] = ACTIONS(2549), + [anon_sym_i64] = ACTIONS(2549), + [anon_sym_u128] = ACTIONS(2549), + [anon_sym_i128] = ACTIONS(2549), + [anon_sym_isize] = ACTIONS(2549), + [anon_sym_usize] = ACTIONS(2549), + [anon_sym_f32] = ACTIONS(2549), + [anon_sym_f64] = ACTIONS(2549), + [anon_sym_bool] = ACTIONS(2549), + [anon_sym_str] = ACTIONS(2549), + [anon_sym_char] = ACTIONS(2549), + [anon_sym_DASH] = ACTIONS(2547), + [anon_sym_BANG] = ACTIONS(2547), + [anon_sym_AMP] = ACTIONS(2547), + [anon_sym_PIPE] = ACTIONS(2547), + [anon_sym_LT] = ACTIONS(2547), + [anon_sym_DOT_DOT] = ACTIONS(2547), + [anon_sym_COLON_COLON] = ACTIONS(2547), + [anon_sym_POUND] = ACTIONS(2547), + [anon_sym_SQUOTE] = ACTIONS(2549), + [anon_sym_async] = ACTIONS(2549), + [anon_sym_break] = ACTIONS(2549), + [anon_sym_const] = ACTIONS(2549), + [anon_sym_continue] = ACTIONS(2549), + [anon_sym_default] = ACTIONS(2549), + [anon_sym_enum] = ACTIONS(2549), + [anon_sym_fn] = ACTIONS(2549), + [anon_sym_for] = ACTIONS(2549), + [anon_sym_if] = ACTIONS(2549), + [anon_sym_impl] = ACTIONS(2549), + [anon_sym_let] = ACTIONS(2549), + [anon_sym_loop] = ACTIONS(2549), + [anon_sym_match] = ACTIONS(2549), + [anon_sym_mod] = ACTIONS(2549), + [anon_sym_pub] = ACTIONS(2549), + [anon_sym_return] = ACTIONS(2549), + [anon_sym_static] = ACTIONS(2549), + [anon_sym_struct] = ACTIONS(2549), + [anon_sym_trait] = ACTIONS(2549), + [anon_sym_type] = ACTIONS(2549), + [anon_sym_union] = ACTIONS(2549), + [anon_sym_unsafe] = ACTIONS(2549), + [anon_sym_use] = ACTIONS(2549), + [anon_sym_while] = ACTIONS(2549), + [anon_sym_extern] = ACTIONS(2549), + [anon_sym_yield] = ACTIONS(2549), + [anon_sym_move] = ACTIONS(2549), + [anon_sym_try] = ACTIONS(2549), + [sym_integer_literal] = ACTIONS(2547), + [aux_sym_string_literal_token1] = ACTIONS(2547), + [sym_char_literal] = ACTIONS(2547), + [anon_sym_true] = ACTIONS(2549), + [anon_sym_false] = ACTIONS(2549), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2549), + [sym_super] = ACTIONS(2549), + [sym_crate] = ACTIONS(2549), + [sym_metavariable] = ACTIONS(2547), + [sym__raw_string_literal_start] = ACTIONS(2547), + [sym_float_literal] = ACTIONS(2547), }, [675] = { [sym_line_comment] = STATE(675), [sym_block_comment] = STATE(675), - [ts_builtin_sym_end] = ACTIONS(2466), - [sym_identifier] = ACTIONS(2468), - [anon_sym_SEMI] = ACTIONS(2466), - [anon_sym_macro_rules_BANG] = ACTIONS(2466), - [anon_sym_LPAREN] = ACTIONS(2466), - [anon_sym_LBRACK] = ACTIONS(2466), - [anon_sym_LBRACE] = ACTIONS(2466), - [anon_sym_RBRACE] = ACTIONS(2466), - [anon_sym_STAR] = ACTIONS(2466), - [anon_sym_u8] = ACTIONS(2468), - [anon_sym_i8] = ACTIONS(2468), - [anon_sym_u16] = ACTIONS(2468), - [anon_sym_i16] = ACTIONS(2468), - [anon_sym_u32] = ACTIONS(2468), - [anon_sym_i32] = ACTIONS(2468), - [anon_sym_u64] = ACTIONS(2468), - [anon_sym_i64] = ACTIONS(2468), - [anon_sym_u128] = ACTIONS(2468), - [anon_sym_i128] = ACTIONS(2468), - [anon_sym_isize] = ACTIONS(2468), - [anon_sym_usize] = ACTIONS(2468), - [anon_sym_f32] = ACTIONS(2468), - [anon_sym_f64] = ACTIONS(2468), - [anon_sym_bool] = ACTIONS(2468), - [anon_sym_str] = ACTIONS(2468), - [anon_sym_char] = ACTIONS(2468), - [anon_sym_DASH] = ACTIONS(2466), - [anon_sym_BANG] = ACTIONS(2466), - [anon_sym_AMP] = ACTIONS(2466), - [anon_sym_PIPE] = ACTIONS(2466), - [anon_sym_LT] = ACTIONS(2466), - [anon_sym_DOT_DOT] = ACTIONS(2466), - [anon_sym_COLON_COLON] = ACTIONS(2466), - [anon_sym_POUND] = ACTIONS(2466), - [anon_sym_SQUOTE] = ACTIONS(2468), - [anon_sym_async] = ACTIONS(2468), - [anon_sym_break] = ACTIONS(2468), - [anon_sym_const] = ACTIONS(2468), - [anon_sym_continue] = ACTIONS(2468), - [anon_sym_default] = ACTIONS(2468), - [anon_sym_enum] = ACTIONS(2468), - [anon_sym_fn] = ACTIONS(2468), - [anon_sym_for] = ACTIONS(2468), - [anon_sym_if] = ACTIONS(2468), - [anon_sym_impl] = ACTIONS(2468), - [anon_sym_let] = ACTIONS(2468), - [anon_sym_loop] = ACTIONS(2468), - [anon_sym_match] = ACTIONS(2468), - [anon_sym_mod] = ACTIONS(2468), - [anon_sym_pub] = ACTIONS(2468), - [anon_sym_return] = ACTIONS(2468), - [anon_sym_static] = ACTIONS(2468), - [anon_sym_struct] = ACTIONS(2468), - [anon_sym_trait] = ACTIONS(2468), - [anon_sym_type] = ACTIONS(2468), - [anon_sym_union] = ACTIONS(2468), - [anon_sym_unsafe] = ACTIONS(2468), - [anon_sym_use] = ACTIONS(2468), - [anon_sym_while] = ACTIONS(2468), - [anon_sym_extern] = ACTIONS(2468), - [anon_sym_yield] = ACTIONS(2468), - [anon_sym_move] = ACTIONS(2468), - [anon_sym_try] = ACTIONS(2468), - [sym_integer_literal] = ACTIONS(2466), - [aux_sym_string_literal_token1] = ACTIONS(2466), - [sym_char_literal] = ACTIONS(2466), - [anon_sym_true] = ACTIONS(2468), - [anon_sym_false] = ACTIONS(2468), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2468), - [sym_super] = ACTIONS(2468), - [sym_crate] = ACTIONS(2468), - [sym_metavariable] = ACTIONS(2466), - [sym__raw_string_literal_start] = ACTIONS(2466), - [sym_float_literal] = ACTIONS(2466), + [ts_builtin_sym_end] = ACTIONS(2551), + [sym_identifier] = ACTIONS(2553), + [anon_sym_SEMI] = ACTIONS(2551), + [anon_sym_macro_rules_BANG] = ACTIONS(2551), + [anon_sym_LPAREN] = ACTIONS(2551), + [anon_sym_LBRACK] = ACTIONS(2551), + [anon_sym_LBRACE] = ACTIONS(2551), + [anon_sym_RBRACE] = ACTIONS(2551), + [anon_sym_macro] = ACTIONS(2553), + [anon_sym_STAR] = ACTIONS(2551), + [anon_sym_u8] = ACTIONS(2553), + [anon_sym_i8] = ACTIONS(2553), + [anon_sym_u16] = ACTIONS(2553), + [anon_sym_i16] = ACTIONS(2553), + [anon_sym_u32] = ACTIONS(2553), + [anon_sym_i32] = ACTIONS(2553), + [anon_sym_u64] = ACTIONS(2553), + [anon_sym_i64] = ACTIONS(2553), + [anon_sym_u128] = ACTIONS(2553), + [anon_sym_i128] = ACTIONS(2553), + [anon_sym_isize] = ACTIONS(2553), + [anon_sym_usize] = ACTIONS(2553), + [anon_sym_f32] = ACTIONS(2553), + [anon_sym_f64] = ACTIONS(2553), + [anon_sym_bool] = ACTIONS(2553), + [anon_sym_str] = ACTIONS(2553), + [anon_sym_char] = ACTIONS(2553), + [anon_sym_DASH] = ACTIONS(2551), + [anon_sym_BANG] = ACTIONS(2551), + [anon_sym_AMP] = ACTIONS(2551), + [anon_sym_PIPE] = ACTIONS(2551), + [anon_sym_LT] = ACTIONS(2551), + [anon_sym_DOT_DOT] = ACTIONS(2551), + [anon_sym_COLON_COLON] = ACTIONS(2551), + [anon_sym_POUND] = ACTIONS(2551), + [anon_sym_SQUOTE] = ACTIONS(2553), + [anon_sym_async] = ACTIONS(2553), + [anon_sym_break] = ACTIONS(2553), + [anon_sym_const] = ACTIONS(2553), + [anon_sym_continue] = ACTIONS(2553), + [anon_sym_default] = ACTIONS(2553), + [anon_sym_enum] = ACTIONS(2553), + [anon_sym_fn] = ACTIONS(2553), + [anon_sym_for] = ACTIONS(2553), + [anon_sym_if] = ACTIONS(2553), + [anon_sym_impl] = ACTIONS(2553), + [anon_sym_let] = ACTIONS(2553), + [anon_sym_loop] = ACTIONS(2553), + [anon_sym_match] = ACTIONS(2553), + [anon_sym_mod] = ACTIONS(2553), + [anon_sym_pub] = ACTIONS(2553), + [anon_sym_return] = ACTIONS(2553), + [anon_sym_static] = ACTIONS(2553), + [anon_sym_struct] = ACTIONS(2553), + [anon_sym_trait] = ACTIONS(2553), + [anon_sym_type] = ACTIONS(2553), + [anon_sym_union] = ACTIONS(2553), + [anon_sym_unsafe] = ACTIONS(2553), + [anon_sym_use] = ACTIONS(2553), + [anon_sym_while] = ACTIONS(2553), + [anon_sym_extern] = ACTIONS(2553), + [anon_sym_yield] = ACTIONS(2553), + [anon_sym_move] = ACTIONS(2553), + [anon_sym_try] = ACTIONS(2553), + [sym_integer_literal] = ACTIONS(2551), + [aux_sym_string_literal_token1] = ACTIONS(2551), + [sym_char_literal] = ACTIONS(2551), + [anon_sym_true] = ACTIONS(2553), + [anon_sym_false] = ACTIONS(2553), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2553), + [sym_super] = ACTIONS(2553), + [sym_crate] = ACTIONS(2553), + [sym_metavariable] = ACTIONS(2551), + [sym__raw_string_literal_start] = ACTIONS(2551), + [sym_float_literal] = ACTIONS(2551), }, [676] = { + [sym_attribute_item] = STATE(1515), + [sym_inner_attribute_item] = STATE(1515), + [sym_bracketed_type] = STATE(3618), + [sym_generic_type] = STATE(3491), + [sym_generic_type_with_turbofish] = STATE(3218), + [sym_macro_invocation] = STATE(2994), + [sym_scoped_identifier] = STATE(2165), + [sym_scoped_type_identifier] = STATE(2786), + [sym_match_arm] = STATE(1505), + [sym_last_match_arm] = STATE(3503), + [sym_match_pattern] = STATE(3700), + [sym_const_block] = STATE(2994), + [sym__pattern] = STATE(3082), + [sym_tuple_pattern] = STATE(2994), + [sym_slice_pattern] = STATE(2994), + [sym_tuple_struct_pattern] = STATE(2994), + [sym_struct_pattern] = STATE(2994), + [sym_remaining_field_pattern] = STATE(2994), + [sym_mut_pattern] = STATE(2994), + [sym_range_pattern] = STATE(2994), + [sym_ref_pattern] = STATE(2994), + [sym_captured_pattern] = STATE(2994), + [sym_reference_pattern] = STATE(2994), + [sym_or_pattern] = STATE(2994), + [sym__literal_pattern] = STATE(2380), + [sym_negative_literal] = STATE(2383), + [sym_string_literal] = STATE(2383), + [sym_raw_string_literal] = STATE(2383), + [sym_boolean_literal] = STATE(2383), [sym_line_comment] = STATE(676), [sym_block_comment] = STATE(676), - [ts_builtin_sym_end] = ACTIONS(2470), - [sym_identifier] = ACTIONS(2472), - [anon_sym_SEMI] = ACTIONS(2470), - [anon_sym_macro_rules_BANG] = ACTIONS(2470), - [anon_sym_LPAREN] = ACTIONS(2470), - [anon_sym_LBRACK] = ACTIONS(2470), - [anon_sym_LBRACE] = ACTIONS(2470), - [anon_sym_RBRACE] = ACTIONS(2470), - [anon_sym_STAR] = ACTIONS(2470), - [anon_sym_u8] = ACTIONS(2472), - [anon_sym_i8] = ACTIONS(2472), - [anon_sym_u16] = ACTIONS(2472), - [anon_sym_i16] = ACTIONS(2472), - [anon_sym_u32] = ACTIONS(2472), - [anon_sym_i32] = ACTIONS(2472), - [anon_sym_u64] = ACTIONS(2472), - [anon_sym_i64] = ACTIONS(2472), - [anon_sym_u128] = ACTIONS(2472), - [anon_sym_i128] = ACTIONS(2472), - [anon_sym_isize] = ACTIONS(2472), - [anon_sym_usize] = ACTIONS(2472), - [anon_sym_f32] = ACTIONS(2472), - [anon_sym_f64] = ACTIONS(2472), - [anon_sym_bool] = ACTIONS(2472), - [anon_sym_str] = ACTIONS(2472), - [anon_sym_char] = ACTIONS(2472), - [anon_sym_DASH] = ACTIONS(2470), - [anon_sym_BANG] = ACTIONS(2470), - [anon_sym_AMP] = ACTIONS(2470), - [anon_sym_PIPE] = ACTIONS(2470), - [anon_sym_LT] = ACTIONS(2470), - [anon_sym_DOT_DOT] = ACTIONS(2470), - [anon_sym_COLON_COLON] = ACTIONS(2470), - [anon_sym_POUND] = ACTIONS(2470), - [anon_sym_SQUOTE] = ACTIONS(2472), - [anon_sym_async] = ACTIONS(2472), - [anon_sym_break] = ACTIONS(2472), - [anon_sym_const] = ACTIONS(2472), - [anon_sym_continue] = ACTIONS(2472), - [anon_sym_default] = ACTIONS(2472), - [anon_sym_enum] = ACTIONS(2472), - [anon_sym_fn] = ACTIONS(2472), - [anon_sym_for] = ACTIONS(2472), - [anon_sym_if] = ACTIONS(2472), - [anon_sym_impl] = ACTIONS(2472), - [anon_sym_let] = ACTIONS(2472), - [anon_sym_loop] = ACTIONS(2472), - [anon_sym_match] = ACTIONS(2472), - [anon_sym_mod] = ACTIONS(2472), - [anon_sym_pub] = ACTIONS(2472), - [anon_sym_return] = ACTIONS(2472), - [anon_sym_static] = ACTIONS(2472), - [anon_sym_struct] = ACTIONS(2472), - [anon_sym_trait] = ACTIONS(2472), - [anon_sym_type] = ACTIONS(2472), - [anon_sym_union] = ACTIONS(2472), - [anon_sym_unsafe] = ACTIONS(2472), - [anon_sym_use] = ACTIONS(2472), - [anon_sym_while] = ACTIONS(2472), - [anon_sym_extern] = ACTIONS(2472), - [anon_sym_yield] = ACTIONS(2472), - [anon_sym_move] = ACTIONS(2472), - [anon_sym_try] = ACTIONS(2472), - [sym_integer_literal] = ACTIONS(2470), - [aux_sym_string_literal_token1] = ACTIONS(2470), - [sym_char_literal] = ACTIONS(2470), - [anon_sym_true] = ACTIONS(2472), - [anon_sym_false] = ACTIONS(2472), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2472), - [sym_super] = ACTIONS(2472), - [sym_crate] = ACTIONS(2472), - [sym_metavariable] = ACTIONS(2470), - [sym__raw_string_literal_start] = ACTIONS(2470), - [sym_float_literal] = ACTIONS(2470), + [aux_sym_match_block_repeat1] = STATE(773), + [aux_sym_match_arm_repeat1] = STATE(780), + [sym_identifier] = ACTIONS(1621), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACK] = ACTIONS(1625), + [anon_sym_u8] = ACTIONS(1629), + [anon_sym_i8] = ACTIONS(1629), + [anon_sym_u16] = ACTIONS(1629), + [anon_sym_i16] = ACTIONS(1629), + [anon_sym_u32] = ACTIONS(1629), + [anon_sym_i32] = ACTIONS(1629), + [anon_sym_u64] = ACTIONS(1629), + [anon_sym_i64] = ACTIONS(1629), + [anon_sym_u128] = ACTIONS(1629), + [anon_sym_i128] = ACTIONS(1629), + [anon_sym_isize] = ACTIONS(1629), + [anon_sym_usize] = ACTIONS(1629), + [anon_sym_f32] = ACTIONS(1629), + [anon_sym_f64] = ACTIONS(1629), + [anon_sym_bool] = ACTIONS(1629), + [anon_sym_str] = ACTIONS(1629), + [anon_sym_char] = ACTIONS(1629), + [anon_sym_DASH] = ACTIONS(1631), + [anon_sym_AMP] = ACTIONS(1633), + [anon_sym_PIPE] = ACTIONS(1635), + [anon_sym_LT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1637), + [anon_sym_DOT_DOT] = ACTIONS(1639), + [anon_sym_COLON_COLON] = ACTIONS(1641), + [anon_sym_POUND] = ACTIONS(1643), + [anon_sym_const] = ACTIONS(1645), + [anon_sym_default] = ACTIONS(1647), + [anon_sym_union] = ACTIONS(1647), + [anon_sym_ref] = ACTIONS(1649), + [sym_mutable_specifier] = ACTIONS(1651), + [sym_integer_literal] = ACTIONS(1653), + [aux_sym_string_literal_token1] = ACTIONS(1655), + [sym_char_literal] = ACTIONS(1653), + [anon_sym_true] = ACTIONS(1657), + [anon_sym_false] = ACTIONS(1657), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1659), + [sym_super] = ACTIONS(1659), + [sym_crate] = ACTIONS(1659), + [sym_metavariable] = ACTIONS(1661), + [sym__raw_string_literal_start] = ACTIONS(1663), + [sym_float_literal] = ACTIONS(1653), }, [677] = { [sym_line_comment] = STATE(677), [sym_block_comment] = STATE(677), - [ts_builtin_sym_end] = ACTIONS(2474), - [sym_identifier] = ACTIONS(2476), - [anon_sym_SEMI] = ACTIONS(2474), - [anon_sym_macro_rules_BANG] = ACTIONS(2474), - [anon_sym_LPAREN] = ACTIONS(2474), - [anon_sym_LBRACK] = ACTIONS(2474), - [anon_sym_LBRACE] = ACTIONS(2474), - [anon_sym_RBRACE] = ACTIONS(2474), - [anon_sym_STAR] = ACTIONS(2474), - [anon_sym_u8] = ACTIONS(2476), - [anon_sym_i8] = ACTIONS(2476), - [anon_sym_u16] = ACTIONS(2476), - [anon_sym_i16] = ACTIONS(2476), - [anon_sym_u32] = ACTIONS(2476), - [anon_sym_i32] = ACTIONS(2476), - [anon_sym_u64] = ACTIONS(2476), - [anon_sym_i64] = ACTIONS(2476), - [anon_sym_u128] = ACTIONS(2476), - [anon_sym_i128] = ACTIONS(2476), - [anon_sym_isize] = ACTIONS(2476), - [anon_sym_usize] = ACTIONS(2476), - [anon_sym_f32] = ACTIONS(2476), - [anon_sym_f64] = ACTIONS(2476), - [anon_sym_bool] = ACTIONS(2476), - [anon_sym_str] = ACTIONS(2476), - [anon_sym_char] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2474), - [anon_sym_BANG] = ACTIONS(2474), - [anon_sym_AMP] = ACTIONS(2474), - [anon_sym_PIPE] = ACTIONS(2474), - [anon_sym_LT] = ACTIONS(2474), - [anon_sym_DOT_DOT] = ACTIONS(2474), - [anon_sym_COLON_COLON] = ACTIONS(2474), - [anon_sym_POUND] = ACTIONS(2474), - [anon_sym_SQUOTE] = ACTIONS(2476), - [anon_sym_async] = ACTIONS(2476), - [anon_sym_break] = ACTIONS(2476), - [anon_sym_const] = ACTIONS(2476), - [anon_sym_continue] = ACTIONS(2476), - [anon_sym_default] = ACTIONS(2476), - [anon_sym_enum] = ACTIONS(2476), - [anon_sym_fn] = ACTIONS(2476), - [anon_sym_for] = ACTIONS(2476), - [anon_sym_if] = ACTIONS(2476), - [anon_sym_impl] = ACTIONS(2476), - [anon_sym_let] = ACTIONS(2476), - [anon_sym_loop] = ACTIONS(2476), - [anon_sym_match] = ACTIONS(2476), - [anon_sym_mod] = ACTIONS(2476), - [anon_sym_pub] = ACTIONS(2476), - [anon_sym_return] = ACTIONS(2476), - [anon_sym_static] = ACTIONS(2476), - [anon_sym_struct] = ACTIONS(2476), - [anon_sym_trait] = ACTIONS(2476), - [anon_sym_type] = ACTIONS(2476), - [anon_sym_union] = ACTIONS(2476), - [anon_sym_unsafe] = ACTIONS(2476), - [anon_sym_use] = ACTIONS(2476), - [anon_sym_while] = ACTIONS(2476), - [anon_sym_extern] = ACTIONS(2476), - [anon_sym_yield] = ACTIONS(2476), - [anon_sym_move] = ACTIONS(2476), - [anon_sym_try] = ACTIONS(2476), - [sym_integer_literal] = ACTIONS(2474), - [aux_sym_string_literal_token1] = ACTIONS(2474), - [sym_char_literal] = ACTIONS(2474), - [anon_sym_true] = ACTIONS(2476), - [anon_sym_false] = ACTIONS(2476), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2476), - [sym_super] = ACTIONS(2476), - [sym_crate] = ACTIONS(2476), - [sym_metavariable] = ACTIONS(2474), - [sym__raw_string_literal_start] = ACTIONS(2474), - [sym_float_literal] = ACTIONS(2474), + [ts_builtin_sym_end] = ACTIONS(2555), + [sym_identifier] = ACTIONS(2557), + [anon_sym_SEMI] = ACTIONS(2555), + [anon_sym_macro_rules_BANG] = ACTIONS(2555), + [anon_sym_LPAREN] = ACTIONS(2555), + [anon_sym_LBRACK] = ACTIONS(2555), + [anon_sym_LBRACE] = ACTIONS(2555), + [anon_sym_RBRACE] = ACTIONS(2555), + [anon_sym_macro] = ACTIONS(2557), + [anon_sym_STAR] = ACTIONS(2555), + [anon_sym_u8] = ACTIONS(2557), + [anon_sym_i8] = ACTIONS(2557), + [anon_sym_u16] = ACTIONS(2557), + [anon_sym_i16] = ACTIONS(2557), + [anon_sym_u32] = ACTIONS(2557), + [anon_sym_i32] = ACTIONS(2557), + [anon_sym_u64] = ACTIONS(2557), + [anon_sym_i64] = ACTIONS(2557), + [anon_sym_u128] = ACTIONS(2557), + [anon_sym_i128] = ACTIONS(2557), + [anon_sym_isize] = ACTIONS(2557), + [anon_sym_usize] = ACTIONS(2557), + [anon_sym_f32] = ACTIONS(2557), + [anon_sym_f64] = ACTIONS(2557), + [anon_sym_bool] = ACTIONS(2557), + [anon_sym_str] = ACTIONS(2557), + [anon_sym_char] = ACTIONS(2557), + [anon_sym_DASH] = ACTIONS(2555), + [anon_sym_BANG] = ACTIONS(2555), + [anon_sym_AMP] = ACTIONS(2555), + [anon_sym_PIPE] = ACTIONS(2555), + [anon_sym_LT] = ACTIONS(2555), + [anon_sym_DOT_DOT] = ACTIONS(2555), + [anon_sym_COLON_COLON] = ACTIONS(2555), + [anon_sym_POUND] = ACTIONS(2555), + [anon_sym_SQUOTE] = ACTIONS(2557), + [anon_sym_async] = ACTIONS(2557), + [anon_sym_break] = ACTIONS(2557), + [anon_sym_const] = ACTIONS(2557), + [anon_sym_continue] = ACTIONS(2557), + [anon_sym_default] = ACTIONS(2557), + [anon_sym_enum] = ACTIONS(2557), + [anon_sym_fn] = ACTIONS(2557), + [anon_sym_for] = ACTIONS(2557), + [anon_sym_if] = ACTIONS(2557), + [anon_sym_impl] = ACTIONS(2557), + [anon_sym_let] = ACTIONS(2557), + [anon_sym_loop] = ACTIONS(2557), + [anon_sym_match] = ACTIONS(2557), + [anon_sym_mod] = ACTIONS(2557), + [anon_sym_pub] = ACTIONS(2557), + [anon_sym_return] = ACTIONS(2557), + [anon_sym_static] = ACTIONS(2557), + [anon_sym_struct] = ACTIONS(2557), + [anon_sym_trait] = ACTIONS(2557), + [anon_sym_type] = ACTIONS(2557), + [anon_sym_union] = ACTIONS(2557), + [anon_sym_unsafe] = ACTIONS(2557), + [anon_sym_use] = ACTIONS(2557), + [anon_sym_while] = ACTIONS(2557), + [anon_sym_extern] = ACTIONS(2557), + [anon_sym_yield] = ACTIONS(2557), + [anon_sym_move] = ACTIONS(2557), + [anon_sym_try] = ACTIONS(2557), + [sym_integer_literal] = ACTIONS(2555), + [aux_sym_string_literal_token1] = ACTIONS(2555), + [sym_char_literal] = ACTIONS(2555), + [anon_sym_true] = ACTIONS(2557), + [anon_sym_false] = ACTIONS(2557), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2557), + [sym_super] = ACTIONS(2557), + [sym_crate] = ACTIONS(2557), + [sym_metavariable] = ACTIONS(2555), + [sym__raw_string_literal_start] = ACTIONS(2555), + [sym_float_literal] = ACTIONS(2555), }, [678] = { [sym_line_comment] = STATE(678), [sym_block_comment] = STATE(678), - [ts_builtin_sym_end] = ACTIONS(2478), - [sym_identifier] = ACTIONS(2480), - [anon_sym_SEMI] = ACTIONS(2478), - [anon_sym_macro_rules_BANG] = ACTIONS(2478), - [anon_sym_LPAREN] = ACTIONS(2478), - [anon_sym_LBRACK] = ACTIONS(2478), - [anon_sym_LBRACE] = ACTIONS(2478), - [anon_sym_RBRACE] = ACTIONS(2478), - [anon_sym_STAR] = ACTIONS(2478), - [anon_sym_u8] = ACTIONS(2480), - [anon_sym_i8] = ACTIONS(2480), - [anon_sym_u16] = ACTIONS(2480), - [anon_sym_i16] = ACTIONS(2480), - [anon_sym_u32] = ACTIONS(2480), - [anon_sym_i32] = ACTIONS(2480), - [anon_sym_u64] = ACTIONS(2480), - [anon_sym_i64] = ACTIONS(2480), - [anon_sym_u128] = ACTIONS(2480), - [anon_sym_i128] = ACTIONS(2480), - [anon_sym_isize] = ACTIONS(2480), - [anon_sym_usize] = ACTIONS(2480), - [anon_sym_f32] = ACTIONS(2480), - [anon_sym_f64] = ACTIONS(2480), - [anon_sym_bool] = ACTIONS(2480), - [anon_sym_str] = ACTIONS(2480), - [anon_sym_char] = ACTIONS(2480), - [anon_sym_DASH] = ACTIONS(2478), - [anon_sym_BANG] = ACTIONS(2478), - [anon_sym_AMP] = ACTIONS(2478), - [anon_sym_PIPE] = ACTIONS(2478), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_DOT_DOT] = ACTIONS(2478), - [anon_sym_COLON_COLON] = ACTIONS(2478), - [anon_sym_POUND] = ACTIONS(2478), - [anon_sym_SQUOTE] = ACTIONS(2480), - [anon_sym_async] = ACTIONS(2480), - [anon_sym_break] = ACTIONS(2480), - [anon_sym_const] = ACTIONS(2480), - [anon_sym_continue] = ACTIONS(2480), - [anon_sym_default] = ACTIONS(2480), - [anon_sym_enum] = ACTIONS(2480), - [anon_sym_fn] = ACTIONS(2480), - [anon_sym_for] = ACTIONS(2480), - [anon_sym_if] = ACTIONS(2480), - [anon_sym_impl] = ACTIONS(2480), - [anon_sym_let] = ACTIONS(2480), - [anon_sym_loop] = ACTIONS(2480), - [anon_sym_match] = ACTIONS(2480), - [anon_sym_mod] = ACTIONS(2480), - [anon_sym_pub] = ACTIONS(2480), - [anon_sym_return] = ACTIONS(2480), - [anon_sym_static] = ACTIONS(2480), - [anon_sym_struct] = ACTIONS(2480), - [anon_sym_trait] = ACTIONS(2480), - [anon_sym_type] = ACTIONS(2480), - [anon_sym_union] = ACTIONS(2480), - [anon_sym_unsafe] = ACTIONS(2480), - [anon_sym_use] = ACTIONS(2480), - [anon_sym_while] = ACTIONS(2480), - [anon_sym_extern] = ACTIONS(2480), - [anon_sym_yield] = ACTIONS(2480), - [anon_sym_move] = ACTIONS(2480), - [anon_sym_try] = ACTIONS(2480), - [sym_integer_literal] = ACTIONS(2478), - [aux_sym_string_literal_token1] = ACTIONS(2478), - [sym_char_literal] = ACTIONS(2478), - [anon_sym_true] = ACTIONS(2480), - [anon_sym_false] = ACTIONS(2480), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2480), - [sym_super] = ACTIONS(2480), - [sym_crate] = ACTIONS(2480), - [sym_metavariable] = ACTIONS(2478), - [sym__raw_string_literal_start] = ACTIONS(2478), - [sym_float_literal] = ACTIONS(2478), + [ts_builtin_sym_end] = ACTIONS(2559), + [sym_identifier] = ACTIONS(2561), + [anon_sym_SEMI] = ACTIONS(2559), + [anon_sym_macro_rules_BANG] = ACTIONS(2559), + [anon_sym_LPAREN] = ACTIONS(2559), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2559), + [anon_sym_RBRACE] = ACTIONS(2559), + [anon_sym_macro] = ACTIONS(2561), + [anon_sym_STAR] = ACTIONS(2559), + [anon_sym_u8] = ACTIONS(2561), + [anon_sym_i8] = ACTIONS(2561), + [anon_sym_u16] = ACTIONS(2561), + [anon_sym_i16] = ACTIONS(2561), + [anon_sym_u32] = ACTIONS(2561), + [anon_sym_i32] = ACTIONS(2561), + [anon_sym_u64] = ACTIONS(2561), + [anon_sym_i64] = ACTIONS(2561), + [anon_sym_u128] = ACTIONS(2561), + [anon_sym_i128] = ACTIONS(2561), + [anon_sym_isize] = ACTIONS(2561), + [anon_sym_usize] = ACTIONS(2561), + [anon_sym_f32] = ACTIONS(2561), + [anon_sym_f64] = ACTIONS(2561), + [anon_sym_bool] = ACTIONS(2561), + [anon_sym_str] = ACTIONS(2561), + [anon_sym_char] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_BANG] = ACTIONS(2559), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_PIPE] = ACTIONS(2559), + [anon_sym_LT] = ACTIONS(2559), + [anon_sym_DOT_DOT] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2559), + [anon_sym_POUND] = ACTIONS(2559), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_async] = ACTIONS(2561), + [anon_sym_break] = ACTIONS(2561), + [anon_sym_const] = ACTIONS(2561), + [anon_sym_continue] = ACTIONS(2561), + [anon_sym_default] = ACTIONS(2561), + [anon_sym_enum] = ACTIONS(2561), + [anon_sym_fn] = ACTIONS(2561), + [anon_sym_for] = ACTIONS(2561), + [anon_sym_if] = ACTIONS(2561), + [anon_sym_impl] = ACTIONS(2561), + [anon_sym_let] = ACTIONS(2561), + [anon_sym_loop] = ACTIONS(2561), + [anon_sym_match] = ACTIONS(2561), + [anon_sym_mod] = ACTIONS(2561), + [anon_sym_pub] = ACTIONS(2561), + [anon_sym_return] = ACTIONS(2561), + [anon_sym_static] = ACTIONS(2561), + [anon_sym_struct] = ACTIONS(2561), + [anon_sym_trait] = ACTIONS(2561), + [anon_sym_type] = ACTIONS(2561), + [anon_sym_union] = ACTIONS(2561), + [anon_sym_unsafe] = ACTIONS(2561), + [anon_sym_use] = ACTIONS(2561), + [anon_sym_while] = ACTIONS(2561), + [anon_sym_extern] = ACTIONS(2561), + [anon_sym_yield] = ACTIONS(2561), + [anon_sym_move] = ACTIONS(2561), + [anon_sym_try] = ACTIONS(2561), + [sym_integer_literal] = ACTIONS(2559), + [aux_sym_string_literal_token1] = ACTIONS(2559), + [sym_char_literal] = ACTIONS(2559), + [anon_sym_true] = ACTIONS(2561), + [anon_sym_false] = ACTIONS(2561), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2561), + [sym_super] = ACTIONS(2561), + [sym_crate] = ACTIONS(2561), + [sym_metavariable] = ACTIONS(2559), + [sym__raw_string_literal_start] = ACTIONS(2559), + [sym_float_literal] = ACTIONS(2559), }, [679] = { [sym_line_comment] = STATE(679), [sym_block_comment] = STATE(679), - [ts_builtin_sym_end] = ACTIONS(2482), - [sym_identifier] = ACTIONS(2484), - [anon_sym_SEMI] = ACTIONS(2482), - [anon_sym_macro_rules_BANG] = ACTIONS(2482), - [anon_sym_LPAREN] = ACTIONS(2482), - [anon_sym_LBRACK] = ACTIONS(2482), - [anon_sym_LBRACE] = ACTIONS(2482), - [anon_sym_RBRACE] = ACTIONS(2482), - [anon_sym_STAR] = ACTIONS(2482), - [anon_sym_u8] = ACTIONS(2484), - [anon_sym_i8] = ACTIONS(2484), - [anon_sym_u16] = ACTIONS(2484), - [anon_sym_i16] = ACTIONS(2484), - [anon_sym_u32] = ACTIONS(2484), - [anon_sym_i32] = ACTIONS(2484), - [anon_sym_u64] = ACTIONS(2484), - [anon_sym_i64] = ACTIONS(2484), - [anon_sym_u128] = ACTIONS(2484), - [anon_sym_i128] = ACTIONS(2484), - [anon_sym_isize] = ACTIONS(2484), - [anon_sym_usize] = ACTIONS(2484), - [anon_sym_f32] = ACTIONS(2484), - [anon_sym_f64] = ACTIONS(2484), - [anon_sym_bool] = ACTIONS(2484), - [anon_sym_str] = ACTIONS(2484), - [anon_sym_char] = ACTIONS(2484), - [anon_sym_DASH] = ACTIONS(2482), - [anon_sym_BANG] = ACTIONS(2482), - [anon_sym_AMP] = ACTIONS(2482), - [anon_sym_PIPE] = ACTIONS(2482), - [anon_sym_LT] = ACTIONS(2482), - [anon_sym_DOT_DOT] = ACTIONS(2482), - [anon_sym_COLON_COLON] = ACTIONS(2482), - [anon_sym_POUND] = ACTIONS(2482), - [anon_sym_SQUOTE] = ACTIONS(2484), - [anon_sym_async] = ACTIONS(2484), - [anon_sym_break] = ACTIONS(2484), - [anon_sym_const] = ACTIONS(2484), - [anon_sym_continue] = ACTIONS(2484), - [anon_sym_default] = ACTIONS(2484), - [anon_sym_enum] = ACTIONS(2484), - [anon_sym_fn] = ACTIONS(2484), - [anon_sym_for] = ACTIONS(2484), - [anon_sym_if] = ACTIONS(2484), - [anon_sym_impl] = ACTIONS(2484), - [anon_sym_let] = ACTIONS(2484), - [anon_sym_loop] = ACTIONS(2484), - [anon_sym_match] = ACTIONS(2484), - [anon_sym_mod] = ACTIONS(2484), - [anon_sym_pub] = ACTIONS(2484), - [anon_sym_return] = ACTIONS(2484), - [anon_sym_static] = ACTIONS(2484), - [anon_sym_struct] = ACTIONS(2484), - [anon_sym_trait] = ACTIONS(2484), - [anon_sym_type] = ACTIONS(2484), - [anon_sym_union] = ACTIONS(2484), - [anon_sym_unsafe] = ACTIONS(2484), - [anon_sym_use] = ACTIONS(2484), - [anon_sym_while] = ACTIONS(2484), - [anon_sym_extern] = ACTIONS(2484), - [anon_sym_yield] = ACTIONS(2484), - [anon_sym_move] = ACTIONS(2484), - [anon_sym_try] = ACTIONS(2484), - [sym_integer_literal] = ACTIONS(2482), - [aux_sym_string_literal_token1] = ACTIONS(2482), - [sym_char_literal] = ACTIONS(2482), - [anon_sym_true] = ACTIONS(2484), - [anon_sym_false] = ACTIONS(2484), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2484), - [sym_super] = ACTIONS(2484), - [sym_crate] = ACTIONS(2484), - [sym_metavariable] = ACTIONS(2482), - [sym__raw_string_literal_start] = ACTIONS(2482), - [sym_float_literal] = ACTIONS(2482), + [ts_builtin_sym_end] = ACTIONS(2563), + [sym_identifier] = ACTIONS(2565), + [anon_sym_SEMI] = ACTIONS(2563), + [anon_sym_macro_rules_BANG] = ACTIONS(2563), + [anon_sym_LPAREN] = ACTIONS(2563), + [anon_sym_LBRACK] = ACTIONS(2563), + [anon_sym_LBRACE] = ACTIONS(2563), + [anon_sym_RBRACE] = ACTIONS(2563), + [anon_sym_macro] = ACTIONS(2565), + [anon_sym_STAR] = ACTIONS(2563), + [anon_sym_u8] = ACTIONS(2565), + [anon_sym_i8] = ACTIONS(2565), + [anon_sym_u16] = ACTIONS(2565), + [anon_sym_i16] = ACTIONS(2565), + [anon_sym_u32] = ACTIONS(2565), + [anon_sym_i32] = ACTIONS(2565), + [anon_sym_u64] = ACTIONS(2565), + [anon_sym_i64] = ACTIONS(2565), + [anon_sym_u128] = ACTIONS(2565), + [anon_sym_i128] = ACTIONS(2565), + [anon_sym_isize] = ACTIONS(2565), + [anon_sym_usize] = ACTIONS(2565), + [anon_sym_f32] = ACTIONS(2565), + [anon_sym_f64] = ACTIONS(2565), + [anon_sym_bool] = ACTIONS(2565), + [anon_sym_str] = ACTIONS(2565), + [anon_sym_char] = ACTIONS(2565), + [anon_sym_DASH] = ACTIONS(2563), + [anon_sym_BANG] = ACTIONS(2563), + [anon_sym_AMP] = ACTIONS(2563), + [anon_sym_PIPE] = ACTIONS(2563), + [anon_sym_LT] = ACTIONS(2563), + [anon_sym_DOT_DOT] = ACTIONS(2563), + [anon_sym_COLON_COLON] = ACTIONS(2563), + [anon_sym_POUND] = ACTIONS(2563), + [anon_sym_SQUOTE] = ACTIONS(2565), + [anon_sym_async] = ACTIONS(2565), + [anon_sym_break] = ACTIONS(2565), + [anon_sym_const] = ACTIONS(2565), + [anon_sym_continue] = ACTIONS(2565), + [anon_sym_default] = ACTIONS(2565), + [anon_sym_enum] = ACTIONS(2565), + [anon_sym_fn] = ACTIONS(2565), + [anon_sym_for] = ACTIONS(2565), + [anon_sym_if] = ACTIONS(2565), + [anon_sym_impl] = ACTIONS(2565), + [anon_sym_let] = ACTIONS(2565), + [anon_sym_loop] = ACTIONS(2565), + [anon_sym_match] = ACTIONS(2565), + [anon_sym_mod] = ACTIONS(2565), + [anon_sym_pub] = ACTIONS(2565), + [anon_sym_return] = ACTIONS(2565), + [anon_sym_static] = ACTIONS(2565), + [anon_sym_struct] = ACTIONS(2565), + [anon_sym_trait] = ACTIONS(2565), + [anon_sym_type] = ACTIONS(2565), + [anon_sym_union] = ACTIONS(2565), + [anon_sym_unsafe] = ACTIONS(2565), + [anon_sym_use] = ACTIONS(2565), + [anon_sym_while] = ACTIONS(2565), + [anon_sym_extern] = ACTIONS(2565), + [anon_sym_yield] = ACTIONS(2565), + [anon_sym_move] = ACTIONS(2565), + [anon_sym_try] = ACTIONS(2565), + [sym_integer_literal] = ACTIONS(2563), + [aux_sym_string_literal_token1] = ACTIONS(2563), + [sym_char_literal] = ACTIONS(2563), + [anon_sym_true] = ACTIONS(2565), + [anon_sym_false] = ACTIONS(2565), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2565), + [sym_super] = ACTIONS(2565), + [sym_crate] = ACTIONS(2565), + [sym_metavariable] = ACTIONS(2563), + [sym__raw_string_literal_start] = ACTIONS(2563), + [sym_float_literal] = ACTIONS(2563), }, [680] = { [sym_line_comment] = STATE(680), [sym_block_comment] = STATE(680), - [ts_builtin_sym_end] = ACTIONS(2486), - [sym_identifier] = ACTIONS(2488), - [anon_sym_SEMI] = ACTIONS(2486), - [anon_sym_macro_rules_BANG] = ACTIONS(2486), - [anon_sym_LPAREN] = ACTIONS(2486), - [anon_sym_LBRACK] = ACTIONS(2486), - [anon_sym_LBRACE] = ACTIONS(2486), - [anon_sym_RBRACE] = ACTIONS(2486), - [anon_sym_STAR] = ACTIONS(2486), - [anon_sym_u8] = ACTIONS(2488), - [anon_sym_i8] = ACTIONS(2488), - [anon_sym_u16] = ACTIONS(2488), - [anon_sym_i16] = ACTIONS(2488), - [anon_sym_u32] = ACTIONS(2488), - [anon_sym_i32] = ACTIONS(2488), - [anon_sym_u64] = ACTIONS(2488), - [anon_sym_i64] = ACTIONS(2488), - [anon_sym_u128] = ACTIONS(2488), - [anon_sym_i128] = ACTIONS(2488), - [anon_sym_isize] = ACTIONS(2488), - [anon_sym_usize] = ACTIONS(2488), - [anon_sym_f32] = ACTIONS(2488), - [anon_sym_f64] = ACTIONS(2488), - [anon_sym_bool] = ACTIONS(2488), - [anon_sym_str] = ACTIONS(2488), - [anon_sym_char] = ACTIONS(2488), - [anon_sym_DASH] = ACTIONS(2486), - [anon_sym_BANG] = ACTIONS(2486), - [anon_sym_AMP] = ACTIONS(2486), - [anon_sym_PIPE] = ACTIONS(2486), - [anon_sym_LT] = ACTIONS(2486), - [anon_sym_DOT_DOT] = ACTIONS(2486), - [anon_sym_COLON_COLON] = ACTIONS(2486), - [anon_sym_POUND] = ACTIONS(2486), - [anon_sym_SQUOTE] = ACTIONS(2488), - [anon_sym_async] = ACTIONS(2488), - [anon_sym_break] = ACTIONS(2488), - [anon_sym_const] = ACTIONS(2488), - [anon_sym_continue] = ACTIONS(2488), - [anon_sym_default] = ACTIONS(2488), - [anon_sym_enum] = ACTIONS(2488), - [anon_sym_fn] = ACTIONS(2488), - [anon_sym_for] = ACTIONS(2488), - [anon_sym_if] = ACTIONS(2488), - [anon_sym_impl] = ACTIONS(2488), - [anon_sym_let] = ACTIONS(2488), - [anon_sym_loop] = ACTIONS(2488), - [anon_sym_match] = ACTIONS(2488), - [anon_sym_mod] = ACTIONS(2488), - [anon_sym_pub] = ACTIONS(2488), - [anon_sym_return] = ACTIONS(2488), - [anon_sym_static] = ACTIONS(2488), - [anon_sym_struct] = ACTIONS(2488), - [anon_sym_trait] = ACTIONS(2488), - [anon_sym_type] = ACTIONS(2488), - [anon_sym_union] = ACTIONS(2488), - [anon_sym_unsafe] = ACTIONS(2488), - [anon_sym_use] = ACTIONS(2488), - [anon_sym_while] = ACTIONS(2488), - [anon_sym_extern] = ACTIONS(2488), - [anon_sym_yield] = ACTIONS(2488), - [anon_sym_move] = ACTIONS(2488), - [anon_sym_try] = ACTIONS(2488), - [sym_integer_literal] = ACTIONS(2486), - [aux_sym_string_literal_token1] = ACTIONS(2486), - [sym_char_literal] = ACTIONS(2486), - [anon_sym_true] = ACTIONS(2488), - [anon_sym_false] = ACTIONS(2488), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2488), - [sym_super] = ACTIONS(2488), - [sym_crate] = ACTIONS(2488), - [sym_metavariable] = ACTIONS(2486), - [sym__raw_string_literal_start] = ACTIONS(2486), - [sym_float_literal] = ACTIONS(2486), + [ts_builtin_sym_end] = ACTIONS(2567), + [sym_identifier] = ACTIONS(2569), + [anon_sym_SEMI] = ACTIONS(2567), + [anon_sym_macro_rules_BANG] = ACTIONS(2567), + [anon_sym_LPAREN] = ACTIONS(2567), + [anon_sym_LBRACK] = ACTIONS(2567), + [anon_sym_LBRACE] = ACTIONS(2567), + [anon_sym_RBRACE] = ACTIONS(2567), + [anon_sym_macro] = ACTIONS(2569), + [anon_sym_STAR] = ACTIONS(2567), + [anon_sym_u8] = ACTIONS(2569), + [anon_sym_i8] = ACTIONS(2569), + [anon_sym_u16] = ACTIONS(2569), + [anon_sym_i16] = ACTIONS(2569), + [anon_sym_u32] = ACTIONS(2569), + [anon_sym_i32] = ACTIONS(2569), + [anon_sym_u64] = ACTIONS(2569), + [anon_sym_i64] = ACTIONS(2569), + [anon_sym_u128] = ACTIONS(2569), + [anon_sym_i128] = ACTIONS(2569), + [anon_sym_isize] = ACTIONS(2569), + [anon_sym_usize] = ACTIONS(2569), + [anon_sym_f32] = ACTIONS(2569), + [anon_sym_f64] = ACTIONS(2569), + [anon_sym_bool] = ACTIONS(2569), + [anon_sym_str] = ACTIONS(2569), + [anon_sym_char] = ACTIONS(2569), + [anon_sym_DASH] = ACTIONS(2567), + [anon_sym_BANG] = ACTIONS(2567), + [anon_sym_AMP] = ACTIONS(2567), + [anon_sym_PIPE] = ACTIONS(2567), + [anon_sym_LT] = ACTIONS(2567), + [anon_sym_DOT_DOT] = ACTIONS(2567), + [anon_sym_COLON_COLON] = ACTIONS(2567), + [anon_sym_POUND] = ACTIONS(2567), + [anon_sym_SQUOTE] = ACTIONS(2569), + [anon_sym_async] = ACTIONS(2569), + [anon_sym_break] = ACTIONS(2569), + [anon_sym_const] = ACTIONS(2569), + [anon_sym_continue] = ACTIONS(2569), + [anon_sym_default] = ACTIONS(2569), + [anon_sym_enum] = ACTIONS(2569), + [anon_sym_fn] = ACTIONS(2569), + [anon_sym_for] = ACTIONS(2569), + [anon_sym_if] = ACTIONS(2569), + [anon_sym_impl] = ACTIONS(2569), + [anon_sym_let] = ACTIONS(2569), + [anon_sym_loop] = ACTIONS(2569), + [anon_sym_match] = ACTIONS(2569), + [anon_sym_mod] = ACTIONS(2569), + [anon_sym_pub] = ACTIONS(2569), + [anon_sym_return] = ACTIONS(2569), + [anon_sym_static] = ACTIONS(2569), + [anon_sym_struct] = ACTIONS(2569), + [anon_sym_trait] = ACTIONS(2569), + [anon_sym_type] = ACTIONS(2569), + [anon_sym_union] = ACTIONS(2569), + [anon_sym_unsafe] = ACTIONS(2569), + [anon_sym_use] = ACTIONS(2569), + [anon_sym_while] = ACTIONS(2569), + [anon_sym_extern] = ACTIONS(2569), + [anon_sym_yield] = ACTIONS(2569), + [anon_sym_move] = ACTIONS(2569), + [anon_sym_try] = ACTIONS(2569), + [sym_integer_literal] = ACTIONS(2567), + [aux_sym_string_literal_token1] = ACTIONS(2567), + [sym_char_literal] = ACTIONS(2567), + [anon_sym_true] = ACTIONS(2569), + [anon_sym_false] = ACTIONS(2569), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2569), + [sym_super] = ACTIONS(2569), + [sym_crate] = ACTIONS(2569), + [sym_metavariable] = ACTIONS(2567), + [sym__raw_string_literal_start] = ACTIONS(2567), + [sym_float_literal] = ACTIONS(2567), }, [681] = { [sym_line_comment] = STATE(681), [sym_block_comment] = STATE(681), - [ts_builtin_sym_end] = ACTIONS(2490), - [sym_identifier] = ACTIONS(2492), - [anon_sym_SEMI] = ACTIONS(2490), - [anon_sym_macro_rules_BANG] = ACTIONS(2490), - [anon_sym_LPAREN] = ACTIONS(2490), - [anon_sym_LBRACK] = ACTIONS(2490), - [anon_sym_LBRACE] = ACTIONS(2490), - [anon_sym_RBRACE] = ACTIONS(2490), - [anon_sym_STAR] = ACTIONS(2490), - [anon_sym_u8] = ACTIONS(2492), - [anon_sym_i8] = ACTIONS(2492), - [anon_sym_u16] = ACTIONS(2492), - [anon_sym_i16] = ACTIONS(2492), - [anon_sym_u32] = ACTIONS(2492), - [anon_sym_i32] = ACTIONS(2492), - [anon_sym_u64] = ACTIONS(2492), - [anon_sym_i64] = ACTIONS(2492), - [anon_sym_u128] = ACTIONS(2492), - [anon_sym_i128] = ACTIONS(2492), - [anon_sym_isize] = ACTIONS(2492), - [anon_sym_usize] = ACTIONS(2492), - [anon_sym_f32] = ACTIONS(2492), - [anon_sym_f64] = ACTIONS(2492), - [anon_sym_bool] = ACTIONS(2492), - [anon_sym_str] = ACTIONS(2492), - [anon_sym_char] = ACTIONS(2492), - [anon_sym_DASH] = ACTIONS(2490), - [anon_sym_BANG] = ACTIONS(2490), - [anon_sym_AMP] = ACTIONS(2490), - [anon_sym_PIPE] = ACTIONS(2490), - [anon_sym_LT] = ACTIONS(2490), - [anon_sym_DOT_DOT] = ACTIONS(2490), - [anon_sym_COLON_COLON] = ACTIONS(2490), - [anon_sym_POUND] = ACTIONS(2490), - [anon_sym_SQUOTE] = ACTIONS(2492), - [anon_sym_async] = ACTIONS(2492), - [anon_sym_break] = ACTIONS(2492), - [anon_sym_const] = ACTIONS(2492), - [anon_sym_continue] = ACTIONS(2492), - [anon_sym_default] = ACTIONS(2492), - [anon_sym_enum] = ACTIONS(2492), - [anon_sym_fn] = ACTIONS(2492), - [anon_sym_for] = ACTIONS(2492), - [anon_sym_if] = ACTIONS(2492), - [anon_sym_impl] = ACTIONS(2492), - [anon_sym_let] = ACTIONS(2492), - [anon_sym_loop] = ACTIONS(2492), - [anon_sym_match] = ACTIONS(2492), - [anon_sym_mod] = ACTIONS(2492), - [anon_sym_pub] = ACTIONS(2492), - [anon_sym_return] = ACTIONS(2492), - [anon_sym_static] = ACTIONS(2492), - [anon_sym_struct] = ACTIONS(2492), - [anon_sym_trait] = ACTIONS(2492), - [anon_sym_type] = ACTIONS(2492), - [anon_sym_union] = ACTIONS(2492), - [anon_sym_unsafe] = ACTIONS(2492), - [anon_sym_use] = ACTIONS(2492), - [anon_sym_while] = ACTIONS(2492), - [anon_sym_extern] = ACTIONS(2492), - [anon_sym_yield] = ACTIONS(2492), - [anon_sym_move] = ACTIONS(2492), - [anon_sym_try] = ACTIONS(2492), - [sym_integer_literal] = ACTIONS(2490), - [aux_sym_string_literal_token1] = ACTIONS(2490), - [sym_char_literal] = ACTIONS(2490), - [anon_sym_true] = ACTIONS(2492), - [anon_sym_false] = ACTIONS(2492), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2492), - [sym_super] = ACTIONS(2492), - [sym_crate] = ACTIONS(2492), - [sym_metavariable] = ACTIONS(2490), - [sym__raw_string_literal_start] = ACTIONS(2490), - [sym_float_literal] = ACTIONS(2490), + [ts_builtin_sym_end] = ACTIONS(2571), + [sym_identifier] = ACTIONS(2573), + [anon_sym_SEMI] = ACTIONS(2571), + [anon_sym_macro_rules_BANG] = ACTIONS(2571), + [anon_sym_LPAREN] = ACTIONS(2571), + [anon_sym_LBRACK] = ACTIONS(2571), + [anon_sym_LBRACE] = ACTIONS(2571), + [anon_sym_RBRACE] = ACTIONS(2571), + [anon_sym_macro] = ACTIONS(2573), + [anon_sym_STAR] = ACTIONS(2571), + [anon_sym_u8] = ACTIONS(2573), + [anon_sym_i8] = ACTIONS(2573), + [anon_sym_u16] = ACTIONS(2573), + [anon_sym_i16] = ACTIONS(2573), + [anon_sym_u32] = ACTIONS(2573), + [anon_sym_i32] = ACTIONS(2573), + [anon_sym_u64] = ACTIONS(2573), + [anon_sym_i64] = ACTIONS(2573), + [anon_sym_u128] = ACTIONS(2573), + [anon_sym_i128] = ACTIONS(2573), + [anon_sym_isize] = ACTIONS(2573), + [anon_sym_usize] = ACTIONS(2573), + [anon_sym_f32] = ACTIONS(2573), + [anon_sym_f64] = ACTIONS(2573), + [anon_sym_bool] = ACTIONS(2573), + [anon_sym_str] = ACTIONS(2573), + [anon_sym_char] = ACTIONS(2573), + [anon_sym_DASH] = ACTIONS(2571), + [anon_sym_BANG] = ACTIONS(2571), + [anon_sym_AMP] = ACTIONS(2571), + [anon_sym_PIPE] = ACTIONS(2571), + [anon_sym_LT] = ACTIONS(2571), + [anon_sym_DOT_DOT] = ACTIONS(2571), + [anon_sym_COLON_COLON] = ACTIONS(2571), + [anon_sym_POUND] = ACTIONS(2571), + [anon_sym_SQUOTE] = ACTIONS(2573), + [anon_sym_async] = ACTIONS(2573), + [anon_sym_break] = ACTIONS(2573), + [anon_sym_const] = ACTIONS(2573), + [anon_sym_continue] = ACTIONS(2573), + [anon_sym_default] = ACTIONS(2573), + [anon_sym_enum] = ACTIONS(2573), + [anon_sym_fn] = ACTIONS(2573), + [anon_sym_for] = ACTIONS(2573), + [anon_sym_if] = ACTIONS(2573), + [anon_sym_impl] = ACTIONS(2573), + [anon_sym_let] = ACTIONS(2573), + [anon_sym_loop] = ACTIONS(2573), + [anon_sym_match] = ACTIONS(2573), + [anon_sym_mod] = ACTIONS(2573), + [anon_sym_pub] = ACTIONS(2573), + [anon_sym_return] = ACTIONS(2573), + [anon_sym_static] = ACTIONS(2573), + [anon_sym_struct] = ACTIONS(2573), + [anon_sym_trait] = ACTIONS(2573), + [anon_sym_type] = ACTIONS(2573), + [anon_sym_union] = ACTIONS(2573), + [anon_sym_unsafe] = ACTIONS(2573), + [anon_sym_use] = ACTIONS(2573), + [anon_sym_while] = ACTIONS(2573), + [anon_sym_extern] = ACTIONS(2573), + [anon_sym_yield] = ACTIONS(2573), + [anon_sym_move] = ACTIONS(2573), + [anon_sym_try] = ACTIONS(2573), + [sym_integer_literal] = ACTIONS(2571), + [aux_sym_string_literal_token1] = ACTIONS(2571), + [sym_char_literal] = ACTIONS(2571), + [anon_sym_true] = ACTIONS(2573), + [anon_sym_false] = ACTIONS(2573), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2573), + [sym_super] = ACTIONS(2573), + [sym_crate] = ACTIONS(2573), + [sym_metavariable] = ACTIONS(2571), + [sym__raw_string_literal_start] = ACTIONS(2571), + [sym_float_literal] = ACTIONS(2571), }, [682] = { [sym_line_comment] = STATE(682), [sym_block_comment] = STATE(682), - [ts_builtin_sym_end] = ACTIONS(2494), - [sym_identifier] = ACTIONS(2496), - [anon_sym_SEMI] = ACTIONS(2494), - [anon_sym_macro_rules_BANG] = ACTIONS(2494), - [anon_sym_LPAREN] = ACTIONS(2494), - [anon_sym_LBRACK] = ACTIONS(2494), - [anon_sym_LBRACE] = ACTIONS(2494), - [anon_sym_RBRACE] = ACTIONS(2494), - [anon_sym_STAR] = ACTIONS(2494), - [anon_sym_u8] = ACTIONS(2496), - [anon_sym_i8] = ACTIONS(2496), - [anon_sym_u16] = ACTIONS(2496), - [anon_sym_i16] = ACTIONS(2496), - [anon_sym_u32] = ACTIONS(2496), - [anon_sym_i32] = ACTIONS(2496), - [anon_sym_u64] = ACTIONS(2496), - [anon_sym_i64] = ACTIONS(2496), - [anon_sym_u128] = ACTIONS(2496), - [anon_sym_i128] = ACTIONS(2496), - [anon_sym_isize] = ACTIONS(2496), - [anon_sym_usize] = ACTIONS(2496), - [anon_sym_f32] = ACTIONS(2496), - [anon_sym_f64] = ACTIONS(2496), - [anon_sym_bool] = ACTIONS(2496), - [anon_sym_str] = ACTIONS(2496), - [anon_sym_char] = ACTIONS(2496), - [anon_sym_DASH] = ACTIONS(2494), - [anon_sym_BANG] = ACTIONS(2494), - [anon_sym_AMP] = ACTIONS(2494), - [anon_sym_PIPE] = ACTIONS(2494), - [anon_sym_LT] = ACTIONS(2494), - [anon_sym_DOT_DOT] = ACTIONS(2494), - [anon_sym_COLON_COLON] = ACTIONS(2494), - [anon_sym_POUND] = ACTIONS(2494), - [anon_sym_SQUOTE] = ACTIONS(2496), - [anon_sym_async] = ACTIONS(2496), - [anon_sym_break] = ACTIONS(2496), - [anon_sym_const] = ACTIONS(2496), - [anon_sym_continue] = ACTIONS(2496), - [anon_sym_default] = ACTIONS(2496), - [anon_sym_enum] = ACTIONS(2496), - [anon_sym_fn] = ACTIONS(2496), - [anon_sym_for] = ACTIONS(2496), - [anon_sym_if] = ACTIONS(2496), - [anon_sym_impl] = ACTIONS(2496), - [anon_sym_let] = ACTIONS(2496), - [anon_sym_loop] = ACTIONS(2496), - [anon_sym_match] = ACTIONS(2496), - [anon_sym_mod] = ACTIONS(2496), - [anon_sym_pub] = ACTIONS(2496), - [anon_sym_return] = ACTIONS(2496), - [anon_sym_static] = ACTIONS(2496), - [anon_sym_struct] = ACTIONS(2496), - [anon_sym_trait] = ACTIONS(2496), - [anon_sym_type] = ACTIONS(2496), - [anon_sym_union] = ACTIONS(2496), - [anon_sym_unsafe] = ACTIONS(2496), - [anon_sym_use] = ACTIONS(2496), - [anon_sym_while] = ACTIONS(2496), - [anon_sym_extern] = ACTIONS(2496), - [anon_sym_yield] = ACTIONS(2496), - [anon_sym_move] = ACTIONS(2496), - [anon_sym_try] = ACTIONS(2496), - [sym_integer_literal] = ACTIONS(2494), - [aux_sym_string_literal_token1] = ACTIONS(2494), - [sym_char_literal] = ACTIONS(2494), - [anon_sym_true] = ACTIONS(2496), - [anon_sym_false] = ACTIONS(2496), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2496), - [sym_super] = ACTIONS(2496), - [sym_crate] = ACTIONS(2496), - [sym_metavariable] = ACTIONS(2494), - [sym__raw_string_literal_start] = ACTIONS(2494), - [sym_float_literal] = ACTIONS(2494), + [ts_builtin_sym_end] = ACTIONS(2575), + [sym_identifier] = ACTIONS(2577), + [anon_sym_SEMI] = ACTIONS(2575), + [anon_sym_macro_rules_BANG] = ACTIONS(2575), + [anon_sym_LPAREN] = ACTIONS(2575), + [anon_sym_LBRACK] = ACTIONS(2575), + [anon_sym_LBRACE] = ACTIONS(2575), + [anon_sym_RBRACE] = ACTIONS(2575), + [anon_sym_macro] = ACTIONS(2577), + [anon_sym_STAR] = ACTIONS(2575), + [anon_sym_u8] = ACTIONS(2577), + [anon_sym_i8] = ACTIONS(2577), + [anon_sym_u16] = ACTIONS(2577), + [anon_sym_i16] = ACTIONS(2577), + [anon_sym_u32] = ACTIONS(2577), + [anon_sym_i32] = ACTIONS(2577), + [anon_sym_u64] = ACTIONS(2577), + [anon_sym_i64] = ACTIONS(2577), + [anon_sym_u128] = ACTIONS(2577), + [anon_sym_i128] = ACTIONS(2577), + [anon_sym_isize] = ACTIONS(2577), + [anon_sym_usize] = ACTIONS(2577), + [anon_sym_f32] = ACTIONS(2577), + [anon_sym_f64] = ACTIONS(2577), + [anon_sym_bool] = ACTIONS(2577), + [anon_sym_str] = ACTIONS(2577), + [anon_sym_char] = ACTIONS(2577), + [anon_sym_DASH] = ACTIONS(2575), + [anon_sym_BANG] = ACTIONS(2575), + [anon_sym_AMP] = ACTIONS(2575), + [anon_sym_PIPE] = ACTIONS(2575), + [anon_sym_LT] = ACTIONS(2575), + [anon_sym_DOT_DOT] = ACTIONS(2575), + [anon_sym_COLON_COLON] = ACTIONS(2575), + [anon_sym_POUND] = ACTIONS(2575), + [anon_sym_SQUOTE] = ACTIONS(2577), + [anon_sym_async] = ACTIONS(2577), + [anon_sym_break] = ACTIONS(2577), + [anon_sym_const] = ACTIONS(2577), + [anon_sym_continue] = ACTIONS(2577), + [anon_sym_default] = ACTIONS(2577), + [anon_sym_enum] = ACTIONS(2577), + [anon_sym_fn] = ACTIONS(2577), + [anon_sym_for] = ACTIONS(2577), + [anon_sym_if] = ACTIONS(2577), + [anon_sym_impl] = ACTIONS(2577), + [anon_sym_let] = ACTIONS(2577), + [anon_sym_loop] = ACTIONS(2577), + [anon_sym_match] = ACTIONS(2577), + [anon_sym_mod] = ACTIONS(2577), + [anon_sym_pub] = ACTIONS(2577), + [anon_sym_return] = ACTIONS(2577), + [anon_sym_static] = ACTIONS(2577), + [anon_sym_struct] = ACTIONS(2577), + [anon_sym_trait] = ACTIONS(2577), + [anon_sym_type] = ACTIONS(2577), + [anon_sym_union] = ACTIONS(2577), + [anon_sym_unsafe] = ACTIONS(2577), + [anon_sym_use] = ACTIONS(2577), + [anon_sym_while] = ACTIONS(2577), + [anon_sym_extern] = ACTIONS(2577), + [anon_sym_yield] = ACTIONS(2577), + [anon_sym_move] = ACTIONS(2577), + [anon_sym_try] = ACTIONS(2577), + [sym_integer_literal] = ACTIONS(2575), + [aux_sym_string_literal_token1] = ACTIONS(2575), + [sym_char_literal] = ACTIONS(2575), + [anon_sym_true] = ACTIONS(2577), + [anon_sym_false] = ACTIONS(2577), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2577), + [sym_super] = ACTIONS(2577), + [sym_crate] = ACTIONS(2577), + [sym_metavariable] = ACTIONS(2575), + [sym__raw_string_literal_start] = ACTIONS(2575), + [sym_float_literal] = ACTIONS(2575), }, [683] = { [sym_line_comment] = STATE(683), [sym_block_comment] = STATE(683), - [ts_builtin_sym_end] = ACTIONS(2498), - [sym_identifier] = ACTIONS(2500), - [anon_sym_SEMI] = ACTIONS(2498), - [anon_sym_macro_rules_BANG] = ACTIONS(2498), - [anon_sym_LPAREN] = ACTIONS(2498), - [anon_sym_LBRACK] = ACTIONS(2498), - [anon_sym_LBRACE] = ACTIONS(2498), - [anon_sym_RBRACE] = ACTIONS(2498), - [anon_sym_STAR] = ACTIONS(2498), - [anon_sym_u8] = ACTIONS(2500), - [anon_sym_i8] = ACTIONS(2500), - [anon_sym_u16] = ACTIONS(2500), - [anon_sym_i16] = ACTIONS(2500), - [anon_sym_u32] = ACTIONS(2500), - [anon_sym_i32] = ACTIONS(2500), - [anon_sym_u64] = ACTIONS(2500), - [anon_sym_i64] = ACTIONS(2500), - [anon_sym_u128] = ACTIONS(2500), - [anon_sym_i128] = ACTIONS(2500), - [anon_sym_isize] = ACTIONS(2500), - [anon_sym_usize] = ACTIONS(2500), - [anon_sym_f32] = ACTIONS(2500), - [anon_sym_f64] = ACTIONS(2500), - [anon_sym_bool] = ACTIONS(2500), - [anon_sym_str] = ACTIONS(2500), - [anon_sym_char] = ACTIONS(2500), - [anon_sym_DASH] = ACTIONS(2498), - [anon_sym_BANG] = ACTIONS(2498), - [anon_sym_AMP] = ACTIONS(2498), - [anon_sym_PIPE] = ACTIONS(2498), - [anon_sym_LT] = ACTIONS(2498), - [anon_sym_DOT_DOT] = ACTIONS(2498), - [anon_sym_COLON_COLON] = ACTIONS(2498), - [anon_sym_POUND] = ACTIONS(2498), - [anon_sym_SQUOTE] = ACTIONS(2500), - [anon_sym_async] = ACTIONS(2500), - [anon_sym_break] = ACTIONS(2500), - [anon_sym_const] = ACTIONS(2500), - [anon_sym_continue] = ACTIONS(2500), - [anon_sym_default] = ACTIONS(2500), - [anon_sym_enum] = ACTIONS(2500), - [anon_sym_fn] = ACTIONS(2500), - [anon_sym_for] = ACTIONS(2500), - [anon_sym_if] = ACTIONS(2500), - [anon_sym_impl] = ACTIONS(2500), - [anon_sym_let] = ACTIONS(2500), - [anon_sym_loop] = ACTIONS(2500), - [anon_sym_match] = ACTIONS(2500), - [anon_sym_mod] = ACTIONS(2500), - [anon_sym_pub] = ACTIONS(2500), - [anon_sym_return] = ACTIONS(2500), - [anon_sym_static] = ACTIONS(2500), - [anon_sym_struct] = ACTIONS(2500), - [anon_sym_trait] = ACTIONS(2500), - [anon_sym_type] = ACTIONS(2500), - [anon_sym_union] = ACTIONS(2500), - [anon_sym_unsafe] = ACTIONS(2500), - [anon_sym_use] = ACTIONS(2500), - [anon_sym_while] = ACTIONS(2500), - [anon_sym_extern] = ACTIONS(2500), - [anon_sym_yield] = ACTIONS(2500), - [anon_sym_move] = ACTIONS(2500), - [anon_sym_try] = ACTIONS(2500), - [sym_integer_literal] = ACTIONS(2498), - [aux_sym_string_literal_token1] = ACTIONS(2498), - [sym_char_literal] = ACTIONS(2498), - [anon_sym_true] = ACTIONS(2500), - [anon_sym_false] = ACTIONS(2500), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2500), - [sym_super] = ACTIONS(2500), - [sym_crate] = ACTIONS(2500), - [sym_metavariable] = ACTIONS(2498), - [sym__raw_string_literal_start] = ACTIONS(2498), - [sym_float_literal] = ACTIONS(2498), + [ts_builtin_sym_end] = ACTIONS(2579), + [sym_identifier] = ACTIONS(2581), + [anon_sym_SEMI] = ACTIONS(2579), + [anon_sym_macro_rules_BANG] = ACTIONS(2579), + [anon_sym_LPAREN] = ACTIONS(2579), + [anon_sym_LBRACK] = ACTIONS(2579), + [anon_sym_LBRACE] = ACTIONS(2579), + [anon_sym_RBRACE] = ACTIONS(2579), + [anon_sym_macro] = ACTIONS(2581), + [anon_sym_STAR] = ACTIONS(2579), + [anon_sym_u8] = ACTIONS(2581), + [anon_sym_i8] = ACTIONS(2581), + [anon_sym_u16] = ACTIONS(2581), + [anon_sym_i16] = ACTIONS(2581), + [anon_sym_u32] = ACTIONS(2581), + [anon_sym_i32] = ACTIONS(2581), + [anon_sym_u64] = ACTIONS(2581), + [anon_sym_i64] = ACTIONS(2581), + [anon_sym_u128] = ACTIONS(2581), + [anon_sym_i128] = ACTIONS(2581), + [anon_sym_isize] = ACTIONS(2581), + [anon_sym_usize] = ACTIONS(2581), + [anon_sym_f32] = ACTIONS(2581), + [anon_sym_f64] = ACTIONS(2581), + [anon_sym_bool] = ACTIONS(2581), + [anon_sym_str] = ACTIONS(2581), + [anon_sym_char] = ACTIONS(2581), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_BANG] = ACTIONS(2579), + [anon_sym_AMP] = ACTIONS(2579), + [anon_sym_PIPE] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2579), + [anon_sym_DOT_DOT] = ACTIONS(2579), + [anon_sym_COLON_COLON] = ACTIONS(2579), + [anon_sym_POUND] = ACTIONS(2579), + [anon_sym_SQUOTE] = ACTIONS(2581), + [anon_sym_async] = ACTIONS(2581), + [anon_sym_break] = ACTIONS(2581), + [anon_sym_const] = ACTIONS(2581), + [anon_sym_continue] = ACTIONS(2581), + [anon_sym_default] = ACTIONS(2581), + [anon_sym_enum] = ACTIONS(2581), + [anon_sym_fn] = ACTIONS(2581), + [anon_sym_for] = ACTIONS(2581), + [anon_sym_if] = ACTIONS(2581), + [anon_sym_impl] = ACTIONS(2581), + [anon_sym_let] = ACTIONS(2581), + [anon_sym_loop] = ACTIONS(2581), + [anon_sym_match] = ACTIONS(2581), + [anon_sym_mod] = ACTIONS(2581), + [anon_sym_pub] = ACTIONS(2581), + [anon_sym_return] = ACTIONS(2581), + [anon_sym_static] = ACTIONS(2581), + [anon_sym_struct] = ACTIONS(2581), + [anon_sym_trait] = ACTIONS(2581), + [anon_sym_type] = ACTIONS(2581), + [anon_sym_union] = ACTIONS(2581), + [anon_sym_unsafe] = ACTIONS(2581), + [anon_sym_use] = ACTIONS(2581), + [anon_sym_while] = ACTIONS(2581), + [anon_sym_extern] = ACTIONS(2581), + [anon_sym_yield] = ACTIONS(2581), + [anon_sym_move] = ACTIONS(2581), + [anon_sym_try] = ACTIONS(2581), + [sym_integer_literal] = ACTIONS(2579), + [aux_sym_string_literal_token1] = ACTIONS(2579), + [sym_char_literal] = ACTIONS(2579), + [anon_sym_true] = ACTIONS(2581), + [anon_sym_false] = ACTIONS(2581), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2581), + [sym_super] = ACTIONS(2581), + [sym_crate] = ACTIONS(2581), + [sym_metavariable] = ACTIONS(2579), + [sym__raw_string_literal_start] = ACTIONS(2579), + [sym_float_literal] = ACTIONS(2579), }, [684] = { [sym_line_comment] = STATE(684), [sym_block_comment] = STATE(684), - [ts_builtin_sym_end] = ACTIONS(2502), - [sym_identifier] = ACTIONS(2504), - [anon_sym_SEMI] = ACTIONS(2502), - [anon_sym_macro_rules_BANG] = ACTIONS(2502), - [anon_sym_LPAREN] = ACTIONS(2502), - [anon_sym_LBRACK] = ACTIONS(2502), - [anon_sym_LBRACE] = ACTIONS(2502), - [anon_sym_RBRACE] = ACTIONS(2502), - [anon_sym_STAR] = ACTIONS(2502), - [anon_sym_u8] = ACTIONS(2504), - [anon_sym_i8] = ACTIONS(2504), - [anon_sym_u16] = ACTIONS(2504), - [anon_sym_i16] = ACTIONS(2504), - [anon_sym_u32] = ACTIONS(2504), - [anon_sym_i32] = ACTIONS(2504), - [anon_sym_u64] = ACTIONS(2504), - [anon_sym_i64] = ACTIONS(2504), - [anon_sym_u128] = ACTIONS(2504), - [anon_sym_i128] = ACTIONS(2504), - [anon_sym_isize] = ACTIONS(2504), - [anon_sym_usize] = ACTIONS(2504), - [anon_sym_f32] = ACTIONS(2504), - [anon_sym_f64] = ACTIONS(2504), - [anon_sym_bool] = ACTIONS(2504), - [anon_sym_str] = ACTIONS(2504), - [anon_sym_char] = ACTIONS(2504), - [anon_sym_DASH] = ACTIONS(2502), - [anon_sym_BANG] = ACTIONS(2502), - [anon_sym_AMP] = ACTIONS(2502), - [anon_sym_PIPE] = ACTIONS(2502), - [anon_sym_LT] = ACTIONS(2502), - [anon_sym_DOT_DOT] = ACTIONS(2502), - [anon_sym_COLON_COLON] = ACTIONS(2502), - [anon_sym_POUND] = ACTIONS(2502), - [anon_sym_SQUOTE] = ACTIONS(2504), - [anon_sym_async] = ACTIONS(2504), - [anon_sym_break] = ACTIONS(2504), - [anon_sym_const] = ACTIONS(2504), - [anon_sym_continue] = ACTIONS(2504), - [anon_sym_default] = ACTIONS(2504), - [anon_sym_enum] = ACTIONS(2504), - [anon_sym_fn] = ACTIONS(2504), - [anon_sym_for] = ACTIONS(2504), - [anon_sym_if] = ACTIONS(2504), - [anon_sym_impl] = ACTIONS(2504), - [anon_sym_let] = ACTIONS(2504), - [anon_sym_loop] = ACTIONS(2504), - [anon_sym_match] = ACTIONS(2504), - [anon_sym_mod] = ACTIONS(2504), - [anon_sym_pub] = ACTIONS(2504), - [anon_sym_return] = ACTIONS(2504), - [anon_sym_static] = ACTIONS(2504), - [anon_sym_struct] = ACTIONS(2504), - [anon_sym_trait] = ACTIONS(2504), - [anon_sym_type] = ACTIONS(2504), - [anon_sym_union] = ACTIONS(2504), - [anon_sym_unsafe] = ACTIONS(2504), - [anon_sym_use] = ACTIONS(2504), - [anon_sym_while] = ACTIONS(2504), - [anon_sym_extern] = ACTIONS(2504), - [anon_sym_yield] = ACTIONS(2504), - [anon_sym_move] = ACTIONS(2504), - [anon_sym_try] = ACTIONS(2504), - [sym_integer_literal] = ACTIONS(2502), - [aux_sym_string_literal_token1] = ACTIONS(2502), - [sym_char_literal] = ACTIONS(2502), - [anon_sym_true] = ACTIONS(2504), - [anon_sym_false] = ACTIONS(2504), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2504), - [sym_super] = ACTIONS(2504), - [sym_crate] = ACTIONS(2504), - [sym_metavariable] = ACTIONS(2502), - [sym__raw_string_literal_start] = ACTIONS(2502), - [sym_float_literal] = ACTIONS(2502), + [ts_builtin_sym_end] = ACTIONS(2583), + [sym_identifier] = ACTIONS(2585), + [anon_sym_SEMI] = ACTIONS(2583), + [anon_sym_macro_rules_BANG] = ACTIONS(2583), + [anon_sym_LPAREN] = ACTIONS(2583), + [anon_sym_LBRACK] = ACTIONS(2583), + [anon_sym_LBRACE] = ACTIONS(2583), + [anon_sym_RBRACE] = ACTIONS(2583), + [anon_sym_macro] = ACTIONS(2585), + [anon_sym_STAR] = ACTIONS(2583), + [anon_sym_u8] = ACTIONS(2585), + [anon_sym_i8] = ACTIONS(2585), + [anon_sym_u16] = ACTIONS(2585), + [anon_sym_i16] = ACTIONS(2585), + [anon_sym_u32] = ACTIONS(2585), + [anon_sym_i32] = ACTIONS(2585), + [anon_sym_u64] = ACTIONS(2585), + [anon_sym_i64] = ACTIONS(2585), + [anon_sym_u128] = ACTIONS(2585), + [anon_sym_i128] = ACTIONS(2585), + [anon_sym_isize] = ACTIONS(2585), + [anon_sym_usize] = ACTIONS(2585), + [anon_sym_f32] = ACTIONS(2585), + [anon_sym_f64] = ACTIONS(2585), + [anon_sym_bool] = ACTIONS(2585), + [anon_sym_str] = ACTIONS(2585), + [anon_sym_char] = ACTIONS(2585), + [anon_sym_DASH] = ACTIONS(2583), + [anon_sym_BANG] = ACTIONS(2583), + [anon_sym_AMP] = ACTIONS(2583), + [anon_sym_PIPE] = ACTIONS(2583), + [anon_sym_LT] = ACTIONS(2583), + [anon_sym_DOT_DOT] = ACTIONS(2583), + [anon_sym_COLON_COLON] = ACTIONS(2583), + [anon_sym_POUND] = ACTIONS(2583), + [anon_sym_SQUOTE] = ACTIONS(2585), + [anon_sym_async] = ACTIONS(2585), + [anon_sym_break] = ACTIONS(2585), + [anon_sym_const] = ACTIONS(2585), + [anon_sym_continue] = ACTIONS(2585), + [anon_sym_default] = ACTIONS(2585), + [anon_sym_enum] = ACTIONS(2585), + [anon_sym_fn] = ACTIONS(2585), + [anon_sym_for] = ACTIONS(2585), + [anon_sym_if] = ACTIONS(2585), + [anon_sym_impl] = ACTIONS(2585), + [anon_sym_let] = ACTIONS(2585), + [anon_sym_loop] = ACTIONS(2585), + [anon_sym_match] = ACTIONS(2585), + [anon_sym_mod] = ACTIONS(2585), + [anon_sym_pub] = ACTIONS(2585), + [anon_sym_return] = ACTIONS(2585), + [anon_sym_static] = ACTIONS(2585), + [anon_sym_struct] = ACTIONS(2585), + [anon_sym_trait] = ACTIONS(2585), + [anon_sym_type] = ACTIONS(2585), + [anon_sym_union] = ACTIONS(2585), + [anon_sym_unsafe] = ACTIONS(2585), + [anon_sym_use] = ACTIONS(2585), + [anon_sym_while] = ACTIONS(2585), + [anon_sym_extern] = ACTIONS(2585), + [anon_sym_yield] = ACTIONS(2585), + [anon_sym_move] = ACTIONS(2585), + [anon_sym_try] = ACTIONS(2585), + [sym_integer_literal] = ACTIONS(2583), + [aux_sym_string_literal_token1] = ACTIONS(2583), + [sym_char_literal] = ACTIONS(2583), + [anon_sym_true] = ACTIONS(2585), + [anon_sym_false] = ACTIONS(2585), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2585), + [sym_super] = ACTIONS(2585), + [sym_crate] = ACTIONS(2585), + [sym_metavariable] = ACTIONS(2583), + [sym__raw_string_literal_start] = ACTIONS(2583), + [sym_float_literal] = ACTIONS(2583), }, [685] = { [sym_line_comment] = STATE(685), [sym_block_comment] = STATE(685), - [ts_builtin_sym_end] = ACTIONS(2506), - [sym_identifier] = ACTIONS(2508), - [anon_sym_SEMI] = ACTIONS(2506), - [anon_sym_macro_rules_BANG] = ACTIONS(2506), - [anon_sym_LPAREN] = ACTIONS(2506), - [anon_sym_LBRACK] = ACTIONS(2506), - [anon_sym_LBRACE] = ACTIONS(2506), - [anon_sym_RBRACE] = ACTIONS(2506), - [anon_sym_STAR] = ACTIONS(2506), - [anon_sym_u8] = ACTIONS(2508), - [anon_sym_i8] = ACTIONS(2508), - [anon_sym_u16] = ACTIONS(2508), - [anon_sym_i16] = ACTIONS(2508), - [anon_sym_u32] = ACTIONS(2508), - [anon_sym_i32] = ACTIONS(2508), - [anon_sym_u64] = ACTIONS(2508), - [anon_sym_i64] = ACTIONS(2508), - [anon_sym_u128] = ACTIONS(2508), - [anon_sym_i128] = ACTIONS(2508), - [anon_sym_isize] = ACTIONS(2508), - [anon_sym_usize] = ACTIONS(2508), - [anon_sym_f32] = ACTIONS(2508), - [anon_sym_f64] = ACTIONS(2508), - [anon_sym_bool] = ACTIONS(2508), - [anon_sym_str] = ACTIONS(2508), - [anon_sym_char] = ACTIONS(2508), - [anon_sym_DASH] = ACTIONS(2506), - [anon_sym_BANG] = ACTIONS(2506), - [anon_sym_AMP] = ACTIONS(2506), - [anon_sym_PIPE] = ACTIONS(2506), - [anon_sym_LT] = ACTIONS(2506), - [anon_sym_DOT_DOT] = ACTIONS(2506), - [anon_sym_COLON_COLON] = ACTIONS(2506), - [anon_sym_POUND] = ACTIONS(2506), - [anon_sym_SQUOTE] = ACTIONS(2508), - [anon_sym_async] = ACTIONS(2508), - [anon_sym_break] = ACTIONS(2508), - [anon_sym_const] = ACTIONS(2508), - [anon_sym_continue] = ACTIONS(2508), - [anon_sym_default] = ACTIONS(2508), - [anon_sym_enum] = ACTIONS(2508), - [anon_sym_fn] = ACTIONS(2508), - [anon_sym_for] = ACTIONS(2508), - [anon_sym_if] = ACTIONS(2508), - [anon_sym_impl] = ACTIONS(2508), - [anon_sym_let] = ACTIONS(2508), - [anon_sym_loop] = ACTIONS(2508), - [anon_sym_match] = ACTIONS(2508), - [anon_sym_mod] = ACTIONS(2508), - [anon_sym_pub] = ACTIONS(2508), - [anon_sym_return] = ACTIONS(2508), - [anon_sym_static] = ACTIONS(2508), - [anon_sym_struct] = ACTIONS(2508), - [anon_sym_trait] = ACTIONS(2508), - [anon_sym_type] = ACTIONS(2508), - [anon_sym_union] = ACTIONS(2508), - [anon_sym_unsafe] = ACTIONS(2508), - [anon_sym_use] = ACTIONS(2508), - [anon_sym_while] = ACTIONS(2508), - [anon_sym_extern] = ACTIONS(2508), - [anon_sym_yield] = ACTIONS(2508), - [anon_sym_move] = ACTIONS(2508), - [anon_sym_try] = ACTIONS(2508), - [sym_integer_literal] = ACTIONS(2506), - [aux_sym_string_literal_token1] = ACTIONS(2506), - [sym_char_literal] = ACTIONS(2506), - [anon_sym_true] = ACTIONS(2508), - [anon_sym_false] = ACTIONS(2508), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2508), - [sym_super] = ACTIONS(2508), - [sym_crate] = ACTIONS(2508), - [sym_metavariable] = ACTIONS(2506), - [sym__raw_string_literal_start] = ACTIONS(2506), - [sym_float_literal] = ACTIONS(2506), + [ts_builtin_sym_end] = ACTIONS(2587), + [sym_identifier] = ACTIONS(2589), + [anon_sym_SEMI] = ACTIONS(2587), + [anon_sym_macro_rules_BANG] = ACTIONS(2587), + [anon_sym_LPAREN] = ACTIONS(2587), + [anon_sym_LBRACK] = ACTIONS(2587), + [anon_sym_LBRACE] = ACTIONS(2587), + [anon_sym_RBRACE] = ACTIONS(2587), + [anon_sym_macro] = ACTIONS(2589), + [anon_sym_STAR] = ACTIONS(2587), + [anon_sym_u8] = ACTIONS(2589), + [anon_sym_i8] = ACTIONS(2589), + [anon_sym_u16] = ACTIONS(2589), + [anon_sym_i16] = ACTIONS(2589), + [anon_sym_u32] = ACTIONS(2589), + [anon_sym_i32] = ACTIONS(2589), + [anon_sym_u64] = ACTIONS(2589), + [anon_sym_i64] = ACTIONS(2589), + [anon_sym_u128] = ACTIONS(2589), + [anon_sym_i128] = ACTIONS(2589), + [anon_sym_isize] = ACTIONS(2589), + [anon_sym_usize] = ACTIONS(2589), + [anon_sym_f32] = ACTIONS(2589), + [anon_sym_f64] = ACTIONS(2589), + [anon_sym_bool] = ACTIONS(2589), + [anon_sym_str] = ACTIONS(2589), + [anon_sym_char] = ACTIONS(2589), + [anon_sym_DASH] = ACTIONS(2587), + [anon_sym_BANG] = ACTIONS(2587), + [anon_sym_AMP] = ACTIONS(2587), + [anon_sym_PIPE] = ACTIONS(2587), + [anon_sym_LT] = ACTIONS(2587), + [anon_sym_DOT_DOT] = ACTIONS(2587), + [anon_sym_COLON_COLON] = ACTIONS(2587), + [anon_sym_POUND] = ACTIONS(2587), + [anon_sym_SQUOTE] = ACTIONS(2589), + [anon_sym_async] = ACTIONS(2589), + [anon_sym_break] = ACTIONS(2589), + [anon_sym_const] = ACTIONS(2589), + [anon_sym_continue] = ACTIONS(2589), + [anon_sym_default] = ACTIONS(2589), + [anon_sym_enum] = ACTIONS(2589), + [anon_sym_fn] = ACTIONS(2589), + [anon_sym_for] = ACTIONS(2589), + [anon_sym_if] = ACTIONS(2589), + [anon_sym_impl] = ACTIONS(2589), + [anon_sym_let] = ACTIONS(2589), + [anon_sym_loop] = ACTIONS(2589), + [anon_sym_match] = ACTIONS(2589), + [anon_sym_mod] = ACTIONS(2589), + [anon_sym_pub] = ACTIONS(2589), + [anon_sym_return] = ACTIONS(2589), + [anon_sym_static] = ACTIONS(2589), + [anon_sym_struct] = ACTIONS(2589), + [anon_sym_trait] = ACTIONS(2589), + [anon_sym_type] = ACTIONS(2589), + [anon_sym_union] = ACTIONS(2589), + [anon_sym_unsafe] = ACTIONS(2589), + [anon_sym_use] = ACTIONS(2589), + [anon_sym_while] = ACTIONS(2589), + [anon_sym_extern] = ACTIONS(2589), + [anon_sym_yield] = ACTIONS(2589), + [anon_sym_move] = ACTIONS(2589), + [anon_sym_try] = ACTIONS(2589), + [sym_integer_literal] = ACTIONS(2587), + [aux_sym_string_literal_token1] = ACTIONS(2587), + [sym_char_literal] = ACTIONS(2587), + [anon_sym_true] = ACTIONS(2589), + [anon_sym_false] = ACTIONS(2589), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2589), + [sym_super] = ACTIONS(2589), + [sym_crate] = ACTIONS(2589), + [sym_metavariable] = ACTIONS(2587), + [sym__raw_string_literal_start] = ACTIONS(2587), + [sym_float_literal] = ACTIONS(2587), }, [686] = { [sym_line_comment] = STATE(686), [sym_block_comment] = STATE(686), - [ts_builtin_sym_end] = ACTIONS(2510), - [sym_identifier] = ACTIONS(2512), - [anon_sym_SEMI] = ACTIONS(2510), - [anon_sym_macro_rules_BANG] = ACTIONS(2510), - [anon_sym_LPAREN] = ACTIONS(2510), - [anon_sym_LBRACK] = ACTIONS(2510), - [anon_sym_LBRACE] = ACTIONS(2510), - [anon_sym_RBRACE] = ACTIONS(2510), - [anon_sym_STAR] = ACTIONS(2510), - [anon_sym_u8] = ACTIONS(2512), - [anon_sym_i8] = ACTIONS(2512), - [anon_sym_u16] = ACTIONS(2512), - [anon_sym_i16] = ACTIONS(2512), - [anon_sym_u32] = ACTIONS(2512), - [anon_sym_i32] = ACTIONS(2512), - [anon_sym_u64] = ACTIONS(2512), - [anon_sym_i64] = ACTIONS(2512), - [anon_sym_u128] = ACTIONS(2512), - [anon_sym_i128] = ACTIONS(2512), - [anon_sym_isize] = ACTIONS(2512), - [anon_sym_usize] = ACTIONS(2512), - [anon_sym_f32] = ACTIONS(2512), - [anon_sym_f64] = ACTIONS(2512), - [anon_sym_bool] = ACTIONS(2512), - [anon_sym_str] = ACTIONS(2512), - [anon_sym_char] = ACTIONS(2512), - [anon_sym_DASH] = ACTIONS(2510), - [anon_sym_BANG] = ACTIONS(2510), - [anon_sym_AMP] = ACTIONS(2510), - [anon_sym_PIPE] = ACTIONS(2510), - [anon_sym_LT] = ACTIONS(2510), - [anon_sym_DOT_DOT] = ACTIONS(2510), - [anon_sym_COLON_COLON] = ACTIONS(2510), - [anon_sym_POUND] = ACTIONS(2510), - [anon_sym_SQUOTE] = ACTIONS(2512), - [anon_sym_async] = ACTIONS(2512), - [anon_sym_break] = ACTIONS(2512), - [anon_sym_const] = ACTIONS(2512), - [anon_sym_continue] = ACTIONS(2512), - [anon_sym_default] = ACTIONS(2512), - [anon_sym_enum] = ACTIONS(2512), - [anon_sym_fn] = ACTIONS(2512), - [anon_sym_for] = ACTIONS(2512), - [anon_sym_if] = ACTIONS(2512), - [anon_sym_impl] = ACTIONS(2512), - [anon_sym_let] = ACTIONS(2512), - [anon_sym_loop] = ACTIONS(2512), - [anon_sym_match] = ACTIONS(2512), - [anon_sym_mod] = ACTIONS(2512), - [anon_sym_pub] = ACTIONS(2512), - [anon_sym_return] = ACTIONS(2512), - [anon_sym_static] = ACTIONS(2512), - [anon_sym_struct] = ACTIONS(2512), - [anon_sym_trait] = ACTIONS(2512), - [anon_sym_type] = ACTIONS(2512), - [anon_sym_union] = ACTIONS(2512), - [anon_sym_unsafe] = ACTIONS(2512), - [anon_sym_use] = ACTIONS(2512), - [anon_sym_while] = ACTIONS(2512), - [anon_sym_extern] = ACTIONS(2512), - [anon_sym_yield] = ACTIONS(2512), - [anon_sym_move] = ACTIONS(2512), - [anon_sym_try] = ACTIONS(2512), - [sym_integer_literal] = ACTIONS(2510), - [aux_sym_string_literal_token1] = ACTIONS(2510), - [sym_char_literal] = ACTIONS(2510), - [anon_sym_true] = ACTIONS(2512), - [anon_sym_false] = ACTIONS(2512), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2512), - [sym_super] = ACTIONS(2512), - [sym_crate] = ACTIONS(2512), - [sym_metavariable] = ACTIONS(2510), - [sym__raw_string_literal_start] = ACTIONS(2510), - [sym_float_literal] = ACTIONS(2510), + [ts_builtin_sym_end] = ACTIONS(2591), + [sym_identifier] = ACTIONS(2593), + [anon_sym_SEMI] = ACTIONS(2591), + [anon_sym_macro_rules_BANG] = ACTIONS(2591), + [anon_sym_LPAREN] = ACTIONS(2591), + [anon_sym_LBRACK] = ACTIONS(2591), + [anon_sym_LBRACE] = ACTIONS(2591), + [anon_sym_RBRACE] = ACTIONS(2591), + [anon_sym_macro] = ACTIONS(2593), + [anon_sym_STAR] = ACTIONS(2591), + [anon_sym_u8] = ACTIONS(2593), + [anon_sym_i8] = ACTIONS(2593), + [anon_sym_u16] = ACTIONS(2593), + [anon_sym_i16] = ACTIONS(2593), + [anon_sym_u32] = ACTIONS(2593), + [anon_sym_i32] = ACTIONS(2593), + [anon_sym_u64] = ACTIONS(2593), + [anon_sym_i64] = ACTIONS(2593), + [anon_sym_u128] = ACTIONS(2593), + [anon_sym_i128] = ACTIONS(2593), + [anon_sym_isize] = ACTIONS(2593), + [anon_sym_usize] = ACTIONS(2593), + [anon_sym_f32] = ACTIONS(2593), + [anon_sym_f64] = ACTIONS(2593), + [anon_sym_bool] = ACTIONS(2593), + [anon_sym_str] = ACTIONS(2593), + [anon_sym_char] = ACTIONS(2593), + [anon_sym_DASH] = ACTIONS(2591), + [anon_sym_BANG] = ACTIONS(2591), + [anon_sym_AMP] = ACTIONS(2591), + [anon_sym_PIPE] = ACTIONS(2591), + [anon_sym_LT] = ACTIONS(2591), + [anon_sym_DOT_DOT] = ACTIONS(2591), + [anon_sym_COLON_COLON] = ACTIONS(2591), + [anon_sym_POUND] = ACTIONS(2591), + [anon_sym_SQUOTE] = ACTIONS(2593), + [anon_sym_async] = ACTIONS(2593), + [anon_sym_break] = ACTIONS(2593), + [anon_sym_const] = ACTIONS(2593), + [anon_sym_continue] = ACTIONS(2593), + [anon_sym_default] = ACTIONS(2593), + [anon_sym_enum] = ACTIONS(2593), + [anon_sym_fn] = ACTIONS(2593), + [anon_sym_for] = ACTIONS(2593), + [anon_sym_if] = ACTIONS(2593), + [anon_sym_impl] = ACTIONS(2593), + [anon_sym_let] = ACTIONS(2593), + [anon_sym_loop] = ACTIONS(2593), + [anon_sym_match] = ACTIONS(2593), + [anon_sym_mod] = ACTIONS(2593), + [anon_sym_pub] = ACTIONS(2593), + [anon_sym_return] = ACTIONS(2593), + [anon_sym_static] = ACTIONS(2593), + [anon_sym_struct] = ACTIONS(2593), + [anon_sym_trait] = ACTIONS(2593), + [anon_sym_type] = ACTIONS(2593), + [anon_sym_union] = ACTIONS(2593), + [anon_sym_unsafe] = ACTIONS(2593), + [anon_sym_use] = ACTIONS(2593), + [anon_sym_while] = ACTIONS(2593), + [anon_sym_extern] = ACTIONS(2593), + [anon_sym_yield] = ACTIONS(2593), + [anon_sym_move] = ACTIONS(2593), + [anon_sym_try] = ACTIONS(2593), + [sym_integer_literal] = ACTIONS(2591), + [aux_sym_string_literal_token1] = ACTIONS(2591), + [sym_char_literal] = ACTIONS(2591), + [anon_sym_true] = ACTIONS(2593), + [anon_sym_false] = ACTIONS(2593), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2593), + [sym_super] = ACTIONS(2593), + [sym_crate] = ACTIONS(2593), + [sym_metavariable] = ACTIONS(2591), + [sym__raw_string_literal_start] = ACTIONS(2591), + [sym_float_literal] = ACTIONS(2591), }, [687] = { [sym_line_comment] = STATE(687), [sym_block_comment] = STATE(687), - [ts_builtin_sym_end] = ACTIONS(2514), - [sym_identifier] = ACTIONS(2516), - [anon_sym_SEMI] = ACTIONS(2514), - [anon_sym_macro_rules_BANG] = ACTIONS(2514), - [anon_sym_LPAREN] = ACTIONS(2514), - [anon_sym_LBRACK] = ACTIONS(2514), - [anon_sym_LBRACE] = ACTIONS(2514), - [anon_sym_RBRACE] = ACTIONS(2514), - [anon_sym_STAR] = ACTIONS(2514), - [anon_sym_u8] = ACTIONS(2516), - [anon_sym_i8] = ACTIONS(2516), - [anon_sym_u16] = ACTIONS(2516), - [anon_sym_i16] = ACTIONS(2516), - [anon_sym_u32] = ACTIONS(2516), - [anon_sym_i32] = ACTIONS(2516), - [anon_sym_u64] = ACTIONS(2516), - [anon_sym_i64] = ACTIONS(2516), - [anon_sym_u128] = ACTIONS(2516), - [anon_sym_i128] = ACTIONS(2516), - [anon_sym_isize] = ACTIONS(2516), - [anon_sym_usize] = ACTIONS(2516), - [anon_sym_f32] = ACTIONS(2516), - [anon_sym_f64] = ACTIONS(2516), - [anon_sym_bool] = ACTIONS(2516), - [anon_sym_str] = ACTIONS(2516), - [anon_sym_char] = ACTIONS(2516), - [anon_sym_DASH] = ACTIONS(2514), - [anon_sym_BANG] = ACTIONS(2514), - [anon_sym_AMP] = ACTIONS(2514), - [anon_sym_PIPE] = ACTIONS(2514), - [anon_sym_LT] = ACTIONS(2514), - [anon_sym_DOT_DOT] = ACTIONS(2514), - [anon_sym_COLON_COLON] = ACTIONS(2514), - [anon_sym_POUND] = ACTIONS(2514), - [anon_sym_SQUOTE] = ACTIONS(2516), - [anon_sym_async] = ACTIONS(2516), - [anon_sym_break] = ACTIONS(2516), - [anon_sym_const] = ACTIONS(2516), - [anon_sym_continue] = ACTIONS(2516), - [anon_sym_default] = ACTIONS(2516), - [anon_sym_enum] = ACTIONS(2516), - [anon_sym_fn] = ACTIONS(2516), - [anon_sym_for] = ACTIONS(2516), - [anon_sym_if] = ACTIONS(2516), - [anon_sym_impl] = ACTIONS(2516), - [anon_sym_let] = ACTIONS(2516), - [anon_sym_loop] = ACTIONS(2516), - [anon_sym_match] = ACTIONS(2516), - [anon_sym_mod] = ACTIONS(2516), - [anon_sym_pub] = ACTIONS(2516), - [anon_sym_return] = ACTIONS(2516), - [anon_sym_static] = ACTIONS(2516), - [anon_sym_struct] = ACTIONS(2516), - [anon_sym_trait] = ACTIONS(2516), - [anon_sym_type] = ACTIONS(2516), - [anon_sym_union] = ACTIONS(2516), - [anon_sym_unsafe] = ACTIONS(2516), - [anon_sym_use] = ACTIONS(2516), - [anon_sym_while] = ACTIONS(2516), - [anon_sym_extern] = ACTIONS(2516), - [anon_sym_yield] = ACTIONS(2516), - [anon_sym_move] = ACTIONS(2516), - [anon_sym_try] = ACTIONS(2516), - [sym_integer_literal] = ACTIONS(2514), - [aux_sym_string_literal_token1] = ACTIONS(2514), - [sym_char_literal] = ACTIONS(2514), - [anon_sym_true] = ACTIONS(2516), - [anon_sym_false] = ACTIONS(2516), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2516), - [sym_super] = ACTIONS(2516), - [sym_crate] = ACTIONS(2516), - [sym_metavariable] = ACTIONS(2514), - [sym__raw_string_literal_start] = ACTIONS(2514), - [sym_float_literal] = ACTIONS(2514), + [ts_builtin_sym_end] = ACTIONS(2595), + [sym_identifier] = ACTIONS(2597), + [anon_sym_SEMI] = ACTIONS(2595), + [anon_sym_macro_rules_BANG] = ACTIONS(2595), + [anon_sym_LPAREN] = ACTIONS(2595), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2595), + [anon_sym_RBRACE] = ACTIONS(2595), + [anon_sym_macro] = ACTIONS(2597), + [anon_sym_STAR] = ACTIONS(2595), + [anon_sym_u8] = ACTIONS(2597), + [anon_sym_i8] = ACTIONS(2597), + [anon_sym_u16] = ACTIONS(2597), + [anon_sym_i16] = ACTIONS(2597), + [anon_sym_u32] = ACTIONS(2597), + [anon_sym_i32] = ACTIONS(2597), + [anon_sym_u64] = ACTIONS(2597), + [anon_sym_i64] = ACTIONS(2597), + [anon_sym_u128] = ACTIONS(2597), + [anon_sym_i128] = ACTIONS(2597), + [anon_sym_isize] = ACTIONS(2597), + [anon_sym_usize] = ACTIONS(2597), + [anon_sym_f32] = ACTIONS(2597), + [anon_sym_f64] = ACTIONS(2597), + [anon_sym_bool] = ACTIONS(2597), + [anon_sym_str] = ACTIONS(2597), + [anon_sym_char] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_BANG] = ACTIONS(2595), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_PIPE] = ACTIONS(2595), + [anon_sym_LT] = ACTIONS(2595), + [anon_sym_DOT_DOT] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2595), + [anon_sym_POUND] = ACTIONS(2595), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_async] = ACTIONS(2597), + [anon_sym_break] = ACTIONS(2597), + [anon_sym_const] = ACTIONS(2597), + [anon_sym_continue] = ACTIONS(2597), + [anon_sym_default] = ACTIONS(2597), + [anon_sym_enum] = ACTIONS(2597), + [anon_sym_fn] = ACTIONS(2597), + [anon_sym_for] = ACTIONS(2597), + [anon_sym_if] = ACTIONS(2597), + [anon_sym_impl] = ACTIONS(2597), + [anon_sym_let] = ACTIONS(2597), + [anon_sym_loop] = ACTIONS(2597), + [anon_sym_match] = ACTIONS(2597), + [anon_sym_mod] = ACTIONS(2597), + [anon_sym_pub] = ACTIONS(2597), + [anon_sym_return] = ACTIONS(2597), + [anon_sym_static] = ACTIONS(2597), + [anon_sym_struct] = ACTIONS(2597), + [anon_sym_trait] = ACTIONS(2597), + [anon_sym_type] = ACTIONS(2597), + [anon_sym_union] = ACTIONS(2597), + [anon_sym_unsafe] = ACTIONS(2597), + [anon_sym_use] = ACTIONS(2597), + [anon_sym_while] = ACTIONS(2597), + [anon_sym_extern] = ACTIONS(2597), + [anon_sym_yield] = ACTIONS(2597), + [anon_sym_move] = ACTIONS(2597), + [anon_sym_try] = ACTIONS(2597), + [sym_integer_literal] = ACTIONS(2595), + [aux_sym_string_literal_token1] = ACTIONS(2595), + [sym_char_literal] = ACTIONS(2595), + [anon_sym_true] = ACTIONS(2597), + [anon_sym_false] = ACTIONS(2597), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2597), + [sym_super] = ACTIONS(2597), + [sym_crate] = ACTIONS(2597), + [sym_metavariable] = ACTIONS(2595), + [sym__raw_string_literal_start] = ACTIONS(2595), + [sym_float_literal] = ACTIONS(2595), }, [688] = { [sym_line_comment] = STATE(688), [sym_block_comment] = STATE(688), - [ts_builtin_sym_end] = ACTIONS(2518), - [sym_identifier] = ACTIONS(2520), - [anon_sym_SEMI] = ACTIONS(2518), - [anon_sym_macro_rules_BANG] = ACTIONS(2518), - [anon_sym_LPAREN] = ACTIONS(2518), - [anon_sym_LBRACK] = ACTIONS(2518), - [anon_sym_LBRACE] = ACTIONS(2518), - [anon_sym_RBRACE] = ACTIONS(2518), - [anon_sym_STAR] = ACTIONS(2518), - [anon_sym_u8] = ACTIONS(2520), - [anon_sym_i8] = ACTIONS(2520), - [anon_sym_u16] = ACTIONS(2520), - [anon_sym_i16] = ACTIONS(2520), - [anon_sym_u32] = ACTIONS(2520), - [anon_sym_i32] = ACTIONS(2520), - [anon_sym_u64] = ACTIONS(2520), - [anon_sym_i64] = ACTIONS(2520), - [anon_sym_u128] = ACTIONS(2520), - [anon_sym_i128] = ACTIONS(2520), - [anon_sym_isize] = ACTIONS(2520), - [anon_sym_usize] = ACTIONS(2520), - [anon_sym_f32] = ACTIONS(2520), - [anon_sym_f64] = ACTIONS(2520), - [anon_sym_bool] = ACTIONS(2520), - [anon_sym_str] = ACTIONS(2520), - [anon_sym_char] = ACTIONS(2520), - [anon_sym_DASH] = ACTIONS(2518), - [anon_sym_BANG] = ACTIONS(2518), - [anon_sym_AMP] = ACTIONS(2518), - [anon_sym_PIPE] = ACTIONS(2518), - [anon_sym_LT] = ACTIONS(2518), - [anon_sym_DOT_DOT] = ACTIONS(2518), - [anon_sym_COLON_COLON] = ACTIONS(2518), - [anon_sym_POUND] = ACTIONS(2518), - [anon_sym_SQUOTE] = ACTIONS(2520), - [anon_sym_async] = ACTIONS(2520), - [anon_sym_break] = ACTIONS(2520), - [anon_sym_const] = ACTIONS(2520), - [anon_sym_continue] = ACTIONS(2520), - [anon_sym_default] = ACTIONS(2520), - [anon_sym_enum] = ACTIONS(2520), - [anon_sym_fn] = ACTIONS(2520), - [anon_sym_for] = ACTIONS(2520), - [anon_sym_if] = ACTIONS(2520), - [anon_sym_impl] = ACTIONS(2520), - [anon_sym_let] = ACTIONS(2520), - [anon_sym_loop] = ACTIONS(2520), - [anon_sym_match] = ACTIONS(2520), - [anon_sym_mod] = ACTIONS(2520), - [anon_sym_pub] = ACTIONS(2520), - [anon_sym_return] = ACTIONS(2520), - [anon_sym_static] = ACTIONS(2520), - [anon_sym_struct] = ACTIONS(2520), - [anon_sym_trait] = ACTIONS(2520), - [anon_sym_type] = ACTIONS(2520), - [anon_sym_union] = ACTIONS(2520), - [anon_sym_unsafe] = ACTIONS(2520), - [anon_sym_use] = ACTIONS(2520), - [anon_sym_while] = ACTIONS(2520), - [anon_sym_extern] = ACTIONS(2520), - [anon_sym_yield] = ACTIONS(2520), - [anon_sym_move] = ACTIONS(2520), - [anon_sym_try] = ACTIONS(2520), - [sym_integer_literal] = ACTIONS(2518), - [aux_sym_string_literal_token1] = ACTIONS(2518), - [sym_char_literal] = ACTIONS(2518), - [anon_sym_true] = ACTIONS(2520), - [anon_sym_false] = ACTIONS(2520), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2520), - [sym_super] = ACTIONS(2520), - [sym_crate] = ACTIONS(2520), - [sym_metavariable] = ACTIONS(2518), - [sym__raw_string_literal_start] = ACTIONS(2518), - [sym_float_literal] = ACTIONS(2518), + [ts_builtin_sym_end] = ACTIONS(2599), + [sym_identifier] = ACTIONS(2601), + [anon_sym_SEMI] = ACTIONS(2599), + [anon_sym_macro_rules_BANG] = ACTIONS(2599), + [anon_sym_LPAREN] = ACTIONS(2599), + [anon_sym_LBRACK] = ACTIONS(2599), + [anon_sym_LBRACE] = ACTIONS(2599), + [anon_sym_RBRACE] = ACTIONS(2599), + [anon_sym_macro] = ACTIONS(2601), + [anon_sym_STAR] = ACTIONS(2599), + [anon_sym_u8] = ACTIONS(2601), + [anon_sym_i8] = ACTIONS(2601), + [anon_sym_u16] = ACTIONS(2601), + [anon_sym_i16] = ACTIONS(2601), + [anon_sym_u32] = ACTIONS(2601), + [anon_sym_i32] = ACTIONS(2601), + [anon_sym_u64] = ACTIONS(2601), + [anon_sym_i64] = ACTIONS(2601), + [anon_sym_u128] = ACTIONS(2601), + [anon_sym_i128] = ACTIONS(2601), + [anon_sym_isize] = ACTIONS(2601), + [anon_sym_usize] = ACTIONS(2601), + [anon_sym_f32] = ACTIONS(2601), + [anon_sym_f64] = ACTIONS(2601), + [anon_sym_bool] = ACTIONS(2601), + [anon_sym_str] = ACTIONS(2601), + [anon_sym_char] = ACTIONS(2601), + [anon_sym_DASH] = ACTIONS(2599), + [anon_sym_BANG] = ACTIONS(2599), + [anon_sym_AMP] = ACTIONS(2599), + [anon_sym_PIPE] = ACTIONS(2599), + [anon_sym_LT] = ACTIONS(2599), + [anon_sym_DOT_DOT] = ACTIONS(2599), + [anon_sym_COLON_COLON] = ACTIONS(2599), + [anon_sym_POUND] = ACTIONS(2599), + [anon_sym_SQUOTE] = ACTIONS(2601), + [anon_sym_async] = ACTIONS(2601), + [anon_sym_break] = ACTIONS(2601), + [anon_sym_const] = ACTIONS(2601), + [anon_sym_continue] = ACTIONS(2601), + [anon_sym_default] = ACTIONS(2601), + [anon_sym_enum] = ACTIONS(2601), + [anon_sym_fn] = ACTIONS(2601), + [anon_sym_for] = ACTIONS(2601), + [anon_sym_if] = ACTIONS(2601), + [anon_sym_impl] = ACTIONS(2601), + [anon_sym_let] = ACTIONS(2601), + [anon_sym_loop] = ACTIONS(2601), + [anon_sym_match] = ACTIONS(2601), + [anon_sym_mod] = ACTIONS(2601), + [anon_sym_pub] = ACTIONS(2601), + [anon_sym_return] = ACTIONS(2601), + [anon_sym_static] = ACTIONS(2601), + [anon_sym_struct] = ACTIONS(2601), + [anon_sym_trait] = ACTIONS(2601), + [anon_sym_type] = ACTIONS(2601), + [anon_sym_union] = ACTIONS(2601), + [anon_sym_unsafe] = ACTIONS(2601), + [anon_sym_use] = ACTIONS(2601), + [anon_sym_while] = ACTIONS(2601), + [anon_sym_extern] = ACTIONS(2601), + [anon_sym_yield] = ACTIONS(2601), + [anon_sym_move] = ACTIONS(2601), + [anon_sym_try] = ACTIONS(2601), + [sym_integer_literal] = ACTIONS(2599), + [aux_sym_string_literal_token1] = ACTIONS(2599), + [sym_char_literal] = ACTIONS(2599), + [anon_sym_true] = ACTIONS(2601), + [anon_sym_false] = ACTIONS(2601), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2601), + [sym_super] = ACTIONS(2601), + [sym_crate] = ACTIONS(2601), + [sym_metavariable] = ACTIONS(2599), + [sym__raw_string_literal_start] = ACTIONS(2599), + [sym_float_literal] = ACTIONS(2599), }, [689] = { [sym_line_comment] = STATE(689), [sym_block_comment] = STATE(689), - [ts_builtin_sym_end] = ACTIONS(2522), - [sym_identifier] = ACTIONS(2524), - [anon_sym_SEMI] = ACTIONS(2522), - [anon_sym_macro_rules_BANG] = ACTIONS(2522), - [anon_sym_LPAREN] = ACTIONS(2522), - [anon_sym_LBRACK] = ACTIONS(2522), - [anon_sym_LBRACE] = ACTIONS(2522), - [anon_sym_RBRACE] = ACTIONS(2522), - [anon_sym_STAR] = ACTIONS(2522), - [anon_sym_u8] = ACTIONS(2524), - [anon_sym_i8] = ACTIONS(2524), - [anon_sym_u16] = ACTIONS(2524), - [anon_sym_i16] = ACTIONS(2524), - [anon_sym_u32] = ACTIONS(2524), - [anon_sym_i32] = ACTIONS(2524), - [anon_sym_u64] = ACTIONS(2524), - [anon_sym_i64] = ACTIONS(2524), - [anon_sym_u128] = ACTIONS(2524), - [anon_sym_i128] = ACTIONS(2524), - [anon_sym_isize] = ACTIONS(2524), - [anon_sym_usize] = ACTIONS(2524), - [anon_sym_f32] = ACTIONS(2524), - [anon_sym_f64] = ACTIONS(2524), - [anon_sym_bool] = ACTIONS(2524), - [anon_sym_str] = ACTIONS(2524), - [anon_sym_char] = ACTIONS(2524), - [anon_sym_DASH] = ACTIONS(2522), - [anon_sym_BANG] = ACTIONS(2522), - [anon_sym_AMP] = ACTIONS(2522), - [anon_sym_PIPE] = ACTIONS(2522), - [anon_sym_LT] = ACTIONS(2522), - [anon_sym_DOT_DOT] = ACTIONS(2522), - [anon_sym_COLON_COLON] = ACTIONS(2522), - [anon_sym_POUND] = ACTIONS(2522), - [anon_sym_SQUOTE] = ACTIONS(2524), - [anon_sym_async] = ACTIONS(2524), - [anon_sym_break] = ACTIONS(2524), - [anon_sym_const] = ACTIONS(2524), - [anon_sym_continue] = ACTIONS(2524), - [anon_sym_default] = ACTIONS(2524), - [anon_sym_enum] = ACTIONS(2524), - [anon_sym_fn] = ACTIONS(2524), - [anon_sym_for] = ACTIONS(2524), - [anon_sym_if] = ACTIONS(2524), - [anon_sym_impl] = ACTIONS(2524), - [anon_sym_let] = ACTIONS(2524), - [anon_sym_loop] = ACTIONS(2524), - [anon_sym_match] = ACTIONS(2524), - [anon_sym_mod] = ACTIONS(2524), - [anon_sym_pub] = ACTIONS(2524), - [anon_sym_return] = ACTIONS(2524), - [anon_sym_static] = ACTIONS(2524), - [anon_sym_struct] = ACTIONS(2524), - [anon_sym_trait] = ACTIONS(2524), - [anon_sym_type] = ACTIONS(2524), - [anon_sym_union] = ACTIONS(2524), - [anon_sym_unsafe] = ACTIONS(2524), - [anon_sym_use] = ACTIONS(2524), - [anon_sym_while] = ACTIONS(2524), - [anon_sym_extern] = ACTIONS(2524), - [anon_sym_yield] = ACTIONS(2524), - [anon_sym_move] = ACTIONS(2524), - [anon_sym_try] = ACTIONS(2524), - [sym_integer_literal] = ACTIONS(2522), - [aux_sym_string_literal_token1] = ACTIONS(2522), - [sym_char_literal] = ACTIONS(2522), - [anon_sym_true] = ACTIONS(2524), - [anon_sym_false] = ACTIONS(2524), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2524), - [sym_super] = ACTIONS(2524), - [sym_crate] = ACTIONS(2524), - [sym_metavariable] = ACTIONS(2522), - [sym__raw_string_literal_start] = ACTIONS(2522), - [sym_float_literal] = ACTIONS(2522), + [ts_builtin_sym_end] = ACTIONS(2603), + [sym_identifier] = ACTIONS(2605), + [anon_sym_SEMI] = ACTIONS(2603), + [anon_sym_macro_rules_BANG] = ACTIONS(2603), + [anon_sym_LPAREN] = ACTIONS(2603), + [anon_sym_LBRACK] = ACTIONS(2603), + [anon_sym_LBRACE] = ACTIONS(2603), + [anon_sym_RBRACE] = ACTIONS(2603), + [anon_sym_macro] = ACTIONS(2605), + [anon_sym_STAR] = ACTIONS(2603), + [anon_sym_u8] = ACTIONS(2605), + [anon_sym_i8] = ACTIONS(2605), + [anon_sym_u16] = ACTIONS(2605), + [anon_sym_i16] = ACTIONS(2605), + [anon_sym_u32] = ACTIONS(2605), + [anon_sym_i32] = ACTIONS(2605), + [anon_sym_u64] = ACTIONS(2605), + [anon_sym_i64] = ACTIONS(2605), + [anon_sym_u128] = ACTIONS(2605), + [anon_sym_i128] = ACTIONS(2605), + [anon_sym_isize] = ACTIONS(2605), + [anon_sym_usize] = ACTIONS(2605), + [anon_sym_f32] = ACTIONS(2605), + [anon_sym_f64] = ACTIONS(2605), + [anon_sym_bool] = ACTIONS(2605), + [anon_sym_str] = ACTIONS(2605), + [anon_sym_char] = ACTIONS(2605), + [anon_sym_DASH] = ACTIONS(2603), + [anon_sym_BANG] = ACTIONS(2603), + [anon_sym_AMP] = ACTIONS(2603), + [anon_sym_PIPE] = ACTIONS(2603), + [anon_sym_LT] = ACTIONS(2603), + [anon_sym_DOT_DOT] = ACTIONS(2603), + [anon_sym_COLON_COLON] = ACTIONS(2603), + [anon_sym_POUND] = ACTIONS(2603), + [anon_sym_SQUOTE] = ACTIONS(2605), + [anon_sym_async] = ACTIONS(2605), + [anon_sym_break] = ACTIONS(2605), + [anon_sym_const] = ACTIONS(2605), + [anon_sym_continue] = ACTIONS(2605), + [anon_sym_default] = ACTIONS(2605), + [anon_sym_enum] = ACTIONS(2605), + [anon_sym_fn] = ACTIONS(2605), + [anon_sym_for] = ACTIONS(2605), + [anon_sym_if] = ACTIONS(2605), + [anon_sym_impl] = ACTIONS(2605), + [anon_sym_let] = ACTIONS(2605), + [anon_sym_loop] = ACTIONS(2605), + [anon_sym_match] = ACTIONS(2605), + [anon_sym_mod] = ACTIONS(2605), + [anon_sym_pub] = ACTIONS(2605), + [anon_sym_return] = ACTIONS(2605), + [anon_sym_static] = ACTIONS(2605), + [anon_sym_struct] = ACTIONS(2605), + [anon_sym_trait] = ACTIONS(2605), + [anon_sym_type] = ACTIONS(2605), + [anon_sym_union] = ACTIONS(2605), + [anon_sym_unsafe] = ACTIONS(2605), + [anon_sym_use] = ACTIONS(2605), + [anon_sym_while] = ACTIONS(2605), + [anon_sym_extern] = ACTIONS(2605), + [anon_sym_yield] = ACTIONS(2605), + [anon_sym_move] = ACTIONS(2605), + [anon_sym_try] = ACTIONS(2605), + [sym_integer_literal] = ACTIONS(2603), + [aux_sym_string_literal_token1] = ACTIONS(2603), + [sym_char_literal] = ACTIONS(2603), + [anon_sym_true] = ACTIONS(2605), + [anon_sym_false] = ACTIONS(2605), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2605), + [sym_super] = ACTIONS(2605), + [sym_crate] = ACTIONS(2605), + [sym_metavariable] = ACTIONS(2603), + [sym__raw_string_literal_start] = ACTIONS(2603), + [sym_float_literal] = ACTIONS(2603), }, [690] = { - [sym_empty_statement] = STATE(1456), - [sym_macro_definition] = STATE(1456), - [sym_attribute_item] = STATE(1456), - [sym_inner_attribute_item] = STATE(1456), - [sym_mod_item] = STATE(1456), - [sym_foreign_mod_item] = STATE(1456), - [sym_struct_item] = STATE(1456), - [sym_union_item] = STATE(1456), - [sym_enum_item] = STATE(1456), - [sym_extern_crate_declaration] = STATE(1456), - [sym_const_item] = STATE(1456), - [sym_static_item] = STATE(1456), - [sym_type_item] = STATE(1456), - [sym_function_item] = STATE(1456), - [sym_function_signature_item] = STATE(1456), - [sym_function_modifiers] = STATE(3593), - [sym_impl_item] = STATE(1456), - [sym_trait_item] = STATE(1456), - [sym_associated_type] = STATE(1456), - [sym_let_declaration] = STATE(1456), - [sym_use_declaration] = STATE(1456), - [sym_extern_modifier] = STATE(2154), - [sym_visibility_modifier] = STATE(1934), - [sym_bracketed_type] = STATE(3324), - [sym_generic_type_with_turbofish] = STATE(3350), - [sym_macro_invocation] = STATE(1456), - [sym_scoped_identifier] = STATE(3156), [sym_line_comment] = STATE(690), [sym_block_comment] = STATE(690), - [aux_sym_declaration_list_repeat1] = STATE(698), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2330), - [anon_sym_SEMI] = ACTIONS(2332), - [anon_sym_macro_rules_BANG] = ACTIONS(2334), - [anon_sym_RBRACE] = ACTIONS(2526), - [anon_sym_u8] = ACTIONS(2338), - [anon_sym_i8] = ACTIONS(2338), - [anon_sym_u16] = ACTIONS(2338), - [anon_sym_i16] = ACTIONS(2338), - [anon_sym_u32] = ACTIONS(2338), - [anon_sym_i32] = ACTIONS(2338), - [anon_sym_u64] = ACTIONS(2338), - [anon_sym_i64] = ACTIONS(2338), - [anon_sym_u128] = ACTIONS(2338), - [anon_sym_i128] = ACTIONS(2338), - [anon_sym_isize] = ACTIONS(2338), - [anon_sym_usize] = ACTIONS(2338), - [anon_sym_f32] = ACTIONS(2338), - [anon_sym_f64] = ACTIONS(2338), - [anon_sym_bool] = ACTIONS(2338), - [anon_sym_str] = ACTIONS(2338), - [anon_sym_char] = ACTIONS(2338), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(2340), - [anon_sym_POUND] = ACTIONS(2342), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(2344), - [anon_sym_default] = ACTIONS(2346), - [anon_sym_enum] = ACTIONS(2348), - [anon_sym_fn] = ACTIONS(2350), - [anon_sym_impl] = ACTIONS(2352), - [anon_sym_let] = ACTIONS(2354), - [anon_sym_mod] = ACTIONS(2356), - [anon_sym_pub] = ACTIONS(67), - [anon_sym_static] = ACTIONS(2358), - [anon_sym_struct] = ACTIONS(2360), - [anon_sym_trait] = ACTIONS(2362), - [anon_sym_type] = ACTIONS(2364), - [anon_sym_union] = ACTIONS(2366), - [anon_sym_unsafe] = ACTIONS(2368), - [anon_sym_use] = ACTIONS(2370), - [anon_sym_extern] = ACTIONS(2372), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2374), - [sym_super] = ACTIONS(2374), - [sym_crate] = ACTIONS(2376), - [sym_metavariable] = ACTIONS(2378), + [ts_builtin_sym_end] = ACTIONS(2607), + [sym_identifier] = ACTIONS(2609), + [anon_sym_SEMI] = ACTIONS(2607), + [anon_sym_macro_rules_BANG] = ACTIONS(2607), + [anon_sym_LPAREN] = ACTIONS(2607), + [anon_sym_LBRACK] = ACTIONS(2607), + [anon_sym_LBRACE] = ACTIONS(2607), + [anon_sym_RBRACE] = ACTIONS(2607), + [anon_sym_macro] = ACTIONS(2609), + [anon_sym_STAR] = ACTIONS(2607), + [anon_sym_u8] = ACTIONS(2609), + [anon_sym_i8] = ACTIONS(2609), + [anon_sym_u16] = ACTIONS(2609), + [anon_sym_i16] = ACTIONS(2609), + [anon_sym_u32] = ACTIONS(2609), + [anon_sym_i32] = ACTIONS(2609), + [anon_sym_u64] = ACTIONS(2609), + [anon_sym_i64] = ACTIONS(2609), + [anon_sym_u128] = ACTIONS(2609), + [anon_sym_i128] = ACTIONS(2609), + [anon_sym_isize] = ACTIONS(2609), + [anon_sym_usize] = ACTIONS(2609), + [anon_sym_f32] = ACTIONS(2609), + [anon_sym_f64] = ACTIONS(2609), + [anon_sym_bool] = ACTIONS(2609), + [anon_sym_str] = ACTIONS(2609), + [anon_sym_char] = ACTIONS(2609), + [anon_sym_DASH] = ACTIONS(2607), + [anon_sym_BANG] = ACTIONS(2607), + [anon_sym_AMP] = ACTIONS(2607), + [anon_sym_PIPE] = ACTIONS(2607), + [anon_sym_LT] = ACTIONS(2607), + [anon_sym_DOT_DOT] = ACTIONS(2607), + [anon_sym_COLON_COLON] = ACTIONS(2607), + [anon_sym_POUND] = ACTIONS(2607), + [anon_sym_SQUOTE] = ACTIONS(2609), + [anon_sym_async] = ACTIONS(2609), + [anon_sym_break] = ACTIONS(2609), + [anon_sym_const] = ACTIONS(2609), + [anon_sym_continue] = ACTIONS(2609), + [anon_sym_default] = ACTIONS(2609), + [anon_sym_enum] = ACTIONS(2609), + [anon_sym_fn] = ACTIONS(2609), + [anon_sym_for] = ACTIONS(2609), + [anon_sym_if] = ACTIONS(2609), + [anon_sym_impl] = ACTIONS(2609), + [anon_sym_let] = ACTIONS(2609), + [anon_sym_loop] = ACTIONS(2609), + [anon_sym_match] = ACTIONS(2609), + [anon_sym_mod] = ACTIONS(2609), + [anon_sym_pub] = ACTIONS(2609), + [anon_sym_return] = ACTIONS(2609), + [anon_sym_static] = ACTIONS(2609), + [anon_sym_struct] = ACTIONS(2609), + [anon_sym_trait] = ACTIONS(2609), + [anon_sym_type] = ACTIONS(2609), + [anon_sym_union] = ACTIONS(2609), + [anon_sym_unsafe] = ACTIONS(2609), + [anon_sym_use] = ACTIONS(2609), + [anon_sym_while] = ACTIONS(2609), + [anon_sym_extern] = ACTIONS(2609), + [anon_sym_yield] = ACTIONS(2609), + [anon_sym_move] = ACTIONS(2609), + [anon_sym_try] = ACTIONS(2609), + [sym_integer_literal] = ACTIONS(2607), + [aux_sym_string_literal_token1] = ACTIONS(2607), + [sym_char_literal] = ACTIONS(2607), + [anon_sym_true] = ACTIONS(2609), + [anon_sym_false] = ACTIONS(2609), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2609), + [sym_super] = ACTIONS(2609), + [sym_crate] = ACTIONS(2609), + [sym_metavariable] = ACTIONS(2607), + [sym__raw_string_literal_start] = ACTIONS(2607), + [sym_float_literal] = ACTIONS(2607), }, [691] = { [sym_line_comment] = STATE(691), [sym_block_comment] = STATE(691), - [ts_builtin_sym_end] = ACTIONS(2528), - [sym_identifier] = ACTIONS(2530), - [anon_sym_SEMI] = ACTIONS(2528), - [anon_sym_macro_rules_BANG] = ACTIONS(2528), - [anon_sym_LPAREN] = ACTIONS(2528), - [anon_sym_LBRACK] = ACTIONS(2528), - [anon_sym_LBRACE] = ACTIONS(2528), - [anon_sym_RBRACE] = ACTIONS(2528), - [anon_sym_STAR] = ACTIONS(2528), - [anon_sym_u8] = ACTIONS(2530), - [anon_sym_i8] = ACTIONS(2530), - [anon_sym_u16] = ACTIONS(2530), - [anon_sym_i16] = ACTIONS(2530), - [anon_sym_u32] = ACTIONS(2530), - [anon_sym_i32] = ACTIONS(2530), - [anon_sym_u64] = ACTIONS(2530), - [anon_sym_i64] = ACTIONS(2530), - [anon_sym_u128] = ACTIONS(2530), - [anon_sym_i128] = ACTIONS(2530), - [anon_sym_isize] = ACTIONS(2530), - [anon_sym_usize] = ACTIONS(2530), - [anon_sym_f32] = ACTIONS(2530), - [anon_sym_f64] = ACTIONS(2530), - [anon_sym_bool] = ACTIONS(2530), - [anon_sym_str] = ACTIONS(2530), - [anon_sym_char] = ACTIONS(2530), - [anon_sym_DASH] = ACTIONS(2528), - [anon_sym_BANG] = ACTIONS(2528), - [anon_sym_AMP] = ACTIONS(2528), - [anon_sym_PIPE] = ACTIONS(2528), - [anon_sym_LT] = ACTIONS(2528), - [anon_sym_DOT_DOT] = ACTIONS(2528), - [anon_sym_COLON_COLON] = ACTIONS(2528), - [anon_sym_POUND] = ACTIONS(2528), - [anon_sym_SQUOTE] = ACTIONS(2530), - [anon_sym_async] = ACTIONS(2530), - [anon_sym_break] = ACTIONS(2530), - [anon_sym_const] = ACTIONS(2530), - [anon_sym_continue] = ACTIONS(2530), - [anon_sym_default] = ACTIONS(2530), - [anon_sym_enum] = ACTIONS(2530), - [anon_sym_fn] = ACTIONS(2530), - [anon_sym_for] = ACTIONS(2530), - [anon_sym_if] = ACTIONS(2530), - [anon_sym_impl] = ACTIONS(2530), - [anon_sym_let] = ACTIONS(2530), - [anon_sym_loop] = ACTIONS(2530), - [anon_sym_match] = ACTIONS(2530), - [anon_sym_mod] = ACTIONS(2530), - [anon_sym_pub] = ACTIONS(2530), - [anon_sym_return] = ACTIONS(2530), - [anon_sym_static] = ACTIONS(2530), - [anon_sym_struct] = ACTIONS(2530), - [anon_sym_trait] = ACTIONS(2530), - [anon_sym_type] = ACTIONS(2530), - [anon_sym_union] = ACTIONS(2530), - [anon_sym_unsafe] = ACTIONS(2530), - [anon_sym_use] = ACTIONS(2530), - [anon_sym_while] = ACTIONS(2530), - [anon_sym_extern] = ACTIONS(2530), - [anon_sym_yield] = ACTIONS(2530), - [anon_sym_move] = ACTIONS(2530), - [anon_sym_try] = ACTIONS(2530), - [sym_integer_literal] = ACTIONS(2528), - [aux_sym_string_literal_token1] = ACTIONS(2528), - [sym_char_literal] = ACTIONS(2528), - [anon_sym_true] = ACTIONS(2530), - [anon_sym_false] = ACTIONS(2530), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2530), - [sym_super] = ACTIONS(2530), - [sym_crate] = ACTIONS(2530), - [sym_metavariable] = ACTIONS(2528), - [sym__raw_string_literal_start] = ACTIONS(2528), - [sym_float_literal] = ACTIONS(2528), + [ts_builtin_sym_end] = ACTIONS(2611), + [sym_identifier] = ACTIONS(2613), + [anon_sym_SEMI] = ACTIONS(2611), + [anon_sym_macro_rules_BANG] = ACTIONS(2611), + [anon_sym_LPAREN] = ACTIONS(2611), + [anon_sym_LBRACK] = ACTIONS(2611), + [anon_sym_LBRACE] = ACTIONS(2611), + [anon_sym_RBRACE] = ACTIONS(2611), + [anon_sym_macro] = ACTIONS(2613), + [anon_sym_STAR] = ACTIONS(2611), + [anon_sym_u8] = ACTIONS(2613), + [anon_sym_i8] = ACTIONS(2613), + [anon_sym_u16] = ACTIONS(2613), + [anon_sym_i16] = ACTIONS(2613), + [anon_sym_u32] = ACTIONS(2613), + [anon_sym_i32] = ACTIONS(2613), + [anon_sym_u64] = ACTIONS(2613), + [anon_sym_i64] = ACTIONS(2613), + [anon_sym_u128] = ACTIONS(2613), + [anon_sym_i128] = ACTIONS(2613), + [anon_sym_isize] = ACTIONS(2613), + [anon_sym_usize] = ACTIONS(2613), + [anon_sym_f32] = ACTIONS(2613), + [anon_sym_f64] = ACTIONS(2613), + [anon_sym_bool] = ACTIONS(2613), + [anon_sym_str] = ACTIONS(2613), + [anon_sym_char] = ACTIONS(2613), + [anon_sym_DASH] = ACTIONS(2611), + [anon_sym_BANG] = ACTIONS(2611), + [anon_sym_AMP] = ACTIONS(2611), + [anon_sym_PIPE] = ACTIONS(2611), + [anon_sym_LT] = ACTIONS(2611), + [anon_sym_DOT_DOT] = ACTIONS(2611), + [anon_sym_COLON_COLON] = ACTIONS(2611), + [anon_sym_POUND] = ACTIONS(2611), + [anon_sym_SQUOTE] = ACTIONS(2613), + [anon_sym_async] = ACTIONS(2613), + [anon_sym_break] = ACTIONS(2613), + [anon_sym_const] = ACTIONS(2613), + [anon_sym_continue] = ACTIONS(2613), + [anon_sym_default] = ACTIONS(2613), + [anon_sym_enum] = ACTIONS(2613), + [anon_sym_fn] = ACTIONS(2613), + [anon_sym_for] = ACTIONS(2613), + [anon_sym_if] = ACTIONS(2613), + [anon_sym_impl] = ACTIONS(2613), + [anon_sym_let] = ACTIONS(2613), + [anon_sym_loop] = ACTIONS(2613), + [anon_sym_match] = ACTIONS(2613), + [anon_sym_mod] = ACTIONS(2613), + [anon_sym_pub] = ACTIONS(2613), + [anon_sym_return] = ACTIONS(2613), + [anon_sym_static] = ACTIONS(2613), + [anon_sym_struct] = ACTIONS(2613), + [anon_sym_trait] = ACTIONS(2613), + [anon_sym_type] = ACTIONS(2613), + [anon_sym_union] = ACTIONS(2613), + [anon_sym_unsafe] = ACTIONS(2613), + [anon_sym_use] = ACTIONS(2613), + [anon_sym_while] = ACTIONS(2613), + [anon_sym_extern] = ACTIONS(2613), + [anon_sym_yield] = ACTIONS(2613), + [anon_sym_move] = ACTIONS(2613), + [anon_sym_try] = ACTIONS(2613), + [sym_integer_literal] = ACTIONS(2611), + [aux_sym_string_literal_token1] = ACTIONS(2611), + [sym_char_literal] = ACTIONS(2611), + [anon_sym_true] = ACTIONS(2613), + [anon_sym_false] = ACTIONS(2613), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2613), + [sym_super] = ACTIONS(2613), + [sym_crate] = ACTIONS(2613), + [sym_metavariable] = ACTIONS(2611), + [sym__raw_string_literal_start] = ACTIONS(2611), + [sym_float_literal] = ACTIONS(2611), }, [692] = { - [sym_empty_statement] = STATE(1456), - [sym_macro_definition] = STATE(1456), - [sym_attribute_item] = STATE(1456), - [sym_inner_attribute_item] = STATE(1456), - [sym_mod_item] = STATE(1456), - [sym_foreign_mod_item] = STATE(1456), - [sym_struct_item] = STATE(1456), - [sym_union_item] = STATE(1456), - [sym_enum_item] = STATE(1456), - [sym_extern_crate_declaration] = STATE(1456), - [sym_const_item] = STATE(1456), - [sym_static_item] = STATE(1456), - [sym_type_item] = STATE(1456), - [sym_function_item] = STATE(1456), - [sym_function_signature_item] = STATE(1456), - [sym_function_modifiers] = STATE(3593), - [sym_impl_item] = STATE(1456), - [sym_trait_item] = STATE(1456), - [sym_associated_type] = STATE(1456), - [sym_let_declaration] = STATE(1456), - [sym_use_declaration] = STATE(1456), - [sym_extern_modifier] = STATE(2154), - [sym_visibility_modifier] = STATE(1934), - [sym_bracketed_type] = STATE(3324), - [sym_generic_type_with_turbofish] = STATE(3350), - [sym_macro_invocation] = STATE(1456), - [sym_scoped_identifier] = STATE(3156), [sym_line_comment] = STATE(692), [sym_block_comment] = STATE(692), - [aux_sym_declaration_list_repeat1] = STATE(692), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2532), - [anon_sym_SEMI] = ACTIONS(2535), - [anon_sym_macro_rules_BANG] = ACTIONS(2538), - [anon_sym_RBRACE] = ACTIONS(2541), - [anon_sym_u8] = ACTIONS(2543), - [anon_sym_i8] = ACTIONS(2543), - [anon_sym_u16] = ACTIONS(2543), - [anon_sym_i16] = ACTIONS(2543), - [anon_sym_u32] = ACTIONS(2543), - [anon_sym_i32] = ACTIONS(2543), - [anon_sym_u64] = ACTIONS(2543), - [anon_sym_i64] = ACTIONS(2543), - [anon_sym_u128] = ACTIONS(2543), - [anon_sym_i128] = ACTIONS(2543), - [anon_sym_isize] = ACTIONS(2543), - [anon_sym_usize] = ACTIONS(2543), - [anon_sym_f32] = ACTIONS(2543), - [anon_sym_f64] = ACTIONS(2543), - [anon_sym_bool] = ACTIONS(2543), - [anon_sym_str] = ACTIONS(2543), - [anon_sym_char] = ACTIONS(2543), - [anon_sym_LT] = ACTIONS(2546), - [anon_sym_COLON_COLON] = ACTIONS(2549), - [anon_sym_POUND] = ACTIONS(2552), - [anon_sym_async] = ACTIONS(2555), - [anon_sym_const] = ACTIONS(2558), - [anon_sym_default] = ACTIONS(2561), - [anon_sym_enum] = ACTIONS(2564), - [anon_sym_fn] = ACTIONS(2567), - [anon_sym_impl] = ACTIONS(2570), - [anon_sym_let] = ACTIONS(2573), - [anon_sym_mod] = ACTIONS(2576), - [anon_sym_pub] = ACTIONS(2579), - [anon_sym_static] = ACTIONS(2582), - [anon_sym_struct] = ACTIONS(2585), - [anon_sym_trait] = ACTIONS(2588), - [anon_sym_type] = ACTIONS(2591), - [anon_sym_union] = ACTIONS(2594), - [anon_sym_unsafe] = ACTIONS(2597), - [anon_sym_use] = ACTIONS(2600), - [anon_sym_extern] = ACTIONS(2603), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2606), - [sym_super] = ACTIONS(2606), - [sym_crate] = ACTIONS(2609), - [sym_metavariable] = ACTIONS(2612), - }, - [693] = { - [sym_line_comment] = STATE(693), - [sym_block_comment] = STATE(693), [ts_builtin_sym_end] = ACTIONS(2615), [sym_identifier] = ACTIONS(2617), [anon_sym_SEMI] = ACTIONS(2615), @@ -85656,6 +86353,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(2615), [anon_sym_LBRACE] = ACTIONS(2615), [anon_sym_RBRACE] = ACTIONS(2615), + [anon_sym_macro] = ACTIONS(2617), [anon_sym_STAR] = ACTIONS(2615), [anon_sym_u8] = ACTIONS(2617), [anon_sym_i8] = ACTIONS(2617), @@ -85716,8 +86414,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2615), [anon_sym_true] = ACTIONS(2617), [anon_sym_false] = ACTIONS(2617), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(2617), [sym_super] = ACTIONS(2617), [sym_crate] = ACTIONS(2617), @@ -85725,9 +86423,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2615), [sym_float_literal] = ACTIONS(2615), }, - [694] = { - [sym_line_comment] = STATE(694), - [sym_block_comment] = STATE(694), + [693] = { + [sym_line_comment] = STATE(693), + [sym_block_comment] = STATE(693), [ts_builtin_sym_end] = ACTIONS(2619), [sym_identifier] = ACTIONS(2621), [anon_sym_SEMI] = ACTIONS(2619), @@ -85736,6 +86434,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(2619), [anon_sym_LBRACE] = ACTIONS(2619), [anon_sym_RBRACE] = ACTIONS(2619), + [anon_sym_macro] = ACTIONS(2621), [anon_sym_STAR] = ACTIONS(2619), [anon_sym_u8] = ACTIONS(2621), [anon_sym_i8] = ACTIONS(2621), @@ -85796,8 +86495,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2619), [anon_sym_true] = ACTIONS(2621), [anon_sym_false] = ACTIONS(2621), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(2621), [sym_super] = ACTIONS(2621), [sym_crate] = ACTIONS(2621), @@ -85805,9 +86504,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2619), [sym_float_literal] = ACTIONS(2619), }, - [695] = { - [sym_line_comment] = STATE(695), - [sym_block_comment] = STATE(695), + [694] = { + [sym_line_comment] = STATE(694), + [sym_block_comment] = STATE(694), [ts_builtin_sym_end] = ACTIONS(2623), [sym_identifier] = ACTIONS(2625), [anon_sym_SEMI] = ACTIONS(2623), @@ -85816,6 +86515,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(2623), [anon_sym_LBRACE] = ACTIONS(2623), [anon_sym_RBRACE] = ACTIONS(2623), + [anon_sym_macro] = ACTIONS(2625), [anon_sym_STAR] = ACTIONS(2623), [anon_sym_u8] = ACTIONS(2625), [anon_sym_i8] = ACTIONS(2625), @@ -85876,8 +86576,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2623), [anon_sym_true] = ACTIONS(2625), [anon_sym_false] = ACTIONS(2625), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(2625), [sym_super] = ACTIONS(2625), [sym_crate] = ACTIONS(2625), @@ -85885,9 +86585,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2623), [sym_float_literal] = ACTIONS(2623), }, - [696] = { - [sym_line_comment] = STATE(696), - [sym_block_comment] = STATE(696), + [695] = { + [sym_line_comment] = STATE(695), + [sym_block_comment] = STATE(695), [ts_builtin_sym_end] = ACTIONS(2627), [sym_identifier] = ACTIONS(2629), [anon_sym_SEMI] = ACTIONS(2627), @@ -85896,6 +86596,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(2627), [anon_sym_LBRACE] = ACTIONS(2627), [anon_sym_RBRACE] = ACTIONS(2627), + [anon_sym_macro] = ACTIONS(2629), [anon_sym_STAR] = ACTIONS(2627), [anon_sym_u8] = ACTIONS(2629), [anon_sym_i8] = ACTIONS(2629), @@ -85956,8 +86657,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2627), [anon_sym_true] = ACTIONS(2629), [anon_sym_false] = ACTIONS(2629), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(2629), [sym_super] = ACTIONS(2629), [sym_crate] = ACTIONS(2629), @@ -85965,9 +86666,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2627), [sym_float_literal] = ACTIONS(2627), }, - [697] = { - [sym_line_comment] = STATE(697), - [sym_block_comment] = STATE(697), + [696] = { + [sym_line_comment] = STATE(696), + [sym_block_comment] = STATE(696), [ts_builtin_sym_end] = ACTIONS(2631), [sym_identifier] = ACTIONS(2633), [anon_sym_SEMI] = ACTIONS(2631), @@ -85976,6 +86677,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(2631), [anon_sym_LBRACE] = ACTIONS(2631), [anon_sym_RBRACE] = ACTIONS(2631), + [anon_sym_macro] = ACTIONS(2633), [anon_sym_STAR] = ACTIONS(2631), [anon_sym_u8] = ACTIONS(2633), [anon_sym_i8] = ACTIONS(2633), @@ -86036,8 +86738,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2631), [anon_sym_true] = ACTIONS(2633), [anon_sym_false] = ACTIONS(2633), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(2633), [sym_super] = ACTIONS(2633), [sym_crate] = ACTIONS(2633), @@ -86045,1929 +86747,3330 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2631), [sym_float_literal] = ACTIONS(2631), }, + [697] = { + [sym_line_comment] = STATE(697), + [sym_block_comment] = STATE(697), + [ts_builtin_sym_end] = ACTIONS(2635), + [sym_identifier] = ACTIONS(2637), + [anon_sym_SEMI] = ACTIONS(2635), + [anon_sym_macro_rules_BANG] = ACTIONS(2635), + [anon_sym_LPAREN] = ACTIONS(2635), + [anon_sym_LBRACK] = ACTIONS(2635), + [anon_sym_LBRACE] = ACTIONS(2635), + [anon_sym_RBRACE] = ACTIONS(2635), + [anon_sym_macro] = ACTIONS(2637), + [anon_sym_STAR] = ACTIONS(2635), + [anon_sym_u8] = ACTIONS(2637), + [anon_sym_i8] = ACTIONS(2637), + [anon_sym_u16] = ACTIONS(2637), + [anon_sym_i16] = ACTIONS(2637), + [anon_sym_u32] = ACTIONS(2637), + [anon_sym_i32] = ACTIONS(2637), + [anon_sym_u64] = ACTIONS(2637), + [anon_sym_i64] = ACTIONS(2637), + [anon_sym_u128] = ACTIONS(2637), + [anon_sym_i128] = ACTIONS(2637), + [anon_sym_isize] = ACTIONS(2637), + [anon_sym_usize] = ACTIONS(2637), + [anon_sym_f32] = ACTIONS(2637), + [anon_sym_f64] = ACTIONS(2637), + [anon_sym_bool] = ACTIONS(2637), + [anon_sym_str] = ACTIONS(2637), + [anon_sym_char] = ACTIONS(2637), + [anon_sym_DASH] = ACTIONS(2635), + [anon_sym_BANG] = ACTIONS(2635), + [anon_sym_AMP] = ACTIONS(2635), + [anon_sym_PIPE] = ACTIONS(2635), + [anon_sym_LT] = ACTIONS(2635), + [anon_sym_DOT_DOT] = ACTIONS(2635), + [anon_sym_COLON_COLON] = ACTIONS(2635), + [anon_sym_POUND] = ACTIONS(2635), + [anon_sym_SQUOTE] = ACTIONS(2637), + [anon_sym_async] = ACTIONS(2637), + [anon_sym_break] = ACTIONS(2637), + [anon_sym_const] = ACTIONS(2637), + [anon_sym_continue] = ACTIONS(2637), + [anon_sym_default] = ACTIONS(2637), + [anon_sym_enum] = ACTIONS(2637), + [anon_sym_fn] = ACTIONS(2637), + [anon_sym_for] = ACTIONS(2637), + [anon_sym_if] = ACTIONS(2637), + [anon_sym_impl] = ACTIONS(2637), + [anon_sym_let] = ACTIONS(2637), + [anon_sym_loop] = ACTIONS(2637), + [anon_sym_match] = ACTIONS(2637), + [anon_sym_mod] = ACTIONS(2637), + [anon_sym_pub] = ACTIONS(2637), + [anon_sym_return] = ACTIONS(2637), + [anon_sym_static] = ACTIONS(2637), + [anon_sym_struct] = ACTIONS(2637), + [anon_sym_trait] = ACTIONS(2637), + [anon_sym_type] = ACTIONS(2637), + [anon_sym_union] = ACTIONS(2637), + [anon_sym_unsafe] = ACTIONS(2637), + [anon_sym_use] = ACTIONS(2637), + [anon_sym_while] = ACTIONS(2637), + [anon_sym_extern] = ACTIONS(2637), + [anon_sym_yield] = ACTIONS(2637), + [anon_sym_move] = ACTIONS(2637), + [anon_sym_try] = ACTIONS(2637), + [sym_integer_literal] = ACTIONS(2635), + [aux_sym_string_literal_token1] = ACTIONS(2635), + [sym_char_literal] = ACTIONS(2635), + [anon_sym_true] = ACTIONS(2637), + [anon_sym_false] = ACTIONS(2637), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2637), + [sym_super] = ACTIONS(2637), + [sym_crate] = ACTIONS(2637), + [sym_metavariable] = ACTIONS(2635), + [sym__raw_string_literal_start] = ACTIONS(2635), + [sym_float_literal] = ACTIONS(2635), + }, [698] = { - [sym_empty_statement] = STATE(1456), - [sym_macro_definition] = STATE(1456), - [sym_attribute_item] = STATE(1456), - [sym_inner_attribute_item] = STATE(1456), - [sym_mod_item] = STATE(1456), - [sym_foreign_mod_item] = STATE(1456), - [sym_struct_item] = STATE(1456), - [sym_union_item] = STATE(1456), - [sym_enum_item] = STATE(1456), - [sym_extern_crate_declaration] = STATE(1456), - [sym_const_item] = STATE(1456), - [sym_static_item] = STATE(1456), - [sym_type_item] = STATE(1456), - [sym_function_item] = STATE(1456), - [sym_function_signature_item] = STATE(1456), - [sym_function_modifiers] = STATE(3593), - [sym_impl_item] = STATE(1456), - [sym_trait_item] = STATE(1456), - [sym_associated_type] = STATE(1456), - [sym_let_declaration] = STATE(1456), - [sym_use_declaration] = STATE(1456), - [sym_extern_modifier] = STATE(2154), - [sym_visibility_modifier] = STATE(1934), - [sym_bracketed_type] = STATE(3324), - [sym_generic_type_with_turbofish] = STATE(3350), - [sym_macro_invocation] = STATE(1456), - [sym_scoped_identifier] = STATE(3156), [sym_line_comment] = STATE(698), [sym_block_comment] = STATE(698), - [aux_sym_declaration_list_repeat1] = STATE(692), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2330), - [anon_sym_SEMI] = ACTIONS(2332), - [anon_sym_macro_rules_BANG] = ACTIONS(2334), - [anon_sym_RBRACE] = ACTIONS(2635), - [anon_sym_u8] = ACTIONS(2338), - [anon_sym_i8] = ACTIONS(2338), - [anon_sym_u16] = ACTIONS(2338), - [anon_sym_i16] = ACTIONS(2338), - [anon_sym_u32] = ACTIONS(2338), - [anon_sym_i32] = ACTIONS(2338), - [anon_sym_u64] = ACTIONS(2338), - [anon_sym_i64] = ACTIONS(2338), - [anon_sym_u128] = ACTIONS(2338), - [anon_sym_i128] = ACTIONS(2338), - [anon_sym_isize] = ACTIONS(2338), - [anon_sym_usize] = ACTIONS(2338), - [anon_sym_f32] = ACTIONS(2338), - [anon_sym_f64] = ACTIONS(2338), - [anon_sym_bool] = ACTIONS(2338), - [anon_sym_str] = ACTIONS(2338), - [anon_sym_char] = ACTIONS(2338), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(2340), - [anon_sym_POUND] = ACTIONS(2342), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(2344), - [anon_sym_default] = ACTIONS(2346), - [anon_sym_enum] = ACTIONS(2348), - [anon_sym_fn] = ACTIONS(2350), - [anon_sym_impl] = ACTIONS(2352), - [anon_sym_let] = ACTIONS(2354), - [anon_sym_mod] = ACTIONS(2356), - [anon_sym_pub] = ACTIONS(67), - [anon_sym_static] = ACTIONS(2358), - [anon_sym_struct] = ACTIONS(2360), - [anon_sym_trait] = ACTIONS(2362), - [anon_sym_type] = ACTIONS(2364), - [anon_sym_union] = ACTIONS(2366), - [anon_sym_unsafe] = ACTIONS(2368), - [anon_sym_use] = ACTIONS(2370), - [anon_sym_extern] = ACTIONS(2372), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2374), - [sym_super] = ACTIONS(2374), - [sym_crate] = ACTIONS(2376), - [sym_metavariable] = ACTIONS(2378), + [ts_builtin_sym_end] = ACTIONS(2639), + [sym_identifier] = ACTIONS(2641), + [anon_sym_SEMI] = ACTIONS(2639), + [anon_sym_macro_rules_BANG] = ACTIONS(2639), + [anon_sym_LPAREN] = ACTIONS(2639), + [anon_sym_LBRACK] = ACTIONS(2639), + [anon_sym_LBRACE] = ACTIONS(2639), + [anon_sym_RBRACE] = ACTIONS(2639), + [anon_sym_macro] = ACTIONS(2641), + [anon_sym_STAR] = ACTIONS(2639), + [anon_sym_u8] = ACTIONS(2641), + [anon_sym_i8] = ACTIONS(2641), + [anon_sym_u16] = ACTIONS(2641), + [anon_sym_i16] = ACTIONS(2641), + [anon_sym_u32] = ACTIONS(2641), + [anon_sym_i32] = ACTIONS(2641), + [anon_sym_u64] = ACTIONS(2641), + [anon_sym_i64] = ACTIONS(2641), + [anon_sym_u128] = ACTIONS(2641), + [anon_sym_i128] = ACTIONS(2641), + [anon_sym_isize] = ACTIONS(2641), + [anon_sym_usize] = ACTIONS(2641), + [anon_sym_f32] = ACTIONS(2641), + [anon_sym_f64] = ACTIONS(2641), + [anon_sym_bool] = ACTIONS(2641), + [anon_sym_str] = ACTIONS(2641), + [anon_sym_char] = ACTIONS(2641), + [anon_sym_DASH] = ACTIONS(2639), + [anon_sym_BANG] = ACTIONS(2639), + [anon_sym_AMP] = ACTIONS(2639), + [anon_sym_PIPE] = ACTIONS(2639), + [anon_sym_LT] = ACTIONS(2639), + [anon_sym_DOT_DOT] = ACTIONS(2639), + [anon_sym_COLON_COLON] = ACTIONS(2639), + [anon_sym_POUND] = ACTIONS(2639), + [anon_sym_SQUOTE] = ACTIONS(2641), + [anon_sym_async] = ACTIONS(2641), + [anon_sym_break] = ACTIONS(2641), + [anon_sym_const] = ACTIONS(2641), + [anon_sym_continue] = ACTIONS(2641), + [anon_sym_default] = ACTIONS(2641), + [anon_sym_enum] = ACTIONS(2641), + [anon_sym_fn] = ACTIONS(2641), + [anon_sym_for] = ACTIONS(2641), + [anon_sym_if] = ACTIONS(2641), + [anon_sym_impl] = ACTIONS(2641), + [anon_sym_let] = ACTIONS(2641), + [anon_sym_loop] = ACTIONS(2641), + [anon_sym_match] = ACTIONS(2641), + [anon_sym_mod] = ACTIONS(2641), + [anon_sym_pub] = ACTIONS(2641), + [anon_sym_return] = ACTIONS(2641), + [anon_sym_static] = ACTIONS(2641), + [anon_sym_struct] = ACTIONS(2641), + [anon_sym_trait] = ACTIONS(2641), + [anon_sym_type] = ACTIONS(2641), + [anon_sym_union] = ACTIONS(2641), + [anon_sym_unsafe] = ACTIONS(2641), + [anon_sym_use] = ACTIONS(2641), + [anon_sym_while] = ACTIONS(2641), + [anon_sym_extern] = ACTIONS(2641), + [anon_sym_yield] = ACTIONS(2641), + [anon_sym_move] = ACTIONS(2641), + [anon_sym_try] = ACTIONS(2641), + [sym_integer_literal] = ACTIONS(2639), + [aux_sym_string_literal_token1] = ACTIONS(2639), + [sym_char_literal] = ACTIONS(2639), + [anon_sym_true] = ACTIONS(2641), + [anon_sym_false] = ACTIONS(2641), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2641), + [sym_super] = ACTIONS(2641), + [sym_crate] = ACTIONS(2641), + [sym_metavariable] = ACTIONS(2639), + [sym__raw_string_literal_start] = ACTIONS(2639), + [sym_float_literal] = ACTIONS(2639), }, [699] = { [sym_line_comment] = STATE(699), [sym_block_comment] = STATE(699), - [ts_builtin_sym_end] = ACTIONS(2637), - [sym_identifier] = ACTIONS(2639), - [anon_sym_SEMI] = ACTIONS(2637), - [anon_sym_macro_rules_BANG] = ACTIONS(2637), - [anon_sym_LPAREN] = ACTIONS(2637), - [anon_sym_LBRACK] = ACTIONS(2637), - [anon_sym_LBRACE] = ACTIONS(2637), - [anon_sym_RBRACE] = ACTIONS(2637), - [anon_sym_STAR] = ACTIONS(2637), - [anon_sym_u8] = ACTIONS(2639), - [anon_sym_i8] = ACTIONS(2639), - [anon_sym_u16] = ACTIONS(2639), - [anon_sym_i16] = ACTIONS(2639), - [anon_sym_u32] = ACTIONS(2639), - [anon_sym_i32] = ACTIONS(2639), - [anon_sym_u64] = ACTIONS(2639), - [anon_sym_i64] = ACTIONS(2639), - [anon_sym_u128] = ACTIONS(2639), - [anon_sym_i128] = ACTIONS(2639), - [anon_sym_isize] = ACTIONS(2639), - [anon_sym_usize] = ACTIONS(2639), - [anon_sym_f32] = ACTIONS(2639), - [anon_sym_f64] = ACTIONS(2639), - [anon_sym_bool] = ACTIONS(2639), - [anon_sym_str] = ACTIONS(2639), - [anon_sym_char] = ACTIONS(2639), - [anon_sym_DASH] = ACTIONS(2637), - [anon_sym_BANG] = ACTIONS(2637), - [anon_sym_AMP] = ACTIONS(2637), - [anon_sym_PIPE] = ACTIONS(2637), - [anon_sym_LT] = ACTIONS(2637), - [anon_sym_DOT_DOT] = ACTIONS(2637), - [anon_sym_COLON_COLON] = ACTIONS(2637), - [anon_sym_POUND] = ACTIONS(2637), - [anon_sym_SQUOTE] = ACTIONS(2639), - [anon_sym_async] = ACTIONS(2639), - [anon_sym_break] = ACTIONS(2639), - [anon_sym_const] = ACTIONS(2639), - [anon_sym_continue] = ACTIONS(2639), - [anon_sym_default] = ACTIONS(2639), - [anon_sym_enum] = ACTIONS(2639), - [anon_sym_fn] = ACTIONS(2639), - [anon_sym_for] = ACTIONS(2639), - [anon_sym_if] = ACTIONS(2639), - [anon_sym_impl] = ACTIONS(2639), - [anon_sym_let] = ACTIONS(2639), - [anon_sym_loop] = ACTIONS(2639), - [anon_sym_match] = ACTIONS(2639), - [anon_sym_mod] = ACTIONS(2639), - [anon_sym_pub] = ACTIONS(2639), - [anon_sym_return] = ACTIONS(2639), - [anon_sym_static] = ACTIONS(2639), - [anon_sym_struct] = ACTIONS(2639), - [anon_sym_trait] = ACTIONS(2639), - [anon_sym_type] = ACTIONS(2639), - [anon_sym_union] = ACTIONS(2639), - [anon_sym_unsafe] = ACTIONS(2639), - [anon_sym_use] = ACTIONS(2639), - [anon_sym_while] = ACTIONS(2639), - [anon_sym_extern] = ACTIONS(2639), - [anon_sym_yield] = ACTIONS(2639), - [anon_sym_move] = ACTIONS(2639), - [anon_sym_try] = ACTIONS(2639), - [sym_integer_literal] = ACTIONS(2637), - [aux_sym_string_literal_token1] = ACTIONS(2637), - [sym_char_literal] = ACTIONS(2637), - [anon_sym_true] = ACTIONS(2639), - [anon_sym_false] = ACTIONS(2639), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2639), - [sym_super] = ACTIONS(2639), - [sym_crate] = ACTIONS(2639), - [sym_metavariable] = ACTIONS(2637), - [sym__raw_string_literal_start] = ACTIONS(2637), - [sym_float_literal] = ACTIONS(2637), + [ts_builtin_sym_end] = ACTIONS(2643), + [sym_identifier] = ACTIONS(2645), + [anon_sym_SEMI] = ACTIONS(2643), + [anon_sym_macro_rules_BANG] = ACTIONS(2643), + [anon_sym_LPAREN] = ACTIONS(2643), + [anon_sym_LBRACK] = ACTIONS(2643), + [anon_sym_LBRACE] = ACTIONS(2643), + [anon_sym_RBRACE] = ACTIONS(2643), + [anon_sym_macro] = ACTIONS(2645), + [anon_sym_STAR] = ACTIONS(2643), + [anon_sym_u8] = ACTIONS(2645), + [anon_sym_i8] = ACTIONS(2645), + [anon_sym_u16] = ACTIONS(2645), + [anon_sym_i16] = ACTIONS(2645), + [anon_sym_u32] = ACTIONS(2645), + [anon_sym_i32] = ACTIONS(2645), + [anon_sym_u64] = ACTIONS(2645), + [anon_sym_i64] = ACTIONS(2645), + [anon_sym_u128] = ACTIONS(2645), + [anon_sym_i128] = ACTIONS(2645), + [anon_sym_isize] = ACTIONS(2645), + [anon_sym_usize] = ACTIONS(2645), + [anon_sym_f32] = ACTIONS(2645), + [anon_sym_f64] = ACTIONS(2645), + [anon_sym_bool] = ACTIONS(2645), + [anon_sym_str] = ACTIONS(2645), + [anon_sym_char] = ACTIONS(2645), + [anon_sym_DASH] = ACTIONS(2643), + [anon_sym_BANG] = ACTIONS(2643), + [anon_sym_AMP] = ACTIONS(2643), + [anon_sym_PIPE] = ACTIONS(2643), + [anon_sym_LT] = ACTIONS(2643), + [anon_sym_DOT_DOT] = ACTIONS(2643), + [anon_sym_COLON_COLON] = ACTIONS(2643), + [anon_sym_POUND] = ACTIONS(2643), + [anon_sym_SQUOTE] = ACTIONS(2645), + [anon_sym_async] = ACTIONS(2645), + [anon_sym_break] = ACTIONS(2645), + [anon_sym_const] = ACTIONS(2645), + [anon_sym_continue] = ACTIONS(2645), + [anon_sym_default] = ACTIONS(2645), + [anon_sym_enum] = ACTIONS(2645), + [anon_sym_fn] = ACTIONS(2645), + [anon_sym_for] = ACTIONS(2645), + [anon_sym_if] = ACTIONS(2645), + [anon_sym_impl] = ACTIONS(2645), + [anon_sym_let] = ACTIONS(2645), + [anon_sym_loop] = ACTIONS(2645), + [anon_sym_match] = ACTIONS(2645), + [anon_sym_mod] = ACTIONS(2645), + [anon_sym_pub] = ACTIONS(2645), + [anon_sym_return] = ACTIONS(2645), + [anon_sym_static] = ACTIONS(2645), + [anon_sym_struct] = ACTIONS(2645), + [anon_sym_trait] = ACTIONS(2645), + [anon_sym_type] = ACTIONS(2645), + [anon_sym_union] = ACTIONS(2645), + [anon_sym_unsafe] = ACTIONS(2645), + [anon_sym_use] = ACTIONS(2645), + [anon_sym_while] = ACTIONS(2645), + [anon_sym_extern] = ACTIONS(2645), + [anon_sym_yield] = ACTIONS(2645), + [anon_sym_move] = ACTIONS(2645), + [anon_sym_try] = ACTIONS(2645), + [sym_integer_literal] = ACTIONS(2643), + [aux_sym_string_literal_token1] = ACTIONS(2643), + [sym_char_literal] = ACTIONS(2643), + [anon_sym_true] = ACTIONS(2645), + [anon_sym_false] = ACTIONS(2645), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2645), + [sym_super] = ACTIONS(2645), + [sym_crate] = ACTIONS(2645), + [sym_metavariable] = ACTIONS(2643), + [sym__raw_string_literal_start] = ACTIONS(2643), + [sym_float_literal] = ACTIONS(2643), }, [700] = { [sym_line_comment] = STATE(700), [sym_block_comment] = STATE(700), - [ts_builtin_sym_end] = ACTIONS(2641), - [sym_identifier] = ACTIONS(2643), - [anon_sym_SEMI] = ACTIONS(2641), - [anon_sym_macro_rules_BANG] = ACTIONS(2641), - [anon_sym_LPAREN] = ACTIONS(2641), - [anon_sym_LBRACK] = ACTIONS(2641), - [anon_sym_LBRACE] = ACTIONS(2641), - [anon_sym_RBRACE] = ACTIONS(2641), - [anon_sym_STAR] = ACTIONS(2641), - [anon_sym_u8] = ACTIONS(2643), - [anon_sym_i8] = ACTIONS(2643), - [anon_sym_u16] = ACTIONS(2643), - [anon_sym_i16] = ACTIONS(2643), - [anon_sym_u32] = ACTIONS(2643), - [anon_sym_i32] = ACTIONS(2643), - [anon_sym_u64] = ACTIONS(2643), - [anon_sym_i64] = ACTIONS(2643), - [anon_sym_u128] = ACTIONS(2643), - [anon_sym_i128] = ACTIONS(2643), - [anon_sym_isize] = ACTIONS(2643), - [anon_sym_usize] = ACTIONS(2643), - [anon_sym_f32] = ACTIONS(2643), - [anon_sym_f64] = ACTIONS(2643), - [anon_sym_bool] = ACTIONS(2643), - [anon_sym_str] = ACTIONS(2643), - [anon_sym_char] = ACTIONS(2643), - [anon_sym_DASH] = ACTIONS(2641), - [anon_sym_BANG] = ACTIONS(2641), - [anon_sym_AMP] = ACTIONS(2641), - [anon_sym_PIPE] = ACTIONS(2641), - [anon_sym_LT] = ACTIONS(2641), - [anon_sym_DOT_DOT] = ACTIONS(2641), - [anon_sym_COLON_COLON] = ACTIONS(2641), - [anon_sym_POUND] = ACTIONS(2641), - [anon_sym_SQUOTE] = ACTIONS(2643), - [anon_sym_async] = ACTIONS(2643), - [anon_sym_break] = ACTIONS(2643), - [anon_sym_const] = ACTIONS(2643), - [anon_sym_continue] = ACTIONS(2643), - [anon_sym_default] = ACTIONS(2643), - [anon_sym_enum] = ACTIONS(2643), - [anon_sym_fn] = ACTIONS(2643), - [anon_sym_for] = ACTIONS(2643), - [anon_sym_if] = ACTIONS(2643), - [anon_sym_impl] = ACTIONS(2643), - [anon_sym_let] = ACTIONS(2643), - [anon_sym_loop] = ACTIONS(2643), - [anon_sym_match] = ACTIONS(2643), - [anon_sym_mod] = ACTIONS(2643), - [anon_sym_pub] = ACTIONS(2643), - [anon_sym_return] = ACTIONS(2643), - [anon_sym_static] = ACTIONS(2643), - [anon_sym_struct] = ACTIONS(2643), - [anon_sym_trait] = ACTIONS(2643), - [anon_sym_type] = ACTIONS(2643), - [anon_sym_union] = ACTIONS(2643), - [anon_sym_unsafe] = ACTIONS(2643), - [anon_sym_use] = ACTIONS(2643), - [anon_sym_while] = ACTIONS(2643), - [anon_sym_extern] = ACTIONS(2643), - [anon_sym_yield] = ACTIONS(2643), - [anon_sym_move] = ACTIONS(2643), - [anon_sym_try] = ACTIONS(2643), - [sym_integer_literal] = ACTIONS(2641), - [aux_sym_string_literal_token1] = ACTIONS(2641), - [sym_char_literal] = ACTIONS(2641), - [anon_sym_true] = ACTIONS(2643), - [anon_sym_false] = ACTIONS(2643), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2643), - [sym_super] = ACTIONS(2643), - [sym_crate] = ACTIONS(2643), - [sym_metavariable] = ACTIONS(2641), - [sym__raw_string_literal_start] = ACTIONS(2641), - [sym_float_literal] = ACTIONS(2641), + [ts_builtin_sym_end] = ACTIONS(2647), + [sym_identifier] = ACTIONS(2649), + [anon_sym_SEMI] = ACTIONS(2647), + [anon_sym_macro_rules_BANG] = ACTIONS(2647), + [anon_sym_LPAREN] = ACTIONS(2647), + [anon_sym_LBRACK] = ACTIONS(2647), + [anon_sym_LBRACE] = ACTIONS(2647), + [anon_sym_RBRACE] = ACTIONS(2647), + [anon_sym_macro] = ACTIONS(2649), + [anon_sym_STAR] = ACTIONS(2647), + [anon_sym_u8] = ACTIONS(2649), + [anon_sym_i8] = ACTIONS(2649), + [anon_sym_u16] = ACTIONS(2649), + [anon_sym_i16] = ACTIONS(2649), + [anon_sym_u32] = ACTIONS(2649), + [anon_sym_i32] = ACTIONS(2649), + [anon_sym_u64] = ACTIONS(2649), + [anon_sym_i64] = ACTIONS(2649), + [anon_sym_u128] = ACTIONS(2649), + [anon_sym_i128] = ACTIONS(2649), + [anon_sym_isize] = ACTIONS(2649), + [anon_sym_usize] = ACTIONS(2649), + [anon_sym_f32] = ACTIONS(2649), + [anon_sym_f64] = ACTIONS(2649), + [anon_sym_bool] = ACTIONS(2649), + [anon_sym_str] = ACTIONS(2649), + [anon_sym_char] = ACTIONS(2649), + [anon_sym_DASH] = ACTIONS(2647), + [anon_sym_BANG] = ACTIONS(2647), + [anon_sym_AMP] = ACTIONS(2647), + [anon_sym_PIPE] = ACTIONS(2647), + [anon_sym_LT] = ACTIONS(2647), + [anon_sym_DOT_DOT] = ACTIONS(2647), + [anon_sym_COLON_COLON] = ACTIONS(2647), + [anon_sym_POUND] = ACTIONS(2647), + [anon_sym_SQUOTE] = ACTIONS(2649), + [anon_sym_async] = ACTIONS(2649), + [anon_sym_break] = ACTIONS(2649), + [anon_sym_const] = ACTIONS(2649), + [anon_sym_continue] = ACTIONS(2649), + [anon_sym_default] = ACTIONS(2649), + [anon_sym_enum] = ACTIONS(2649), + [anon_sym_fn] = ACTIONS(2649), + [anon_sym_for] = ACTIONS(2649), + [anon_sym_if] = ACTIONS(2649), + [anon_sym_impl] = ACTIONS(2649), + [anon_sym_let] = ACTIONS(2649), + [anon_sym_loop] = ACTIONS(2649), + [anon_sym_match] = ACTIONS(2649), + [anon_sym_mod] = ACTIONS(2649), + [anon_sym_pub] = ACTIONS(2649), + [anon_sym_return] = ACTIONS(2649), + [anon_sym_static] = ACTIONS(2649), + [anon_sym_struct] = ACTIONS(2649), + [anon_sym_trait] = ACTIONS(2649), + [anon_sym_type] = ACTIONS(2649), + [anon_sym_union] = ACTIONS(2649), + [anon_sym_unsafe] = ACTIONS(2649), + [anon_sym_use] = ACTIONS(2649), + [anon_sym_while] = ACTIONS(2649), + [anon_sym_extern] = ACTIONS(2649), + [anon_sym_yield] = ACTIONS(2649), + [anon_sym_move] = ACTIONS(2649), + [anon_sym_try] = ACTIONS(2649), + [sym_integer_literal] = ACTIONS(2647), + [aux_sym_string_literal_token1] = ACTIONS(2647), + [sym_char_literal] = ACTIONS(2647), + [anon_sym_true] = ACTIONS(2649), + [anon_sym_false] = ACTIONS(2649), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2649), + [sym_super] = ACTIONS(2649), + [sym_crate] = ACTIONS(2649), + [sym_metavariable] = ACTIONS(2647), + [sym__raw_string_literal_start] = ACTIONS(2647), + [sym_float_literal] = ACTIONS(2647), }, [701] = { [sym_line_comment] = STATE(701), [sym_block_comment] = STATE(701), - [ts_builtin_sym_end] = ACTIONS(2645), - [sym_identifier] = ACTIONS(2647), - [anon_sym_SEMI] = ACTIONS(2645), - [anon_sym_macro_rules_BANG] = ACTIONS(2645), - [anon_sym_LPAREN] = ACTIONS(2645), - [anon_sym_LBRACK] = ACTIONS(2645), - [anon_sym_LBRACE] = ACTIONS(2645), - [anon_sym_RBRACE] = ACTIONS(2645), - [anon_sym_STAR] = ACTIONS(2645), - [anon_sym_u8] = ACTIONS(2647), - [anon_sym_i8] = ACTIONS(2647), - [anon_sym_u16] = ACTIONS(2647), - [anon_sym_i16] = ACTIONS(2647), - [anon_sym_u32] = ACTIONS(2647), - [anon_sym_i32] = ACTIONS(2647), - [anon_sym_u64] = ACTIONS(2647), - [anon_sym_i64] = ACTIONS(2647), - [anon_sym_u128] = ACTIONS(2647), - [anon_sym_i128] = ACTIONS(2647), - [anon_sym_isize] = ACTIONS(2647), - [anon_sym_usize] = ACTIONS(2647), - [anon_sym_f32] = ACTIONS(2647), - [anon_sym_f64] = ACTIONS(2647), - [anon_sym_bool] = ACTIONS(2647), - [anon_sym_str] = ACTIONS(2647), - [anon_sym_char] = ACTIONS(2647), - [anon_sym_DASH] = ACTIONS(2645), - [anon_sym_BANG] = ACTIONS(2645), - [anon_sym_AMP] = ACTIONS(2645), - [anon_sym_PIPE] = ACTIONS(2645), - [anon_sym_LT] = ACTIONS(2645), - [anon_sym_DOT_DOT] = ACTIONS(2645), - [anon_sym_COLON_COLON] = ACTIONS(2645), - [anon_sym_POUND] = ACTIONS(2645), - [anon_sym_SQUOTE] = ACTIONS(2647), - [anon_sym_async] = ACTIONS(2647), - [anon_sym_break] = ACTIONS(2647), - [anon_sym_const] = ACTIONS(2647), - [anon_sym_continue] = ACTIONS(2647), - [anon_sym_default] = ACTIONS(2647), - [anon_sym_enum] = ACTIONS(2647), - [anon_sym_fn] = ACTIONS(2647), - [anon_sym_for] = ACTIONS(2647), - [anon_sym_if] = ACTIONS(2647), - [anon_sym_impl] = ACTIONS(2647), - [anon_sym_let] = ACTIONS(2647), - [anon_sym_loop] = ACTIONS(2647), - [anon_sym_match] = ACTIONS(2647), - [anon_sym_mod] = ACTIONS(2647), - [anon_sym_pub] = ACTIONS(2647), - [anon_sym_return] = ACTIONS(2647), - [anon_sym_static] = ACTIONS(2647), - [anon_sym_struct] = ACTIONS(2647), - [anon_sym_trait] = ACTIONS(2647), - [anon_sym_type] = ACTIONS(2647), - [anon_sym_union] = ACTIONS(2647), - [anon_sym_unsafe] = ACTIONS(2647), - [anon_sym_use] = ACTIONS(2647), - [anon_sym_while] = ACTIONS(2647), - [anon_sym_extern] = ACTIONS(2647), - [anon_sym_yield] = ACTIONS(2647), - [anon_sym_move] = ACTIONS(2647), - [anon_sym_try] = ACTIONS(2647), - [sym_integer_literal] = ACTIONS(2645), - [aux_sym_string_literal_token1] = ACTIONS(2645), - [sym_char_literal] = ACTIONS(2645), - [anon_sym_true] = ACTIONS(2647), - [anon_sym_false] = ACTIONS(2647), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2647), - [sym_super] = ACTIONS(2647), - [sym_crate] = ACTIONS(2647), - [sym_metavariable] = ACTIONS(2645), - [sym__raw_string_literal_start] = ACTIONS(2645), - [sym_float_literal] = ACTIONS(2645), + [ts_builtin_sym_end] = ACTIONS(2651), + [sym_identifier] = ACTIONS(2653), + [anon_sym_SEMI] = ACTIONS(2651), + [anon_sym_macro_rules_BANG] = ACTIONS(2651), + [anon_sym_LPAREN] = ACTIONS(2651), + [anon_sym_LBRACK] = ACTIONS(2651), + [anon_sym_LBRACE] = ACTIONS(2651), + [anon_sym_RBRACE] = ACTIONS(2651), + [anon_sym_macro] = ACTIONS(2653), + [anon_sym_STAR] = ACTIONS(2651), + [anon_sym_u8] = ACTIONS(2653), + [anon_sym_i8] = ACTIONS(2653), + [anon_sym_u16] = ACTIONS(2653), + [anon_sym_i16] = ACTIONS(2653), + [anon_sym_u32] = ACTIONS(2653), + [anon_sym_i32] = ACTIONS(2653), + [anon_sym_u64] = ACTIONS(2653), + [anon_sym_i64] = ACTIONS(2653), + [anon_sym_u128] = ACTIONS(2653), + [anon_sym_i128] = ACTIONS(2653), + [anon_sym_isize] = ACTIONS(2653), + [anon_sym_usize] = ACTIONS(2653), + [anon_sym_f32] = ACTIONS(2653), + [anon_sym_f64] = ACTIONS(2653), + [anon_sym_bool] = ACTIONS(2653), + [anon_sym_str] = ACTIONS(2653), + [anon_sym_char] = ACTIONS(2653), + [anon_sym_DASH] = ACTIONS(2651), + [anon_sym_BANG] = ACTIONS(2651), + [anon_sym_AMP] = ACTIONS(2651), + [anon_sym_PIPE] = ACTIONS(2651), + [anon_sym_LT] = ACTIONS(2651), + [anon_sym_DOT_DOT] = ACTIONS(2651), + [anon_sym_COLON_COLON] = ACTIONS(2651), + [anon_sym_POUND] = ACTIONS(2651), + [anon_sym_SQUOTE] = ACTIONS(2653), + [anon_sym_async] = ACTIONS(2653), + [anon_sym_break] = ACTIONS(2653), + [anon_sym_const] = ACTIONS(2653), + [anon_sym_continue] = ACTIONS(2653), + [anon_sym_default] = ACTIONS(2653), + [anon_sym_enum] = ACTIONS(2653), + [anon_sym_fn] = ACTIONS(2653), + [anon_sym_for] = ACTIONS(2653), + [anon_sym_if] = ACTIONS(2653), + [anon_sym_impl] = ACTIONS(2653), + [anon_sym_let] = ACTIONS(2653), + [anon_sym_loop] = ACTIONS(2653), + [anon_sym_match] = ACTIONS(2653), + [anon_sym_mod] = ACTIONS(2653), + [anon_sym_pub] = ACTIONS(2653), + [anon_sym_return] = ACTIONS(2653), + [anon_sym_static] = ACTIONS(2653), + [anon_sym_struct] = ACTIONS(2653), + [anon_sym_trait] = ACTIONS(2653), + [anon_sym_type] = ACTIONS(2653), + [anon_sym_union] = ACTIONS(2653), + [anon_sym_unsafe] = ACTIONS(2653), + [anon_sym_use] = ACTIONS(2653), + [anon_sym_while] = ACTIONS(2653), + [anon_sym_extern] = ACTIONS(2653), + [anon_sym_yield] = ACTIONS(2653), + [anon_sym_move] = ACTIONS(2653), + [anon_sym_try] = ACTIONS(2653), + [sym_integer_literal] = ACTIONS(2651), + [aux_sym_string_literal_token1] = ACTIONS(2651), + [sym_char_literal] = ACTIONS(2651), + [anon_sym_true] = ACTIONS(2653), + [anon_sym_false] = ACTIONS(2653), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2653), + [sym_super] = ACTIONS(2653), + [sym_crate] = ACTIONS(2653), + [sym_metavariable] = ACTIONS(2651), + [sym__raw_string_literal_start] = ACTIONS(2651), + [sym_float_literal] = ACTIONS(2651), }, [702] = { [sym_line_comment] = STATE(702), [sym_block_comment] = STATE(702), - [ts_builtin_sym_end] = ACTIONS(2649), - [sym_identifier] = ACTIONS(2651), - [anon_sym_SEMI] = ACTIONS(2649), - [anon_sym_macro_rules_BANG] = ACTIONS(2649), - [anon_sym_LPAREN] = ACTIONS(2649), - [anon_sym_LBRACK] = ACTIONS(2649), - [anon_sym_LBRACE] = ACTIONS(2649), - [anon_sym_RBRACE] = ACTIONS(2649), - [anon_sym_STAR] = ACTIONS(2649), - [anon_sym_u8] = ACTIONS(2651), - [anon_sym_i8] = ACTIONS(2651), - [anon_sym_u16] = ACTIONS(2651), - [anon_sym_i16] = ACTIONS(2651), - [anon_sym_u32] = ACTIONS(2651), - [anon_sym_i32] = ACTIONS(2651), - [anon_sym_u64] = ACTIONS(2651), - [anon_sym_i64] = ACTIONS(2651), - [anon_sym_u128] = ACTIONS(2651), - [anon_sym_i128] = ACTIONS(2651), - [anon_sym_isize] = ACTIONS(2651), - [anon_sym_usize] = ACTIONS(2651), - [anon_sym_f32] = ACTIONS(2651), - [anon_sym_f64] = ACTIONS(2651), - [anon_sym_bool] = ACTIONS(2651), - [anon_sym_str] = ACTIONS(2651), - [anon_sym_char] = ACTIONS(2651), - [anon_sym_DASH] = ACTIONS(2649), - [anon_sym_BANG] = ACTIONS(2649), - [anon_sym_AMP] = ACTIONS(2649), - [anon_sym_PIPE] = ACTIONS(2649), - [anon_sym_LT] = ACTIONS(2649), - [anon_sym_DOT_DOT] = ACTIONS(2649), - [anon_sym_COLON_COLON] = ACTIONS(2649), - [anon_sym_POUND] = ACTIONS(2649), - [anon_sym_SQUOTE] = ACTIONS(2651), - [anon_sym_async] = ACTIONS(2651), - [anon_sym_break] = ACTIONS(2651), - [anon_sym_const] = ACTIONS(2651), - [anon_sym_continue] = ACTIONS(2651), - [anon_sym_default] = ACTIONS(2651), - [anon_sym_enum] = ACTIONS(2651), - [anon_sym_fn] = ACTIONS(2651), - [anon_sym_for] = ACTIONS(2651), - [anon_sym_if] = ACTIONS(2651), - [anon_sym_impl] = ACTIONS(2651), - [anon_sym_let] = ACTIONS(2651), - [anon_sym_loop] = ACTIONS(2651), - [anon_sym_match] = ACTIONS(2651), - [anon_sym_mod] = ACTIONS(2651), - [anon_sym_pub] = ACTIONS(2651), - [anon_sym_return] = ACTIONS(2651), - [anon_sym_static] = ACTIONS(2651), - [anon_sym_struct] = ACTIONS(2651), - [anon_sym_trait] = ACTIONS(2651), - [anon_sym_type] = ACTIONS(2651), - [anon_sym_union] = ACTIONS(2651), - [anon_sym_unsafe] = ACTIONS(2651), - [anon_sym_use] = ACTIONS(2651), - [anon_sym_while] = ACTIONS(2651), - [anon_sym_extern] = ACTIONS(2651), - [anon_sym_yield] = ACTIONS(2651), - [anon_sym_move] = ACTIONS(2651), - [anon_sym_try] = ACTIONS(2651), - [sym_integer_literal] = ACTIONS(2649), - [aux_sym_string_literal_token1] = ACTIONS(2649), - [sym_char_literal] = ACTIONS(2649), - [anon_sym_true] = ACTIONS(2651), - [anon_sym_false] = ACTIONS(2651), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2651), - [sym_super] = ACTIONS(2651), - [sym_crate] = ACTIONS(2651), - [sym_metavariable] = ACTIONS(2649), - [sym__raw_string_literal_start] = ACTIONS(2649), - [sym_float_literal] = ACTIONS(2649), + [ts_builtin_sym_end] = ACTIONS(2655), + [sym_identifier] = ACTIONS(2657), + [anon_sym_SEMI] = ACTIONS(2655), + [anon_sym_macro_rules_BANG] = ACTIONS(2655), + [anon_sym_LPAREN] = ACTIONS(2655), + [anon_sym_LBRACK] = ACTIONS(2655), + [anon_sym_LBRACE] = ACTIONS(2655), + [anon_sym_RBRACE] = ACTIONS(2655), + [anon_sym_macro] = ACTIONS(2657), + [anon_sym_STAR] = ACTIONS(2655), + [anon_sym_u8] = ACTIONS(2657), + [anon_sym_i8] = ACTIONS(2657), + [anon_sym_u16] = ACTIONS(2657), + [anon_sym_i16] = ACTIONS(2657), + [anon_sym_u32] = ACTIONS(2657), + [anon_sym_i32] = ACTIONS(2657), + [anon_sym_u64] = ACTIONS(2657), + [anon_sym_i64] = ACTIONS(2657), + [anon_sym_u128] = ACTIONS(2657), + [anon_sym_i128] = ACTIONS(2657), + [anon_sym_isize] = ACTIONS(2657), + [anon_sym_usize] = ACTIONS(2657), + [anon_sym_f32] = ACTIONS(2657), + [anon_sym_f64] = ACTIONS(2657), + [anon_sym_bool] = ACTIONS(2657), + [anon_sym_str] = ACTIONS(2657), + [anon_sym_char] = ACTIONS(2657), + [anon_sym_DASH] = ACTIONS(2655), + [anon_sym_BANG] = ACTIONS(2655), + [anon_sym_AMP] = ACTIONS(2655), + [anon_sym_PIPE] = ACTIONS(2655), + [anon_sym_LT] = ACTIONS(2655), + [anon_sym_DOT_DOT] = ACTIONS(2655), + [anon_sym_COLON_COLON] = ACTIONS(2655), + [anon_sym_POUND] = ACTIONS(2655), + [anon_sym_SQUOTE] = ACTIONS(2657), + [anon_sym_async] = ACTIONS(2657), + [anon_sym_break] = ACTIONS(2657), + [anon_sym_const] = ACTIONS(2657), + [anon_sym_continue] = ACTIONS(2657), + [anon_sym_default] = ACTIONS(2657), + [anon_sym_enum] = ACTIONS(2657), + [anon_sym_fn] = ACTIONS(2657), + [anon_sym_for] = ACTIONS(2657), + [anon_sym_if] = ACTIONS(2657), + [anon_sym_impl] = ACTIONS(2657), + [anon_sym_let] = ACTIONS(2657), + [anon_sym_loop] = ACTIONS(2657), + [anon_sym_match] = ACTIONS(2657), + [anon_sym_mod] = ACTIONS(2657), + [anon_sym_pub] = ACTIONS(2657), + [anon_sym_return] = ACTIONS(2657), + [anon_sym_static] = ACTIONS(2657), + [anon_sym_struct] = ACTIONS(2657), + [anon_sym_trait] = ACTIONS(2657), + [anon_sym_type] = ACTIONS(2657), + [anon_sym_union] = ACTIONS(2657), + [anon_sym_unsafe] = ACTIONS(2657), + [anon_sym_use] = ACTIONS(2657), + [anon_sym_while] = ACTIONS(2657), + [anon_sym_extern] = ACTIONS(2657), + [anon_sym_yield] = ACTIONS(2657), + [anon_sym_move] = ACTIONS(2657), + [anon_sym_try] = ACTIONS(2657), + [sym_integer_literal] = ACTIONS(2655), + [aux_sym_string_literal_token1] = ACTIONS(2655), + [sym_char_literal] = ACTIONS(2655), + [anon_sym_true] = ACTIONS(2657), + [anon_sym_false] = ACTIONS(2657), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2657), + [sym_super] = ACTIONS(2657), + [sym_crate] = ACTIONS(2657), + [sym_metavariable] = ACTIONS(2655), + [sym__raw_string_literal_start] = ACTIONS(2655), + [sym_float_literal] = ACTIONS(2655), }, [703] = { [sym_line_comment] = STATE(703), [sym_block_comment] = STATE(703), - [ts_builtin_sym_end] = ACTIONS(2653), - [sym_identifier] = ACTIONS(2655), - [anon_sym_SEMI] = ACTIONS(2653), - [anon_sym_macro_rules_BANG] = ACTIONS(2653), - [anon_sym_LPAREN] = ACTIONS(2653), - [anon_sym_LBRACK] = ACTIONS(2653), - [anon_sym_LBRACE] = ACTIONS(2653), - [anon_sym_RBRACE] = ACTIONS(2653), - [anon_sym_STAR] = ACTIONS(2653), - [anon_sym_u8] = ACTIONS(2655), - [anon_sym_i8] = ACTIONS(2655), - [anon_sym_u16] = ACTIONS(2655), - [anon_sym_i16] = ACTIONS(2655), - [anon_sym_u32] = ACTIONS(2655), - [anon_sym_i32] = ACTIONS(2655), - [anon_sym_u64] = ACTIONS(2655), - [anon_sym_i64] = ACTIONS(2655), - [anon_sym_u128] = ACTIONS(2655), - [anon_sym_i128] = ACTIONS(2655), - [anon_sym_isize] = ACTIONS(2655), - [anon_sym_usize] = ACTIONS(2655), - [anon_sym_f32] = ACTIONS(2655), - [anon_sym_f64] = ACTIONS(2655), - [anon_sym_bool] = ACTIONS(2655), - [anon_sym_str] = ACTIONS(2655), - [anon_sym_char] = ACTIONS(2655), - [anon_sym_DASH] = ACTIONS(2653), - [anon_sym_BANG] = ACTIONS(2653), - [anon_sym_AMP] = ACTIONS(2653), - [anon_sym_PIPE] = ACTIONS(2653), - [anon_sym_LT] = ACTIONS(2653), - [anon_sym_DOT_DOT] = ACTIONS(2653), - [anon_sym_COLON_COLON] = ACTIONS(2653), - [anon_sym_POUND] = ACTIONS(2653), - [anon_sym_SQUOTE] = ACTIONS(2655), - [anon_sym_async] = ACTIONS(2655), - [anon_sym_break] = ACTIONS(2655), - [anon_sym_const] = ACTIONS(2655), - [anon_sym_continue] = ACTIONS(2655), - [anon_sym_default] = ACTIONS(2655), - [anon_sym_enum] = ACTIONS(2655), - [anon_sym_fn] = ACTIONS(2655), - [anon_sym_for] = ACTIONS(2655), - [anon_sym_if] = ACTIONS(2655), - [anon_sym_impl] = ACTIONS(2655), - [anon_sym_let] = ACTIONS(2655), - [anon_sym_loop] = ACTIONS(2655), - [anon_sym_match] = ACTIONS(2655), - [anon_sym_mod] = ACTIONS(2655), - [anon_sym_pub] = ACTIONS(2655), - [anon_sym_return] = ACTIONS(2655), - [anon_sym_static] = ACTIONS(2655), - [anon_sym_struct] = ACTIONS(2655), - [anon_sym_trait] = ACTIONS(2655), - [anon_sym_type] = ACTIONS(2655), - [anon_sym_union] = ACTIONS(2655), - [anon_sym_unsafe] = ACTIONS(2655), - [anon_sym_use] = ACTIONS(2655), - [anon_sym_while] = ACTIONS(2655), - [anon_sym_extern] = ACTIONS(2655), - [anon_sym_yield] = ACTIONS(2655), - [anon_sym_move] = ACTIONS(2655), - [anon_sym_try] = ACTIONS(2655), - [sym_integer_literal] = ACTIONS(2653), - [aux_sym_string_literal_token1] = ACTIONS(2653), - [sym_char_literal] = ACTIONS(2653), - [anon_sym_true] = ACTIONS(2655), - [anon_sym_false] = ACTIONS(2655), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2655), - [sym_super] = ACTIONS(2655), - [sym_crate] = ACTIONS(2655), - [sym_metavariable] = ACTIONS(2653), - [sym__raw_string_literal_start] = ACTIONS(2653), - [sym_float_literal] = ACTIONS(2653), + [ts_builtin_sym_end] = ACTIONS(2659), + [sym_identifier] = ACTIONS(2661), + [anon_sym_SEMI] = ACTIONS(2659), + [anon_sym_macro_rules_BANG] = ACTIONS(2659), + [anon_sym_LPAREN] = ACTIONS(2659), + [anon_sym_LBRACK] = ACTIONS(2659), + [anon_sym_LBRACE] = ACTIONS(2659), + [anon_sym_RBRACE] = ACTIONS(2659), + [anon_sym_macro] = ACTIONS(2661), + [anon_sym_STAR] = ACTIONS(2659), + [anon_sym_u8] = ACTIONS(2661), + [anon_sym_i8] = ACTIONS(2661), + [anon_sym_u16] = ACTIONS(2661), + [anon_sym_i16] = ACTIONS(2661), + [anon_sym_u32] = ACTIONS(2661), + [anon_sym_i32] = ACTIONS(2661), + [anon_sym_u64] = ACTIONS(2661), + [anon_sym_i64] = ACTIONS(2661), + [anon_sym_u128] = ACTIONS(2661), + [anon_sym_i128] = ACTIONS(2661), + [anon_sym_isize] = ACTIONS(2661), + [anon_sym_usize] = ACTIONS(2661), + [anon_sym_f32] = ACTIONS(2661), + [anon_sym_f64] = ACTIONS(2661), + [anon_sym_bool] = ACTIONS(2661), + [anon_sym_str] = ACTIONS(2661), + [anon_sym_char] = ACTIONS(2661), + [anon_sym_DASH] = ACTIONS(2659), + [anon_sym_BANG] = ACTIONS(2659), + [anon_sym_AMP] = ACTIONS(2659), + [anon_sym_PIPE] = ACTIONS(2659), + [anon_sym_LT] = ACTIONS(2659), + [anon_sym_DOT_DOT] = ACTIONS(2659), + [anon_sym_COLON_COLON] = ACTIONS(2659), + [anon_sym_POUND] = ACTIONS(2659), + [anon_sym_SQUOTE] = ACTIONS(2661), + [anon_sym_async] = ACTIONS(2661), + [anon_sym_break] = ACTIONS(2661), + [anon_sym_const] = ACTIONS(2661), + [anon_sym_continue] = ACTIONS(2661), + [anon_sym_default] = ACTIONS(2661), + [anon_sym_enum] = ACTIONS(2661), + [anon_sym_fn] = ACTIONS(2661), + [anon_sym_for] = ACTIONS(2661), + [anon_sym_if] = ACTIONS(2661), + [anon_sym_impl] = ACTIONS(2661), + [anon_sym_let] = ACTIONS(2661), + [anon_sym_loop] = ACTIONS(2661), + [anon_sym_match] = ACTIONS(2661), + [anon_sym_mod] = ACTIONS(2661), + [anon_sym_pub] = ACTIONS(2661), + [anon_sym_return] = ACTIONS(2661), + [anon_sym_static] = ACTIONS(2661), + [anon_sym_struct] = ACTIONS(2661), + [anon_sym_trait] = ACTIONS(2661), + [anon_sym_type] = ACTIONS(2661), + [anon_sym_union] = ACTIONS(2661), + [anon_sym_unsafe] = ACTIONS(2661), + [anon_sym_use] = ACTIONS(2661), + [anon_sym_while] = ACTIONS(2661), + [anon_sym_extern] = ACTIONS(2661), + [anon_sym_yield] = ACTIONS(2661), + [anon_sym_move] = ACTIONS(2661), + [anon_sym_try] = ACTIONS(2661), + [sym_integer_literal] = ACTIONS(2659), + [aux_sym_string_literal_token1] = ACTIONS(2659), + [sym_char_literal] = ACTIONS(2659), + [anon_sym_true] = ACTIONS(2661), + [anon_sym_false] = ACTIONS(2661), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2661), + [sym_super] = ACTIONS(2661), + [sym_crate] = ACTIONS(2661), + [sym_metavariable] = ACTIONS(2659), + [sym__raw_string_literal_start] = ACTIONS(2659), + [sym_float_literal] = ACTIONS(2659), }, [704] = { [sym_line_comment] = STATE(704), [sym_block_comment] = STATE(704), - [ts_builtin_sym_end] = ACTIONS(2657), - [sym_identifier] = ACTIONS(2659), - [anon_sym_SEMI] = ACTIONS(2657), - [anon_sym_macro_rules_BANG] = ACTIONS(2657), - [anon_sym_LPAREN] = ACTIONS(2657), - [anon_sym_LBRACK] = ACTIONS(2657), - [anon_sym_LBRACE] = ACTIONS(2657), - [anon_sym_RBRACE] = ACTIONS(2657), - [anon_sym_STAR] = ACTIONS(2657), - [anon_sym_u8] = ACTIONS(2659), - [anon_sym_i8] = ACTIONS(2659), - [anon_sym_u16] = ACTIONS(2659), - [anon_sym_i16] = ACTIONS(2659), - [anon_sym_u32] = ACTIONS(2659), - [anon_sym_i32] = ACTIONS(2659), - [anon_sym_u64] = ACTIONS(2659), - [anon_sym_i64] = ACTIONS(2659), - [anon_sym_u128] = ACTIONS(2659), - [anon_sym_i128] = ACTIONS(2659), - [anon_sym_isize] = ACTIONS(2659), - [anon_sym_usize] = ACTIONS(2659), - [anon_sym_f32] = ACTIONS(2659), - [anon_sym_f64] = ACTIONS(2659), - [anon_sym_bool] = ACTIONS(2659), - [anon_sym_str] = ACTIONS(2659), - [anon_sym_char] = ACTIONS(2659), - [anon_sym_DASH] = ACTIONS(2657), - [anon_sym_BANG] = ACTIONS(2657), - [anon_sym_AMP] = ACTIONS(2657), - [anon_sym_PIPE] = ACTIONS(2657), - [anon_sym_LT] = ACTIONS(2657), - [anon_sym_DOT_DOT] = ACTIONS(2657), - [anon_sym_COLON_COLON] = ACTIONS(2657), - [anon_sym_POUND] = ACTIONS(2657), - [anon_sym_SQUOTE] = ACTIONS(2659), - [anon_sym_async] = ACTIONS(2659), - [anon_sym_break] = ACTIONS(2659), - [anon_sym_const] = ACTIONS(2659), - [anon_sym_continue] = ACTIONS(2659), - [anon_sym_default] = ACTIONS(2659), - [anon_sym_enum] = ACTIONS(2659), - [anon_sym_fn] = ACTIONS(2659), - [anon_sym_for] = ACTIONS(2659), - [anon_sym_if] = ACTIONS(2659), - [anon_sym_impl] = ACTIONS(2659), - [anon_sym_let] = ACTIONS(2659), - [anon_sym_loop] = ACTIONS(2659), - [anon_sym_match] = ACTIONS(2659), - [anon_sym_mod] = ACTIONS(2659), - [anon_sym_pub] = ACTIONS(2659), - [anon_sym_return] = ACTIONS(2659), - [anon_sym_static] = ACTIONS(2659), - [anon_sym_struct] = ACTIONS(2659), - [anon_sym_trait] = ACTIONS(2659), - [anon_sym_type] = ACTIONS(2659), - [anon_sym_union] = ACTIONS(2659), - [anon_sym_unsafe] = ACTIONS(2659), - [anon_sym_use] = ACTIONS(2659), - [anon_sym_while] = ACTIONS(2659), - [anon_sym_extern] = ACTIONS(2659), - [anon_sym_yield] = ACTIONS(2659), - [anon_sym_move] = ACTIONS(2659), - [anon_sym_try] = ACTIONS(2659), - [sym_integer_literal] = ACTIONS(2657), - [aux_sym_string_literal_token1] = ACTIONS(2657), - [sym_char_literal] = ACTIONS(2657), - [anon_sym_true] = ACTIONS(2659), - [anon_sym_false] = ACTIONS(2659), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2659), - [sym_super] = ACTIONS(2659), - [sym_crate] = ACTIONS(2659), - [sym_metavariable] = ACTIONS(2657), - [sym__raw_string_literal_start] = ACTIONS(2657), - [sym_float_literal] = ACTIONS(2657), + [ts_builtin_sym_end] = ACTIONS(2663), + [sym_identifier] = ACTIONS(2665), + [anon_sym_SEMI] = ACTIONS(2663), + [anon_sym_macro_rules_BANG] = ACTIONS(2663), + [anon_sym_LPAREN] = ACTIONS(2663), + [anon_sym_LBRACK] = ACTIONS(2663), + [anon_sym_LBRACE] = ACTIONS(2663), + [anon_sym_RBRACE] = ACTIONS(2663), + [anon_sym_macro] = ACTIONS(2665), + [anon_sym_STAR] = ACTIONS(2663), + [anon_sym_u8] = ACTIONS(2665), + [anon_sym_i8] = ACTIONS(2665), + [anon_sym_u16] = ACTIONS(2665), + [anon_sym_i16] = ACTIONS(2665), + [anon_sym_u32] = ACTIONS(2665), + [anon_sym_i32] = ACTIONS(2665), + [anon_sym_u64] = ACTIONS(2665), + [anon_sym_i64] = ACTIONS(2665), + [anon_sym_u128] = ACTIONS(2665), + [anon_sym_i128] = ACTIONS(2665), + [anon_sym_isize] = ACTIONS(2665), + [anon_sym_usize] = ACTIONS(2665), + [anon_sym_f32] = ACTIONS(2665), + [anon_sym_f64] = ACTIONS(2665), + [anon_sym_bool] = ACTIONS(2665), + [anon_sym_str] = ACTIONS(2665), + [anon_sym_char] = ACTIONS(2665), + [anon_sym_DASH] = ACTIONS(2663), + [anon_sym_BANG] = ACTIONS(2663), + [anon_sym_AMP] = ACTIONS(2663), + [anon_sym_PIPE] = ACTIONS(2663), + [anon_sym_LT] = ACTIONS(2663), + [anon_sym_DOT_DOT] = ACTIONS(2663), + [anon_sym_COLON_COLON] = ACTIONS(2663), + [anon_sym_POUND] = ACTIONS(2663), + [anon_sym_SQUOTE] = ACTIONS(2665), + [anon_sym_async] = ACTIONS(2665), + [anon_sym_break] = ACTIONS(2665), + [anon_sym_const] = ACTIONS(2665), + [anon_sym_continue] = ACTIONS(2665), + [anon_sym_default] = ACTIONS(2665), + [anon_sym_enum] = ACTIONS(2665), + [anon_sym_fn] = ACTIONS(2665), + [anon_sym_for] = ACTIONS(2665), + [anon_sym_if] = ACTIONS(2665), + [anon_sym_impl] = ACTIONS(2665), + [anon_sym_let] = ACTIONS(2665), + [anon_sym_loop] = ACTIONS(2665), + [anon_sym_match] = ACTIONS(2665), + [anon_sym_mod] = ACTIONS(2665), + [anon_sym_pub] = ACTIONS(2665), + [anon_sym_return] = ACTIONS(2665), + [anon_sym_static] = ACTIONS(2665), + [anon_sym_struct] = ACTIONS(2665), + [anon_sym_trait] = ACTIONS(2665), + [anon_sym_type] = ACTIONS(2665), + [anon_sym_union] = ACTIONS(2665), + [anon_sym_unsafe] = ACTIONS(2665), + [anon_sym_use] = ACTIONS(2665), + [anon_sym_while] = ACTIONS(2665), + [anon_sym_extern] = ACTIONS(2665), + [anon_sym_yield] = ACTIONS(2665), + [anon_sym_move] = ACTIONS(2665), + [anon_sym_try] = ACTIONS(2665), + [sym_integer_literal] = ACTIONS(2663), + [aux_sym_string_literal_token1] = ACTIONS(2663), + [sym_char_literal] = ACTIONS(2663), + [anon_sym_true] = ACTIONS(2665), + [anon_sym_false] = ACTIONS(2665), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2665), + [sym_super] = ACTIONS(2665), + [sym_crate] = ACTIONS(2665), + [sym_metavariable] = ACTIONS(2663), + [sym__raw_string_literal_start] = ACTIONS(2663), + [sym_float_literal] = ACTIONS(2663), }, [705] = { [sym_line_comment] = STATE(705), [sym_block_comment] = STATE(705), - [ts_builtin_sym_end] = ACTIONS(2661), - [sym_identifier] = ACTIONS(2663), - [anon_sym_SEMI] = ACTIONS(2661), - [anon_sym_macro_rules_BANG] = ACTIONS(2661), - [anon_sym_LPAREN] = ACTIONS(2661), - [anon_sym_LBRACK] = ACTIONS(2661), - [anon_sym_LBRACE] = ACTIONS(2661), - [anon_sym_RBRACE] = ACTIONS(2661), - [anon_sym_STAR] = ACTIONS(2661), - [anon_sym_u8] = ACTIONS(2663), - [anon_sym_i8] = ACTIONS(2663), - [anon_sym_u16] = ACTIONS(2663), - [anon_sym_i16] = ACTIONS(2663), - [anon_sym_u32] = ACTIONS(2663), - [anon_sym_i32] = ACTIONS(2663), - [anon_sym_u64] = ACTIONS(2663), - [anon_sym_i64] = ACTIONS(2663), - [anon_sym_u128] = ACTIONS(2663), - [anon_sym_i128] = ACTIONS(2663), - [anon_sym_isize] = ACTIONS(2663), - [anon_sym_usize] = ACTIONS(2663), - [anon_sym_f32] = ACTIONS(2663), - [anon_sym_f64] = ACTIONS(2663), - [anon_sym_bool] = ACTIONS(2663), - [anon_sym_str] = ACTIONS(2663), - [anon_sym_char] = ACTIONS(2663), - [anon_sym_DASH] = ACTIONS(2661), - [anon_sym_BANG] = ACTIONS(2661), - [anon_sym_AMP] = ACTIONS(2661), - [anon_sym_PIPE] = ACTIONS(2661), - [anon_sym_LT] = ACTIONS(2661), - [anon_sym_DOT_DOT] = ACTIONS(2661), - [anon_sym_COLON_COLON] = ACTIONS(2661), - [anon_sym_POUND] = ACTIONS(2661), - [anon_sym_SQUOTE] = ACTIONS(2663), - [anon_sym_async] = ACTIONS(2663), - [anon_sym_break] = ACTIONS(2663), - [anon_sym_const] = ACTIONS(2663), - [anon_sym_continue] = ACTIONS(2663), - [anon_sym_default] = ACTIONS(2663), - [anon_sym_enum] = ACTIONS(2663), - [anon_sym_fn] = ACTIONS(2663), - [anon_sym_for] = ACTIONS(2663), - [anon_sym_if] = ACTIONS(2663), - [anon_sym_impl] = ACTIONS(2663), - [anon_sym_let] = ACTIONS(2663), - [anon_sym_loop] = ACTIONS(2663), - [anon_sym_match] = ACTIONS(2663), - [anon_sym_mod] = ACTIONS(2663), - [anon_sym_pub] = ACTIONS(2663), - [anon_sym_return] = ACTIONS(2663), - [anon_sym_static] = ACTIONS(2663), - [anon_sym_struct] = ACTIONS(2663), - [anon_sym_trait] = ACTIONS(2663), - [anon_sym_type] = ACTIONS(2663), - [anon_sym_union] = ACTIONS(2663), - [anon_sym_unsafe] = ACTIONS(2663), - [anon_sym_use] = ACTIONS(2663), - [anon_sym_while] = ACTIONS(2663), - [anon_sym_extern] = ACTIONS(2663), - [anon_sym_yield] = ACTIONS(2663), - [anon_sym_move] = ACTIONS(2663), - [anon_sym_try] = ACTIONS(2663), - [sym_integer_literal] = ACTIONS(2661), - [aux_sym_string_literal_token1] = ACTIONS(2661), - [sym_char_literal] = ACTIONS(2661), - [anon_sym_true] = ACTIONS(2663), - [anon_sym_false] = ACTIONS(2663), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2663), - [sym_super] = ACTIONS(2663), - [sym_crate] = ACTIONS(2663), - [sym_metavariable] = ACTIONS(2661), - [sym__raw_string_literal_start] = ACTIONS(2661), - [sym_float_literal] = ACTIONS(2661), + [ts_builtin_sym_end] = ACTIONS(2667), + [sym_identifier] = ACTIONS(2669), + [anon_sym_SEMI] = ACTIONS(2667), + [anon_sym_macro_rules_BANG] = ACTIONS(2667), + [anon_sym_LPAREN] = ACTIONS(2667), + [anon_sym_LBRACK] = ACTIONS(2667), + [anon_sym_LBRACE] = ACTIONS(2667), + [anon_sym_RBRACE] = ACTIONS(2667), + [anon_sym_macro] = ACTIONS(2669), + [anon_sym_STAR] = ACTIONS(2667), + [anon_sym_u8] = ACTIONS(2669), + [anon_sym_i8] = ACTIONS(2669), + [anon_sym_u16] = ACTIONS(2669), + [anon_sym_i16] = ACTIONS(2669), + [anon_sym_u32] = ACTIONS(2669), + [anon_sym_i32] = ACTIONS(2669), + [anon_sym_u64] = ACTIONS(2669), + [anon_sym_i64] = ACTIONS(2669), + [anon_sym_u128] = ACTIONS(2669), + [anon_sym_i128] = ACTIONS(2669), + [anon_sym_isize] = ACTIONS(2669), + [anon_sym_usize] = ACTIONS(2669), + [anon_sym_f32] = ACTIONS(2669), + [anon_sym_f64] = ACTIONS(2669), + [anon_sym_bool] = ACTIONS(2669), + [anon_sym_str] = ACTIONS(2669), + [anon_sym_char] = ACTIONS(2669), + [anon_sym_DASH] = ACTIONS(2667), + [anon_sym_BANG] = ACTIONS(2667), + [anon_sym_AMP] = ACTIONS(2667), + [anon_sym_PIPE] = ACTIONS(2667), + [anon_sym_LT] = ACTIONS(2667), + [anon_sym_DOT_DOT] = ACTIONS(2667), + [anon_sym_COLON_COLON] = ACTIONS(2667), + [anon_sym_POUND] = ACTIONS(2667), + [anon_sym_SQUOTE] = ACTIONS(2669), + [anon_sym_async] = ACTIONS(2669), + [anon_sym_break] = ACTIONS(2669), + [anon_sym_const] = ACTIONS(2669), + [anon_sym_continue] = ACTIONS(2669), + [anon_sym_default] = ACTIONS(2669), + [anon_sym_enum] = ACTIONS(2669), + [anon_sym_fn] = ACTIONS(2669), + [anon_sym_for] = ACTIONS(2669), + [anon_sym_if] = ACTIONS(2669), + [anon_sym_impl] = ACTIONS(2669), + [anon_sym_let] = ACTIONS(2669), + [anon_sym_loop] = ACTIONS(2669), + [anon_sym_match] = ACTIONS(2669), + [anon_sym_mod] = ACTIONS(2669), + [anon_sym_pub] = ACTIONS(2669), + [anon_sym_return] = ACTIONS(2669), + [anon_sym_static] = ACTIONS(2669), + [anon_sym_struct] = ACTIONS(2669), + [anon_sym_trait] = ACTIONS(2669), + [anon_sym_type] = ACTIONS(2669), + [anon_sym_union] = ACTIONS(2669), + [anon_sym_unsafe] = ACTIONS(2669), + [anon_sym_use] = ACTIONS(2669), + [anon_sym_while] = ACTIONS(2669), + [anon_sym_extern] = ACTIONS(2669), + [anon_sym_yield] = ACTIONS(2669), + [anon_sym_move] = ACTIONS(2669), + [anon_sym_try] = ACTIONS(2669), + [sym_integer_literal] = ACTIONS(2667), + [aux_sym_string_literal_token1] = ACTIONS(2667), + [sym_char_literal] = ACTIONS(2667), + [anon_sym_true] = ACTIONS(2669), + [anon_sym_false] = ACTIONS(2669), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2669), + [sym_super] = ACTIONS(2669), + [sym_crate] = ACTIONS(2669), + [sym_metavariable] = ACTIONS(2667), + [sym__raw_string_literal_start] = ACTIONS(2667), + [sym_float_literal] = ACTIONS(2667), }, [706] = { [sym_line_comment] = STATE(706), [sym_block_comment] = STATE(706), - [ts_builtin_sym_end] = ACTIONS(2665), - [sym_identifier] = ACTIONS(2667), - [anon_sym_SEMI] = ACTIONS(2665), - [anon_sym_macro_rules_BANG] = ACTIONS(2665), - [anon_sym_LPAREN] = ACTIONS(2665), - [anon_sym_LBRACK] = ACTIONS(2665), - [anon_sym_LBRACE] = ACTIONS(2665), - [anon_sym_RBRACE] = ACTIONS(2665), - [anon_sym_STAR] = ACTIONS(2665), - [anon_sym_u8] = ACTIONS(2667), - [anon_sym_i8] = ACTIONS(2667), - [anon_sym_u16] = ACTIONS(2667), - [anon_sym_i16] = ACTIONS(2667), - [anon_sym_u32] = ACTIONS(2667), - [anon_sym_i32] = ACTIONS(2667), - [anon_sym_u64] = ACTIONS(2667), - [anon_sym_i64] = ACTIONS(2667), - [anon_sym_u128] = ACTIONS(2667), - [anon_sym_i128] = ACTIONS(2667), - [anon_sym_isize] = ACTIONS(2667), - [anon_sym_usize] = ACTIONS(2667), - [anon_sym_f32] = ACTIONS(2667), - [anon_sym_f64] = ACTIONS(2667), - [anon_sym_bool] = ACTIONS(2667), - [anon_sym_str] = ACTIONS(2667), - [anon_sym_char] = ACTIONS(2667), - [anon_sym_DASH] = ACTIONS(2665), - [anon_sym_BANG] = ACTIONS(2665), - [anon_sym_AMP] = ACTIONS(2665), - [anon_sym_PIPE] = ACTIONS(2665), - [anon_sym_LT] = ACTIONS(2665), - [anon_sym_DOT_DOT] = ACTIONS(2665), - [anon_sym_COLON_COLON] = ACTIONS(2665), - [anon_sym_POUND] = ACTIONS(2665), - [anon_sym_SQUOTE] = ACTIONS(2667), - [anon_sym_async] = ACTIONS(2667), - [anon_sym_break] = ACTIONS(2667), - [anon_sym_const] = ACTIONS(2667), - [anon_sym_continue] = ACTIONS(2667), - [anon_sym_default] = ACTIONS(2667), - [anon_sym_enum] = ACTIONS(2667), - [anon_sym_fn] = ACTIONS(2667), - [anon_sym_for] = ACTIONS(2667), - [anon_sym_if] = ACTIONS(2667), - [anon_sym_impl] = ACTIONS(2667), - [anon_sym_let] = ACTIONS(2667), - [anon_sym_loop] = ACTIONS(2667), - [anon_sym_match] = ACTIONS(2667), - [anon_sym_mod] = ACTIONS(2667), - [anon_sym_pub] = ACTIONS(2667), - [anon_sym_return] = ACTIONS(2667), - [anon_sym_static] = ACTIONS(2667), - [anon_sym_struct] = ACTIONS(2667), - [anon_sym_trait] = ACTIONS(2667), - [anon_sym_type] = ACTIONS(2667), - [anon_sym_union] = ACTIONS(2667), - [anon_sym_unsafe] = ACTIONS(2667), - [anon_sym_use] = ACTIONS(2667), - [anon_sym_while] = ACTIONS(2667), - [anon_sym_extern] = ACTIONS(2667), - [anon_sym_yield] = ACTIONS(2667), - [anon_sym_move] = ACTIONS(2667), - [anon_sym_try] = ACTIONS(2667), - [sym_integer_literal] = ACTIONS(2665), - [aux_sym_string_literal_token1] = ACTIONS(2665), - [sym_char_literal] = ACTIONS(2665), - [anon_sym_true] = ACTIONS(2667), - [anon_sym_false] = ACTIONS(2667), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2667), - [sym_super] = ACTIONS(2667), - [sym_crate] = ACTIONS(2667), - [sym_metavariable] = ACTIONS(2665), - [sym__raw_string_literal_start] = ACTIONS(2665), - [sym_float_literal] = ACTIONS(2665), + [ts_builtin_sym_end] = ACTIONS(2671), + [sym_identifier] = ACTIONS(2673), + [anon_sym_SEMI] = ACTIONS(2671), + [anon_sym_macro_rules_BANG] = ACTIONS(2671), + [anon_sym_LPAREN] = ACTIONS(2671), + [anon_sym_LBRACK] = ACTIONS(2671), + [anon_sym_LBRACE] = ACTIONS(2671), + [anon_sym_RBRACE] = ACTIONS(2671), + [anon_sym_macro] = ACTIONS(2673), + [anon_sym_STAR] = ACTIONS(2671), + [anon_sym_u8] = ACTIONS(2673), + [anon_sym_i8] = ACTIONS(2673), + [anon_sym_u16] = ACTIONS(2673), + [anon_sym_i16] = ACTIONS(2673), + [anon_sym_u32] = ACTIONS(2673), + [anon_sym_i32] = ACTIONS(2673), + [anon_sym_u64] = ACTIONS(2673), + [anon_sym_i64] = ACTIONS(2673), + [anon_sym_u128] = ACTIONS(2673), + [anon_sym_i128] = ACTIONS(2673), + [anon_sym_isize] = ACTIONS(2673), + [anon_sym_usize] = ACTIONS(2673), + [anon_sym_f32] = ACTIONS(2673), + [anon_sym_f64] = ACTIONS(2673), + [anon_sym_bool] = ACTIONS(2673), + [anon_sym_str] = ACTIONS(2673), + [anon_sym_char] = ACTIONS(2673), + [anon_sym_DASH] = ACTIONS(2671), + [anon_sym_BANG] = ACTIONS(2671), + [anon_sym_AMP] = ACTIONS(2671), + [anon_sym_PIPE] = ACTIONS(2671), + [anon_sym_LT] = ACTIONS(2671), + [anon_sym_DOT_DOT] = ACTIONS(2671), + [anon_sym_COLON_COLON] = ACTIONS(2671), + [anon_sym_POUND] = ACTIONS(2671), + [anon_sym_SQUOTE] = ACTIONS(2673), + [anon_sym_async] = ACTIONS(2673), + [anon_sym_break] = ACTIONS(2673), + [anon_sym_const] = ACTIONS(2673), + [anon_sym_continue] = ACTIONS(2673), + [anon_sym_default] = ACTIONS(2673), + [anon_sym_enum] = ACTIONS(2673), + [anon_sym_fn] = ACTIONS(2673), + [anon_sym_for] = ACTIONS(2673), + [anon_sym_if] = ACTIONS(2673), + [anon_sym_impl] = ACTIONS(2673), + [anon_sym_let] = ACTIONS(2673), + [anon_sym_loop] = ACTIONS(2673), + [anon_sym_match] = ACTIONS(2673), + [anon_sym_mod] = ACTIONS(2673), + [anon_sym_pub] = ACTIONS(2673), + [anon_sym_return] = ACTIONS(2673), + [anon_sym_static] = ACTIONS(2673), + [anon_sym_struct] = ACTIONS(2673), + [anon_sym_trait] = ACTIONS(2673), + [anon_sym_type] = ACTIONS(2673), + [anon_sym_union] = ACTIONS(2673), + [anon_sym_unsafe] = ACTIONS(2673), + [anon_sym_use] = ACTIONS(2673), + [anon_sym_while] = ACTIONS(2673), + [anon_sym_extern] = ACTIONS(2673), + [anon_sym_yield] = ACTIONS(2673), + [anon_sym_move] = ACTIONS(2673), + [anon_sym_try] = ACTIONS(2673), + [sym_integer_literal] = ACTIONS(2671), + [aux_sym_string_literal_token1] = ACTIONS(2671), + [sym_char_literal] = ACTIONS(2671), + [anon_sym_true] = ACTIONS(2673), + [anon_sym_false] = ACTIONS(2673), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2673), + [sym_super] = ACTIONS(2673), + [sym_crate] = ACTIONS(2673), + [sym_metavariable] = ACTIONS(2671), + [sym__raw_string_literal_start] = ACTIONS(2671), + [sym_float_literal] = ACTIONS(2671), }, [707] = { [sym_line_comment] = STATE(707), [sym_block_comment] = STATE(707), - [ts_builtin_sym_end] = ACTIONS(2669), - [sym_identifier] = ACTIONS(2671), - [anon_sym_SEMI] = ACTIONS(2669), - [anon_sym_macro_rules_BANG] = ACTIONS(2669), - [anon_sym_LPAREN] = ACTIONS(2669), - [anon_sym_LBRACK] = ACTIONS(2669), - [anon_sym_LBRACE] = ACTIONS(2669), - [anon_sym_RBRACE] = ACTIONS(2669), - [anon_sym_STAR] = ACTIONS(2669), - [anon_sym_u8] = ACTIONS(2671), - [anon_sym_i8] = ACTIONS(2671), - [anon_sym_u16] = ACTIONS(2671), - [anon_sym_i16] = ACTIONS(2671), - [anon_sym_u32] = ACTIONS(2671), - [anon_sym_i32] = ACTIONS(2671), - [anon_sym_u64] = ACTIONS(2671), - [anon_sym_i64] = ACTIONS(2671), - [anon_sym_u128] = ACTIONS(2671), - [anon_sym_i128] = ACTIONS(2671), - [anon_sym_isize] = ACTIONS(2671), - [anon_sym_usize] = ACTIONS(2671), - [anon_sym_f32] = ACTIONS(2671), - [anon_sym_f64] = ACTIONS(2671), - [anon_sym_bool] = ACTIONS(2671), - [anon_sym_str] = ACTIONS(2671), - [anon_sym_char] = ACTIONS(2671), - [anon_sym_DASH] = ACTIONS(2669), - [anon_sym_BANG] = ACTIONS(2669), - [anon_sym_AMP] = ACTIONS(2669), - [anon_sym_PIPE] = ACTIONS(2669), - [anon_sym_LT] = ACTIONS(2669), - [anon_sym_DOT_DOT] = ACTIONS(2669), - [anon_sym_COLON_COLON] = ACTIONS(2669), - [anon_sym_POUND] = ACTIONS(2669), - [anon_sym_SQUOTE] = ACTIONS(2671), - [anon_sym_async] = ACTIONS(2671), - [anon_sym_break] = ACTIONS(2671), - [anon_sym_const] = ACTIONS(2671), - [anon_sym_continue] = ACTIONS(2671), - [anon_sym_default] = ACTIONS(2671), - [anon_sym_enum] = ACTIONS(2671), - [anon_sym_fn] = ACTIONS(2671), - [anon_sym_for] = ACTIONS(2671), - [anon_sym_if] = ACTIONS(2671), - [anon_sym_impl] = ACTIONS(2671), - [anon_sym_let] = ACTIONS(2671), - [anon_sym_loop] = ACTIONS(2671), - [anon_sym_match] = ACTIONS(2671), - [anon_sym_mod] = ACTIONS(2671), - [anon_sym_pub] = ACTIONS(2671), - [anon_sym_return] = ACTIONS(2671), - [anon_sym_static] = ACTIONS(2671), - [anon_sym_struct] = ACTIONS(2671), - [anon_sym_trait] = ACTIONS(2671), - [anon_sym_type] = ACTIONS(2671), - [anon_sym_union] = ACTIONS(2671), - [anon_sym_unsafe] = ACTIONS(2671), - [anon_sym_use] = ACTIONS(2671), - [anon_sym_while] = ACTIONS(2671), - [anon_sym_extern] = ACTIONS(2671), - [anon_sym_yield] = ACTIONS(2671), - [anon_sym_move] = ACTIONS(2671), - [anon_sym_try] = ACTIONS(2671), - [sym_integer_literal] = ACTIONS(2669), - [aux_sym_string_literal_token1] = ACTIONS(2669), - [sym_char_literal] = ACTIONS(2669), - [anon_sym_true] = ACTIONS(2671), - [anon_sym_false] = ACTIONS(2671), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2671), - [sym_super] = ACTIONS(2671), - [sym_crate] = ACTIONS(2671), - [sym_metavariable] = ACTIONS(2669), - [sym__raw_string_literal_start] = ACTIONS(2669), - [sym_float_literal] = ACTIONS(2669), + [ts_builtin_sym_end] = ACTIONS(2675), + [sym_identifier] = ACTIONS(2677), + [anon_sym_SEMI] = ACTIONS(2675), + [anon_sym_macro_rules_BANG] = ACTIONS(2675), + [anon_sym_LPAREN] = ACTIONS(2675), + [anon_sym_LBRACK] = ACTIONS(2675), + [anon_sym_LBRACE] = ACTIONS(2675), + [anon_sym_RBRACE] = ACTIONS(2675), + [anon_sym_macro] = ACTIONS(2677), + [anon_sym_STAR] = ACTIONS(2675), + [anon_sym_u8] = ACTIONS(2677), + [anon_sym_i8] = ACTIONS(2677), + [anon_sym_u16] = ACTIONS(2677), + [anon_sym_i16] = ACTIONS(2677), + [anon_sym_u32] = ACTIONS(2677), + [anon_sym_i32] = ACTIONS(2677), + [anon_sym_u64] = ACTIONS(2677), + [anon_sym_i64] = ACTIONS(2677), + [anon_sym_u128] = ACTIONS(2677), + [anon_sym_i128] = ACTIONS(2677), + [anon_sym_isize] = ACTIONS(2677), + [anon_sym_usize] = ACTIONS(2677), + [anon_sym_f32] = ACTIONS(2677), + [anon_sym_f64] = ACTIONS(2677), + [anon_sym_bool] = ACTIONS(2677), + [anon_sym_str] = ACTIONS(2677), + [anon_sym_char] = ACTIONS(2677), + [anon_sym_DASH] = ACTIONS(2675), + [anon_sym_BANG] = ACTIONS(2675), + [anon_sym_AMP] = ACTIONS(2675), + [anon_sym_PIPE] = ACTIONS(2675), + [anon_sym_LT] = ACTIONS(2675), + [anon_sym_DOT_DOT] = ACTIONS(2675), + [anon_sym_COLON_COLON] = ACTIONS(2675), + [anon_sym_POUND] = ACTIONS(2675), + [anon_sym_SQUOTE] = ACTIONS(2677), + [anon_sym_async] = ACTIONS(2677), + [anon_sym_break] = ACTIONS(2677), + [anon_sym_const] = ACTIONS(2677), + [anon_sym_continue] = ACTIONS(2677), + [anon_sym_default] = ACTIONS(2677), + [anon_sym_enum] = ACTIONS(2677), + [anon_sym_fn] = ACTIONS(2677), + [anon_sym_for] = ACTIONS(2677), + [anon_sym_if] = ACTIONS(2677), + [anon_sym_impl] = ACTIONS(2677), + [anon_sym_let] = ACTIONS(2677), + [anon_sym_loop] = ACTIONS(2677), + [anon_sym_match] = ACTIONS(2677), + [anon_sym_mod] = ACTIONS(2677), + [anon_sym_pub] = ACTIONS(2677), + [anon_sym_return] = ACTIONS(2677), + [anon_sym_static] = ACTIONS(2677), + [anon_sym_struct] = ACTIONS(2677), + [anon_sym_trait] = ACTIONS(2677), + [anon_sym_type] = ACTIONS(2677), + [anon_sym_union] = ACTIONS(2677), + [anon_sym_unsafe] = ACTIONS(2677), + [anon_sym_use] = ACTIONS(2677), + [anon_sym_while] = ACTIONS(2677), + [anon_sym_extern] = ACTIONS(2677), + [anon_sym_yield] = ACTIONS(2677), + [anon_sym_move] = ACTIONS(2677), + [anon_sym_try] = ACTIONS(2677), + [sym_integer_literal] = ACTIONS(2675), + [aux_sym_string_literal_token1] = ACTIONS(2675), + [sym_char_literal] = ACTIONS(2675), + [anon_sym_true] = ACTIONS(2677), + [anon_sym_false] = ACTIONS(2677), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2677), + [sym_super] = ACTIONS(2677), + [sym_crate] = ACTIONS(2677), + [sym_metavariable] = ACTIONS(2675), + [sym__raw_string_literal_start] = ACTIONS(2675), + [sym_float_literal] = ACTIONS(2675), }, [708] = { [sym_line_comment] = STATE(708), [sym_block_comment] = STATE(708), - [ts_builtin_sym_end] = ACTIONS(2673), - [sym_identifier] = ACTIONS(2675), - [anon_sym_SEMI] = ACTIONS(2673), - [anon_sym_macro_rules_BANG] = ACTIONS(2673), - [anon_sym_LPAREN] = ACTIONS(2673), - [anon_sym_LBRACK] = ACTIONS(2673), - [anon_sym_LBRACE] = ACTIONS(2673), - [anon_sym_RBRACE] = ACTIONS(2673), - [anon_sym_STAR] = ACTIONS(2673), - [anon_sym_u8] = ACTIONS(2675), - [anon_sym_i8] = ACTIONS(2675), - [anon_sym_u16] = ACTIONS(2675), - [anon_sym_i16] = ACTIONS(2675), - [anon_sym_u32] = ACTIONS(2675), - [anon_sym_i32] = ACTIONS(2675), - [anon_sym_u64] = ACTIONS(2675), - [anon_sym_i64] = ACTIONS(2675), - [anon_sym_u128] = ACTIONS(2675), - [anon_sym_i128] = ACTIONS(2675), - [anon_sym_isize] = ACTIONS(2675), - [anon_sym_usize] = ACTIONS(2675), - [anon_sym_f32] = ACTIONS(2675), - [anon_sym_f64] = ACTIONS(2675), - [anon_sym_bool] = ACTIONS(2675), - [anon_sym_str] = ACTIONS(2675), - [anon_sym_char] = ACTIONS(2675), - [anon_sym_DASH] = ACTIONS(2673), - [anon_sym_BANG] = ACTIONS(2673), - [anon_sym_AMP] = ACTIONS(2673), - [anon_sym_PIPE] = ACTIONS(2673), - [anon_sym_LT] = ACTIONS(2673), - [anon_sym_DOT_DOT] = ACTIONS(2673), - [anon_sym_COLON_COLON] = ACTIONS(2673), - [anon_sym_POUND] = ACTIONS(2673), - [anon_sym_SQUOTE] = ACTIONS(2675), - [anon_sym_async] = ACTIONS(2675), - [anon_sym_break] = ACTIONS(2675), - [anon_sym_const] = ACTIONS(2675), - [anon_sym_continue] = ACTIONS(2675), - [anon_sym_default] = ACTIONS(2675), - [anon_sym_enum] = ACTIONS(2675), - [anon_sym_fn] = ACTIONS(2675), - [anon_sym_for] = ACTIONS(2675), - [anon_sym_if] = ACTIONS(2675), - [anon_sym_impl] = ACTIONS(2675), - [anon_sym_let] = ACTIONS(2675), - [anon_sym_loop] = ACTIONS(2675), - [anon_sym_match] = ACTIONS(2675), - [anon_sym_mod] = ACTIONS(2675), - [anon_sym_pub] = ACTIONS(2675), - [anon_sym_return] = ACTIONS(2675), - [anon_sym_static] = ACTIONS(2675), - [anon_sym_struct] = ACTIONS(2675), - [anon_sym_trait] = ACTIONS(2675), - [anon_sym_type] = ACTIONS(2675), - [anon_sym_union] = ACTIONS(2675), - [anon_sym_unsafe] = ACTIONS(2675), - [anon_sym_use] = ACTIONS(2675), - [anon_sym_while] = ACTIONS(2675), - [anon_sym_extern] = ACTIONS(2675), - [anon_sym_yield] = ACTIONS(2675), - [anon_sym_move] = ACTIONS(2675), - [anon_sym_try] = ACTIONS(2675), - [sym_integer_literal] = ACTIONS(2673), - [aux_sym_string_literal_token1] = ACTIONS(2673), - [sym_char_literal] = ACTIONS(2673), - [anon_sym_true] = ACTIONS(2675), - [anon_sym_false] = ACTIONS(2675), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2675), - [sym_super] = ACTIONS(2675), - [sym_crate] = ACTIONS(2675), - [sym_metavariable] = ACTIONS(2673), - [sym__raw_string_literal_start] = ACTIONS(2673), - [sym_float_literal] = ACTIONS(2673), + [ts_builtin_sym_end] = ACTIONS(2679), + [sym_identifier] = ACTIONS(2681), + [anon_sym_SEMI] = ACTIONS(2679), + [anon_sym_macro_rules_BANG] = ACTIONS(2679), + [anon_sym_LPAREN] = ACTIONS(2679), + [anon_sym_LBRACK] = ACTIONS(2679), + [anon_sym_LBRACE] = ACTIONS(2679), + [anon_sym_RBRACE] = ACTIONS(2679), + [anon_sym_macro] = ACTIONS(2681), + [anon_sym_STAR] = ACTIONS(2679), + [anon_sym_u8] = ACTIONS(2681), + [anon_sym_i8] = ACTIONS(2681), + [anon_sym_u16] = ACTIONS(2681), + [anon_sym_i16] = ACTIONS(2681), + [anon_sym_u32] = ACTIONS(2681), + [anon_sym_i32] = ACTIONS(2681), + [anon_sym_u64] = ACTIONS(2681), + [anon_sym_i64] = ACTIONS(2681), + [anon_sym_u128] = ACTIONS(2681), + [anon_sym_i128] = ACTIONS(2681), + [anon_sym_isize] = ACTIONS(2681), + [anon_sym_usize] = ACTIONS(2681), + [anon_sym_f32] = ACTIONS(2681), + [anon_sym_f64] = ACTIONS(2681), + [anon_sym_bool] = ACTIONS(2681), + [anon_sym_str] = ACTIONS(2681), + [anon_sym_char] = ACTIONS(2681), + [anon_sym_DASH] = ACTIONS(2679), + [anon_sym_BANG] = ACTIONS(2679), + [anon_sym_AMP] = ACTIONS(2679), + [anon_sym_PIPE] = ACTIONS(2679), + [anon_sym_LT] = ACTIONS(2679), + [anon_sym_DOT_DOT] = ACTIONS(2679), + [anon_sym_COLON_COLON] = ACTIONS(2679), + [anon_sym_POUND] = ACTIONS(2679), + [anon_sym_SQUOTE] = ACTIONS(2681), + [anon_sym_async] = ACTIONS(2681), + [anon_sym_break] = ACTIONS(2681), + [anon_sym_const] = ACTIONS(2681), + [anon_sym_continue] = ACTIONS(2681), + [anon_sym_default] = ACTIONS(2681), + [anon_sym_enum] = ACTIONS(2681), + [anon_sym_fn] = ACTIONS(2681), + [anon_sym_for] = ACTIONS(2681), + [anon_sym_if] = ACTIONS(2681), + [anon_sym_impl] = ACTIONS(2681), + [anon_sym_let] = ACTIONS(2681), + [anon_sym_loop] = ACTIONS(2681), + [anon_sym_match] = ACTIONS(2681), + [anon_sym_mod] = ACTIONS(2681), + [anon_sym_pub] = ACTIONS(2681), + [anon_sym_return] = ACTIONS(2681), + [anon_sym_static] = ACTIONS(2681), + [anon_sym_struct] = ACTIONS(2681), + [anon_sym_trait] = ACTIONS(2681), + [anon_sym_type] = ACTIONS(2681), + [anon_sym_union] = ACTIONS(2681), + [anon_sym_unsafe] = ACTIONS(2681), + [anon_sym_use] = ACTIONS(2681), + [anon_sym_while] = ACTIONS(2681), + [anon_sym_extern] = ACTIONS(2681), + [anon_sym_yield] = ACTIONS(2681), + [anon_sym_move] = ACTIONS(2681), + [anon_sym_try] = ACTIONS(2681), + [sym_integer_literal] = ACTIONS(2679), + [aux_sym_string_literal_token1] = ACTIONS(2679), + [sym_char_literal] = ACTIONS(2679), + [anon_sym_true] = ACTIONS(2681), + [anon_sym_false] = ACTIONS(2681), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2681), + [sym_super] = ACTIONS(2681), + [sym_crate] = ACTIONS(2681), + [sym_metavariable] = ACTIONS(2679), + [sym__raw_string_literal_start] = ACTIONS(2679), + [sym_float_literal] = ACTIONS(2679), }, [709] = { [sym_line_comment] = STATE(709), [sym_block_comment] = STATE(709), - [ts_builtin_sym_end] = ACTIONS(2677), - [sym_identifier] = ACTIONS(2679), - [anon_sym_SEMI] = ACTIONS(2677), - [anon_sym_macro_rules_BANG] = ACTIONS(2677), - [anon_sym_LPAREN] = ACTIONS(2677), - [anon_sym_LBRACK] = ACTIONS(2677), - [anon_sym_LBRACE] = ACTIONS(2677), - [anon_sym_RBRACE] = ACTIONS(2677), - [anon_sym_STAR] = ACTIONS(2677), - [anon_sym_u8] = ACTIONS(2679), - [anon_sym_i8] = ACTIONS(2679), - [anon_sym_u16] = ACTIONS(2679), - [anon_sym_i16] = ACTIONS(2679), - [anon_sym_u32] = ACTIONS(2679), - [anon_sym_i32] = ACTIONS(2679), - [anon_sym_u64] = ACTIONS(2679), - [anon_sym_i64] = ACTIONS(2679), - [anon_sym_u128] = ACTIONS(2679), - [anon_sym_i128] = ACTIONS(2679), - [anon_sym_isize] = ACTIONS(2679), - [anon_sym_usize] = ACTIONS(2679), - [anon_sym_f32] = ACTIONS(2679), - [anon_sym_f64] = ACTIONS(2679), - [anon_sym_bool] = ACTIONS(2679), - [anon_sym_str] = ACTIONS(2679), - [anon_sym_char] = ACTIONS(2679), - [anon_sym_DASH] = ACTIONS(2677), - [anon_sym_BANG] = ACTIONS(2677), - [anon_sym_AMP] = ACTIONS(2677), - [anon_sym_PIPE] = ACTIONS(2677), - [anon_sym_LT] = ACTIONS(2677), - [anon_sym_DOT_DOT] = ACTIONS(2677), - [anon_sym_COLON_COLON] = ACTIONS(2677), - [anon_sym_POUND] = ACTIONS(2677), - [anon_sym_SQUOTE] = ACTIONS(2679), - [anon_sym_async] = ACTIONS(2679), - [anon_sym_break] = ACTIONS(2679), - [anon_sym_const] = ACTIONS(2679), - [anon_sym_continue] = ACTIONS(2679), - [anon_sym_default] = ACTIONS(2679), - [anon_sym_enum] = ACTIONS(2679), - [anon_sym_fn] = ACTIONS(2679), - [anon_sym_for] = ACTIONS(2679), - [anon_sym_if] = ACTIONS(2679), - [anon_sym_impl] = ACTIONS(2679), - [anon_sym_let] = ACTIONS(2679), - [anon_sym_loop] = ACTIONS(2679), - [anon_sym_match] = ACTIONS(2679), - [anon_sym_mod] = ACTIONS(2679), - [anon_sym_pub] = ACTIONS(2679), - [anon_sym_return] = ACTIONS(2679), - [anon_sym_static] = ACTIONS(2679), - [anon_sym_struct] = ACTIONS(2679), - [anon_sym_trait] = ACTIONS(2679), - [anon_sym_type] = ACTIONS(2679), - [anon_sym_union] = ACTIONS(2679), - [anon_sym_unsafe] = ACTIONS(2679), - [anon_sym_use] = ACTIONS(2679), - [anon_sym_while] = ACTIONS(2679), - [anon_sym_extern] = ACTIONS(2679), - [anon_sym_yield] = ACTIONS(2679), - [anon_sym_move] = ACTIONS(2679), - [anon_sym_try] = ACTIONS(2679), - [sym_integer_literal] = ACTIONS(2677), - [aux_sym_string_literal_token1] = ACTIONS(2677), - [sym_char_literal] = ACTIONS(2677), - [anon_sym_true] = ACTIONS(2679), - [anon_sym_false] = ACTIONS(2679), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2679), - [sym_super] = ACTIONS(2679), - [sym_crate] = ACTIONS(2679), - [sym_metavariable] = ACTIONS(2677), - [sym__raw_string_literal_start] = ACTIONS(2677), - [sym_float_literal] = ACTIONS(2677), + [ts_builtin_sym_end] = ACTIONS(1301), + [sym_identifier] = ACTIONS(1303), + [anon_sym_SEMI] = ACTIONS(1301), + [anon_sym_macro_rules_BANG] = ACTIONS(1301), + [anon_sym_LPAREN] = ACTIONS(1301), + [anon_sym_LBRACK] = ACTIONS(1301), + [anon_sym_LBRACE] = ACTIONS(1301), + [anon_sym_RBRACE] = ACTIONS(1301), + [anon_sym_macro] = ACTIONS(1303), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_u8] = ACTIONS(1303), + [anon_sym_i8] = ACTIONS(1303), + [anon_sym_u16] = ACTIONS(1303), + [anon_sym_i16] = ACTIONS(1303), + [anon_sym_u32] = ACTIONS(1303), + [anon_sym_i32] = ACTIONS(1303), + [anon_sym_u64] = ACTIONS(1303), + [anon_sym_i64] = ACTIONS(1303), + [anon_sym_u128] = ACTIONS(1303), + [anon_sym_i128] = ACTIONS(1303), + [anon_sym_isize] = ACTIONS(1303), + [anon_sym_usize] = ACTIONS(1303), + [anon_sym_f32] = ACTIONS(1303), + [anon_sym_f64] = ACTIONS(1303), + [anon_sym_bool] = ACTIONS(1303), + [anon_sym_str] = ACTIONS(1303), + [anon_sym_char] = ACTIONS(1303), + [anon_sym_DASH] = ACTIONS(1301), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(1301), + [anon_sym_PIPE] = ACTIONS(1301), + [anon_sym_LT] = ACTIONS(1301), + [anon_sym_DOT_DOT] = ACTIONS(1301), + [anon_sym_COLON_COLON] = ACTIONS(1301), + [anon_sym_POUND] = ACTIONS(1301), + [anon_sym_SQUOTE] = ACTIONS(1303), + [anon_sym_async] = ACTIONS(1303), + [anon_sym_break] = ACTIONS(1303), + [anon_sym_const] = ACTIONS(1303), + [anon_sym_continue] = ACTIONS(1303), + [anon_sym_default] = ACTIONS(1303), + [anon_sym_enum] = ACTIONS(1303), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1303), + [anon_sym_if] = ACTIONS(1303), + [anon_sym_impl] = ACTIONS(1303), + [anon_sym_let] = ACTIONS(1303), + [anon_sym_loop] = ACTIONS(1303), + [anon_sym_match] = ACTIONS(1303), + [anon_sym_mod] = ACTIONS(1303), + [anon_sym_pub] = ACTIONS(1303), + [anon_sym_return] = ACTIONS(1303), + [anon_sym_static] = ACTIONS(1303), + [anon_sym_struct] = ACTIONS(1303), + [anon_sym_trait] = ACTIONS(1303), + [anon_sym_type] = ACTIONS(1303), + [anon_sym_union] = ACTIONS(1303), + [anon_sym_unsafe] = ACTIONS(1303), + [anon_sym_use] = ACTIONS(1303), + [anon_sym_while] = ACTIONS(1303), + [anon_sym_extern] = ACTIONS(1303), + [anon_sym_yield] = ACTIONS(1303), + [anon_sym_move] = ACTIONS(1303), + [anon_sym_try] = ACTIONS(1303), + [sym_integer_literal] = ACTIONS(1301), + [aux_sym_string_literal_token1] = ACTIONS(1301), + [sym_char_literal] = ACTIONS(1301), + [anon_sym_true] = ACTIONS(1303), + [anon_sym_false] = ACTIONS(1303), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1303), + [sym_super] = ACTIONS(1303), + [sym_crate] = ACTIONS(1303), + [sym_metavariable] = ACTIONS(1301), + [sym__raw_string_literal_start] = ACTIONS(1301), + [sym_float_literal] = ACTIONS(1301), }, [710] = { [sym_line_comment] = STATE(710), [sym_block_comment] = STATE(710), - [ts_builtin_sym_end] = ACTIONS(2681), - [sym_identifier] = ACTIONS(2683), - [anon_sym_SEMI] = ACTIONS(2681), - [anon_sym_macro_rules_BANG] = ACTIONS(2681), - [anon_sym_LPAREN] = ACTIONS(2681), - [anon_sym_LBRACK] = ACTIONS(2681), - [anon_sym_LBRACE] = ACTIONS(2681), - [anon_sym_RBRACE] = ACTIONS(2681), - [anon_sym_STAR] = ACTIONS(2681), - [anon_sym_u8] = ACTIONS(2683), - [anon_sym_i8] = ACTIONS(2683), - [anon_sym_u16] = ACTIONS(2683), - [anon_sym_i16] = ACTIONS(2683), - [anon_sym_u32] = ACTIONS(2683), - [anon_sym_i32] = ACTIONS(2683), - [anon_sym_u64] = ACTIONS(2683), - [anon_sym_i64] = ACTIONS(2683), - [anon_sym_u128] = ACTIONS(2683), - [anon_sym_i128] = ACTIONS(2683), - [anon_sym_isize] = ACTIONS(2683), - [anon_sym_usize] = ACTIONS(2683), - [anon_sym_f32] = ACTIONS(2683), - [anon_sym_f64] = ACTIONS(2683), - [anon_sym_bool] = ACTIONS(2683), - [anon_sym_str] = ACTIONS(2683), - [anon_sym_char] = ACTIONS(2683), - [anon_sym_DASH] = ACTIONS(2681), - [anon_sym_BANG] = ACTIONS(2681), - [anon_sym_AMP] = ACTIONS(2681), - [anon_sym_PIPE] = ACTIONS(2681), - [anon_sym_LT] = ACTIONS(2681), - [anon_sym_DOT_DOT] = ACTIONS(2681), - [anon_sym_COLON_COLON] = ACTIONS(2681), - [anon_sym_POUND] = ACTIONS(2681), - [anon_sym_SQUOTE] = ACTIONS(2683), - [anon_sym_async] = ACTIONS(2683), - [anon_sym_break] = ACTIONS(2683), - [anon_sym_const] = ACTIONS(2683), - [anon_sym_continue] = ACTIONS(2683), - [anon_sym_default] = ACTIONS(2683), - [anon_sym_enum] = ACTIONS(2683), - [anon_sym_fn] = ACTIONS(2683), - [anon_sym_for] = ACTIONS(2683), - [anon_sym_if] = ACTIONS(2683), - [anon_sym_impl] = ACTIONS(2683), - [anon_sym_let] = ACTIONS(2683), - [anon_sym_loop] = ACTIONS(2683), - [anon_sym_match] = ACTIONS(2683), - [anon_sym_mod] = ACTIONS(2683), - [anon_sym_pub] = ACTIONS(2683), - [anon_sym_return] = ACTIONS(2683), - [anon_sym_static] = ACTIONS(2683), - [anon_sym_struct] = ACTIONS(2683), - [anon_sym_trait] = ACTIONS(2683), - [anon_sym_type] = ACTIONS(2683), - [anon_sym_union] = ACTIONS(2683), - [anon_sym_unsafe] = ACTIONS(2683), - [anon_sym_use] = ACTIONS(2683), - [anon_sym_while] = ACTIONS(2683), - [anon_sym_extern] = ACTIONS(2683), - [anon_sym_yield] = ACTIONS(2683), - [anon_sym_move] = ACTIONS(2683), - [anon_sym_try] = ACTIONS(2683), - [sym_integer_literal] = ACTIONS(2681), - [aux_sym_string_literal_token1] = ACTIONS(2681), - [sym_char_literal] = ACTIONS(2681), - [anon_sym_true] = ACTIONS(2683), - [anon_sym_false] = ACTIONS(2683), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2683), - [sym_super] = ACTIONS(2683), - [sym_crate] = ACTIONS(2683), - [sym_metavariable] = ACTIONS(2681), - [sym__raw_string_literal_start] = ACTIONS(2681), - [sym_float_literal] = ACTIONS(2681), + [ts_builtin_sym_end] = ACTIONS(2683), + [sym_identifier] = ACTIONS(2685), + [anon_sym_SEMI] = ACTIONS(2683), + [anon_sym_macro_rules_BANG] = ACTIONS(2683), + [anon_sym_LPAREN] = ACTIONS(2683), + [anon_sym_LBRACK] = ACTIONS(2683), + [anon_sym_LBRACE] = ACTIONS(2683), + [anon_sym_RBRACE] = ACTIONS(2683), + [anon_sym_macro] = ACTIONS(2685), + [anon_sym_STAR] = ACTIONS(2683), + [anon_sym_u8] = ACTIONS(2685), + [anon_sym_i8] = ACTIONS(2685), + [anon_sym_u16] = ACTIONS(2685), + [anon_sym_i16] = ACTIONS(2685), + [anon_sym_u32] = ACTIONS(2685), + [anon_sym_i32] = ACTIONS(2685), + [anon_sym_u64] = ACTIONS(2685), + [anon_sym_i64] = ACTIONS(2685), + [anon_sym_u128] = ACTIONS(2685), + [anon_sym_i128] = ACTIONS(2685), + [anon_sym_isize] = ACTIONS(2685), + [anon_sym_usize] = ACTIONS(2685), + [anon_sym_f32] = ACTIONS(2685), + [anon_sym_f64] = ACTIONS(2685), + [anon_sym_bool] = ACTIONS(2685), + [anon_sym_str] = ACTIONS(2685), + [anon_sym_char] = ACTIONS(2685), + [anon_sym_DASH] = ACTIONS(2683), + [anon_sym_BANG] = ACTIONS(2683), + [anon_sym_AMP] = ACTIONS(2683), + [anon_sym_PIPE] = ACTIONS(2683), + [anon_sym_LT] = ACTIONS(2683), + [anon_sym_DOT_DOT] = ACTIONS(2683), + [anon_sym_COLON_COLON] = ACTIONS(2683), + [anon_sym_POUND] = ACTIONS(2683), + [anon_sym_SQUOTE] = ACTIONS(2685), + [anon_sym_async] = ACTIONS(2685), + [anon_sym_break] = ACTIONS(2685), + [anon_sym_const] = ACTIONS(2685), + [anon_sym_continue] = ACTIONS(2685), + [anon_sym_default] = ACTIONS(2685), + [anon_sym_enum] = ACTIONS(2685), + [anon_sym_fn] = ACTIONS(2685), + [anon_sym_for] = ACTIONS(2685), + [anon_sym_if] = ACTIONS(2685), + [anon_sym_impl] = ACTIONS(2685), + [anon_sym_let] = ACTIONS(2685), + [anon_sym_loop] = ACTIONS(2685), + [anon_sym_match] = ACTIONS(2685), + [anon_sym_mod] = ACTIONS(2685), + [anon_sym_pub] = ACTIONS(2685), + [anon_sym_return] = ACTIONS(2685), + [anon_sym_static] = ACTIONS(2685), + [anon_sym_struct] = ACTIONS(2685), + [anon_sym_trait] = ACTIONS(2685), + [anon_sym_type] = ACTIONS(2685), + [anon_sym_union] = ACTIONS(2685), + [anon_sym_unsafe] = ACTIONS(2685), + [anon_sym_use] = ACTIONS(2685), + [anon_sym_while] = ACTIONS(2685), + [anon_sym_extern] = ACTIONS(2685), + [anon_sym_yield] = ACTIONS(2685), + [anon_sym_move] = ACTIONS(2685), + [anon_sym_try] = ACTIONS(2685), + [sym_integer_literal] = ACTIONS(2683), + [aux_sym_string_literal_token1] = ACTIONS(2683), + [sym_char_literal] = ACTIONS(2683), + [anon_sym_true] = ACTIONS(2685), + [anon_sym_false] = ACTIONS(2685), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2685), + [sym_super] = ACTIONS(2685), + [sym_crate] = ACTIONS(2685), + [sym_metavariable] = ACTIONS(2683), + [sym__raw_string_literal_start] = ACTIONS(2683), + [sym_float_literal] = ACTIONS(2683), }, [711] = { [sym_line_comment] = STATE(711), [sym_block_comment] = STATE(711), - [ts_builtin_sym_end] = ACTIONS(2685), - [sym_identifier] = ACTIONS(2687), - [anon_sym_SEMI] = ACTIONS(2685), - [anon_sym_macro_rules_BANG] = ACTIONS(2685), - [anon_sym_LPAREN] = ACTIONS(2685), - [anon_sym_LBRACK] = ACTIONS(2685), - [anon_sym_LBRACE] = ACTIONS(2685), - [anon_sym_RBRACE] = ACTIONS(2685), - [anon_sym_STAR] = ACTIONS(2685), - [anon_sym_u8] = ACTIONS(2687), - [anon_sym_i8] = ACTIONS(2687), - [anon_sym_u16] = ACTIONS(2687), - [anon_sym_i16] = ACTIONS(2687), - [anon_sym_u32] = ACTIONS(2687), - [anon_sym_i32] = ACTIONS(2687), - [anon_sym_u64] = ACTIONS(2687), - [anon_sym_i64] = ACTIONS(2687), - [anon_sym_u128] = ACTIONS(2687), - [anon_sym_i128] = ACTIONS(2687), - [anon_sym_isize] = ACTIONS(2687), - [anon_sym_usize] = ACTIONS(2687), - [anon_sym_f32] = ACTIONS(2687), - [anon_sym_f64] = ACTIONS(2687), - [anon_sym_bool] = ACTIONS(2687), - [anon_sym_str] = ACTIONS(2687), - [anon_sym_char] = ACTIONS(2687), - [anon_sym_DASH] = ACTIONS(2685), - [anon_sym_BANG] = ACTIONS(2685), - [anon_sym_AMP] = ACTIONS(2685), - [anon_sym_PIPE] = ACTIONS(2685), - [anon_sym_LT] = ACTIONS(2685), - [anon_sym_DOT_DOT] = ACTIONS(2685), - [anon_sym_COLON_COLON] = ACTIONS(2685), - [anon_sym_POUND] = ACTIONS(2685), - [anon_sym_SQUOTE] = ACTIONS(2687), - [anon_sym_async] = ACTIONS(2687), - [anon_sym_break] = ACTIONS(2687), - [anon_sym_const] = ACTIONS(2687), - [anon_sym_continue] = ACTIONS(2687), - [anon_sym_default] = ACTIONS(2687), - [anon_sym_enum] = ACTIONS(2687), - [anon_sym_fn] = ACTIONS(2687), - [anon_sym_for] = ACTIONS(2687), - [anon_sym_if] = ACTIONS(2687), - [anon_sym_impl] = ACTIONS(2687), - [anon_sym_let] = ACTIONS(2687), - [anon_sym_loop] = ACTIONS(2687), - [anon_sym_match] = ACTIONS(2687), - [anon_sym_mod] = ACTIONS(2687), - [anon_sym_pub] = ACTIONS(2687), - [anon_sym_return] = ACTIONS(2687), - [anon_sym_static] = ACTIONS(2687), - [anon_sym_struct] = ACTIONS(2687), - [anon_sym_trait] = ACTIONS(2687), - [anon_sym_type] = ACTIONS(2687), - [anon_sym_union] = ACTIONS(2687), - [anon_sym_unsafe] = ACTIONS(2687), - [anon_sym_use] = ACTIONS(2687), - [anon_sym_while] = ACTIONS(2687), - [anon_sym_extern] = ACTIONS(2687), - [anon_sym_yield] = ACTIONS(2687), - [anon_sym_move] = ACTIONS(2687), - [anon_sym_try] = ACTIONS(2687), - [sym_integer_literal] = ACTIONS(2685), - [aux_sym_string_literal_token1] = ACTIONS(2685), - [sym_char_literal] = ACTIONS(2685), - [anon_sym_true] = ACTIONS(2687), - [anon_sym_false] = ACTIONS(2687), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2687), - [sym_super] = ACTIONS(2687), - [sym_crate] = ACTIONS(2687), - [sym_metavariable] = ACTIONS(2685), - [sym__raw_string_literal_start] = ACTIONS(2685), - [sym_float_literal] = ACTIONS(2685), + [ts_builtin_sym_end] = ACTIONS(2687), + [sym_identifier] = ACTIONS(2689), + [anon_sym_SEMI] = ACTIONS(2687), + [anon_sym_macro_rules_BANG] = ACTIONS(2687), + [anon_sym_LPAREN] = ACTIONS(2687), + [anon_sym_LBRACK] = ACTIONS(2687), + [anon_sym_LBRACE] = ACTIONS(2687), + [anon_sym_RBRACE] = ACTIONS(2687), + [anon_sym_macro] = ACTIONS(2689), + [anon_sym_STAR] = ACTIONS(2687), + [anon_sym_u8] = ACTIONS(2689), + [anon_sym_i8] = ACTIONS(2689), + [anon_sym_u16] = ACTIONS(2689), + [anon_sym_i16] = ACTIONS(2689), + [anon_sym_u32] = ACTIONS(2689), + [anon_sym_i32] = ACTIONS(2689), + [anon_sym_u64] = ACTIONS(2689), + [anon_sym_i64] = ACTIONS(2689), + [anon_sym_u128] = ACTIONS(2689), + [anon_sym_i128] = ACTIONS(2689), + [anon_sym_isize] = ACTIONS(2689), + [anon_sym_usize] = ACTIONS(2689), + [anon_sym_f32] = ACTIONS(2689), + [anon_sym_f64] = ACTIONS(2689), + [anon_sym_bool] = ACTIONS(2689), + [anon_sym_str] = ACTIONS(2689), + [anon_sym_char] = ACTIONS(2689), + [anon_sym_DASH] = ACTIONS(2687), + [anon_sym_BANG] = ACTIONS(2687), + [anon_sym_AMP] = ACTIONS(2687), + [anon_sym_PIPE] = ACTIONS(2687), + [anon_sym_LT] = ACTIONS(2687), + [anon_sym_DOT_DOT] = ACTIONS(2687), + [anon_sym_COLON_COLON] = ACTIONS(2687), + [anon_sym_POUND] = ACTIONS(2687), + [anon_sym_SQUOTE] = ACTIONS(2689), + [anon_sym_async] = ACTIONS(2689), + [anon_sym_break] = ACTIONS(2689), + [anon_sym_const] = ACTIONS(2689), + [anon_sym_continue] = ACTIONS(2689), + [anon_sym_default] = ACTIONS(2689), + [anon_sym_enum] = ACTIONS(2689), + [anon_sym_fn] = ACTIONS(2689), + [anon_sym_for] = ACTIONS(2689), + [anon_sym_if] = ACTIONS(2689), + [anon_sym_impl] = ACTIONS(2689), + [anon_sym_let] = ACTIONS(2689), + [anon_sym_loop] = ACTIONS(2689), + [anon_sym_match] = ACTIONS(2689), + [anon_sym_mod] = ACTIONS(2689), + [anon_sym_pub] = ACTIONS(2689), + [anon_sym_return] = ACTIONS(2689), + [anon_sym_static] = ACTIONS(2689), + [anon_sym_struct] = ACTIONS(2689), + [anon_sym_trait] = ACTIONS(2689), + [anon_sym_type] = ACTIONS(2689), + [anon_sym_union] = ACTIONS(2689), + [anon_sym_unsafe] = ACTIONS(2689), + [anon_sym_use] = ACTIONS(2689), + [anon_sym_while] = ACTIONS(2689), + [anon_sym_extern] = ACTIONS(2689), + [anon_sym_yield] = ACTIONS(2689), + [anon_sym_move] = ACTIONS(2689), + [anon_sym_try] = ACTIONS(2689), + [sym_integer_literal] = ACTIONS(2687), + [aux_sym_string_literal_token1] = ACTIONS(2687), + [sym_char_literal] = ACTIONS(2687), + [anon_sym_true] = ACTIONS(2689), + [anon_sym_false] = ACTIONS(2689), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2689), + [sym_super] = ACTIONS(2689), + [sym_crate] = ACTIONS(2689), + [sym_metavariable] = ACTIONS(2687), + [sym__raw_string_literal_start] = ACTIONS(2687), + [sym_float_literal] = ACTIONS(2687), }, [712] = { [sym_line_comment] = STATE(712), [sym_block_comment] = STATE(712), - [ts_builtin_sym_end] = ACTIONS(2689), - [sym_identifier] = ACTIONS(2691), - [anon_sym_SEMI] = ACTIONS(2689), - [anon_sym_macro_rules_BANG] = ACTIONS(2689), - [anon_sym_LPAREN] = ACTIONS(2689), - [anon_sym_LBRACK] = ACTIONS(2689), - [anon_sym_LBRACE] = ACTIONS(2689), - [anon_sym_RBRACE] = ACTIONS(2689), - [anon_sym_STAR] = ACTIONS(2689), - [anon_sym_u8] = ACTIONS(2691), - [anon_sym_i8] = ACTIONS(2691), - [anon_sym_u16] = ACTIONS(2691), - [anon_sym_i16] = ACTIONS(2691), - [anon_sym_u32] = ACTIONS(2691), - [anon_sym_i32] = ACTIONS(2691), - [anon_sym_u64] = ACTIONS(2691), - [anon_sym_i64] = ACTIONS(2691), - [anon_sym_u128] = ACTIONS(2691), - [anon_sym_i128] = ACTIONS(2691), - [anon_sym_isize] = ACTIONS(2691), - [anon_sym_usize] = ACTIONS(2691), - [anon_sym_f32] = ACTIONS(2691), - [anon_sym_f64] = ACTIONS(2691), - [anon_sym_bool] = ACTIONS(2691), - [anon_sym_str] = ACTIONS(2691), - [anon_sym_char] = ACTIONS(2691), - [anon_sym_DASH] = ACTIONS(2689), - [anon_sym_BANG] = ACTIONS(2689), - [anon_sym_AMP] = ACTIONS(2689), - [anon_sym_PIPE] = ACTIONS(2689), - [anon_sym_LT] = ACTIONS(2689), - [anon_sym_DOT_DOT] = ACTIONS(2689), - [anon_sym_COLON_COLON] = ACTIONS(2689), - [anon_sym_POUND] = ACTIONS(2689), - [anon_sym_SQUOTE] = ACTIONS(2691), - [anon_sym_async] = ACTIONS(2691), - [anon_sym_break] = ACTIONS(2691), - [anon_sym_const] = ACTIONS(2691), - [anon_sym_continue] = ACTIONS(2691), - [anon_sym_default] = ACTIONS(2691), - [anon_sym_enum] = ACTIONS(2691), - [anon_sym_fn] = ACTIONS(2691), - [anon_sym_for] = ACTIONS(2691), - [anon_sym_if] = ACTIONS(2691), - [anon_sym_impl] = ACTIONS(2691), - [anon_sym_let] = ACTIONS(2691), - [anon_sym_loop] = ACTIONS(2691), - [anon_sym_match] = ACTIONS(2691), - [anon_sym_mod] = ACTIONS(2691), - [anon_sym_pub] = ACTIONS(2691), - [anon_sym_return] = ACTIONS(2691), - [anon_sym_static] = ACTIONS(2691), - [anon_sym_struct] = ACTIONS(2691), - [anon_sym_trait] = ACTIONS(2691), - [anon_sym_type] = ACTIONS(2691), - [anon_sym_union] = ACTIONS(2691), - [anon_sym_unsafe] = ACTIONS(2691), - [anon_sym_use] = ACTIONS(2691), - [anon_sym_while] = ACTIONS(2691), - [anon_sym_extern] = ACTIONS(2691), - [anon_sym_yield] = ACTIONS(2691), - [anon_sym_move] = ACTIONS(2691), - [anon_sym_try] = ACTIONS(2691), - [sym_integer_literal] = ACTIONS(2689), - [aux_sym_string_literal_token1] = ACTIONS(2689), - [sym_char_literal] = ACTIONS(2689), - [anon_sym_true] = ACTIONS(2691), - [anon_sym_false] = ACTIONS(2691), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2691), - [sym_super] = ACTIONS(2691), - [sym_crate] = ACTIONS(2691), - [sym_metavariable] = ACTIONS(2689), - [sym__raw_string_literal_start] = ACTIONS(2689), - [sym_float_literal] = ACTIONS(2689), + [ts_builtin_sym_end] = ACTIONS(2691), + [sym_identifier] = ACTIONS(2693), + [anon_sym_SEMI] = ACTIONS(2691), + [anon_sym_macro_rules_BANG] = ACTIONS(2691), + [anon_sym_LPAREN] = ACTIONS(2691), + [anon_sym_LBRACK] = ACTIONS(2691), + [anon_sym_LBRACE] = ACTIONS(2691), + [anon_sym_RBRACE] = ACTIONS(2691), + [anon_sym_macro] = ACTIONS(2693), + [anon_sym_STAR] = ACTIONS(2691), + [anon_sym_u8] = ACTIONS(2693), + [anon_sym_i8] = ACTIONS(2693), + [anon_sym_u16] = ACTIONS(2693), + [anon_sym_i16] = ACTIONS(2693), + [anon_sym_u32] = ACTIONS(2693), + [anon_sym_i32] = ACTIONS(2693), + [anon_sym_u64] = ACTIONS(2693), + [anon_sym_i64] = ACTIONS(2693), + [anon_sym_u128] = ACTIONS(2693), + [anon_sym_i128] = ACTIONS(2693), + [anon_sym_isize] = ACTIONS(2693), + [anon_sym_usize] = ACTIONS(2693), + [anon_sym_f32] = ACTIONS(2693), + [anon_sym_f64] = ACTIONS(2693), + [anon_sym_bool] = ACTIONS(2693), + [anon_sym_str] = ACTIONS(2693), + [anon_sym_char] = ACTIONS(2693), + [anon_sym_DASH] = ACTIONS(2691), + [anon_sym_BANG] = ACTIONS(2691), + [anon_sym_AMP] = ACTIONS(2691), + [anon_sym_PIPE] = ACTIONS(2691), + [anon_sym_LT] = ACTIONS(2691), + [anon_sym_DOT_DOT] = ACTIONS(2691), + [anon_sym_COLON_COLON] = ACTIONS(2691), + [anon_sym_POUND] = ACTIONS(2691), + [anon_sym_SQUOTE] = ACTIONS(2693), + [anon_sym_async] = ACTIONS(2693), + [anon_sym_break] = ACTIONS(2693), + [anon_sym_const] = ACTIONS(2693), + [anon_sym_continue] = ACTIONS(2693), + [anon_sym_default] = ACTIONS(2693), + [anon_sym_enum] = ACTIONS(2693), + [anon_sym_fn] = ACTIONS(2693), + [anon_sym_for] = ACTIONS(2693), + [anon_sym_if] = ACTIONS(2693), + [anon_sym_impl] = ACTIONS(2693), + [anon_sym_let] = ACTIONS(2693), + [anon_sym_loop] = ACTIONS(2693), + [anon_sym_match] = ACTIONS(2693), + [anon_sym_mod] = ACTIONS(2693), + [anon_sym_pub] = ACTIONS(2693), + [anon_sym_return] = ACTIONS(2693), + [anon_sym_static] = ACTIONS(2693), + [anon_sym_struct] = ACTIONS(2693), + [anon_sym_trait] = ACTIONS(2693), + [anon_sym_type] = ACTIONS(2693), + [anon_sym_union] = ACTIONS(2693), + [anon_sym_unsafe] = ACTIONS(2693), + [anon_sym_use] = ACTIONS(2693), + [anon_sym_while] = ACTIONS(2693), + [anon_sym_extern] = ACTIONS(2693), + [anon_sym_yield] = ACTIONS(2693), + [anon_sym_move] = ACTIONS(2693), + [anon_sym_try] = ACTIONS(2693), + [sym_integer_literal] = ACTIONS(2691), + [aux_sym_string_literal_token1] = ACTIONS(2691), + [sym_char_literal] = ACTIONS(2691), + [anon_sym_true] = ACTIONS(2693), + [anon_sym_false] = ACTIONS(2693), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2693), + [sym_super] = ACTIONS(2693), + [sym_crate] = ACTIONS(2693), + [sym_metavariable] = ACTIONS(2691), + [sym__raw_string_literal_start] = ACTIONS(2691), + [sym_float_literal] = ACTIONS(2691), }, [713] = { [sym_line_comment] = STATE(713), [sym_block_comment] = STATE(713), - [ts_builtin_sym_end] = ACTIONS(2693), - [sym_identifier] = ACTIONS(2695), - [anon_sym_SEMI] = ACTIONS(2693), - [anon_sym_macro_rules_BANG] = ACTIONS(2693), - [anon_sym_LPAREN] = ACTIONS(2693), - [anon_sym_LBRACK] = ACTIONS(2693), - [anon_sym_LBRACE] = ACTIONS(2693), - [anon_sym_RBRACE] = ACTIONS(2693), - [anon_sym_STAR] = ACTIONS(2693), - [anon_sym_u8] = ACTIONS(2695), - [anon_sym_i8] = ACTIONS(2695), - [anon_sym_u16] = ACTIONS(2695), - [anon_sym_i16] = ACTIONS(2695), - [anon_sym_u32] = ACTIONS(2695), - [anon_sym_i32] = ACTIONS(2695), - [anon_sym_u64] = ACTIONS(2695), - [anon_sym_i64] = ACTIONS(2695), - [anon_sym_u128] = ACTIONS(2695), - [anon_sym_i128] = ACTIONS(2695), - [anon_sym_isize] = ACTIONS(2695), - [anon_sym_usize] = ACTIONS(2695), - [anon_sym_f32] = ACTIONS(2695), - [anon_sym_f64] = ACTIONS(2695), - [anon_sym_bool] = ACTIONS(2695), - [anon_sym_str] = ACTIONS(2695), - [anon_sym_char] = ACTIONS(2695), - [anon_sym_DASH] = ACTIONS(2693), - [anon_sym_BANG] = ACTIONS(2693), - [anon_sym_AMP] = ACTIONS(2693), - [anon_sym_PIPE] = ACTIONS(2693), - [anon_sym_LT] = ACTIONS(2693), - [anon_sym_DOT_DOT] = ACTIONS(2693), - [anon_sym_COLON_COLON] = ACTIONS(2693), - [anon_sym_POUND] = ACTIONS(2693), - [anon_sym_SQUOTE] = ACTIONS(2695), - [anon_sym_async] = ACTIONS(2695), - [anon_sym_break] = ACTIONS(2695), - [anon_sym_const] = ACTIONS(2695), - [anon_sym_continue] = ACTIONS(2695), - [anon_sym_default] = ACTIONS(2695), - [anon_sym_enum] = ACTIONS(2695), - [anon_sym_fn] = ACTIONS(2695), - [anon_sym_for] = ACTIONS(2695), - [anon_sym_if] = ACTIONS(2695), - [anon_sym_impl] = ACTIONS(2695), - [anon_sym_let] = ACTIONS(2695), - [anon_sym_loop] = ACTIONS(2695), - [anon_sym_match] = ACTIONS(2695), - [anon_sym_mod] = ACTIONS(2695), - [anon_sym_pub] = ACTIONS(2695), - [anon_sym_return] = ACTIONS(2695), - [anon_sym_static] = ACTIONS(2695), - [anon_sym_struct] = ACTIONS(2695), - [anon_sym_trait] = ACTIONS(2695), - [anon_sym_type] = ACTIONS(2695), - [anon_sym_union] = ACTIONS(2695), - [anon_sym_unsafe] = ACTIONS(2695), - [anon_sym_use] = ACTIONS(2695), - [anon_sym_while] = ACTIONS(2695), - [anon_sym_extern] = ACTIONS(2695), - [anon_sym_yield] = ACTIONS(2695), - [anon_sym_move] = ACTIONS(2695), - [anon_sym_try] = ACTIONS(2695), - [sym_integer_literal] = ACTIONS(2693), - [aux_sym_string_literal_token1] = ACTIONS(2693), - [sym_char_literal] = ACTIONS(2693), - [anon_sym_true] = ACTIONS(2695), - [anon_sym_false] = ACTIONS(2695), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2695), - [sym_super] = ACTIONS(2695), - [sym_crate] = ACTIONS(2695), - [sym_metavariable] = ACTIONS(2693), - [sym__raw_string_literal_start] = ACTIONS(2693), - [sym_float_literal] = ACTIONS(2693), + [ts_builtin_sym_end] = ACTIONS(2695), + [sym_identifier] = ACTIONS(2697), + [anon_sym_SEMI] = ACTIONS(2695), + [anon_sym_macro_rules_BANG] = ACTIONS(2695), + [anon_sym_LPAREN] = ACTIONS(2695), + [anon_sym_LBRACK] = ACTIONS(2695), + [anon_sym_LBRACE] = ACTIONS(2695), + [anon_sym_RBRACE] = ACTIONS(2695), + [anon_sym_macro] = ACTIONS(2697), + [anon_sym_STAR] = ACTIONS(2695), + [anon_sym_u8] = ACTIONS(2697), + [anon_sym_i8] = ACTIONS(2697), + [anon_sym_u16] = ACTIONS(2697), + [anon_sym_i16] = ACTIONS(2697), + [anon_sym_u32] = ACTIONS(2697), + [anon_sym_i32] = ACTIONS(2697), + [anon_sym_u64] = ACTIONS(2697), + [anon_sym_i64] = ACTIONS(2697), + [anon_sym_u128] = ACTIONS(2697), + [anon_sym_i128] = ACTIONS(2697), + [anon_sym_isize] = ACTIONS(2697), + [anon_sym_usize] = ACTIONS(2697), + [anon_sym_f32] = ACTIONS(2697), + [anon_sym_f64] = ACTIONS(2697), + [anon_sym_bool] = ACTIONS(2697), + [anon_sym_str] = ACTIONS(2697), + [anon_sym_char] = ACTIONS(2697), + [anon_sym_DASH] = ACTIONS(2695), + [anon_sym_BANG] = ACTIONS(2695), + [anon_sym_AMP] = ACTIONS(2695), + [anon_sym_PIPE] = ACTIONS(2695), + [anon_sym_LT] = ACTIONS(2695), + [anon_sym_DOT_DOT] = ACTIONS(2695), + [anon_sym_COLON_COLON] = ACTIONS(2695), + [anon_sym_POUND] = ACTIONS(2695), + [anon_sym_SQUOTE] = ACTIONS(2697), + [anon_sym_async] = ACTIONS(2697), + [anon_sym_break] = ACTIONS(2697), + [anon_sym_const] = ACTIONS(2697), + [anon_sym_continue] = ACTIONS(2697), + [anon_sym_default] = ACTIONS(2697), + [anon_sym_enum] = ACTIONS(2697), + [anon_sym_fn] = ACTIONS(2697), + [anon_sym_for] = ACTIONS(2697), + [anon_sym_if] = ACTIONS(2697), + [anon_sym_impl] = ACTIONS(2697), + [anon_sym_let] = ACTIONS(2697), + [anon_sym_loop] = ACTIONS(2697), + [anon_sym_match] = ACTIONS(2697), + [anon_sym_mod] = ACTIONS(2697), + [anon_sym_pub] = ACTIONS(2697), + [anon_sym_return] = ACTIONS(2697), + [anon_sym_static] = ACTIONS(2697), + [anon_sym_struct] = ACTIONS(2697), + [anon_sym_trait] = ACTIONS(2697), + [anon_sym_type] = ACTIONS(2697), + [anon_sym_union] = ACTIONS(2697), + [anon_sym_unsafe] = ACTIONS(2697), + [anon_sym_use] = ACTIONS(2697), + [anon_sym_while] = ACTIONS(2697), + [anon_sym_extern] = ACTIONS(2697), + [anon_sym_yield] = ACTIONS(2697), + [anon_sym_move] = ACTIONS(2697), + [anon_sym_try] = ACTIONS(2697), + [sym_integer_literal] = ACTIONS(2695), + [aux_sym_string_literal_token1] = ACTIONS(2695), + [sym_char_literal] = ACTIONS(2695), + [anon_sym_true] = ACTIONS(2697), + [anon_sym_false] = ACTIONS(2697), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2697), + [sym_super] = ACTIONS(2697), + [sym_crate] = ACTIONS(2697), + [sym_metavariable] = ACTIONS(2695), + [sym__raw_string_literal_start] = ACTIONS(2695), + [sym_float_literal] = ACTIONS(2695), }, [714] = { [sym_line_comment] = STATE(714), [sym_block_comment] = STATE(714), - [ts_builtin_sym_end] = ACTIONS(2697), - [sym_identifier] = ACTIONS(2699), - [anon_sym_SEMI] = ACTIONS(2697), - [anon_sym_macro_rules_BANG] = ACTIONS(2697), - [anon_sym_LPAREN] = ACTIONS(2697), - [anon_sym_LBRACK] = ACTIONS(2697), - [anon_sym_LBRACE] = ACTIONS(2697), - [anon_sym_RBRACE] = ACTIONS(2697), - [anon_sym_STAR] = ACTIONS(2697), - [anon_sym_u8] = ACTIONS(2699), - [anon_sym_i8] = ACTIONS(2699), - [anon_sym_u16] = ACTIONS(2699), - [anon_sym_i16] = ACTIONS(2699), - [anon_sym_u32] = ACTIONS(2699), - [anon_sym_i32] = ACTIONS(2699), - [anon_sym_u64] = ACTIONS(2699), - [anon_sym_i64] = ACTIONS(2699), - [anon_sym_u128] = ACTIONS(2699), - [anon_sym_i128] = ACTIONS(2699), - [anon_sym_isize] = ACTIONS(2699), - [anon_sym_usize] = ACTIONS(2699), - [anon_sym_f32] = ACTIONS(2699), - [anon_sym_f64] = ACTIONS(2699), - [anon_sym_bool] = ACTIONS(2699), - [anon_sym_str] = ACTIONS(2699), - [anon_sym_char] = ACTIONS(2699), - [anon_sym_DASH] = ACTIONS(2697), - [anon_sym_BANG] = ACTIONS(2697), - [anon_sym_AMP] = ACTIONS(2697), - [anon_sym_PIPE] = ACTIONS(2697), - [anon_sym_LT] = ACTIONS(2697), - [anon_sym_DOT_DOT] = ACTIONS(2697), - [anon_sym_COLON_COLON] = ACTIONS(2697), - [anon_sym_POUND] = ACTIONS(2697), - [anon_sym_SQUOTE] = ACTIONS(2699), - [anon_sym_async] = ACTIONS(2699), - [anon_sym_break] = ACTIONS(2699), - [anon_sym_const] = ACTIONS(2699), - [anon_sym_continue] = ACTIONS(2699), - [anon_sym_default] = ACTIONS(2699), - [anon_sym_enum] = ACTIONS(2699), - [anon_sym_fn] = ACTIONS(2699), - [anon_sym_for] = ACTIONS(2699), - [anon_sym_if] = ACTIONS(2699), - [anon_sym_impl] = ACTIONS(2699), - [anon_sym_let] = ACTIONS(2699), - [anon_sym_loop] = ACTIONS(2699), - [anon_sym_match] = ACTIONS(2699), - [anon_sym_mod] = ACTIONS(2699), - [anon_sym_pub] = ACTIONS(2699), - [anon_sym_return] = ACTIONS(2699), - [anon_sym_static] = ACTIONS(2699), - [anon_sym_struct] = ACTIONS(2699), - [anon_sym_trait] = ACTIONS(2699), - [anon_sym_type] = ACTIONS(2699), - [anon_sym_union] = ACTIONS(2699), - [anon_sym_unsafe] = ACTIONS(2699), - [anon_sym_use] = ACTIONS(2699), - [anon_sym_while] = ACTIONS(2699), - [anon_sym_extern] = ACTIONS(2699), - [anon_sym_yield] = ACTIONS(2699), - [anon_sym_move] = ACTIONS(2699), - [anon_sym_try] = ACTIONS(2699), - [sym_integer_literal] = ACTIONS(2697), - [aux_sym_string_literal_token1] = ACTIONS(2697), - [sym_char_literal] = ACTIONS(2697), - [anon_sym_true] = ACTIONS(2699), - [anon_sym_false] = ACTIONS(2699), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2699), - [sym_super] = ACTIONS(2699), - [sym_crate] = ACTIONS(2699), - [sym_metavariable] = ACTIONS(2697), - [sym__raw_string_literal_start] = ACTIONS(2697), - [sym_float_literal] = ACTIONS(2697), + [ts_builtin_sym_end] = ACTIONS(2699), + [sym_identifier] = ACTIONS(2701), + [anon_sym_SEMI] = ACTIONS(2699), + [anon_sym_macro_rules_BANG] = ACTIONS(2699), + [anon_sym_LPAREN] = ACTIONS(2699), + [anon_sym_LBRACK] = ACTIONS(2699), + [anon_sym_LBRACE] = ACTIONS(2699), + [anon_sym_RBRACE] = ACTIONS(2699), + [anon_sym_macro] = ACTIONS(2701), + [anon_sym_STAR] = ACTIONS(2699), + [anon_sym_u8] = ACTIONS(2701), + [anon_sym_i8] = ACTIONS(2701), + [anon_sym_u16] = ACTIONS(2701), + [anon_sym_i16] = ACTIONS(2701), + [anon_sym_u32] = ACTIONS(2701), + [anon_sym_i32] = ACTIONS(2701), + [anon_sym_u64] = ACTIONS(2701), + [anon_sym_i64] = ACTIONS(2701), + [anon_sym_u128] = ACTIONS(2701), + [anon_sym_i128] = ACTIONS(2701), + [anon_sym_isize] = ACTIONS(2701), + [anon_sym_usize] = ACTIONS(2701), + [anon_sym_f32] = ACTIONS(2701), + [anon_sym_f64] = ACTIONS(2701), + [anon_sym_bool] = ACTIONS(2701), + [anon_sym_str] = ACTIONS(2701), + [anon_sym_char] = ACTIONS(2701), + [anon_sym_DASH] = ACTIONS(2699), + [anon_sym_BANG] = ACTIONS(2699), + [anon_sym_AMP] = ACTIONS(2699), + [anon_sym_PIPE] = ACTIONS(2699), + [anon_sym_LT] = ACTIONS(2699), + [anon_sym_DOT_DOT] = ACTIONS(2699), + [anon_sym_COLON_COLON] = ACTIONS(2699), + [anon_sym_POUND] = ACTIONS(2699), + [anon_sym_SQUOTE] = ACTIONS(2701), + [anon_sym_async] = ACTIONS(2701), + [anon_sym_break] = ACTIONS(2701), + [anon_sym_const] = ACTIONS(2701), + [anon_sym_continue] = ACTIONS(2701), + [anon_sym_default] = ACTIONS(2701), + [anon_sym_enum] = ACTIONS(2701), + [anon_sym_fn] = ACTIONS(2701), + [anon_sym_for] = ACTIONS(2701), + [anon_sym_if] = ACTIONS(2701), + [anon_sym_impl] = ACTIONS(2701), + [anon_sym_let] = ACTIONS(2701), + [anon_sym_loop] = ACTIONS(2701), + [anon_sym_match] = ACTIONS(2701), + [anon_sym_mod] = ACTIONS(2701), + [anon_sym_pub] = ACTIONS(2701), + [anon_sym_return] = ACTIONS(2701), + [anon_sym_static] = ACTIONS(2701), + [anon_sym_struct] = ACTIONS(2701), + [anon_sym_trait] = ACTIONS(2701), + [anon_sym_type] = ACTIONS(2701), + [anon_sym_union] = ACTIONS(2701), + [anon_sym_unsafe] = ACTIONS(2701), + [anon_sym_use] = ACTIONS(2701), + [anon_sym_while] = ACTIONS(2701), + [anon_sym_extern] = ACTIONS(2701), + [anon_sym_yield] = ACTIONS(2701), + [anon_sym_move] = ACTIONS(2701), + [anon_sym_try] = ACTIONS(2701), + [sym_integer_literal] = ACTIONS(2699), + [aux_sym_string_literal_token1] = ACTIONS(2699), + [sym_char_literal] = ACTIONS(2699), + [anon_sym_true] = ACTIONS(2701), + [anon_sym_false] = ACTIONS(2701), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2701), + [sym_super] = ACTIONS(2701), + [sym_crate] = ACTIONS(2701), + [sym_metavariable] = ACTIONS(2699), + [sym__raw_string_literal_start] = ACTIONS(2699), + [sym_float_literal] = ACTIONS(2699), }, [715] = { [sym_line_comment] = STATE(715), [sym_block_comment] = STATE(715), - [ts_builtin_sym_end] = ACTIONS(2701), - [sym_identifier] = ACTIONS(2703), - [anon_sym_SEMI] = ACTIONS(2701), - [anon_sym_macro_rules_BANG] = ACTIONS(2701), - [anon_sym_LPAREN] = ACTIONS(2701), - [anon_sym_LBRACK] = ACTIONS(2701), - [anon_sym_LBRACE] = ACTIONS(2701), - [anon_sym_RBRACE] = ACTIONS(2701), - [anon_sym_STAR] = ACTIONS(2701), - [anon_sym_u8] = ACTIONS(2703), - [anon_sym_i8] = ACTIONS(2703), - [anon_sym_u16] = ACTIONS(2703), - [anon_sym_i16] = ACTIONS(2703), - [anon_sym_u32] = ACTIONS(2703), - [anon_sym_i32] = ACTIONS(2703), - [anon_sym_u64] = ACTIONS(2703), - [anon_sym_i64] = ACTIONS(2703), - [anon_sym_u128] = ACTIONS(2703), - [anon_sym_i128] = ACTIONS(2703), - [anon_sym_isize] = ACTIONS(2703), - [anon_sym_usize] = ACTIONS(2703), - [anon_sym_f32] = ACTIONS(2703), - [anon_sym_f64] = ACTIONS(2703), - [anon_sym_bool] = ACTIONS(2703), - [anon_sym_str] = ACTIONS(2703), - [anon_sym_char] = ACTIONS(2703), - [anon_sym_DASH] = ACTIONS(2701), - [anon_sym_BANG] = ACTIONS(2701), - [anon_sym_AMP] = ACTIONS(2701), - [anon_sym_PIPE] = ACTIONS(2701), - [anon_sym_LT] = ACTIONS(2701), - [anon_sym_DOT_DOT] = ACTIONS(2701), - [anon_sym_COLON_COLON] = ACTIONS(2701), - [anon_sym_POUND] = ACTIONS(2701), - [anon_sym_SQUOTE] = ACTIONS(2703), - [anon_sym_async] = ACTIONS(2703), - [anon_sym_break] = ACTIONS(2703), - [anon_sym_const] = ACTIONS(2703), - [anon_sym_continue] = ACTIONS(2703), - [anon_sym_default] = ACTIONS(2703), - [anon_sym_enum] = ACTIONS(2703), - [anon_sym_fn] = ACTIONS(2703), - [anon_sym_for] = ACTIONS(2703), - [anon_sym_if] = ACTIONS(2703), - [anon_sym_impl] = ACTIONS(2703), - [anon_sym_let] = ACTIONS(2703), - [anon_sym_loop] = ACTIONS(2703), - [anon_sym_match] = ACTIONS(2703), - [anon_sym_mod] = ACTIONS(2703), - [anon_sym_pub] = ACTIONS(2703), - [anon_sym_return] = ACTIONS(2703), - [anon_sym_static] = ACTIONS(2703), - [anon_sym_struct] = ACTIONS(2703), - [anon_sym_trait] = ACTIONS(2703), - [anon_sym_type] = ACTIONS(2703), - [anon_sym_union] = ACTIONS(2703), - [anon_sym_unsafe] = ACTIONS(2703), - [anon_sym_use] = ACTIONS(2703), - [anon_sym_while] = ACTIONS(2703), - [anon_sym_extern] = ACTIONS(2703), - [anon_sym_yield] = ACTIONS(2703), - [anon_sym_move] = ACTIONS(2703), - [anon_sym_try] = ACTIONS(2703), - [sym_integer_literal] = ACTIONS(2701), - [aux_sym_string_literal_token1] = ACTIONS(2701), - [sym_char_literal] = ACTIONS(2701), - [anon_sym_true] = ACTIONS(2703), - [anon_sym_false] = ACTIONS(2703), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2703), - [sym_super] = ACTIONS(2703), - [sym_crate] = ACTIONS(2703), - [sym_metavariable] = ACTIONS(2701), - [sym__raw_string_literal_start] = ACTIONS(2701), - [sym_float_literal] = ACTIONS(2701), + [ts_builtin_sym_end] = ACTIONS(2703), + [sym_identifier] = ACTIONS(2705), + [anon_sym_SEMI] = ACTIONS(2703), + [anon_sym_macro_rules_BANG] = ACTIONS(2703), + [anon_sym_LPAREN] = ACTIONS(2703), + [anon_sym_LBRACK] = ACTIONS(2703), + [anon_sym_LBRACE] = ACTIONS(2703), + [anon_sym_RBRACE] = ACTIONS(2703), + [anon_sym_macro] = ACTIONS(2705), + [anon_sym_STAR] = ACTIONS(2703), + [anon_sym_u8] = ACTIONS(2705), + [anon_sym_i8] = ACTIONS(2705), + [anon_sym_u16] = ACTIONS(2705), + [anon_sym_i16] = ACTIONS(2705), + [anon_sym_u32] = ACTIONS(2705), + [anon_sym_i32] = ACTIONS(2705), + [anon_sym_u64] = ACTIONS(2705), + [anon_sym_i64] = ACTIONS(2705), + [anon_sym_u128] = ACTIONS(2705), + [anon_sym_i128] = ACTIONS(2705), + [anon_sym_isize] = ACTIONS(2705), + [anon_sym_usize] = ACTIONS(2705), + [anon_sym_f32] = ACTIONS(2705), + [anon_sym_f64] = ACTIONS(2705), + [anon_sym_bool] = ACTIONS(2705), + [anon_sym_str] = ACTIONS(2705), + [anon_sym_char] = ACTIONS(2705), + [anon_sym_DASH] = ACTIONS(2703), + [anon_sym_BANG] = ACTIONS(2703), + [anon_sym_AMP] = ACTIONS(2703), + [anon_sym_PIPE] = ACTIONS(2703), + [anon_sym_LT] = ACTIONS(2703), + [anon_sym_DOT_DOT] = ACTIONS(2703), + [anon_sym_COLON_COLON] = ACTIONS(2703), + [anon_sym_POUND] = ACTIONS(2703), + [anon_sym_SQUOTE] = ACTIONS(2705), + [anon_sym_async] = ACTIONS(2705), + [anon_sym_break] = ACTIONS(2705), + [anon_sym_const] = ACTIONS(2705), + [anon_sym_continue] = ACTIONS(2705), + [anon_sym_default] = ACTIONS(2705), + [anon_sym_enum] = ACTIONS(2705), + [anon_sym_fn] = ACTIONS(2705), + [anon_sym_for] = ACTIONS(2705), + [anon_sym_if] = ACTIONS(2705), + [anon_sym_impl] = ACTIONS(2705), + [anon_sym_let] = ACTIONS(2705), + [anon_sym_loop] = ACTIONS(2705), + [anon_sym_match] = ACTIONS(2705), + [anon_sym_mod] = ACTIONS(2705), + [anon_sym_pub] = ACTIONS(2705), + [anon_sym_return] = ACTIONS(2705), + [anon_sym_static] = ACTIONS(2705), + [anon_sym_struct] = ACTIONS(2705), + [anon_sym_trait] = ACTIONS(2705), + [anon_sym_type] = ACTIONS(2705), + [anon_sym_union] = ACTIONS(2705), + [anon_sym_unsafe] = ACTIONS(2705), + [anon_sym_use] = ACTIONS(2705), + [anon_sym_while] = ACTIONS(2705), + [anon_sym_extern] = ACTIONS(2705), + [anon_sym_yield] = ACTIONS(2705), + [anon_sym_move] = ACTIONS(2705), + [anon_sym_try] = ACTIONS(2705), + [sym_integer_literal] = ACTIONS(2703), + [aux_sym_string_literal_token1] = ACTIONS(2703), + [sym_char_literal] = ACTIONS(2703), + [anon_sym_true] = ACTIONS(2705), + [anon_sym_false] = ACTIONS(2705), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2705), + [sym_super] = ACTIONS(2705), + [sym_crate] = ACTIONS(2705), + [sym_metavariable] = ACTIONS(2703), + [sym__raw_string_literal_start] = ACTIONS(2703), + [sym_float_literal] = ACTIONS(2703), }, [716] = { [sym_line_comment] = STATE(716), [sym_block_comment] = STATE(716), - [ts_builtin_sym_end] = ACTIONS(2705), - [sym_identifier] = ACTIONS(2707), - [anon_sym_SEMI] = ACTIONS(2705), - [anon_sym_macro_rules_BANG] = ACTIONS(2705), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2705), - [anon_sym_LBRACE] = ACTIONS(2705), - [anon_sym_RBRACE] = ACTIONS(2705), - [anon_sym_STAR] = ACTIONS(2705), - [anon_sym_u8] = ACTIONS(2707), - [anon_sym_i8] = ACTIONS(2707), - [anon_sym_u16] = ACTIONS(2707), - [anon_sym_i16] = ACTIONS(2707), - [anon_sym_u32] = ACTIONS(2707), - [anon_sym_i32] = ACTIONS(2707), - [anon_sym_u64] = ACTIONS(2707), - [anon_sym_i64] = ACTIONS(2707), - [anon_sym_u128] = ACTIONS(2707), - [anon_sym_i128] = ACTIONS(2707), - [anon_sym_isize] = ACTIONS(2707), - [anon_sym_usize] = ACTIONS(2707), - [anon_sym_f32] = ACTIONS(2707), - [anon_sym_f64] = ACTIONS(2707), - [anon_sym_bool] = ACTIONS(2707), - [anon_sym_str] = ACTIONS(2707), - [anon_sym_char] = ACTIONS(2707), - [anon_sym_DASH] = ACTIONS(2705), - [anon_sym_BANG] = ACTIONS(2705), - [anon_sym_AMP] = ACTIONS(2705), - [anon_sym_PIPE] = ACTIONS(2705), - [anon_sym_LT] = ACTIONS(2705), - [anon_sym_DOT_DOT] = ACTIONS(2705), - [anon_sym_COLON_COLON] = ACTIONS(2705), - [anon_sym_POUND] = ACTIONS(2705), - [anon_sym_SQUOTE] = ACTIONS(2707), - [anon_sym_async] = ACTIONS(2707), - [anon_sym_break] = ACTIONS(2707), - [anon_sym_const] = ACTIONS(2707), - [anon_sym_continue] = ACTIONS(2707), - [anon_sym_default] = ACTIONS(2707), - [anon_sym_enum] = ACTIONS(2707), - [anon_sym_fn] = ACTIONS(2707), - [anon_sym_for] = ACTIONS(2707), - [anon_sym_if] = ACTIONS(2707), - [anon_sym_impl] = ACTIONS(2707), - [anon_sym_let] = ACTIONS(2707), - [anon_sym_loop] = ACTIONS(2707), - [anon_sym_match] = ACTIONS(2707), - [anon_sym_mod] = ACTIONS(2707), - [anon_sym_pub] = ACTIONS(2707), - [anon_sym_return] = ACTIONS(2707), - [anon_sym_static] = ACTIONS(2707), - [anon_sym_struct] = ACTIONS(2707), - [anon_sym_trait] = ACTIONS(2707), - [anon_sym_type] = ACTIONS(2707), - [anon_sym_union] = ACTIONS(2707), - [anon_sym_unsafe] = ACTIONS(2707), - [anon_sym_use] = ACTIONS(2707), - [anon_sym_while] = ACTIONS(2707), - [anon_sym_extern] = ACTIONS(2707), - [anon_sym_yield] = ACTIONS(2707), - [anon_sym_move] = ACTIONS(2707), - [anon_sym_try] = ACTIONS(2707), - [sym_integer_literal] = ACTIONS(2705), - [aux_sym_string_literal_token1] = ACTIONS(2705), - [sym_char_literal] = ACTIONS(2705), - [anon_sym_true] = ACTIONS(2707), - [anon_sym_false] = ACTIONS(2707), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2707), - [sym_super] = ACTIONS(2707), - [sym_crate] = ACTIONS(2707), - [sym_metavariable] = ACTIONS(2705), - [sym__raw_string_literal_start] = ACTIONS(2705), - [sym_float_literal] = ACTIONS(2705), + [ts_builtin_sym_end] = ACTIONS(2707), + [sym_identifier] = ACTIONS(2709), + [anon_sym_SEMI] = ACTIONS(2707), + [anon_sym_macro_rules_BANG] = ACTIONS(2707), + [anon_sym_LPAREN] = ACTIONS(2707), + [anon_sym_LBRACK] = ACTIONS(2707), + [anon_sym_LBRACE] = ACTIONS(2707), + [anon_sym_RBRACE] = ACTIONS(2707), + [anon_sym_macro] = ACTIONS(2709), + [anon_sym_STAR] = ACTIONS(2707), + [anon_sym_u8] = ACTIONS(2709), + [anon_sym_i8] = ACTIONS(2709), + [anon_sym_u16] = ACTIONS(2709), + [anon_sym_i16] = ACTIONS(2709), + [anon_sym_u32] = ACTIONS(2709), + [anon_sym_i32] = ACTIONS(2709), + [anon_sym_u64] = ACTIONS(2709), + [anon_sym_i64] = ACTIONS(2709), + [anon_sym_u128] = ACTIONS(2709), + [anon_sym_i128] = ACTIONS(2709), + [anon_sym_isize] = ACTIONS(2709), + [anon_sym_usize] = ACTIONS(2709), + [anon_sym_f32] = ACTIONS(2709), + [anon_sym_f64] = ACTIONS(2709), + [anon_sym_bool] = ACTIONS(2709), + [anon_sym_str] = ACTIONS(2709), + [anon_sym_char] = ACTIONS(2709), + [anon_sym_DASH] = ACTIONS(2707), + [anon_sym_BANG] = ACTIONS(2707), + [anon_sym_AMP] = ACTIONS(2707), + [anon_sym_PIPE] = ACTIONS(2707), + [anon_sym_LT] = ACTIONS(2707), + [anon_sym_DOT_DOT] = ACTIONS(2707), + [anon_sym_COLON_COLON] = ACTIONS(2707), + [anon_sym_POUND] = ACTIONS(2707), + [anon_sym_SQUOTE] = ACTIONS(2709), + [anon_sym_async] = ACTIONS(2709), + [anon_sym_break] = ACTIONS(2709), + [anon_sym_const] = ACTIONS(2709), + [anon_sym_continue] = ACTIONS(2709), + [anon_sym_default] = ACTIONS(2709), + [anon_sym_enum] = ACTIONS(2709), + [anon_sym_fn] = ACTIONS(2709), + [anon_sym_for] = ACTIONS(2709), + [anon_sym_if] = ACTIONS(2709), + [anon_sym_impl] = ACTIONS(2709), + [anon_sym_let] = ACTIONS(2709), + [anon_sym_loop] = ACTIONS(2709), + [anon_sym_match] = ACTIONS(2709), + [anon_sym_mod] = ACTIONS(2709), + [anon_sym_pub] = ACTIONS(2709), + [anon_sym_return] = ACTIONS(2709), + [anon_sym_static] = ACTIONS(2709), + [anon_sym_struct] = ACTIONS(2709), + [anon_sym_trait] = ACTIONS(2709), + [anon_sym_type] = ACTIONS(2709), + [anon_sym_union] = ACTIONS(2709), + [anon_sym_unsafe] = ACTIONS(2709), + [anon_sym_use] = ACTIONS(2709), + [anon_sym_while] = ACTIONS(2709), + [anon_sym_extern] = ACTIONS(2709), + [anon_sym_yield] = ACTIONS(2709), + [anon_sym_move] = ACTIONS(2709), + [anon_sym_try] = ACTIONS(2709), + [sym_integer_literal] = ACTIONS(2707), + [aux_sym_string_literal_token1] = ACTIONS(2707), + [sym_char_literal] = ACTIONS(2707), + [anon_sym_true] = ACTIONS(2709), + [anon_sym_false] = ACTIONS(2709), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2709), + [sym_super] = ACTIONS(2709), + [sym_crate] = ACTIONS(2709), + [sym_metavariable] = ACTIONS(2707), + [sym__raw_string_literal_start] = ACTIONS(2707), + [sym_float_literal] = ACTIONS(2707), }, [717] = { [sym_line_comment] = STATE(717), [sym_block_comment] = STATE(717), - [ts_builtin_sym_end] = ACTIONS(2709), - [sym_identifier] = ACTIONS(2711), - [anon_sym_SEMI] = ACTIONS(2709), - [anon_sym_macro_rules_BANG] = ACTIONS(2709), - [anon_sym_LPAREN] = ACTIONS(2709), - [anon_sym_LBRACK] = ACTIONS(2709), - [anon_sym_LBRACE] = ACTIONS(2709), - [anon_sym_RBRACE] = ACTIONS(2709), - [anon_sym_STAR] = ACTIONS(2709), - [anon_sym_u8] = ACTIONS(2711), - [anon_sym_i8] = ACTIONS(2711), - [anon_sym_u16] = ACTIONS(2711), - [anon_sym_i16] = ACTIONS(2711), - [anon_sym_u32] = ACTIONS(2711), - [anon_sym_i32] = ACTIONS(2711), - [anon_sym_u64] = ACTIONS(2711), - [anon_sym_i64] = ACTIONS(2711), - [anon_sym_u128] = ACTIONS(2711), - [anon_sym_i128] = ACTIONS(2711), - [anon_sym_isize] = ACTIONS(2711), - [anon_sym_usize] = ACTIONS(2711), - [anon_sym_f32] = ACTIONS(2711), - [anon_sym_f64] = ACTIONS(2711), - [anon_sym_bool] = ACTIONS(2711), - [anon_sym_str] = ACTIONS(2711), - [anon_sym_char] = ACTIONS(2711), - [anon_sym_DASH] = ACTIONS(2709), - [anon_sym_BANG] = ACTIONS(2709), - [anon_sym_AMP] = ACTIONS(2709), - [anon_sym_PIPE] = ACTIONS(2709), - [anon_sym_LT] = ACTIONS(2709), - [anon_sym_DOT_DOT] = ACTIONS(2709), - [anon_sym_COLON_COLON] = ACTIONS(2709), - [anon_sym_POUND] = ACTIONS(2709), - [anon_sym_SQUOTE] = ACTIONS(2711), - [anon_sym_async] = ACTIONS(2711), - [anon_sym_break] = ACTIONS(2711), - [anon_sym_const] = ACTIONS(2711), - [anon_sym_continue] = ACTIONS(2711), - [anon_sym_default] = ACTIONS(2711), - [anon_sym_enum] = ACTIONS(2711), - [anon_sym_fn] = ACTIONS(2711), - [anon_sym_for] = ACTIONS(2711), - [anon_sym_if] = ACTIONS(2711), - [anon_sym_impl] = ACTIONS(2711), - [anon_sym_let] = ACTIONS(2711), - [anon_sym_loop] = ACTIONS(2711), - [anon_sym_match] = ACTIONS(2711), - [anon_sym_mod] = ACTIONS(2711), - [anon_sym_pub] = ACTIONS(2711), - [anon_sym_return] = ACTIONS(2711), - [anon_sym_static] = ACTIONS(2711), - [anon_sym_struct] = ACTIONS(2711), - [anon_sym_trait] = ACTIONS(2711), - [anon_sym_type] = ACTIONS(2711), - [anon_sym_union] = ACTIONS(2711), - [anon_sym_unsafe] = ACTIONS(2711), - [anon_sym_use] = ACTIONS(2711), - [anon_sym_while] = ACTIONS(2711), - [anon_sym_extern] = ACTIONS(2711), - [anon_sym_yield] = ACTIONS(2711), - [anon_sym_move] = ACTIONS(2711), - [anon_sym_try] = ACTIONS(2711), - [sym_integer_literal] = ACTIONS(2709), - [aux_sym_string_literal_token1] = ACTIONS(2709), - [sym_char_literal] = ACTIONS(2709), - [anon_sym_true] = ACTIONS(2711), - [anon_sym_false] = ACTIONS(2711), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2711), - [sym_super] = ACTIONS(2711), - [sym_crate] = ACTIONS(2711), - [sym_metavariable] = ACTIONS(2709), - [sym__raw_string_literal_start] = ACTIONS(2709), - [sym_float_literal] = ACTIONS(2709), + [ts_builtin_sym_end] = ACTIONS(2711), + [sym_identifier] = ACTIONS(2713), + [anon_sym_SEMI] = ACTIONS(2711), + [anon_sym_macro_rules_BANG] = ACTIONS(2711), + [anon_sym_LPAREN] = ACTIONS(2711), + [anon_sym_LBRACK] = ACTIONS(2711), + [anon_sym_LBRACE] = ACTIONS(2711), + [anon_sym_RBRACE] = ACTIONS(2711), + [anon_sym_macro] = ACTIONS(2713), + [anon_sym_STAR] = ACTIONS(2711), + [anon_sym_u8] = ACTIONS(2713), + [anon_sym_i8] = ACTIONS(2713), + [anon_sym_u16] = ACTIONS(2713), + [anon_sym_i16] = ACTIONS(2713), + [anon_sym_u32] = ACTIONS(2713), + [anon_sym_i32] = ACTIONS(2713), + [anon_sym_u64] = ACTIONS(2713), + [anon_sym_i64] = ACTIONS(2713), + [anon_sym_u128] = ACTIONS(2713), + [anon_sym_i128] = ACTIONS(2713), + [anon_sym_isize] = ACTIONS(2713), + [anon_sym_usize] = ACTIONS(2713), + [anon_sym_f32] = ACTIONS(2713), + [anon_sym_f64] = ACTIONS(2713), + [anon_sym_bool] = ACTIONS(2713), + [anon_sym_str] = ACTIONS(2713), + [anon_sym_char] = ACTIONS(2713), + [anon_sym_DASH] = ACTIONS(2711), + [anon_sym_BANG] = ACTIONS(2711), + [anon_sym_AMP] = ACTIONS(2711), + [anon_sym_PIPE] = ACTIONS(2711), + [anon_sym_LT] = ACTIONS(2711), + [anon_sym_DOT_DOT] = ACTIONS(2711), + [anon_sym_COLON_COLON] = ACTIONS(2711), + [anon_sym_POUND] = ACTIONS(2711), + [anon_sym_SQUOTE] = ACTIONS(2713), + [anon_sym_async] = ACTIONS(2713), + [anon_sym_break] = ACTIONS(2713), + [anon_sym_const] = ACTIONS(2713), + [anon_sym_continue] = ACTIONS(2713), + [anon_sym_default] = ACTIONS(2713), + [anon_sym_enum] = ACTIONS(2713), + [anon_sym_fn] = ACTIONS(2713), + [anon_sym_for] = ACTIONS(2713), + [anon_sym_if] = ACTIONS(2713), + [anon_sym_impl] = ACTIONS(2713), + [anon_sym_let] = ACTIONS(2713), + [anon_sym_loop] = ACTIONS(2713), + [anon_sym_match] = ACTIONS(2713), + [anon_sym_mod] = ACTIONS(2713), + [anon_sym_pub] = ACTIONS(2713), + [anon_sym_return] = ACTIONS(2713), + [anon_sym_static] = ACTIONS(2713), + [anon_sym_struct] = ACTIONS(2713), + [anon_sym_trait] = ACTIONS(2713), + [anon_sym_type] = ACTIONS(2713), + [anon_sym_union] = ACTIONS(2713), + [anon_sym_unsafe] = ACTIONS(2713), + [anon_sym_use] = ACTIONS(2713), + [anon_sym_while] = ACTIONS(2713), + [anon_sym_extern] = ACTIONS(2713), + [anon_sym_yield] = ACTIONS(2713), + [anon_sym_move] = ACTIONS(2713), + [anon_sym_try] = ACTIONS(2713), + [sym_integer_literal] = ACTIONS(2711), + [aux_sym_string_literal_token1] = ACTIONS(2711), + [sym_char_literal] = ACTIONS(2711), + [anon_sym_true] = ACTIONS(2713), + [anon_sym_false] = ACTIONS(2713), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2713), + [sym_super] = ACTIONS(2713), + [sym_crate] = ACTIONS(2713), + [sym_metavariable] = ACTIONS(2711), + [sym__raw_string_literal_start] = ACTIONS(2711), + [sym_float_literal] = ACTIONS(2711), }, [718] = { [sym_line_comment] = STATE(718), [sym_block_comment] = STATE(718), - [ts_builtin_sym_end] = ACTIONS(2713), - [sym_identifier] = ACTIONS(2715), - [anon_sym_SEMI] = ACTIONS(2713), - [anon_sym_macro_rules_BANG] = ACTIONS(2713), - [anon_sym_LPAREN] = ACTIONS(2713), - [anon_sym_LBRACK] = ACTIONS(2713), - [anon_sym_LBRACE] = ACTIONS(2713), - [anon_sym_RBRACE] = ACTIONS(2713), - [anon_sym_STAR] = ACTIONS(2713), - [anon_sym_u8] = ACTIONS(2715), - [anon_sym_i8] = ACTIONS(2715), - [anon_sym_u16] = ACTIONS(2715), - [anon_sym_i16] = ACTIONS(2715), - [anon_sym_u32] = ACTIONS(2715), - [anon_sym_i32] = ACTIONS(2715), - [anon_sym_u64] = ACTIONS(2715), - [anon_sym_i64] = ACTIONS(2715), - [anon_sym_u128] = ACTIONS(2715), - [anon_sym_i128] = ACTIONS(2715), - [anon_sym_isize] = ACTIONS(2715), - [anon_sym_usize] = ACTIONS(2715), - [anon_sym_f32] = ACTIONS(2715), - [anon_sym_f64] = ACTIONS(2715), - [anon_sym_bool] = ACTIONS(2715), - [anon_sym_str] = ACTIONS(2715), - [anon_sym_char] = ACTIONS(2715), - [anon_sym_DASH] = ACTIONS(2713), - [anon_sym_BANG] = ACTIONS(2713), - [anon_sym_AMP] = ACTIONS(2713), - [anon_sym_PIPE] = ACTIONS(2713), - [anon_sym_LT] = ACTIONS(2713), - [anon_sym_DOT_DOT] = ACTIONS(2713), - [anon_sym_COLON_COLON] = ACTIONS(2713), - [anon_sym_POUND] = ACTIONS(2713), - [anon_sym_SQUOTE] = ACTIONS(2715), - [anon_sym_async] = ACTIONS(2715), - [anon_sym_break] = ACTIONS(2715), - [anon_sym_const] = ACTIONS(2715), - [anon_sym_continue] = ACTIONS(2715), - [anon_sym_default] = ACTIONS(2715), - [anon_sym_enum] = ACTIONS(2715), - [anon_sym_fn] = ACTIONS(2715), - [anon_sym_for] = ACTIONS(2715), - [anon_sym_if] = ACTIONS(2715), - [anon_sym_impl] = ACTIONS(2715), - [anon_sym_let] = ACTIONS(2715), - [anon_sym_loop] = ACTIONS(2715), - [anon_sym_match] = ACTIONS(2715), - [anon_sym_mod] = ACTIONS(2715), - [anon_sym_pub] = ACTIONS(2715), - [anon_sym_return] = ACTIONS(2715), - [anon_sym_static] = ACTIONS(2715), - [anon_sym_struct] = ACTIONS(2715), - [anon_sym_trait] = ACTIONS(2715), - [anon_sym_type] = ACTIONS(2715), - [anon_sym_union] = ACTIONS(2715), - [anon_sym_unsafe] = ACTIONS(2715), - [anon_sym_use] = ACTIONS(2715), - [anon_sym_while] = ACTIONS(2715), - [anon_sym_extern] = ACTIONS(2715), - [anon_sym_yield] = ACTIONS(2715), - [anon_sym_move] = ACTIONS(2715), - [anon_sym_try] = ACTIONS(2715), - [sym_integer_literal] = ACTIONS(2713), - [aux_sym_string_literal_token1] = ACTIONS(2713), - [sym_char_literal] = ACTIONS(2713), - [anon_sym_true] = ACTIONS(2715), - [anon_sym_false] = ACTIONS(2715), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2715), - [sym_super] = ACTIONS(2715), - [sym_crate] = ACTIONS(2715), - [sym_metavariable] = ACTIONS(2713), - [sym__raw_string_literal_start] = ACTIONS(2713), - [sym_float_literal] = ACTIONS(2713), + [ts_builtin_sym_end] = ACTIONS(2715), + [sym_identifier] = ACTIONS(2717), + [anon_sym_SEMI] = ACTIONS(2715), + [anon_sym_macro_rules_BANG] = ACTIONS(2715), + [anon_sym_LPAREN] = ACTIONS(2715), + [anon_sym_LBRACK] = ACTIONS(2715), + [anon_sym_LBRACE] = ACTIONS(2715), + [anon_sym_RBRACE] = ACTIONS(2715), + [anon_sym_macro] = ACTIONS(2717), + [anon_sym_STAR] = ACTIONS(2715), + [anon_sym_u8] = ACTIONS(2717), + [anon_sym_i8] = ACTIONS(2717), + [anon_sym_u16] = ACTIONS(2717), + [anon_sym_i16] = ACTIONS(2717), + [anon_sym_u32] = ACTIONS(2717), + [anon_sym_i32] = ACTIONS(2717), + [anon_sym_u64] = ACTIONS(2717), + [anon_sym_i64] = ACTIONS(2717), + [anon_sym_u128] = ACTIONS(2717), + [anon_sym_i128] = ACTIONS(2717), + [anon_sym_isize] = ACTIONS(2717), + [anon_sym_usize] = ACTIONS(2717), + [anon_sym_f32] = ACTIONS(2717), + [anon_sym_f64] = ACTIONS(2717), + [anon_sym_bool] = ACTIONS(2717), + [anon_sym_str] = ACTIONS(2717), + [anon_sym_char] = ACTIONS(2717), + [anon_sym_DASH] = ACTIONS(2715), + [anon_sym_BANG] = ACTIONS(2715), + [anon_sym_AMP] = ACTIONS(2715), + [anon_sym_PIPE] = ACTIONS(2715), + [anon_sym_LT] = ACTIONS(2715), + [anon_sym_DOT_DOT] = ACTIONS(2715), + [anon_sym_COLON_COLON] = ACTIONS(2715), + [anon_sym_POUND] = ACTIONS(2715), + [anon_sym_SQUOTE] = ACTIONS(2717), + [anon_sym_async] = ACTIONS(2717), + [anon_sym_break] = ACTIONS(2717), + [anon_sym_const] = ACTIONS(2717), + [anon_sym_continue] = ACTIONS(2717), + [anon_sym_default] = ACTIONS(2717), + [anon_sym_enum] = ACTIONS(2717), + [anon_sym_fn] = ACTIONS(2717), + [anon_sym_for] = ACTIONS(2717), + [anon_sym_if] = ACTIONS(2717), + [anon_sym_impl] = ACTIONS(2717), + [anon_sym_let] = ACTIONS(2717), + [anon_sym_loop] = ACTIONS(2717), + [anon_sym_match] = ACTIONS(2717), + [anon_sym_mod] = ACTIONS(2717), + [anon_sym_pub] = ACTIONS(2717), + [anon_sym_return] = ACTIONS(2717), + [anon_sym_static] = ACTIONS(2717), + [anon_sym_struct] = ACTIONS(2717), + [anon_sym_trait] = ACTIONS(2717), + [anon_sym_type] = ACTIONS(2717), + [anon_sym_union] = ACTIONS(2717), + [anon_sym_unsafe] = ACTIONS(2717), + [anon_sym_use] = ACTIONS(2717), + [anon_sym_while] = ACTIONS(2717), + [anon_sym_extern] = ACTIONS(2717), + [anon_sym_yield] = ACTIONS(2717), + [anon_sym_move] = ACTIONS(2717), + [anon_sym_try] = ACTIONS(2717), + [sym_integer_literal] = ACTIONS(2715), + [aux_sym_string_literal_token1] = ACTIONS(2715), + [sym_char_literal] = ACTIONS(2715), + [anon_sym_true] = ACTIONS(2717), + [anon_sym_false] = ACTIONS(2717), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2717), + [sym_super] = ACTIONS(2717), + [sym_crate] = ACTIONS(2717), + [sym_metavariable] = ACTIONS(2715), + [sym__raw_string_literal_start] = ACTIONS(2715), + [sym_float_literal] = ACTIONS(2715), }, [719] = { [sym_line_comment] = STATE(719), [sym_block_comment] = STATE(719), - [ts_builtin_sym_end] = ACTIONS(2717), - [sym_identifier] = ACTIONS(2719), - [anon_sym_SEMI] = ACTIONS(2717), - [anon_sym_macro_rules_BANG] = ACTIONS(2717), - [anon_sym_LPAREN] = ACTIONS(2717), - [anon_sym_LBRACK] = ACTIONS(2717), - [anon_sym_LBRACE] = ACTIONS(2717), - [anon_sym_RBRACE] = ACTIONS(2717), - [anon_sym_STAR] = ACTIONS(2717), - [anon_sym_u8] = ACTIONS(2719), - [anon_sym_i8] = ACTIONS(2719), - [anon_sym_u16] = ACTIONS(2719), - [anon_sym_i16] = ACTIONS(2719), - [anon_sym_u32] = ACTIONS(2719), - [anon_sym_i32] = ACTIONS(2719), - [anon_sym_u64] = ACTIONS(2719), - [anon_sym_i64] = ACTIONS(2719), - [anon_sym_u128] = ACTIONS(2719), - [anon_sym_i128] = ACTIONS(2719), - [anon_sym_isize] = ACTIONS(2719), - [anon_sym_usize] = ACTIONS(2719), - [anon_sym_f32] = ACTIONS(2719), - [anon_sym_f64] = ACTIONS(2719), - [anon_sym_bool] = ACTIONS(2719), - [anon_sym_str] = ACTIONS(2719), - [anon_sym_char] = ACTIONS(2719), - [anon_sym_DASH] = ACTIONS(2717), - [anon_sym_BANG] = ACTIONS(2717), - [anon_sym_AMP] = ACTIONS(2717), - [anon_sym_PIPE] = ACTIONS(2717), - [anon_sym_LT] = ACTIONS(2717), - [anon_sym_DOT_DOT] = ACTIONS(2717), - [anon_sym_COLON_COLON] = ACTIONS(2717), - [anon_sym_POUND] = ACTIONS(2717), - [anon_sym_SQUOTE] = ACTIONS(2719), - [anon_sym_async] = ACTIONS(2719), - [anon_sym_break] = ACTIONS(2719), - [anon_sym_const] = ACTIONS(2719), - [anon_sym_continue] = ACTIONS(2719), - [anon_sym_default] = ACTIONS(2719), - [anon_sym_enum] = ACTIONS(2719), - [anon_sym_fn] = ACTIONS(2719), - [anon_sym_for] = ACTIONS(2719), - [anon_sym_if] = ACTIONS(2719), - [anon_sym_impl] = ACTIONS(2719), - [anon_sym_let] = ACTIONS(2719), - [anon_sym_loop] = ACTIONS(2719), - [anon_sym_match] = ACTIONS(2719), - [anon_sym_mod] = ACTIONS(2719), - [anon_sym_pub] = ACTIONS(2719), - [anon_sym_return] = ACTIONS(2719), - [anon_sym_static] = ACTIONS(2719), - [anon_sym_struct] = ACTIONS(2719), - [anon_sym_trait] = ACTIONS(2719), - [anon_sym_type] = ACTIONS(2719), - [anon_sym_union] = ACTIONS(2719), - [anon_sym_unsafe] = ACTIONS(2719), - [anon_sym_use] = ACTIONS(2719), - [anon_sym_while] = ACTIONS(2719), - [anon_sym_extern] = ACTIONS(2719), - [anon_sym_yield] = ACTIONS(2719), - [anon_sym_move] = ACTIONS(2719), - [anon_sym_try] = ACTIONS(2719), - [sym_integer_literal] = ACTIONS(2717), - [aux_sym_string_literal_token1] = ACTIONS(2717), - [sym_char_literal] = ACTIONS(2717), - [anon_sym_true] = ACTIONS(2719), - [anon_sym_false] = ACTIONS(2719), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2719), - [sym_super] = ACTIONS(2719), - [sym_crate] = ACTIONS(2719), - [sym_metavariable] = ACTIONS(2717), - [sym__raw_string_literal_start] = ACTIONS(2717), - [sym_float_literal] = ACTIONS(2717), + [ts_builtin_sym_end] = ACTIONS(2719), + [sym_identifier] = ACTIONS(2721), + [anon_sym_SEMI] = ACTIONS(2719), + [anon_sym_macro_rules_BANG] = ACTIONS(2719), + [anon_sym_LPAREN] = ACTIONS(2719), + [anon_sym_LBRACK] = ACTIONS(2719), + [anon_sym_LBRACE] = ACTIONS(2719), + [anon_sym_RBRACE] = ACTIONS(2719), + [anon_sym_macro] = ACTIONS(2721), + [anon_sym_STAR] = ACTIONS(2719), + [anon_sym_u8] = ACTIONS(2721), + [anon_sym_i8] = ACTIONS(2721), + [anon_sym_u16] = ACTIONS(2721), + [anon_sym_i16] = ACTIONS(2721), + [anon_sym_u32] = ACTIONS(2721), + [anon_sym_i32] = ACTIONS(2721), + [anon_sym_u64] = ACTIONS(2721), + [anon_sym_i64] = ACTIONS(2721), + [anon_sym_u128] = ACTIONS(2721), + [anon_sym_i128] = ACTIONS(2721), + [anon_sym_isize] = ACTIONS(2721), + [anon_sym_usize] = ACTIONS(2721), + [anon_sym_f32] = ACTIONS(2721), + [anon_sym_f64] = ACTIONS(2721), + [anon_sym_bool] = ACTIONS(2721), + [anon_sym_str] = ACTIONS(2721), + [anon_sym_char] = ACTIONS(2721), + [anon_sym_DASH] = ACTIONS(2719), + [anon_sym_BANG] = ACTIONS(2719), + [anon_sym_AMP] = ACTIONS(2719), + [anon_sym_PIPE] = ACTIONS(2719), + [anon_sym_LT] = ACTIONS(2719), + [anon_sym_DOT_DOT] = ACTIONS(2719), + [anon_sym_COLON_COLON] = ACTIONS(2719), + [anon_sym_POUND] = ACTIONS(2719), + [anon_sym_SQUOTE] = ACTIONS(2721), + [anon_sym_async] = ACTIONS(2721), + [anon_sym_break] = ACTIONS(2721), + [anon_sym_const] = ACTIONS(2721), + [anon_sym_continue] = ACTIONS(2721), + [anon_sym_default] = ACTIONS(2721), + [anon_sym_enum] = ACTIONS(2721), + [anon_sym_fn] = ACTIONS(2721), + [anon_sym_for] = ACTIONS(2721), + [anon_sym_if] = ACTIONS(2721), + [anon_sym_impl] = ACTIONS(2721), + [anon_sym_let] = ACTIONS(2721), + [anon_sym_loop] = ACTIONS(2721), + [anon_sym_match] = ACTIONS(2721), + [anon_sym_mod] = ACTIONS(2721), + [anon_sym_pub] = ACTIONS(2721), + [anon_sym_return] = ACTIONS(2721), + [anon_sym_static] = ACTIONS(2721), + [anon_sym_struct] = ACTIONS(2721), + [anon_sym_trait] = ACTIONS(2721), + [anon_sym_type] = ACTIONS(2721), + [anon_sym_union] = ACTIONS(2721), + [anon_sym_unsafe] = ACTIONS(2721), + [anon_sym_use] = ACTIONS(2721), + [anon_sym_while] = ACTIONS(2721), + [anon_sym_extern] = ACTIONS(2721), + [anon_sym_yield] = ACTIONS(2721), + [anon_sym_move] = ACTIONS(2721), + [anon_sym_try] = ACTIONS(2721), + [sym_integer_literal] = ACTIONS(2719), + [aux_sym_string_literal_token1] = ACTIONS(2719), + [sym_char_literal] = ACTIONS(2719), + [anon_sym_true] = ACTIONS(2721), + [anon_sym_false] = ACTIONS(2721), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2721), + [sym_super] = ACTIONS(2721), + [sym_crate] = ACTIONS(2721), + [sym_metavariable] = ACTIONS(2719), + [sym__raw_string_literal_start] = ACTIONS(2719), + [sym_float_literal] = ACTIONS(2719), }, [720] = { [sym_line_comment] = STATE(720), [sym_block_comment] = STATE(720), - [ts_builtin_sym_end] = ACTIONS(2721), - [sym_identifier] = ACTIONS(2723), - [anon_sym_SEMI] = ACTIONS(2721), - [anon_sym_macro_rules_BANG] = ACTIONS(2721), - [anon_sym_LPAREN] = ACTIONS(2721), - [anon_sym_LBRACK] = ACTIONS(2721), - [anon_sym_LBRACE] = ACTIONS(2721), - [anon_sym_RBRACE] = ACTIONS(2721), - [anon_sym_STAR] = ACTIONS(2721), - [anon_sym_u8] = ACTIONS(2723), - [anon_sym_i8] = ACTIONS(2723), - [anon_sym_u16] = ACTIONS(2723), - [anon_sym_i16] = ACTIONS(2723), - [anon_sym_u32] = ACTIONS(2723), - [anon_sym_i32] = ACTIONS(2723), - [anon_sym_u64] = ACTIONS(2723), - [anon_sym_i64] = ACTIONS(2723), - [anon_sym_u128] = ACTIONS(2723), - [anon_sym_i128] = ACTIONS(2723), - [anon_sym_isize] = ACTIONS(2723), - [anon_sym_usize] = ACTIONS(2723), - [anon_sym_f32] = ACTIONS(2723), - [anon_sym_f64] = ACTIONS(2723), - [anon_sym_bool] = ACTIONS(2723), - [anon_sym_str] = ACTIONS(2723), - [anon_sym_char] = ACTIONS(2723), - [anon_sym_DASH] = ACTIONS(2721), - [anon_sym_BANG] = ACTIONS(2721), - [anon_sym_AMP] = ACTIONS(2721), - [anon_sym_PIPE] = ACTIONS(2721), - [anon_sym_LT] = ACTIONS(2721), - [anon_sym_DOT_DOT] = ACTIONS(2721), - [anon_sym_COLON_COLON] = ACTIONS(2721), - [anon_sym_POUND] = ACTIONS(2721), - [anon_sym_SQUOTE] = ACTIONS(2723), - [anon_sym_async] = ACTIONS(2723), - [anon_sym_break] = ACTIONS(2723), - [anon_sym_const] = ACTIONS(2723), - [anon_sym_continue] = ACTIONS(2723), - [anon_sym_default] = ACTIONS(2723), - [anon_sym_enum] = ACTIONS(2723), - [anon_sym_fn] = ACTIONS(2723), - [anon_sym_for] = ACTIONS(2723), - [anon_sym_if] = ACTIONS(2723), - [anon_sym_impl] = ACTIONS(2723), - [anon_sym_let] = ACTIONS(2723), - [anon_sym_loop] = ACTIONS(2723), - [anon_sym_match] = ACTIONS(2723), - [anon_sym_mod] = ACTIONS(2723), - [anon_sym_pub] = ACTIONS(2723), - [anon_sym_return] = ACTIONS(2723), - [anon_sym_static] = ACTIONS(2723), - [anon_sym_struct] = ACTIONS(2723), - [anon_sym_trait] = ACTIONS(2723), - [anon_sym_type] = ACTIONS(2723), - [anon_sym_union] = ACTIONS(2723), - [anon_sym_unsafe] = ACTIONS(2723), - [anon_sym_use] = ACTIONS(2723), - [anon_sym_while] = ACTIONS(2723), - [anon_sym_extern] = ACTIONS(2723), - [anon_sym_yield] = ACTIONS(2723), - [anon_sym_move] = ACTIONS(2723), - [anon_sym_try] = ACTIONS(2723), - [sym_integer_literal] = ACTIONS(2721), - [aux_sym_string_literal_token1] = ACTIONS(2721), - [sym_char_literal] = ACTIONS(2721), - [anon_sym_true] = ACTIONS(2723), - [anon_sym_false] = ACTIONS(2723), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2723), - [sym_super] = ACTIONS(2723), - [sym_crate] = ACTIONS(2723), - [sym_metavariable] = ACTIONS(2721), - [sym__raw_string_literal_start] = ACTIONS(2721), - [sym_float_literal] = ACTIONS(2721), + [ts_builtin_sym_end] = ACTIONS(2723), + [sym_identifier] = ACTIONS(2725), + [anon_sym_SEMI] = ACTIONS(2723), + [anon_sym_macro_rules_BANG] = ACTIONS(2723), + [anon_sym_LPAREN] = ACTIONS(2723), + [anon_sym_LBRACK] = ACTIONS(2723), + [anon_sym_LBRACE] = ACTIONS(2723), + [anon_sym_RBRACE] = ACTIONS(2723), + [anon_sym_macro] = ACTIONS(2725), + [anon_sym_STAR] = ACTIONS(2723), + [anon_sym_u8] = ACTIONS(2725), + [anon_sym_i8] = ACTIONS(2725), + [anon_sym_u16] = ACTIONS(2725), + [anon_sym_i16] = ACTIONS(2725), + [anon_sym_u32] = ACTIONS(2725), + [anon_sym_i32] = ACTIONS(2725), + [anon_sym_u64] = ACTIONS(2725), + [anon_sym_i64] = ACTIONS(2725), + [anon_sym_u128] = ACTIONS(2725), + [anon_sym_i128] = ACTIONS(2725), + [anon_sym_isize] = ACTIONS(2725), + [anon_sym_usize] = ACTIONS(2725), + [anon_sym_f32] = ACTIONS(2725), + [anon_sym_f64] = ACTIONS(2725), + [anon_sym_bool] = ACTIONS(2725), + [anon_sym_str] = ACTIONS(2725), + [anon_sym_char] = ACTIONS(2725), + [anon_sym_DASH] = ACTIONS(2723), + [anon_sym_BANG] = ACTIONS(2723), + [anon_sym_AMP] = ACTIONS(2723), + [anon_sym_PIPE] = ACTIONS(2723), + [anon_sym_LT] = ACTIONS(2723), + [anon_sym_DOT_DOT] = ACTIONS(2723), + [anon_sym_COLON_COLON] = ACTIONS(2723), + [anon_sym_POUND] = ACTIONS(2723), + [anon_sym_SQUOTE] = ACTIONS(2725), + [anon_sym_async] = ACTIONS(2725), + [anon_sym_break] = ACTIONS(2725), + [anon_sym_const] = ACTIONS(2725), + [anon_sym_continue] = ACTIONS(2725), + [anon_sym_default] = ACTIONS(2725), + [anon_sym_enum] = ACTIONS(2725), + [anon_sym_fn] = ACTIONS(2725), + [anon_sym_for] = ACTIONS(2725), + [anon_sym_if] = ACTIONS(2725), + [anon_sym_impl] = ACTIONS(2725), + [anon_sym_let] = ACTIONS(2725), + [anon_sym_loop] = ACTIONS(2725), + [anon_sym_match] = ACTIONS(2725), + [anon_sym_mod] = ACTIONS(2725), + [anon_sym_pub] = ACTIONS(2725), + [anon_sym_return] = ACTIONS(2725), + [anon_sym_static] = ACTIONS(2725), + [anon_sym_struct] = ACTIONS(2725), + [anon_sym_trait] = ACTIONS(2725), + [anon_sym_type] = ACTIONS(2725), + [anon_sym_union] = ACTIONS(2725), + [anon_sym_unsafe] = ACTIONS(2725), + [anon_sym_use] = ACTIONS(2725), + [anon_sym_while] = ACTIONS(2725), + [anon_sym_extern] = ACTIONS(2725), + [anon_sym_yield] = ACTIONS(2725), + [anon_sym_move] = ACTIONS(2725), + [anon_sym_try] = ACTIONS(2725), + [sym_integer_literal] = ACTIONS(2723), + [aux_sym_string_literal_token1] = ACTIONS(2723), + [sym_char_literal] = ACTIONS(2723), + [anon_sym_true] = ACTIONS(2725), + [anon_sym_false] = ACTIONS(2725), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2725), + [sym_super] = ACTIONS(2725), + [sym_crate] = ACTIONS(2725), + [sym_metavariable] = ACTIONS(2723), + [sym__raw_string_literal_start] = ACTIONS(2723), + [sym_float_literal] = ACTIONS(2723), }, [721] = { - [sym_attribute_item] = STATE(1479), - [sym_inner_attribute_item] = STATE(1479), - [sym_bracketed_type] = STATE(3523), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3262), - [sym_macro_invocation] = STATE(2877), - [sym_scoped_identifier] = STATE(2130), - [sym_scoped_type_identifier] = STATE(2908), - [sym_match_arm] = STATE(1471), - [sym_match_pattern] = STATE(3605), - [sym_const_block] = STATE(2877), - [sym__pattern] = STATE(2919), - [sym_tuple_pattern] = STATE(2877), - [sym_slice_pattern] = STATE(2877), - [sym_tuple_struct_pattern] = STATE(2877), - [sym_struct_pattern] = STATE(2877), - [sym_remaining_field_pattern] = STATE(2877), - [sym_mut_pattern] = STATE(2877), - [sym_range_pattern] = STATE(2877), - [sym_ref_pattern] = STATE(2877), - [sym_captured_pattern] = STATE(2877), - [sym_reference_pattern] = STATE(2877), - [sym_or_pattern] = STATE(2877), - [sym__literal_pattern] = STATE(2387), - [sym_negative_literal] = STATE(2299), - [sym_string_literal] = STATE(2299), - [sym_raw_string_literal] = STATE(2299), - [sym_boolean_literal] = STATE(2299), [sym_line_comment] = STATE(721), [sym_block_comment] = STATE(721), - [aux_sym_match_block_repeat1] = STATE(721), - [aux_sym_match_arm_repeat1] = STATE(758), - [sym_identifier] = ACTIONS(2725), - [anon_sym_LPAREN] = ACTIONS(2728), + [ts_builtin_sym_end] = ACTIONS(2727), + [sym_identifier] = ACTIONS(2729), + [anon_sym_SEMI] = ACTIONS(2727), + [anon_sym_macro_rules_BANG] = ACTIONS(2727), + [anon_sym_LPAREN] = ACTIONS(2727), + [anon_sym_LBRACK] = ACTIONS(2727), + [anon_sym_LBRACE] = ACTIONS(2727), + [anon_sym_RBRACE] = ACTIONS(2727), + [anon_sym_macro] = ACTIONS(2729), + [anon_sym_STAR] = ACTIONS(2727), + [anon_sym_u8] = ACTIONS(2729), + [anon_sym_i8] = ACTIONS(2729), + [anon_sym_u16] = ACTIONS(2729), + [anon_sym_i16] = ACTIONS(2729), + [anon_sym_u32] = ACTIONS(2729), + [anon_sym_i32] = ACTIONS(2729), + [anon_sym_u64] = ACTIONS(2729), + [anon_sym_i64] = ACTIONS(2729), + [anon_sym_u128] = ACTIONS(2729), + [anon_sym_i128] = ACTIONS(2729), + [anon_sym_isize] = ACTIONS(2729), + [anon_sym_usize] = ACTIONS(2729), + [anon_sym_f32] = ACTIONS(2729), + [anon_sym_f64] = ACTIONS(2729), + [anon_sym_bool] = ACTIONS(2729), + [anon_sym_str] = ACTIONS(2729), + [anon_sym_char] = ACTIONS(2729), + [anon_sym_DASH] = ACTIONS(2727), + [anon_sym_BANG] = ACTIONS(2727), + [anon_sym_AMP] = ACTIONS(2727), + [anon_sym_PIPE] = ACTIONS(2727), + [anon_sym_LT] = ACTIONS(2727), + [anon_sym_DOT_DOT] = ACTIONS(2727), + [anon_sym_COLON_COLON] = ACTIONS(2727), + [anon_sym_POUND] = ACTIONS(2727), + [anon_sym_SQUOTE] = ACTIONS(2729), + [anon_sym_async] = ACTIONS(2729), + [anon_sym_break] = ACTIONS(2729), + [anon_sym_const] = ACTIONS(2729), + [anon_sym_continue] = ACTIONS(2729), + [anon_sym_default] = ACTIONS(2729), + [anon_sym_enum] = ACTIONS(2729), + [anon_sym_fn] = ACTIONS(2729), + [anon_sym_for] = ACTIONS(2729), + [anon_sym_if] = ACTIONS(2729), + [anon_sym_impl] = ACTIONS(2729), + [anon_sym_let] = ACTIONS(2729), + [anon_sym_loop] = ACTIONS(2729), + [anon_sym_match] = ACTIONS(2729), + [anon_sym_mod] = ACTIONS(2729), + [anon_sym_pub] = ACTIONS(2729), + [anon_sym_return] = ACTIONS(2729), + [anon_sym_static] = ACTIONS(2729), + [anon_sym_struct] = ACTIONS(2729), + [anon_sym_trait] = ACTIONS(2729), + [anon_sym_type] = ACTIONS(2729), + [anon_sym_union] = ACTIONS(2729), + [anon_sym_unsafe] = ACTIONS(2729), + [anon_sym_use] = ACTIONS(2729), + [anon_sym_while] = ACTIONS(2729), + [anon_sym_extern] = ACTIONS(2729), + [anon_sym_yield] = ACTIONS(2729), + [anon_sym_move] = ACTIONS(2729), + [anon_sym_try] = ACTIONS(2729), + [sym_integer_literal] = ACTIONS(2727), + [aux_sym_string_literal_token1] = ACTIONS(2727), + [sym_char_literal] = ACTIONS(2727), + [anon_sym_true] = ACTIONS(2729), + [anon_sym_false] = ACTIONS(2729), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2729), + [sym_super] = ACTIONS(2729), + [sym_crate] = ACTIONS(2729), + [sym_metavariable] = ACTIONS(2727), + [sym__raw_string_literal_start] = ACTIONS(2727), + [sym_float_literal] = ACTIONS(2727), + }, + [722] = { + [sym_line_comment] = STATE(722), + [sym_block_comment] = STATE(722), + [ts_builtin_sym_end] = ACTIONS(2731), + [sym_identifier] = ACTIONS(2733), + [anon_sym_SEMI] = ACTIONS(2731), + [anon_sym_macro_rules_BANG] = ACTIONS(2731), + [anon_sym_LPAREN] = ACTIONS(2731), [anon_sym_LBRACK] = ACTIONS(2731), - [anon_sym_u8] = ACTIONS(2734), - [anon_sym_i8] = ACTIONS(2734), - [anon_sym_u16] = ACTIONS(2734), - [anon_sym_i16] = ACTIONS(2734), - [anon_sym_u32] = ACTIONS(2734), - [anon_sym_i32] = ACTIONS(2734), - [anon_sym_u64] = ACTIONS(2734), - [anon_sym_i64] = ACTIONS(2734), - [anon_sym_u128] = ACTIONS(2734), - [anon_sym_i128] = ACTIONS(2734), - [anon_sym_isize] = ACTIONS(2734), - [anon_sym_usize] = ACTIONS(2734), - [anon_sym_f32] = ACTIONS(2734), - [anon_sym_f64] = ACTIONS(2734), - [anon_sym_bool] = ACTIONS(2734), - [anon_sym_str] = ACTIONS(2734), - [anon_sym_char] = ACTIONS(2734), - [anon_sym_DASH] = ACTIONS(2737), - [anon_sym_AMP] = ACTIONS(2740), + [anon_sym_LBRACE] = ACTIONS(2731), + [anon_sym_RBRACE] = ACTIONS(2731), + [anon_sym_macro] = ACTIONS(2733), + [anon_sym_STAR] = ACTIONS(2731), + [anon_sym_u8] = ACTIONS(2733), + [anon_sym_i8] = ACTIONS(2733), + [anon_sym_u16] = ACTIONS(2733), + [anon_sym_i16] = ACTIONS(2733), + [anon_sym_u32] = ACTIONS(2733), + [anon_sym_i32] = ACTIONS(2733), + [anon_sym_u64] = ACTIONS(2733), + [anon_sym_i64] = ACTIONS(2733), + [anon_sym_u128] = ACTIONS(2733), + [anon_sym_i128] = ACTIONS(2733), + [anon_sym_isize] = ACTIONS(2733), + [anon_sym_usize] = ACTIONS(2733), + [anon_sym_f32] = ACTIONS(2733), + [anon_sym_f64] = ACTIONS(2733), + [anon_sym_bool] = ACTIONS(2733), + [anon_sym_str] = ACTIONS(2733), + [anon_sym_char] = ACTIONS(2733), + [anon_sym_DASH] = ACTIONS(2731), + [anon_sym_BANG] = ACTIONS(2731), + [anon_sym_AMP] = ACTIONS(2731), + [anon_sym_PIPE] = ACTIONS(2731), + [anon_sym_LT] = ACTIONS(2731), + [anon_sym_DOT_DOT] = ACTIONS(2731), + [anon_sym_COLON_COLON] = ACTIONS(2731), + [anon_sym_POUND] = ACTIONS(2731), + [anon_sym_SQUOTE] = ACTIONS(2733), + [anon_sym_async] = ACTIONS(2733), + [anon_sym_break] = ACTIONS(2733), + [anon_sym_const] = ACTIONS(2733), + [anon_sym_continue] = ACTIONS(2733), + [anon_sym_default] = ACTIONS(2733), + [anon_sym_enum] = ACTIONS(2733), + [anon_sym_fn] = ACTIONS(2733), + [anon_sym_for] = ACTIONS(2733), + [anon_sym_if] = ACTIONS(2733), + [anon_sym_impl] = ACTIONS(2733), + [anon_sym_let] = ACTIONS(2733), + [anon_sym_loop] = ACTIONS(2733), + [anon_sym_match] = ACTIONS(2733), + [anon_sym_mod] = ACTIONS(2733), + [anon_sym_pub] = ACTIONS(2733), + [anon_sym_return] = ACTIONS(2733), + [anon_sym_static] = ACTIONS(2733), + [anon_sym_struct] = ACTIONS(2733), + [anon_sym_trait] = ACTIONS(2733), + [anon_sym_type] = ACTIONS(2733), + [anon_sym_union] = ACTIONS(2733), + [anon_sym_unsafe] = ACTIONS(2733), + [anon_sym_use] = ACTIONS(2733), + [anon_sym_while] = ACTIONS(2733), + [anon_sym_extern] = ACTIONS(2733), + [anon_sym_yield] = ACTIONS(2733), + [anon_sym_move] = ACTIONS(2733), + [anon_sym_try] = ACTIONS(2733), + [sym_integer_literal] = ACTIONS(2731), + [aux_sym_string_literal_token1] = ACTIONS(2731), + [sym_char_literal] = ACTIONS(2731), + [anon_sym_true] = ACTIONS(2733), + [anon_sym_false] = ACTIONS(2733), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2733), + [sym_super] = ACTIONS(2733), + [sym_crate] = ACTIONS(2733), + [sym_metavariable] = ACTIONS(2731), + [sym__raw_string_literal_start] = ACTIONS(2731), + [sym_float_literal] = ACTIONS(2731), + }, + [723] = { + [sym_line_comment] = STATE(723), + [sym_block_comment] = STATE(723), + [ts_builtin_sym_end] = ACTIONS(2735), + [sym_identifier] = ACTIONS(2737), + [anon_sym_SEMI] = ACTIONS(2735), + [anon_sym_macro_rules_BANG] = ACTIONS(2735), + [anon_sym_LPAREN] = ACTIONS(2735), + [anon_sym_LBRACK] = ACTIONS(2735), + [anon_sym_LBRACE] = ACTIONS(2735), + [anon_sym_RBRACE] = ACTIONS(2735), + [anon_sym_macro] = ACTIONS(2737), + [anon_sym_STAR] = ACTIONS(2735), + [anon_sym_u8] = ACTIONS(2737), + [anon_sym_i8] = ACTIONS(2737), + [anon_sym_u16] = ACTIONS(2737), + [anon_sym_i16] = ACTIONS(2737), + [anon_sym_u32] = ACTIONS(2737), + [anon_sym_i32] = ACTIONS(2737), + [anon_sym_u64] = ACTIONS(2737), + [anon_sym_i64] = ACTIONS(2737), + [anon_sym_u128] = ACTIONS(2737), + [anon_sym_i128] = ACTIONS(2737), + [anon_sym_isize] = ACTIONS(2737), + [anon_sym_usize] = ACTIONS(2737), + [anon_sym_f32] = ACTIONS(2737), + [anon_sym_f64] = ACTIONS(2737), + [anon_sym_bool] = ACTIONS(2737), + [anon_sym_str] = ACTIONS(2737), + [anon_sym_char] = ACTIONS(2737), + [anon_sym_DASH] = ACTIONS(2735), + [anon_sym_BANG] = ACTIONS(2735), + [anon_sym_AMP] = ACTIONS(2735), + [anon_sym_PIPE] = ACTIONS(2735), + [anon_sym_LT] = ACTIONS(2735), + [anon_sym_DOT_DOT] = ACTIONS(2735), + [anon_sym_COLON_COLON] = ACTIONS(2735), + [anon_sym_POUND] = ACTIONS(2735), + [anon_sym_SQUOTE] = ACTIONS(2737), + [anon_sym_async] = ACTIONS(2737), + [anon_sym_break] = ACTIONS(2737), + [anon_sym_const] = ACTIONS(2737), + [anon_sym_continue] = ACTIONS(2737), + [anon_sym_default] = ACTIONS(2737), + [anon_sym_enum] = ACTIONS(2737), + [anon_sym_fn] = ACTIONS(2737), + [anon_sym_for] = ACTIONS(2737), + [anon_sym_if] = ACTIONS(2737), + [anon_sym_impl] = ACTIONS(2737), + [anon_sym_let] = ACTIONS(2737), + [anon_sym_loop] = ACTIONS(2737), + [anon_sym_match] = ACTIONS(2737), + [anon_sym_mod] = ACTIONS(2737), + [anon_sym_pub] = ACTIONS(2737), + [anon_sym_return] = ACTIONS(2737), + [anon_sym_static] = ACTIONS(2737), + [anon_sym_struct] = ACTIONS(2737), + [anon_sym_trait] = ACTIONS(2737), + [anon_sym_type] = ACTIONS(2737), + [anon_sym_union] = ACTIONS(2737), + [anon_sym_unsafe] = ACTIONS(2737), + [anon_sym_use] = ACTIONS(2737), + [anon_sym_while] = ACTIONS(2737), + [anon_sym_extern] = ACTIONS(2737), + [anon_sym_yield] = ACTIONS(2737), + [anon_sym_move] = ACTIONS(2737), + [anon_sym_try] = ACTIONS(2737), + [sym_integer_literal] = ACTIONS(2735), + [aux_sym_string_literal_token1] = ACTIONS(2735), + [sym_char_literal] = ACTIONS(2735), + [anon_sym_true] = ACTIONS(2737), + [anon_sym_false] = ACTIONS(2737), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2737), + [sym_super] = ACTIONS(2737), + [sym_crate] = ACTIONS(2737), + [sym_metavariable] = ACTIONS(2735), + [sym__raw_string_literal_start] = ACTIONS(2735), + [sym_float_literal] = ACTIONS(2735), + }, + [724] = { + [sym_line_comment] = STATE(724), + [sym_block_comment] = STATE(724), + [ts_builtin_sym_end] = ACTIONS(2739), + [sym_identifier] = ACTIONS(2741), + [anon_sym_SEMI] = ACTIONS(2739), + [anon_sym_macro_rules_BANG] = ACTIONS(2739), + [anon_sym_LPAREN] = ACTIONS(2739), + [anon_sym_LBRACK] = ACTIONS(2739), + [anon_sym_LBRACE] = ACTIONS(2739), + [anon_sym_RBRACE] = ACTIONS(2739), + [anon_sym_macro] = ACTIONS(2741), + [anon_sym_STAR] = ACTIONS(2739), + [anon_sym_u8] = ACTIONS(2741), + [anon_sym_i8] = ACTIONS(2741), + [anon_sym_u16] = ACTIONS(2741), + [anon_sym_i16] = ACTIONS(2741), + [anon_sym_u32] = ACTIONS(2741), + [anon_sym_i32] = ACTIONS(2741), + [anon_sym_u64] = ACTIONS(2741), + [anon_sym_i64] = ACTIONS(2741), + [anon_sym_u128] = ACTIONS(2741), + [anon_sym_i128] = ACTIONS(2741), + [anon_sym_isize] = ACTIONS(2741), + [anon_sym_usize] = ACTIONS(2741), + [anon_sym_f32] = ACTIONS(2741), + [anon_sym_f64] = ACTIONS(2741), + [anon_sym_bool] = ACTIONS(2741), + [anon_sym_str] = ACTIONS(2741), + [anon_sym_char] = ACTIONS(2741), + [anon_sym_DASH] = ACTIONS(2739), + [anon_sym_BANG] = ACTIONS(2739), + [anon_sym_AMP] = ACTIONS(2739), + [anon_sym_PIPE] = ACTIONS(2739), + [anon_sym_LT] = ACTIONS(2739), + [anon_sym_DOT_DOT] = ACTIONS(2739), + [anon_sym_COLON_COLON] = ACTIONS(2739), + [anon_sym_POUND] = ACTIONS(2739), + [anon_sym_SQUOTE] = ACTIONS(2741), + [anon_sym_async] = ACTIONS(2741), + [anon_sym_break] = ACTIONS(2741), + [anon_sym_const] = ACTIONS(2741), + [anon_sym_continue] = ACTIONS(2741), + [anon_sym_default] = ACTIONS(2741), + [anon_sym_enum] = ACTIONS(2741), + [anon_sym_fn] = ACTIONS(2741), + [anon_sym_for] = ACTIONS(2741), + [anon_sym_if] = ACTIONS(2741), + [anon_sym_impl] = ACTIONS(2741), + [anon_sym_let] = ACTIONS(2741), + [anon_sym_loop] = ACTIONS(2741), + [anon_sym_match] = ACTIONS(2741), + [anon_sym_mod] = ACTIONS(2741), + [anon_sym_pub] = ACTIONS(2741), + [anon_sym_return] = ACTIONS(2741), + [anon_sym_static] = ACTIONS(2741), + [anon_sym_struct] = ACTIONS(2741), + [anon_sym_trait] = ACTIONS(2741), + [anon_sym_type] = ACTIONS(2741), + [anon_sym_union] = ACTIONS(2741), + [anon_sym_unsafe] = ACTIONS(2741), + [anon_sym_use] = ACTIONS(2741), + [anon_sym_while] = ACTIONS(2741), + [anon_sym_extern] = ACTIONS(2741), + [anon_sym_yield] = ACTIONS(2741), + [anon_sym_move] = ACTIONS(2741), + [anon_sym_try] = ACTIONS(2741), + [sym_integer_literal] = ACTIONS(2739), + [aux_sym_string_literal_token1] = ACTIONS(2739), + [sym_char_literal] = ACTIONS(2739), + [anon_sym_true] = ACTIONS(2741), + [anon_sym_false] = ACTIONS(2741), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2741), + [sym_super] = ACTIONS(2741), + [sym_crate] = ACTIONS(2741), + [sym_metavariable] = ACTIONS(2739), + [sym__raw_string_literal_start] = ACTIONS(2739), + [sym_float_literal] = ACTIONS(2739), + }, + [725] = { + [sym_line_comment] = STATE(725), + [sym_block_comment] = STATE(725), + [ts_builtin_sym_end] = ACTIONS(2743), + [sym_identifier] = ACTIONS(2745), + [anon_sym_SEMI] = ACTIONS(2743), + [anon_sym_macro_rules_BANG] = ACTIONS(2743), + [anon_sym_LPAREN] = ACTIONS(2743), + [anon_sym_LBRACK] = ACTIONS(2743), + [anon_sym_LBRACE] = ACTIONS(2743), + [anon_sym_RBRACE] = ACTIONS(2743), + [anon_sym_macro] = ACTIONS(2745), + [anon_sym_STAR] = ACTIONS(2743), + [anon_sym_u8] = ACTIONS(2745), + [anon_sym_i8] = ACTIONS(2745), + [anon_sym_u16] = ACTIONS(2745), + [anon_sym_i16] = ACTIONS(2745), + [anon_sym_u32] = ACTIONS(2745), + [anon_sym_i32] = ACTIONS(2745), + [anon_sym_u64] = ACTIONS(2745), + [anon_sym_i64] = ACTIONS(2745), + [anon_sym_u128] = ACTIONS(2745), + [anon_sym_i128] = ACTIONS(2745), + [anon_sym_isize] = ACTIONS(2745), + [anon_sym_usize] = ACTIONS(2745), + [anon_sym_f32] = ACTIONS(2745), + [anon_sym_f64] = ACTIONS(2745), + [anon_sym_bool] = ACTIONS(2745), + [anon_sym_str] = ACTIONS(2745), + [anon_sym_char] = ACTIONS(2745), + [anon_sym_DASH] = ACTIONS(2743), + [anon_sym_BANG] = ACTIONS(2743), + [anon_sym_AMP] = ACTIONS(2743), [anon_sym_PIPE] = ACTIONS(2743), - [anon_sym_LT] = ACTIONS(2746), - [anon_sym__] = ACTIONS(2749), - [anon_sym_DOT_DOT] = ACTIONS(2752), + [anon_sym_LT] = ACTIONS(2743), + [anon_sym_DOT_DOT] = ACTIONS(2743), + [anon_sym_COLON_COLON] = ACTIONS(2743), + [anon_sym_POUND] = ACTIONS(2743), + [anon_sym_SQUOTE] = ACTIONS(2745), + [anon_sym_async] = ACTIONS(2745), + [anon_sym_break] = ACTIONS(2745), + [anon_sym_const] = ACTIONS(2745), + [anon_sym_continue] = ACTIONS(2745), + [anon_sym_default] = ACTIONS(2745), + [anon_sym_enum] = ACTIONS(2745), + [anon_sym_fn] = ACTIONS(2745), + [anon_sym_for] = ACTIONS(2745), + [anon_sym_if] = ACTIONS(2745), + [anon_sym_impl] = ACTIONS(2745), + [anon_sym_let] = ACTIONS(2745), + [anon_sym_loop] = ACTIONS(2745), + [anon_sym_match] = ACTIONS(2745), + [anon_sym_mod] = ACTIONS(2745), + [anon_sym_pub] = ACTIONS(2745), + [anon_sym_return] = ACTIONS(2745), + [anon_sym_static] = ACTIONS(2745), + [anon_sym_struct] = ACTIONS(2745), + [anon_sym_trait] = ACTIONS(2745), + [anon_sym_type] = ACTIONS(2745), + [anon_sym_union] = ACTIONS(2745), + [anon_sym_unsafe] = ACTIONS(2745), + [anon_sym_use] = ACTIONS(2745), + [anon_sym_while] = ACTIONS(2745), + [anon_sym_extern] = ACTIONS(2745), + [anon_sym_yield] = ACTIONS(2745), + [anon_sym_move] = ACTIONS(2745), + [anon_sym_try] = ACTIONS(2745), + [sym_integer_literal] = ACTIONS(2743), + [aux_sym_string_literal_token1] = ACTIONS(2743), + [sym_char_literal] = ACTIONS(2743), + [anon_sym_true] = ACTIONS(2745), + [anon_sym_false] = ACTIONS(2745), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2745), + [sym_super] = ACTIONS(2745), + [sym_crate] = ACTIONS(2745), + [sym_metavariable] = ACTIONS(2743), + [sym__raw_string_literal_start] = ACTIONS(2743), + [sym_float_literal] = ACTIONS(2743), + }, + [726] = { + [sym_line_comment] = STATE(726), + [sym_block_comment] = STATE(726), + [ts_builtin_sym_end] = ACTIONS(2747), + [sym_identifier] = ACTIONS(2749), + [anon_sym_SEMI] = ACTIONS(2747), + [anon_sym_macro_rules_BANG] = ACTIONS(2747), + [anon_sym_LPAREN] = ACTIONS(2747), + [anon_sym_LBRACK] = ACTIONS(2747), + [anon_sym_LBRACE] = ACTIONS(2747), + [anon_sym_RBRACE] = ACTIONS(2747), + [anon_sym_macro] = ACTIONS(2749), + [anon_sym_STAR] = ACTIONS(2747), + [anon_sym_u8] = ACTIONS(2749), + [anon_sym_i8] = ACTIONS(2749), + [anon_sym_u16] = ACTIONS(2749), + [anon_sym_i16] = ACTIONS(2749), + [anon_sym_u32] = ACTIONS(2749), + [anon_sym_i32] = ACTIONS(2749), + [anon_sym_u64] = ACTIONS(2749), + [anon_sym_i64] = ACTIONS(2749), + [anon_sym_u128] = ACTIONS(2749), + [anon_sym_i128] = ACTIONS(2749), + [anon_sym_isize] = ACTIONS(2749), + [anon_sym_usize] = ACTIONS(2749), + [anon_sym_f32] = ACTIONS(2749), + [anon_sym_f64] = ACTIONS(2749), + [anon_sym_bool] = ACTIONS(2749), + [anon_sym_str] = ACTIONS(2749), + [anon_sym_char] = ACTIONS(2749), + [anon_sym_DASH] = ACTIONS(2747), + [anon_sym_BANG] = ACTIONS(2747), + [anon_sym_AMP] = ACTIONS(2747), + [anon_sym_PIPE] = ACTIONS(2747), + [anon_sym_LT] = ACTIONS(2747), + [anon_sym_DOT_DOT] = ACTIONS(2747), + [anon_sym_COLON_COLON] = ACTIONS(2747), + [anon_sym_POUND] = ACTIONS(2747), + [anon_sym_SQUOTE] = ACTIONS(2749), + [anon_sym_async] = ACTIONS(2749), + [anon_sym_break] = ACTIONS(2749), + [anon_sym_const] = ACTIONS(2749), + [anon_sym_continue] = ACTIONS(2749), + [anon_sym_default] = ACTIONS(2749), + [anon_sym_enum] = ACTIONS(2749), + [anon_sym_fn] = ACTIONS(2749), + [anon_sym_for] = ACTIONS(2749), + [anon_sym_if] = ACTIONS(2749), + [anon_sym_impl] = ACTIONS(2749), + [anon_sym_let] = ACTIONS(2749), + [anon_sym_loop] = ACTIONS(2749), + [anon_sym_match] = ACTIONS(2749), + [anon_sym_mod] = ACTIONS(2749), + [anon_sym_pub] = ACTIONS(2749), + [anon_sym_return] = ACTIONS(2749), + [anon_sym_static] = ACTIONS(2749), + [anon_sym_struct] = ACTIONS(2749), + [anon_sym_trait] = ACTIONS(2749), + [anon_sym_type] = ACTIONS(2749), + [anon_sym_union] = ACTIONS(2749), + [anon_sym_unsafe] = ACTIONS(2749), + [anon_sym_use] = ACTIONS(2749), + [anon_sym_while] = ACTIONS(2749), + [anon_sym_extern] = ACTIONS(2749), + [anon_sym_yield] = ACTIONS(2749), + [anon_sym_move] = ACTIONS(2749), + [anon_sym_try] = ACTIONS(2749), + [sym_integer_literal] = ACTIONS(2747), + [aux_sym_string_literal_token1] = ACTIONS(2747), + [sym_char_literal] = ACTIONS(2747), + [anon_sym_true] = ACTIONS(2749), + [anon_sym_false] = ACTIONS(2749), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2749), + [sym_super] = ACTIONS(2749), + [sym_crate] = ACTIONS(2749), + [sym_metavariable] = ACTIONS(2747), + [sym__raw_string_literal_start] = ACTIONS(2747), + [sym_float_literal] = ACTIONS(2747), + }, + [727] = { + [sym_line_comment] = STATE(727), + [sym_block_comment] = STATE(727), + [ts_builtin_sym_end] = ACTIONS(2751), + [sym_identifier] = ACTIONS(2753), + [anon_sym_SEMI] = ACTIONS(2751), + [anon_sym_macro_rules_BANG] = ACTIONS(2751), + [anon_sym_LPAREN] = ACTIONS(2751), + [anon_sym_LBRACK] = ACTIONS(2751), + [anon_sym_LBRACE] = ACTIONS(2751), + [anon_sym_RBRACE] = ACTIONS(2751), + [anon_sym_macro] = ACTIONS(2753), + [anon_sym_STAR] = ACTIONS(2751), + [anon_sym_u8] = ACTIONS(2753), + [anon_sym_i8] = ACTIONS(2753), + [anon_sym_u16] = ACTIONS(2753), + [anon_sym_i16] = ACTIONS(2753), + [anon_sym_u32] = ACTIONS(2753), + [anon_sym_i32] = ACTIONS(2753), + [anon_sym_u64] = ACTIONS(2753), + [anon_sym_i64] = ACTIONS(2753), + [anon_sym_u128] = ACTIONS(2753), + [anon_sym_i128] = ACTIONS(2753), + [anon_sym_isize] = ACTIONS(2753), + [anon_sym_usize] = ACTIONS(2753), + [anon_sym_f32] = ACTIONS(2753), + [anon_sym_f64] = ACTIONS(2753), + [anon_sym_bool] = ACTIONS(2753), + [anon_sym_str] = ACTIONS(2753), + [anon_sym_char] = ACTIONS(2753), + [anon_sym_DASH] = ACTIONS(2751), + [anon_sym_BANG] = ACTIONS(2751), + [anon_sym_AMP] = ACTIONS(2751), + [anon_sym_PIPE] = ACTIONS(2751), + [anon_sym_LT] = ACTIONS(2751), + [anon_sym_DOT_DOT] = ACTIONS(2751), + [anon_sym_COLON_COLON] = ACTIONS(2751), + [anon_sym_POUND] = ACTIONS(2751), + [anon_sym_SQUOTE] = ACTIONS(2753), + [anon_sym_async] = ACTIONS(2753), + [anon_sym_break] = ACTIONS(2753), + [anon_sym_const] = ACTIONS(2753), + [anon_sym_continue] = ACTIONS(2753), + [anon_sym_default] = ACTIONS(2753), + [anon_sym_enum] = ACTIONS(2753), + [anon_sym_fn] = ACTIONS(2753), + [anon_sym_for] = ACTIONS(2753), + [anon_sym_if] = ACTIONS(2753), + [anon_sym_impl] = ACTIONS(2753), + [anon_sym_let] = ACTIONS(2753), + [anon_sym_loop] = ACTIONS(2753), + [anon_sym_match] = ACTIONS(2753), + [anon_sym_mod] = ACTIONS(2753), + [anon_sym_pub] = ACTIONS(2753), + [anon_sym_return] = ACTIONS(2753), + [anon_sym_static] = ACTIONS(2753), + [anon_sym_struct] = ACTIONS(2753), + [anon_sym_trait] = ACTIONS(2753), + [anon_sym_type] = ACTIONS(2753), + [anon_sym_union] = ACTIONS(2753), + [anon_sym_unsafe] = ACTIONS(2753), + [anon_sym_use] = ACTIONS(2753), + [anon_sym_while] = ACTIONS(2753), + [anon_sym_extern] = ACTIONS(2753), + [anon_sym_yield] = ACTIONS(2753), + [anon_sym_move] = ACTIONS(2753), + [anon_sym_try] = ACTIONS(2753), + [sym_integer_literal] = ACTIONS(2751), + [aux_sym_string_literal_token1] = ACTIONS(2751), + [sym_char_literal] = ACTIONS(2751), + [anon_sym_true] = ACTIONS(2753), + [anon_sym_false] = ACTIONS(2753), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2753), + [sym_super] = ACTIONS(2753), + [sym_crate] = ACTIONS(2753), + [sym_metavariable] = ACTIONS(2751), + [sym__raw_string_literal_start] = ACTIONS(2751), + [sym_float_literal] = ACTIONS(2751), + }, + [728] = { + [sym_line_comment] = STATE(728), + [sym_block_comment] = STATE(728), + [ts_builtin_sym_end] = ACTIONS(1235), + [sym_identifier] = ACTIONS(1237), + [anon_sym_SEMI] = ACTIONS(1235), + [anon_sym_macro_rules_BANG] = ACTIONS(1235), + [anon_sym_LPAREN] = ACTIONS(1235), + [anon_sym_LBRACK] = ACTIONS(1235), + [anon_sym_LBRACE] = ACTIONS(1235), + [anon_sym_RBRACE] = ACTIONS(1235), + [anon_sym_macro] = ACTIONS(1237), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_u8] = ACTIONS(1237), + [anon_sym_i8] = ACTIONS(1237), + [anon_sym_u16] = ACTIONS(1237), + [anon_sym_i16] = ACTIONS(1237), + [anon_sym_u32] = ACTIONS(1237), + [anon_sym_i32] = ACTIONS(1237), + [anon_sym_u64] = ACTIONS(1237), + [anon_sym_i64] = ACTIONS(1237), + [anon_sym_u128] = ACTIONS(1237), + [anon_sym_i128] = ACTIONS(1237), + [anon_sym_isize] = ACTIONS(1237), + [anon_sym_usize] = ACTIONS(1237), + [anon_sym_f32] = ACTIONS(1237), + [anon_sym_f64] = ACTIONS(1237), + [anon_sym_bool] = ACTIONS(1237), + [anon_sym_str] = ACTIONS(1237), + [anon_sym_char] = ACTIONS(1237), + [anon_sym_DASH] = ACTIONS(1235), + [anon_sym_BANG] = ACTIONS(1235), + [anon_sym_AMP] = ACTIONS(1235), + [anon_sym_PIPE] = ACTIONS(1235), + [anon_sym_LT] = ACTIONS(1235), + [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_COLON_COLON] = ACTIONS(1235), + [anon_sym_POUND] = ACTIONS(1235), + [anon_sym_SQUOTE] = ACTIONS(1237), + [anon_sym_async] = ACTIONS(1237), + [anon_sym_break] = ACTIONS(1237), + [anon_sym_const] = ACTIONS(1237), + [anon_sym_continue] = ACTIONS(1237), + [anon_sym_default] = ACTIONS(1237), + [anon_sym_enum] = ACTIONS(1237), + [anon_sym_fn] = ACTIONS(1237), + [anon_sym_for] = ACTIONS(1237), + [anon_sym_if] = ACTIONS(1237), + [anon_sym_impl] = ACTIONS(1237), + [anon_sym_let] = ACTIONS(1237), + [anon_sym_loop] = ACTIONS(1237), + [anon_sym_match] = ACTIONS(1237), + [anon_sym_mod] = ACTIONS(1237), + [anon_sym_pub] = ACTIONS(1237), + [anon_sym_return] = ACTIONS(1237), + [anon_sym_static] = ACTIONS(1237), + [anon_sym_struct] = ACTIONS(1237), + [anon_sym_trait] = ACTIONS(1237), + [anon_sym_type] = ACTIONS(1237), + [anon_sym_union] = ACTIONS(1237), + [anon_sym_unsafe] = ACTIONS(1237), + [anon_sym_use] = ACTIONS(1237), + [anon_sym_while] = ACTIONS(1237), + [anon_sym_extern] = ACTIONS(1237), + [anon_sym_yield] = ACTIONS(1237), + [anon_sym_move] = ACTIONS(1237), + [anon_sym_try] = ACTIONS(1237), + [sym_integer_literal] = ACTIONS(1235), + [aux_sym_string_literal_token1] = ACTIONS(1235), + [sym_char_literal] = ACTIONS(1235), + [anon_sym_true] = ACTIONS(1237), + [anon_sym_false] = ACTIONS(1237), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1237), + [sym_super] = ACTIONS(1237), + [sym_crate] = ACTIONS(1237), + [sym_metavariable] = ACTIONS(1235), + [sym__raw_string_literal_start] = ACTIONS(1235), + [sym_float_literal] = ACTIONS(1235), + }, + [729] = { + [sym_line_comment] = STATE(729), + [sym_block_comment] = STATE(729), + [ts_builtin_sym_end] = ACTIONS(2755), + [sym_identifier] = ACTIONS(2757), + [anon_sym_SEMI] = ACTIONS(2755), + [anon_sym_macro_rules_BANG] = ACTIONS(2755), + [anon_sym_LPAREN] = ACTIONS(2755), + [anon_sym_LBRACK] = ACTIONS(2755), + [anon_sym_LBRACE] = ACTIONS(2755), + [anon_sym_RBRACE] = ACTIONS(2755), + [anon_sym_macro] = ACTIONS(2757), + [anon_sym_STAR] = ACTIONS(2755), + [anon_sym_u8] = ACTIONS(2757), + [anon_sym_i8] = ACTIONS(2757), + [anon_sym_u16] = ACTIONS(2757), + [anon_sym_i16] = ACTIONS(2757), + [anon_sym_u32] = ACTIONS(2757), + [anon_sym_i32] = ACTIONS(2757), + [anon_sym_u64] = ACTIONS(2757), + [anon_sym_i64] = ACTIONS(2757), + [anon_sym_u128] = ACTIONS(2757), + [anon_sym_i128] = ACTIONS(2757), + [anon_sym_isize] = ACTIONS(2757), + [anon_sym_usize] = ACTIONS(2757), + [anon_sym_f32] = ACTIONS(2757), + [anon_sym_f64] = ACTIONS(2757), + [anon_sym_bool] = ACTIONS(2757), + [anon_sym_str] = ACTIONS(2757), + [anon_sym_char] = ACTIONS(2757), + [anon_sym_DASH] = ACTIONS(2755), + [anon_sym_BANG] = ACTIONS(2755), + [anon_sym_AMP] = ACTIONS(2755), + [anon_sym_PIPE] = ACTIONS(2755), + [anon_sym_LT] = ACTIONS(2755), + [anon_sym_DOT_DOT] = ACTIONS(2755), [anon_sym_COLON_COLON] = ACTIONS(2755), - [anon_sym_POUND] = ACTIONS(2758), + [anon_sym_POUND] = ACTIONS(2755), + [anon_sym_SQUOTE] = ACTIONS(2757), + [anon_sym_async] = ACTIONS(2757), + [anon_sym_break] = ACTIONS(2757), + [anon_sym_const] = ACTIONS(2757), + [anon_sym_continue] = ACTIONS(2757), + [anon_sym_default] = ACTIONS(2757), + [anon_sym_enum] = ACTIONS(2757), + [anon_sym_fn] = ACTIONS(2757), + [anon_sym_for] = ACTIONS(2757), + [anon_sym_if] = ACTIONS(2757), + [anon_sym_impl] = ACTIONS(2757), + [anon_sym_let] = ACTIONS(2757), + [anon_sym_loop] = ACTIONS(2757), + [anon_sym_match] = ACTIONS(2757), + [anon_sym_mod] = ACTIONS(2757), + [anon_sym_pub] = ACTIONS(2757), + [anon_sym_return] = ACTIONS(2757), + [anon_sym_static] = ACTIONS(2757), + [anon_sym_struct] = ACTIONS(2757), + [anon_sym_trait] = ACTIONS(2757), + [anon_sym_type] = ACTIONS(2757), + [anon_sym_union] = ACTIONS(2757), + [anon_sym_unsafe] = ACTIONS(2757), + [anon_sym_use] = ACTIONS(2757), + [anon_sym_while] = ACTIONS(2757), + [anon_sym_extern] = ACTIONS(2757), + [anon_sym_yield] = ACTIONS(2757), + [anon_sym_move] = ACTIONS(2757), + [anon_sym_try] = ACTIONS(2757), + [sym_integer_literal] = ACTIONS(2755), + [aux_sym_string_literal_token1] = ACTIONS(2755), + [sym_char_literal] = ACTIONS(2755), + [anon_sym_true] = ACTIONS(2757), + [anon_sym_false] = ACTIONS(2757), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2757), + [sym_super] = ACTIONS(2757), + [sym_crate] = ACTIONS(2757), + [sym_metavariable] = ACTIONS(2755), + [sym__raw_string_literal_start] = ACTIONS(2755), + [sym_float_literal] = ACTIONS(2755), + }, + [730] = { + [sym_line_comment] = STATE(730), + [sym_block_comment] = STATE(730), + [ts_builtin_sym_end] = ACTIONS(2759), + [sym_identifier] = ACTIONS(2761), + [anon_sym_SEMI] = ACTIONS(2759), + [anon_sym_macro_rules_BANG] = ACTIONS(2759), + [anon_sym_LPAREN] = ACTIONS(2759), + [anon_sym_LBRACK] = ACTIONS(2759), + [anon_sym_LBRACE] = ACTIONS(2759), + [anon_sym_RBRACE] = ACTIONS(2759), + [anon_sym_macro] = ACTIONS(2761), + [anon_sym_STAR] = ACTIONS(2759), + [anon_sym_u8] = ACTIONS(2761), + [anon_sym_i8] = ACTIONS(2761), + [anon_sym_u16] = ACTIONS(2761), + [anon_sym_i16] = ACTIONS(2761), + [anon_sym_u32] = ACTIONS(2761), + [anon_sym_i32] = ACTIONS(2761), + [anon_sym_u64] = ACTIONS(2761), + [anon_sym_i64] = ACTIONS(2761), + [anon_sym_u128] = ACTIONS(2761), + [anon_sym_i128] = ACTIONS(2761), + [anon_sym_isize] = ACTIONS(2761), + [anon_sym_usize] = ACTIONS(2761), + [anon_sym_f32] = ACTIONS(2761), + [anon_sym_f64] = ACTIONS(2761), + [anon_sym_bool] = ACTIONS(2761), + [anon_sym_str] = ACTIONS(2761), + [anon_sym_char] = ACTIONS(2761), + [anon_sym_DASH] = ACTIONS(2759), + [anon_sym_BANG] = ACTIONS(2759), + [anon_sym_AMP] = ACTIONS(2759), + [anon_sym_PIPE] = ACTIONS(2759), + [anon_sym_LT] = ACTIONS(2759), + [anon_sym_DOT_DOT] = ACTIONS(2759), + [anon_sym_COLON_COLON] = ACTIONS(2759), + [anon_sym_POUND] = ACTIONS(2759), + [anon_sym_SQUOTE] = ACTIONS(2761), + [anon_sym_async] = ACTIONS(2761), + [anon_sym_break] = ACTIONS(2761), [anon_sym_const] = ACTIONS(2761), - [anon_sym_default] = ACTIONS(2764), - [anon_sym_union] = ACTIONS(2764), - [anon_sym_ref] = ACTIONS(2767), - [sym_mutable_specifier] = ACTIONS(2770), - [sym_integer_literal] = ACTIONS(2773), - [aux_sym_string_literal_token1] = ACTIONS(2776), - [sym_char_literal] = ACTIONS(2773), - [anon_sym_true] = ACTIONS(2779), - [anon_sym_false] = ACTIONS(2779), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2782), - [sym_super] = ACTIONS(2782), - [sym_crate] = ACTIONS(2782), - [sym_metavariable] = ACTIONS(2785), - [sym__raw_string_literal_start] = ACTIONS(2788), - [sym_float_literal] = ACTIONS(2773), + [anon_sym_continue] = ACTIONS(2761), + [anon_sym_default] = ACTIONS(2761), + [anon_sym_enum] = ACTIONS(2761), + [anon_sym_fn] = ACTIONS(2761), + [anon_sym_for] = ACTIONS(2761), + [anon_sym_if] = ACTIONS(2761), + [anon_sym_impl] = ACTIONS(2761), + [anon_sym_let] = ACTIONS(2761), + [anon_sym_loop] = ACTIONS(2761), + [anon_sym_match] = ACTIONS(2761), + [anon_sym_mod] = ACTIONS(2761), + [anon_sym_pub] = ACTIONS(2761), + [anon_sym_return] = ACTIONS(2761), + [anon_sym_static] = ACTIONS(2761), + [anon_sym_struct] = ACTIONS(2761), + [anon_sym_trait] = ACTIONS(2761), + [anon_sym_type] = ACTIONS(2761), + [anon_sym_union] = ACTIONS(2761), + [anon_sym_unsafe] = ACTIONS(2761), + [anon_sym_use] = ACTIONS(2761), + [anon_sym_while] = ACTIONS(2761), + [anon_sym_extern] = ACTIONS(2761), + [anon_sym_yield] = ACTIONS(2761), + [anon_sym_move] = ACTIONS(2761), + [anon_sym_try] = ACTIONS(2761), + [sym_integer_literal] = ACTIONS(2759), + [aux_sym_string_literal_token1] = ACTIONS(2759), + [sym_char_literal] = ACTIONS(2759), + [anon_sym_true] = ACTIONS(2761), + [anon_sym_false] = ACTIONS(2761), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2761), + [sym_super] = ACTIONS(2761), + [sym_crate] = ACTIONS(2761), + [sym_metavariable] = ACTIONS(2759), + [sym__raw_string_literal_start] = ACTIONS(2759), + [sym_float_literal] = ACTIONS(2759), }, - [722] = { - [sym_line_comment] = STATE(722), - [sym_block_comment] = STATE(722), + [731] = { + [sym_line_comment] = STATE(731), + [sym_block_comment] = STATE(731), + [ts_builtin_sym_end] = ACTIONS(2763), + [sym_identifier] = ACTIONS(2765), + [anon_sym_SEMI] = ACTIONS(2763), + [anon_sym_macro_rules_BANG] = ACTIONS(2763), + [anon_sym_LPAREN] = ACTIONS(2763), + [anon_sym_LBRACK] = ACTIONS(2763), + [anon_sym_LBRACE] = ACTIONS(2763), + [anon_sym_RBRACE] = ACTIONS(2763), + [anon_sym_macro] = ACTIONS(2765), + [anon_sym_STAR] = ACTIONS(2763), + [anon_sym_u8] = ACTIONS(2765), + [anon_sym_i8] = ACTIONS(2765), + [anon_sym_u16] = ACTIONS(2765), + [anon_sym_i16] = ACTIONS(2765), + [anon_sym_u32] = ACTIONS(2765), + [anon_sym_i32] = ACTIONS(2765), + [anon_sym_u64] = ACTIONS(2765), + [anon_sym_i64] = ACTIONS(2765), + [anon_sym_u128] = ACTIONS(2765), + [anon_sym_i128] = ACTIONS(2765), + [anon_sym_isize] = ACTIONS(2765), + [anon_sym_usize] = ACTIONS(2765), + [anon_sym_f32] = ACTIONS(2765), + [anon_sym_f64] = ACTIONS(2765), + [anon_sym_bool] = ACTIONS(2765), + [anon_sym_str] = ACTIONS(2765), + [anon_sym_char] = ACTIONS(2765), + [anon_sym_DASH] = ACTIONS(2763), + [anon_sym_BANG] = ACTIONS(2763), + [anon_sym_AMP] = ACTIONS(2763), + [anon_sym_PIPE] = ACTIONS(2763), + [anon_sym_LT] = ACTIONS(2763), + [anon_sym_DOT_DOT] = ACTIONS(2763), + [anon_sym_COLON_COLON] = ACTIONS(2763), + [anon_sym_POUND] = ACTIONS(2763), + [anon_sym_SQUOTE] = ACTIONS(2765), + [anon_sym_async] = ACTIONS(2765), + [anon_sym_break] = ACTIONS(2765), + [anon_sym_const] = ACTIONS(2765), + [anon_sym_continue] = ACTIONS(2765), + [anon_sym_default] = ACTIONS(2765), + [anon_sym_enum] = ACTIONS(2765), + [anon_sym_fn] = ACTIONS(2765), + [anon_sym_for] = ACTIONS(2765), + [anon_sym_if] = ACTIONS(2765), + [anon_sym_impl] = ACTIONS(2765), + [anon_sym_let] = ACTIONS(2765), + [anon_sym_loop] = ACTIONS(2765), + [anon_sym_match] = ACTIONS(2765), + [anon_sym_mod] = ACTIONS(2765), + [anon_sym_pub] = ACTIONS(2765), + [anon_sym_return] = ACTIONS(2765), + [anon_sym_static] = ACTIONS(2765), + [anon_sym_struct] = ACTIONS(2765), + [anon_sym_trait] = ACTIONS(2765), + [anon_sym_type] = ACTIONS(2765), + [anon_sym_union] = ACTIONS(2765), + [anon_sym_unsafe] = ACTIONS(2765), + [anon_sym_use] = ACTIONS(2765), + [anon_sym_while] = ACTIONS(2765), + [anon_sym_extern] = ACTIONS(2765), + [anon_sym_yield] = ACTIONS(2765), + [anon_sym_move] = ACTIONS(2765), + [anon_sym_try] = ACTIONS(2765), + [sym_integer_literal] = ACTIONS(2763), + [aux_sym_string_literal_token1] = ACTIONS(2763), + [sym_char_literal] = ACTIONS(2763), + [anon_sym_true] = ACTIONS(2765), + [anon_sym_false] = ACTIONS(2765), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2765), + [sym_super] = ACTIONS(2765), + [sym_crate] = ACTIONS(2765), + [sym_metavariable] = ACTIONS(2763), + [sym__raw_string_literal_start] = ACTIONS(2763), + [sym_float_literal] = ACTIONS(2763), + }, + [732] = { + [sym_line_comment] = STATE(732), + [sym_block_comment] = STATE(732), + [ts_builtin_sym_end] = ACTIONS(2767), + [sym_identifier] = ACTIONS(2769), + [anon_sym_SEMI] = ACTIONS(2767), + [anon_sym_macro_rules_BANG] = ACTIONS(2767), + [anon_sym_LPAREN] = ACTIONS(2767), + [anon_sym_LBRACK] = ACTIONS(2767), + [anon_sym_LBRACE] = ACTIONS(2767), + [anon_sym_RBRACE] = ACTIONS(2767), + [anon_sym_macro] = ACTIONS(2769), + [anon_sym_STAR] = ACTIONS(2767), + [anon_sym_u8] = ACTIONS(2769), + [anon_sym_i8] = ACTIONS(2769), + [anon_sym_u16] = ACTIONS(2769), + [anon_sym_i16] = ACTIONS(2769), + [anon_sym_u32] = ACTIONS(2769), + [anon_sym_i32] = ACTIONS(2769), + [anon_sym_u64] = ACTIONS(2769), + [anon_sym_i64] = ACTIONS(2769), + [anon_sym_u128] = ACTIONS(2769), + [anon_sym_i128] = ACTIONS(2769), + [anon_sym_isize] = ACTIONS(2769), + [anon_sym_usize] = ACTIONS(2769), + [anon_sym_f32] = ACTIONS(2769), + [anon_sym_f64] = ACTIONS(2769), + [anon_sym_bool] = ACTIONS(2769), + [anon_sym_str] = ACTIONS(2769), + [anon_sym_char] = ACTIONS(2769), + [anon_sym_DASH] = ACTIONS(2767), + [anon_sym_BANG] = ACTIONS(2767), + [anon_sym_AMP] = ACTIONS(2767), + [anon_sym_PIPE] = ACTIONS(2767), + [anon_sym_LT] = ACTIONS(2767), + [anon_sym_DOT_DOT] = ACTIONS(2767), + [anon_sym_COLON_COLON] = ACTIONS(2767), + [anon_sym_POUND] = ACTIONS(2767), + [anon_sym_SQUOTE] = ACTIONS(2769), + [anon_sym_async] = ACTIONS(2769), + [anon_sym_break] = ACTIONS(2769), + [anon_sym_const] = ACTIONS(2769), + [anon_sym_continue] = ACTIONS(2769), + [anon_sym_default] = ACTIONS(2769), + [anon_sym_enum] = ACTIONS(2769), + [anon_sym_fn] = ACTIONS(2769), + [anon_sym_for] = ACTIONS(2769), + [anon_sym_if] = ACTIONS(2769), + [anon_sym_impl] = ACTIONS(2769), + [anon_sym_let] = ACTIONS(2769), + [anon_sym_loop] = ACTIONS(2769), + [anon_sym_match] = ACTIONS(2769), + [anon_sym_mod] = ACTIONS(2769), + [anon_sym_pub] = ACTIONS(2769), + [anon_sym_return] = ACTIONS(2769), + [anon_sym_static] = ACTIONS(2769), + [anon_sym_struct] = ACTIONS(2769), + [anon_sym_trait] = ACTIONS(2769), + [anon_sym_type] = ACTIONS(2769), + [anon_sym_union] = ACTIONS(2769), + [anon_sym_unsafe] = ACTIONS(2769), + [anon_sym_use] = ACTIONS(2769), + [anon_sym_while] = ACTIONS(2769), + [anon_sym_extern] = ACTIONS(2769), + [anon_sym_yield] = ACTIONS(2769), + [anon_sym_move] = ACTIONS(2769), + [anon_sym_try] = ACTIONS(2769), + [sym_integer_literal] = ACTIONS(2767), + [aux_sym_string_literal_token1] = ACTIONS(2767), + [sym_char_literal] = ACTIONS(2767), + [anon_sym_true] = ACTIONS(2769), + [anon_sym_false] = ACTIONS(2769), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2769), + [sym_super] = ACTIONS(2769), + [sym_crate] = ACTIONS(2769), + [sym_metavariable] = ACTIONS(2767), + [sym__raw_string_literal_start] = ACTIONS(2767), + [sym_float_literal] = ACTIONS(2767), + }, + [733] = { + [sym_line_comment] = STATE(733), + [sym_block_comment] = STATE(733), + [ts_builtin_sym_end] = ACTIONS(2771), + [sym_identifier] = ACTIONS(2773), + [anon_sym_SEMI] = ACTIONS(2771), + [anon_sym_macro_rules_BANG] = ACTIONS(2771), + [anon_sym_LPAREN] = ACTIONS(2771), + [anon_sym_LBRACK] = ACTIONS(2771), + [anon_sym_LBRACE] = ACTIONS(2771), + [anon_sym_RBRACE] = ACTIONS(2771), + [anon_sym_macro] = ACTIONS(2773), + [anon_sym_STAR] = ACTIONS(2771), + [anon_sym_u8] = ACTIONS(2773), + [anon_sym_i8] = ACTIONS(2773), + [anon_sym_u16] = ACTIONS(2773), + [anon_sym_i16] = ACTIONS(2773), + [anon_sym_u32] = ACTIONS(2773), + [anon_sym_i32] = ACTIONS(2773), + [anon_sym_u64] = ACTIONS(2773), + [anon_sym_i64] = ACTIONS(2773), + [anon_sym_u128] = ACTIONS(2773), + [anon_sym_i128] = ACTIONS(2773), + [anon_sym_isize] = ACTIONS(2773), + [anon_sym_usize] = ACTIONS(2773), + [anon_sym_f32] = ACTIONS(2773), + [anon_sym_f64] = ACTIONS(2773), + [anon_sym_bool] = ACTIONS(2773), + [anon_sym_str] = ACTIONS(2773), + [anon_sym_char] = ACTIONS(2773), + [anon_sym_DASH] = ACTIONS(2771), + [anon_sym_BANG] = ACTIONS(2771), + [anon_sym_AMP] = ACTIONS(2771), + [anon_sym_PIPE] = ACTIONS(2771), + [anon_sym_LT] = ACTIONS(2771), + [anon_sym_DOT_DOT] = ACTIONS(2771), + [anon_sym_COLON_COLON] = ACTIONS(2771), + [anon_sym_POUND] = ACTIONS(2771), + [anon_sym_SQUOTE] = ACTIONS(2773), + [anon_sym_async] = ACTIONS(2773), + [anon_sym_break] = ACTIONS(2773), + [anon_sym_const] = ACTIONS(2773), + [anon_sym_continue] = ACTIONS(2773), + [anon_sym_default] = ACTIONS(2773), + [anon_sym_enum] = ACTIONS(2773), + [anon_sym_fn] = ACTIONS(2773), + [anon_sym_for] = ACTIONS(2773), + [anon_sym_if] = ACTIONS(2773), + [anon_sym_impl] = ACTIONS(2773), + [anon_sym_let] = ACTIONS(2773), + [anon_sym_loop] = ACTIONS(2773), + [anon_sym_match] = ACTIONS(2773), + [anon_sym_mod] = ACTIONS(2773), + [anon_sym_pub] = ACTIONS(2773), + [anon_sym_return] = ACTIONS(2773), + [anon_sym_static] = ACTIONS(2773), + [anon_sym_struct] = ACTIONS(2773), + [anon_sym_trait] = ACTIONS(2773), + [anon_sym_type] = ACTIONS(2773), + [anon_sym_union] = ACTIONS(2773), + [anon_sym_unsafe] = ACTIONS(2773), + [anon_sym_use] = ACTIONS(2773), + [anon_sym_while] = ACTIONS(2773), + [anon_sym_extern] = ACTIONS(2773), + [anon_sym_yield] = ACTIONS(2773), + [anon_sym_move] = ACTIONS(2773), + [anon_sym_try] = ACTIONS(2773), + [sym_integer_literal] = ACTIONS(2771), + [aux_sym_string_literal_token1] = ACTIONS(2771), + [sym_char_literal] = ACTIONS(2771), + [anon_sym_true] = ACTIONS(2773), + [anon_sym_false] = ACTIONS(2773), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2773), + [sym_super] = ACTIONS(2773), + [sym_crate] = ACTIONS(2773), + [sym_metavariable] = ACTIONS(2771), + [sym__raw_string_literal_start] = ACTIONS(2771), + [sym_float_literal] = ACTIONS(2771), + }, + [734] = { + [sym_line_comment] = STATE(734), + [sym_block_comment] = STATE(734), + [ts_builtin_sym_end] = ACTIONS(2775), + [sym_identifier] = ACTIONS(2777), + [anon_sym_SEMI] = ACTIONS(2775), + [anon_sym_macro_rules_BANG] = ACTIONS(2775), + [anon_sym_LPAREN] = ACTIONS(2775), + [anon_sym_LBRACK] = ACTIONS(2775), + [anon_sym_LBRACE] = ACTIONS(2775), + [anon_sym_RBRACE] = ACTIONS(2775), + [anon_sym_macro] = ACTIONS(2777), + [anon_sym_STAR] = ACTIONS(2775), + [anon_sym_u8] = ACTIONS(2777), + [anon_sym_i8] = ACTIONS(2777), + [anon_sym_u16] = ACTIONS(2777), + [anon_sym_i16] = ACTIONS(2777), + [anon_sym_u32] = ACTIONS(2777), + [anon_sym_i32] = ACTIONS(2777), + [anon_sym_u64] = ACTIONS(2777), + [anon_sym_i64] = ACTIONS(2777), + [anon_sym_u128] = ACTIONS(2777), + [anon_sym_i128] = ACTIONS(2777), + [anon_sym_isize] = ACTIONS(2777), + [anon_sym_usize] = ACTIONS(2777), + [anon_sym_f32] = ACTIONS(2777), + [anon_sym_f64] = ACTIONS(2777), + [anon_sym_bool] = ACTIONS(2777), + [anon_sym_str] = ACTIONS(2777), + [anon_sym_char] = ACTIONS(2777), + [anon_sym_DASH] = ACTIONS(2775), + [anon_sym_BANG] = ACTIONS(2775), + [anon_sym_AMP] = ACTIONS(2775), + [anon_sym_PIPE] = ACTIONS(2775), + [anon_sym_LT] = ACTIONS(2775), + [anon_sym_DOT_DOT] = ACTIONS(2775), + [anon_sym_COLON_COLON] = ACTIONS(2775), + [anon_sym_POUND] = ACTIONS(2775), + [anon_sym_SQUOTE] = ACTIONS(2777), + [anon_sym_async] = ACTIONS(2777), + [anon_sym_break] = ACTIONS(2777), + [anon_sym_const] = ACTIONS(2777), + [anon_sym_continue] = ACTIONS(2777), + [anon_sym_default] = ACTIONS(2777), + [anon_sym_enum] = ACTIONS(2777), + [anon_sym_fn] = ACTIONS(2777), + [anon_sym_for] = ACTIONS(2777), + [anon_sym_if] = ACTIONS(2777), + [anon_sym_impl] = ACTIONS(2777), + [anon_sym_let] = ACTIONS(2777), + [anon_sym_loop] = ACTIONS(2777), + [anon_sym_match] = ACTIONS(2777), + [anon_sym_mod] = ACTIONS(2777), + [anon_sym_pub] = ACTIONS(2777), + [anon_sym_return] = ACTIONS(2777), + [anon_sym_static] = ACTIONS(2777), + [anon_sym_struct] = ACTIONS(2777), + [anon_sym_trait] = ACTIONS(2777), + [anon_sym_type] = ACTIONS(2777), + [anon_sym_union] = ACTIONS(2777), + [anon_sym_unsafe] = ACTIONS(2777), + [anon_sym_use] = ACTIONS(2777), + [anon_sym_while] = ACTIONS(2777), + [anon_sym_extern] = ACTIONS(2777), + [anon_sym_yield] = ACTIONS(2777), + [anon_sym_move] = ACTIONS(2777), + [anon_sym_try] = ACTIONS(2777), + [sym_integer_literal] = ACTIONS(2775), + [aux_sym_string_literal_token1] = ACTIONS(2775), + [sym_char_literal] = ACTIONS(2775), + [anon_sym_true] = ACTIONS(2777), + [anon_sym_false] = ACTIONS(2777), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2777), + [sym_super] = ACTIONS(2777), + [sym_crate] = ACTIONS(2777), + [sym_metavariable] = ACTIONS(2775), + [sym__raw_string_literal_start] = ACTIONS(2775), + [sym_float_literal] = ACTIONS(2775), + }, + [735] = { + [sym_line_comment] = STATE(735), + [sym_block_comment] = STATE(735), + [ts_builtin_sym_end] = ACTIONS(2779), + [sym_identifier] = ACTIONS(2781), + [anon_sym_SEMI] = ACTIONS(2779), + [anon_sym_macro_rules_BANG] = ACTIONS(2779), + [anon_sym_LPAREN] = ACTIONS(2779), + [anon_sym_LBRACK] = ACTIONS(2779), + [anon_sym_LBRACE] = ACTIONS(2779), + [anon_sym_RBRACE] = ACTIONS(2779), + [anon_sym_macro] = ACTIONS(2781), + [anon_sym_STAR] = ACTIONS(2779), + [anon_sym_u8] = ACTIONS(2781), + [anon_sym_i8] = ACTIONS(2781), + [anon_sym_u16] = ACTIONS(2781), + [anon_sym_i16] = ACTIONS(2781), + [anon_sym_u32] = ACTIONS(2781), + [anon_sym_i32] = ACTIONS(2781), + [anon_sym_u64] = ACTIONS(2781), + [anon_sym_i64] = ACTIONS(2781), + [anon_sym_u128] = ACTIONS(2781), + [anon_sym_i128] = ACTIONS(2781), + [anon_sym_isize] = ACTIONS(2781), + [anon_sym_usize] = ACTIONS(2781), + [anon_sym_f32] = ACTIONS(2781), + [anon_sym_f64] = ACTIONS(2781), + [anon_sym_bool] = ACTIONS(2781), + [anon_sym_str] = ACTIONS(2781), + [anon_sym_char] = ACTIONS(2781), + [anon_sym_DASH] = ACTIONS(2779), + [anon_sym_BANG] = ACTIONS(2779), + [anon_sym_AMP] = ACTIONS(2779), + [anon_sym_PIPE] = ACTIONS(2779), + [anon_sym_LT] = ACTIONS(2779), + [anon_sym_DOT_DOT] = ACTIONS(2779), + [anon_sym_COLON_COLON] = ACTIONS(2779), + [anon_sym_POUND] = ACTIONS(2779), + [anon_sym_SQUOTE] = ACTIONS(2781), + [anon_sym_async] = ACTIONS(2781), + [anon_sym_break] = ACTIONS(2781), + [anon_sym_const] = ACTIONS(2781), + [anon_sym_continue] = ACTIONS(2781), + [anon_sym_default] = ACTIONS(2781), + [anon_sym_enum] = ACTIONS(2781), + [anon_sym_fn] = ACTIONS(2781), + [anon_sym_for] = ACTIONS(2781), + [anon_sym_if] = ACTIONS(2781), + [anon_sym_impl] = ACTIONS(2781), + [anon_sym_let] = ACTIONS(2781), + [anon_sym_loop] = ACTIONS(2781), + [anon_sym_match] = ACTIONS(2781), + [anon_sym_mod] = ACTIONS(2781), + [anon_sym_pub] = ACTIONS(2781), + [anon_sym_return] = ACTIONS(2781), + [anon_sym_static] = ACTIONS(2781), + [anon_sym_struct] = ACTIONS(2781), + [anon_sym_trait] = ACTIONS(2781), + [anon_sym_type] = ACTIONS(2781), + [anon_sym_union] = ACTIONS(2781), + [anon_sym_unsafe] = ACTIONS(2781), + [anon_sym_use] = ACTIONS(2781), + [anon_sym_while] = ACTIONS(2781), + [anon_sym_extern] = ACTIONS(2781), + [anon_sym_yield] = ACTIONS(2781), + [anon_sym_move] = ACTIONS(2781), + [anon_sym_try] = ACTIONS(2781), + [sym_integer_literal] = ACTIONS(2779), + [aux_sym_string_literal_token1] = ACTIONS(2779), + [sym_char_literal] = ACTIONS(2779), + [anon_sym_true] = ACTIONS(2781), + [anon_sym_false] = ACTIONS(2781), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2781), + [sym_super] = ACTIONS(2781), + [sym_crate] = ACTIONS(2781), + [sym_metavariable] = ACTIONS(2779), + [sym__raw_string_literal_start] = ACTIONS(2779), + [sym_float_literal] = ACTIONS(2779), + }, + [736] = { + [sym_line_comment] = STATE(736), + [sym_block_comment] = STATE(736), + [ts_builtin_sym_end] = ACTIONS(2783), + [sym_identifier] = ACTIONS(2785), + [anon_sym_SEMI] = ACTIONS(2783), + [anon_sym_macro_rules_BANG] = ACTIONS(2783), + [anon_sym_LPAREN] = ACTIONS(2783), + [anon_sym_LBRACK] = ACTIONS(2783), + [anon_sym_LBRACE] = ACTIONS(2783), + [anon_sym_RBRACE] = ACTIONS(2783), + [anon_sym_macro] = ACTIONS(2785), + [anon_sym_STAR] = ACTIONS(2783), + [anon_sym_u8] = ACTIONS(2785), + [anon_sym_i8] = ACTIONS(2785), + [anon_sym_u16] = ACTIONS(2785), + [anon_sym_i16] = ACTIONS(2785), + [anon_sym_u32] = ACTIONS(2785), + [anon_sym_i32] = ACTIONS(2785), + [anon_sym_u64] = ACTIONS(2785), + [anon_sym_i64] = ACTIONS(2785), + [anon_sym_u128] = ACTIONS(2785), + [anon_sym_i128] = ACTIONS(2785), + [anon_sym_isize] = ACTIONS(2785), + [anon_sym_usize] = ACTIONS(2785), + [anon_sym_f32] = ACTIONS(2785), + [anon_sym_f64] = ACTIONS(2785), + [anon_sym_bool] = ACTIONS(2785), + [anon_sym_str] = ACTIONS(2785), + [anon_sym_char] = ACTIONS(2785), + [anon_sym_DASH] = ACTIONS(2783), + [anon_sym_BANG] = ACTIONS(2783), + [anon_sym_AMP] = ACTIONS(2783), + [anon_sym_PIPE] = ACTIONS(2783), + [anon_sym_LT] = ACTIONS(2783), + [anon_sym_DOT_DOT] = ACTIONS(2783), + [anon_sym_COLON_COLON] = ACTIONS(2783), + [anon_sym_POUND] = ACTIONS(2783), + [anon_sym_SQUOTE] = ACTIONS(2785), + [anon_sym_async] = ACTIONS(2785), + [anon_sym_break] = ACTIONS(2785), + [anon_sym_const] = ACTIONS(2785), + [anon_sym_continue] = ACTIONS(2785), + [anon_sym_default] = ACTIONS(2785), + [anon_sym_enum] = ACTIONS(2785), + [anon_sym_fn] = ACTIONS(2785), + [anon_sym_for] = ACTIONS(2785), + [anon_sym_if] = ACTIONS(2785), + [anon_sym_impl] = ACTIONS(2785), + [anon_sym_let] = ACTIONS(2785), + [anon_sym_loop] = ACTIONS(2785), + [anon_sym_match] = ACTIONS(2785), + [anon_sym_mod] = ACTIONS(2785), + [anon_sym_pub] = ACTIONS(2785), + [anon_sym_return] = ACTIONS(2785), + [anon_sym_static] = ACTIONS(2785), + [anon_sym_struct] = ACTIONS(2785), + [anon_sym_trait] = ACTIONS(2785), + [anon_sym_type] = ACTIONS(2785), + [anon_sym_union] = ACTIONS(2785), + [anon_sym_unsafe] = ACTIONS(2785), + [anon_sym_use] = ACTIONS(2785), + [anon_sym_while] = ACTIONS(2785), + [anon_sym_extern] = ACTIONS(2785), + [anon_sym_yield] = ACTIONS(2785), + [anon_sym_move] = ACTIONS(2785), + [anon_sym_try] = ACTIONS(2785), + [sym_integer_literal] = ACTIONS(2783), + [aux_sym_string_literal_token1] = ACTIONS(2783), + [sym_char_literal] = ACTIONS(2783), + [anon_sym_true] = ACTIONS(2785), + [anon_sym_false] = ACTIONS(2785), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2785), + [sym_super] = ACTIONS(2785), + [sym_crate] = ACTIONS(2785), + [sym_metavariable] = ACTIONS(2783), + [sym__raw_string_literal_start] = ACTIONS(2783), + [sym_float_literal] = ACTIONS(2783), + }, + [737] = { + [sym_line_comment] = STATE(737), + [sym_block_comment] = STATE(737), + [ts_builtin_sym_end] = ACTIONS(2787), + [sym_identifier] = ACTIONS(2789), + [anon_sym_SEMI] = ACTIONS(2787), + [anon_sym_macro_rules_BANG] = ACTIONS(2787), + [anon_sym_LPAREN] = ACTIONS(2787), + [anon_sym_LBRACK] = ACTIONS(2787), + [anon_sym_LBRACE] = ACTIONS(2787), + [anon_sym_RBRACE] = ACTIONS(2787), + [anon_sym_macro] = ACTIONS(2789), + [anon_sym_STAR] = ACTIONS(2787), + [anon_sym_u8] = ACTIONS(2789), + [anon_sym_i8] = ACTIONS(2789), + [anon_sym_u16] = ACTIONS(2789), + [anon_sym_i16] = ACTIONS(2789), + [anon_sym_u32] = ACTIONS(2789), + [anon_sym_i32] = ACTIONS(2789), + [anon_sym_u64] = ACTIONS(2789), + [anon_sym_i64] = ACTIONS(2789), + [anon_sym_u128] = ACTIONS(2789), + [anon_sym_i128] = ACTIONS(2789), + [anon_sym_isize] = ACTIONS(2789), + [anon_sym_usize] = ACTIONS(2789), + [anon_sym_f32] = ACTIONS(2789), + [anon_sym_f64] = ACTIONS(2789), + [anon_sym_bool] = ACTIONS(2789), + [anon_sym_str] = ACTIONS(2789), + [anon_sym_char] = ACTIONS(2789), + [anon_sym_DASH] = ACTIONS(2787), + [anon_sym_BANG] = ACTIONS(2787), + [anon_sym_AMP] = ACTIONS(2787), + [anon_sym_PIPE] = ACTIONS(2787), + [anon_sym_LT] = ACTIONS(2787), + [anon_sym_DOT_DOT] = ACTIONS(2787), + [anon_sym_COLON_COLON] = ACTIONS(2787), + [anon_sym_POUND] = ACTIONS(2787), + [anon_sym_SQUOTE] = ACTIONS(2789), + [anon_sym_async] = ACTIONS(2789), + [anon_sym_break] = ACTIONS(2789), + [anon_sym_const] = ACTIONS(2789), + [anon_sym_continue] = ACTIONS(2789), + [anon_sym_default] = ACTIONS(2789), + [anon_sym_enum] = ACTIONS(2789), + [anon_sym_fn] = ACTIONS(2789), + [anon_sym_for] = ACTIONS(2789), + [anon_sym_if] = ACTIONS(2789), + [anon_sym_impl] = ACTIONS(2789), + [anon_sym_let] = ACTIONS(2789), + [anon_sym_loop] = ACTIONS(2789), + [anon_sym_match] = ACTIONS(2789), + [anon_sym_mod] = ACTIONS(2789), + [anon_sym_pub] = ACTIONS(2789), + [anon_sym_return] = ACTIONS(2789), + [anon_sym_static] = ACTIONS(2789), + [anon_sym_struct] = ACTIONS(2789), + [anon_sym_trait] = ACTIONS(2789), + [anon_sym_type] = ACTIONS(2789), + [anon_sym_union] = ACTIONS(2789), + [anon_sym_unsafe] = ACTIONS(2789), + [anon_sym_use] = ACTIONS(2789), + [anon_sym_while] = ACTIONS(2789), + [anon_sym_extern] = ACTIONS(2789), + [anon_sym_yield] = ACTIONS(2789), + [anon_sym_move] = ACTIONS(2789), + [anon_sym_try] = ACTIONS(2789), + [sym_integer_literal] = ACTIONS(2787), + [aux_sym_string_literal_token1] = ACTIONS(2787), + [sym_char_literal] = ACTIONS(2787), + [anon_sym_true] = ACTIONS(2789), + [anon_sym_false] = ACTIONS(2789), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2789), + [sym_super] = ACTIONS(2789), + [sym_crate] = ACTIONS(2789), + [sym_metavariable] = ACTIONS(2787), + [sym__raw_string_literal_start] = ACTIONS(2787), + [sym_float_literal] = ACTIONS(2787), + }, + [738] = { + [sym_line_comment] = STATE(738), + [sym_block_comment] = STATE(738), [ts_builtin_sym_end] = ACTIONS(2791), [sym_identifier] = ACTIONS(2793), [anon_sym_SEMI] = ACTIONS(2791), @@ -87976,6 +90079,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(2791), [anon_sym_LBRACE] = ACTIONS(2791), [anon_sym_RBRACE] = ACTIONS(2791), + [anon_sym_macro] = ACTIONS(2793), [anon_sym_STAR] = ACTIONS(2791), [anon_sym_u8] = ACTIONS(2793), [anon_sym_i8] = ACTIONS(2793), @@ -88036,8 +90140,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2791), [anon_sym_true] = ACTIONS(2793), [anon_sym_false] = ACTIONS(2793), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(2793), [sym_super] = ACTIONS(2793), [sym_crate] = ACTIONS(2793), @@ -88045,9 +90149,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2791), [sym_float_literal] = ACTIONS(2791), }, - [723] = { - [sym_line_comment] = STATE(723), - [sym_block_comment] = STATE(723), + [739] = { + [sym_line_comment] = STATE(739), + [sym_block_comment] = STATE(739), [ts_builtin_sym_end] = ACTIONS(2795), [sym_identifier] = ACTIONS(2797), [anon_sym_SEMI] = ACTIONS(2795), @@ -88056,6 +90160,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(2795), [anon_sym_LBRACE] = ACTIONS(2795), [anon_sym_RBRACE] = ACTIONS(2795), + [anon_sym_macro] = ACTIONS(2797), [anon_sym_STAR] = ACTIONS(2795), [anon_sym_u8] = ACTIONS(2797), [anon_sym_i8] = ACTIONS(2797), @@ -88116,8 +90221,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2795), [anon_sym_true] = ACTIONS(2797), [anon_sym_false] = ACTIONS(2797), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(2797), [sym_super] = ACTIONS(2797), [sym_crate] = ACTIONS(2797), @@ -88125,9 +90230,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2795), [sym_float_literal] = ACTIONS(2795), }, - [724] = { - [sym_line_comment] = STATE(724), - [sym_block_comment] = STATE(724), + [740] = { + [sym_line_comment] = STATE(740), + [sym_block_comment] = STATE(740), [ts_builtin_sym_end] = ACTIONS(2799), [sym_identifier] = ACTIONS(2801), [anon_sym_SEMI] = ACTIONS(2799), @@ -88136,6 +90241,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(2799), [anon_sym_LBRACE] = ACTIONS(2799), [anon_sym_RBRACE] = ACTIONS(2799), + [anon_sym_macro] = ACTIONS(2801), [anon_sym_STAR] = ACTIONS(2799), [anon_sym_u8] = ACTIONS(2801), [anon_sym_i8] = ACTIONS(2801), @@ -88196,8 +90302,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2799), [anon_sym_true] = ACTIONS(2801), [anon_sym_false] = ACTIONS(2801), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(2801), [sym_super] = ACTIONS(2801), [sym_crate] = ACTIONS(2801), @@ -88205,9 +90311,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2799), [sym_float_literal] = ACTIONS(2799), }, - [725] = { - [sym_line_comment] = STATE(725), - [sym_block_comment] = STATE(725), + [741] = { + [sym_line_comment] = STATE(741), + [sym_block_comment] = STATE(741), [ts_builtin_sym_end] = ACTIONS(2803), [sym_identifier] = ACTIONS(2805), [anon_sym_SEMI] = ACTIONS(2803), @@ -88216,6 +90322,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(2803), [anon_sym_LBRACE] = ACTIONS(2803), [anon_sym_RBRACE] = ACTIONS(2803), + [anon_sym_macro] = ACTIONS(2805), [anon_sym_STAR] = ACTIONS(2803), [anon_sym_u8] = ACTIONS(2805), [anon_sym_i8] = ACTIONS(2805), @@ -88276,8 +90383,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2803), [anon_sym_true] = ACTIONS(2805), [anon_sym_false] = ACTIONS(2805), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(2805), [sym_super] = ACTIONS(2805), [sym_crate] = ACTIONS(2805), @@ -88285,9 +90392,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2803), [sym_float_literal] = ACTIONS(2803), }, - [726] = { - [sym_line_comment] = STATE(726), - [sym_block_comment] = STATE(726), + [742] = { + [sym_line_comment] = STATE(742), + [sym_block_comment] = STATE(742), [ts_builtin_sym_end] = ACTIONS(2807), [sym_identifier] = ACTIONS(2809), [anon_sym_SEMI] = ACTIONS(2807), @@ -88296,6 +90403,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(2807), [anon_sym_LBRACE] = ACTIONS(2807), [anon_sym_RBRACE] = ACTIONS(2807), + [anon_sym_macro] = ACTIONS(2809), [anon_sym_STAR] = ACTIONS(2807), [anon_sym_u8] = ACTIONS(2809), [anon_sym_i8] = ACTIONS(2809), @@ -88356,8 +90464,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2807), [anon_sym_true] = ACTIONS(2809), [anon_sym_false] = ACTIONS(2809), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(2809), [sym_super] = ACTIONS(2809), [sym_crate] = ACTIONS(2809), @@ -88365,9 +90473,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2807), [sym_float_literal] = ACTIONS(2807), }, - [727] = { - [sym_line_comment] = STATE(727), - [sym_block_comment] = STATE(727), + [743] = { + [sym_line_comment] = STATE(743), + [sym_block_comment] = STATE(743), [ts_builtin_sym_end] = ACTIONS(2811), [sym_identifier] = ACTIONS(2813), [anon_sym_SEMI] = ACTIONS(2811), @@ -88376,6 +90484,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(2811), [anon_sym_LBRACE] = ACTIONS(2811), [anon_sym_RBRACE] = ACTIONS(2811), + [anon_sym_macro] = ACTIONS(2813), [anon_sym_STAR] = ACTIONS(2811), [anon_sym_u8] = ACTIONS(2813), [anon_sym_i8] = ACTIONS(2813), @@ -88436,8 +90545,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2811), [anon_sym_true] = ACTIONS(2813), [anon_sym_false] = ACTIONS(2813), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(2813), [sym_super] = ACTIONS(2813), [sym_crate] = ACTIONS(2813), @@ -88445,9 +90554,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2811), [sym_float_literal] = ACTIONS(2811), }, - [728] = { - [sym_line_comment] = STATE(728), - [sym_block_comment] = STATE(728), + [744] = { + [sym_line_comment] = STATE(744), + [sym_block_comment] = STATE(744), [ts_builtin_sym_end] = ACTIONS(2815), [sym_identifier] = ACTIONS(2817), [anon_sym_SEMI] = ACTIONS(2815), @@ -88456,6 +90565,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(2815), [anon_sym_LBRACE] = ACTIONS(2815), [anon_sym_RBRACE] = ACTIONS(2815), + [anon_sym_macro] = ACTIONS(2817), [anon_sym_STAR] = ACTIONS(2815), [anon_sym_u8] = ACTIONS(2817), [anon_sym_i8] = ACTIONS(2817), @@ -88516,8 +90626,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2815), [anon_sym_true] = ACTIONS(2817), [anon_sym_false] = ACTIONS(2817), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(2817), [sym_super] = ACTIONS(2817), [sym_crate] = ACTIONS(2817), @@ -88525,9 +90635,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2815), [sym_float_literal] = ACTIONS(2815), }, - [729] = { - [sym_line_comment] = STATE(729), - [sym_block_comment] = STATE(729), + [745] = { + [sym_line_comment] = STATE(745), + [sym_block_comment] = STATE(745), [ts_builtin_sym_end] = ACTIONS(2819), [sym_identifier] = ACTIONS(2821), [anon_sym_SEMI] = ACTIONS(2819), @@ -88536,6 +90646,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(2819), [anon_sym_LBRACE] = ACTIONS(2819), [anon_sym_RBRACE] = ACTIONS(2819), + [anon_sym_macro] = ACTIONS(2821), [anon_sym_STAR] = ACTIONS(2819), [anon_sym_u8] = ACTIONS(2821), [anon_sym_i8] = ACTIONS(2821), @@ -88596,8 +90707,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2819), [anon_sym_true] = ACTIONS(2821), [anon_sym_false] = ACTIONS(2821), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(2821), [sym_super] = ACTIONS(2821), [sym_crate] = ACTIONS(2821), @@ -88605,9 +90716,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2819), [sym_float_literal] = ACTIONS(2819), }, - [730] = { - [sym_line_comment] = STATE(730), - [sym_block_comment] = STATE(730), + [746] = { + [sym_line_comment] = STATE(746), + [sym_block_comment] = STATE(746), [ts_builtin_sym_end] = ACTIONS(2823), [sym_identifier] = ACTIONS(2825), [anon_sym_SEMI] = ACTIONS(2823), @@ -88616,6 +90727,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(2823), [anon_sym_LBRACE] = ACTIONS(2823), [anon_sym_RBRACE] = ACTIONS(2823), + [anon_sym_macro] = ACTIONS(2825), [anon_sym_STAR] = ACTIONS(2823), [anon_sym_u8] = ACTIONS(2825), [anon_sym_i8] = ACTIONS(2825), @@ -88676,8 +90788,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2823), [anon_sym_true] = ACTIONS(2825), [anon_sym_false] = ACTIONS(2825), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(2825), [sym_super] = ACTIONS(2825), [sym_crate] = ACTIONS(2825), @@ -88685,9 +90797,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2823), [sym_float_literal] = ACTIONS(2823), }, - [731] = { - [sym_line_comment] = STATE(731), - [sym_block_comment] = STATE(731), + [747] = { + [sym_line_comment] = STATE(747), + [sym_block_comment] = STATE(747), [ts_builtin_sym_end] = ACTIONS(2827), [sym_identifier] = ACTIONS(2829), [anon_sym_SEMI] = ACTIONS(2827), @@ -88696,6 +90808,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(2827), [anon_sym_LBRACE] = ACTIONS(2827), [anon_sym_RBRACE] = ACTIONS(2827), + [anon_sym_macro] = ACTIONS(2829), [anon_sym_STAR] = ACTIONS(2827), [anon_sym_u8] = ACTIONS(2829), [anon_sym_i8] = ACTIONS(2829), @@ -88756,8 +90869,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2827), [anon_sym_true] = ACTIONS(2829), [anon_sym_false] = ACTIONS(2829), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(2829), [sym_super] = ACTIONS(2829), [sym_crate] = ACTIONS(2829), @@ -88765,9 +90878,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2827), [sym_float_literal] = ACTIONS(2827), }, - [732] = { - [sym_line_comment] = STATE(732), - [sym_block_comment] = STATE(732), + [748] = { + [sym_line_comment] = STATE(748), + [sym_block_comment] = STATE(748), [ts_builtin_sym_end] = ACTIONS(2831), [sym_identifier] = ACTIONS(2833), [anon_sym_SEMI] = ACTIONS(2831), @@ -88776,6 +90889,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(2831), [anon_sym_LBRACE] = ACTIONS(2831), [anon_sym_RBRACE] = ACTIONS(2831), + [anon_sym_macro] = ACTIONS(2833), [anon_sym_STAR] = ACTIONS(2831), [anon_sym_u8] = ACTIONS(2833), [anon_sym_i8] = ACTIONS(2833), @@ -88836,8 +90950,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2831), [anon_sym_true] = ACTIONS(2833), [anon_sym_false] = ACTIONS(2833), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(2833), [sym_super] = ACTIONS(2833), [sym_crate] = ACTIONS(2833), @@ -88845,9 +90959,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2831), [sym_float_literal] = ACTIONS(2831), }, - [733] = { - [sym_line_comment] = STATE(733), - [sym_block_comment] = STATE(733), + [749] = { + [sym_line_comment] = STATE(749), + [sym_block_comment] = STATE(749), [ts_builtin_sym_end] = ACTIONS(2835), [sym_identifier] = ACTIONS(2837), [anon_sym_SEMI] = ACTIONS(2835), @@ -88856,6 +90970,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(2835), [anon_sym_LBRACE] = ACTIONS(2835), [anon_sym_RBRACE] = ACTIONS(2835), + [anon_sym_macro] = ACTIONS(2837), [anon_sym_STAR] = ACTIONS(2835), [anon_sym_u8] = ACTIONS(2837), [anon_sym_i8] = ACTIONS(2837), @@ -88916,8 +91031,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2835), [anon_sym_true] = ACTIONS(2837), [anon_sym_false] = ACTIONS(2837), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(2837), [sym_super] = ACTIONS(2837), [sym_crate] = ACTIONS(2837), @@ -88925,9 +91040,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2835), [sym_float_literal] = ACTIONS(2835), }, - [734] = { - [sym_line_comment] = STATE(734), - [sym_block_comment] = STATE(734), + [750] = { + [sym_line_comment] = STATE(750), + [sym_block_comment] = STATE(750), [ts_builtin_sym_end] = ACTIONS(2839), [sym_identifier] = ACTIONS(2841), [anon_sym_SEMI] = ACTIONS(2839), @@ -88936,6 +91051,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(2839), [anon_sym_LBRACE] = ACTIONS(2839), [anon_sym_RBRACE] = ACTIONS(2839), + [anon_sym_macro] = ACTIONS(2841), [anon_sym_STAR] = ACTIONS(2839), [anon_sym_u8] = ACTIONS(2841), [anon_sym_i8] = ACTIONS(2841), @@ -88996,8 +91112,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2839), [anon_sym_true] = ACTIONS(2841), [anon_sym_false] = ACTIONS(2841), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(2841), [sym_super] = ACTIONS(2841), [sym_crate] = ACTIONS(2841), @@ -89005,9 +91121,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2839), [sym_float_literal] = ACTIONS(2839), }, - [735] = { - [sym_line_comment] = STATE(735), - [sym_block_comment] = STATE(735), + [751] = { + [sym_line_comment] = STATE(751), + [sym_block_comment] = STATE(751), [ts_builtin_sym_end] = ACTIONS(2843), [sym_identifier] = ACTIONS(2845), [anon_sym_SEMI] = ACTIONS(2843), @@ -89016,6 +91132,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(2843), [anon_sym_LBRACE] = ACTIONS(2843), [anon_sym_RBRACE] = ACTIONS(2843), + [anon_sym_macro] = ACTIONS(2845), [anon_sym_STAR] = ACTIONS(2843), [anon_sym_u8] = ACTIONS(2845), [anon_sym_i8] = ACTIONS(2845), @@ -89076,8 +91193,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2843), [anon_sym_true] = ACTIONS(2845), [anon_sym_false] = ACTIONS(2845), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(2845), [sym_super] = ACTIONS(2845), [sym_crate] = ACTIONS(2845), @@ -89085,9 +91202,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2843), [sym_float_literal] = ACTIONS(2843), }, - [736] = { - [sym_line_comment] = STATE(736), - [sym_block_comment] = STATE(736), + [752] = { + [sym_line_comment] = STATE(752), + [sym_block_comment] = STATE(752), [ts_builtin_sym_end] = ACTIONS(2847), [sym_identifier] = ACTIONS(2849), [anon_sym_SEMI] = ACTIONS(2847), @@ -89096,6 +91213,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(2847), [anon_sym_LBRACE] = ACTIONS(2847), [anon_sym_RBRACE] = ACTIONS(2847), + [anon_sym_macro] = ACTIONS(2849), [anon_sym_STAR] = ACTIONS(2847), [anon_sym_u8] = ACTIONS(2849), [anon_sym_i8] = ACTIONS(2849), @@ -89156,8 +91274,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2847), [anon_sym_true] = ACTIONS(2849), [anon_sym_false] = ACTIONS(2849), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(2849), [sym_super] = ACTIONS(2849), [sym_crate] = ACTIONS(2849), @@ -89165,9 +91283,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2847), [sym_float_literal] = ACTIONS(2847), }, - [737] = { - [sym_line_comment] = STATE(737), - [sym_block_comment] = STATE(737), + [753] = { + [sym_line_comment] = STATE(753), + [sym_block_comment] = STATE(753), [ts_builtin_sym_end] = ACTIONS(2851), [sym_identifier] = ACTIONS(2853), [anon_sym_SEMI] = ACTIONS(2851), @@ -89176,6 +91294,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(2851), [anon_sym_LBRACE] = ACTIONS(2851), [anon_sym_RBRACE] = ACTIONS(2851), + [anon_sym_macro] = ACTIONS(2853), [anon_sym_STAR] = ACTIONS(2851), [anon_sym_u8] = ACTIONS(2853), [anon_sym_i8] = ACTIONS(2853), @@ -89236,8 +91355,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2851), [anon_sym_true] = ACTIONS(2853), [anon_sym_false] = ACTIONS(2853), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(2853), [sym_super] = ACTIONS(2853), [sym_crate] = ACTIONS(2853), @@ -89245,9 +91364,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2851), [sym_float_literal] = ACTIONS(2851), }, - [738] = { - [sym_line_comment] = STATE(738), - [sym_block_comment] = STATE(738), + [754] = { + [sym_line_comment] = STATE(754), + [sym_block_comment] = STATE(754), [ts_builtin_sym_end] = ACTIONS(2855), [sym_identifier] = ACTIONS(2857), [anon_sym_SEMI] = ACTIONS(2855), @@ -89256,6 +91375,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(2855), [anon_sym_LBRACE] = ACTIONS(2855), [anon_sym_RBRACE] = ACTIONS(2855), + [anon_sym_macro] = ACTIONS(2857), [anon_sym_STAR] = ACTIONS(2855), [anon_sym_u8] = ACTIONS(2857), [anon_sym_i8] = ACTIONS(2857), @@ -89316,8 +91436,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2855), [anon_sym_true] = ACTIONS(2857), [anon_sym_false] = ACTIONS(2857), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(2857), [sym_super] = ACTIONS(2857), [sym_crate] = ACTIONS(2857), @@ -89325,9 +91445,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2855), [sym_float_literal] = ACTIONS(2855), }, - [739] = { - [sym_line_comment] = STATE(739), - [sym_block_comment] = STATE(739), + [755] = { + [sym_line_comment] = STATE(755), + [sym_block_comment] = STATE(755), [ts_builtin_sym_end] = ACTIONS(2859), [sym_identifier] = ACTIONS(2861), [anon_sym_SEMI] = ACTIONS(2859), @@ -89336,6 +91456,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(2859), [anon_sym_LBRACE] = ACTIONS(2859), [anon_sym_RBRACE] = ACTIONS(2859), + [anon_sym_macro] = ACTIONS(2861), [anon_sym_STAR] = ACTIONS(2859), [anon_sym_u8] = ACTIONS(2861), [anon_sym_i8] = ACTIONS(2861), @@ -89396,8 +91517,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2859), [anon_sym_true] = ACTIONS(2861), [anon_sym_false] = ACTIONS(2861), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(2861), [sym_super] = ACTIONS(2861), [sym_crate] = ACTIONS(2861), @@ -89405,9 +91526,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2859), [sym_float_literal] = ACTIONS(2859), }, - [740] = { - [sym_line_comment] = STATE(740), - [sym_block_comment] = STATE(740), + [756] = { + [sym_line_comment] = STATE(756), + [sym_block_comment] = STATE(756), [ts_builtin_sym_end] = ACTIONS(2863), [sym_identifier] = ACTIONS(2865), [anon_sym_SEMI] = ACTIONS(2863), @@ -89416,6 +91537,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(2863), [anon_sym_LBRACE] = ACTIONS(2863), [anon_sym_RBRACE] = ACTIONS(2863), + [anon_sym_macro] = ACTIONS(2865), [anon_sym_STAR] = ACTIONS(2863), [anon_sym_u8] = ACTIONS(2865), [anon_sym_i8] = ACTIONS(2865), @@ -89476,8 +91598,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2863), [anon_sym_true] = ACTIONS(2865), [anon_sym_false] = ACTIONS(2865), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(2865), [sym_super] = ACTIONS(2865), [sym_crate] = ACTIONS(2865), @@ -89485,9 +91607,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2863), [sym_float_literal] = ACTIONS(2863), }, - [741] = { - [sym_line_comment] = STATE(741), - [sym_block_comment] = STATE(741), + [757] = { + [sym_line_comment] = STATE(757), + [sym_block_comment] = STATE(757), [ts_builtin_sym_end] = ACTIONS(2867), [sym_identifier] = ACTIONS(2869), [anon_sym_SEMI] = ACTIONS(2867), @@ -89496,6 +91618,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(2867), [anon_sym_LBRACE] = ACTIONS(2867), [anon_sym_RBRACE] = ACTIONS(2867), + [anon_sym_macro] = ACTIONS(2869), [anon_sym_STAR] = ACTIONS(2867), [anon_sym_u8] = ACTIONS(2869), [anon_sym_i8] = ACTIONS(2869), @@ -89556,8 +91679,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2867), [anon_sym_true] = ACTIONS(2869), [anon_sym_false] = ACTIONS(2869), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(2869), [sym_super] = ACTIONS(2869), [sym_crate] = ACTIONS(2869), @@ -89565,9 +91688,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2867), [sym_float_literal] = ACTIONS(2867), }, - [742] = { - [sym_line_comment] = STATE(742), - [sym_block_comment] = STATE(742), + [758] = { + [sym_line_comment] = STATE(758), + [sym_block_comment] = STATE(758), [ts_builtin_sym_end] = ACTIONS(2871), [sym_identifier] = ACTIONS(2873), [anon_sym_SEMI] = ACTIONS(2871), @@ -89576,6 +91699,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(2871), [anon_sym_LBRACE] = ACTIONS(2871), [anon_sym_RBRACE] = ACTIONS(2871), + [anon_sym_macro] = ACTIONS(2873), [anon_sym_STAR] = ACTIONS(2871), [anon_sym_u8] = ACTIONS(2873), [anon_sym_i8] = ACTIONS(2873), @@ -89636,8 +91760,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2871), [anon_sym_true] = ACTIONS(2873), [anon_sym_false] = ACTIONS(2873), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(2873), [sym_super] = ACTIONS(2873), [sym_crate] = ACTIONS(2873), @@ -89645,9 +91769,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2871), [sym_float_literal] = ACTIONS(2871), }, - [743] = { - [sym_line_comment] = STATE(743), - [sym_block_comment] = STATE(743), + [759] = { + [sym_line_comment] = STATE(759), + [sym_block_comment] = STATE(759), [ts_builtin_sym_end] = ACTIONS(2875), [sym_identifier] = ACTIONS(2877), [anon_sym_SEMI] = ACTIONS(2875), @@ -89656,6 +91780,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(2875), [anon_sym_LBRACE] = ACTIONS(2875), [anon_sym_RBRACE] = ACTIONS(2875), + [anon_sym_macro] = ACTIONS(2877), [anon_sym_STAR] = ACTIONS(2875), [anon_sym_u8] = ACTIONS(2877), [anon_sym_i8] = ACTIONS(2877), @@ -89716,8 +91841,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2875), [anon_sym_true] = ACTIONS(2877), [anon_sym_false] = ACTIONS(2877), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(2877), [sym_super] = ACTIONS(2877), [sym_crate] = ACTIONS(2877), @@ -89725,9 +91850,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2875), [sym_float_literal] = ACTIONS(2875), }, - [744] = { - [sym_line_comment] = STATE(744), - [sym_block_comment] = STATE(744), + [760] = { + [sym_line_comment] = STATE(760), + [sym_block_comment] = STATE(760), [ts_builtin_sym_end] = ACTIONS(2879), [sym_identifier] = ACTIONS(2881), [anon_sym_SEMI] = ACTIONS(2879), @@ -89736,6 +91861,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(2879), [anon_sym_LBRACE] = ACTIONS(2879), [anon_sym_RBRACE] = ACTIONS(2879), + [anon_sym_macro] = ACTIONS(2881), [anon_sym_STAR] = ACTIONS(2879), [anon_sym_u8] = ACTIONS(2881), [anon_sym_i8] = ACTIONS(2881), @@ -89796,8 +91922,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2879), [anon_sym_true] = ACTIONS(2881), [anon_sym_false] = ACTIONS(2881), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(2881), [sym_super] = ACTIONS(2881), [sym_crate] = ACTIONS(2881), @@ -89805,9 +91931,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2879), [sym_float_literal] = ACTIONS(2879), }, - [745] = { - [sym_line_comment] = STATE(745), - [sym_block_comment] = STATE(745), + [761] = { + [sym_line_comment] = STATE(761), + [sym_block_comment] = STATE(761), [ts_builtin_sym_end] = ACTIONS(2883), [sym_identifier] = ACTIONS(2885), [anon_sym_SEMI] = ACTIONS(2883), @@ -89816,6 +91942,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(2883), [anon_sym_LBRACE] = ACTIONS(2883), [anon_sym_RBRACE] = ACTIONS(2883), + [anon_sym_macro] = ACTIONS(2885), [anon_sym_STAR] = ACTIONS(2883), [anon_sym_u8] = ACTIONS(2885), [anon_sym_i8] = ACTIONS(2885), @@ -89876,8 +92003,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2883), [anon_sym_true] = ACTIONS(2885), [anon_sym_false] = ACTIONS(2885), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(2885), [sym_super] = ACTIONS(2885), [sym_crate] = ACTIONS(2885), @@ -89885,9 +92012,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2883), [sym_float_literal] = ACTIONS(2883), }, - [746] = { - [sym_line_comment] = STATE(746), - [sym_block_comment] = STATE(746), + [762] = { + [sym_line_comment] = STATE(762), + [sym_block_comment] = STATE(762), [ts_builtin_sym_end] = ACTIONS(2887), [sym_identifier] = ACTIONS(2889), [anon_sym_SEMI] = ACTIONS(2887), @@ -89896,6 +92023,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(2887), [anon_sym_LBRACE] = ACTIONS(2887), [anon_sym_RBRACE] = ACTIONS(2887), + [anon_sym_macro] = ACTIONS(2889), [anon_sym_STAR] = ACTIONS(2887), [anon_sym_u8] = ACTIONS(2889), [anon_sym_i8] = ACTIONS(2889), @@ -89956,8 +92084,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2887), [anon_sym_true] = ACTIONS(2889), [anon_sym_false] = ACTIONS(2889), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(2889), [sym_super] = ACTIONS(2889), [sym_crate] = ACTIONS(2889), @@ -89965,9 +92093,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2887), [sym_float_literal] = ACTIONS(2887), }, - [747] = { - [sym_line_comment] = STATE(747), - [sym_block_comment] = STATE(747), + [763] = { + [sym_line_comment] = STATE(763), + [sym_block_comment] = STATE(763), [ts_builtin_sym_end] = ACTIONS(2891), [sym_identifier] = ACTIONS(2893), [anon_sym_SEMI] = ACTIONS(2891), @@ -89976,6 +92104,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(2891), [anon_sym_LBRACE] = ACTIONS(2891), [anon_sym_RBRACE] = ACTIONS(2891), + [anon_sym_macro] = ACTIONS(2893), [anon_sym_STAR] = ACTIONS(2891), [anon_sym_u8] = ACTIONS(2893), [anon_sym_i8] = ACTIONS(2893), @@ -90036,8 +92165,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2891), [anon_sym_true] = ACTIONS(2893), [anon_sym_false] = ACTIONS(2893), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(2893), [sym_super] = ACTIONS(2893), [sym_crate] = ACTIONS(2893), @@ -90045,9 +92174,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2891), [sym_float_literal] = ACTIONS(2891), }, - [748] = { - [sym_line_comment] = STATE(748), - [sym_block_comment] = STATE(748), + [764] = { + [sym_line_comment] = STATE(764), + [sym_block_comment] = STATE(764), [ts_builtin_sym_end] = ACTIONS(2895), [sym_identifier] = ACTIONS(2897), [anon_sym_SEMI] = ACTIONS(2895), @@ -90056,6 +92185,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(2895), [anon_sym_LBRACE] = ACTIONS(2895), [anon_sym_RBRACE] = ACTIONS(2895), + [anon_sym_macro] = ACTIONS(2897), [anon_sym_STAR] = ACTIONS(2895), [anon_sym_u8] = ACTIONS(2897), [anon_sym_i8] = ACTIONS(2897), @@ -90116,8 +92246,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2895), [anon_sym_true] = ACTIONS(2897), [anon_sym_false] = ACTIONS(2897), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(2897), [sym_super] = ACTIONS(2897), [sym_crate] = ACTIONS(2897), @@ -90125,9 +92255,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2895), [sym_float_literal] = ACTIONS(2895), }, - [749] = { - [sym_line_comment] = STATE(749), - [sym_block_comment] = STATE(749), + [765] = { + [sym_line_comment] = STATE(765), + [sym_block_comment] = STATE(765), [ts_builtin_sym_end] = ACTIONS(2899), [sym_identifier] = ACTIONS(2901), [anon_sym_SEMI] = ACTIONS(2899), @@ -90136,6 +92266,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(2899), [anon_sym_LBRACE] = ACTIONS(2899), [anon_sym_RBRACE] = ACTIONS(2899), + [anon_sym_macro] = ACTIONS(2901), [anon_sym_STAR] = ACTIONS(2899), [anon_sym_u8] = ACTIONS(2901), [anon_sym_i8] = ACTIONS(2901), @@ -90196,8 +92327,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2899), [anon_sym_true] = ACTIONS(2901), [anon_sym_false] = ACTIONS(2901), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(2901), [sym_super] = ACTIONS(2901), [sym_crate] = ACTIONS(2901), @@ -90205,9 +92336,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2899), [sym_float_literal] = ACTIONS(2899), }, - [750] = { - [sym_line_comment] = STATE(750), - [sym_block_comment] = STATE(750), + [766] = { + [sym_line_comment] = STATE(766), + [sym_block_comment] = STATE(766), [ts_builtin_sym_end] = ACTIONS(2903), [sym_identifier] = ACTIONS(2905), [anon_sym_SEMI] = ACTIONS(2903), @@ -90216,6 +92347,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(2903), [anon_sym_LBRACE] = ACTIONS(2903), [anon_sym_RBRACE] = ACTIONS(2903), + [anon_sym_macro] = ACTIONS(2905), [anon_sym_STAR] = ACTIONS(2903), [anon_sym_u8] = ACTIONS(2905), [anon_sym_i8] = ACTIONS(2905), @@ -90276,8 +92408,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2903), [anon_sym_true] = ACTIONS(2905), [anon_sym_false] = ACTIONS(2905), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(2905), [sym_super] = ACTIONS(2905), [sym_crate] = ACTIONS(2905), @@ -90285,9 +92417,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2903), [sym_float_literal] = ACTIONS(2903), }, - [751] = { - [sym_line_comment] = STATE(751), - [sym_block_comment] = STATE(751), + [767] = { + [sym_line_comment] = STATE(767), + [sym_block_comment] = STATE(767), [ts_builtin_sym_end] = ACTIONS(2907), [sym_identifier] = ACTIONS(2909), [anon_sym_SEMI] = ACTIONS(2907), @@ -90296,6 +92428,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(2907), [anon_sym_LBRACE] = ACTIONS(2907), [anon_sym_RBRACE] = ACTIONS(2907), + [anon_sym_macro] = ACTIONS(2909), [anon_sym_STAR] = ACTIONS(2907), [anon_sym_u8] = ACTIONS(2909), [anon_sym_i8] = ACTIONS(2909), @@ -90356,8 +92489,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2907), [anon_sym_true] = ACTIONS(2909), [anon_sym_false] = ACTIONS(2909), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(2909), [sym_super] = ACTIONS(2909), [sym_crate] = ACTIONS(2909), @@ -90365,9 +92498,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2907), [sym_float_literal] = ACTIONS(2907), }, - [752] = { - [sym_line_comment] = STATE(752), - [sym_block_comment] = STATE(752), + [768] = { + [sym_line_comment] = STATE(768), + [sym_block_comment] = STATE(768), [ts_builtin_sym_end] = ACTIONS(2911), [sym_identifier] = ACTIONS(2913), [anon_sym_SEMI] = ACTIONS(2911), @@ -90376,6 +92509,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(2911), [anon_sym_LBRACE] = ACTIONS(2911), [anon_sym_RBRACE] = ACTIONS(2911), + [anon_sym_macro] = ACTIONS(2913), [anon_sym_STAR] = ACTIONS(2911), [anon_sym_u8] = ACTIONS(2913), [anon_sym_i8] = ACTIONS(2913), @@ -90436,8 +92570,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2911), [anon_sym_true] = ACTIONS(2913), [anon_sym_false] = ACTIONS(2913), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(2913), [sym_super] = ACTIONS(2913), [sym_crate] = ACTIONS(2913), @@ -90445,9 +92579,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2911), [sym_float_literal] = ACTIONS(2911), }, - [753] = { - [sym_line_comment] = STATE(753), - [sym_block_comment] = STATE(753), + [769] = { + [sym_line_comment] = STATE(769), + [sym_block_comment] = STATE(769), [ts_builtin_sym_end] = ACTIONS(2915), [sym_identifier] = ACTIONS(2917), [anon_sym_SEMI] = ACTIONS(2915), @@ -90456,6 +92590,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(2915), [anon_sym_LBRACE] = ACTIONS(2915), [anon_sym_RBRACE] = ACTIONS(2915), + [anon_sym_macro] = ACTIONS(2917), [anon_sym_STAR] = ACTIONS(2915), [anon_sym_u8] = ACTIONS(2917), [anon_sym_i8] = ACTIONS(2917), @@ -90516,8 +92651,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2915), [anon_sym_true] = ACTIONS(2917), [anon_sym_false] = ACTIONS(2917), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(2917), [sym_super] = ACTIONS(2917), [sym_crate] = ACTIONS(2917), @@ -90525,17879 +92660,18202 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2915), [sym_float_literal] = ACTIONS(2915), }, - [754] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym_closure_expression] = STATE(2828), - [sym_closure_parameters] = STATE(230), - [sym__pattern] = STATE(2500), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), - [sym_line_comment] = STATE(754), - [sym_block_comment] = STATE(754), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_RPAREN] = ACTIONS(2923), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1478), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COMMA] = ACTIONS(2931), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_static] = ACTIONS(1486), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [anon_sym_move] = ACTIONS(1490), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), - }, - [755] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym_closure_expression] = STATE(2855), - [sym_closure_parameters] = STATE(230), - [sym__pattern] = STATE(2640), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), - [sym_line_comment] = STATE(755), - [sym_block_comment] = STATE(755), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_RPAREN] = ACTIONS(2943), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1478), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COMMA] = ACTIONS(1484), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_static] = ACTIONS(1486), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [anon_sym_move] = ACTIONS(1490), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), - }, - [756] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym_closure_expression] = STATE(3065), - [sym_closure_parameters] = STATE(230), - [sym__pattern] = STATE(2928), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), - [sym_line_comment] = STATE(756), - [sym_block_comment] = STATE(756), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_RPAREN] = ACTIONS(2945), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1478), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_static] = ACTIONS(1486), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [anon_sym_move] = ACTIONS(1490), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), - }, - [757] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym_closure_expression] = STATE(3065), - [sym_closure_parameters] = STATE(230), - [sym__pattern] = STATE(2928), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), - [sym_line_comment] = STATE(757), - [sym_block_comment] = STATE(757), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_RPAREN] = ACTIONS(2947), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1478), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_static] = ACTIONS(1486), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [anon_sym_move] = ACTIONS(1490), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), - }, - [758] = { - [sym_attribute_item] = STATE(1479), - [sym_inner_attribute_item] = STATE(1479), - [sym_bracketed_type] = STATE(3523), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3262), - [sym_macro_invocation] = STATE(2877), - [sym_scoped_identifier] = STATE(2130), - [sym_scoped_type_identifier] = STATE(2908), - [sym_match_pattern] = STATE(3423), - [sym_const_block] = STATE(2877), - [sym__pattern] = STATE(2919), - [sym_tuple_pattern] = STATE(2877), - [sym_slice_pattern] = STATE(2877), - [sym_tuple_struct_pattern] = STATE(2877), - [sym_struct_pattern] = STATE(2877), - [sym_remaining_field_pattern] = STATE(2877), - [sym_mut_pattern] = STATE(2877), - [sym_range_pattern] = STATE(2877), - [sym_ref_pattern] = STATE(2877), - [sym_captured_pattern] = STATE(2877), - [sym_reference_pattern] = STATE(2877), - [sym_or_pattern] = STATE(2877), - [sym__literal_pattern] = STATE(2387), - [sym_negative_literal] = STATE(2299), - [sym_string_literal] = STATE(2299), - [sym_raw_string_literal] = STATE(2299), - [sym_boolean_literal] = STATE(2299), - [sym_line_comment] = STATE(758), - [sym_block_comment] = STATE(758), - [aux_sym_match_arm_repeat1] = STATE(1041), - [sym_identifier] = ACTIONS(1604), - [anon_sym_LPAREN] = ACTIONS(1606), - [anon_sym_LBRACK] = ACTIONS(1608), - [anon_sym_u8] = ACTIONS(1612), - [anon_sym_i8] = ACTIONS(1612), - [anon_sym_u16] = ACTIONS(1612), - [anon_sym_i16] = ACTIONS(1612), - [anon_sym_u32] = ACTIONS(1612), - [anon_sym_i32] = ACTIONS(1612), - [anon_sym_u64] = ACTIONS(1612), - [anon_sym_i64] = ACTIONS(1612), - [anon_sym_u128] = ACTIONS(1612), - [anon_sym_i128] = ACTIONS(1612), - [anon_sym_isize] = ACTIONS(1612), - [anon_sym_usize] = ACTIONS(1612), - [anon_sym_f32] = ACTIONS(1612), - [anon_sym_f64] = ACTIONS(1612), - [anon_sym_bool] = ACTIONS(1612), - [anon_sym_str] = ACTIONS(1612), - [anon_sym_char] = ACTIONS(1612), - [anon_sym_DASH] = ACTIONS(1614), - [anon_sym_AMP] = ACTIONS(1616), - [anon_sym_PIPE] = ACTIONS(1618), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1620), - [anon_sym_DOT_DOT] = ACTIONS(1622), - [anon_sym_COLON_COLON] = ACTIONS(1624), - [anon_sym_POUND] = ACTIONS(1626), - [anon_sym_const] = ACTIONS(1628), - [anon_sym_default] = ACTIONS(1630), - [anon_sym_union] = ACTIONS(1630), - [anon_sym_ref] = ACTIONS(1632), - [sym_mutable_specifier] = ACTIONS(1634), - [sym_integer_literal] = ACTIONS(1636), - [aux_sym_string_literal_token1] = ACTIONS(1638), - [sym_char_literal] = ACTIONS(1636), - [anon_sym_true] = ACTIONS(1640), - [anon_sym_false] = ACTIONS(1640), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1642), - [sym_super] = ACTIONS(1642), - [sym_crate] = ACTIONS(1642), - [sym_metavariable] = ACTIONS(1644), - [sym__raw_string_literal_start] = ACTIONS(1646), - [sym_float_literal] = ACTIONS(1636), - }, - [759] = { - [sym_attribute_item] = STATE(1479), - [sym_inner_attribute_item] = STATE(1479), - [sym_bracketed_type] = STATE(3523), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3262), - [sym_macro_invocation] = STATE(2877), - [sym_scoped_identifier] = STATE(2130), - [sym_scoped_type_identifier] = STATE(2908), - [sym_match_pattern] = STATE(3410), - [sym_const_block] = STATE(2877), - [sym__pattern] = STATE(2919), - [sym_tuple_pattern] = STATE(2877), - [sym_slice_pattern] = STATE(2877), - [sym_tuple_struct_pattern] = STATE(2877), - [sym_struct_pattern] = STATE(2877), - [sym_remaining_field_pattern] = STATE(2877), - [sym_mut_pattern] = STATE(2877), - [sym_range_pattern] = STATE(2877), - [sym_ref_pattern] = STATE(2877), - [sym_captured_pattern] = STATE(2877), - [sym_reference_pattern] = STATE(2877), - [sym_or_pattern] = STATE(2877), - [sym__literal_pattern] = STATE(2387), - [sym_negative_literal] = STATE(2299), - [sym_string_literal] = STATE(2299), - [sym_raw_string_literal] = STATE(2299), - [sym_boolean_literal] = STATE(2299), - [sym_line_comment] = STATE(759), - [sym_block_comment] = STATE(759), - [aux_sym_match_arm_repeat1] = STATE(1041), - [sym_identifier] = ACTIONS(1604), - [anon_sym_LPAREN] = ACTIONS(1606), - [anon_sym_LBRACK] = ACTIONS(1608), - [anon_sym_u8] = ACTIONS(1612), - [anon_sym_i8] = ACTIONS(1612), - [anon_sym_u16] = ACTIONS(1612), - [anon_sym_i16] = ACTIONS(1612), - [anon_sym_u32] = ACTIONS(1612), - [anon_sym_i32] = ACTIONS(1612), - [anon_sym_u64] = ACTIONS(1612), - [anon_sym_i64] = ACTIONS(1612), - [anon_sym_u128] = ACTIONS(1612), - [anon_sym_i128] = ACTIONS(1612), - [anon_sym_isize] = ACTIONS(1612), - [anon_sym_usize] = ACTIONS(1612), - [anon_sym_f32] = ACTIONS(1612), - [anon_sym_f64] = ACTIONS(1612), - [anon_sym_bool] = ACTIONS(1612), - [anon_sym_str] = ACTIONS(1612), - [anon_sym_char] = ACTIONS(1612), - [anon_sym_DASH] = ACTIONS(1614), - [anon_sym_AMP] = ACTIONS(1616), - [anon_sym_PIPE] = ACTIONS(1618), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1620), - [anon_sym_DOT_DOT] = ACTIONS(1622), - [anon_sym_COLON_COLON] = ACTIONS(1624), - [anon_sym_POUND] = ACTIONS(1626), - [anon_sym_const] = ACTIONS(1628), - [anon_sym_default] = ACTIONS(1630), - [anon_sym_union] = ACTIONS(1630), - [anon_sym_ref] = ACTIONS(1632), - [sym_mutable_specifier] = ACTIONS(1634), - [sym_integer_literal] = ACTIONS(1636), - [aux_sym_string_literal_token1] = ACTIONS(1638), - [sym_char_literal] = ACTIONS(1636), - [anon_sym_true] = ACTIONS(1640), - [anon_sym_false] = ACTIONS(1640), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1642), - [sym_super] = ACTIONS(1642), - [sym_crate] = ACTIONS(1642), - [sym_metavariable] = ACTIONS(1644), - [sym__raw_string_literal_start] = ACTIONS(1646), - [sym_float_literal] = ACTIONS(1636), - }, - [760] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym_closure_expression] = STATE(3065), - [sym_closure_parameters] = STATE(230), - [sym__pattern] = STATE(2928), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), - [sym_line_comment] = STATE(760), - [sym_block_comment] = STATE(760), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_RPAREN] = ACTIONS(2949), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1478), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_static] = ACTIONS(1486), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [anon_sym_move] = ACTIONS(1490), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), - }, - [761] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym_closure_expression] = STATE(3065), - [sym_closure_parameters] = STATE(230), - [sym__pattern] = STATE(2928), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), - [sym_line_comment] = STATE(761), - [sym_block_comment] = STATE(761), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_RPAREN] = ACTIONS(2951), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1478), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_static] = ACTIONS(1486), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [anon_sym_move] = ACTIONS(1490), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), - }, - [762] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym_closure_expression] = STATE(3065), - [sym_closure_parameters] = STATE(230), - [sym__pattern] = STATE(2928), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), - [sym_line_comment] = STATE(762), - [sym_block_comment] = STATE(762), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1478), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_static] = ACTIONS(1486), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [anon_sym_move] = ACTIONS(1490), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), - }, - [763] = { - [sym_attribute_item] = STATE(1476), - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_const_parameter] = STATE(2959), - [sym_constrained_type_parameter] = STATE(2693), - [sym_optional_type_parameter] = STATE(2959), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2819), - [sym_bracketed_type] = STATE(3332), - [sym_qualified_type] = STATE(3515), - [sym_lifetime] = STATE(2373), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), - [sym_line_comment] = STATE(763), - [sym_block_comment] = STATE(763), - [aux_sym_enum_variant_list_repeat1] = STATE(2055), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2953), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_POUND] = ACTIONS(2955), - [anon_sym_SQUOTE] = ACTIONS(2957), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(2959), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(2961), - }, - [764] = { - [sym_attribute_item] = STATE(1476), - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym_visibility_modifier] = STATE(885), - [sym__type] = STATE(2579), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), - [sym_line_comment] = STATE(764), - [sym_block_comment] = STATE(764), - [aux_sym_enum_variant_list_repeat1] = STATE(772), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_RPAREN] = ACTIONS(2965), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COMMA] = ACTIONS(2967), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_POUND] = ACTIONS(2955), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_pub] = ACTIONS(2971), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(2973), - [sym_metavariable] = ACTIONS(1584), - }, - [765] = { - [sym_attribute_item] = STATE(1476), - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym_visibility_modifier] = STATE(878), - [sym__type] = STATE(2913), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), - [sym_line_comment] = STATE(765), - [sym_block_comment] = STATE(765), - [aux_sym_enum_variant_list_repeat1] = STATE(774), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_RPAREN] = ACTIONS(2975), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_POUND] = ACTIONS(2955), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_pub] = ACTIONS(2971), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(2973), - [sym_metavariable] = ACTIONS(1584), - }, - [766] = { - [sym_attribute_item] = STATE(1476), - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym_visibility_modifier] = STATE(878), - [sym__type] = STATE(2913), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), - [sym_line_comment] = STATE(766), - [sym_block_comment] = STATE(766), - [aux_sym_enum_variant_list_repeat1] = STATE(774), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_RPAREN] = ACTIONS(2977), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_POUND] = ACTIONS(2955), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_pub] = ACTIONS(2971), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(2973), - [sym_metavariable] = ACTIONS(1584), - }, - [767] = { - [sym_attribute_item] = STATE(1476), - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym_visibility_modifier] = STATE(878), - [sym__type] = STATE(2913), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), - [sym_line_comment] = STATE(767), - [sym_block_comment] = STATE(767), - [aux_sym_enum_variant_list_repeat1] = STATE(774), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_RPAREN] = ACTIONS(2979), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_POUND] = ACTIONS(2955), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_pub] = ACTIONS(2971), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(2973), - [sym_metavariable] = ACTIONS(1584), - }, - [768] = { - [sym_attribute_item] = STATE(1476), - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym_visibility_modifier] = STATE(878), - [sym__type] = STATE(2913), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), - [sym_line_comment] = STATE(768), - [sym_block_comment] = STATE(768), - [aux_sym_enum_variant_list_repeat1] = STATE(774), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_RPAREN] = ACTIONS(2981), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_POUND] = ACTIONS(2955), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_pub] = ACTIONS(2971), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(2973), - [sym_metavariable] = ACTIONS(1584), - }, - [769] = { - [sym_attribute_item] = STATE(1476), - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym_visibility_modifier] = STATE(878), - [sym__type] = STATE(2913), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), - [sym_line_comment] = STATE(769), - [sym_block_comment] = STATE(769), - [aux_sym_enum_variant_list_repeat1] = STATE(774), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_RPAREN] = ACTIONS(2983), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_POUND] = ACTIONS(2955), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_pub] = ACTIONS(2971), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(2973), - [sym_metavariable] = ACTIONS(1584), - }, [770] = { - [sym_attribute_item] = STATE(1476), - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym_visibility_modifier] = STATE(878), - [sym__type] = STATE(2913), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), [sym_line_comment] = STATE(770), [sym_block_comment] = STATE(770), - [aux_sym_enum_variant_list_repeat1] = STATE(774), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_RPAREN] = ACTIONS(2985), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_POUND] = ACTIONS(2955), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_pub] = ACTIONS(2971), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(2973), - [sym_metavariable] = ACTIONS(1584), + [ts_builtin_sym_end] = ACTIONS(2919), + [sym_identifier] = ACTIONS(2921), + [anon_sym_SEMI] = ACTIONS(2919), + [anon_sym_macro_rules_BANG] = ACTIONS(2919), + [anon_sym_LPAREN] = ACTIONS(2919), + [anon_sym_LBRACK] = ACTIONS(2919), + [anon_sym_LBRACE] = ACTIONS(2919), + [anon_sym_RBRACE] = ACTIONS(2919), + [anon_sym_macro] = ACTIONS(2921), + [anon_sym_STAR] = ACTIONS(2919), + [anon_sym_u8] = ACTIONS(2921), + [anon_sym_i8] = ACTIONS(2921), + [anon_sym_u16] = ACTIONS(2921), + [anon_sym_i16] = ACTIONS(2921), + [anon_sym_u32] = ACTIONS(2921), + [anon_sym_i32] = ACTIONS(2921), + [anon_sym_u64] = ACTIONS(2921), + [anon_sym_i64] = ACTIONS(2921), + [anon_sym_u128] = ACTIONS(2921), + [anon_sym_i128] = ACTIONS(2921), + [anon_sym_isize] = ACTIONS(2921), + [anon_sym_usize] = ACTIONS(2921), + [anon_sym_f32] = ACTIONS(2921), + [anon_sym_f64] = ACTIONS(2921), + [anon_sym_bool] = ACTIONS(2921), + [anon_sym_str] = ACTIONS(2921), + [anon_sym_char] = ACTIONS(2921), + [anon_sym_DASH] = ACTIONS(2919), + [anon_sym_BANG] = ACTIONS(2919), + [anon_sym_AMP] = ACTIONS(2919), + [anon_sym_PIPE] = ACTIONS(2919), + [anon_sym_LT] = ACTIONS(2919), + [anon_sym_DOT_DOT] = ACTIONS(2919), + [anon_sym_COLON_COLON] = ACTIONS(2919), + [anon_sym_POUND] = ACTIONS(2919), + [anon_sym_SQUOTE] = ACTIONS(2921), + [anon_sym_async] = ACTIONS(2921), + [anon_sym_break] = ACTIONS(2921), + [anon_sym_const] = ACTIONS(2921), + [anon_sym_continue] = ACTIONS(2921), + [anon_sym_default] = ACTIONS(2921), + [anon_sym_enum] = ACTIONS(2921), + [anon_sym_fn] = ACTIONS(2921), + [anon_sym_for] = ACTIONS(2921), + [anon_sym_if] = ACTIONS(2921), + [anon_sym_impl] = ACTIONS(2921), + [anon_sym_let] = ACTIONS(2921), + [anon_sym_loop] = ACTIONS(2921), + [anon_sym_match] = ACTIONS(2921), + [anon_sym_mod] = ACTIONS(2921), + [anon_sym_pub] = ACTIONS(2921), + [anon_sym_return] = ACTIONS(2921), + [anon_sym_static] = ACTIONS(2921), + [anon_sym_struct] = ACTIONS(2921), + [anon_sym_trait] = ACTIONS(2921), + [anon_sym_type] = ACTIONS(2921), + [anon_sym_union] = ACTIONS(2921), + [anon_sym_unsafe] = ACTIONS(2921), + [anon_sym_use] = ACTIONS(2921), + [anon_sym_while] = ACTIONS(2921), + [anon_sym_extern] = ACTIONS(2921), + [anon_sym_yield] = ACTIONS(2921), + [anon_sym_move] = ACTIONS(2921), + [anon_sym_try] = ACTIONS(2921), + [sym_integer_literal] = ACTIONS(2919), + [aux_sym_string_literal_token1] = ACTIONS(2919), + [sym_char_literal] = ACTIONS(2919), + [anon_sym_true] = ACTIONS(2921), + [anon_sym_false] = ACTIONS(2921), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2921), + [sym_super] = ACTIONS(2921), + [sym_crate] = ACTIONS(2921), + [sym_metavariable] = ACTIONS(2919), + [sym__raw_string_literal_start] = ACTIONS(2919), + [sym_float_literal] = ACTIONS(2919), }, [771] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2674), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), [sym_line_comment] = STATE(771), [sym_block_comment] = STATE(771), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_RPAREN] = ACTIONS(2987), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COMMA] = ACTIONS(2989), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [ts_builtin_sym_end] = ACTIONS(2923), + [sym_identifier] = ACTIONS(2925), + [anon_sym_SEMI] = ACTIONS(2923), + [anon_sym_macro_rules_BANG] = ACTIONS(2923), + [anon_sym_LPAREN] = ACTIONS(2923), + [anon_sym_LBRACK] = ACTIONS(2923), + [anon_sym_LBRACE] = ACTIONS(2923), + [anon_sym_RBRACE] = ACTIONS(2923), + [anon_sym_macro] = ACTIONS(2925), + [anon_sym_STAR] = ACTIONS(2923), + [anon_sym_u8] = ACTIONS(2925), + [anon_sym_i8] = ACTIONS(2925), + [anon_sym_u16] = ACTIONS(2925), + [anon_sym_i16] = ACTIONS(2925), + [anon_sym_u32] = ACTIONS(2925), + [anon_sym_i32] = ACTIONS(2925), + [anon_sym_u64] = ACTIONS(2925), + [anon_sym_i64] = ACTIONS(2925), + [anon_sym_u128] = ACTIONS(2925), + [anon_sym_i128] = ACTIONS(2925), + [anon_sym_isize] = ACTIONS(2925), + [anon_sym_usize] = ACTIONS(2925), + [anon_sym_f32] = ACTIONS(2925), + [anon_sym_f64] = ACTIONS(2925), + [anon_sym_bool] = ACTIONS(2925), + [anon_sym_str] = ACTIONS(2925), + [anon_sym_char] = ACTIONS(2925), + [anon_sym_DASH] = ACTIONS(2923), + [anon_sym_BANG] = ACTIONS(2923), + [anon_sym_AMP] = ACTIONS(2923), + [anon_sym_PIPE] = ACTIONS(2923), + [anon_sym_LT] = ACTIONS(2923), + [anon_sym_DOT_DOT] = ACTIONS(2923), + [anon_sym_COLON_COLON] = ACTIONS(2923), + [anon_sym_POUND] = ACTIONS(2923), + [anon_sym_SQUOTE] = ACTIONS(2925), + [anon_sym_async] = ACTIONS(2925), + [anon_sym_break] = ACTIONS(2925), + [anon_sym_const] = ACTIONS(2925), + [anon_sym_continue] = ACTIONS(2925), + [anon_sym_default] = ACTIONS(2925), + [anon_sym_enum] = ACTIONS(2925), + [anon_sym_fn] = ACTIONS(2925), + [anon_sym_for] = ACTIONS(2925), + [anon_sym_if] = ACTIONS(2925), + [anon_sym_impl] = ACTIONS(2925), + [anon_sym_let] = ACTIONS(2925), + [anon_sym_loop] = ACTIONS(2925), + [anon_sym_match] = ACTIONS(2925), + [anon_sym_mod] = ACTIONS(2925), + [anon_sym_pub] = ACTIONS(2925), + [anon_sym_return] = ACTIONS(2925), + [anon_sym_static] = ACTIONS(2925), + [anon_sym_struct] = ACTIONS(2925), + [anon_sym_trait] = ACTIONS(2925), + [anon_sym_type] = ACTIONS(2925), + [anon_sym_union] = ACTIONS(2925), + [anon_sym_unsafe] = ACTIONS(2925), + [anon_sym_use] = ACTIONS(2925), + [anon_sym_while] = ACTIONS(2925), + [anon_sym_extern] = ACTIONS(2925), + [anon_sym_yield] = ACTIONS(2925), + [anon_sym_move] = ACTIONS(2925), + [anon_sym_try] = ACTIONS(2925), + [sym_integer_literal] = ACTIONS(2923), + [aux_sym_string_literal_token1] = ACTIONS(2923), + [sym_char_literal] = ACTIONS(2923), + [anon_sym_true] = ACTIONS(2925), + [anon_sym_false] = ACTIONS(2925), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2925), + [sym_super] = ACTIONS(2925), + [sym_crate] = ACTIONS(2925), + [sym_metavariable] = ACTIONS(2923), + [sym__raw_string_literal_start] = ACTIONS(2923), + [sym_float_literal] = ACTIONS(2923), }, [772] = { - [sym_attribute_item] = STATE(1476), - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym_visibility_modifier] = STATE(942), - [sym__type] = STATE(2698), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), [sym_line_comment] = STATE(772), [sym_block_comment] = STATE(772), - [aux_sym_enum_variant_list_repeat1] = STATE(1065), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_POUND] = ACTIONS(2955), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_pub] = ACTIONS(2971), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(2973), - [sym_metavariable] = ACTIONS(1584), + [ts_builtin_sym_end] = ACTIONS(2927), + [sym_identifier] = ACTIONS(2929), + [anon_sym_SEMI] = ACTIONS(2927), + [anon_sym_macro_rules_BANG] = ACTIONS(2927), + [anon_sym_LPAREN] = ACTIONS(2927), + [anon_sym_LBRACK] = ACTIONS(2927), + [anon_sym_LBRACE] = ACTIONS(2927), + [anon_sym_RBRACE] = ACTIONS(2927), + [anon_sym_macro] = ACTIONS(2929), + [anon_sym_STAR] = ACTIONS(2927), + [anon_sym_u8] = ACTIONS(2929), + [anon_sym_i8] = ACTIONS(2929), + [anon_sym_u16] = ACTIONS(2929), + [anon_sym_i16] = ACTIONS(2929), + [anon_sym_u32] = ACTIONS(2929), + [anon_sym_i32] = ACTIONS(2929), + [anon_sym_u64] = ACTIONS(2929), + [anon_sym_i64] = ACTIONS(2929), + [anon_sym_u128] = ACTIONS(2929), + [anon_sym_i128] = ACTIONS(2929), + [anon_sym_isize] = ACTIONS(2929), + [anon_sym_usize] = ACTIONS(2929), + [anon_sym_f32] = ACTIONS(2929), + [anon_sym_f64] = ACTIONS(2929), + [anon_sym_bool] = ACTIONS(2929), + [anon_sym_str] = ACTIONS(2929), + [anon_sym_char] = ACTIONS(2929), + [anon_sym_DASH] = ACTIONS(2927), + [anon_sym_BANG] = ACTIONS(2927), + [anon_sym_AMP] = ACTIONS(2927), + [anon_sym_PIPE] = ACTIONS(2927), + [anon_sym_LT] = ACTIONS(2927), + [anon_sym_DOT_DOT] = ACTIONS(2927), + [anon_sym_COLON_COLON] = ACTIONS(2927), + [anon_sym_POUND] = ACTIONS(2927), + [anon_sym_SQUOTE] = ACTIONS(2929), + [anon_sym_async] = ACTIONS(2929), + [anon_sym_break] = ACTIONS(2929), + [anon_sym_const] = ACTIONS(2929), + [anon_sym_continue] = ACTIONS(2929), + [anon_sym_default] = ACTIONS(2929), + [anon_sym_enum] = ACTIONS(2929), + [anon_sym_fn] = ACTIONS(2929), + [anon_sym_for] = ACTIONS(2929), + [anon_sym_if] = ACTIONS(2929), + [anon_sym_impl] = ACTIONS(2929), + [anon_sym_let] = ACTIONS(2929), + [anon_sym_loop] = ACTIONS(2929), + [anon_sym_match] = ACTIONS(2929), + [anon_sym_mod] = ACTIONS(2929), + [anon_sym_pub] = ACTIONS(2929), + [anon_sym_return] = ACTIONS(2929), + [anon_sym_static] = ACTIONS(2929), + [anon_sym_struct] = ACTIONS(2929), + [anon_sym_trait] = ACTIONS(2929), + [anon_sym_type] = ACTIONS(2929), + [anon_sym_union] = ACTIONS(2929), + [anon_sym_unsafe] = ACTIONS(2929), + [anon_sym_use] = ACTIONS(2929), + [anon_sym_while] = ACTIONS(2929), + [anon_sym_extern] = ACTIONS(2929), + [anon_sym_yield] = ACTIONS(2929), + [anon_sym_move] = ACTIONS(2929), + [anon_sym_try] = ACTIONS(2929), + [sym_integer_literal] = ACTIONS(2927), + [aux_sym_string_literal_token1] = ACTIONS(2927), + [sym_char_literal] = ACTIONS(2927), + [anon_sym_true] = ACTIONS(2929), + [anon_sym_false] = ACTIONS(2929), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2929), + [sym_super] = ACTIONS(2929), + [sym_crate] = ACTIONS(2929), + [sym_metavariable] = ACTIONS(2927), + [sym__raw_string_literal_start] = ACTIONS(2927), + [sym_float_literal] = ACTIONS(2927), }, [773] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2524), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_attribute_item] = STATE(1515), + [sym_inner_attribute_item] = STATE(1515), + [sym_bracketed_type] = STATE(3618), + [sym_generic_type] = STATE(3491), + [sym_generic_type_with_turbofish] = STATE(3218), + [sym_macro_invocation] = STATE(2994), + [sym_scoped_identifier] = STATE(2165), + [sym_scoped_type_identifier] = STATE(2786), + [sym_match_arm] = STATE(1505), + [sym_match_pattern] = STATE(3540), + [sym_const_block] = STATE(2994), + [sym__pattern] = STATE(3082), + [sym_tuple_pattern] = STATE(2994), + [sym_slice_pattern] = STATE(2994), + [sym_tuple_struct_pattern] = STATE(2994), + [sym_struct_pattern] = STATE(2994), + [sym_remaining_field_pattern] = STATE(2994), + [sym_mut_pattern] = STATE(2994), + [sym_range_pattern] = STATE(2994), + [sym_ref_pattern] = STATE(2994), + [sym_captured_pattern] = STATE(2994), + [sym_reference_pattern] = STATE(2994), + [sym_or_pattern] = STATE(2994), + [sym__literal_pattern] = STATE(2380), + [sym_negative_literal] = STATE(2383), + [sym_string_literal] = STATE(2383), + [sym_raw_string_literal] = STATE(2383), + [sym_boolean_literal] = STATE(2383), [sym_line_comment] = STATE(773), [sym_block_comment] = STATE(773), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_RPAREN] = ACTIONS(2991), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COMMA] = ACTIONS(2993), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [aux_sym_match_block_repeat1] = STATE(773), + [aux_sym_match_arm_repeat1] = STATE(776), + [sym_identifier] = ACTIONS(2931), + [anon_sym_LPAREN] = ACTIONS(2934), + [anon_sym_LBRACK] = ACTIONS(2937), + [anon_sym_u8] = ACTIONS(2940), + [anon_sym_i8] = ACTIONS(2940), + [anon_sym_u16] = ACTIONS(2940), + [anon_sym_i16] = ACTIONS(2940), + [anon_sym_u32] = ACTIONS(2940), + [anon_sym_i32] = ACTIONS(2940), + [anon_sym_u64] = ACTIONS(2940), + [anon_sym_i64] = ACTIONS(2940), + [anon_sym_u128] = ACTIONS(2940), + [anon_sym_i128] = ACTIONS(2940), + [anon_sym_isize] = ACTIONS(2940), + [anon_sym_usize] = ACTIONS(2940), + [anon_sym_f32] = ACTIONS(2940), + [anon_sym_f64] = ACTIONS(2940), + [anon_sym_bool] = ACTIONS(2940), + [anon_sym_str] = ACTIONS(2940), + [anon_sym_char] = ACTIONS(2940), + [anon_sym_DASH] = ACTIONS(2943), + [anon_sym_AMP] = ACTIONS(2946), + [anon_sym_PIPE] = ACTIONS(2949), + [anon_sym_LT] = ACTIONS(2952), + [anon_sym__] = ACTIONS(2955), + [anon_sym_DOT_DOT] = ACTIONS(2958), + [anon_sym_COLON_COLON] = ACTIONS(2961), + [anon_sym_POUND] = ACTIONS(2964), + [anon_sym_const] = ACTIONS(2967), + [anon_sym_default] = ACTIONS(2970), + [anon_sym_union] = ACTIONS(2970), + [anon_sym_ref] = ACTIONS(2973), + [sym_mutable_specifier] = ACTIONS(2976), + [sym_integer_literal] = ACTIONS(2979), + [aux_sym_string_literal_token1] = ACTIONS(2982), + [sym_char_literal] = ACTIONS(2979), + [anon_sym_true] = ACTIONS(2985), + [anon_sym_false] = ACTIONS(2985), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2988), + [sym_super] = ACTIONS(2988), + [sym_crate] = ACTIONS(2988), + [sym_metavariable] = ACTIONS(2991), + [sym__raw_string_literal_start] = ACTIONS(2994), + [sym_float_literal] = ACTIONS(2979), }, [774] = { - [sym_attribute_item] = STATE(1476), - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym_visibility_modifier] = STATE(910), - [sym__type] = STATE(2874), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_bracketed_type] = STATE(3574), + [sym_generic_type] = STATE(3491), + [sym_generic_type_with_turbofish] = STATE(3212), + [sym_macro_invocation] = STATE(2160), + [sym_scoped_identifier] = STATE(1997), + [sym_scoped_type_identifier] = STATE(2902), + [sym_const_block] = STATE(2160), + [sym_closure_expression] = STATE(2810), + [sym_closure_parameters] = STATE(247), + [sym__pattern] = STATE(2753), + [sym_tuple_pattern] = STATE(2160), + [sym_slice_pattern] = STATE(2160), + [sym_tuple_struct_pattern] = STATE(2160), + [sym_struct_pattern] = STATE(2160), + [sym_remaining_field_pattern] = STATE(2160), + [sym_mut_pattern] = STATE(2160), + [sym_range_pattern] = STATE(2160), + [sym_ref_pattern] = STATE(2160), + [sym_captured_pattern] = STATE(2160), + [sym_reference_pattern] = STATE(2160), + [sym_or_pattern] = STATE(2160), + [sym__literal_pattern] = STATE(2036), + [sym_negative_literal] = STATE(2048), + [sym_string_literal] = STATE(2048), + [sym_raw_string_literal] = STATE(2048), + [sym_boolean_literal] = STATE(2048), [sym_line_comment] = STATE(774), [sym_block_comment] = STATE(774), - [aux_sym_enum_variant_list_repeat1] = STATE(1065), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_POUND] = ACTIONS(2955), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_pub] = ACTIONS(2971), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(2973), - [sym_metavariable] = ACTIONS(1584), + [sym_identifier] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(2999), + [anon_sym_RPAREN] = ACTIONS(3001), + [anon_sym_LBRACK] = ACTIONS(3003), + [anon_sym_COMMA] = ACTIONS(1493), + [anon_sym_u8] = ACTIONS(3005), + [anon_sym_i8] = ACTIONS(3005), + [anon_sym_u16] = ACTIONS(3005), + [anon_sym_i16] = ACTIONS(3005), + [anon_sym_u32] = ACTIONS(3005), + [anon_sym_i32] = ACTIONS(3005), + [anon_sym_u64] = ACTIONS(3005), + [anon_sym_i64] = ACTIONS(3005), + [anon_sym_u128] = ACTIONS(3005), + [anon_sym_i128] = ACTIONS(3005), + [anon_sym_isize] = ACTIONS(3005), + [anon_sym_usize] = ACTIONS(3005), + [anon_sym_f32] = ACTIONS(3005), + [anon_sym_f64] = ACTIONS(3005), + [anon_sym_bool] = ACTIONS(3005), + [anon_sym_str] = ACTIONS(3005), + [anon_sym_char] = ACTIONS(3005), + [anon_sym_DASH] = ACTIONS(1369), + [anon_sym_AMP] = ACTIONS(3007), + [anon_sym_PIPE] = ACTIONS(1497), + [anon_sym_LT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1499), + [anon_sym_DOT_DOT] = ACTIONS(1501), + [anon_sym_COLON_COLON] = ACTIONS(3009), + [anon_sym_const] = ACTIONS(3011), + [anon_sym_default] = ACTIONS(3013), + [anon_sym_static] = ACTIONS(1503), + [anon_sym_union] = ACTIONS(3013), + [anon_sym_ref] = ACTIONS(1405), + [sym_mutable_specifier] = ACTIONS(1505), + [anon_sym_move] = ACTIONS(1507), + [sym_integer_literal] = ACTIONS(1411), + [aux_sym_string_literal_token1] = ACTIONS(1413), + [sym_char_literal] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1415), + [anon_sym_false] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3015), + [sym_super] = ACTIONS(3015), + [sym_crate] = ACTIONS(3015), + [sym_metavariable] = ACTIONS(3017), + [sym__raw_string_literal_start] = ACTIONS(1423), + [sym_float_literal] = ACTIONS(1411), }, [775] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2525), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_bracketed_type] = STATE(3574), + [sym_generic_type] = STATE(3491), + [sym_generic_type_with_turbofish] = STATE(3212), + [sym_macro_invocation] = STATE(2160), + [sym_scoped_identifier] = STATE(1997), + [sym_scoped_type_identifier] = STATE(2902), + [sym_const_block] = STATE(2160), + [sym_closure_expression] = STATE(2816), + [sym_closure_parameters] = STATE(247), + [sym__pattern] = STATE(2746), + [sym_tuple_pattern] = STATE(2160), + [sym_slice_pattern] = STATE(2160), + [sym_tuple_struct_pattern] = STATE(2160), + [sym_struct_pattern] = STATE(2160), + [sym_remaining_field_pattern] = STATE(2160), + [sym_mut_pattern] = STATE(2160), + [sym_range_pattern] = STATE(2160), + [sym_ref_pattern] = STATE(2160), + [sym_captured_pattern] = STATE(2160), + [sym_reference_pattern] = STATE(2160), + [sym_or_pattern] = STATE(2160), + [sym__literal_pattern] = STATE(2036), + [sym_negative_literal] = STATE(2048), + [sym_string_literal] = STATE(2048), + [sym_raw_string_literal] = STATE(2048), + [sym_boolean_literal] = STATE(2048), [sym_line_comment] = STATE(775), [sym_block_comment] = STATE(775), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_RPAREN] = ACTIONS(2995), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COMMA] = ACTIONS(2997), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym_identifier] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(2999), + [anon_sym_RPAREN] = ACTIONS(3019), + [anon_sym_LBRACK] = ACTIONS(3003), + [anon_sym_COMMA] = ACTIONS(3021), + [anon_sym_u8] = ACTIONS(3005), + [anon_sym_i8] = ACTIONS(3005), + [anon_sym_u16] = ACTIONS(3005), + [anon_sym_i16] = ACTIONS(3005), + [anon_sym_u32] = ACTIONS(3005), + [anon_sym_i32] = ACTIONS(3005), + [anon_sym_u64] = ACTIONS(3005), + [anon_sym_i64] = ACTIONS(3005), + [anon_sym_u128] = ACTIONS(3005), + [anon_sym_i128] = ACTIONS(3005), + [anon_sym_isize] = ACTIONS(3005), + [anon_sym_usize] = ACTIONS(3005), + [anon_sym_f32] = ACTIONS(3005), + [anon_sym_f64] = ACTIONS(3005), + [anon_sym_bool] = ACTIONS(3005), + [anon_sym_str] = ACTIONS(3005), + [anon_sym_char] = ACTIONS(3005), + [anon_sym_DASH] = ACTIONS(1369), + [anon_sym_AMP] = ACTIONS(3007), + [anon_sym_PIPE] = ACTIONS(1497), + [anon_sym_LT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1499), + [anon_sym_DOT_DOT] = ACTIONS(1501), + [anon_sym_COLON_COLON] = ACTIONS(3009), + [anon_sym_const] = ACTIONS(3011), + [anon_sym_default] = ACTIONS(3013), + [anon_sym_static] = ACTIONS(1503), + [anon_sym_union] = ACTIONS(3013), + [anon_sym_ref] = ACTIONS(1405), + [sym_mutable_specifier] = ACTIONS(1505), + [anon_sym_move] = ACTIONS(1507), + [sym_integer_literal] = ACTIONS(1411), + [aux_sym_string_literal_token1] = ACTIONS(1413), + [sym_char_literal] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1415), + [anon_sym_false] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3015), + [sym_super] = ACTIONS(3015), + [sym_crate] = ACTIONS(3015), + [sym_metavariable] = ACTIONS(3017), + [sym__raw_string_literal_start] = ACTIONS(1423), + [sym_float_literal] = ACTIONS(1411), }, [776] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2501), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_attribute_item] = STATE(1515), + [sym_inner_attribute_item] = STATE(1515), + [sym_bracketed_type] = STATE(3618), + [sym_generic_type] = STATE(3491), + [sym_generic_type_with_turbofish] = STATE(3218), + [sym_macro_invocation] = STATE(2994), + [sym_scoped_identifier] = STATE(2165), + [sym_scoped_type_identifier] = STATE(2786), + [sym_match_pattern] = STATE(3655), + [sym_const_block] = STATE(2994), + [sym__pattern] = STATE(3082), + [sym_tuple_pattern] = STATE(2994), + [sym_slice_pattern] = STATE(2994), + [sym_tuple_struct_pattern] = STATE(2994), + [sym_struct_pattern] = STATE(2994), + [sym_remaining_field_pattern] = STATE(2994), + [sym_mut_pattern] = STATE(2994), + [sym_range_pattern] = STATE(2994), + [sym_ref_pattern] = STATE(2994), + [sym_captured_pattern] = STATE(2994), + [sym_reference_pattern] = STATE(2994), + [sym_or_pattern] = STATE(2994), + [sym__literal_pattern] = STATE(2380), + [sym_negative_literal] = STATE(2383), + [sym_string_literal] = STATE(2383), + [sym_raw_string_literal] = STATE(2383), + [sym_boolean_literal] = STATE(2383), [sym_line_comment] = STATE(776), [sym_block_comment] = STATE(776), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_RBRACK] = ACTIONS(2999), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COMMA] = ACTIONS(3001), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [aux_sym_match_arm_repeat1] = STATE(1061), + [sym_identifier] = ACTIONS(1621), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACK] = ACTIONS(1625), + [anon_sym_u8] = ACTIONS(1629), + [anon_sym_i8] = ACTIONS(1629), + [anon_sym_u16] = ACTIONS(1629), + [anon_sym_i16] = ACTIONS(1629), + [anon_sym_u32] = ACTIONS(1629), + [anon_sym_i32] = ACTIONS(1629), + [anon_sym_u64] = ACTIONS(1629), + [anon_sym_i64] = ACTIONS(1629), + [anon_sym_u128] = ACTIONS(1629), + [anon_sym_i128] = ACTIONS(1629), + [anon_sym_isize] = ACTIONS(1629), + [anon_sym_usize] = ACTIONS(1629), + [anon_sym_f32] = ACTIONS(1629), + [anon_sym_f64] = ACTIONS(1629), + [anon_sym_bool] = ACTIONS(1629), + [anon_sym_str] = ACTIONS(1629), + [anon_sym_char] = ACTIONS(1629), + [anon_sym_DASH] = ACTIONS(1631), + [anon_sym_AMP] = ACTIONS(1633), + [anon_sym_PIPE] = ACTIONS(1635), + [anon_sym_LT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1637), + [anon_sym_DOT_DOT] = ACTIONS(1639), + [anon_sym_COLON_COLON] = ACTIONS(1641), + [anon_sym_POUND] = ACTIONS(1643), + [anon_sym_const] = ACTIONS(1645), + [anon_sym_default] = ACTIONS(1647), + [anon_sym_union] = ACTIONS(1647), + [anon_sym_ref] = ACTIONS(1649), + [sym_mutable_specifier] = ACTIONS(1651), + [sym_integer_literal] = ACTIONS(1653), + [aux_sym_string_literal_token1] = ACTIONS(1655), + [sym_char_literal] = ACTIONS(1653), + [anon_sym_true] = ACTIONS(1657), + [anon_sym_false] = ACTIONS(1657), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1659), + [sym_super] = ACTIONS(1659), + [sym_crate] = ACTIONS(1659), + [sym_metavariable] = ACTIONS(1661), + [sym__raw_string_literal_start] = ACTIONS(1663), + [sym_float_literal] = ACTIONS(1653), }, [777] = { - [sym_attribute_item] = STATE(1476), - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym_visibility_modifier] = STATE(878), - [sym__type] = STATE(2913), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_bracketed_type] = STATE(3574), + [sym_generic_type] = STATE(3491), + [sym_generic_type_with_turbofish] = STATE(3212), + [sym_macro_invocation] = STATE(2160), + [sym_scoped_identifier] = STATE(1997), + [sym_scoped_type_identifier] = STATE(2902), + [sym_const_block] = STATE(2160), + [sym_closure_expression] = STATE(3234), + [sym_closure_parameters] = STATE(247), + [sym__pattern] = STATE(2961), + [sym_tuple_pattern] = STATE(2160), + [sym_slice_pattern] = STATE(2160), + [sym_tuple_struct_pattern] = STATE(2160), + [sym_struct_pattern] = STATE(2160), + [sym_remaining_field_pattern] = STATE(2160), + [sym_mut_pattern] = STATE(2160), + [sym_range_pattern] = STATE(2160), + [sym_ref_pattern] = STATE(2160), + [sym_captured_pattern] = STATE(2160), + [sym_reference_pattern] = STATE(2160), + [sym_or_pattern] = STATE(2160), + [sym__literal_pattern] = STATE(2036), + [sym_negative_literal] = STATE(2048), + [sym_string_literal] = STATE(2048), + [sym_raw_string_literal] = STATE(2048), + [sym_boolean_literal] = STATE(2048), [sym_line_comment] = STATE(777), [sym_block_comment] = STATE(777), - [aux_sym_enum_variant_list_repeat1] = STATE(774), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_POUND] = ACTIONS(2955), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_pub] = ACTIONS(2971), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(2973), - [sym_metavariable] = ACTIONS(1584), + [sym_identifier] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(2999), + [anon_sym_RPAREN] = ACTIONS(3023), + [anon_sym_LBRACK] = ACTIONS(3003), + [anon_sym_u8] = ACTIONS(3005), + [anon_sym_i8] = ACTIONS(3005), + [anon_sym_u16] = ACTIONS(3005), + [anon_sym_i16] = ACTIONS(3005), + [anon_sym_u32] = ACTIONS(3005), + [anon_sym_i32] = ACTIONS(3005), + [anon_sym_u64] = ACTIONS(3005), + [anon_sym_i64] = ACTIONS(3005), + [anon_sym_u128] = ACTIONS(3005), + [anon_sym_i128] = ACTIONS(3005), + [anon_sym_isize] = ACTIONS(3005), + [anon_sym_usize] = ACTIONS(3005), + [anon_sym_f32] = ACTIONS(3005), + [anon_sym_f64] = ACTIONS(3005), + [anon_sym_bool] = ACTIONS(3005), + [anon_sym_str] = ACTIONS(3005), + [anon_sym_char] = ACTIONS(3005), + [anon_sym_DASH] = ACTIONS(1369), + [anon_sym_AMP] = ACTIONS(3007), + [anon_sym_PIPE] = ACTIONS(1497), + [anon_sym_LT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1499), + [anon_sym_DOT_DOT] = ACTIONS(1501), + [anon_sym_COLON_COLON] = ACTIONS(3009), + [anon_sym_const] = ACTIONS(3011), + [anon_sym_default] = ACTIONS(3013), + [anon_sym_static] = ACTIONS(1503), + [anon_sym_union] = ACTIONS(3013), + [anon_sym_ref] = ACTIONS(1405), + [sym_mutable_specifier] = ACTIONS(1505), + [anon_sym_move] = ACTIONS(1507), + [sym_integer_literal] = ACTIONS(1411), + [aux_sym_string_literal_token1] = ACTIONS(1413), + [sym_char_literal] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1415), + [anon_sym_false] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3015), + [sym_super] = ACTIONS(3015), + [sym_crate] = ACTIONS(3015), + [sym_metavariable] = ACTIONS(3017), + [sym__raw_string_literal_start] = ACTIONS(1423), + [sym_float_literal] = ACTIONS(1411), }, [778] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2672), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_bracketed_type] = STATE(3574), + [sym_generic_type] = STATE(3491), + [sym_generic_type_with_turbofish] = STATE(3212), + [sym_macro_invocation] = STATE(2160), + [sym_scoped_identifier] = STATE(1997), + [sym_scoped_type_identifier] = STATE(2902), + [sym_const_block] = STATE(2160), + [sym_closure_expression] = STATE(3234), + [sym_closure_parameters] = STATE(247), + [sym__pattern] = STATE(2961), + [sym_tuple_pattern] = STATE(2160), + [sym_slice_pattern] = STATE(2160), + [sym_tuple_struct_pattern] = STATE(2160), + [sym_struct_pattern] = STATE(2160), + [sym_remaining_field_pattern] = STATE(2160), + [sym_mut_pattern] = STATE(2160), + [sym_range_pattern] = STATE(2160), + [sym_ref_pattern] = STATE(2160), + [sym_captured_pattern] = STATE(2160), + [sym_reference_pattern] = STATE(2160), + [sym_or_pattern] = STATE(2160), + [sym__literal_pattern] = STATE(2036), + [sym_negative_literal] = STATE(2048), + [sym_string_literal] = STATE(2048), + [sym_raw_string_literal] = STATE(2048), + [sym_boolean_literal] = STATE(2048), [sym_line_comment] = STATE(778), [sym_block_comment] = STATE(778), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_RBRACK] = ACTIONS(1508), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COMMA] = ACTIONS(1514), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym_identifier] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(2999), + [anon_sym_RPAREN] = ACTIONS(3025), + [anon_sym_LBRACK] = ACTIONS(3003), + [anon_sym_u8] = ACTIONS(3005), + [anon_sym_i8] = ACTIONS(3005), + [anon_sym_u16] = ACTIONS(3005), + [anon_sym_i16] = ACTIONS(3005), + [anon_sym_u32] = ACTIONS(3005), + [anon_sym_i32] = ACTIONS(3005), + [anon_sym_u64] = ACTIONS(3005), + [anon_sym_i64] = ACTIONS(3005), + [anon_sym_u128] = ACTIONS(3005), + [anon_sym_i128] = ACTIONS(3005), + [anon_sym_isize] = ACTIONS(3005), + [anon_sym_usize] = ACTIONS(3005), + [anon_sym_f32] = ACTIONS(3005), + [anon_sym_f64] = ACTIONS(3005), + [anon_sym_bool] = ACTIONS(3005), + [anon_sym_str] = ACTIONS(3005), + [anon_sym_char] = ACTIONS(3005), + [anon_sym_DASH] = ACTIONS(1369), + [anon_sym_AMP] = ACTIONS(3007), + [anon_sym_PIPE] = ACTIONS(1497), + [anon_sym_LT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1499), + [anon_sym_DOT_DOT] = ACTIONS(1501), + [anon_sym_COLON_COLON] = ACTIONS(3009), + [anon_sym_const] = ACTIONS(3011), + [anon_sym_default] = ACTIONS(3013), + [anon_sym_static] = ACTIONS(1503), + [anon_sym_union] = ACTIONS(3013), + [anon_sym_ref] = ACTIONS(1405), + [sym_mutable_specifier] = ACTIONS(1505), + [anon_sym_move] = ACTIONS(1507), + [sym_integer_literal] = ACTIONS(1411), + [aux_sym_string_literal_token1] = ACTIONS(1413), + [sym_char_literal] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1415), + [anon_sym_false] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3015), + [sym_super] = ACTIONS(3015), + [sym_crate] = ACTIONS(3015), + [sym_metavariable] = ACTIONS(3017), + [sym__raw_string_literal_start] = ACTIONS(1423), + [sym_float_literal] = ACTIONS(1411), }, [779] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2639), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_bracketed_type] = STATE(3574), + [sym_generic_type] = STATE(3491), + [sym_generic_type_with_turbofish] = STATE(3212), + [sym_macro_invocation] = STATE(2160), + [sym_scoped_identifier] = STATE(1997), + [sym_scoped_type_identifier] = STATE(2902), + [sym_const_block] = STATE(2160), + [sym_closure_expression] = STATE(3234), + [sym_closure_parameters] = STATE(247), + [sym__pattern] = STATE(2961), + [sym_tuple_pattern] = STATE(2160), + [sym_slice_pattern] = STATE(2160), + [sym_tuple_struct_pattern] = STATE(2160), + [sym_struct_pattern] = STATE(2160), + [sym_remaining_field_pattern] = STATE(2160), + [sym_mut_pattern] = STATE(2160), + [sym_range_pattern] = STATE(2160), + [sym_ref_pattern] = STATE(2160), + [sym_captured_pattern] = STATE(2160), + [sym_reference_pattern] = STATE(2160), + [sym_or_pattern] = STATE(2160), + [sym__literal_pattern] = STATE(2036), + [sym_negative_literal] = STATE(2048), + [sym_string_literal] = STATE(2048), + [sym_raw_string_literal] = STATE(2048), + [sym_boolean_literal] = STATE(2048), [sym_line_comment] = STATE(779), [sym_block_comment] = STATE(779), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_RPAREN] = ACTIONS(3003), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COMMA] = ACTIONS(3005), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym_identifier] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(2999), + [anon_sym_RPAREN] = ACTIONS(3027), + [anon_sym_LBRACK] = ACTIONS(3003), + [anon_sym_u8] = ACTIONS(3005), + [anon_sym_i8] = ACTIONS(3005), + [anon_sym_u16] = ACTIONS(3005), + [anon_sym_i16] = ACTIONS(3005), + [anon_sym_u32] = ACTIONS(3005), + [anon_sym_i32] = ACTIONS(3005), + [anon_sym_u64] = ACTIONS(3005), + [anon_sym_i64] = ACTIONS(3005), + [anon_sym_u128] = ACTIONS(3005), + [anon_sym_i128] = ACTIONS(3005), + [anon_sym_isize] = ACTIONS(3005), + [anon_sym_usize] = ACTIONS(3005), + [anon_sym_f32] = ACTIONS(3005), + [anon_sym_f64] = ACTIONS(3005), + [anon_sym_bool] = ACTIONS(3005), + [anon_sym_str] = ACTIONS(3005), + [anon_sym_char] = ACTIONS(3005), + [anon_sym_DASH] = ACTIONS(1369), + [anon_sym_AMP] = ACTIONS(3007), + [anon_sym_PIPE] = ACTIONS(1497), + [anon_sym_LT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1499), + [anon_sym_DOT_DOT] = ACTIONS(1501), + [anon_sym_COLON_COLON] = ACTIONS(3009), + [anon_sym_const] = ACTIONS(3011), + [anon_sym_default] = ACTIONS(3013), + [anon_sym_static] = ACTIONS(1503), + [anon_sym_union] = ACTIONS(3013), + [anon_sym_ref] = ACTIONS(1405), + [sym_mutable_specifier] = ACTIONS(1505), + [anon_sym_move] = ACTIONS(1507), + [sym_integer_literal] = ACTIONS(1411), + [aux_sym_string_literal_token1] = ACTIONS(1413), + [sym_char_literal] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1415), + [anon_sym_false] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3015), + [sym_super] = ACTIONS(3015), + [sym_crate] = ACTIONS(3015), + [sym_metavariable] = ACTIONS(3017), + [sym__raw_string_literal_start] = ACTIONS(1423), + [sym_float_literal] = ACTIONS(1411), }, [780] = { - [sym_parameter] = STATE(3201), - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2915), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_attribute_item] = STATE(1515), + [sym_inner_attribute_item] = STATE(1515), + [sym_bracketed_type] = STATE(3618), + [sym_generic_type] = STATE(3491), + [sym_generic_type_with_turbofish] = STATE(3218), + [sym_macro_invocation] = STATE(2994), + [sym_scoped_identifier] = STATE(2165), + [sym_scoped_type_identifier] = STATE(2786), + [sym_match_pattern] = STATE(3463), + [sym_const_block] = STATE(2994), + [sym__pattern] = STATE(3082), + [sym_tuple_pattern] = STATE(2994), + [sym_slice_pattern] = STATE(2994), + [sym_tuple_struct_pattern] = STATE(2994), + [sym_struct_pattern] = STATE(2994), + [sym_remaining_field_pattern] = STATE(2994), + [sym_mut_pattern] = STATE(2994), + [sym_range_pattern] = STATE(2994), + [sym_ref_pattern] = STATE(2994), + [sym_captured_pattern] = STATE(2994), + [sym_reference_pattern] = STATE(2994), + [sym_or_pattern] = STATE(2994), + [sym__literal_pattern] = STATE(2380), + [sym_negative_literal] = STATE(2383), + [sym_string_literal] = STATE(2383), + [sym_raw_string_literal] = STATE(2383), + [sym_boolean_literal] = STATE(2383), [sym_line_comment] = STATE(780), [sym_block_comment] = STATE(780), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(3007), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3009), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [aux_sym_match_arm_repeat1] = STATE(1061), + [sym_identifier] = ACTIONS(1621), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACK] = ACTIONS(1625), + [anon_sym_u8] = ACTIONS(1629), + [anon_sym_i8] = ACTIONS(1629), + [anon_sym_u16] = ACTIONS(1629), + [anon_sym_i16] = ACTIONS(1629), + [anon_sym_u32] = ACTIONS(1629), + [anon_sym_i32] = ACTIONS(1629), + [anon_sym_u64] = ACTIONS(1629), + [anon_sym_i64] = ACTIONS(1629), + [anon_sym_u128] = ACTIONS(1629), + [anon_sym_i128] = ACTIONS(1629), + [anon_sym_isize] = ACTIONS(1629), + [anon_sym_usize] = ACTIONS(1629), + [anon_sym_f32] = ACTIONS(1629), + [anon_sym_f64] = ACTIONS(1629), + [anon_sym_bool] = ACTIONS(1629), + [anon_sym_str] = ACTIONS(1629), + [anon_sym_char] = ACTIONS(1629), + [anon_sym_DASH] = ACTIONS(1631), + [anon_sym_AMP] = ACTIONS(1633), + [anon_sym_PIPE] = ACTIONS(1635), + [anon_sym_LT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1637), + [anon_sym_DOT_DOT] = ACTIONS(1639), + [anon_sym_COLON_COLON] = ACTIONS(1641), + [anon_sym_POUND] = ACTIONS(1643), + [anon_sym_const] = ACTIONS(1645), + [anon_sym_default] = ACTIONS(1647), + [anon_sym_union] = ACTIONS(1647), + [anon_sym_ref] = ACTIONS(1649), + [sym_mutable_specifier] = ACTIONS(1651), + [sym_integer_literal] = ACTIONS(1653), + [aux_sym_string_literal_token1] = ACTIONS(1655), + [sym_char_literal] = ACTIONS(1653), + [anon_sym_true] = ACTIONS(1657), + [anon_sym_false] = ACTIONS(1657), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1659), + [sym_super] = ACTIONS(1659), + [sym_crate] = ACTIONS(1659), + [sym_metavariable] = ACTIONS(1661), + [sym__raw_string_literal_start] = ACTIONS(1663), + [sym_float_literal] = ACTIONS(1653), }, [781] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2549), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_bracketed_type] = STATE(3574), + [sym_generic_type] = STATE(3491), + [sym_generic_type_with_turbofish] = STATE(3212), + [sym_macro_invocation] = STATE(2160), + [sym_scoped_identifier] = STATE(1997), + [sym_scoped_type_identifier] = STATE(2902), + [sym_const_block] = STATE(2160), + [sym_closure_expression] = STATE(3234), + [sym_closure_parameters] = STATE(247), + [sym__pattern] = STATE(2961), + [sym_tuple_pattern] = STATE(2160), + [sym_slice_pattern] = STATE(2160), + [sym_tuple_struct_pattern] = STATE(2160), + [sym_struct_pattern] = STATE(2160), + [sym_remaining_field_pattern] = STATE(2160), + [sym_mut_pattern] = STATE(2160), + [sym_range_pattern] = STATE(2160), + [sym_ref_pattern] = STATE(2160), + [sym_captured_pattern] = STATE(2160), + [sym_reference_pattern] = STATE(2160), + [sym_or_pattern] = STATE(2160), + [sym__literal_pattern] = STATE(2036), + [sym_negative_literal] = STATE(2048), + [sym_string_literal] = STATE(2048), + [sym_raw_string_literal] = STATE(2048), + [sym_boolean_literal] = STATE(2048), [sym_line_comment] = STATE(781), [sym_block_comment] = STATE(781), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1272), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3011), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3013), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym_identifier] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(2999), + [anon_sym_RPAREN] = ACTIONS(3029), + [anon_sym_LBRACK] = ACTIONS(3003), + [anon_sym_u8] = ACTIONS(3005), + [anon_sym_i8] = ACTIONS(3005), + [anon_sym_u16] = ACTIONS(3005), + [anon_sym_i16] = ACTIONS(3005), + [anon_sym_u32] = ACTIONS(3005), + [anon_sym_i32] = ACTIONS(3005), + [anon_sym_u64] = ACTIONS(3005), + [anon_sym_i64] = ACTIONS(3005), + [anon_sym_u128] = ACTIONS(3005), + [anon_sym_i128] = ACTIONS(3005), + [anon_sym_isize] = ACTIONS(3005), + [anon_sym_usize] = ACTIONS(3005), + [anon_sym_f32] = ACTIONS(3005), + [anon_sym_f64] = ACTIONS(3005), + [anon_sym_bool] = ACTIONS(3005), + [anon_sym_str] = ACTIONS(3005), + [anon_sym_char] = ACTIONS(3005), + [anon_sym_DASH] = ACTIONS(1369), + [anon_sym_AMP] = ACTIONS(3007), + [anon_sym_PIPE] = ACTIONS(1497), + [anon_sym_LT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1499), + [anon_sym_DOT_DOT] = ACTIONS(1501), + [anon_sym_COLON_COLON] = ACTIONS(3009), + [anon_sym_const] = ACTIONS(3011), + [anon_sym_default] = ACTIONS(3013), + [anon_sym_static] = ACTIONS(1503), + [anon_sym_union] = ACTIONS(3013), + [anon_sym_ref] = ACTIONS(1405), + [sym_mutable_specifier] = ACTIONS(1505), + [anon_sym_move] = ACTIONS(1507), + [sym_integer_literal] = ACTIONS(1411), + [aux_sym_string_literal_token1] = ACTIONS(1413), + [sym_char_literal] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1415), + [anon_sym_false] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3015), + [sym_super] = ACTIONS(3015), + [sym_crate] = ACTIONS(3015), + [sym_metavariable] = ACTIONS(3017), + [sym__raw_string_literal_start] = ACTIONS(1423), + [sym_float_literal] = ACTIONS(1411), }, [782] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2679), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_bracketed_type] = STATE(3574), + [sym_generic_type] = STATE(3491), + [sym_generic_type_with_turbofish] = STATE(3212), + [sym_macro_invocation] = STATE(2160), + [sym_scoped_identifier] = STATE(1997), + [sym_scoped_type_identifier] = STATE(2902), + [sym_const_block] = STATE(2160), + [sym_closure_expression] = STATE(3234), + [sym_closure_parameters] = STATE(247), + [sym__pattern] = STATE(2961), + [sym_tuple_pattern] = STATE(2160), + [sym_slice_pattern] = STATE(2160), + [sym_tuple_struct_pattern] = STATE(2160), + [sym_struct_pattern] = STATE(2160), + [sym_remaining_field_pattern] = STATE(2160), + [sym_mut_pattern] = STATE(2160), + [sym_range_pattern] = STATE(2160), + [sym_ref_pattern] = STATE(2160), + [sym_captured_pattern] = STATE(2160), + [sym_reference_pattern] = STATE(2160), + [sym_or_pattern] = STATE(2160), + [sym__literal_pattern] = STATE(2036), + [sym_negative_literal] = STATE(2048), + [sym_string_literal] = STATE(2048), + [sym_raw_string_literal] = STATE(2048), + [sym_boolean_literal] = STATE(2048), [sym_line_comment] = STATE(782), [sym_block_comment] = STATE(782), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_RBRACK] = ACTIONS(3015), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym_identifier] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(3003), + [anon_sym_u8] = ACTIONS(3005), + [anon_sym_i8] = ACTIONS(3005), + [anon_sym_u16] = ACTIONS(3005), + [anon_sym_i16] = ACTIONS(3005), + [anon_sym_u32] = ACTIONS(3005), + [anon_sym_i32] = ACTIONS(3005), + [anon_sym_u64] = ACTIONS(3005), + [anon_sym_i64] = ACTIONS(3005), + [anon_sym_u128] = ACTIONS(3005), + [anon_sym_i128] = ACTIONS(3005), + [anon_sym_isize] = ACTIONS(3005), + [anon_sym_usize] = ACTIONS(3005), + [anon_sym_f32] = ACTIONS(3005), + [anon_sym_f64] = ACTIONS(3005), + [anon_sym_bool] = ACTIONS(3005), + [anon_sym_str] = ACTIONS(3005), + [anon_sym_char] = ACTIONS(3005), + [anon_sym_DASH] = ACTIONS(1369), + [anon_sym_AMP] = ACTIONS(3007), + [anon_sym_PIPE] = ACTIONS(1497), + [anon_sym_LT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1499), + [anon_sym_DOT_DOT] = ACTIONS(1501), + [anon_sym_COLON_COLON] = ACTIONS(3009), + [anon_sym_const] = ACTIONS(3011), + [anon_sym_default] = ACTIONS(3013), + [anon_sym_static] = ACTIONS(1503), + [anon_sym_union] = ACTIONS(3013), + [anon_sym_ref] = ACTIONS(1405), + [sym_mutable_specifier] = ACTIONS(1505), + [anon_sym_move] = ACTIONS(1507), + [sym_integer_literal] = ACTIONS(1411), + [aux_sym_string_literal_token1] = ACTIONS(1413), + [sym_char_literal] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1415), + [anon_sym_false] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3015), + [sym_super] = ACTIONS(3015), + [sym_crate] = ACTIONS(3015), + [sym_metavariable] = ACTIONS(3017), + [sym__raw_string_literal_start] = ACTIONS(1423), + [sym_float_literal] = ACTIONS(1411), }, [783] = { - [sym_parameter] = STATE(3027), - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2532), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_attribute_item] = STATE(1514), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_const_parameter] = STATE(2797), + [sym_constrained_type_parameter] = STATE(2770), + [sym_optional_type_parameter] = STATE(2797), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2896), + [sym_bracketed_type] = STATE(3418), + [sym_qualified_type] = STATE(3550), + [sym_lifetime] = STATE(2382), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), [sym_line_comment] = STATE(783), [sym_block_comment] = STATE(783), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(3017), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(3007), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3009), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [aux_sym_enum_variant_list_repeat1] = STATE(2099), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3031), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_POUND] = ACTIONS(3033), + [anon_sym_SQUOTE] = ACTIONS(3035), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(3037), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(3039), }, [784] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2679), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_attribute_item] = STATE(1514), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym_visibility_modifier] = STATE(1000), + [sym__type] = STATE(2555), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), [sym_line_comment] = STATE(784), [sym_block_comment] = STATE(784), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_RPAREN] = ACTIONS(3019), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [aux_sym_enum_variant_list_repeat1] = STATE(794), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_RPAREN] = ACTIONS(3043), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_COMMA] = ACTIONS(3045), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_POUND] = ACTIONS(3033), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_pub] = ACTIONS(3049), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(3051), + [sym_metavariable] = ACTIONS(1601), }, [785] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2679), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_attribute_item] = STATE(1514), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym_visibility_modifier] = STATE(992), + [sym__type] = STATE(2927), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), [sym_line_comment] = STATE(785), [sym_block_comment] = STATE(785), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_RBRACK] = ACTIONS(3021), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [aux_sym_enum_variant_list_repeat1] = STATE(792), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_RPAREN] = ACTIONS(3053), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_POUND] = ACTIONS(3033), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_pub] = ACTIONS(3049), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(3051), + [sym_metavariable] = ACTIONS(1601), }, [786] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2679), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_attribute_item] = STATE(1514), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym_visibility_modifier] = STATE(992), + [sym__type] = STATE(2927), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), [sym_line_comment] = STATE(786), [sym_block_comment] = STATE(786), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_RPAREN] = ACTIONS(3023), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [aux_sym_enum_variant_list_repeat1] = STATE(792), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_RPAREN] = ACTIONS(3055), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_POUND] = ACTIONS(3033), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_pub] = ACTIONS(3049), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(3051), + [sym_metavariable] = ACTIONS(1601), }, [787] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2679), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_attribute_item] = STATE(1514), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym_visibility_modifier] = STATE(992), + [sym__type] = STATE(2927), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), [sym_line_comment] = STATE(787), [sym_block_comment] = STATE(787), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_RBRACK] = ACTIONS(3025), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [aux_sym_enum_variant_list_repeat1] = STATE(792), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_RPAREN] = ACTIONS(3057), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_POUND] = ACTIONS(3033), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_pub] = ACTIONS(3049), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(3051), + [sym_metavariable] = ACTIONS(1601), }, [788] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2679), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_attribute_item] = STATE(1514), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym_visibility_modifier] = STATE(992), + [sym__type] = STATE(2927), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), [sym_line_comment] = STATE(788), [sym_block_comment] = STATE(788), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_RPAREN] = ACTIONS(3027), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [aux_sym_enum_variant_list_repeat1] = STATE(792), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_RPAREN] = ACTIONS(3059), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_POUND] = ACTIONS(3033), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_pub] = ACTIONS(3049), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(3051), + [sym_metavariable] = ACTIONS(1601), }, [789] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2679), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_attribute_item] = STATE(1514), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym_visibility_modifier] = STATE(992), + [sym__type] = STATE(2927), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), [sym_line_comment] = STATE(789), [sym_block_comment] = STATE(789), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_RPAREN] = ACTIONS(3029), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [aux_sym_enum_variant_list_repeat1] = STATE(792), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_RPAREN] = ACTIONS(3061), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_POUND] = ACTIONS(3033), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_pub] = ACTIONS(3049), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(3051), + [sym_metavariable] = ACTIONS(1601), }, [790] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2679), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_attribute_item] = STATE(1514), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym_visibility_modifier] = STATE(992), + [sym__type] = STATE(2927), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), [sym_line_comment] = STATE(790), [sym_block_comment] = STATE(790), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_RPAREN] = ACTIONS(3031), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [aux_sym_enum_variant_list_repeat1] = STATE(792), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_RPAREN] = ACTIONS(3063), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_POUND] = ACTIONS(3033), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_pub] = ACTIONS(3049), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(3051), + [sym_metavariable] = ACTIONS(1601), }, [791] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2679), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_bracketed_type] = STATE(3574), + [sym_generic_type] = STATE(3491), + [sym_generic_type_with_turbofish] = STATE(3212), + [sym_macro_invocation] = STATE(2160), + [sym_scoped_identifier] = STATE(1997), + [sym_scoped_type_identifier] = STATE(2902), + [sym_const_block] = STATE(2160), + [sym__pattern] = STATE(2612), + [sym_tuple_pattern] = STATE(2160), + [sym_slice_pattern] = STATE(2160), + [sym_tuple_struct_pattern] = STATE(2160), + [sym_struct_pattern] = STATE(2160), + [sym_remaining_field_pattern] = STATE(2160), + [sym_mut_pattern] = STATE(2160), + [sym_range_pattern] = STATE(2160), + [sym_ref_pattern] = STATE(2160), + [sym_captured_pattern] = STATE(2160), + [sym_reference_pattern] = STATE(2160), + [sym_or_pattern] = STATE(2160), + [sym__literal_pattern] = STATE(2036), + [sym_negative_literal] = STATE(2048), + [sym_string_literal] = STATE(2048), + [sym_raw_string_literal] = STATE(2048), + [sym_boolean_literal] = STATE(2048), [sym_line_comment] = STATE(791), [sym_block_comment] = STATE(791), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_RPAREN] = ACTIONS(3033), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym_identifier] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(2999), + [anon_sym_RPAREN] = ACTIONS(3065), + [anon_sym_LBRACK] = ACTIONS(3003), + [anon_sym_COMMA] = ACTIONS(3067), + [anon_sym_u8] = ACTIONS(3005), + [anon_sym_i8] = ACTIONS(3005), + [anon_sym_u16] = ACTIONS(3005), + [anon_sym_i16] = ACTIONS(3005), + [anon_sym_u32] = ACTIONS(3005), + [anon_sym_i32] = ACTIONS(3005), + [anon_sym_u64] = ACTIONS(3005), + [anon_sym_i64] = ACTIONS(3005), + [anon_sym_u128] = ACTIONS(3005), + [anon_sym_i128] = ACTIONS(3005), + [anon_sym_isize] = ACTIONS(3005), + [anon_sym_usize] = ACTIONS(3005), + [anon_sym_f32] = ACTIONS(3005), + [anon_sym_f64] = ACTIONS(3005), + [anon_sym_bool] = ACTIONS(3005), + [anon_sym_str] = ACTIONS(3005), + [anon_sym_char] = ACTIONS(3005), + [anon_sym_DASH] = ACTIONS(1369), + [anon_sym_AMP] = ACTIONS(3007), + [anon_sym_PIPE] = ACTIONS(1375), + [anon_sym_LT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1499), + [anon_sym_DOT_DOT] = ACTIONS(1501), + [anon_sym_COLON_COLON] = ACTIONS(3009), + [anon_sym_const] = ACTIONS(3011), + [anon_sym_default] = ACTIONS(3013), + [anon_sym_union] = ACTIONS(3013), + [anon_sym_ref] = ACTIONS(1405), + [sym_mutable_specifier] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1411), + [aux_sym_string_literal_token1] = ACTIONS(1413), + [sym_char_literal] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1415), + [anon_sym_false] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3015), + [sym_super] = ACTIONS(3015), + [sym_crate] = ACTIONS(3015), + [sym_metavariable] = ACTIONS(3017), + [sym__raw_string_literal_start] = ACTIONS(1423), + [sym_float_literal] = ACTIONS(1411), }, [792] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2679), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_attribute_item] = STATE(1514), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym_visibility_modifier] = STATE(942), + [sym__type] = STATE(2932), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), [sym_line_comment] = STATE(792), [sym_block_comment] = STATE(792), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_RBRACK] = ACTIONS(3035), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [aux_sym_enum_variant_list_repeat1] = STATE(1237), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_POUND] = ACTIONS(3033), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_pub] = ACTIONS(3049), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(3051), + [sym_metavariable] = ACTIONS(1601), }, [793] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2679), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_bracketed_type] = STATE(3574), + [sym_generic_type] = STATE(3491), + [sym_generic_type_with_turbofish] = STATE(3212), + [sym_macro_invocation] = STATE(2160), + [sym_scoped_identifier] = STATE(1997), + [sym_scoped_type_identifier] = STATE(2902), + [sym_const_block] = STATE(2160), + [sym__pattern] = STATE(2748), + [sym_tuple_pattern] = STATE(2160), + [sym_slice_pattern] = STATE(2160), + [sym_tuple_struct_pattern] = STATE(2160), + [sym_struct_pattern] = STATE(2160), + [sym_remaining_field_pattern] = STATE(2160), + [sym_mut_pattern] = STATE(2160), + [sym_range_pattern] = STATE(2160), + [sym_ref_pattern] = STATE(2160), + [sym_captured_pattern] = STATE(2160), + [sym_reference_pattern] = STATE(2160), + [sym_or_pattern] = STATE(2160), + [sym__literal_pattern] = STATE(2036), + [sym_negative_literal] = STATE(2048), + [sym_string_literal] = STATE(2048), + [sym_raw_string_literal] = STATE(2048), + [sym_boolean_literal] = STATE(2048), [sym_line_comment] = STATE(793), [sym_block_comment] = STATE(793), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_RPAREN] = ACTIONS(3037), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym_identifier] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(3003), + [anon_sym_RBRACK] = ACTIONS(3069), + [anon_sym_COMMA] = ACTIONS(3071), + [anon_sym_u8] = ACTIONS(3005), + [anon_sym_i8] = ACTIONS(3005), + [anon_sym_u16] = ACTIONS(3005), + [anon_sym_i16] = ACTIONS(3005), + [anon_sym_u32] = ACTIONS(3005), + [anon_sym_i32] = ACTIONS(3005), + [anon_sym_u64] = ACTIONS(3005), + [anon_sym_i64] = ACTIONS(3005), + [anon_sym_u128] = ACTIONS(3005), + [anon_sym_i128] = ACTIONS(3005), + [anon_sym_isize] = ACTIONS(3005), + [anon_sym_usize] = ACTIONS(3005), + [anon_sym_f32] = ACTIONS(3005), + [anon_sym_f64] = ACTIONS(3005), + [anon_sym_bool] = ACTIONS(3005), + [anon_sym_str] = ACTIONS(3005), + [anon_sym_char] = ACTIONS(3005), + [anon_sym_DASH] = ACTIONS(1369), + [anon_sym_AMP] = ACTIONS(3007), + [anon_sym_PIPE] = ACTIONS(1375), + [anon_sym_LT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1499), + [anon_sym_DOT_DOT] = ACTIONS(1501), + [anon_sym_COLON_COLON] = ACTIONS(3009), + [anon_sym_const] = ACTIONS(3011), + [anon_sym_default] = ACTIONS(3013), + [anon_sym_union] = ACTIONS(3013), + [anon_sym_ref] = ACTIONS(1405), + [sym_mutable_specifier] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1411), + [aux_sym_string_literal_token1] = ACTIONS(1413), + [sym_char_literal] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1415), + [anon_sym_false] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3015), + [sym_super] = ACTIONS(3015), + [sym_crate] = ACTIONS(3015), + [sym_metavariable] = ACTIONS(3017), + [sym__raw_string_literal_start] = ACTIONS(1423), + [sym_float_literal] = ACTIONS(1411), }, [794] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2679), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_attribute_item] = STATE(1514), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym_visibility_modifier] = STATE(879), + [sym__type] = STATE(2718), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), [sym_line_comment] = STATE(794), [sym_block_comment] = STATE(794), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_RPAREN] = ACTIONS(3039), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [aux_sym_enum_variant_list_repeat1] = STATE(1237), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_POUND] = ACTIONS(3033), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_pub] = ACTIONS(3049), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(3051), + [sym_metavariable] = ACTIONS(1601), }, [795] = { - [sym_parameter] = STATE(3027), - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2429), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_attribute_item] = STATE(1514), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym_visibility_modifier] = STATE(992), + [sym__type] = STATE(2927), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), [sym_line_comment] = STATE(795), [sym_block_comment] = STATE(795), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(3017), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(3007), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3009), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [aux_sym_enum_variant_list_repeat1] = STATE(792), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_POUND] = ACTIONS(3033), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_pub] = ACTIONS(3049), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(3051), + [sym_metavariable] = ACTIONS(1601), }, [796] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(3301), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_bracketed_type] = STATE(3574), + [sym_generic_type] = STATE(3491), + [sym_generic_type_with_turbofish] = STATE(3212), + [sym_macro_invocation] = STATE(2160), + [sym_scoped_identifier] = STATE(1997), + [sym_scoped_type_identifier] = STATE(2902), + [sym_const_block] = STATE(2160), + [sym__pattern] = STATE(2754), + [sym_tuple_pattern] = STATE(2160), + [sym_slice_pattern] = STATE(2160), + [sym_tuple_struct_pattern] = STATE(2160), + [sym_struct_pattern] = STATE(2160), + [sym_remaining_field_pattern] = STATE(2160), + [sym_mut_pattern] = STATE(2160), + [sym_range_pattern] = STATE(2160), + [sym_ref_pattern] = STATE(2160), + [sym_captured_pattern] = STATE(2160), + [sym_reference_pattern] = STATE(2160), + [sym_or_pattern] = STATE(2160), + [sym__literal_pattern] = STATE(2036), + [sym_negative_literal] = STATE(2048), + [sym_string_literal] = STATE(2048), + [sym_raw_string_literal] = STATE(2048), + [sym_boolean_literal] = STATE(2048), [sym_line_comment] = STATE(796), [sym_block_comment] = STATE(796), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym_identifier] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(3003), + [anon_sym_RBRACK] = ACTIONS(1525), + [anon_sym_COMMA] = ACTIONS(1527), + [anon_sym_u8] = ACTIONS(3005), + [anon_sym_i8] = ACTIONS(3005), + [anon_sym_u16] = ACTIONS(3005), + [anon_sym_i16] = ACTIONS(3005), + [anon_sym_u32] = ACTIONS(3005), + [anon_sym_i32] = ACTIONS(3005), + [anon_sym_u64] = ACTIONS(3005), + [anon_sym_i64] = ACTIONS(3005), + [anon_sym_u128] = ACTIONS(3005), + [anon_sym_i128] = ACTIONS(3005), + [anon_sym_isize] = ACTIONS(3005), + [anon_sym_usize] = ACTIONS(3005), + [anon_sym_f32] = ACTIONS(3005), + [anon_sym_f64] = ACTIONS(3005), + [anon_sym_bool] = ACTIONS(3005), + [anon_sym_str] = ACTIONS(3005), + [anon_sym_char] = ACTIONS(3005), + [anon_sym_DASH] = ACTIONS(1369), + [anon_sym_AMP] = ACTIONS(3007), + [anon_sym_PIPE] = ACTIONS(1375), + [anon_sym_LT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1499), + [anon_sym_DOT_DOT] = ACTIONS(1501), + [anon_sym_COLON_COLON] = ACTIONS(3009), + [anon_sym_const] = ACTIONS(3011), + [anon_sym_default] = ACTIONS(3013), + [anon_sym_union] = ACTIONS(3013), + [anon_sym_ref] = ACTIONS(1405), + [sym_mutable_specifier] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1411), + [aux_sym_string_literal_token1] = ACTIONS(1413), + [sym_char_literal] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1415), + [anon_sym_false] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3015), + [sym_super] = ACTIONS(3015), + [sym_crate] = ACTIONS(3015), + [sym_metavariable] = ACTIONS(3017), + [sym__raw_string_literal_start] = ACTIONS(1423), + [sym_float_literal] = ACTIONS(1411), }, [797] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2679), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_bracketed_type] = STATE(3574), + [sym_generic_type] = STATE(3491), + [sym_generic_type_with_turbofish] = STATE(3212), + [sym_macro_invocation] = STATE(2160), + [sym_scoped_identifier] = STATE(1997), + [sym_scoped_type_identifier] = STATE(2902), + [sym_const_block] = STATE(2160), + [sym__pattern] = STATE(2622), + [sym_tuple_pattern] = STATE(2160), + [sym_slice_pattern] = STATE(2160), + [sym_tuple_struct_pattern] = STATE(2160), + [sym_struct_pattern] = STATE(2160), + [sym_remaining_field_pattern] = STATE(2160), + [sym_mut_pattern] = STATE(2160), + [sym_range_pattern] = STATE(2160), + [sym_ref_pattern] = STATE(2160), + [sym_captured_pattern] = STATE(2160), + [sym_reference_pattern] = STATE(2160), + [sym_or_pattern] = STATE(2160), + [sym__literal_pattern] = STATE(2036), + [sym_negative_literal] = STATE(2048), + [sym_string_literal] = STATE(2048), + [sym_raw_string_literal] = STATE(2048), + [sym_boolean_literal] = STATE(2048), [sym_line_comment] = STATE(797), [sym_block_comment] = STATE(797), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym_identifier] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(2999), + [anon_sym_RPAREN] = ACTIONS(3073), + [anon_sym_LBRACK] = ACTIONS(3003), + [anon_sym_COMMA] = ACTIONS(3075), + [anon_sym_u8] = ACTIONS(3005), + [anon_sym_i8] = ACTIONS(3005), + [anon_sym_u16] = ACTIONS(3005), + [anon_sym_i16] = ACTIONS(3005), + [anon_sym_u32] = ACTIONS(3005), + [anon_sym_i32] = ACTIONS(3005), + [anon_sym_u64] = ACTIONS(3005), + [anon_sym_i64] = ACTIONS(3005), + [anon_sym_u128] = ACTIONS(3005), + [anon_sym_i128] = ACTIONS(3005), + [anon_sym_isize] = ACTIONS(3005), + [anon_sym_usize] = ACTIONS(3005), + [anon_sym_f32] = ACTIONS(3005), + [anon_sym_f64] = ACTIONS(3005), + [anon_sym_bool] = ACTIONS(3005), + [anon_sym_str] = ACTIONS(3005), + [anon_sym_char] = ACTIONS(3005), + [anon_sym_DASH] = ACTIONS(1369), + [anon_sym_AMP] = ACTIONS(3007), + [anon_sym_PIPE] = ACTIONS(1375), + [anon_sym_LT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1499), + [anon_sym_DOT_DOT] = ACTIONS(1501), + [anon_sym_COLON_COLON] = ACTIONS(3009), + [anon_sym_const] = ACTIONS(3011), + [anon_sym_default] = ACTIONS(3013), + [anon_sym_union] = ACTIONS(3013), + [anon_sym_ref] = ACTIONS(1405), + [sym_mutable_specifier] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1411), + [aux_sym_string_literal_token1] = ACTIONS(1413), + [sym_char_literal] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1415), + [anon_sym_false] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3015), + [sym_super] = ACTIONS(3015), + [sym_crate] = ACTIONS(3015), + [sym_metavariable] = ACTIONS(3017), + [sym__raw_string_literal_start] = ACTIONS(1423), + [sym_float_literal] = ACTIONS(1411), }, [798] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(3188), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_bracketed_type] = STATE(3574), + [sym_generic_type] = STATE(3491), + [sym_generic_type_with_turbofish] = STATE(3212), + [sym_macro_invocation] = STATE(2160), + [sym_scoped_identifier] = STATE(1997), + [sym_scoped_type_identifier] = STATE(2902), + [sym_const_block] = STATE(2160), + [sym__pattern] = STATE(2713), + [sym_tuple_pattern] = STATE(2160), + [sym_slice_pattern] = STATE(2160), + [sym_tuple_struct_pattern] = STATE(2160), + [sym_struct_pattern] = STATE(2160), + [sym_remaining_field_pattern] = STATE(2160), + [sym_mut_pattern] = STATE(2160), + [sym_range_pattern] = STATE(2160), + [sym_ref_pattern] = STATE(2160), + [sym_captured_pattern] = STATE(2160), + [sym_reference_pattern] = STATE(2160), + [sym_or_pattern] = STATE(2160), + [sym__literal_pattern] = STATE(2036), + [sym_negative_literal] = STATE(2048), + [sym_string_literal] = STATE(2048), + [sym_raw_string_literal] = STATE(2048), + [sym_boolean_literal] = STATE(2048), [sym_line_comment] = STATE(798), [sym_block_comment] = STATE(798), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym_identifier] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(2999), + [anon_sym_RPAREN] = ACTIONS(3077), + [anon_sym_LBRACK] = ACTIONS(3003), + [anon_sym_COMMA] = ACTIONS(3079), + [anon_sym_u8] = ACTIONS(3005), + [anon_sym_i8] = ACTIONS(3005), + [anon_sym_u16] = ACTIONS(3005), + [anon_sym_i16] = ACTIONS(3005), + [anon_sym_u32] = ACTIONS(3005), + [anon_sym_i32] = ACTIONS(3005), + [anon_sym_u64] = ACTIONS(3005), + [anon_sym_i64] = ACTIONS(3005), + [anon_sym_u128] = ACTIONS(3005), + [anon_sym_i128] = ACTIONS(3005), + [anon_sym_isize] = ACTIONS(3005), + [anon_sym_usize] = ACTIONS(3005), + [anon_sym_f32] = ACTIONS(3005), + [anon_sym_f64] = ACTIONS(3005), + [anon_sym_bool] = ACTIONS(3005), + [anon_sym_str] = ACTIONS(3005), + [anon_sym_char] = ACTIONS(3005), + [anon_sym_DASH] = ACTIONS(1369), + [anon_sym_AMP] = ACTIONS(3007), + [anon_sym_PIPE] = ACTIONS(1375), + [anon_sym_LT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1499), + [anon_sym_DOT_DOT] = ACTIONS(1501), + [anon_sym_COLON_COLON] = ACTIONS(3009), + [anon_sym_const] = ACTIONS(3011), + [anon_sym_default] = ACTIONS(3013), + [anon_sym_union] = ACTIONS(3013), + [anon_sym_ref] = ACTIONS(1405), + [sym_mutable_specifier] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1411), + [aux_sym_string_literal_token1] = ACTIONS(1413), + [sym_char_literal] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1415), + [anon_sym_false] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3015), + [sym_super] = ACTIONS(3015), + [sym_crate] = ACTIONS(3015), + [sym_metavariable] = ACTIONS(3017), + [sym__raw_string_literal_start] = ACTIONS(1423), + [sym_float_literal] = ACTIONS(1411), }, [799] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(3212), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_bracketed_type] = STATE(3574), + [sym_generic_type] = STATE(3491), + [sym_generic_type_with_turbofish] = STATE(3212), + [sym_macro_invocation] = STATE(2160), + [sym_scoped_identifier] = STATE(1997), + [sym_scoped_type_identifier] = STATE(2902), + [sym_const_block] = STATE(2160), + [sym__pattern] = STATE(2714), + [sym_tuple_pattern] = STATE(2160), + [sym_slice_pattern] = STATE(2160), + [sym_tuple_struct_pattern] = STATE(2160), + [sym_struct_pattern] = STATE(2160), + [sym_remaining_field_pattern] = STATE(2160), + [sym_mut_pattern] = STATE(2160), + [sym_range_pattern] = STATE(2160), + [sym_ref_pattern] = STATE(2160), + [sym_captured_pattern] = STATE(2160), + [sym_reference_pattern] = STATE(2160), + [sym_or_pattern] = STATE(2160), + [sym__literal_pattern] = STATE(2036), + [sym_negative_literal] = STATE(2048), + [sym_string_literal] = STATE(2048), + [sym_raw_string_literal] = STATE(2048), + [sym_boolean_literal] = STATE(2048), [sym_line_comment] = STATE(799), [sym_block_comment] = STATE(799), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym_identifier] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(2999), + [anon_sym_RPAREN] = ACTIONS(3081), + [anon_sym_LBRACK] = ACTIONS(3003), + [anon_sym_COMMA] = ACTIONS(3083), + [anon_sym_u8] = ACTIONS(3005), + [anon_sym_i8] = ACTIONS(3005), + [anon_sym_u16] = ACTIONS(3005), + [anon_sym_i16] = ACTIONS(3005), + [anon_sym_u32] = ACTIONS(3005), + [anon_sym_i32] = ACTIONS(3005), + [anon_sym_u64] = ACTIONS(3005), + [anon_sym_i64] = ACTIONS(3005), + [anon_sym_u128] = ACTIONS(3005), + [anon_sym_i128] = ACTIONS(3005), + [anon_sym_isize] = ACTIONS(3005), + [anon_sym_usize] = ACTIONS(3005), + [anon_sym_f32] = ACTIONS(3005), + [anon_sym_f64] = ACTIONS(3005), + [anon_sym_bool] = ACTIONS(3005), + [anon_sym_str] = ACTIONS(3005), + [anon_sym_char] = ACTIONS(3005), + [anon_sym_DASH] = ACTIONS(1369), + [anon_sym_AMP] = ACTIONS(3007), + [anon_sym_PIPE] = ACTIONS(1375), + [anon_sym_LT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1499), + [anon_sym_DOT_DOT] = ACTIONS(1501), + [anon_sym_COLON_COLON] = ACTIONS(3009), + [anon_sym_const] = ACTIONS(3011), + [anon_sym_default] = ACTIONS(3013), + [anon_sym_union] = ACTIONS(3013), + [anon_sym_ref] = ACTIONS(1405), + [sym_mutable_specifier] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1411), + [aux_sym_string_literal_token1] = ACTIONS(1413), + [sym_char_literal] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1415), + [anon_sym_false] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3015), + [sym_super] = ACTIONS(3015), + [sym_crate] = ACTIONS(3015), + [sym_metavariable] = ACTIONS(3017), + [sym__raw_string_literal_start] = ACTIONS(1423), + [sym_float_literal] = ACTIONS(1411), }, [800] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2485), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_bracketed_type] = STATE(3574), + [sym_generic_type] = STATE(3491), + [sym_generic_type_with_turbofish] = STATE(3212), + [sym_macro_invocation] = STATE(2160), + [sym_scoped_identifier] = STATE(1997), + [sym_scoped_type_identifier] = STATE(2902), + [sym_const_block] = STATE(2160), + [sym__pattern] = STATE(2618), + [sym_tuple_pattern] = STATE(2160), + [sym_slice_pattern] = STATE(2160), + [sym_tuple_struct_pattern] = STATE(2160), + [sym_struct_pattern] = STATE(2160), + [sym_remaining_field_pattern] = STATE(2160), + [sym_mut_pattern] = STATE(2160), + [sym_range_pattern] = STATE(2160), + [sym_ref_pattern] = STATE(2160), + [sym_captured_pattern] = STATE(2160), + [sym_reference_pattern] = STATE(2160), + [sym_or_pattern] = STATE(2160), + [sym__literal_pattern] = STATE(2036), + [sym_negative_literal] = STATE(2048), + [sym_string_literal] = STATE(2048), + [sym_raw_string_literal] = STATE(2048), + [sym_boolean_literal] = STATE(2048), [sym_line_comment] = STATE(800), [sym_block_comment] = STATE(800), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym_identifier] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(3003), + [anon_sym_RBRACK] = ACTIONS(3085), + [anon_sym_u8] = ACTIONS(3005), + [anon_sym_i8] = ACTIONS(3005), + [anon_sym_u16] = ACTIONS(3005), + [anon_sym_i16] = ACTIONS(3005), + [anon_sym_u32] = ACTIONS(3005), + [anon_sym_i32] = ACTIONS(3005), + [anon_sym_u64] = ACTIONS(3005), + [anon_sym_i64] = ACTIONS(3005), + [anon_sym_u128] = ACTIONS(3005), + [anon_sym_i128] = ACTIONS(3005), + [anon_sym_isize] = ACTIONS(3005), + [anon_sym_usize] = ACTIONS(3005), + [anon_sym_f32] = ACTIONS(3005), + [anon_sym_f64] = ACTIONS(3005), + [anon_sym_bool] = ACTIONS(3005), + [anon_sym_str] = ACTIONS(3005), + [anon_sym_char] = ACTIONS(3005), + [anon_sym_DASH] = ACTIONS(1369), + [anon_sym_AMP] = ACTIONS(3007), + [anon_sym_PIPE] = ACTIONS(1375), + [anon_sym_LT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1499), + [anon_sym_DOT_DOT] = ACTIONS(1501), + [anon_sym_COLON_COLON] = ACTIONS(3009), + [anon_sym_const] = ACTIONS(3011), + [anon_sym_default] = ACTIONS(3013), + [anon_sym_union] = ACTIONS(3013), + [anon_sym_ref] = ACTIONS(1405), + [sym_mutable_specifier] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1411), + [aux_sym_string_literal_token1] = ACTIONS(1413), + [sym_char_literal] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1415), + [anon_sym_false] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3015), + [sym_super] = ACTIONS(3015), + [sym_crate] = ACTIONS(3015), + [sym_metavariable] = ACTIONS(3017), + [sym__raw_string_literal_start] = ACTIONS(1423), + [sym_float_literal] = ACTIONS(1411), }, [801] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2103), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_bracketed_type] = STATE(3574), + [sym_generic_type] = STATE(3491), + [sym_generic_type_with_turbofish] = STATE(3212), + [sym_macro_invocation] = STATE(2160), + [sym_scoped_identifier] = STATE(1997), + [sym_scoped_type_identifier] = STATE(2902), + [sym_const_block] = STATE(2160), + [sym__pattern] = STATE(2618), + [sym_tuple_pattern] = STATE(2160), + [sym_slice_pattern] = STATE(2160), + [sym_tuple_struct_pattern] = STATE(2160), + [sym_struct_pattern] = STATE(2160), + [sym_remaining_field_pattern] = STATE(2160), + [sym_mut_pattern] = STATE(2160), + [sym_range_pattern] = STATE(2160), + [sym_ref_pattern] = STATE(2160), + [sym_captured_pattern] = STATE(2160), + [sym_reference_pattern] = STATE(2160), + [sym_or_pattern] = STATE(2160), + [sym__literal_pattern] = STATE(2036), + [sym_negative_literal] = STATE(2048), + [sym_string_literal] = STATE(2048), + [sym_raw_string_literal] = STATE(2048), + [sym_boolean_literal] = STATE(2048), [sym_line_comment] = STATE(801), [sym_block_comment] = STATE(801), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym_identifier] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(2999), + [anon_sym_RPAREN] = ACTIONS(3087), + [anon_sym_LBRACK] = ACTIONS(3003), + [anon_sym_u8] = ACTIONS(3005), + [anon_sym_i8] = ACTIONS(3005), + [anon_sym_u16] = ACTIONS(3005), + [anon_sym_i16] = ACTIONS(3005), + [anon_sym_u32] = ACTIONS(3005), + [anon_sym_i32] = ACTIONS(3005), + [anon_sym_u64] = ACTIONS(3005), + [anon_sym_i64] = ACTIONS(3005), + [anon_sym_u128] = ACTIONS(3005), + [anon_sym_i128] = ACTIONS(3005), + [anon_sym_isize] = ACTIONS(3005), + [anon_sym_usize] = ACTIONS(3005), + [anon_sym_f32] = ACTIONS(3005), + [anon_sym_f64] = ACTIONS(3005), + [anon_sym_bool] = ACTIONS(3005), + [anon_sym_str] = ACTIONS(3005), + [anon_sym_char] = ACTIONS(3005), + [anon_sym_DASH] = ACTIONS(1369), + [anon_sym_AMP] = ACTIONS(3007), + [anon_sym_PIPE] = ACTIONS(1375), + [anon_sym_LT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1499), + [anon_sym_DOT_DOT] = ACTIONS(1501), + [anon_sym_COLON_COLON] = ACTIONS(3009), + [anon_sym_const] = ACTIONS(3011), + [anon_sym_default] = ACTIONS(3013), + [anon_sym_union] = ACTIONS(3013), + [anon_sym_ref] = ACTIONS(1405), + [sym_mutable_specifier] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1411), + [aux_sym_string_literal_token1] = ACTIONS(1413), + [sym_char_literal] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1415), + [anon_sym_false] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3015), + [sym_super] = ACTIONS(3015), + [sym_crate] = ACTIONS(3015), + [sym_metavariable] = ACTIONS(3017), + [sym__raw_string_literal_start] = ACTIONS(1423), + [sym_float_literal] = ACTIONS(1411), }, [802] = { - [sym_bracketed_type] = STATE(3523), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3262), - [sym_macro_invocation] = STATE(2877), - [sym_scoped_identifier] = STATE(2130), - [sym_scoped_type_identifier] = STATE(2908), - [sym_const_block] = STATE(2877), - [sym__pattern] = STATE(2978), - [sym_tuple_pattern] = STATE(2877), - [sym_slice_pattern] = STATE(2877), - [sym_tuple_struct_pattern] = STATE(2877), - [sym_struct_pattern] = STATE(2877), - [sym_remaining_field_pattern] = STATE(2877), - [sym_mut_pattern] = STATE(2877), - [sym_range_pattern] = STATE(2877), - [sym_ref_pattern] = STATE(2877), - [sym_captured_pattern] = STATE(2877), - [sym_reference_pattern] = STATE(2877), - [sym_or_pattern] = STATE(2877), - [sym__literal_pattern] = STATE(2387), - [sym_negative_literal] = STATE(2299), - [sym_string_literal] = STATE(2299), - [sym_raw_string_literal] = STATE(2299), - [sym_boolean_literal] = STATE(2299), + [sym_bracketed_type] = STATE(3574), + [sym_generic_type] = STATE(3491), + [sym_generic_type_with_turbofish] = STATE(3212), + [sym_macro_invocation] = STATE(2160), + [sym_scoped_identifier] = STATE(1997), + [sym_scoped_type_identifier] = STATE(2902), + [sym_const_block] = STATE(2160), + [sym__pattern] = STATE(2618), + [sym_tuple_pattern] = STATE(2160), + [sym_slice_pattern] = STATE(2160), + [sym_tuple_struct_pattern] = STATE(2160), + [sym_struct_pattern] = STATE(2160), + [sym_remaining_field_pattern] = STATE(2160), + [sym_mut_pattern] = STATE(2160), + [sym_range_pattern] = STATE(2160), + [sym_ref_pattern] = STATE(2160), + [sym_captured_pattern] = STATE(2160), + [sym_reference_pattern] = STATE(2160), + [sym_or_pattern] = STATE(2160), + [sym__literal_pattern] = STATE(2036), + [sym_negative_literal] = STATE(2048), + [sym_string_literal] = STATE(2048), + [sym_raw_string_literal] = STATE(2048), + [sym_boolean_literal] = STATE(2048), [sym_line_comment] = STATE(802), [sym_block_comment] = STATE(802), - [sym_identifier] = ACTIONS(1604), - [anon_sym_LPAREN] = ACTIONS(1606), - [anon_sym_LBRACK] = ACTIONS(1608), - [anon_sym_u8] = ACTIONS(1612), - [anon_sym_i8] = ACTIONS(1612), - [anon_sym_u16] = ACTIONS(1612), - [anon_sym_i16] = ACTIONS(1612), - [anon_sym_u32] = ACTIONS(1612), - [anon_sym_i32] = ACTIONS(1612), - [anon_sym_u64] = ACTIONS(1612), - [anon_sym_i64] = ACTIONS(1612), - [anon_sym_u128] = ACTIONS(1612), - [anon_sym_i128] = ACTIONS(1612), - [anon_sym_isize] = ACTIONS(1612), - [anon_sym_usize] = ACTIONS(1612), - [anon_sym_f32] = ACTIONS(1612), - [anon_sym_f64] = ACTIONS(1612), - [anon_sym_bool] = ACTIONS(1612), - [anon_sym_str] = ACTIONS(1612), - [anon_sym_char] = ACTIONS(1612), - [anon_sym_DASH] = ACTIONS(1614), - [anon_sym_AMP] = ACTIONS(1616), - [anon_sym_PIPE] = ACTIONS(1618), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1620), - [anon_sym_DOT_DOT] = ACTIONS(1622), - [anon_sym_COLON_COLON] = ACTIONS(1624), - [anon_sym_const] = ACTIONS(1628), - [anon_sym_default] = ACTIONS(1630), - [anon_sym_union] = ACTIONS(1630), - [anon_sym_ref] = ACTIONS(1632), - [sym_mutable_specifier] = ACTIONS(1634), - [sym_integer_literal] = ACTIONS(1636), - [aux_sym_string_literal_token1] = ACTIONS(1638), - [sym_char_literal] = ACTIONS(1636), - [anon_sym_true] = ACTIONS(1640), - [anon_sym_false] = ACTIONS(1640), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1642), - [sym_super] = ACTIONS(1642), - [sym_crate] = ACTIONS(1642), - [sym_metavariable] = ACTIONS(1644), - [sym__raw_string_literal_start] = ACTIONS(1646), - [sym_float_literal] = ACTIONS(1636), + [sym_identifier] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(2999), + [anon_sym_RPAREN] = ACTIONS(3089), + [anon_sym_LBRACK] = ACTIONS(3003), + [anon_sym_u8] = ACTIONS(3005), + [anon_sym_i8] = ACTIONS(3005), + [anon_sym_u16] = ACTIONS(3005), + [anon_sym_i16] = ACTIONS(3005), + [anon_sym_u32] = ACTIONS(3005), + [anon_sym_i32] = ACTIONS(3005), + [anon_sym_u64] = ACTIONS(3005), + [anon_sym_i64] = ACTIONS(3005), + [anon_sym_u128] = ACTIONS(3005), + [anon_sym_i128] = ACTIONS(3005), + [anon_sym_isize] = ACTIONS(3005), + [anon_sym_usize] = ACTIONS(3005), + [anon_sym_f32] = ACTIONS(3005), + [anon_sym_f64] = ACTIONS(3005), + [anon_sym_bool] = ACTIONS(3005), + [anon_sym_str] = ACTIONS(3005), + [anon_sym_char] = ACTIONS(3005), + [anon_sym_DASH] = ACTIONS(1369), + [anon_sym_AMP] = ACTIONS(3007), + [anon_sym_PIPE] = ACTIONS(1375), + [anon_sym_LT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1499), + [anon_sym_DOT_DOT] = ACTIONS(1501), + [anon_sym_COLON_COLON] = ACTIONS(3009), + [anon_sym_const] = ACTIONS(3011), + [anon_sym_default] = ACTIONS(3013), + [anon_sym_union] = ACTIONS(3013), + [anon_sym_ref] = ACTIONS(1405), + [sym_mutable_specifier] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1411), + [aux_sym_string_literal_token1] = ACTIONS(1413), + [sym_char_literal] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1415), + [anon_sym_false] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3015), + [sym_super] = ACTIONS(3015), + [sym_crate] = ACTIONS(3015), + [sym_metavariable] = ACTIONS(3017), + [sym__raw_string_literal_start] = ACTIONS(1423), + [sym_float_literal] = ACTIONS(1411), }, [803] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(3014), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_bracketed_type] = STATE(3574), + [sym_generic_type] = STATE(3491), + [sym_generic_type_with_turbofish] = STATE(3212), + [sym_macro_invocation] = STATE(2160), + [sym_scoped_identifier] = STATE(1997), + [sym_scoped_type_identifier] = STATE(2902), + [sym_const_block] = STATE(2160), + [sym__pattern] = STATE(2618), + [sym_tuple_pattern] = STATE(2160), + [sym_slice_pattern] = STATE(2160), + [sym_tuple_struct_pattern] = STATE(2160), + [sym_struct_pattern] = STATE(2160), + [sym_remaining_field_pattern] = STATE(2160), + [sym_mut_pattern] = STATE(2160), + [sym_range_pattern] = STATE(2160), + [sym_ref_pattern] = STATE(2160), + [sym_captured_pattern] = STATE(2160), + [sym_reference_pattern] = STATE(2160), + [sym_or_pattern] = STATE(2160), + [sym__literal_pattern] = STATE(2036), + [sym_negative_literal] = STATE(2048), + [sym_string_literal] = STATE(2048), + [sym_raw_string_literal] = STATE(2048), + [sym_boolean_literal] = STATE(2048), [sym_line_comment] = STATE(803), [sym_block_comment] = STATE(803), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym_identifier] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(2999), + [anon_sym_RPAREN] = ACTIONS(3091), + [anon_sym_LBRACK] = ACTIONS(3003), + [anon_sym_u8] = ACTIONS(3005), + [anon_sym_i8] = ACTIONS(3005), + [anon_sym_u16] = ACTIONS(3005), + [anon_sym_i16] = ACTIONS(3005), + [anon_sym_u32] = ACTIONS(3005), + [anon_sym_i32] = ACTIONS(3005), + [anon_sym_u64] = ACTIONS(3005), + [anon_sym_i64] = ACTIONS(3005), + [anon_sym_u128] = ACTIONS(3005), + [anon_sym_i128] = ACTIONS(3005), + [anon_sym_isize] = ACTIONS(3005), + [anon_sym_usize] = ACTIONS(3005), + [anon_sym_f32] = ACTIONS(3005), + [anon_sym_f64] = ACTIONS(3005), + [anon_sym_bool] = ACTIONS(3005), + [anon_sym_str] = ACTIONS(3005), + [anon_sym_char] = ACTIONS(3005), + [anon_sym_DASH] = ACTIONS(1369), + [anon_sym_AMP] = ACTIONS(3007), + [anon_sym_PIPE] = ACTIONS(1375), + [anon_sym_LT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1499), + [anon_sym_DOT_DOT] = ACTIONS(1501), + [anon_sym_COLON_COLON] = ACTIONS(3009), + [anon_sym_const] = ACTIONS(3011), + [anon_sym_default] = ACTIONS(3013), + [anon_sym_union] = ACTIONS(3013), + [anon_sym_ref] = ACTIONS(1405), + [sym_mutable_specifier] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1411), + [aux_sym_string_literal_token1] = ACTIONS(1413), + [sym_char_literal] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1415), + [anon_sym_false] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3015), + [sym_super] = ACTIONS(3015), + [sym_crate] = ACTIONS(3015), + [sym_metavariable] = ACTIONS(3017), + [sym__raw_string_literal_start] = ACTIONS(1423), + [sym_float_literal] = ACTIONS(1411), }, [804] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(3267), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_bracketed_type] = STATE(3574), + [sym_generic_type] = STATE(3491), + [sym_generic_type_with_turbofish] = STATE(3212), + [sym_macro_invocation] = STATE(2160), + [sym_scoped_identifier] = STATE(1997), + [sym_scoped_type_identifier] = STATE(2902), + [sym_const_block] = STATE(2160), + [sym__pattern] = STATE(2618), + [sym_tuple_pattern] = STATE(2160), + [sym_slice_pattern] = STATE(2160), + [sym_tuple_struct_pattern] = STATE(2160), + [sym_struct_pattern] = STATE(2160), + [sym_remaining_field_pattern] = STATE(2160), + [sym_mut_pattern] = STATE(2160), + [sym_range_pattern] = STATE(2160), + [sym_ref_pattern] = STATE(2160), + [sym_captured_pattern] = STATE(2160), + [sym_reference_pattern] = STATE(2160), + [sym_or_pattern] = STATE(2160), + [sym__literal_pattern] = STATE(2036), + [sym_negative_literal] = STATE(2048), + [sym_string_literal] = STATE(2048), + [sym_raw_string_literal] = STATE(2048), + [sym_boolean_literal] = STATE(2048), [sym_line_comment] = STATE(804), [sym_block_comment] = STATE(804), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym_identifier] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(3003), + [anon_sym_RBRACK] = ACTIONS(3093), + [anon_sym_u8] = ACTIONS(3005), + [anon_sym_i8] = ACTIONS(3005), + [anon_sym_u16] = ACTIONS(3005), + [anon_sym_i16] = ACTIONS(3005), + [anon_sym_u32] = ACTIONS(3005), + [anon_sym_i32] = ACTIONS(3005), + [anon_sym_u64] = ACTIONS(3005), + [anon_sym_i64] = ACTIONS(3005), + [anon_sym_u128] = ACTIONS(3005), + [anon_sym_i128] = ACTIONS(3005), + [anon_sym_isize] = ACTIONS(3005), + [anon_sym_usize] = ACTIONS(3005), + [anon_sym_f32] = ACTIONS(3005), + [anon_sym_f64] = ACTIONS(3005), + [anon_sym_bool] = ACTIONS(3005), + [anon_sym_str] = ACTIONS(3005), + [anon_sym_char] = ACTIONS(3005), + [anon_sym_DASH] = ACTIONS(1369), + [anon_sym_AMP] = ACTIONS(3007), + [anon_sym_PIPE] = ACTIONS(1375), + [anon_sym_LT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1499), + [anon_sym_DOT_DOT] = ACTIONS(1501), + [anon_sym_COLON_COLON] = ACTIONS(3009), + [anon_sym_const] = ACTIONS(3011), + [anon_sym_default] = ACTIONS(3013), + [anon_sym_union] = ACTIONS(3013), + [anon_sym_ref] = ACTIONS(1405), + [sym_mutable_specifier] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1411), + [aux_sym_string_literal_token1] = ACTIONS(1413), + [sym_char_literal] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1415), + [anon_sym_false] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3015), + [sym_super] = ACTIONS(3015), + [sym_crate] = ACTIONS(3015), + [sym_metavariable] = ACTIONS(3017), + [sym__raw_string_literal_start] = ACTIONS(1423), + [sym_float_literal] = ACTIONS(1411), }, [805] = { - [sym_bracketed_type] = STATE(3523), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3262), - [sym_macro_invocation] = STATE(2877), - [sym_scoped_identifier] = STATE(2130), - [sym_scoped_type_identifier] = STATE(2908), - [sym_const_block] = STATE(2877), - [sym__pattern] = STATE(2998), - [sym_tuple_pattern] = STATE(2877), - [sym_slice_pattern] = STATE(2877), - [sym_tuple_struct_pattern] = STATE(2877), - [sym_struct_pattern] = STATE(2877), - [sym_remaining_field_pattern] = STATE(2877), - [sym_mut_pattern] = STATE(2877), - [sym_range_pattern] = STATE(2877), - [sym_ref_pattern] = STATE(2877), - [sym_captured_pattern] = STATE(2877), - [sym_reference_pattern] = STATE(2877), - [sym_or_pattern] = STATE(2877), - [sym__literal_pattern] = STATE(2387), - [sym_negative_literal] = STATE(2299), - [sym_string_literal] = STATE(2299), - [sym_raw_string_literal] = STATE(2299), - [sym_boolean_literal] = STATE(2299), + [sym_bracketed_type] = STATE(3574), + [sym_generic_type] = STATE(3491), + [sym_generic_type_with_turbofish] = STATE(3212), + [sym_macro_invocation] = STATE(2160), + [sym_scoped_identifier] = STATE(1997), + [sym_scoped_type_identifier] = STATE(2902), + [sym_const_block] = STATE(2160), + [sym__pattern] = STATE(2618), + [sym_tuple_pattern] = STATE(2160), + [sym_slice_pattern] = STATE(2160), + [sym_tuple_struct_pattern] = STATE(2160), + [sym_struct_pattern] = STATE(2160), + [sym_remaining_field_pattern] = STATE(2160), + [sym_mut_pattern] = STATE(2160), + [sym_range_pattern] = STATE(2160), + [sym_ref_pattern] = STATE(2160), + [sym_captured_pattern] = STATE(2160), + [sym_reference_pattern] = STATE(2160), + [sym_or_pattern] = STATE(2160), + [sym__literal_pattern] = STATE(2036), + [sym_negative_literal] = STATE(2048), + [sym_string_literal] = STATE(2048), + [sym_raw_string_literal] = STATE(2048), + [sym_boolean_literal] = STATE(2048), [sym_line_comment] = STATE(805), [sym_block_comment] = STATE(805), - [sym_identifier] = ACTIONS(1604), - [anon_sym_LPAREN] = ACTIONS(1606), - [anon_sym_LBRACK] = ACTIONS(1608), - [anon_sym_u8] = ACTIONS(1612), - [anon_sym_i8] = ACTIONS(1612), - [anon_sym_u16] = ACTIONS(1612), - [anon_sym_i16] = ACTIONS(1612), - [anon_sym_u32] = ACTIONS(1612), - [anon_sym_i32] = ACTIONS(1612), - [anon_sym_u64] = ACTIONS(1612), - [anon_sym_i64] = ACTIONS(1612), - [anon_sym_u128] = ACTIONS(1612), - [anon_sym_i128] = ACTIONS(1612), - [anon_sym_isize] = ACTIONS(1612), - [anon_sym_usize] = ACTIONS(1612), - [anon_sym_f32] = ACTIONS(1612), - [anon_sym_f64] = ACTIONS(1612), - [anon_sym_bool] = ACTIONS(1612), - [anon_sym_str] = ACTIONS(1612), - [anon_sym_char] = ACTIONS(1612), - [anon_sym_DASH] = ACTIONS(1614), - [anon_sym_AMP] = ACTIONS(1616), - [anon_sym_PIPE] = ACTIONS(1618), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1620), - [anon_sym_DOT_DOT] = ACTIONS(1622), - [anon_sym_COLON_COLON] = ACTIONS(1624), - [anon_sym_const] = ACTIONS(1628), - [anon_sym_default] = ACTIONS(1630), - [anon_sym_union] = ACTIONS(1630), - [anon_sym_ref] = ACTIONS(1632), - [sym_mutable_specifier] = ACTIONS(1634), - [sym_integer_literal] = ACTIONS(1636), - [aux_sym_string_literal_token1] = ACTIONS(1638), - [sym_char_literal] = ACTIONS(1636), - [anon_sym_true] = ACTIONS(1640), - [anon_sym_false] = ACTIONS(1640), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1642), - [sym_super] = ACTIONS(1642), - [sym_crate] = ACTIONS(1642), - [sym_metavariable] = ACTIONS(1644), - [sym__raw_string_literal_start] = ACTIONS(1646), - [sym_float_literal] = ACTIONS(1636), + [sym_identifier] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(3003), + [anon_sym_RBRACK] = ACTIONS(3095), + [anon_sym_u8] = ACTIONS(3005), + [anon_sym_i8] = ACTIONS(3005), + [anon_sym_u16] = ACTIONS(3005), + [anon_sym_i16] = ACTIONS(3005), + [anon_sym_u32] = ACTIONS(3005), + [anon_sym_i32] = ACTIONS(3005), + [anon_sym_u64] = ACTIONS(3005), + [anon_sym_i64] = ACTIONS(3005), + [anon_sym_u128] = ACTIONS(3005), + [anon_sym_i128] = ACTIONS(3005), + [anon_sym_isize] = ACTIONS(3005), + [anon_sym_usize] = ACTIONS(3005), + [anon_sym_f32] = ACTIONS(3005), + [anon_sym_f64] = ACTIONS(3005), + [anon_sym_bool] = ACTIONS(3005), + [anon_sym_str] = ACTIONS(3005), + [anon_sym_char] = ACTIONS(3005), + [anon_sym_DASH] = ACTIONS(1369), + [anon_sym_AMP] = ACTIONS(3007), + [anon_sym_PIPE] = ACTIONS(1375), + [anon_sym_LT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1499), + [anon_sym_DOT_DOT] = ACTIONS(1501), + [anon_sym_COLON_COLON] = ACTIONS(3009), + [anon_sym_const] = ACTIONS(3011), + [anon_sym_default] = ACTIONS(3013), + [anon_sym_union] = ACTIONS(3013), + [anon_sym_ref] = ACTIONS(1405), + [sym_mutable_specifier] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1411), + [aux_sym_string_literal_token1] = ACTIONS(1413), + [sym_char_literal] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1415), + [anon_sym_false] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3015), + [sym_super] = ACTIONS(3015), + [sym_crate] = ACTIONS(3015), + [sym_metavariable] = ACTIONS(3017), + [sym__raw_string_literal_start] = ACTIONS(1423), + [sym_float_literal] = ACTIONS(1411), }, [806] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2965), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_bracketed_type] = STATE(3574), + [sym_generic_type] = STATE(3491), + [sym_generic_type_with_turbofish] = STATE(3212), + [sym_macro_invocation] = STATE(2160), + [sym_scoped_identifier] = STATE(1997), + [sym_scoped_type_identifier] = STATE(2902), + [sym_const_block] = STATE(2160), + [sym__pattern] = STATE(2634), + [sym_tuple_pattern] = STATE(2160), + [sym_slice_pattern] = STATE(2160), + [sym_tuple_struct_pattern] = STATE(2160), + [sym_struct_pattern] = STATE(2160), + [sym_remaining_field_pattern] = STATE(2160), + [sym_mut_pattern] = STATE(2160), + [sym_range_pattern] = STATE(2160), + [sym_ref_pattern] = STATE(2160), + [sym_captured_pattern] = STATE(2160), + [sym_reference_pattern] = STATE(2160), + [sym_or_pattern] = STATE(2160), + [sym__literal_pattern] = STATE(2036), + [sym_negative_literal] = STATE(2048), + [sym_string_literal] = STATE(2048), + [sym_raw_string_literal] = STATE(2048), + [sym_boolean_literal] = STATE(2048), [sym_line_comment] = STATE(806), [sym_block_comment] = STATE(806), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym_identifier] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(3003), + [anon_sym_u8] = ACTIONS(3005), + [anon_sym_i8] = ACTIONS(3005), + [anon_sym_u16] = ACTIONS(3005), + [anon_sym_i16] = ACTIONS(3005), + [anon_sym_u32] = ACTIONS(3005), + [anon_sym_i32] = ACTIONS(3005), + [anon_sym_u64] = ACTIONS(3005), + [anon_sym_i64] = ACTIONS(3005), + [anon_sym_u128] = ACTIONS(3005), + [anon_sym_i128] = ACTIONS(3005), + [anon_sym_isize] = ACTIONS(3005), + [anon_sym_usize] = ACTIONS(3005), + [anon_sym_f32] = ACTIONS(3005), + [anon_sym_f64] = ACTIONS(3005), + [anon_sym_bool] = ACTIONS(3005), + [anon_sym_str] = ACTIONS(3005), + [anon_sym_char] = ACTIONS(3005), + [anon_sym_DASH] = ACTIONS(1369), + [anon_sym_AMP] = ACTIONS(3007), + [anon_sym_PIPE] = ACTIONS(1375), + [anon_sym_LT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1499), + [anon_sym_DOT_DOT] = ACTIONS(1379), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3097), + [anon_sym_COLON_COLON] = ACTIONS(3009), + [anon_sym_const] = ACTIONS(3011), + [anon_sym_default] = ACTIONS(3013), + [anon_sym_union] = ACTIONS(3013), + [anon_sym_ref] = ACTIONS(1405), + [sym_mutable_specifier] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1411), + [aux_sym_string_literal_token1] = ACTIONS(1413), + [sym_char_literal] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1415), + [anon_sym_false] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3099), + [sym_super] = ACTIONS(3015), + [sym_crate] = ACTIONS(3015), + [sym_metavariable] = ACTIONS(3017), + [sym__raw_string_literal_start] = ACTIONS(1423), + [sym_float_literal] = ACTIONS(1411), }, [807] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2434), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_bracketed_type] = STATE(3574), + [sym_generic_type] = STATE(3491), + [sym_generic_type_with_turbofish] = STATE(3212), + [sym_macro_invocation] = STATE(2160), + [sym_scoped_identifier] = STATE(1997), + [sym_scoped_type_identifier] = STATE(2902), + [sym_const_block] = STATE(2160), + [sym__pattern] = STATE(2618), + [sym_tuple_pattern] = STATE(2160), + [sym_slice_pattern] = STATE(2160), + [sym_tuple_struct_pattern] = STATE(2160), + [sym_struct_pattern] = STATE(2160), + [sym_remaining_field_pattern] = STATE(2160), + [sym_mut_pattern] = STATE(2160), + [sym_range_pattern] = STATE(2160), + [sym_ref_pattern] = STATE(2160), + [sym_captured_pattern] = STATE(2160), + [sym_reference_pattern] = STATE(2160), + [sym_or_pattern] = STATE(2160), + [sym__literal_pattern] = STATE(2036), + [sym_negative_literal] = STATE(2048), + [sym_string_literal] = STATE(2048), + [sym_raw_string_literal] = STATE(2048), + [sym_boolean_literal] = STATE(2048), [sym_line_comment] = STATE(807), [sym_block_comment] = STATE(807), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(3041), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym_identifier] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(3003), + [anon_sym_RBRACK] = ACTIONS(3101), + [anon_sym_u8] = ACTIONS(3005), + [anon_sym_i8] = ACTIONS(3005), + [anon_sym_u16] = ACTIONS(3005), + [anon_sym_i16] = ACTIONS(3005), + [anon_sym_u32] = ACTIONS(3005), + [anon_sym_i32] = ACTIONS(3005), + [anon_sym_u64] = ACTIONS(3005), + [anon_sym_i64] = ACTIONS(3005), + [anon_sym_u128] = ACTIONS(3005), + [anon_sym_i128] = ACTIONS(3005), + [anon_sym_isize] = ACTIONS(3005), + [anon_sym_usize] = ACTIONS(3005), + [anon_sym_f32] = ACTIONS(3005), + [anon_sym_f64] = ACTIONS(3005), + [anon_sym_bool] = ACTIONS(3005), + [anon_sym_str] = ACTIONS(3005), + [anon_sym_char] = ACTIONS(3005), + [anon_sym_DASH] = ACTIONS(1369), + [anon_sym_AMP] = ACTIONS(3007), + [anon_sym_PIPE] = ACTIONS(1375), + [anon_sym_LT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1499), + [anon_sym_DOT_DOT] = ACTIONS(1501), + [anon_sym_COLON_COLON] = ACTIONS(3009), + [anon_sym_const] = ACTIONS(3011), + [anon_sym_default] = ACTIONS(3013), + [anon_sym_union] = ACTIONS(3013), + [anon_sym_ref] = ACTIONS(1405), + [sym_mutable_specifier] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1411), + [aux_sym_string_literal_token1] = ACTIONS(1413), + [sym_char_literal] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1415), + [anon_sym_false] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3015), + [sym_super] = ACTIONS(3015), + [sym_crate] = ACTIONS(3015), + [sym_metavariable] = ACTIONS(3017), + [sym__raw_string_literal_start] = ACTIONS(1423), + [sym_float_literal] = ACTIONS(1411), }, [808] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2807), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_parameter] = STATE(3225), + [sym_bracketed_type] = STATE(3574), + [sym_generic_type] = STATE(3491), + [sym_generic_type_with_turbofish] = STATE(3212), + [sym_macro_invocation] = STATE(2160), + [sym_scoped_identifier] = STATE(1997), + [sym_scoped_type_identifier] = STATE(2902), + [sym_const_block] = STATE(2160), + [sym__pattern] = STATE(2975), + [sym_tuple_pattern] = STATE(2160), + [sym_slice_pattern] = STATE(2160), + [sym_tuple_struct_pattern] = STATE(2160), + [sym_struct_pattern] = STATE(2160), + [sym_remaining_field_pattern] = STATE(2160), + [sym_mut_pattern] = STATE(2160), + [sym_range_pattern] = STATE(2160), + [sym_ref_pattern] = STATE(2160), + [sym_captured_pattern] = STATE(2160), + [sym_reference_pattern] = STATE(2160), + [sym_or_pattern] = STATE(2160), + [sym__literal_pattern] = STATE(2036), + [sym_negative_literal] = STATE(2048), + [sym_string_literal] = STATE(2048), + [sym_raw_string_literal] = STATE(2048), + [sym_boolean_literal] = STATE(2048), [sym_line_comment] = STATE(808), [sym_block_comment] = STATE(808), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym_identifier] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(3003), + [anon_sym_u8] = ACTIONS(3005), + [anon_sym_i8] = ACTIONS(3005), + [anon_sym_u16] = ACTIONS(3005), + [anon_sym_i16] = ACTIONS(3005), + [anon_sym_u32] = ACTIONS(3005), + [anon_sym_i32] = ACTIONS(3005), + [anon_sym_u64] = ACTIONS(3005), + [anon_sym_i64] = ACTIONS(3005), + [anon_sym_u128] = ACTIONS(3005), + [anon_sym_i128] = ACTIONS(3005), + [anon_sym_isize] = ACTIONS(3005), + [anon_sym_usize] = ACTIONS(3005), + [anon_sym_f32] = ACTIONS(3005), + [anon_sym_f64] = ACTIONS(3005), + [anon_sym_bool] = ACTIONS(3005), + [anon_sym_str] = ACTIONS(3005), + [anon_sym_char] = ACTIONS(3005), + [anon_sym_DASH] = ACTIONS(1369), + [anon_sym_AMP] = ACTIONS(3007), + [anon_sym_PIPE] = ACTIONS(1375), + [anon_sym_LT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1499), + [anon_sym_DOT_DOT] = ACTIONS(1501), + [anon_sym_COLON_COLON] = ACTIONS(3009), + [anon_sym_const] = ACTIONS(3011), + [anon_sym_default] = ACTIONS(3013), + [anon_sym_union] = ACTIONS(3013), + [anon_sym_ref] = ACTIONS(1405), + [sym_mutable_specifier] = ACTIONS(3103), + [sym_integer_literal] = ACTIONS(1411), + [aux_sym_string_literal_token1] = ACTIONS(1413), + [sym_char_literal] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1415), + [anon_sym_false] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3105), + [sym_super] = ACTIONS(3015), + [sym_crate] = ACTIONS(3015), + [sym_metavariable] = ACTIONS(3017), + [sym__raw_string_literal_start] = ACTIONS(1423), + [sym_float_literal] = ACTIONS(1411), }, [809] = { - [sym_bracketed_type] = STATE(3523), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3262), - [sym_macro_invocation] = STATE(2877), - [sym_scoped_identifier] = STATE(2130), - [sym_scoped_type_identifier] = STATE(2908), - [sym_const_block] = STATE(2877), - [sym__pattern] = STATE(2761), - [sym_tuple_pattern] = STATE(2877), - [sym_slice_pattern] = STATE(2877), - [sym_tuple_struct_pattern] = STATE(2877), - [sym_struct_pattern] = STATE(2877), - [sym_remaining_field_pattern] = STATE(2877), - [sym_mut_pattern] = STATE(2877), - [sym_range_pattern] = STATE(2877), - [sym_ref_pattern] = STATE(2877), - [sym_captured_pattern] = STATE(2877), - [sym_reference_pattern] = STATE(2877), - [sym_or_pattern] = STATE(2877), - [sym__literal_pattern] = STATE(2387), - [sym_negative_literal] = STATE(2299), - [sym_string_literal] = STATE(2299), - [sym_raw_string_literal] = STATE(2299), - [sym_boolean_literal] = STATE(2299), + [sym_parameter] = STATE(2905), + [sym_bracketed_type] = STATE(3574), + [sym_generic_type] = STATE(3491), + [sym_generic_type_with_turbofish] = STATE(3212), + [sym_macro_invocation] = STATE(2160), + [sym_scoped_identifier] = STATE(1997), + [sym_scoped_type_identifier] = STATE(2902), + [sym_const_block] = STATE(2160), + [sym__pattern] = STATE(2665), + [sym_tuple_pattern] = STATE(2160), + [sym_slice_pattern] = STATE(2160), + [sym_tuple_struct_pattern] = STATE(2160), + [sym_struct_pattern] = STATE(2160), + [sym_remaining_field_pattern] = STATE(2160), + [sym_mut_pattern] = STATE(2160), + [sym_range_pattern] = STATE(2160), + [sym_ref_pattern] = STATE(2160), + [sym_captured_pattern] = STATE(2160), + [sym_reference_pattern] = STATE(2160), + [sym_or_pattern] = STATE(2160), + [sym__literal_pattern] = STATE(2036), + [sym_negative_literal] = STATE(2048), + [sym_string_literal] = STATE(2048), + [sym_raw_string_literal] = STATE(2048), + [sym_boolean_literal] = STATE(2048), [sym_line_comment] = STATE(809), [sym_block_comment] = STATE(809), - [sym_identifier] = ACTIONS(1604), - [anon_sym_LPAREN] = ACTIONS(1606), - [anon_sym_LBRACK] = ACTIONS(1608), - [anon_sym_u8] = ACTIONS(1612), - [anon_sym_i8] = ACTIONS(1612), - [anon_sym_u16] = ACTIONS(1612), - [anon_sym_i16] = ACTIONS(1612), - [anon_sym_u32] = ACTIONS(1612), - [anon_sym_i32] = ACTIONS(1612), - [anon_sym_u64] = ACTIONS(1612), - [anon_sym_i64] = ACTIONS(1612), - [anon_sym_u128] = ACTIONS(1612), - [anon_sym_i128] = ACTIONS(1612), - [anon_sym_isize] = ACTIONS(1612), - [anon_sym_usize] = ACTIONS(1612), - [anon_sym_f32] = ACTIONS(1612), - [anon_sym_f64] = ACTIONS(1612), - [anon_sym_bool] = ACTIONS(1612), - [anon_sym_str] = ACTIONS(1612), - [anon_sym_char] = ACTIONS(1612), - [anon_sym_DASH] = ACTIONS(1614), - [anon_sym_AMP] = ACTIONS(1616), - [anon_sym_PIPE] = ACTIONS(1618), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1620), - [anon_sym_DOT_DOT] = ACTIONS(1622), - [anon_sym_COLON_COLON] = ACTIONS(1624), - [anon_sym_const] = ACTIONS(1628), - [anon_sym_default] = ACTIONS(1630), - [anon_sym_union] = ACTIONS(1630), - [anon_sym_ref] = ACTIONS(1632), - [sym_mutable_specifier] = ACTIONS(1634), - [sym_integer_literal] = ACTIONS(1636), - [aux_sym_string_literal_token1] = ACTIONS(1638), - [sym_char_literal] = ACTIONS(1636), - [anon_sym_true] = ACTIONS(1640), - [anon_sym_false] = ACTIONS(1640), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1642), - [sym_super] = ACTIONS(1642), - [sym_crate] = ACTIONS(1642), - [sym_metavariable] = ACTIONS(1644), - [sym__raw_string_literal_start] = ACTIONS(1646), - [sym_float_literal] = ACTIONS(1636), + [sym_identifier] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(3003), + [anon_sym_u8] = ACTIONS(3005), + [anon_sym_i8] = ACTIONS(3005), + [anon_sym_u16] = ACTIONS(3005), + [anon_sym_i16] = ACTIONS(3005), + [anon_sym_u32] = ACTIONS(3005), + [anon_sym_i32] = ACTIONS(3005), + [anon_sym_u64] = ACTIONS(3005), + [anon_sym_i64] = ACTIONS(3005), + [anon_sym_u128] = ACTIONS(3005), + [anon_sym_i128] = ACTIONS(3005), + [anon_sym_isize] = ACTIONS(3005), + [anon_sym_usize] = ACTIONS(3005), + [anon_sym_f32] = ACTIONS(3005), + [anon_sym_f64] = ACTIONS(3005), + [anon_sym_bool] = ACTIONS(3005), + [anon_sym_str] = ACTIONS(3005), + [anon_sym_char] = ACTIONS(3005), + [anon_sym_DASH] = ACTIONS(1369), + [anon_sym_AMP] = ACTIONS(3007), + [anon_sym_PIPE] = ACTIONS(3107), + [anon_sym_LT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1499), + [anon_sym_DOT_DOT] = ACTIONS(1501), + [anon_sym_COLON_COLON] = ACTIONS(3009), + [anon_sym_const] = ACTIONS(3011), + [anon_sym_default] = ACTIONS(3013), + [anon_sym_union] = ACTIONS(3013), + [anon_sym_ref] = ACTIONS(1405), + [sym_mutable_specifier] = ACTIONS(3103), + [sym_integer_literal] = ACTIONS(1411), + [aux_sym_string_literal_token1] = ACTIONS(1413), + [sym_char_literal] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1415), + [anon_sym_false] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3105), + [sym_super] = ACTIONS(3015), + [sym_crate] = ACTIONS(3015), + [sym_metavariable] = ACTIONS(3017), + [sym__raw_string_literal_start] = ACTIONS(1423), + [sym_float_literal] = ACTIONS(1411), }, [810] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2112), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_parameter] = STATE(2905), + [sym_bracketed_type] = STATE(3574), + [sym_generic_type] = STATE(3491), + [sym_generic_type_with_turbofish] = STATE(3212), + [sym_macro_invocation] = STATE(2160), + [sym_scoped_identifier] = STATE(1997), + [sym_scoped_type_identifier] = STATE(2902), + [sym_const_block] = STATE(2160), + [sym__pattern] = STATE(2467), + [sym_tuple_pattern] = STATE(2160), + [sym_slice_pattern] = STATE(2160), + [sym_tuple_struct_pattern] = STATE(2160), + [sym_struct_pattern] = STATE(2160), + [sym_remaining_field_pattern] = STATE(2160), + [sym_mut_pattern] = STATE(2160), + [sym_range_pattern] = STATE(2160), + [sym_ref_pattern] = STATE(2160), + [sym_captured_pattern] = STATE(2160), + [sym_reference_pattern] = STATE(2160), + [sym_or_pattern] = STATE(2160), + [sym__literal_pattern] = STATE(2036), + [sym_negative_literal] = STATE(2048), + [sym_string_literal] = STATE(2048), + [sym_raw_string_literal] = STATE(2048), + [sym_boolean_literal] = STATE(2048), [sym_line_comment] = STATE(810), [sym_block_comment] = STATE(810), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym_identifier] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(3003), + [anon_sym_u8] = ACTIONS(3005), + [anon_sym_i8] = ACTIONS(3005), + [anon_sym_u16] = ACTIONS(3005), + [anon_sym_i16] = ACTIONS(3005), + [anon_sym_u32] = ACTIONS(3005), + [anon_sym_i32] = ACTIONS(3005), + [anon_sym_u64] = ACTIONS(3005), + [anon_sym_i64] = ACTIONS(3005), + [anon_sym_u128] = ACTIONS(3005), + [anon_sym_i128] = ACTIONS(3005), + [anon_sym_isize] = ACTIONS(3005), + [anon_sym_usize] = ACTIONS(3005), + [anon_sym_f32] = ACTIONS(3005), + [anon_sym_f64] = ACTIONS(3005), + [anon_sym_bool] = ACTIONS(3005), + [anon_sym_str] = ACTIONS(3005), + [anon_sym_char] = ACTIONS(3005), + [anon_sym_DASH] = ACTIONS(1369), + [anon_sym_AMP] = ACTIONS(3007), + [anon_sym_PIPE] = ACTIONS(3107), + [anon_sym_LT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1499), + [anon_sym_DOT_DOT] = ACTIONS(1501), + [anon_sym_COLON_COLON] = ACTIONS(3009), + [anon_sym_const] = ACTIONS(3011), + [anon_sym_default] = ACTIONS(3013), + [anon_sym_union] = ACTIONS(3013), + [anon_sym_ref] = ACTIONS(1405), + [sym_mutable_specifier] = ACTIONS(3103), + [sym_integer_literal] = ACTIONS(1411), + [aux_sym_string_literal_token1] = ACTIONS(1413), + [sym_char_literal] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1415), + [anon_sym_false] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3105), + [sym_super] = ACTIONS(3015), + [sym_crate] = ACTIONS(3015), + [sym_metavariable] = ACTIONS(3017), + [sym__raw_string_literal_start] = ACTIONS(1423), + [sym_float_literal] = ACTIONS(1411), }, [811] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2516), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_bracketed_type] = STATE(3574), + [sym_generic_type] = STATE(3491), + [sym_generic_type_with_turbofish] = STATE(3212), + [sym_macro_invocation] = STATE(2160), + [sym_scoped_identifier] = STATE(1997), + [sym_scoped_type_identifier] = STATE(2902), + [sym_const_block] = STATE(2160), + [sym__pattern] = STATE(2618), + [sym_tuple_pattern] = STATE(2160), + [sym_slice_pattern] = STATE(2160), + [sym_tuple_struct_pattern] = STATE(2160), + [sym_struct_pattern] = STATE(2160), + [sym_remaining_field_pattern] = STATE(2160), + [sym_mut_pattern] = STATE(2160), + [sym_range_pattern] = STATE(2160), + [sym_ref_pattern] = STATE(2160), + [sym_captured_pattern] = STATE(2160), + [sym_reference_pattern] = STATE(2160), + [sym_or_pattern] = STATE(2160), + [sym__literal_pattern] = STATE(2036), + [sym_negative_literal] = STATE(2048), + [sym_string_literal] = STATE(2048), + [sym_raw_string_literal] = STATE(2048), + [sym_boolean_literal] = STATE(2048), [sym_line_comment] = STATE(811), [sym_block_comment] = STATE(811), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3043), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym_identifier] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(2999), + [anon_sym_RPAREN] = ACTIONS(3109), + [anon_sym_LBRACK] = ACTIONS(3003), + [anon_sym_u8] = ACTIONS(3005), + [anon_sym_i8] = ACTIONS(3005), + [anon_sym_u16] = ACTIONS(3005), + [anon_sym_i16] = ACTIONS(3005), + [anon_sym_u32] = ACTIONS(3005), + [anon_sym_i32] = ACTIONS(3005), + [anon_sym_u64] = ACTIONS(3005), + [anon_sym_i64] = ACTIONS(3005), + [anon_sym_u128] = ACTIONS(3005), + [anon_sym_i128] = ACTIONS(3005), + [anon_sym_isize] = ACTIONS(3005), + [anon_sym_usize] = ACTIONS(3005), + [anon_sym_f32] = ACTIONS(3005), + [anon_sym_f64] = ACTIONS(3005), + [anon_sym_bool] = ACTIONS(3005), + [anon_sym_str] = ACTIONS(3005), + [anon_sym_char] = ACTIONS(3005), + [anon_sym_DASH] = ACTIONS(1369), + [anon_sym_AMP] = ACTIONS(3007), + [anon_sym_PIPE] = ACTIONS(1375), + [anon_sym_LT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1499), + [anon_sym_DOT_DOT] = ACTIONS(1501), + [anon_sym_COLON_COLON] = ACTIONS(3009), + [anon_sym_const] = ACTIONS(3011), + [anon_sym_default] = ACTIONS(3013), + [anon_sym_union] = ACTIONS(3013), + [anon_sym_ref] = ACTIONS(1405), + [sym_mutable_specifier] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1411), + [aux_sym_string_literal_token1] = ACTIONS(1413), + [sym_char_literal] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1415), + [anon_sym_false] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3015), + [sym_super] = ACTIONS(3015), + [sym_crate] = ACTIONS(3015), + [sym_metavariable] = ACTIONS(3017), + [sym__raw_string_literal_start] = ACTIONS(1423), + [sym_float_literal] = ACTIONS(1411), }, [812] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2101), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_bracketed_type] = STATE(3574), + [sym_generic_type] = STATE(3491), + [sym_generic_type_with_turbofish] = STATE(3212), + [sym_macro_invocation] = STATE(2160), + [sym_scoped_identifier] = STATE(1997), + [sym_scoped_type_identifier] = STATE(2902), + [sym_const_block] = STATE(2160), + [sym__pattern] = STATE(2618), + [sym_tuple_pattern] = STATE(2160), + [sym_slice_pattern] = STATE(2160), + [sym_tuple_struct_pattern] = STATE(2160), + [sym_struct_pattern] = STATE(2160), + [sym_remaining_field_pattern] = STATE(2160), + [sym_mut_pattern] = STATE(2160), + [sym_range_pattern] = STATE(2160), + [sym_ref_pattern] = STATE(2160), + [sym_captured_pattern] = STATE(2160), + [sym_reference_pattern] = STATE(2160), + [sym_or_pattern] = STATE(2160), + [sym__literal_pattern] = STATE(2036), + [sym_negative_literal] = STATE(2048), + [sym_string_literal] = STATE(2048), + [sym_raw_string_literal] = STATE(2048), + [sym_boolean_literal] = STATE(2048), [sym_line_comment] = STATE(812), [sym_block_comment] = STATE(812), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym_identifier] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(2999), + [anon_sym_RPAREN] = ACTIONS(3111), + [anon_sym_LBRACK] = ACTIONS(3003), + [anon_sym_u8] = ACTIONS(3005), + [anon_sym_i8] = ACTIONS(3005), + [anon_sym_u16] = ACTIONS(3005), + [anon_sym_i16] = ACTIONS(3005), + [anon_sym_u32] = ACTIONS(3005), + [anon_sym_i32] = ACTIONS(3005), + [anon_sym_u64] = ACTIONS(3005), + [anon_sym_i64] = ACTIONS(3005), + [anon_sym_u128] = ACTIONS(3005), + [anon_sym_i128] = ACTIONS(3005), + [anon_sym_isize] = ACTIONS(3005), + [anon_sym_usize] = ACTIONS(3005), + [anon_sym_f32] = ACTIONS(3005), + [anon_sym_f64] = ACTIONS(3005), + [anon_sym_bool] = ACTIONS(3005), + [anon_sym_str] = ACTIONS(3005), + [anon_sym_char] = ACTIONS(3005), + [anon_sym_DASH] = ACTIONS(1369), + [anon_sym_AMP] = ACTIONS(3007), + [anon_sym_PIPE] = ACTIONS(1375), + [anon_sym_LT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1499), + [anon_sym_DOT_DOT] = ACTIONS(1501), + [anon_sym_COLON_COLON] = ACTIONS(3009), + [anon_sym_const] = ACTIONS(3011), + [anon_sym_default] = ACTIONS(3013), + [anon_sym_union] = ACTIONS(3013), + [anon_sym_ref] = ACTIONS(1405), + [sym_mutable_specifier] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1411), + [aux_sym_string_literal_token1] = ACTIONS(1413), + [sym_char_literal] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1415), + [anon_sym_false] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3015), + [sym_super] = ACTIONS(3015), + [sym_crate] = ACTIONS(3015), + [sym_metavariable] = ACTIONS(3017), + [sym__raw_string_literal_start] = ACTIONS(1423), + [sym_float_literal] = ACTIONS(1411), }, [813] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2081), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_bracketed_type] = STATE(3574), + [sym_generic_type] = STATE(3491), + [sym_generic_type_with_turbofish] = STATE(3212), + [sym_macro_invocation] = STATE(2160), + [sym_scoped_identifier] = STATE(1997), + [sym_scoped_type_identifier] = STATE(2902), + [sym_const_block] = STATE(2160), + [sym__pattern] = STATE(2618), + [sym_tuple_pattern] = STATE(2160), + [sym_slice_pattern] = STATE(2160), + [sym_tuple_struct_pattern] = STATE(2160), + [sym_struct_pattern] = STATE(2160), + [sym_remaining_field_pattern] = STATE(2160), + [sym_mut_pattern] = STATE(2160), + [sym_range_pattern] = STATE(2160), + [sym_ref_pattern] = STATE(2160), + [sym_captured_pattern] = STATE(2160), + [sym_reference_pattern] = STATE(2160), + [sym_or_pattern] = STATE(2160), + [sym__literal_pattern] = STATE(2036), + [sym_negative_literal] = STATE(2048), + [sym_string_literal] = STATE(2048), + [sym_raw_string_literal] = STATE(2048), + [sym_boolean_literal] = STATE(2048), [sym_line_comment] = STATE(813), [sym_block_comment] = STATE(813), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym_identifier] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(2999), + [anon_sym_RPAREN] = ACTIONS(3113), + [anon_sym_LBRACK] = ACTIONS(3003), + [anon_sym_u8] = ACTIONS(3005), + [anon_sym_i8] = ACTIONS(3005), + [anon_sym_u16] = ACTIONS(3005), + [anon_sym_i16] = ACTIONS(3005), + [anon_sym_u32] = ACTIONS(3005), + [anon_sym_i32] = ACTIONS(3005), + [anon_sym_u64] = ACTIONS(3005), + [anon_sym_i64] = ACTIONS(3005), + [anon_sym_u128] = ACTIONS(3005), + [anon_sym_i128] = ACTIONS(3005), + [anon_sym_isize] = ACTIONS(3005), + [anon_sym_usize] = ACTIONS(3005), + [anon_sym_f32] = ACTIONS(3005), + [anon_sym_f64] = ACTIONS(3005), + [anon_sym_bool] = ACTIONS(3005), + [anon_sym_str] = ACTIONS(3005), + [anon_sym_char] = ACTIONS(3005), + [anon_sym_DASH] = ACTIONS(1369), + [anon_sym_AMP] = ACTIONS(3007), + [anon_sym_PIPE] = ACTIONS(1375), + [anon_sym_LT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1499), + [anon_sym_DOT_DOT] = ACTIONS(1501), + [anon_sym_COLON_COLON] = ACTIONS(3009), + [anon_sym_const] = ACTIONS(3011), + [anon_sym_default] = ACTIONS(3013), + [anon_sym_union] = ACTIONS(3013), + [anon_sym_ref] = ACTIONS(1405), + [sym_mutable_specifier] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1411), + [aux_sym_string_literal_token1] = ACTIONS(1413), + [sym_char_literal] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1415), + [anon_sym_false] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3015), + [sym_super] = ACTIONS(3015), + [sym_crate] = ACTIONS(3015), + [sym_metavariable] = ACTIONS(3017), + [sym__raw_string_literal_start] = ACTIONS(1423), + [sym_float_literal] = ACTIONS(1411), }, [814] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2093), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_bracketed_type] = STATE(3574), + [sym_generic_type] = STATE(3491), + [sym_generic_type_with_turbofish] = STATE(3212), + [sym_macro_invocation] = STATE(2160), + [sym_scoped_identifier] = STATE(1997), + [sym_scoped_type_identifier] = STATE(2902), + [sym_const_block] = STATE(2160), + [sym__pattern] = STATE(2618), + [sym_tuple_pattern] = STATE(2160), + [sym_slice_pattern] = STATE(2160), + [sym_tuple_struct_pattern] = STATE(2160), + [sym_struct_pattern] = STATE(2160), + [sym_remaining_field_pattern] = STATE(2160), + [sym_mut_pattern] = STATE(2160), + [sym_range_pattern] = STATE(2160), + [sym_ref_pattern] = STATE(2160), + [sym_captured_pattern] = STATE(2160), + [sym_reference_pattern] = STATE(2160), + [sym_or_pattern] = STATE(2160), + [sym__literal_pattern] = STATE(2036), + [sym_negative_literal] = STATE(2048), + [sym_string_literal] = STATE(2048), + [sym_raw_string_literal] = STATE(2048), + [sym_boolean_literal] = STATE(2048), [sym_line_comment] = STATE(814), [sym_block_comment] = STATE(814), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(3045), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym_identifier] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(2999), + [anon_sym_RPAREN] = ACTIONS(3115), + [anon_sym_LBRACK] = ACTIONS(3003), + [anon_sym_u8] = ACTIONS(3005), + [anon_sym_i8] = ACTIONS(3005), + [anon_sym_u16] = ACTIONS(3005), + [anon_sym_i16] = ACTIONS(3005), + [anon_sym_u32] = ACTIONS(3005), + [anon_sym_i32] = ACTIONS(3005), + [anon_sym_u64] = ACTIONS(3005), + [anon_sym_i64] = ACTIONS(3005), + [anon_sym_u128] = ACTIONS(3005), + [anon_sym_i128] = ACTIONS(3005), + [anon_sym_isize] = ACTIONS(3005), + [anon_sym_usize] = ACTIONS(3005), + [anon_sym_f32] = ACTIONS(3005), + [anon_sym_f64] = ACTIONS(3005), + [anon_sym_bool] = ACTIONS(3005), + [anon_sym_str] = ACTIONS(3005), + [anon_sym_char] = ACTIONS(3005), + [anon_sym_DASH] = ACTIONS(1369), + [anon_sym_AMP] = ACTIONS(3007), + [anon_sym_PIPE] = ACTIONS(1375), + [anon_sym_LT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1499), + [anon_sym_DOT_DOT] = ACTIONS(1501), + [anon_sym_COLON_COLON] = ACTIONS(3009), + [anon_sym_const] = ACTIONS(3011), + [anon_sym_default] = ACTIONS(3013), + [anon_sym_union] = ACTIONS(3013), + [anon_sym_ref] = ACTIONS(1405), + [sym_mutable_specifier] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1411), + [aux_sym_string_literal_token1] = ACTIONS(1413), + [sym_char_literal] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1415), + [anon_sym_false] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3015), + [sym_super] = ACTIONS(3015), + [sym_crate] = ACTIONS(3015), + [sym_metavariable] = ACTIONS(3017), + [sym__raw_string_literal_start] = ACTIONS(1423), + [sym_float_literal] = ACTIONS(1411), }, [815] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2122), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_bracketed_type] = STATE(3574), + [sym_generic_type] = STATE(3491), + [sym_generic_type_with_turbofish] = STATE(3212), + [sym_macro_invocation] = STATE(2160), + [sym_scoped_identifier] = STATE(1997), + [sym_scoped_type_identifier] = STATE(2902), + [sym_const_block] = STATE(2160), + [sym__pattern] = STATE(2618), + [sym_tuple_pattern] = STATE(2160), + [sym_slice_pattern] = STATE(2160), + [sym_tuple_struct_pattern] = STATE(2160), + [sym_struct_pattern] = STATE(2160), + [sym_remaining_field_pattern] = STATE(2160), + [sym_mut_pattern] = STATE(2160), + [sym_range_pattern] = STATE(2160), + [sym_ref_pattern] = STATE(2160), + [sym_captured_pattern] = STATE(2160), + [sym_reference_pattern] = STATE(2160), + [sym_or_pattern] = STATE(2160), + [sym__literal_pattern] = STATE(2036), + [sym_negative_literal] = STATE(2048), + [sym_string_literal] = STATE(2048), + [sym_raw_string_literal] = STATE(2048), + [sym_boolean_literal] = STATE(2048), [sym_line_comment] = STATE(815), [sym_block_comment] = STATE(815), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym_identifier] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(2999), + [anon_sym_RPAREN] = ACTIONS(3117), + [anon_sym_LBRACK] = ACTIONS(3003), + [anon_sym_u8] = ACTIONS(3005), + [anon_sym_i8] = ACTIONS(3005), + [anon_sym_u16] = ACTIONS(3005), + [anon_sym_i16] = ACTIONS(3005), + [anon_sym_u32] = ACTIONS(3005), + [anon_sym_i32] = ACTIONS(3005), + [anon_sym_u64] = ACTIONS(3005), + [anon_sym_i64] = ACTIONS(3005), + [anon_sym_u128] = ACTIONS(3005), + [anon_sym_i128] = ACTIONS(3005), + [anon_sym_isize] = ACTIONS(3005), + [anon_sym_usize] = ACTIONS(3005), + [anon_sym_f32] = ACTIONS(3005), + [anon_sym_f64] = ACTIONS(3005), + [anon_sym_bool] = ACTIONS(3005), + [anon_sym_str] = ACTIONS(3005), + [anon_sym_char] = ACTIONS(3005), + [anon_sym_DASH] = ACTIONS(1369), + [anon_sym_AMP] = ACTIONS(3007), + [anon_sym_PIPE] = ACTIONS(1375), + [anon_sym_LT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1499), + [anon_sym_DOT_DOT] = ACTIONS(1501), + [anon_sym_COLON_COLON] = ACTIONS(3009), + [anon_sym_const] = ACTIONS(3011), + [anon_sym_default] = ACTIONS(3013), + [anon_sym_union] = ACTIONS(3013), + [anon_sym_ref] = ACTIONS(1405), + [sym_mutable_specifier] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1411), + [aux_sym_string_literal_token1] = ACTIONS(1413), + [sym_char_literal] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1415), + [anon_sym_false] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3015), + [sym_super] = ACTIONS(3015), + [sym_crate] = ACTIONS(3015), + [sym_metavariable] = ACTIONS(3017), + [sym__raw_string_literal_start] = ACTIONS(1423), + [sym_float_literal] = ACTIONS(1411), }, [816] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2086), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_bracketed_type] = STATE(3574), + [sym_generic_type] = STATE(3491), + [sym_generic_type_with_turbofish] = STATE(3212), + [sym_macro_invocation] = STATE(2160), + [sym_scoped_identifier] = STATE(1997), + [sym_scoped_type_identifier] = STATE(2902), + [sym_const_block] = STATE(2160), + [sym__pattern] = STATE(3119), + [sym_tuple_pattern] = STATE(2160), + [sym_slice_pattern] = STATE(2160), + [sym_tuple_struct_pattern] = STATE(2160), + [sym_struct_pattern] = STATE(2160), + [sym_remaining_field_pattern] = STATE(2160), + [sym_mut_pattern] = STATE(2160), + [sym_range_pattern] = STATE(2160), + [sym_ref_pattern] = STATE(2160), + [sym_captured_pattern] = STATE(2160), + [sym_reference_pattern] = STATE(2160), + [sym_or_pattern] = STATE(2160), + [sym__literal_pattern] = STATE(2036), + [sym_negative_literal] = STATE(2048), + [sym_string_literal] = STATE(2048), + [sym_raw_string_literal] = STATE(2048), + [sym_boolean_literal] = STATE(2048), [sym_line_comment] = STATE(816), [sym_block_comment] = STATE(816), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym_identifier] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(3003), + [anon_sym_u8] = ACTIONS(3005), + [anon_sym_i8] = ACTIONS(3005), + [anon_sym_u16] = ACTIONS(3005), + [anon_sym_i16] = ACTIONS(3005), + [anon_sym_u32] = ACTIONS(3005), + [anon_sym_i32] = ACTIONS(3005), + [anon_sym_u64] = ACTIONS(3005), + [anon_sym_i64] = ACTIONS(3005), + [anon_sym_u128] = ACTIONS(3005), + [anon_sym_i128] = ACTIONS(3005), + [anon_sym_isize] = ACTIONS(3005), + [anon_sym_usize] = ACTIONS(3005), + [anon_sym_f32] = ACTIONS(3005), + [anon_sym_f64] = ACTIONS(3005), + [anon_sym_bool] = ACTIONS(3005), + [anon_sym_str] = ACTIONS(3005), + [anon_sym_char] = ACTIONS(3005), + [anon_sym_DASH] = ACTIONS(1369), + [anon_sym_AMP] = ACTIONS(3007), + [anon_sym_PIPE] = ACTIONS(1375), + [anon_sym_LT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1499), + [anon_sym_DOT_DOT] = ACTIONS(1501), + [anon_sym_COLON_COLON] = ACTIONS(3009), + [anon_sym_const] = ACTIONS(3011), + [anon_sym_default] = ACTIONS(3013), + [anon_sym_union] = ACTIONS(3013), + [anon_sym_ref] = ACTIONS(1405), + [sym_mutable_specifier] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1411), + [aux_sym_string_literal_token1] = ACTIONS(1413), + [sym_char_literal] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1415), + [anon_sym_false] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3015), + [sym_super] = ACTIONS(3015), + [sym_crate] = ACTIONS(3015), + [sym_metavariable] = ACTIONS(3017), + [sym__raw_string_literal_start] = ACTIONS(1423), + [sym_float_literal] = ACTIONS(1411), }, [817] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2466), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_bracketed_type] = STATE(3618), + [sym_generic_type] = STATE(3491), + [sym_generic_type_with_turbofish] = STATE(3218), + [sym_macro_invocation] = STATE(2994), + [sym_scoped_identifier] = STATE(2165), + [sym_scoped_type_identifier] = STATE(2786), + [sym_const_block] = STATE(2994), + [sym__pattern] = STATE(3012), + [sym_tuple_pattern] = STATE(2994), + [sym_slice_pattern] = STATE(2994), + [sym_tuple_struct_pattern] = STATE(2994), + [sym_struct_pattern] = STATE(2994), + [sym_remaining_field_pattern] = STATE(2994), + [sym_mut_pattern] = STATE(2994), + [sym_range_pattern] = STATE(2994), + [sym_ref_pattern] = STATE(2994), + [sym_captured_pattern] = STATE(2994), + [sym_reference_pattern] = STATE(2994), + [sym_or_pattern] = STATE(2994), + [sym__literal_pattern] = STATE(2380), + [sym_negative_literal] = STATE(2383), + [sym_string_literal] = STATE(2383), + [sym_raw_string_literal] = STATE(2383), + [sym_boolean_literal] = STATE(2383), [sym_line_comment] = STATE(817), [sym_block_comment] = STATE(817), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(3047), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym_identifier] = ACTIONS(1621), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACK] = ACTIONS(1625), + [anon_sym_u8] = ACTIONS(1629), + [anon_sym_i8] = ACTIONS(1629), + [anon_sym_u16] = ACTIONS(1629), + [anon_sym_i16] = ACTIONS(1629), + [anon_sym_u32] = ACTIONS(1629), + [anon_sym_i32] = ACTIONS(1629), + [anon_sym_u64] = ACTIONS(1629), + [anon_sym_i64] = ACTIONS(1629), + [anon_sym_u128] = ACTIONS(1629), + [anon_sym_i128] = ACTIONS(1629), + [anon_sym_isize] = ACTIONS(1629), + [anon_sym_usize] = ACTIONS(1629), + [anon_sym_f32] = ACTIONS(1629), + [anon_sym_f64] = ACTIONS(1629), + [anon_sym_bool] = ACTIONS(1629), + [anon_sym_str] = ACTIONS(1629), + [anon_sym_char] = ACTIONS(1629), + [anon_sym_DASH] = ACTIONS(1631), + [anon_sym_AMP] = ACTIONS(1633), + [anon_sym_PIPE] = ACTIONS(1635), + [anon_sym_LT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1637), + [anon_sym_DOT_DOT] = ACTIONS(1639), + [anon_sym_COLON_COLON] = ACTIONS(1641), + [anon_sym_const] = ACTIONS(1645), + [anon_sym_default] = ACTIONS(1647), + [anon_sym_union] = ACTIONS(1647), + [anon_sym_ref] = ACTIONS(1649), + [sym_mutable_specifier] = ACTIONS(1651), + [sym_integer_literal] = ACTIONS(1653), + [aux_sym_string_literal_token1] = ACTIONS(1655), + [sym_char_literal] = ACTIONS(1653), + [anon_sym_true] = ACTIONS(1657), + [anon_sym_false] = ACTIONS(1657), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1659), + [sym_super] = ACTIONS(1659), + [sym_crate] = ACTIONS(1659), + [sym_metavariable] = ACTIONS(1661), + [sym__raw_string_literal_start] = ACTIONS(1663), + [sym_float_literal] = ACTIONS(1653), }, [818] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(3272), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_bracketed_type] = STATE(3574), + [sym_generic_type] = STATE(3491), + [sym_generic_type_with_turbofish] = STATE(3212), + [sym_macro_invocation] = STATE(2160), + [sym_scoped_identifier] = STATE(1997), + [sym_scoped_type_identifier] = STATE(2902), + [sym_const_block] = STATE(2160), + [sym__pattern] = STATE(2143), + [sym_tuple_pattern] = STATE(2160), + [sym_slice_pattern] = STATE(2160), + [sym_tuple_struct_pattern] = STATE(2160), + [sym_struct_pattern] = STATE(2160), + [sym_remaining_field_pattern] = STATE(2160), + [sym_mut_pattern] = STATE(2160), + [sym_range_pattern] = STATE(2160), + [sym_ref_pattern] = STATE(2160), + [sym_captured_pattern] = STATE(2160), + [sym_reference_pattern] = STATE(2160), + [sym_or_pattern] = STATE(2160), + [sym__literal_pattern] = STATE(2036), + [sym_negative_literal] = STATE(2048), + [sym_string_literal] = STATE(2048), + [sym_raw_string_literal] = STATE(2048), + [sym_boolean_literal] = STATE(2048), [sym_line_comment] = STATE(818), [sym_block_comment] = STATE(818), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym_identifier] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(3003), + [anon_sym_u8] = ACTIONS(3005), + [anon_sym_i8] = ACTIONS(3005), + [anon_sym_u16] = ACTIONS(3005), + [anon_sym_i16] = ACTIONS(3005), + [anon_sym_u32] = ACTIONS(3005), + [anon_sym_i32] = ACTIONS(3005), + [anon_sym_u64] = ACTIONS(3005), + [anon_sym_i64] = ACTIONS(3005), + [anon_sym_u128] = ACTIONS(3005), + [anon_sym_i128] = ACTIONS(3005), + [anon_sym_isize] = ACTIONS(3005), + [anon_sym_usize] = ACTIONS(3005), + [anon_sym_f32] = ACTIONS(3005), + [anon_sym_f64] = ACTIONS(3005), + [anon_sym_bool] = ACTIONS(3005), + [anon_sym_str] = ACTIONS(3005), + [anon_sym_char] = ACTIONS(3005), + [anon_sym_DASH] = ACTIONS(1369), + [anon_sym_AMP] = ACTIONS(3007), + [anon_sym_PIPE] = ACTIONS(1375), + [anon_sym_LT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1499), + [anon_sym_DOT_DOT] = ACTIONS(1501), + [anon_sym_COLON_COLON] = ACTIONS(3009), + [anon_sym_const] = ACTIONS(3011), + [anon_sym_default] = ACTIONS(3013), + [anon_sym_union] = ACTIONS(3013), + [anon_sym_ref] = ACTIONS(1405), + [sym_mutable_specifier] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1411), + [aux_sym_string_literal_token1] = ACTIONS(1413), + [sym_char_literal] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1415), + [anon_sym_false] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3015), + [sym_super] = ACTIONS(3015), + [sym_crate] = ACTIONS(3015), + [sym_metavariable] = ACTIONS(3017), + [sym__raw_string_literal_start] = ACTIONS(1423), + [sym_float_literal] = ACTIONS(1411), }, [819] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(2393), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_bracketed_type] = STATE(3618), + [sym_generic_type] = STATE(3491), + [sym_generic_type_with_turbofish] = STATE(3218), + [sym_macro_invocation] = STATE(2994), + [sym_scoped_identifier] = STATE(2165), + [sym_scoped_type_identifier] = STATE(2786), + [sym_const_block] = STATE(2994), + [sym__pattern] = STATE(3027), + [sym_tuple_pattern] = STATE(2994), + [sym_slice_pattern] = STATE(2994), + [sym_tuple_struct_pattern] = STATE(2994), + [sym_struct_pattern] = STATE(2994), + [sym_remaining_field_pattern] = STATE(2994), + [sym_mut_pattern] = STATE(2994), + [sym_range_pattern] = STATE(2994), + [sym_ref_pattern] = STATE(2994), + [sym_captured_pattern] = STATE(2994), + [sym_reference_pattern] = STATE(2994), + [sym_or_pattern] = STATE(2994), + [sym__literal_pattern] = STATE(2380), + [sym_negative_literal] = STATE(2383), + [sym_string_literal] = STATE(2383), + [sym_raw_string_literal] = STATE(2383), + [sym_boolean_literal] = STATE(2383), [sym_line_comment] = STATE(819), [sym_block_comment] = STATE(819), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym_identifier] = ACTIONS(1621), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACK] = ACTIONS(1625), + [anon_sym_u8] = ACTIONS(1629), + [anon_sym_i8] = ACTIONS(1629), + [anon_sym_u16] = ACTIONS(1629), + [anon_sym_i16] = ACTIONS(1629), + [anon_sym_u32] = ACTIONS(1629), + [anon_sym_i32] = ACTIONS(1629), + [anon_sym_u64] = ACTIONS(1629), + [anon_sym_i64] = ACTIONS(1629), + [anon_sym_u128] = ACTIONS(1629), + [anon_sym_i128] = ACTIONS(1629), + [anon_sym_isize] = ACTIONS(1629), + [anon_sym_usize] = ACTIONS(1629), + [anon_sym_f32] = ACTIONS(1629), + [anon_sym_f64] = ACTIONS(1629), + [anon_sym_bool] = ACTIONS(1629), + [anon_sym_str] = ACTIONS(1629), + [anon_sym_char] = ACTIONS(1629), + [anon_sym_DASH] = ACTIONS(1631), + [anon_sym_AMP] = ACTIONS(1633), + [anon_sym_PIPE] = ACTIONS(1635), + [anon_sym_LT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1637), + [anon_sym_DOT_DOT] = ACTIONS(1639), + [anon_sym_COLON_COLON] = ACTIONS(1641), + [anon_sym_const] = ACTIONS(1645), + [anon_sym_default] = ACTIONS(1647), + [anon_sym_union] = ACTIONS(1647), + [anon_sym_ref] = ACTIONS(1649), + [sym_mutable_specifier] = ACTIONS(1651), + [sym_integer_literal] = ACTIONS(1653), + [aux_sym_string_literal_token1] = ACTIONS(1655), + [sym_char_literal] = ACTIONS(1653), + [anon_sym_true] = ACTIONS(1657), + [anon_sym_false] = ACTIONS(1657), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1659), + [sym_super] = ACTIONS(1659), + [sym_crate] = ACTIONS(1659), + [sym_metavariable] = ACTIONS(1661), + [sym__raw_string_literal_start] = ACTIONS(1663), + [sym_float_literal] = ACTIONS(1653), }, [820] = { - [sym_bracketed_type] = STATE(3523), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3262), - [sym_macro_invocation] = STATE(2877), - [sym_scoped_identifier] = STATE(2130), - [sym_scoped_type_identifier] = STATE(2908), - [sym_const_block] = STATE(2877), - [sym__pattern] = STATE(2912), - [sym_tuple_pattern] = STATE(2877), - [sym_slice_pattern] = STATE(2877), - [sym_tuple_struct_pattern] = STATE(2877), - [sym_struct_pattern] = STATE(2877), - [sym_remaining_field_pattern] = STATE(2877), - [sym_mut_pattern] = STATE(2877), - [sym_range_pattern] = STATE(2877), - [sym_ref_pattern] = STATE(2877), - [sym_captured_pattern] = STATE(2877), - [sym_reference_pattern] = STATE(2877), - [sym_or_pattern] = STATE(2877), - [sym__literal_pattern] = STATE(2387), - [sym_negative_literal] = STATE(2299), - [sym_string_literal] = STATE(2299), - [sym_raw_string_literal] = STATE(2299), - [sym_boolean_literal] = STATE(2299), + [sym_bracketed_type] = STATE(3574), + [sym_generic_type] = STATE(3491), + [sym_generic_type_with_turbofish] = STATE(3212), + [sym_macro_invocation] = STATE(2160), + [sym_scoped_identifier] = STATE(1997), + [sym_scoped_type_identifier] = STATE(2902), + [sym_const_block] = STATE(2160), + [sym__pattern] = STATE(3207), + [sym_tuple_pattern] = STATE(2160), + [sym_slice_pattern] = STATE(2160), + [sym_tuple_struct_pattern] = STATE(2160), + [sym_struct_pattern] = STATE(2160), + [sym_remaining_field_pattern] = STATE(2160), + [sym_mut_pattern] = STATE(2160), + [sym_range_pattern] = STATE(2160), + [sym_ref_pattern] = STATE(2160), + [sym_captured_pattern] = STATE(2160), + [sym_reference_pattern] = STATE(2160), + [sym_or_pattern] = STATE(2160), + [sym__literal_pattern] = STATE(2036), + [sym_negative_literal] = STATE(2048), + [sym_string_literal] = STATE(2048), + [sym_raw_string_literal] = STATE(2048), + [sym_boolean_literal] = STATE(2048), [sym_line_comment] = STATE(820), [sym_block_comment] = STATE(820), - [sym_identifier] = ACTIONS(1604), - [anon_sym_LPAREN] = ACTIONS(1606), - [anon_sym_LBRACK] = ACTIONS(1608), - [anon_sym_u8] = ACTIONS(1612), - [anon_sym_i8] = ACTIONS(1612), - [anon_sym_u16] = ACTIONS(1612), - [anon_sym_i16] = ACTIONS(1612), - [anon_sym_u32] = ACTIONS(1612), - [anon_sym_i32] = ACTIONS(1612), - [anon_sym_u64] = ACTIONS(1612), - [anon_sym_i64] = ACTIONS(1612), - [anon_sym_u128] = ACTIONS(1612), - [anon_sym_i128] = ACTIONS(1612), - [anon_sym_isize] = ACTIONS(1612), - [anon_sym_usize] = ACTIONS(1612), - [anon_sym_f32] = ACTIONS(1612), - [anon_sym_f64] = ACTIONS(1612), - [anon_sym_bool] = ACTIONS(1612), - [anon_sym_str] = ACTIONS(1612), - [anon_sym_char] = ACTIONS(1612), - [anon_sym_DASH] = ACTIONS(1614), - [anon_sym_AMP] = ACTIONS(1616), - [anon_sym_PIPE] = ACTIONS(1618), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1620), - [anon_sym_DOT_DOT] = ACTIONS(1622), - [anon_sym_COLON_COLON] = ACTIONS(1624), - [anon_sym_const] = ACTIONS(1628), - [anon_sym_default] = ACTIONS(1630), - [anon_sym_union] = ACTIONS(1630), - [anon_sym_ref] = ACTIONS(1632), - [sym_mutable_specifier] = ACTIONS(3049), - [sym_integer_literal] = ACTIONS(1636), - [aux_sym_string_literal_token1] = ACTIONS(1638), - [sym_char_literal] = ACTIONS(1636), - [anon_sym_true] = ACTIONS(1640), - [anon_sym_false] = ACTIONS(1640), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1642), - [sym_super] = ACTIONS(1642), - [sym_crate] = ACTIONS(1642), - [sym_metavariable] = ACTIONS(1644), - [sym__raw_string_literal_start] = ACTIONS(1646), - [sym_float_literal] = ACTIONS(1636), + [sym_identifier] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(3003), + [anon_sym_u8] = ACTIONS(3005), + [anon_sym_i8] = ACTIONS(3005), + [anon_sym_u16] = ACTIONS(3005), + [anon_sym_i16] = ACTIONS(3005), + [anon_sym_u32] = ACTIONS(3005), + [anon_sym_i32] = ACTIONS(3005), + [anon_sym_u64] = ACTIONS(3005), + [anon_sym_i64] = ACTIONS(3005), + [anon_sym_u128] = ACTIONS(3005), + [anon_sym_i128] = ACTIONS(3005), + [anon_sym_isize] = ACTIONS(3005), + [anon_sym_usize] = ACTIONS(3005), + [anon_sym_f32] = ACTIONS(3005), + [anon_sym_f64] = ACTIONS(3005), + [anon_sym_bool] = ACTIONS(3005), + [anon_sym_str] = ACTIONS(3005), + [anon_sym_char] = ACTIONS(3005), + [anon_sym_DASH] = ACTIONS(1369), + [anon_sym_AMP] = ACTIONS(3007), + [anon_sym_PIPE] = ACTIONS(1375), + [anon_sym_LT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1499), + [anon_sym_DOT_DOT] = ACTIONS(1501), + [anon_sym_COLON_COLON] = ACTIONS(3009), + [anon_sym_const] = ACTIONS(3011), + [anon_sym_default] = ACTIONS(3013), + [anon_sym_union] = ACTIONS(3013), + [anon_sym_ref] = ACTIONS(1405), + [sym_mutable_specifier] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1411), + [aux_sym_string_literal_token1] = ACTIONS(1413), + [sym_char_literal] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1415), + [anon_sym_false] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3015), + [sym_super] = ACTIONS(3015), + [sym_crate] = ACTIONS(3015), + [sym_metavariable] = ACTIONS(3017), + [sym__raw_string_literal_start] = ACTIONS(1423), + [sym_float_literal] = ACTIONS(1411), }, [821] = { - [sym_bracketed_type] = STATE(3523), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3262), - [sym_macro_invocation] = STATE(2877), - [sym_scoped_identifier] = STATE(2130), - [sym_scoped_type_identifier] = STATE(2908), - [sym_const_block] = STATE(2877), - [sym__pattern] = STATE(2949), - [sym_tuple_pattern] = STATE(2877), - [sym_slice_pattern] = STATE(2877), - [sym_tuple_struct_pattern] = STATE(2877), - [sym_struct_pattern] = STATE(2877), - [sym_remaining_field_pattern] = STATE(2877), - [sym_mut_pattern] = STATE(2877), - [sym_range_pattern] = STATE(2877), - [sym_ref_pattern] = STATE(2877), - [sym_captured_pattern] = STATE(2877), - [sym_reference_pattern] = STATE(2877), - [sym_or_pattern] = STATE(2877), - [sym__literal_pattern] = STATE(2387), - [sym_negative_literal] = STATE(2299), - [sym_string_literal] = STATE(2299), - [sym_raw_string_literal] = STATE(2299), - [sym_boolean_literal] = STATE(2299), + [sym_bracketed_type] = STATE(3618), + [sym_generic_type] = STATE(3491), + [sym_generic_type_with_turbofish] = STATE(3218), + [sym_macro_invocation] = STATE(2994), + [sym_scoped_identifier] = STATE(2165), + [sym_scoped_type_identifier] = STATE(2786), + [sym_const_block] = STATE(2994), + [sym__pattern] = STATE(3013), + [sym_tuple_pattern] = STATE(2994), + [sym_slice_pattern] = STATE(2994), + [sym_tuple_struct_pattern] = STATE(2994), + [sym_struct_pattern] = STATE(2994), + [sym_remaining_field_pattern] = STATE(2994), + [sym_mut_pattern] = STATE(2994), + [sym_range_pattern] = STATE(2994), + [sym_ref_pattern] = STATE(2994), + [sym_captured_pattern] = STATE(2994), + [sym_reference_pattern] = STATE(2994), + [sym_or_pattern] = STATE(2994), + [sym__literal_pattern] = STATE(2380), + [sym_negative_literal] = STATE(2383), + [sym_string_literal] = STATE(2383), + [sym_raw_string_literal] = STATE(2383), + [sym_boolean_literal] = STATE(2383), [sym_line_comment] = STATE(821), [sym_block_comment] = STATE(821), - [sym_identifier] = ACTIONS(1604), - [anon_sym_LPAREN] = ACTIONS(1606), - [anon_sym_LBRACK] = ACTIONS(1608), - [anon_sym_u8] = ACTIONS(1612), - [anon_sym_i8] = ACTIONS(1612), - [anon_sym_u16] = ACTIONS(1612), - [anon_sym_i16] = ACTIONS(1612), - [anon_sym_u32] = ACTIONS(1612), - [anon_sym_i32] = ACTIONS(1612), - [anon_sym_u64] = ACTIONS(1612), - [anon_sym_i64] = ACTIONS(1612), - [anon_sym_u128] = ACTIONS(1612), - [anon_sym_i128] = ACTIONS(1612), - [anon_sym_isize] = ACTIONS(1612), - [anon_sym_usize] = ACTIONS(1612), - [anon_sym_f32] = ACTIONS(1612), - [anon_sym_f64] = ACTIONS(1612), - [anon_sym_bool] = ACTIONS(1612), - [anon_sym_str] = ACTIONS(1612), - [anon_sym_char] = ACTIONS(1612), - [anon_sym_DASH] = ACTIONS(1614), - [anon_sym_AMP] = ACTIONS(1616), - [anon_sym_PIPE] = ACTIONS(1618), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1620), - [anon_sym_DOT_DOT] = ACTIONS(1622), - [anon_sym_COLON_COLON] = ACTIONS(1624), - [anon_sym_const] = ACTIONS(1628), - [anon_sym_default] = ACTIONS(1630), - [anon_sym_union] = ACTIONS(1630), - [anon_sym_ref] = ACTIONS(1632), - [sym_mutable_specifier] = ACTIONS(1634), - [sym_integer_literal] = ACTIONS(1636), - [aux_sym_string_literal_token1] = ACTIONS(1638), - [sym_char_literal] = ACTIONS(1636), - [anon_sym_true] = ACTIONS(1640), - [anon_sym_false] = ACTIONS(1640), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1642), - [sym_super] = ACTIONS(1642), - [sym_crate] = ACTIONS(1642), - [sym_metavariable] = ACTIONS(1644), - [sym__raw_string_literal_start] = ACTIONS(1646), - [sym_float_literal] = ACTIONS(1636), + [sym_identifier] = ACTIONS(1621), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACK] = ACTIONS(1625), + [anon_sym_u8] = ACTIONS(1629), + [anon_sym_i8] = ACTIONS(1629), + [anon_sym_u16] = ACTIONS(1629), + [anon_sym_i16] = ACTIONS(1629), + [anon_sym_u32] = ACTIONS(1629), + [anon_sym_i32] = ACTIONS(1629), + [anon_sym_u64] = ACTIONS(1629), + [anon_sym_i64] = ACTIONS(1629), + [anon_sym_u128] = ACTIONS(1629), + [anon_sym_i128] = ACTIONS(1629), + [anon_sym_isize] = ACTIONS(1629), + [anon_sym_usize] = ACTIONS(1629), + [anon_sym_f32] = ACTIONS(1629), + [anon_sym_f64] = ACTIONS(1629), + [anon_sym_bool] = ACTIONS(1629), + [anon_sym_str] = ACTIONS(1629), + [anon_sym_char] = ACTIONS(1629), + [anon_sym_DASH] = ACTIONS(1631), + [anon_sym_AMP] = ACTIONS(1633), + [anon_sym_PIPE] = ACTIONS(1635), + [anon_sym_LT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1637), + [anon_sym_DOT_DOT] = ACTIONS(1639), + [anon_sym_COLON_COLON] = ACTIONS(1641), + [anon_sym_const] = ACTIONS(1645), + [anon_sym_default] = ACTIONS(1647), + [anon_sym_union] = ACTIONS(1647), + [anon_sym_ref] = ACTIONS(1649), + [sym_mutable_specifier] = ACTIONS(1651), + [sym_integer_literal] = ACTIONS(1653), + [aux_sym_string_literal_token1] = ACTIONS(1655), + [sym_char_literal] = ACTIONS(1653), + [anon_sym_true] = ACTIONS(1657), + [anon_sym_false] = ACTIONS(1657), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1659), + [sym_super] = ACTIONS(1659), + [sym_crate] = ACTIONS(1659), + [sym_metavariable] = ACTIONS(1661), + [sym__raw_string_literal_start] = ACTIONS(1663), + [sym_float_literal] = ACTIONS(1653), }, [822] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(3302), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_bracketed_type] = STATE(3574), + [sym_generic_type] = STATE(3491), + [sym_generic_type_with_turbofish] = STATE(3212), + [sym_macro_invocation] = STATE(2160), + [sym_scoped_identifier] = STATE(1997), + [sym_scoped_type_identifier] = STATE(2902), + [sym_const_block] = STATE(2160), + [sym__pattern] = STATE(2618), + [sym_tuple_pattern] = STATE(2160), + [sym_slice_pattern] = STATE(2160), + [sym_tuple_struct_pattern] = STATE(2160), + [sym_struct_pattern] = STATE(2160), + [sym_remaining_field_pattern] = STATE(2160), + [sym_mut_pattern] = STATE(2160), + [sym_range_pattern] = STATE(2160), + [sym_ref_pattern] = STATE(2160), + [sym_captured_pattern] = STATE(2160), + [sym_reference_pattern] = STATE(2160), + [sym_or_pattern] = STATE(2160), + [sym__literal_pattern] = STATE(2036), + [sym_negative_literal] = STATE(2048), + [sym_string_literal] = STATE(2048), + [sym_raw_string_literal] = STATE(2048), + [sym_boolean_literal] = STATE(2048), [sym_line_comment] = STATE(822), [sym_block_comment] = STATE(822), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym_identifier] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(3003), + [anon_sym_u8] = ACTIONS(3005), + [anon_sym_i8] = ACTIONS(3005), + [anon_sym_u16] = ACTIONS(3005), + [anon_sym_i16] = ACTIONS(3005), + [anon_sym_u32] = ACTIONS(3005), + [anon_sym_i32] = ACTIONS(3005), + [anon_sym_u64] = ACTIONS(3005), + [anon_sym_i64] = ACTIONS(3005), + [anon_sym_u128] = ACTIONS(3005), + [anon_sym_i128] = ACTIONS(3005), + [anon_sym_isize] = ACTIONS(3005), + [anon_sym_usize] = ACTIONS(3005), + [anon_sym_f32] = ACTIONS(3005), + [anon_sym_f64] = ACTIONS(3005), + [anon_sym_bool] = ACTIONS(3005), + [anon_sym_str] = ACTIONS(3005), + [anon_sym_char] = ACTIONS(3005), + [anon_sym_DASH] = ACTIONS(1369), + [anon_sym_AMP] = ACTIONS(3007), + [anon_sym_PIPE] = ACTIONS(1375), + [anon_sym_LT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1499), + [anon_sym_DOT_DOT] = ACTIONS(1501), + [anon_sym_COLON_COLON] = ACTIONS(3009), + [anon_sym_const] = ACTIONS(3011), + [anon_sym_default] = ACTIONS(3013), + [anon_sym_union] = ACTIONS(3013), + [anon_sym_ref] = ACTIONS(1405), + [sym_mutable_specifier] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1411), + [aux_sym_string_literal_token1] = ACTIONS(1413), + [sym_char_literal] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1415), + [anon_sym_false] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3015), + [sym_super] = ACTIONS(3015), + [sym_crate] = ACTIONS(3015), + [sym_metavariable] = ACTIONS(3017), + [sym__raw_string_literal_start] = ACTIONS(1423), + [sym_float_literal] = ACTIONS(1411), }, [823] = { - [sym_bracketed_type] = STATE(3523), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3262), - [sym_macro_invocation] = STATE(2877), - [sym_scoped_identifier] = STATE(2130), - [sym_scoped_type_identifier] = STATE(2908), - [sym_const_block] = STATE(2877), - [sym__pattern] = STATE(2926), - [sym_tuple_pattern] = STATE(2877), - [sym_slice_pattern] = STATE(2877), - [sym_tuple_struct_pattern] = STATE(2877), - [sym_struct_pattern] = STATE(2877), - [sym_remaining_field_pattern] = STATE(2877), - [sym_mut_pattern] = STATE(2877), - [sym_range_pattern] = STATE(2877), - [sym_ref_pattern] = STATE(2877), - [sym_captured_pattern] = STATE(2877), - [sym_reference_pattern] = STATE(2877), - [sym_or_pattern] = STATE(2877), - [sym__literal_pattern] = STATE(2387), - [sym_negative_literal] = STATE(2299), - [sym_string_literal] = STATE(2299), - [sym_raw_string_literal] = STATE(2299), - [sym_boolean_literal] = STATE(2299), + [sym_bracketed_type] = STATE(3618), + [sym_generic_type] = STATE(3491), + [sym_generic_type_with_turbofish] = STATE(3218), + [sym_macro_invocation] = STATE(2994), + [sym_scoped_identifier] = STATE(2165), + [sym_scoped_type_identifier] = STATE(2786), + [sym_const_block] = STATE(2994), + [sym__pattern] = STATE(3014), + [sym_tuple_pattern] = STATE(2994), + [sym_slice_pattern] = STATE(2994), + [sym_tuple_struct_pattern] = STATE(2994), + [sym_struct_pattern] = STATE(2994), + [sym_remaining_field_pattern] = STATE(2994), + [sym_mut_pattern] = STATE(2994), + [sym_range_pattern] = STATE(2994), + [sym_ref_pattern] = STATE(2994), + [sym_captured_pattern] = STATE(2994), + [sym_reference_pattern] = STATE(2994), + [sym_or_pattern] = STATE(2994), + [sym__literal_pattern] = STATE(2380), + [sym_negative_literal] = STATE(2383), + [sym_string_literal] = STATE(2383), + [sym_raw_string_literal] = STATE(2383), + [sym_boolean_literal] = STATE(2383), [sym_line_comment] = STATE(823), [sym_block_comment] = STATE(823), - [sym_identifier] = ACTIONS(1604), - [anon_sym_LPAREN] = ACTIONS(1606), - [anon_sym_LBRACK] = ACTIONS(1608), - [anon_sym_u8] = ACTIONS(1612), - [anon_sym_i8] = ACTIONS(1612), - [anon_sym_u16] = ACTIONS(1612), - [anon_sym_i16] = ACTIONS(1612), - [anon_sym_u32] = ACTIONS(1612), - [anon_sym_i32] = ACTIONS(1612), - [anon_sym_u64] = ACTIONS(1612), - [anon_sym_i64] = ACTIONS(1612), - [anon_sym_u128] = ACTIONS(1612), - [anon_sym_i128] = ACTIONS(1612), - [anon_sym_isize] = ACTIONS(1612), - [anon_sym_usize] = ACTIONS(1612), - [anon_sym_f32] = ACTIONS(1612), - [anon_sym_f64] = ACTIONS(1612), - [anon_sym_bool] = ACTIONS(1612), - [anon_sym_str] = ACTIONS(1612), - [anon_sym_char] = ACTIONS(1612), - [anon_sym_DASH] = ACTIONS(1614), - [anon_sym_AMP] = ACTIONS(1616), - [anon_sym_PIPE] = ACTIONS(1618), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1620), - [anon_sym_DOT_DOT] = ACTIONS(1622), - [anon_sym_COLON_COLON] = ACTIONS(1624), - [anon_sym_const] = ACTIONS(1628), - [anon_sym_default] = ACTIONS(1630), - [anon_sym_union] = ACTIONS(1630), - [anon_sym_ref] = ACTIONS(1632), - [sym_mutable_specifier] = ACTIONS(1634), - [sym_integer_literal] = ACTIONS(1636), - [aux_sym_string_literal_token1] = ACTIONS(1638), - [sym_char_literal] = ACTIONS(1636), - [anon_sym_true] = ACTIONS(1640), - [anon_sym_false] = ACTIONS(1640), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1642), - [sym_super] = ACTIONS(1642), - [sym_crate] = ACTIONS(1642), - [sym_metavariable] = ACTIONS(1644), - [sym__raw_string_literal_start] = ACTIONS(1646), - [sym_float_literal] = ACTIONS(1636), + [sym_identifier] = ACTIONS(1621), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACK] = ACTIONS(1625), + [anon_sym_u8] = ACTIONS(1629), + [anon_sym_i8] = ACTIONS(1629), + [anon_sym_u16] = ACTIONS(1629), + [anon_sym_i16] = ACTIONS(1629), + [anon_sym_u32] = ACTIONS(1629), + [anon_sym_i32] = ACTIONS(1629), + [anon_sym_u64] = ACTIONS(1629), + [anon_sym_i64] = ACTIONS(1629), + [anon_sym_u128] = ACTIONS(1629), + [anon_sym_i128] = ACTIONS(1629), + [anon_sym_isize] = ACTIONS(1629), + [anon_sym_usize] = ACTIONS(1629), + [anon_sym_f32] = ACTIONS(1629), + [anon_sym_f64] = ACTIONS(1629), + [anon_sym_bool] = ACTIONS(1629), + [anon_sym_str] = ACTIONS(1629), + [anon_sym_char] = ACTIONS(1629), + [anon_sym_DASH] = ACTIONS(1631), + [anon_sym_AMP] = ACTIONS(1633), + [anon_sym_PIPE] = ACTIONS(1635), + [anon_sym_LT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1637), + [anon_sym_DOT_DOT] = ACTIONS(1639), + [anon_sym_COLON_COLON] = ACTIONS(1641), + [anon_sym_const] = ACTIONS(1645), + [anon_sym_default] = ACTIONS(1647), + [anon_sym_union] = ACTIONS(1647), + [anon_sym_ref] = ACTIONS(1649), + [sym_mutable_specifier] = ACTIONS(1651), + [sym_integer_literal] = ACTIONS(1653), + [aux_sym_string_literal_token1] = ACTIONS(1655), + [sym_char_literal] = ACTIONS(1653), + [anon_sym_true] = ACTIONS(1657), + [anon_sym_false] = ACTIONS(1657), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1659), + [sym_super] = ACTIONS(1659), + [sym_crate] = ACTIONS(1659), + [sym_metavariable] = ACTIONS(1661), + [sym__raw_string_literal_start] = ACTIONS(1663), + [sym_float_literal] = ACTIONS(1653), }, [824] = { - [sym_bracketed_type] = STATE(3523), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3262), - [sym_macro_invocation] = STATE(2877), - [sym_scoped_identifier] = STATE(2130), - [sym_scoped_type_identifier] = STATE(2908), - [sym_const_block] = STATE(2877), - [sym__pattern] = STATE(2878), - [sym_tuple_pattern] = STATE(2877), - [sym_slice_pattern] = STATE(2877), - [sym_tuple_struct_pattern] = STATE(2877), - [sym_struct_pattern] = STATE(2877), - [sym_remaining_field_pattern] = STATE(2877), - [sym_mut_pattern] = STATE(2877), - [sym_range_pattern] = STATE(2877), - [sym_ref_pattern] = STATE(2877), - [sym_captured_pattern] = STATE(2877), - [sym_reference_pattern] = STATE(2877), - [sym_or_pattern] = STATE(2877), - [sym__literal_pattern] = STATE(2387), - [sym_negative_literal] = STATE(2299), - [sym_string_literal] = STATE(2299), - [sym_raw_string_literal] = STATE(2299), - [sym_boolean_literal] = STATE(2299), + [sym_bracketed_type] = STATE(3618), + [sym_generic_type] = STATE(3491), + [sym_generic_type_with_turbofish] = STATE(3218), + [sym_macro_invocation] = STATE(2994), + [sym_scoped_identifier] = STATE(2165), + [sym_scoped_type_identifier] = STATE(2786), + [sym_const_block] = STATE(2994), + [sym__pattern] = STATE(3007), + [sym_tuple_pattern] = STATE(2994), + [sym_slice_pattern] = STATE(2994), + [sym_tuple_struct_pattern] = STATE(2994), + [sym_struct_pattern] = STATE(2994), + [sym_remaining_field_pattern] = STATE(2994), + [sym_mut_pattern] = STATE(2994), + [sym_range_pattern] = STATE(2994), + [sym_ref_pattern] = STATE(2994), + [sym_captured_pattern] = STATE(2994), + [sym_reference_pattern] = STATE(2994), + [sym_or_pattern] = STATE(2994), + [sym__literal_pattern] = STATE(2380), + [sym_negative_literal] = STATE(2383), + [sym_string_literal] = STATE(2383), + [sym_raw_string_literal] = STATE(2383), + [sym_boolean_literal] = STATE(2383), [sym_line_comment] = STATE(824), [sym_block_comment] = STATE(824), - [sym_identifier] = ACTIONS(1604), - [anon_sym_LPAREN] = ACTIONS(1606), - [anon_sym_LBRACK] = ACTIONS(1608), - [anon_sym_u8] = ACTIONS(1612), - [anon_sym_i8] = ACTIONS(1612), - [anon_sym_u16] = ACTIONS(1612), - [anon_sym_i16] = ACTIONS(1612), - [anon_sym_u32] = ACTIONS(1612), - [anon_sym_i32] = ACTIONS(1612), - [anon_sym_u64] = ACTIONS(1612), - [anon_sym_i64] = ACTIONS(1612), - [anon_sym_u128] = ACTIONS(1612), - [anon_sym_i128] = ACTIONS(1612), - [anon_sym_isize] = ACTIONS(1612), - [anon_sym_usize] = ACTIONS(1612), - [anon_sym_f32] = ACTIONS(1612), - [anon_sym_f64] = ACTIONS(1612), - [anon_sym_bool] = ACTIONS(1612), - [anon_sym_str] = ACTIONS(1612), - [anon_sym_char] = ACTIONS(1612), - [anon_sym_DASH] = ACTIONS(1614), - [anon_sym_AMP] = ACTIONS(1616), - [anon_sym_PIPE] = ACTIONS(1618), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1620), - [anon_sym_DOT_DOT] = ACTIONS(1622), - [anon_sym_COLON_COLON] = ACTIONS(1624), - [anon_sym_const] = ACTIONS(1628), - [anon_sym_default] = ACTIONS(1630), - [anon_sym_union] = ACTIONS(1630), - [anon_sym_ref] = ACTIONS(1632), - [sym_mutable_specifier] = ACTIONS(1634), - [sym_integer_literal] = ACTIONS(1636), - [aux_sym_string_literal_token1] = ACTIONS(1638), - [sym_char_literal] = ACTIONS(1636), - [anon_sym_true] = ACTIONS(1640), - [anon_sym_false] = ACTIONS(1640), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1642), - [sym_super] = ACTIONS(1642), - [sym_crate] = ACTIONS(1642), - [sym_metavariable] = ACTIONS(1644), - [sym__raw_string_literal_start] = ACTIONS(1646), - [sym_float_literal] = ACTIONS(1636), + [sym_identifier] = ACTIONS(1621), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACK] = ACTIONS(1625), + [anon_sym_u8] = ACTIONS(1629), + [anon_sym_i8] = ACTIONS(1629), + [anon_sym_u16] = ACTIONS(1629), + [anon_sym_i16] = ACTIONS(1629), + [anon_sym_u32] = ACTIONS(1629), + [anon_sym_i32] = ACTIONS(1629), + [anon_sym_u64] = ACTIONS(1629), + [anon_sym_i64] = ACTIONS(1629), + [anon_sym_u128] = ACTIONS(1629), + [anon_sym_i128] = ACTIONS(1629), + [anon_sym_isize] = ACTIONS(1629), + [anon_sym_usize] = ACTIONS(1629), + [anon_sym_f32] = ACTIONS(1629), + [anon_sym_f64] = ACTIONS(1629), + [anon_sym_bool] = ACTIONS(1629), + [anon_sym_str] = ACTIONS(1629), + [anon_sym_char] = ACTIONS(1629), + [anon_sym_DASH] = ACTIONS(1631), + [anon_sym_AMP] = ACTIONS(1633), + [anon_sym_PIPE] = ACTIONS(1635), + [anon_sym_LT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1637), + [anon_sym_DOT_DOT] = ACTIONS(1639), + [anon_sym_COLON_COLON] = ACTIONS(1641), + [anon_sym_const] = ACTIONS(1645), + [anon_sym_default] = ACTIONS(1647), + [anon_sym_union] = ACTIONS(1647), + [anon_sym_ref] = ACTIONS(1649), + [sym_mutable_specifier] = ACTIONS(3119), + [sym_integer_literal] = ACTIONS(1653), + [aux_sym_string_literal_token1] = ACTIONS(1655), + [sym_char_literal] = ACTIONS(1653), + [anon_sym_true] = ACTIONS(1657), + [anon_sym_false] = ACTIONS(1657), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1659), + [sym_super] = ACTIONS(1659), + [sym_crate] = ACTIONS(1659), + [sym_metavariable] = ACTIONS(1661), + [sym__raw_string_literal_start] = ACTIONS(1663), + [sym_float_literal] = ACTIONS(1653), }, [825] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(3283), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_bracketed_type] = STATE(3574), + [sym_generic_type] = STATE(3491), + [sym_generic_type_with_turbofish] = STATE(3212), + [sym_macro_invocation] = STATE(2160), + [sym_scoped_identifier] = STATE(1997), + [sym_scoped_type_identifier] = STATE(2902), + [sym_const_block] = STATE(2160), + [sym__pattern] = STATE(2135), + [sym_tuple_pattern] = STATE(2160), + [sym_slice_pattern] = STATE(2160), + [sym_tuple_struct_pattern] = STATE(2160), + [sym_struct_pattern] = STATE(2160), + [sym_remaining_field_pattern] = STATE(2160), + [sym_mut_pattern] = STATE(2160), + [sym_range_pattern] = STATE(2160), + [sym_ref_pattern] = STATE(2160), + [sym_captured_pattern] = STATE(2160), + [sym_reference_pattern] = STATE(2160), + [sym_or_pattern] = STATE(2160), + [sym__literal_pattern] = STATE(2036), + [sym_negative_literal] = STATE(2048), + [sym_string_literal] = STATE(2048), + [sym_raw_string_literal] = STATE(2048), + [sym_boolean_literal] = STATE(2048), [sym_line_comment] = STATE(825), [sym_block_comment] = STATE(825), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym_identifier] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(3003), + [anon_sym_u8] = ACTIONS(3005), + [anon_sym_i8] = ACTIONS(3005), + [anon_sym_u16] = ACTIONS(3005), + [anon_sym_i16] = ACTIONS(3005), + [anon_sym_u32] = ACTIONS(3005), + [anon_sym_i32] = ACTIONS(3005), + [anon_sym_u64] = ACTIONS(3005), + [anon_sym_i64] = ACTIONS(3005), + [anon_sym_u128] = ACTIONS(3005), + [anon_sym_i128] = ACTIONS(3005), + [anon_sym_isize] = ACTIONS(3005), + [anon_sym_usize] = ACTIONS(3005), + [anon_sym_f32] = ACTIONS(3005), + [anon_sym_f64] = ACTIONS(3005), + [anon_sym_bool] = ACTIONS(3005), + [anon_sym_str] = ACTIONS(3005), + [anon_sym_char] = ACTIONS(3005), + [anon_sym_DASH] = ACTIONS(1369), + [anon_sym_AMP] = ACTIONS(3007), + [anon_sym_PIPE] = ACTIONS(1375), + [anon_sym_LT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1499), + [anon_sym_DOT_DOT] = ACTIONS(1501), + [anon_sym_COLON_COLON] = ACTIONS(3009), + [anon_sym_const] = ACTIONS(3011), + [anon_sym_default] = ACTIONS(3013), + [anon_sym_union] = ACTIONS(3013), + [anon_sym_ref] = ACTIONS(1405), + [sym_mutable_specifier] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1411), + [aux_sym_string_literal_token1] = ACTIONS(1413), + [sym_char_literal] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1415), + [anon_sym_false] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3015), + [sym_super] = ACTIONS(3015), + [sym_crate] = ACTIONS(3015), + [sym_metavariable] = ACTIONS(3017), + [sym__raw_string_literal_start] = ACTIONS(1423), + [sym_float_literal] = ACTIONS(1411), }, [826] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(3296), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_bracketed_type] = STATE(3574), + [sym_generic_type] = STATE(3491), + [sym_generic_type_with_turbofish] = STATE(3212), + [sym_macro_invocation] = STATE(2160), + [sym_scoped_identifier] = STATE(1997), + [sym_scoped_type_identifier] = STATE(2902), + [sym_const_block] = STATE(2160), + [sym__pattern] = STATE(2916), + [sym_tuple_pattern] = STATE(2160), + [sym_slice_pattern] = STATE(2160), + [sym_tuple_struct_pattern] = STATE(2160), + [sym_struct_pattern] = STATE(2160), + [sym_remaining_field_pattern] = STATE(2160), + [sym_mut_pattern] = STATE(2160), + [sym_range_pattern] = STATE(2160), + [sym_ref_pattern] = STATE(2160), + [sym_captured_pattern] = STATE(2160), + [sym_reference_pattern] = STATE(2160), + [sym_or_pattern] = STATE(2160), + [sym__literal_pattern] = STATE(2036), + [sym_negative_literal] = STATE(2048), + [sym_string_literal] = STATE(2048), + [sym_raw_string_literal] = STATE(2048), + [sym_boolean_literal] = STATE(2048), [sym_line_comment] = STATE(826), [sym_block_comment] = STATE(826), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym_identifier] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(3003), + [anon_sym_u8] = ACTIONS(3005), + [anon_sym_i8] = ACTIONS(3005), + [anon_sym_u16] = ACTIONS(3005), + [anon_sym_i16] = ACTIONS(3005), + [anon_sym_u32] = ACTIONS(3005), + [anon_sym_i32] = ACTIONS(3005), + [anon_sym_u64] = ACTIONS(3005), + [anon_sym_i64] = ACTIONS(3005), + [anon_sym_u128] = ACTIONS(3005), + [anon_sym_i128] = ACTIONS(3005), + [anon_sym_isize] = ACTIONS(3005), + [anon_sym_usize] = ACTIONS(3005), + [anon_sym_f32] = ACTIONS(3005), + [anon_sym_f64] = ACTIONS(3005), + [anon_sym_bool] = ACTIONS(3005), + [anon_sym_str] = ACTIONS(3005), + [anon_sym_char] = ACTIONS(3005), + [anon_sym_DASH] = ACTIONS(1369), + [anon_sym_AMP] = ACTIONS(3007), + [anon_sym_PIPE] = ACTIONS(1375), + [anon_sym_LT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1499), + [anon_sym_DOT_DOT] = ACTIONS(1501), + [anon_sym_COLON_COLON] = ACTIONS(3009), + [anon_sym_const] = ACTIONS(3011), + [anon_sym_default] = ACTIONS(3013), + [anon_sym_union] = ACTIONS(3013), + [anon_sym_ref] = ACTIONS(1405), + [sym_mutable_specifier] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1411), + [aux_sym_string_literal_token1] = ACTIONS(1413), + [sym_char_literal] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1415), + [anon_sym_false] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3015), + [sym_super] = ACTIONS(3015), + [sym_crate] = ACTIONS(3015), + [sym_metavariable] = ACTIONS(3017), + [sym__raw_string_literal_start] = ACTIONS(1423), + [sym_float_literal] = ACTIONS(1411), }, [827] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(3299), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_bracketed_type] = STATE(3574), + [sym_generic_type] = STATE(3491), + [sym_generic_type_with_turbofish] = STATE(3212), + [sym_macro_invocation] = STATE(2160), + [sym_scoped_identifier] = STATE(1997), + [sym_scoped_type_identifier] = STATE(2902), + [sym_const_block] = STATE(2160), + [sym__pattern] = STATE(3240), + [sym_tuple_pattern] = STATE(2160), + [sym_slice_pattern] = STATE(2160), + [sym_tuple_struct_pattern] = STATE(2160), + [sym_struct_pattern] = STATE(2160), + [sym_remaining_field_pattern] = STATE(2160), + [sym_mut_pattern] = STATE(2160), + [sym_range_pattern] = STATE(2160), + [sym_ref_pattern] = STATE(2160), + [sym_captured_pattern] = STATE(2160), + [sym_reference_pattern] = STATE(2160), + [sym_or_pattern] = STATE(2160), + [sym__literal_pattern] = STATE(2036), + [sym_negative_literal] = STATE(2048), + [sym_string_literal] = STATE(2048), + [sym_raw_string_literal] = STATE(2048), + [sym_boolean_literal] = STATE(2048), [sym_line_comment] = STATE(827), [sym_block_comment] = STATE(827), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym_identifier] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(3003), + [anon_sym_u8] = ACTIONS(3005), + [anon_sym_i8] = ACTIONS(3005), + [anon_sym_u16] = ACTIONS(3005), + [anon_sym_i16] = ACTIONS(3005), + [anon_sym_u32] = ACTIONS(3005), + [anon_sym_i32] = ACTIONS(3005), + [anon_sym_u64] = ACTIONS(3005), + [anon_sym_i64] = ACTIONS(3005), + [anon_sym_u128] = ACTIONS(3005), + [anon_sym_i128] = ACTIONS(3005), + [anon_sym_isize] = ACTIONS(3005), + [anon_sym_usize] = ACTIONS(3005), + [anon_sym_f32] = ACTIONS(3005), + [anon_sym_f64] = ACTIONS(3005), + [anon_sym_bool] = ACTIONS(3005), + [anon_sym_str] = ACTIONS(3005), + [anon_sym_char] = ACTIONS(3005), + [anon_sym_DASH] = ACTIONS(1369), + [anon_sym_AMP] = ACTIONS(3007), + [anon_sym_PIPE] = ACTIONS(1375), + [anon_sym_LT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1499), + [anon_sym_DOT_DOT] = ACTIONS(1501), + [anon_sym_COLON_COLON] = ACTIONS(3009), + [anon_sym_const] = ACTIONS(3011), + [anon_sym_default] = ACTIONS(3013), + [anon_sym_union] = ACTIONS(3013), + [anon_sym_ref] = ACTIONS(1405), + [sym_mutable_specifier] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1411), + [aux_sym_string_literal_token1] = ACTIONS(1413), + [sym_char_literal] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1415), + [anon_sym_false] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3015), + [sym_super] = ACTIONS(3015), + [sym_crate] = ACTIONS(3015), + [sym_metavariable] = ACTIONS(3017), + [sym__raw_string_literal_start] = ACTIONS(1423), + [sym_float_literal] = ACTIONS(1411), }, [828] = { - [sym_bracketed_type] = STATE(3609), - [sym_generic_type] = STATE(3403), - [sym_generic_type_with_turbofish] = STATE(3113), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(1961), - [sym_scoped_type_identifier] = STATE(2970), - [sym_const_block] = STATE(2079), - [sym__pattern] = STATE(3300), - [sym_tuple_pattern] = STATE(2079), - [sym_slice_pattern] = STATE(2079), - [sym_tuple_struct_pattern] = STATE(2079), - [sym_struct_pattern] = STATE(2079), - [sym_remaining_field_pattern] = STATE(2079), - [sym_mut_pattern] = STATE(2079), - [sym_range_pattern] = STATE(2079), - [sym_ref_pattern] = STATE(2079), - [sym_captured_pattern] = STATE(2079), - [sym_reference_pattern] = STATE(2079), - [sym_or_pattern] = STATE(2079), - [sym__literal_pattern] = STATE(2005), - [sym_negative_literal] = STATE(2004), - [sym_string_literal] = STATE(2004), - [sym_raw_string_literal] = STATE(2004), - [sym_boolean_literal] = STATE(2004), + [sym_bracketed_type] = STATE(3574), + [sym_generic_type] = STATE(3491), + [sym_generic_type_with_turbofish] = STATE(3212), + [sym_macro_invocation] = STATE(2160), + [sym_scoped_identifier] = STATE(1997), + [sym_scoped_type_identifier] = STATE(2902), + [sym_const_block] = STATE(2160), + [sym__pattern] = STATE(3130), + [sym_tuple_pattern] = STATE(2160), + [sym_slice_pattern] = STATE(2160), + [sym_tuple_struct_pattern] = STATE(2160), + [sym_struct_pattern] = STATE(2160), + [sym_remaining_field_pattern] = STATE(2160), + [sym_mut_pattern] = STATE(2160), + [sym_range_pattern] = STATE(2160), + [sym_ref_pattern] = STATE(2160), + [sym_captured_pattern] = STATE(2160), + [sym_reference_pattern] = STATE(2160), + [sym_or_pattern] = STATE(2160), + [sym__literal_pattern] = STATE(2036), + [sym_negative_literal] = STATE(2048), + [sym_string_literal] = STATE(2048), + [sym_raw_string_literal] = STATE(2048), + [sym_boolean_literal] = STATE(2048), [sym_line_comment] = STATE(828), [sym_block_comment] = STATE(828), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1300), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1306), + [sym_identifier] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(3003), + [anon_sym_u8] = ACTIONS(3005), + [anon_sym_i8] = ACTIONS(3005), + [anon_sym_u16] = ACTIONS(3005), + [anon_sym_i16] = ACTIONS(3005), + [anon_sym_u32] = ACTIONS(3005), + [anon_sym_i32] = ACTIONS(3005), + [anon_sym_u64] = ACTIONS(3005), + [anon_sym_i64] = ACTIONS(3005), + [anon_sym_u128] = ACTIONS(3005), + [anon_sym_i128] = ACTIONS(3005), + [anon_sym_isize] = ACTIONS(3005), + [anon_sym_usize] = ACTIONS(3005), + [anon_sym_f32] = ACTIONS(3005), + [anon_sym_f64] = ACTIONS(3005), + [anon_sym_bool] = ACTIONS(3005), + [anon_sym_str] = ACTIONS(3005), + [anon_sym_char] = ACTIONS(3005), + [anon_sym_DASH] = ACTIONS(1369), + [anon_sym_AMP] = ACTIONS(3007), + [anon_sym_PIPE] = ACTIONS(1375), + [anon_sym_LT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1499), + [anon_sym_DOT_DOT] = ACTIONS(1501), + [anon_sym_COLON_COLON] = ACTIONS(3009), + [anon_sym_const] = ACTIONS(3011), + [anon_sym_default] = ACTIONS(3013), + [anon_sym_union] = ACTIONS(3013), + [anon_sym_ref] = ACTIONS(1405), + [sym_mutable_specifier] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1411), + [aux_sym_string_literal_token1] = ACTIONS(1413), + [sym_char_literal] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1415), + [anon_sym_false] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3015), + [sym_super] = ACTIONS(3015), + [sym_crate] = ACTIONS(3015), + [sym_metavariable] = ACTIONS(3017), + [sym__raw_string_literal_start] = ACTIONS(1423), + [sym_float_literal] = ACTIONS(1411), }, [829] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1976), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_bracketed_type] = STATE(3618), + [sym_generic_type] = STATE(3491), + [sym_generic_type_with_turbofish] = STATE(3218), + [sym_macro_invocation] = STATE(2994), + [sym_scoped_identifier] = STATE(2165), + [sym_scoped_type_identifier] = STATE(2786), + [sym_const_block] = STATE(2994), + [sym__pattern] = STATE(3019), + [sym_tuple_pattern] = STATE(2994), + [sym_slice_pattern] = STATE(2994), + [sym_tuple_struct_pattern] = STATE(2994), + [sym_struct_pattern] = STATE(2994), + [sym_remaining_field_pattern] = STATE(2994), + [sym_mut_pattern] = STATE(2994), + [sym_range_pattern] = STATE(2994), + [sym_ref_pattern] = STATE(2994), + [sym_captured_pattern] = STATE(2994), + [sym_reference_pattern] = STATE(2994), + [sym_or_pattern] = STATE(2994), + [sym__literal_pattern] = STATE(2380), + [sym_negative_literal] = STATE(2383), + [sym_string_literal] = STATE(2383), + [sym_raw_string_literal] = STATE(2383), + [sym_boolean_literal] = STATE(2383), [sym_line_comment] = STATE(829), [sym_block_comment] = STATE(829), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_PLUS] = ACTIONS(3051), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(3053), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3055), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [sym_identifier] = ACTIONS(1621), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACK] = ACTIONS(1625), + [anon_sym_u8] = ACTIONS(1629), + [anon_sym_i8] = ACTIONS(1629), + [anon_sym_u16] = ACTIONS(1629), + [anon_sym_i16] = ACTIONS(1629), + [anon_sym_u32] = ACTIONS(1629), + [anon_sym_i32] = ACTIONS(1629), + [anon_sym_u64] = ACTIONS(1629), + [anon_sym_i64] = ACTIONS(1629), + [anon_sym_u128] = ACTIONS(1629), + [anon_sym_i128] = ACTIONS(1629), + [anon_sym_isize] = ACTIONS(1629), + [anon_sym_usize] = ACTIONS(1629), + [anon_sym_f32] = ACTIONS(1629), + [anon_sym_f64] = ACTIONS(1629), + [anon_sym_bool] = ACTIONS(1629), + [anon_sym_str] = ACTIONS(1629), + [anon_sym_char] = ACTIONS(1629), + [anon_sym_DASH] = ACTIONS(1631), + [anon_sym_AMP] = ACTIONS(1633), + [anon_sym_PIPE] = ACTIONS(1635), + [anon_sym_LT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1637), + [anon_sym_DOT_DOT] = ACTIONS(1639), + [anon_sym_COLON_COLON] = ACTIONS(1641), + [anon_sym_const] = ACTIONS(1645), + [anon_sym_default] = ACTIONS(1647), + [anon_sym_union] = ACTIONS(1647), + [anon_sym_ref] = ACTIONS(1649), + [sym_mutable_specifier] = ACTIONS(1651), + [sym_integer_literal] = ACTIONS(1653), + [aux_sym_string_literal_token1] = ACTIONS(1655), + [sym_char_literal] = ACTIONS(1653), + [anon_sym_true] = ACTIONS(1657), + [anon_sym_false] = ACTIONS(1657), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1659), + [sym_super] = ACTIONS(1659), + [sym_crate] = ACTIONS(1659), + [sym_metavariable] = ACTIONS(1661), + [sym__raw_string_literal_start] = ACTIONS(1663), + [sym_float_literal] = ACTIONS(1653), }, [830] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(3061), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_bracketed_type] = STATE(3574), + [sym_generic_type] = STATE(3491), + [sym_generic_type_with_turbofish] = STATE(3212), + [sym_macro_invocation] = STATE(2160), + [sym_scoped_identifier] = STATE(1997), + [sym_scoped_type_identifier] = STATE(2902), + [sym_const_block] = STATE(2160), + [sym__pattern] = STATE(2809), + [sym_tuple_pattern] = STATE(2160), + [sym_slice_pattern] = STATE(2160), + [sym_tuple_struct_pattern] = STATE(2160), + [sym_struct_pattern] = STATE(2160), + [sym_remaining_field_pattern] = STATE(2160), + [sym_mut_pattern] = STATE(2160), + [sym_range_pattern] = STATE(2160), + [sym_ref_pattern] = STATE(2160), + [sym_captured_pattern] = STATE(2160), + [sym_reference_pattern] = STATE(2160), + [sym_or_pattern] = STATE(2160), + [sym__literal_pattern] = STATE(2036), + [sym_negative_literal] = STATE(2048), + [sym_string_literal] = STATE(2048), + [sym_raw_string_literal] = STATE(2048), + [sym_boolean_literal] = STATE(2048), [sym_line_comment] = STATE(830), [sym_block_comment] = STATE(830), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_PLUS] = ACTIONS(3051), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(3057), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [sym_identifier] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(3003), + [anon_sym_u8] = ACTIONS(3005), + [anon_sym_i8] = ACTIONS(3005), + [anon_sym_u16] = ACTIONS(3005), + [anon_sym_i16] = ACTIONS(3005), + [anon_sym_u32] = ACTIONS(3005), + [anon_sym_i32] = ACTIONS(3005), + [anon_sym_u64] = ACTIONS(3005), + [anon_sym_i64] = ACTIONS(3005), + [anon_sym_u128] = ACTIONS(3005), + [anon_sym_i128] = ACTIONS(3005), + [anon_sym_isize] = ACTIONS(3005), + [anon_sym_usize] = ACTIONS(3005), + [anon_sym_f32] = ACTIONS(3005), + [anon_sym_f64] = ACTIONS(3005), + [anon_sym_bool] = ACTIONS(3005), + [anon_sym_str] = ACTIONS(3005), + [anon_sym_char] = ACTIONS(3005), + [anon_sym_DASH] = ACTIONS(1369), + [anon_sym_AMP] = ACTIONS(3007), + [anon_sym_PIPE] = ACTIONS(1375), + [anon_sym_LT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1499), + [anon_sym_DOT_DOT] = ACTIONS(1501), + [anon_sym_COLON_COLON] = ACTIONS(3009), + [anon_sym_const] = ACTIONS(3011), + [anon_sym_default] = ACTIONS(3013), + [anon_sym_union] = ACTIONS(3013), + [anon_sym_ref] = ACTIONS(1405), + [sym_mutable_specifier] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1411), + [aux_sym_string_literal_token1] = ACTIONS(1413), + [sym_char_literal] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1415), + [anon_sym_false] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3015), + [sym_super] = ACTIONS(3015), + [sym_crate] = ACTIONS(3015), + [sym_metavariable] = ACTIONS(3017), + [sym__raw_string_literal_start] = ACTIONS(1423), + [sym_float_literal] = ACTIONS(1411), }, [831] = { - [sym_function_modifiers] = STATE(3473), - [sym_removed_trait_bound] = STATE(1701), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1765), - [sym_bracketed_type] = STATE(3529), - [sym_lifetime] = STATE(3368), - [sym_array_type] = STATE(1701), - [sym_for_lifetimes] = STATE(1613), - [sym_function_type] = STATE(1701), - [sym_tuple_type] = STATE(1701), - [sym_unit_type] = STATE(1701), - [sym_generic_type] = STATE(1608), - [sym_generic_type_with_turbofish] = STATE(3521), - [sym_bounded_type] = STATE(1701), - [sym_reference_type] = STATE(1701), - [sym_pointer_type] = STATE(1701), - [sym_never_type] = STATE(1701), - [sym_abstract_type] = STATE(1701), - [sym_dynamic_type] = STATE(1701), - [sym_macro_invocation] = STATE(1701), - [sym_scoped_identifier] = STATE(3264), - [sym_scoped_type_identifier] = STATE(1526), + [sym_bracketed_type] = STATE(3618), + [sym_generic_type] = STATE(3491), + [sym_generic_type_with_turbofish] = STATE(3218), + [sym_macro_invocation] = STATE(2994), + [sym_scoped_identifier] = STATE(2165), + [sym_scoped_type_identifier] = STATE(2786), + [sym_const_block] = STATE(2994), + [sym__pattern] = STATE(3022), + [sym_tuple_pattern] = STATE(2994), + [sym_slice_pattern] = STATE(2994), + [sym_tuple_struct_pattern] = STATE(2994), + [sym_struct_pattern] = STATE(2994), + [sym_remaining_field_pattern] = STATE(2994), + [sym_mut_pattern] = STATE(2994), + [sym_range_pattern] = STATE(2994), + [sym_ref_pattern] = STATE(2994), + [sym_captured_pattern] = STATE(2994), + [sym_reference_pattern] = STATE(2994), + [sym_or_pattern] = STATE(2994), + [sym__literal_pattern] = STATE(2380), + [sym_negative_literal] = STATE(2383), + [sym_string_literal] = STATE(2383), + [sym_raw_string_literal] = STATE(2383), + [sym_boolean_literal] = STATE(2383), [sym_line_comment] = STATE(831), [sym_block_comment] = STATE(831), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3059), - [anon_sym_LPAREN] = ACTIONS(3061), - [anon_sym_LBRACK] = ACTIONS(3063), - [anon_sym_PLUS] = ACTIONS(3065), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_QMARK] = ACTIONS(3069), - [anon_sym_u8] = ACTIONS(3071), - [anon_sym_i8] = ACTIONS(3071), - [anon_sym_u16] = ACTIONS(3071), - [anon_sym_i16] = ACTIONS(3071), - [anon_sym_u32] = ACTIONS(3071), - [anon_sym_i32] = ACTIONS(3071), - [anon_sym_u64] = ACTIONS(3071), - [anon_sym_i64] = ACTIONS(3071), - [anon_sym_u128] = ACTIONS(3071), - [anon_sym_i128] = ACTIONS(3071), - [anon_sym_isize] = ACTIONS(3071), - [anon_sym_usize] = ACTIONS(3071), - [anon_sym_f32] = ACTIONS(3071), - [anon_sym_f64] = ACTIONS(3071), - [anon_sym_bool] = ACTIONS(3071), - [anon_sym_str] = ACTIONS(3071), - [anon_sym_char] = ACTIONS(3071), - [anon_sym_BANG] = ACTIONS(3073), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3077), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(3079), - [anon_sym_fn] = ACTIONS(3081), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(3083), - [anon_sym_union] = ACTIONS(3085), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(3087), - [sym_mutable_specifier] = ACTIONS(3089), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3091), - [sym_super] = ACTIONS(3091), - [sym_crate] = ACTIONS(3091), - [sym_metavariable] = ACTIONS(3093), + [sym_identifier] = ACTIONS(1621), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACK] = ACTIONS(1625), + [anon_sym_u8] = ACTIONS(1629), + [anon_sym_i8] = ACTIONS(1629), + [anon_sym_u16] = ACTIONS(1629), + [anon_sym_i16] = ACTIONS(1629), + [anon_sym_u32] = ACTIONS(1629), + [anon_sym_i32] = ACTIONS(1629), + [anon_sym_u64] = ACTIONS(1629), + [anon_sym_i64] = ACTIONS(1629), + [anon_sym_u128] = ACTIONS(1629), + [anon_sym_i128] = ACTIONS(1629), + [anon_sym_isize] = ACTIONS(1629), + [anon_sym_usize] = ACTIONS(1629), + [anon_sym_f32] = ACTIONS(1629), + [anon_sym_f64] = ACTIONS(1629), + [anon_sym_bool] = ACTIONS(1629), + [anon_sym_str] = ACTIONS(1629), + [anon_sym_char] = ACTIONS(1629), + [anon_sym_DASH] = ACTIONS(1631), + [anon_sym_AMP] = ACTIONS(1633), + [anon_sym_PIPE] = ACTIONS(1635), + [anon_sym_LT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1637), + [anon_sym_DOT_DOT] = ACTIONS(1639), + [anon_sym_COLON_COLON] = ACTIONS(1641), + [anon_sym_const] = ACTIONS(1645), + [anon_sym_default] = ACTIONS(1647), + [anon_sym_union] = ACTIONS(1647), + [anon_sym_ref] = ACTIONS(1649), + [sym_mutable_specifier] = ACTIONS(1651), + [sym_integer_literal] = ACTIONS(1653), + [aux_sym_string_literal_token1] = ACTIONS(1655), + [sym_char_literal] = ACTIONS(1653), + [anon_sym_true] = ACTIONS(1657), + [anon_sym_false] = ACTIONS(1657), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1659), + [sym_super] = ACTIONS(1659), + [sym_crate] = ACTIONS(1659), + [sym_metavariable] = ACTIONS(1661), + [sym__raw_string_literal_start] = ACTIONS(1663), + [sym_float_literal] = ACTIONS(1653), }, [832] = { - [sym_function_modifiers] = STATE(3338), - [sym_removed_trait_bound] = STATE(1451), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1213), - [sym_bracketed_type] = STATE(3514), - [sym_lifetime] = STATE(3511), - [sym_array_type] = STATE(1451), - [sym_for_lifetimes] = STATE(1592), - [sym_function_type] = STATE(1451), - [sym_tuple_type] = STATE(1451), - [sym_unit_type] = STATE(1451), - [sym_generic_type] = STATE(1078), - [sym_generic_type_with_turbofish] = STATE(3504), - [sym_bounded_type] = STATE(1451), - [sym_reference_type] = STATE(1451), - [sym_pointer_type] = STATE(1451), - [sym_never_type] = STATE(1451), - [sym_abstract_type] = STATE(1451), - [sym_dynamic_type] = STATE(1451), - [sym_macro_invocation] = STATE(1451), - [sym_scoped_identifier] = STATE(3202), - [sym_scoped_type_identifier] = STATE(1028), + [sym_bracketed_type] = STATE(3574), + [sym_generic_type] = STATE(3491), + [sym_generic_type_with_turbofish] = STATE(3212), + [sym_macro_invocation] = STATE(2160), + [sym_scoped_identifier] = STATE(1997), + [sym_scoped_type_identifier] = STATE(2902), + [sym_const_block] = STATE(2160), + [sym__pattern] = STATE(3157), + [sym_tuple_pattern] = STATE(2160), + [sym_slice_pattern] = STATE(2160), + [sym_tuple_struct_pattern] = STATE(2160), + [sym_struct_pattern] = STATE(2160), + [sym_remaining_field_pattern] = STATE(2160), + [sym_mut_pattern] = STATE(2160), + [sym_range_pattern] = STATE(2160), + [sym_ref_pattern] = STATE(2160), + [sym_captured_pattern] = STATE(2160), + [sym_reference_pattern] = STATE(2160), + [sym_or_pattern] = STATE(2160), + [sym__literal_pattern] = STATE(2036), + [sym_negative_literal] = STATE(2048), + [sym_string_literal] = STATE(2048), + [sym_raw_string_literal] = STATE(2048), + [sym_boolean_literal] = STATE(2048), [sym_line_comment] = STATE(832), [sym_block_comment] = STATE(832), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3095), - [anon_sym_LPAREN] = ACTIONS(3097), - [anon_sym_LBRACK] = ACTIONS(3099), - [anon_sym_PLUS] = ACTIONS(3101), - [anon_sym_STAR] = ACTIONS(3103), - [anon_sym_QMARK] = ACTIONS(3105), - [anon_sym_u8] = ACTIONS(3107), - [anon_sym_i8] = ACTIONS(3107), - [anon_sym_u16] = ACTIONS(3107), - [anon_sym_i16] = ACTIONS(3107), - [anon_sym_u32] = ACTIONS(3107), - [anon_sym_i32] = ACTIONS(3107), - [anon_sym_u64] = ACTIONS(3107), - [anon_sym_i64] = ACTIONS(3107), - [anon_sym_u128] = ACTIONS(3107), - [anon_sym_i128] = ACTIONS(3107), - [anon_sym_isize] = ACTIONS(3107), - [anon_sym_usize] = ACTIONS(3107), - [anon_sym_f32] = ACTIONS(3107), - [anon_sym_f64] = ACTIONS(3107), - [anon_sym_bool] = ACTIONS(3107), - [anon_sym_str] = ACTIONS(3107), - [anon_sym_char] = ACTIONS(3107), - [anon_sym_BANG] = ACTIONS(3109), - [anon_sym_AMP] = ACTIONS(3111), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3113), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(3115), - [anon_sym_fn] = ACTIONS(3117), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(3119), - [anon_sym_union] = ACTIONS(3121), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(3123), - [sym_mutable_specifier] = ACTIONS(3125), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3127), - [sym_super] = ACTIONS(3127), - [sym_crate] = ACTIONS(3127), - [sym_metavariable] = ACTIONS(3129), + [sym_identifier] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(3003), + [anon_sym_u8] = ACTIONS(3005), + [anon_sym_i8] = ACTIONS(3005), + [anon_sym_u16] = ACTIONS(3005), + [anon_sym_i16] = ACTIONS(3005), + [anon_sym_u32] = ACTIONS(3005), + [anon_sym_i32] = ACTIONS(3005), + [anon_sym_u64] = ACTIONS(3005), + [anon_sym_i64] = ACTIONS(3005), + [anon_sym_u128] = ACTIONS(3005), + [anon_sym_i128] = ACTIONS(3005), + [anon_sym_isize] = ACTIONS(3005), + [anon_sym_usize] = ACTIONS(3005), + [anon_sym_f32] = ACTIONS(3005), + [anon_sym_f64] = ACTIONS(3005), + [anon_sym_bool] = ACTIONS(3005), + [anon_sym_str] = ACTIONS(3005), + [anon_sym_char] = ACTIONS(3005), + [anon_sym_DASH] = ACTIONS(1369), + [anon_sym_AMP] = ACTIONS(3007), + [anon_sym_PIPE] = ACTIONS(1375), + [anon_sym_LT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1499), + [anon_sym_DOT_DOT] = ACTIONS(1501), + [anon_sym_COLON_COLON] = ACTIONS(3009), + [anon_sym_const] = ACTIONS(3011), + [anon_sym_default] = ACTIONS(3013), + [anon_sym_union] = ACTIONS(3013), + [anon_sym_ref] = ACTIONS(1405), + [sym_mutable_specifier] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1411), + [aux_sym_string_literal_token1] = ACTIONS(1413), + [sym_char_literal] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1415), + [anon_sym_false] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3015), + [sym_super] = ACTIONS(3015), + [sym_crate] = ACTIONS(3015), + [sym_metavariable] = ACTIONS(3017), + [sym__raw_string_literal_start] = ACTIONS(1423), + [sym_float_literal] = ACTIONS(1411), }, [833] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1976), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_bracketed_type] = STATE(3574), + [sym_generic_type] = STATE(3491), + [sym_generic_type_with_turbofish] = STATE(3212), + [sym_macro_invocation] = STATE(2160), + [sym_scoped_identifier] = STATE(1997), + [sym_scoped_type_identifier] = STATE(2902), + [sym_const_block] = STATE(2160), + [sym__pattern] = STATE(2144), + [sym_tuple_pattern] = STATE(2160), + [sym_slice_pattern] = STATE(2160), + [sym_tuple_struct_pattern] = STATE(2160), + [sym_struct_pattern] = STATE(2160), + [sym_remaining_field_pattern] = STATE(2160), + [sym_mut_pattern] = STATE(2160), + [sym_range_pattern] = STATE(2160), + [sym_ref_pattern] = STATE(2160), + [sym_captured_pattern] = STATE(2160), + [sym_reference_pattern] = STATE(2160), + [sym_or_pattern] = STATE(2160), + [sym__literal_pattern] = STATE(2036), + [sym_negative_literal] = STATE(2048), + [sym_string_literal] = STATE(2048), + [sym_raw_string_literal] = STATE(2048), + [sym_boolean_literal] = STATE(2048), [sym_line_comment] = STATE(833), [sym_block_comment] = STATE(833), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_PLUS] = ACTIONS(3051), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(3131), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [sym_identifier] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(3003), + [anon_sym_u8] = ACTIONS(3005), + [anon_sym_i8] = ACTIONS(3005), + [anon_sym_u16] = ACTIONS(3005), + [anon_sym_i16] = ACTIONS(3005), + [anon_sym_u32] = ACTIONS(3005), + [anon_sym_i32] = ACTIONS(3005), + [anon_sym_u64] = ACTIONS(3005), + [anon_sym_i64] = ACTIONS(3005), + [anon_sym_u128] = ACTIONS(3005), + [anon_sym_i128] = ACTIONS(3005), + [anon_sym_isize] = ACTIONS(3005), + [anon_sym_usize] = ACTIONS(3005), + [anon_sym_f32] = ACTIONS(3005), + [anon_sym_f64] = ACTIONS(3005), + [anon_sym_bool] = ACTIONS(3005), + [anon_sym_str] = ACTIONS(3005), + [anon_sym_char] = ACTIONS(3005), + [anon_sym_DASH] = ACTIONS(1369), + [anon_sym_AMP] = ACTIONS(3007), + [anon_sym_PIPE] = ACTIONS(1375), + [anon_sym_LT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1499), + [anon_sym_DOT_DOT] = ACTIONS(1501), + [anon_sym_COLON_COLON] = ACTIONS(3009), + [anon_sym_const] = ACTIONS(3011), + [anon_sym_default] = ACTIONS(3013), + [anon_sym_union] = ACTIONS(3013), + [anon_sym_ref] = ACTIONS(1405), + [sym_mutable_specifier] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1411), + [aux_sym_string_literal_token1] = ACTIONS(1413), + [sym_char_literal] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1415), + [anon_sym_false] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3015), + [sym_super] = ACTIONS(3015), + [sym_crate] = ACTIONS(3015), + [sym_metavariable] = ACTIONS(3017), + [sym__raw_string_literal_start] = ACTIONS(1423), + [sym_float_literal] = ACTIONS(1411), }, [834] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2799), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_bracketed_type] = STATE(3574), + [sym_generic_type] = STATE(3491), + [sym_generic_type_with_turbofish] = STATE(3212), + [sym_macro_invocation] = STATE(2160), + [sym_scoped_identifier] = STATE(1997), + [sym_scoped_type_identifier] = STATE(2902), + [sym_const_block] = STATE(2160), + [sym__pattern] = STATE(2523), + [sym_tuple_pattern] = STATE(2160), + [sym_slice_pattern] = STATE(2160), + [sym_tuple_struct_pattern] = STATE(2160), + [sym_struct_pattern] = STATE(2160), + [sym_remaining_field_pattern] = STATE(2160), + [sym_mut_pattern] = STATE(2160), + [sym_range_pattern] = STATE(2160), + [sym_ref_pattern] = STATE(2160), + [sym_captured_pattern] = STATE(2160), + [sym_reference_pattern] = STATE(2160), + [sym_or_pattern] = STATE(2160), + [sym__literal_pattern] = STATE(2036), + [sym_negative_literal] = STATE(2048), + [sym_string_literal] = STATE(2048), + [sym_raw_string_literal] = STATE(2048), + [sym_boolean_literal] = STATE(2048), [sym_line_comment] = STATE(834), [sym_block_comment] = STATE(834), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_RPAREN] = ACTIONS(3133), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [sym_identifier] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(3003), + [anon_sym_u8] = ACTIONS(3005), + [anon_sym_i8] = ACTIONS(3005), + [anon_sym_u16] = ACTIONS(3005), + [anon_sym_i16] = ACTIONS(3005), + [anon_sym_u32] = ACTIONS(3005), + [anon_sym_i32] = ACTIONS(3005), + [anon_sym_u64] = ACTIONS(3005), + [anon_sym_i64] = ACTIONS(3005), + [anon_sym_u128] = ACTIONS(3005), + [anon_sym_i128] = ACTIONS(3005), + [anon_sym_isize] = ACTIONS(3005), + [anon_sym_usize] = ACTIONS(3005), + [anon_sym_f32] = ACTIONS(3005), + [anon_sym_f64] = ACTIONS(3005), + [anon_sym_bool] = ACTIONS(3005), + [anon_sym_str] = ACTIONS(3005), + [anon_sym_char] = ACTIONS(3005), + [anon_sym_DASH] = ACTIONS(1369), + [anon_sym_AMP] = ACTIONS(3007), + [anon_sym_PIPE] = ACTIONS(1375), + [anon_sym_LT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1499), + [anon_sym_DOT_DOT] = ACTIONS(1501), + [anon_sym_COLON_COLON] = ACTIONS(3009), + [anon_sym_const] = ACTIONS(3011), + [anon_sym_default] = ACTIONS(3013), + [anon_sym_union] = ACTIONS(3013), + [anon_sym_ref] = ACTIONS(1405), + [sym_mutable_specifier] = ACTIONS(3121), + [sym_integer_literal] = ACTIONS(1411), + [aux_sym_string_literal_token1] = ACTIONS(1413), + [sym_char_literal] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1415), + [anon_sym_false] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3015), + [sym_super] = ACTIONS(3015), + [sym_crate] = ACTIONS(3015), + [sym_metavariable] = ACTIONS(3017), + [sym__raw_string_literal_start] = ACTIONS(1423), + [sym_float_literal] = ACTIONS(1411), }, [835] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2506), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_bracketed_type] = STATE(3574), + [sym_generic_type] = STATE(3491), + [sym_generic_type_with_turbofish] = STATE(3212), + [sym_macro_invocation] = STATE(2160), + [sym_scoped_identifier] = STATE(1997), + [sym_scoped_type_identifier] = STATE(2902), + [sym_const_block] = STATE(2160), + [sym__pattern] = STATE(2132), + [sym_tuple_pattern] = STATE(2160), + [sym_slice_pattern] = STATE(2160), + [sym_tuple_struct_pattern] = STATE(2160), + [sym_struct_pattern] = STATE(2160), + [sym_remaining_field_pattern] = STATE(2160), + [sym_mut_pattern] = STATE(2160), + [sym_range_pattern] = STATE(2160), + [sym_ref_pattern] = STATE(2160), + [sym_captured_pattern] = STATE(2160), + [sym_reference_pattern] = STATE(2160), + [sym_or_pattern] = STATE(2160), + [sym__literal_pattern] = STATE(2036), + [sym_negative_literal] = STATE(2048), + [sym_string_literal] = STATE(2048), + [sym_raw_string_literal] = STATE(2048), + [sym_boolean_literal] = STATE(2048), [sym_line_comment] = STATE(835), [sym_block_comment] = STATE(835), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_RPAREN] = ACTIONS(3135), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [sym_identifier] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(3003), + [anon_sym_u8] = ACTIONS(3005), + [anon_sym_i8] = ACTIONS(3005), + [anon_sym_u16] = ACTIONS(3005), + [anon_sym_i16] = ACTIONS(3005), + [anon_sym_u32] = ACTIONS(3005), + [anon_sym_i32] = ACTIONS(3005), + [anon_sym_u64] = ACTIONS(3005), + [anon_sym_i64] = ACTIONS(3005), + [anon_sym_u128] = ACTIONS(3005), + [anon_sym_i128] = ACTIONS(3005), + [anon_sym_isize] = ACTIONS(3005), + [anon_sym_usize] = ACTIONS(3005), + [anon_sym_f32] = ACTIONS(3005), + [anon_sym_f64] = ACTIONS(3005), + [anon_sym_bool] = ACTIONS(3005), + [anon_sym_str] = ACTIONS(3005), + [anon_sym_char] = ACTIONS(3005), + [anon_sym_DASH] = ACTIONS(1369), + [anon_sym_AMP] = ACTIONS(3007), + [anon_sym_PIPE] = ACTIONS(1375), + [anon_sym_LT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1499), + [anon_sym_DOT_DOT] = ACTIONS(1501), + [anon_sym_COLON_COLON] = ACTIONS(3009), + [anon_sym_const] = ACTIONS(3011), + [anon_sym_default] = ACTIONS(3013), + [anon_sym_union] = ACTIONS(3013), + [anon_sym_ref] = ACTIONS(1405), + [sym_mutable_specifier] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1411), + [aux_sym_string_literal_token1] = ACTIONS(1413), + [sym_char_literal] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1415), + [anon_sym_false] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3015), + [sym_super] = ACTIONS(3015), + [sym_crate] = ACTIONS(3015), + [sym_metavariable] = ACTIONS(3017), + [sym__raw_string_literal_start] = ACTIONS(1423), + [sym_float_literal] = ACTIONS(1411), }, [836] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2799), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_bracketed_type] = STATE(3574), + [sym_generic_type] = STATE(3491), + [sym_generic_type_with_turbofish] = STATE(3212), + [sym_macro_invocation] = STATE(2160), + [sym_scoped_identifier] = STATE(1997), + [sym_scoped_type_identifier] = STATE(2902), + [sym_const_block] = STATE(2160), + [sym__pattern] = STATE(3116), + [sym_tuple_pattern] = STATE(2160), + [sym_slice_pattern] = STATE(2160), + [sym_tuple_struct_pattern] = STATE(2160), + [sym_struct_pattern] = STATE(2160), + [sym_remaining_field_pattern] = STATE(2160), + [sym_mut_pattern] = STATE(2160), + [sym_range_pattern] = STATE(2160), + [sym_ref_pattern] = STATE(2160), + [sym_captured_pattern] = STATE(2160), + [sym_reference_pattern] = STATE(2160), + [sym_or_pattern] = STATE(2160), + [sym__literal_pattern] = STATE(2036), + [sym_negative_literal] = STATE(2048), + [sym_string_literal] = STATE(2048), + [sym_raw_string_literal] = STATE(2048), + [sym_boolean_literal] = STATE(2048), [sym_line_comment] = STATE(836), [sym_block_comment] = STATE(836), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_RPAREN] = ACTIONS(3137), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [sym_identifier] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(3003), + [anon_sym_u8] = ACTIONS(3005), + [anon_sym_i8] = ACTIONS(3005), + [anon_sym_u16] = ACTIONS(3005), + [anon_sym_i16] = ACTIONS(3005), + [anon_sym_u32] = ACTIONS(3005), + [anon_sym_i32] = ACTIONS(3005), + [anon_sym_u64] = ACTIONS(3005), + [anon_sym_i64] = ACTIONS(3005), + [anon_sym_u128] = ACTIONS(3005), + [anon_sym_i128] = ACTIONS(3005), + [anon_sym_isize] = ACTIONS(3005), + [anon_sym_usize] = ACTIONS(3005), + [anon_sym_f32] = ACTIONS(3005), + [anon_sym_f64] = ACTIONS(3005), + [anon_sym_bool] = ACTIONS(3005), + [anon_sym_str] = ACTIONS(3005), + [anon_sym_char] = ACTIONS(3005), + [anon_sym_DASH] = ACTIONS(1369), + [anon_sym_AMP] = ACTIONS(3007), + [anon_sym_PIPE] = ACTIONS(1375), + [anon_sym_LT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1499), + [anon_sym_DOT_DOT] = ACTIONS(1501), + [anon_sym_COLON_COLON] = ACTIONS(3009), + [anon_sym_const] = ACTIONS(3011), + [anon_sym_default] = ACTIONS(3013), + [anon_sym_union] = ACTIONS(3013), + [anon_sym_ref] = ACTIONS(1405), + [sym_mutable_specifier] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1411), + [aux_sym_string_literal_token1] = ACTIONS(1413), + [sym_char_literal] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1415), + [anon_sym_false] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3015), + [sym_super] = ACTIONS(3015), + [sym_crate] = ACTIONS(3015), + [sym_metavariable] = ACTIONS(3017), + [sym__raw_string_literal_start] = ACTIONS(1423), + [sym_float_literal] = ACTIONS(1411), }, [837] = { - [sym_function_modifiers] = STATE(3473), - [sym_removed_trait_bound] = STATE(1701), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1747), - [sym_bracketed_type] = STATE(3529), - [sym_lifetime] = STATE(831), - [sym_array_type] = STATE(1701), - [sym_for_lifetimes] = STATE(1613), - [sym_function_type] = STATE(1701), - [sym_tuple_type] = STATE(1701), - [sym_unit_type] = STATE(1701), - [sym_generic_type] = STATE(1608), - [sym_generic_type_with_turbofish] = STATE(3521), - [sym_bounded_type] = STATE(1701), - [sym_reference_type] = STATE(1701), - [sym_pointer_type] = STATE(1701), - [sym_never_type] = STATE(1701), - [sym_abstract_type] = STATE(1701), - [sym_dynamic_type] = STATE(1701), - [sym_macro_invocation] = STATE(1701), - [sym_scoped_identifier] = STATE(3264), - [sym_scoped_type_identifier] = STATE(1526), + [sym_bracketed_type] = STATE(3574), + [sym_generic_type] = STATE(3491), + [sym_generic_type_with_turbofish] = STATE(3212), + [sym_macro_invocation] = STATE(2160), + [sym_scoped_identifier] = STATE(1997), + [sym_scoped_type_identifier] = STATE(2902), + [sym_const_block] = STATE(2160), + [sym__pattern] = STATE(3115), + [sym_tuple_pattern] = STATE(2160), + [sym_slice_pattern] = STATE(2160), + [sym_tuple_struct_pattern] = STATE(2160), + [sym_struct_pattern] = STATE(2160), + [sym_remaining_field_pattern] = STATE(2160), + [sym_mut_pattern] = STATE(2160), + [sym_range_pattern] = STATE(2160), + [sym_ref_pattern] = STATE(2160), + [sym_captured_pattern] = STATE(2160), + [sym_reference_pattern] = STATE(2160), + [sym_or_pattern] = STATE(2160), + [sym__literal_pattern] = STATE(2036), + [sym_negative_literal] = STATE(2048), + [sym_string_literal] = STATE(2048), + [sym_raw_string_literal] = STATE(2048), + [sym_boolean_literal] = STATE(2048), [sym_line_comment] = STATE(837), [sym_block_comment] = STATE(837), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3059), - [anon_sym_LPAREN] = ACTIONS(3061), - [anon_sym_LBRACK] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_QMARK] = ACTIONS(3069), - [anon_sym_u8] = ACTIONS(3071), - [anon_sym_i8] = ACTIONS(3071), - [anon_sym_u16] = ACTIONS(3071), - [anon_sym_i16] = ACTIONS(3071), - [anon_sym_u32] = ACTIONS(3071), - [anon_sym_i32] = ACTIONS(3071), - [anon_sym_u64] = ACTIONS(3071), - [anon_sym_i64] = ACTIONS(3071), - [anon_sym_u128] = ACTIONS(3071), - [anon_sym_i128] = ACTIONS(3071), - [anon_sym_isize] = ACTIONS(3071), - [anon_sym_usize] = ACTIONS(3071), - [anon_sym_f32] = ACTIONS(3071), - [anon_sym_f64] = ACTIONS(3071), - [anon_sym_bool] = ACTIONS(3071), - [anon_sym_str] = ACTIONS(3071), - [anon_sym_char] = ACTIONS(3071), - [anon_sym_BANG] = ACTIONS(3073), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3077), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(3079), - [anon_sym_fn] = ACTIONS(3081), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(3083), - [anon_sym_union] = ACTIONS(3085), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(3087), - [sym_mutable_specifier] = ACTIONS(3139), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3091), - [sym_super] = ACTIONS(3091), - [sym_crate] = ACTIONS(3091), - [sym_metavariable] = ACTIONS(3093), + [sym_identifier] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(3003), + [anon_sym_u8] = ACTIONS(3005), + [anon_sym_i8] = ACTIONS(3005), + [anon_sym_u16] = ACTIONS(3005), + [anon_sym_i16] = ACTIONS(3005), + [anon_sym_u32] = ACTIONS(3005), + [anon_sym_i32] = ACTIONS(3005), + [anon_sym_u64] = ACTIONS(3005), + [anon_sym_i64] = ACTIONS(3005), + [anon_sym_u128] = ACTIONS(3005), + [anon_sym_i128] = ACTIONS(3005), + [anon_sym_isize] = ACTIONS(3005), + [anon_sym_usize] = ACTIONS(3005), + [anon_sym_f32] = ACTIONS(3005), + [anon_sym_f64] = ACTIONS(3005), + [anon_sym_bool] = ACTIONS(3005), + [anon_sym_str] = ACTIONS(3005), + [anon_sym_char] = ACTIONS(3005), + [anon_sym_DASH] = ACTIONS(1369), + [anon_sym_AMP] = ACTIONS(3007), + [anon_sym_PIPE] = ACTIONS(1375), + [anon_sym_LT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1499), + [anon_sym_DOT_DOT] = ACTIONS(1501), + [anon_sym_COLON_COLON] = ACTIONS(3009), + [anon_sym_const] = ACTIONS(3011), + [anon_sym_default] = ACTIONS(3013), + [anon_sym_union] = ACTIONS(3013), + [anon_sym_ref] = ACTIONS(1405), + [sym_mutable_specifier] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1411), + [aux_sym_string_literal_token1] = ACTIONS(1413), + [sym_char_literal] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1415), + [anon_sym_false] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3015), + [sym_super] = ACTIONS(3015), + [sym_crate] = ACTIONS(3015), + [sym_metavariable] = ACTIONS(3017), + [sym__raw_string_literal_start] = ACTIONS(1423), + [sym_float_literal] = ACTIONS(1411), }, [838] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1983), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(833), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_bracketed_type] = STATE(3574), + [sym_generic_type] = STATE(3491), + [sym_generic_type_with_turbofish] = STATE(3212), + [sym_macro_invocation] = STATE(2160), + [sym_scoped_identifier] = STATE(1997), + [sym_scoped_type_identifier] = STATE(2902), + [sym_const_block] = STATE(2160), + [sym__pattern] = STATE(2756), + [sym_tuple_pattern] = STATE(2160), + [sym_slice_pattern] = STATE(2160), + [sym_tuple_struct_pattern] = STATE(2160), + [sym_struct_pattern] = STATE(2160), + [sym_remaining_field_pattern] = STATE(2160), + [sym_mut_pattern] = STATE(2160), + [sym_range_pattern] = STATE(2160), + [sym_ref_pattern] = STATE(2160), + [sym_captured_pattern] = STATE(2160), + [sym_reference_pattern] = STATE(2160), + [sym_or_pattern] = STATE(2160), + [sym__literal_pattern] = STATE(2036), + [sym_negative_literal] = STATE(2048), + [sym_string_literal] = STATE(2048), + [sym_raw_string_literal] = STATE(2048), + [sym_boolean_literal] = STATE(2048), [sym_line_comment] = STATE(838), [sym_block_comment] = STATE(838), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(3141), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [sym_identifier] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(3003), + [anon_sym_u8] = ACTIONS(3005), + [anon_sym_i8] = ACTIONS(3005), + [anon_sym_u16] = ACTIONS(3005), + [anon_sym_i16] = ACTIONS(3005), + [anon_sym_u32] = ACTIONS(3005), + [anon_sym_i32] = ACTIONS(3005), + [anon_sym_u64] = ACTIONS(3005), + [anon_sym_i64] = ACTIONS(3005), + [anon_sym_u128] = ACTIONS(3005), + [anon_sym_i128] = ACTIONS(3005), + [anon_sym_isize] = ACTIONS(3005), + [anon_sym_usize] = ACTIONS(3005), + [anon_sym_f32] = ACTIONS(3005), + [anon_sym_f64] = ACTIONS(3005), + [anon_sym_bool] = ACTIONS(3005), + [anon_sym_str] = ACTIONS(3005), + [anon_sym_char] = ACTIONS(3005), + [anon_sym_DASH] = ACTIONS(1369), + [anon_sym_AMP] = ACTIONS(3007), + [anon_sym_PIPE] = ACTIONS(1375), + [anon_sym_LT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1499), + [anon_sym_DOT_DOT] = ACTIONS(1501), + [anon_sym_COLON_COLON] = ACTIONS(3009), + [anon_sym_const] = ACTIONS(3011), + [anon_sym_default] = ACTIONS(3013), + [anon_sym_union] = ACTIONS(3013), + [anon_sym_ref] = ACTIONS(1405), + [sym_mutable_specifier] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1411), + [aux_sym_string_literal_token1] = ACTIONS(1413), + [sym_char_literal] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1415), + [anon_sym_false] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3123), + [sym_super] = ACTIONS(3015), + [sym_crate] = ACTIONS(3015), + [sym_metavariable] = ACTIONS(3017), + [sym__raw_string_literal_start] = ACTIONS(1423), + [sym_float_literal] = ACTIONS(1411), }, [839] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2799), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_bracketed_type] = STATE(3574), + [sym_generic_type] = STATE(3491), + [sym_generic_type_with_turbofish] = STATE(3212), + [sym_macro_invocation] = STATE(2160), + [sym_scoped_identifier] = STATE(1997), + [sym_scoped_type_identifier] = STATE(2902), + [sym_const_block] = STATE(2160), + [sym__pattern] = STATE(2480), + [sym_tuple_pattern] = STATE(2160), + [sym_slice_pattern] = STATE(2160), + [sym_tuple_struct_pattern] = STATE(2160), + [sym_struct_pattern] = STATE(2160), + [sym_remaining_field_pattern] = STATE(2160), + [sym_mut_pattern] = STATE(2160), + [sym_range_pattern] = STATE(2160), + [sym_ref_pattern] = STATE(2160), + [sym_captured_pattern] = STATE(2160), + [sym_reference_pattern] = STATE(2160), + [sym_or_pattern] = STATE(2160), + [sym__literal_pattern] = STATE(2036), + [sym_negative_literal] = STATE(2048), + [sym_string_literal] = STATE(2048), + [sym_raw_string_literal] = STATE(2048), + [sym_boolean_literal] = STATE(2048), [sym_line_comment] = STATE(839), [sym_block_comment] = STATE(839), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_RPAREN] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [sym_identifier] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(3003), + [anon_sym_u8] = ACTIONS(3005), + [anon_sym_i8] = ACTIONS(3005), + [anon_sym_u16] = ACTIONS(3005), + [anon_sym_i16] = ACTIONS(3005), + [anon_sym_u32] = ACTIONS(3005), + [anon_sym_i32] = ACTIONS(3005), + [anon_sym_u64] = ACTIONS(3005), + [anon_sym_i64] = ACTIONS(3005), + [anon_sym_u128] = ACTIONS(3005), + [anon_sym_i128] = ACTIONS(3005), + [anon_sym_isize] = ACTIONS(3005), + [anon_sym_usize] = ACTIONS(3005), + [anon_sym_f32] = ACTIONS(3005), + [anon_sym_f64] = ACTIONS(3005), + [anon_sym_bool] = ACTIONS(3005), + [anon_sym_str] = ACTIONS(3005), + [anon_sym_char] = ACTIONS(3005), + [anon_sym_DASH] = ACTIONS(1369), + [anon_sym_AMP] = ACTIONS(3007), + [anon_sym_PIPE] = ACTIONS(1375), + [anon_sym_LT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1499), + [anon_sym_DOT_DOT] = ACTIONS(1501), + [anon_sym_COLON_COLON] = ACTIONS(3009), + [anon_sym_const] = ACTIONS(3011), + [anon_sym_default] = ACTIONS(3013), + [anon_sym_union] = ACTIONS(3013), + [anon_sym_ref] = ACTIONS(1405), + [sym_mutable_specifier] = ACTIONS(3125), + [sym_integer_literal] = ACTIONS(1411), + [aux_sym_string_literal_token1] = ACTIONS(1413), + [sym_char_literal] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1415), + [anon_sym_false] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3015), + [sym_super] = ACTIONS(3015), + [sym_crate] = ACTIONS(3015), + [sym_metavariable] = ACTIONS(3017), + [sym__raw_string_literal_start] = ACTIONS(1423), + [sym_float_literal] = ACTIONS(1411), }, [840] = { - [sym_function_modifiers] = STATE(3427), - [sym_higher_ranked_trait_bound] = STATE(2208), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2177), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(2178), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_bracketed_type] = STATE(3574), + [sym_generic_type] = STATE(3491), + [sym_generic_type_with_turbofish] = STATE(3212), + [sym_macro_invocation] = STATE(2160), + [sym_scoped_identifier] = STATE(1997), + [sym_scoped_type_identifier] = STATE(2902), + [sym_const_block] = STATE(2160), + [sym__pattern] = STATE(2133), + [sym_tuple_pattern] = STATE(2160), + [sym_slice_pattern] = STATE(2160), + [sym_tuple_struct_pattern] = STATE(2160), + [sym_struct_pattern] = STATE(2160), + [sym_remaining_field_pattern] = STATE(2160), + [sym_mut_pattern] = STATE(2160), + [sym_range_pattern] = STATE(2160), + [sym_ref_pattern] = STATE(2160), + [sym_captured_pattern] = STATE(2160), + [sym_reference_pattern] = STATE(2160), + [sym_or_pattern] = STATE(2160), + [sym__literal_pattern] = STATE(2036), + [sym_negative_literal] = STATE(2048), + [sym_string_literal] = STATE(2048), + [sym_raw_string_literal] = STATE(2048), + [sym_boolean_literal] = STATE(2048), [sym_line_comment] = STATE(840), [sym_block_comment] = STATE(840), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(3145), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [sym_identifier] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(3003), + [anon_sym_u8] = ACTIONS(3005), + [anon_sym_i8] = ACTIONS(3005), + [anon_sym_u16] = ACTIONS(3005), + [anon_sym_i16] = ACTIONS(3005), + [anon_sym_u32] = ACTIONS(3005), + [anon_sym_i32] = ACTIONS(3005), + [anon_sym_u64] = ACTIONS(3005), + [anon_sym_i64] = ACTIONS(3005), + [anon_sym_u128] = ACTIONS(3005), + [anon_sym_i128] = ACTIONS(3005), + [anon_sym_isize] = ACTIONS(3005), + [anon_sym_usize] = ACTIONS(3005), + [anon_sym_f32] = ACTIONS(3005), + [anon_sym_f64] = ACTIONS(3005), + [anon_sym_bool] = ACTIONS(3005), + [anon_sym_str] = ACTIONS(3005), + [anon_sym_char] = ACTIONS(3005), + [anon_sym_DASH] = ACTIONS(1369), + [anon_sym_AMP] = ACTIONS(3007), + [anon_sym_PIPE] = ACTIONS(1375), + [anon_sym_LT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1499), + [anon_sym_DOT_DOT] = ACTIONS(1501), + [anon_sym_COLON_COLON] = ACTIONS(3009), + [anon_sym_const] = ACTIONS(3011), + [anon_sym_default] = ACTIONS(3013), + [anon_sym_union] = ACTIONS(3013), + [anon_sym_ref] = ACTIONS(1405), + [sym_mutable_specifier] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1411), + [aux_sym_string_literal_token1] = ACTIONS(1413), + [sym_char_literal] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1415), + [anon_sym_false] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3015), + [sym_super] = ACTIONS(3015), + [sym_crate] = ACTIONS(3015), + [sym_metavariable] = ACTIONS(3017), + [sym__raw_string_literal_start] = ACTIONS(1423), + [sym_float_literal] = ACTIONS(1411), }, [841] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_type_parameters] = STATE(950), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2369), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(2382), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(2165), + [sym_bracketed_type] = STATE(3574), + [sym_generic_type] = STATE(3491), + [sym_generic_type_with_turbofish] = STATE(3212), + [sym_macro_invocation] = STATE(2160), + [sym_scoped_identifier] = STATE(1997), + [sym_scoped_type_identifier] = STATE(2902), + [sym_const_block] = STATE(2160), + [sym__pattern] = STATE(3387), + [sym_tuple_pattern] = STATE(2160), + [sym_slice_pattern] = STATE(2160), + [sym_tuple_struct_pattern] = STATE(2160), + [sym_struct_pattern] = STATE(2160), + [sym_remaining_field_pattern] = STATE(2160), + [sym_mut_pattern] = STATE(2160), + [sym_range_pattern] = STATE(2160), + [sym_ref_pattern] = STATE(2160), + [sym_captured_pattern] = STATE(2160), + [sym_reference_pattern] = STATE(2160), + [sym_or_pattern] = STATE(2160), + [sym__literal_pattern] = STATE(2036), + [sym_negative_literal] = STATE(2048), + [sym_string_literal] = STATE(2048), + [sym_raw_string_literal] = STATE(2048), + [sym_boolean_literal] = STATE(2048), [sym_line_comment] = STATE(841), [sym_block_comment] = STATE(841), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3147), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(3149), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(3151), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [sym_identifier] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(3003), + [anon_sym_u8] = ACTIONS(3005), + [anon_sym_i8] = ACTIONS(3005), + [anon_sym_u16] = ACTIONS(3005), + [anon_sym_i16] = ACTIONS(3005), + [anon_sym_u32] = ACTIONS(3005), + [anon_sym_i32] = ACTIONS(3005), + [anon_sym_u64] = ACTIONS(3005), + [anon_sym_i64] = ACTIONS(3005), + [anon_sym_u128] = ACTIONS(3005), + [anon_sym_i128] = ACTIONS(3005), + [anon_sym_isize] = ACTIONS(3005), + [anon_sym_usize] = ACTIONS(3005), + [anon_sym_f32] = ACTIONS(3005), + [anon_sym_f64] = ACTIONS(3005), + [anon_sym_bool] = ACTIONS(3005), + [anon_sym_str] = ACTIONS(3005), + [anon_sym_char] = ACTIONS(3005), + [anon_sym_DASH] = ACTIONS(1369), + [anon_sym_AMP] = ACTIONS(3007), + [anon_sym_PIPE] = ACTIONS(1375), + [anon_sym_LT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1499), + [anon_sym_DOT_DOT] = ACTIONS(1501), + [anon_sym_COLON_COLON] = ACTIONS(3009), + [anon_sym_const] = ACTIONS(3011), + [anon_sym_default] = ACTIONS(3013), + [anon_sym_union] = ACTIONS(3013), + [anon_sym_ref] = ACTIONS(1405), + [sym_mutable_specifier] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1411), + [aux_sym_string_literal_token1] = ACTIONS(1413), + [sym_char_literal] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1415), + [anon_sym_false] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3015), + [sym_super] = ACTIONS(3015), + [sym_crate] = ACTIONS(3015), + [sym_metavariable] = ACTIONS(3017), + [sym__raw_string_literal_start] = ACTIONS(1423), + [sym_float_literal] = ACTIONS(1411), }, [842] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2622), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_bracketed_type] = STATE(3574), + [sym_generic_type] = STATE(3491), + [sym_generic_type_with_turbofish] = STATE(3212), + [sym_macro_invocation] = STATE(2160), + [sym_scoped_identifier] = STATE(1997), + [sym_scoped_type_identifier] = STATE(2902), + [sym_const_block] = STATE(2160), + [sym__pattern] = STATE(3393), + [sym_tuple_pattern] = STATE(2160), + [sym_slice_pattern] = STATE(2160), + [sym_tuple_struct_pattern] = STATE(2160), + [sym_struct_pattern] = STATE(2160), + [sym_remaining_field_pattern] = STATE(2160), + [sym_mut_pattern] = STATE(2160), + [sym_range_pattern] = STATE(2160), + [sym_ref_pattern] = STATE(2160), + [sym_captured_pattern] = STATE(2160), + [sym_reference_pattern] = STATE(2160), + [sym_or_pattern] = STATE(2160), + [sym__literal_pattern] = STATE(2036), + [sym_negative_literal] = STATE(2048), + [sym_string_literal] = STATE(2048), + [sym_raw_string_literal] = STATE(2048), + [sym_boolean_literal] = STATE(2048), [sym_line_comment] = STATE(842), [sym_block_comment] = STATE(842), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3153), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [sym_identifier] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(3003), + [anon_sym_u8] = ACTIONS(3005), + [anon_sym_i8] = ACTIONS(3005), + [anon_sym_u16] = ACTIONS(3005), + [anon_sym_i16] = ACTIONS(3005), + [anon_sym_u32] = ACTIONS(3005), + [anon_sym_i32] = ACTIONS(3005), + [anon_sym_u64] = ACTIONS(3005), + [anon_sym_i64] = ACTIONS(3005), + [anon_sym_u128] = ACTIONS(3005), + [anon_sym_i128] = ACTIONS(3005), + [anon_sym_isize] = ACTIONS(3005), + [anon_sym_usize] = ACTIONS(3005), + [anon_sym_f32] = ACTIONS(3005), + [anon_sym_f64] = ACTIONS(3005), + [anon_sym_bool] = ACTIONS(3005), + [anon_sym_str] = ACTIONS(3005), + [anon_sym_char] = ACTIONS(3005), + [anon_sym_DASH] = ACTIONS(1369), + [anon_sym_AMP] = ACTIONS(3007), + [anon_sym_PIPE] = ACTIONS(1375), + [anon_sym_LT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1499), + [anon_sym_DOT_DOT] = ACTIONS(1501), + [anon_sym_COLON_COLON] = ACTIONS(3009), + [anon_sym_const] = ACTIONS(3011), + [anon_sym_default] = ACTIONS(3013), + [anon_sym_union] = ACTIONS(3013), + [anon_sym_ref] = ACTIONS(1405), + [sym_mutable_specifier] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1411), + [aux_sym_string_literal_token1] = ACTIONS(1413), + [sym_char_literal] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1415), + [anon_sym_false] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3015), + [sym_super] = ACTIONS(3015), + [sym_crate] = ACTIONS(3015), + [sym_metavariable] = ACTIONS(3017), + [sym__raw_string_literal_start] = ACTIONS(1423), + [sym_float_literal] = ACTIONS(1411), }, [843] = { - [sym_function_modifiers] = STATE(3427), - [sym_higher_ranked_trait_bound] = STATE(2208), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2207), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(2223), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_bracketed_type] = STATE(3574), + [sym_generic_type] = STATE(3491), + [sym_generic_type_with_turbofish] = STATE(3212), + [sym_macro_invocation] = STATE(2160), + [sym_scoped_identifier] = STATE(1997), + [sym_scoped_type_identifier] = STATE(2902), + [sym_const_block] = STATE(2160), + [sym__pattern] = STATE(2137), + [sym_tuple_pattern] = STATE(2160), + [sym_slice_pattern] = STATE(2160), + [sym_tuple_struct_pattern] = STATE(2160), + [sym_struct_pattern] = STATE(2160), + [sym_remaining_field_pattern] = STATE(2160), + [sym_mut_pattern] = STATE(2160), + [sym_range_pattern] = STATE(2160), + [sym_ref_pattern] = STATE(2160), + [sym_captured_pattern] = STATE(2160), + [sym_reference_pattern] = STATE(2160), + [sym_or_pattern] = STATE(2160), + [sym__literal_pattern] = STATE(2036), + [sym_negative_literal] = STATE(2048), + [sym_string_literal] = STATE(2048), + [sym_raw_string_literal] = STATE(2048), + [sym_boolean_literal] = STATE(2048), [sym_line_comment] = STATE(843), [sym_block_comment] = STATE(843), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(3145), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [sym_identifier] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(3003), + [anon_sym_u8] = ACTIONS(3005), + [anon_sym_i8] = ACTIONS(3005), + [anon_sym_u16] = ACTIONS(3005), + [anon_sym_i16] = ACTIONS(3005), + [anon_sym_u32] = ACTIONS(3005), + [anon_sym_i32] = ACTIONS(3005), + [anon_sym_u64] = ACTIONS(3005), + [anon_sym_i64] = ACTIONS(3005), + [anon_sym_u128] = ACTIONS(3005), + [anon_sym_i128] = ACTIONS(3005), + [anon_sym_isize] = ACTIONS(3005), + [anon_sym_usize] = ACTIONS(3005), + [anon_sym_f32] = ACTIONS(3005), + [anon_sym_f64] = ACTIONS(3005), + [anon_sym_bool] = ACTIONS(3005), + [anon_sym_str] = ACTIONS(3005), + [anon_sym_char] = ACTIONS(3005), + [anon_sym_DASH] = ACTIONS(1369), + [anon_sym_AMP] = ACTIONS(3007), + [anon_sym_PIPE] = ACTIONS(1375), + [anon_sym_LT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1499), + [anon_sym_DOT_DOT] = ACTIONS(1501), + [anon_sym_COLON_COLON] = ACTIONS(3009), + [anon_sym_const] = ACTIONS(3011), + [anon_sym_default] = ACTIONS(3013), + [anon_sym_union] = ACTIONS(3013), + [anon_sym_ref] = ACTIONS(1405), + [sym_mutable_specifier] = ACTIONS(3127), + [sym_integer_literal] = ACTIONS(1411), + [aux_sym_string_literal_token1] = ACTIONS(1413), + [sym_char_literal] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1415), + [anon_sym_false] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3015), + [sym_super] = ACTIONS(3015), + [sym_crate] = ACTIONS(3015), + [sym_metavariable] = ACTIONS(3017), + [sym__raw_string_literal_start] = ACTIONS(1423), + [sym_float_literal] = ACTIONS(1411), }, [844] = { - [sym_function_modifiers] = STATE(3427), - [sym_higher_ranked_trait_bound] = STATE(2208), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2207), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(2178), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_bracketed_type] = STATE(3574), + [sym_generic_type] = STATE(3491), + [sym_generic_type_with_turbofish] = STATE(3212), + [sym_macro_invocation] = STATE(2160), + [sym_scoped_identifier] = STATE(1997), + [sym_scoped_type_identifier] = STATE(2902), + [sym_const_block] = STATE(2160), + [sym__pattern] = STATE(2441), + [sym_tuple_pattern] = STATE(2160), + [sym_slice_pattern] = STATE(2160), + [sym_tuple_struct_pattern] = STATE(2160), + [sym_struct_pattern] = STATE(2160), + [sym_remaining_field_pattern] = STATE(2160), + [sym_mut_pattern] = STATE(2160), + [sym_range_pattern] = STATE(2160), + [sym_ref_pattern] = STATE(2160), + [sym_captured_pattern] = STATE(2160), + [sym_reference_pattern] = STATE(2160), + [sym_or_pattern] = STATE(2160), + [sym__literal_pattern] = STATE(2036), + [sym_negative_literal] = STATE(2048), + [sym_string_literal] = STATE(2048), + [sym_raw_string_literal] = STATE(2048), + [sym_boolean_literal] = STATE(2048), [sym_line_comment] = STATE(844), [sym_block_comment] = STATE(844), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(3145), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [sym_identifier] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(3003), + [anon_sym_u8] = ACTIONS(3005), + [anon_sym_i8] = ACTIONS(3005), + [anon_sym_u16] = ACTIONS(3005), + [anon_sym_i16] = ACTIONS(3005), + [anon_sym_u32] = ACTIONS(3005), + [anon_sym_i32] = ACTIONS(3005), + [anon_sym_u64] = ACTIONS(3005), + [anon_sym_i64] = ACTIONS(3005), + [anon_sym_u128] = ACTIONS(3005), + [anon_sym_i128] = ACTIONS(3005), + [anon_sym_isize] = ACTIONS(3005), + [anon_sym_usize] = ACTIONS(3005), + [anon_sym_f32] = ACTIONS(3005), + [anon_sym_f64] = ACTIONS(3005), + [anon_sym_bool] = ACTIONS(3005), + [anon_sym_str] = ACTIONS(3005), + [anon_sym_char] = ACTIONS(3005), + [anon_sym_DASH] = ACTIONS(1369), + [anon_sym_AMP] = ACTIONS(3007), + [anon_sym_PIPE] = ACTIONS(1375), + [anon_sym_LT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1499), + [anon_sym_DOT_DOT] = ACTIONS(1501), + [anon_sym_COLON_COLON] = ACTIONS(3009), + [anon_sym_const] = ACTIONS(3011), + [anon_sym_default] = ACTIONS(3013), + [anon_sym_union] = ACTIONS(3013), + [anon_sym_ref] = ACTIONS(1405), + [sym_mutable_specifier] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1411), + [aux_sym_string_literal_token1] = ACTIONS(1413), + [sym_char_literal] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1415), + [anon_sym_false] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3015), + [sym_super] = ACTIONS(3015), + [sym_crate] = ACTIONS(3015), + [sym_metavariable] = ACTIONS(3017), + [sym__raw_string_literal_start] = ACTIONS(1423), + [sym_float_literal] = ACTIONS(1411), }, [845] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_type_parameters] = STATE(935), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2314), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(2341), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(2147), + [sym_bracketed_type] = STATE(3574), + [sym_generic_type] = STATE(3491), + [sym_generic_type_with_turbofish] = STATE(3212), + [sym_macro_invocation] = STATE(2160), + [sym_scoped_identifier] = STATE(1997), + [sym_scoped_type_identifier] = STATE(2902), + [sym_const_block] = STATE(2160), + [sym__pattern] = STATE(2481), + [sym_tuple_pattern] = STATE(2160), + [sym_slice_pattern] = STATE(2160), + [sym_tuple_struct_pattern] = STATE(2160), + [sym_struct_pattern] = STATE(2160), + [sym_remaining_field_pattern] = STATE(2160), + [sym_mut_pattern] = STATE(2160), + [sym_range_pattern] = STATE(2160), + [sym_ref_pattern] = STATE(2160), + [sym_captured_pattern] = STATE(2160), + [sym_reference_pattern] = STATE(2160), + [sym_or_pattern] = STATE(2160), + [sym__literal_pattern] = STATE(2036), + [sym_negative_literal] = STATE(2048), + [sym_string_literal] = STATE(2048), + [sym_raw_string_literal] = STATE(2048), + [sym_boolean_literal] = STATE(2048), [sym_line_comment] = STATE(845), [sym_block_comment] = STATE(845), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3155), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(3157), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(3151), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [sym_identifier] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(3003), + [anon_sym_u8] = ACTIONS(3005), + [anon_sym_i8] = ACTIONS(3005), + [anon_sym_u16] = ACTIONS(3005), + [anon_sym_i16] = ACTIONS(3005), + [anon_sym_u32] = ACTIONS(3005), + [anon_sym_i32] = ACTIONS(3005), + [anon_sym_u64] = ACTIONS(3005), + [anon_sym_i64] = ACTIONS(3005), + [anon_sym_u128] = ACTIONS(3005), + [anon_sym_i128] = ACTIONS(3005), + [anon_sym_isize] = ACTIONS(3005), + [anon_sym_usize] = ACTIONS(3005), + [anon_sym_f32] = ACTIONS(3005), + [anon_sym_f64] = ACTIONS(3005), + [anon_sym_bool] = ACTIONS(3005), + [anon_sym_str] = ACTIONS(3005), + [anon_sym_char] = ACTIONS(3005), + [anon_sym_DASH] = ACTIONS(1369), + [anon_sym_AMP] = ACTIONS(3007), + [anon_sym_PIPE] = ACTIONS(1375), + [anon_sym_LT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1499), + [anon_sym_DOT_DOT] = ACTIONS(1501), + [anon_sym_COLON_COLON] = ACTIONS(3009), + [anon_sym_const] = ACTIONS(3011), + [anon_sym_default] = ACTIONS(3013), + [anon_sym_union] = ACTIONS(3013), + [anon_sym_ref] = ACTIONS(1405), + [sym_mutable_specifier] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1411), + [aux_sym_string_literal_token1] = ACTIONS(1413), + [sym_char_literal] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1415), + [anon_sym_false] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3015), + [sym_super] = ACTIONS(3015), + [sym_crate] = ACTIONS(3015), + [sym_metavariable] = ACTIONS(3017), + [sym__raw_string_literal_start] = ACTIONS(1423), + [sym_float_literal] = ACTIONS(1411), }, [846] = { - [sym_function_modifiers] = STATE(3427), - [sym_higher_ranked_trait_bound] = STATE(2173), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2146), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(2153), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_bracketed_type] = STATE(3574), + [sym_generic_type] = STATE(3491), + [sym_generic_type_with_turbofish] = STATE(3212), + [sym_macro_invocation] = STATE(2160), + [sym_scoped_identifier] = STATE(1997), + [sym_scoped_type_identifier] = STATE(2902), + [sym_const_block] = STATE(2160), + [sym__pattern] = STATE(3114), + [sym_tuple_pattern] = STATE(2160), + [sym_slice_pattern] = STATE(2160), + [sym_tuple_struct_pattern] = STATE(2160), + [sym_struct_pattern] = STATE(2160), + [sym_remaining_field_pattern] = STATE(2160), + [sym_mut_pattern] = STATE(2160), + [sym_range_pattern] = STATE(2160), + [sym_ref_pattern] = STATE(2160), + [sym_captured_pattern] = STATE(2160), + [sym_reference_pattern] = STATE(2160), + [sym_or_pattern] = STATE(2160), + [sym__literal_pattern] = STATE(2036), + [sym_negative_literal] = STATE(2048), + [sym_string_literal] = STATE(2048), + [sym_raw_string_literal] = STATE(2048), + [sym_boolean_literal] = STATE(2048), [sym_line_comment] = STATE(846), [sym_block_comment] = STATE(846), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(3145), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [sym_identifier] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(3003), + [anon_sym_u8] = ACTIONS(3005), + [anon_sym_i8] = ACTIONS(3005), + [anon_sym_u16] = ACTIONS(3005), + [anon_sym_i16] = ACTIONS(3005), + [anon_sym_u32] = ACTIONS(3005), + [anon_sym_i32] = ACTIONS(3005), + [anon_sym_u64] = ACTIONS(3005), + [anon_sym_i64] = ACTIONS(3005), + [anon_sym_u128] = ACTIONS(3005), + [anon_sym_i128] = ACTIONS(3005), + [anon_sym_isize] = ACTIONS(3005), + [anon_sym_usize] = ACTIONS(3005), + [anon_sym_f32] = ACTIONS(3005), + [anon_sym_f64] = ACTIONS(3005), + [anon_sym_bool] = ACTIONS(3005), + [anon_sym_str] = ACTIONS(3005), + [anon_sym_char] = ACTIONS(3005), + [anon_sym_DASH] = ACTIONS(1369), + [anon_sym_AMP] = ACTIONS(3007), + [anon_sym_PIPE] = ACTIONS(1375), + [anon_sym_LT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1499), + [anon_sym_DOT_DOT] = ACTIONS(1501), + [anon_sym_COLON_COLON] = ACTIONS(3009), + [anon_sym_const] = ACTIONS(3011), + [anon_sym_default] = ACTIONS(3013), + [anon_sym_union] = ACTIONS(3013), + [anon_sym_ref] = ACTIONS(1405), + [sym_mutable_specifier] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1411), + [aux_sym_string_literal_token1] = ACTIONS(1413), + [sym_char_literal] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1415), + [anon_sym_false] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3015), + [sym_super] = ACTIONS(3015), + [sym_crate] = ACTIONS(3015), + [sym_metavariable] = ACTIONS(3017), + [sym__raw_string_literal_start] = ACTIONS(1423), + [sym_float_literal] = ACTIONS(1411), }, [847] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(3069), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(830), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_bracketed_type] = STATE(3574), + [sym_generic_type] = STATE(3491), + [sym_generic_type_with_turbofish] = STATE(3212), + [sym_macro_invocation] = STATE(2160), + [sym_scoped_identifier] = STATE(1997), + [sym_scoped_type_identifier] = STATE(2902), + [sym_const_block] = STATE(2160), + [sym__pattern] = STATE(2978), + [sym_tuple_pattern] = STATE(2160), + [sym_slice_pattern] = STATE(2160), + [sym_tuple_struct_pattern] = STATE(2160), + [sym_struct_pattern] = STATE(2160), + [sym_remaining_field_pattern] = STATE(2160), + [sym_mut_pattern] = STATE(2160), + [sym_range_pattern] = STATE(2160), + [sym_ref_pattern] = STATE(2160), + [sym_captured_pattern] = STATE(2160), + [sym_reference_pattern] = STATE(2160), + [sym_or_pattern] = STATE(2160), + [sym__literal_pattern] = STATE(2036), + [sym_negative_literal] = STATE(2048), + [sym_string_literal] = STATE(2048), + [sym_raw_string_literal] = STATE(2048), + [sym_boolean_literal] = STATE(2048), [sym_line_comment] = STATE(847), [sym_block_comment] = STATE(847), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [sym_mutable_specifier] = ACTIONS(3159), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [sym_identifier] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(3003), + [anon_sym_u8] = ACTIONS(3005), + [anon_sym_i8] = ACTIONS(3005), + [anon_sym_u16] = ACTIONS(3005), + [anon_sym_i16] = ACTIONS(3005), + [anon_sym_u32] = ACTIONS(3005), + [anon_sym_i32] = ACTIONS(3005), + [anon_sym_u64] = ACTIONS(3005), + [anon_sym_i64] = ACTIONS(3005), + [anon_sym_u128] = ACTIONS(3005), + [anon_sym_i128] = ACTIONS(3005), + [anon_sym_isize] = ACTIONS(3005), + [anon_sym_usize] = ACTIONS(3005), + [anon_sym_f32] = ACTIONS(3005), + [anon_sym_f64] = ACTIONS(3005), + [anon_sym_bool] = ACTIONS(3005), + [anon_sym_str] = ACTIONS(3005), + [anon_sym_char] = ACTIONS(3005), + [anon_sym_DASH] = ACTIONS(1369), + [anon_sym_AMP] = ACTIONS(3007), + [anon_sym_PIPE] = ACTIONS(1375), + [anon_sym_LT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1499), + [anon_sym_DOT_DOT] = ACTIONS(1501), + [anon_sym_COLON_COLON] = ACTIONS(3009), + [anon_sym_const] = ACTIONS(3011), + [anon_sym_default] = ACTIONS(3013), + [anon_sym_union] = ACTIONS(3013), + [anon_sym_ref] = ACTIONS(1405), + [sym_mutable_specifier] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1411), + [aux_sym_string_literal_token1] = ACTIONS(1413), + [sym_char_literal] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1415), + [anon_sym_false] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3015), + [sym_super] = ACTIONS(3015), + [sym_crate] = ACTIONS(3015), + [sym_metavariable] = ACTIONS(3017), + [sym__raw_string_literal_start] = ACTIONS(1423), + [sym_float_literal] = ACTIONS(1411), }, [848] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_type_parameters] = STATE(938), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2317), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(2319), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(2140), + [sym_bracketed_type] = STATE(3574), + [sym_generic_type] = STATE(3491), + [sym_generic_type_with_turbofish] = STATE(3212), + [sym_macro_invocation] = STATE(2160), + [sym_scoped_identifier] = STATE(1997), + [sym_scoped_type_identifier] = STATE(2902), + [sym_const_block] = STATE(2160), + [sym__pattern] = STATE(2136), + [sym_tuple_pattern] = STATE(2160), + [sym_slice_pattern] = STATE(2160), + [sym_tuple_struct_pattern] = STATE(2160), + [sym_struct_pattern] = STATE(2160), + [sym_remaining_field_pattern] = STATE(2160), + [sym_mut_pattern] = STATE(2160), + [sym_range_pattern] = STATE(2160), + [sym_ref_pattern] = STATE(2160), + [sym_captured_pattern] = STATE(2160), + [sym_reference_pattern] = STATE(2160), + [sym_or_pattern] = STATE(2160), + [sym__literal_pattern] = STATE(2036), + [sym_negative_literal] = STATE(2048), + [sym_string_literal] = STATE(2048), + [sym_raw_string_literal] = STATE(2048), + [sym_boolean_literal] = STATE(2048), [sym_line_comment] = STATE(848), [sym_block_comment] = STATE(848), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3161), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(3163), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(3151), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [sym_identifier] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(3003), + [anon_sym_u8] = ACTIONS(3005), + [anon_sym_i8] = ACTIONS(3005), + [anon_sym_u16] = ACTIONS(3005), + [anon_sym_i16] = ACTIONS(3005), + [anon_sym_u32] = ACTIONS(3005), + [anon_sym_i32] = ACTIONS(3005), + [anon_sym_u64] = ACTIONS(3005), + [anon_sym_i64] = ACTIONS(3005), + [anon_sym_u128] = ACTIONS(3005), + [anon_sym_i128] = ACTIONS(3005), + [anon_sym_isize] = ACTIONS(3005), + [anon_sym_usize] = ACTIONS(3005), + [anon_sym_f32] = ACTIONS(3005), + [anon_sym_f64] = ACTIONS(3005), + [anon_sym_bool] = ACTIONS(3005), + [anon_sym_str] = ACTIONS(3005), + [anon_sym_char] = ACTIONS(3005), + [anon_sym_DASH] = ACTIONS(1369), + [anon_sym_AMP] = ACTIONS(3007), + [anon_sym_PIPE] = ACTIONS(1375), + [anon_sym_LT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1499), + [anon_sym_DOT_DOT] = ACTIONS(1501), + [anon_sym_COLON_COLON] = ACTIONS(3009), + [anon_sym_const] = ACTIONS(3011), + [anon_sym_default] = ACTIONS(3013), + [anon_sym_union] = ACTIONS(3013), + [anon_sym_ref] = ACTIONS(1405), + [sym_mutable_specifier] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1411), + [aux_sym_string_literal_token1] = ACTIONS(1413), + [sym_char_literal] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1415), + [anon_sym_false] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3015), + [sym_super] = ACTIONS(3015), + [sym_crate] = ACTIONS(3015), + [sym_metavariable] = ACTIONS(3017), + [sym__raw_string_literal_start] = ACTIONS(1423), + [sym_float_literal] = ACTIONS(1411), }, [849] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2819), - [sym_bracketed_type] = STATE(3332), - [sym_qualified_type] = STATE(3515), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2006), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), [sym_line_comment] = STATE(849), [sym_block_comment] = STATE(849), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_PLUS] = ACTIONS(3129), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [sym_mutable_specifier] = ACTIONS(3131), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3133), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), }, [850] = { - [sym_function_modifiers] = STATE(3338), - [sym_removed_trait_bound] = STATE(1451), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1228), - [sym_bracketed_type] = STATE(3514), - [sym_lifetime] = STATE(832), - [sym_array_type] = STATE(1451), - [sym_for_lifetimes] = STATE(1592), - [sym_function_type] = STATE(1451), - [sym_tuple_type] = STATE(1451), - [sym_unit_type] = STATE(1451), - [sym_generic_type] = STATE(1078), - [sym_generic_type_with_turbofish] = STATE(3504), - [sym_bounded_type] = STATE(1451), - [sym_reference_type] = STATE(1451), - [sym_pointer_type] = STATE(1451), - [sym_never_type] = STATE(1451), - [sym_abstract_type] = STATE(1451), - [sym_dynamic_type] = STATE(1451), - [sym_macro_invocation] = STATE(1451), - [sym_scoped_identifier] = STATE(3202), - [sym_scoped_type_identifier] = STATE(1028), + [sym_function_modifiers] = STATE(3567), + [sym_removed_trait_bound] = STATE(1759), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(1812), + [sym_bracketed_type] = STATE(3624), + [sym_lifetime] = STATE(3628), + [sym_array_type] = STATE(1759), + [sym_for_lifetimes] = STATE(1661), + [sym_function_type] = STATE(1759), + [sym_tuple_type] = STATE(1759), + [sym_unit_type] = STATE(1759), + [sym_generic_type] = STATE(1650), + [sym_generic_type_with_turbofish] = STATE(3616), + [sym_bounded_type] = STATE(1759), + [sym_reference_type] = STATE(1759), + [sym_pointer_type] = STATE(1759), + [sym_never_type] = STATE(1759), + [sym_abstract_type] = STATE(1759), + [sym_dynamic_type] = STATE(1759), + [sym_macro_invocation] = STATE(1759), + [sym_scoped_identifier] = STATE(3211), + [sym_scoped_type_identifier] = STATE(1570), [sym_line_comment] = STATE(850), [sym_block_comment] = STATE(850), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3095), - [anon_sym_LPAREN] = ACTIONS(3097), - [anon_sym_LBRACK] = ACTIONS(3099), - [anon_sym_STAR] = ACTIONS(3103), - [anon_sym_QMARK] = ACTIONS(3105), - [anon_sym_u8] = ACTIONS(3107), - [anon_sym_i8] = ACTIONS(3107), - [anon_sym_u16] = ACTIONS(3107), - [anon_sym_i16] = ACTIONS(3107), - [anon_sym_u32] = ACTIONS(3107), - [anon_sym_i32] = ACTIONS(3107), - [anon_sym_u64] = ACTIONS(3107), - [anon_sym_i64] = ACTIONS(3107), - [anon_sym_u128] = ACTIONS(3107), - [anon_sym_i128] = ACTIONS(3107), - [anon_sym_isize] = ACTIONS(3107), - [anon_sym_usize] = ACTIONS(3107), - [anon_sym_f32] = ACTIONS(3107), - [anon_sym_f64] = ACTIONS(3107), - [anon_sym_bool] = ACTIONS(3107), - [anon_sym_str] = ACTIONS(3107), - [anon_sym_char] = ACTIONS(3107), - [anon_sym_BANG] = ACTIONS(3109), - [anon_sym_AMP] = ACTIONS(3111), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3113), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(3115), - [anon_sym_fn] = ACTIONS(3117), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(3119), - [anon_sym_union] = ACTIONS(3121), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(3123), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3135), + [anon_sym_LPAREN] = ACTIONS(3137), + [anon_sym_LBRACK] = ACTIONS(3139), + [anon_sym_PLUS] = ACTIONS(3141), + [anon_sym_STAR] = ACTIONS(3143), + [anon_sym_QMARK] = ACTIONS(3145), + [anon_sym_u8] = ACTIONS(3147), + [anon_sym_i8] = ACTIONS(3147), + [anon_sym_u16] = ACTIONS(3147), + [anon_sym_i16] = ACTIONS(3147), + [anon_sym_u32] = ACTIONS(3147), + [anon_sym_i32] = ACTIONS(3147), + [anon_sym_u64] = ACTIONS(3147), + [anon_sym_i64] = ACTIONS(3147), + [anon_sym_u128] = ACTIONS(3147), + [anon_sym_i128] = ACTIONS(3147), + [anon_sym_isize] = ACTIONS(3147), + [anon_sym_usize] = ACTIONS(3147), + [anon_sym_f32] = ACTIONS(3147), + [anon_sym_f64] = ACTIONS(3147), + [anon_sym_bool] = ACTIONS(3147), + [anon_sym_str] = ACTIONS(3147), + [anon_sym_char] = ACTIONS(3147), + [anon_sym_BANG] = ACTIONS(3149), + [anon_sym_AMP] = ACTIONS(3151), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(3153), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(3155), + [anon_sym_fn] = ACTIONS(3157), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(3159), + [anon_sym_union] = ACTIONS(3161), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(3163), [sym_mutable_specifier] = ACTIONS(3165), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3127), - [sym_super] = ACTIONS(3127), - [sym_crate] = ACTIONS(3127), - [sym_metavariable] = ACTIONS(3129), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3167), + [sym_super] = ACTIONS(3167), + [sym_crate] = ACTIONS(3167), + [sym_metavariable] = ACTIONS(3169), }, [851] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2799), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3424), + [sym_removed_trait_bound] = STATE(1441), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(1422), + [sym_bracketed_type] = STATE(3609), + [sym_lifetime] = STATE(3531), + [sym_array_type] = STATE(1441), + [sym_for_lifetimes] = STATE(1668), + [sym_function_type] = STATE(1441), + [sym_tuple_type] = STATE(1441), + [sym_unit_type] = STATE(1441), + [sym_generic_type] = STATE(1270), + [sym_generic_type_with_turbofish] = STATE(3599), + [sym_bounded_type] = STATE(1441), + [sym_reference_type] = STATE(1441), + [sym_pointer_type] = STATE(1441), + [sym_never_type] = STATE(1441), + [sym_abstract_type] = STATE(1441), + [sym_dynamic_type] = STATE(1441), + [sym_macro_invocation] = STATE(1441), + [sym_scoped_identifier] = STATE(3399), + [sym_scoped_type_identifier] = STATE(1054), [sym_line_comment] = STATE(851), [sym_block_comment] = STATE(851), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_RPAREN] = ACTIONS(3167), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3171), + [anon_sym_LPAREN] = ACTIONS(3173), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_PLUS] = ACTIONS(3177), + [anon_sym_STAR] = ACTIONS(3179), + [anon_sym_QMARK] = ACTIONS(3181), + [anon_sym_u8] = ACTIONS(3183), + [anon_sym_i8] = ACTIONS(3183), + [anon_sym_u16] = ACTIONS(3183), + [anon_sym_i16] = ACTIONS(3183), + [anon_sym_u32] = ACTIONS(3183), + [anon_sym_i32] = ACTIONS(3183), + [anon_sym_u64] = ACTIONS(3183), + [anon_sym_i64] = ACTIONS(3183), + [anon_sym_u128] = ACTIONS(3183), + [anon_sym_i128] = ACTIONS(3183), + [anon_sym_isize] = ACTIONS(3183), + [anon_sym_usize] = ACTIONS(3183), + [anon_sym_f32] = ACTIONS(3183), + [anon_sym_f64] = ACTIONS(3183), + [anon_sym_bool] = ACTIONS(3183), + [anon_sym_str] = ACTIONS(3183), + [anon_sym_char] = ACTIONS(3183), + [anon_sym_BANG] = ACTIONS(3185), + [anon_sym_AMP] = ACTIONS(3187), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(3189), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(3191), + [anon_sym_fn] = ACTIONS(3193), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(3195), + [anon_sym_union] = ACTIONS(3197), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(3199), + [sym_mutable_specifier] = ACTIONS(3201), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3203), + [sym_super] = ACTIONS(3203), + [sym_crate] = ACTIONS(3203), + [sym_metavariable] = ACTIONS(3205), }, [852] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2799), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(3099), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), [sym_line_comment] = STATE(852), [sym_block_comment] = STATE(852), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_RPAREN] = ACTIONS(3169), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_PLUS] = ACTIONS(3129), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [sym_mutable_specifier] = ACTIONS(3207), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), }, [853] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_type_parameters] = STATE(959), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2295), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(2385), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(2170), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2006), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), [sym_line_comment] = STATE(853), [sym_block_comment] = STATE(853), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3171), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(3173), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(3151), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_PLUS] = ACTIONS(3129), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [sym_mutable_specifier] = ACTIONS(3209), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), }, [854] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2601), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2769), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), [sym_line_comment] = STATE(854), [sym_block_comment] = STATE(854), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_RPAREN] = ACTIONS(3175), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_RPAREN] = ACTIONS(3211), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), }, [855] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2576), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2623), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), [sym_line_comment] = STATE(855), [sym_block_comment] = STATE(855), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_RPAREN] = ACTIONS(3177), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3213), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), }, [856] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2664), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2938), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), [sym_line_comment] = STATE(856), [sym_block_comment] = STATE(856), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3179), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_RPAREN] = ACTIONS(3215), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), }, [857] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2799), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2938), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), [sym_line_comment] = STATE(857), [sym_block_comment] = STATE(857), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_RPAREN] = ACTIONS(3181), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_RPAREN] = ACTIONS(3217), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), }, [858] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2334), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2938), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), [sym_line_comment] = STATE(858), [sym_block_comment] = STATE(858), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_RPAREN] = ACTIONS(3219), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), }, [859] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1996), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(3100), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(852), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), [sym_line_comment] = STATE(859), [sym_block_comment] = STATE(859), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [sym_mutable_specifier] = ACTIONS(3221), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), }, [860] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1985), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_type_parameters] = STATE(980), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2407), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(2366), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(2176), [sym_line_comment] = STATE(860), [sym_block_comment] = STATE(860), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3223), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(3225), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(3227), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), }, [861] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1994), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3553), + [sym_higher_ranked_trait_bound] = STATE(2191), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2180), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(2184), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), [sym_line_comment] = STATE(861), [sym_block_comment] = STATE(861), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(3229), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), }, [862] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2402), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2019), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(853), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), [sym_line_comment] = STATE(862), [sym_block_comment] = STATE(862), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [sym_mutable_specifier] = ACTIONS(3231), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), }, [863] = { - [sym_function_modifiers] = STATE(3473), - [sym_removed_trait_bound] = STATE(1701), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1770), - [sym_bracketed_type] = STATE(3529), - [sym_lifetime] = STATE(3368), - [sym_array_type] = STATE(1701), - [sym_for_lifetimes] = STATE(1613), - [sym_function_type] = STATE(1701), - [sym_tuple_type] = STATE(1701), - [sym_unit_type] = STATE(1701), - [sym_generic_type] = STATE(1608), - [sym_generic_type_with_turbofish] = STATE(3521), - [sym_bounded_type] = STATE(1701), - [sym_reference_type] = STATE(1701), - [sym_pointer_type] = STATE(1701), - [sym_never_type] = STATE(1701), - [sym_abstract_type] = STATE(1701), - [sym_dynamic_type] = STATE(1701), - [sym_macro_invocation] = STATE(1701), - [sym_scoped_identifier] = STATE(3264), - [sym_scoped_type_identifier] = STATE(1526), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2598), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), [sym_line_comment] = STATE(863), [sym_block_comment] = STATE(863), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3059), - [anon_sym_LPAREN] = ACTIONS(3061), - [anon_sym_LBRACK] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_QMARK] = ACTIONS(3069), - [anon_sym_u8] = ACTIONS(3071), - [anon_sym_i8] = ACTIONS(3071), - [anon_sym_u16] = ACTIONS(3071), - [anon_sym_i16] = ACTIONS(3071), - [anon_sym_u32] = ACTIONS(3071), - [anon_sym_i32] = ACTIONS(3071), - [anon_sym_u64] = ACTIONS(3071), - [anon_sym_i64] = ACTIONS(3071), - [anon_sym_u128] = ACTIONS(3071), - [anon_sym_i128] = ACTIONS(3071), - [anon_sym_isize] = ACTIONS(3071), - [anon_sym_usize] = ACTIONS(3071), - [anon_sym_f32] = ACTIONS(3071), - [anon_sym_f64] = ACTIONS(3071), - [anon_sym_bool] = ACTIONS(3071), - [anon_sym_str] = ACTIONS(3071), - [anon_sym_char] = ACTIONS(3071), - [anon_sym_BANG] = ACTIONS(3073), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3077), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(3079), - [anon_sym_fn] = ACTIONS(3081), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(3083), - [anon_sym_union] = ACTIONS(3085), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(3087), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3091), - [sym_super] = ACTIONS(3091), - [sym_crate] = ACTIONS(3091), - [sym_metavariable] = ACTIONS(3093), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_RPAREN] = ACTIONS(3233), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), }, [864] = { - [sym_function_modifiers] = STATE(3473), - [sym_removed_trait_bound] = STATE(1701), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1729), - [sym_bracketed_type] = STATE(3529), - [sym_lifetime] = STATE(3368), - [sym_array_type] = STATE(1701), - [sym_for_lifetimes] = STATE(1613), - [sym_function_type] = STATE(1701), - [sym_tuple_type] = STATE(1701), - [sym_unit_type] = STATE(1701), - [sym_generic_type] = STATE(1608), - [sym_generic_type_with_turbofish] = STATE(3521), - [sym_bounded_type] = STATE(1701), - [sym_reference_type] = STATE(1701), - [sym_pointer_type] = STATE(1701), - [sym_never_type] = STATE(1701), - [sym_abstract_type] = STATE(1701), - [sym_dynamic_type] = STATE(1701), - [sym_macro_invocation] = STATE(1701), - [sym_scoped_identifier] = STATE(3264), - [sym_scoped_type_identifier] = STATE(1526), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2759), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), [sym_line_comment] = STATE(864), [sym_block_comment] = STATE(864), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3059), - [anon_sym_LPAREN] = ACTIONS(3061), - [anon_sym_LBRACK] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_QMARK] = ACTIONS(3069), - [anon_sym_u8] = ACTIONS(3071), - [anon_sym_i8] = ACTIONS(3071), - [anon_sym_u16] = ACTIONS(3071), - [anon_sym_i16] = ACTIONS(3071), - [anon_sym_u32] = ACTIONS(3071), - [anon_sym_i32] = ACTIONS(3071), - [anon_sym_u64] = ACTIONS(3071), - [anon_sym_i64] = ACTIONS(3071), - [anon_sym_u128] = ACTIONS(3071), - [anon_sym_i128] = ACTIONS(3071), - [anon_sym_isize] = ACTIONS(3071), - [anon_sym_usize] = ACTIONS(3071), - [anon_sym_f32] = ACTIONS(3071), - [anon_sym_f64] = ACTIONS(3071), - [anon_sym_bool] = ACTIONS(3071), - [anon_sym_str] = ACTIONS(3071), - [anon_sym_char] = ACTIONS(3071), - [anon_sym_BANG] = ACTIONS(3073), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3077), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(3079), - [anon_sym_fn] = ACTIONS(3081), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(3083), - [anon_sym_union] = ACTIONS(3085), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(3087), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3091), - [sym_super] = ACTIONS(3091), - [sym_crate] = ACTIONS(3091), - [sym_metavariable] = ACTIONS(3093), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_RPAREN] = ACTIONS(3235), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), }, [865] = { - [sym_function_modifiers] = STATE(3473), - [sym_removed_trait_bound] = STATE(1701), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1771), - [sym_bracketed_type] = STATE(3529), - [sym_lifetime] = STATE(3368), - [sym_array_type] = STATE(1701), - [sym_for_lifetimes] = STATE(1613), - [sym_function_type] = STATE(1701), - [sym_tuple_type] = STATE(1701), - [sym_unit_type] = STATE(1701), - [sym_generic_type] = STATE(1608), - [sym_generic_type_with_turbofish] = STATE(3521), - [sym_bounded_type] = STATE(1701), - [sym_reference_type] = STATE(1701), - [sym_pointer_type] = STATE(1701), - [sym_never_type] = STATE(1701), - [sym_abstract_type] = STATE(1701), - [sym_dynamic_type] = STATE(1701), - [sym_macro_invocation] = STATE(1701), - [sym_scoped_identifier] = STATE(3264), - [sym_scoped_type_identifier] = STATE(1526), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2938), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), [sym_line_comment] = STATE(865), [sym_block_comment] = STATE(865), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3059), - [anon_sym_LPAREN] = ACTIONS(3061), - [anon_sym_LBRACK] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_QMARK] = ACTIONS(3069), - [anon_sym_u8] = ACTIONS(3071), - [anon_sym_i8] = ACTIONS(3071), - [anon_sym_u16] = ACTIONS(3071), - [anon_sym_i16] = ACTIONS(3071), - [anon_sym_u32] = ACTIONS(3071), - [anon_sym_i32] = ACTIONS(3071), - [anon_sym_u64] = ACTIONS(3071), - [anon_sym_i64] = ACTIONS(3071), - [anon_sym_u128] = ACTIONS(3071), - [anon_sym_i128] = ACTIONS(3071), - [anon_sym_isize] = ACTIONS(3071), - [anon_sym_usize] = ACTIONS(3071), - [anon_sym_f32] = ACTIONS(3071), - [anon_sym_f64] = ACTIONS(3071), - [anon_sym_bool] = ACTIONS(3071), - [anon_sym_str] = ACTIONS(3071), - [anon_sym_char] = ACTIONS(3071), - [anon_sym_BANG] = ACTIONS(3073), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3077), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(3079), - [anon_sym_fn] = ACTIONS(3081), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(3083), - [anon_sym_union] = ACTIONS(3085), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(3087), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3091), - [sym_super] = ACTIONS(3091), - [sym_crate] = ACTIONS(3091), - [sym_metavariable] = ACTIONS(3093), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_RPAREN] = ACTIONS(3237), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), }, [866] = { - [sym_function_modifiers] = STATE(3473), - [sym_removed_trait_bound] = STATE(1701), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1731), - [sym_bracketed_type] = STATE(3529), - [sym_lifetime] = STATE(3368), - [sym_array_type] = STATE(1701), - [sym_for_lifetimes] = STATE(1613), - [sym_function_type] = STATE(1701), - [sym_tuple_type] = STATE(1701), - [sym_unit_type] = STATE(1701), - [sym_generic_type] = STATE(1608), - [sym_generic_type_with_turbofish] = STATE(3521), - [sym_bounded_type] = STATE(1701), - [sym_reference_type] = STATE(1701), - [sym_pointer_type] = STATE(1701), - [sym_never_type] = STATE(1701), - [sym_abstract_type] = STATE(1701), - [sym_dynamic_type] = STATE(1701), - [sym_macro_invocation] = STATE(1701), - [sym_scoped_identifier] = STATE(3264), - [sym_scoped_type_identifier] = STATE(1526), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2938), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), [sym_line_comment] = STATE(866), [sym_block_comment] = STATE(866), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3059), - [anon_sym_LPAREN] = ACTIONS(3061), - [anon_sym_LBRACK] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_QMARK] = ACTIONS(3069), - [anon_sym_u8] = ACTIONS(3071), - [anon_sym_i8] = ACTIONS(3071), - [anon_sym_u16] = ACTIONS(3071), - [anon_sym_i16] = ACTIONS(3071), - [anon_sym_u32] = ACTIONS(3071), - [anon_sym_i32] = ACTIONS(3071), - [anon_sym_u64] = ACTIONS(3071), - [anon_sym_i64] = ACTIONS(3071), - [anon_sym_u128] = ACTIONS(3071), - [anon_sym_i128] = ACTIONS(3071), - [anon_sym_isize] = ACTIONS(3071), - [anon_sym_usize] = ACTIONS(3071), - [anon_sym_f32] = ACTIONS(3071), - [anon_sym_f64] = ACTIONS(3071), - [anon_sym_bool] = ACTIONS(3071), - [anon_sym_str] = ACTIONS(3071), - [anon_sym_char] = ACTIONS(3071), - [anon_sym_BANG] = ACTIONS(3073), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3077), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(3079), - [anon_sym_fn] = ACTIONS(3081), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(3083), - [anon_sym_union] = ACTIONS(3085), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(3087), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3091), - [sym_super] = ACTIONS(3091), - [sym_crate] = ACTIONS(3091), - [sym_metavariable] = ACTIONS(3093), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_RPAREN] = ACTIONS(3239), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), }, [867] = { - [sym_function_modifiers] = STATE(3473), - [sym_removed_trait_bound] = STATE(1701), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1732), - [sym_bracketed_type] = STATE(3529), - [sym_lifetime] = STATE(3368), - [sym_array_type] = STATE(1701), - [sym_for_lifetimes] = STATE(1613), - [sym_function_type] = STATE(1701), - [sym_tuple_type] = STATE(1701), - [sym_unit_type] = STATE(1701), - [sym_generic_type] = STATE(1608), - [sym_generic_type_with_turbofish] = STATE(3521), - [sym_bounded_type] = STATE(1701), - [sym_reference_type] = STATE(1701), - [sym_pointer_type] = STATE(1701), - [sym_never_type] = STATE(1701), - [sym_abstract_type] = STATE(1701), - [sym_dynamic_type] = STATE(1701), - [sym_macro_invocation] = STATE(1701), - [sym_scoped_identifier] = STATE(3264), - [sym_scoped_type_identifier] = STATE(1526), + [sym_function_modifiers] = STATE(3567), + [sym_removed_trait_bound] = STATE(1759), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(1804), + [sym_bracketed_type] = STATE(3624), + [sym_lifetime] = STATE(850), + [sym_array_type] = STATE(1759), + [sym_for_lifetimes] = STATE(1661), + [sym_function_type] = STATE(1759), + [sym_tuple_type] = STATE(1759), + [sym_unit_type] = STATE(1759), + [sym_generic_type] = STATE(1650), + [sym_generic_type_with_turbofish] = STATE(3616), + [sym_bounded_type] = STATE(1759), + [sym_reference_type] = STATE(1759), + [sym_pointer_type] = STATE(1759), + [sym_never_type] = STATE(1759), + [sym_abstract_type] = STATE(1759), + [sym_dynamic_type] = STATE(1759), + [sym_macro_invocation] = STATE(1759), + [sym_scoped_identifier] = STATE(3211), + [sym_scoped_type_identifier] = STATE(1570), [sym_line_comment] = STATE(867), [sym_block_comment] = STATE(867), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3059), - [anon_sym_LPAREN] = ACTIONS(3061), - [anon_sym_LBRACK] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_QMARK] = ACTIONS(3069), - [anon_sym_u8] = ACTIONS(3071), - [anon_sym_i8] = ACTIONS(3071), - [anon_sym_u16] = ACTIONS(3071), - [anon_sym_i16] = ACTIONS(3071), - [anon_sym_u32] = ACTIONS(3071), - [anon_sym_i32] = ACTIONS(3071), - [anon_sym_u64] = ACTIONS(3071), - [anon_sym_i64] = ACTIONS(3071), - [anon_sym_u128] = ACTIONS(3071), - [anon_sym_i128] = ACTIONS(3071), - [anon_sym_isize] = ACTIONS(3071), - [anon_sym_usize] = ACTIONS(3071), - [anon_sym_f32] = ACTIONS(3071), - [anon_sym_f64] = ACTIONS(3071), - [anon_sym_bool] = ACTIONS(3071), - [anon_sym_str] = ACTIONS(3071), - [anon_sym_char] = ACTIONS(3071), - [anon_sym_BANG] = ACTIONS(3073), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3077), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(3079), - [anon_sym_fn] = ACTIONS(3081), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(3083), - [anon_sym_union] = ACTIONS(3085), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(3087), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3091), - [sym_super] = ACTIONS(3091), - [sym_crate] = ACTIONS(3091), - [sym_metavariable] = ACTIONS(3093), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3135), + [anon_sym_LPAREN] = ACTIONS(3137), + [anon_sym_LBRACK] = ACTIONS(3139), + [anon_sym_STAR] = ACTIONS(3143), + [anon_sym_QMARK] = ACTIONS(3145), + [anon_sym_u8] = ACTIONS(3147), + [anon_sym_i8] = ACTIONS(3147), + [anon_sym_u16] = ACTIONS(3147), + [anon_sym_i16] = ACTIONS(3147), + [anon_sym_u32] = ACTIONS(3147), + [anon_sym_i32] = ACTIONS(3147), + [anon_sym_u64] = ACTIONS(3147), + [anon_sym_i64] = ACTIONS(3147), + [anon_sym_u128] = ACTIONS(3147), + [anon_sym_i128] = ACTIONS(3147), + [anon_sym_isize] = ACTIONS(3147), + [anon_sym_usize] = ACTIONS(3147), + [anon_sym_f32] = ACTIONS(3147), + [anon_sym_f64] = ACTIONS(3147), + [anon_sym_bool] = ACTIONS(3147), + [anon_sym_str] = ACTIONS(3147), + [anon_sym_char] = ACTIONS(3147), + [anon_sym_BANG] = ACTIONS(3149), + [anon_sym_AMP] = ACTIONS(3151), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(3153), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(3155), + [anon_sym_fn] = ACTIONS(3157), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(3159), + [anon_sym_union] = ACTIONS(3161), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(3163), + [sym_mutable_specifier] = ACTIONS(3241), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3167), + [sym_super] = ACTIONS(3167), + [sym_crate] = ACTIONS(3167), + [sym_metavariable] = ACTIONS(3169), }, [868] = { - [sym_function_modifiers] = STATE(3473), - [sym_removed_trait_bound] = STATE(1701), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1736), - [sym_bracketed_type] = STATE(3529), - [sym_lifetime] = STATE(3368), - [sym_array_type] = STATE(1701), - [sym_for_lifetimes] = STATE(1613), - [sym_function_type] = STATE(1701), - [sym_tuple_type] = STATE(1701), - [sym_unit_type] = STATE(1701), - [sym_generic_type] = STATE(1608), - [sym_generic_type_with_turbofish] = STATE(3521), - [sym_bounded_type] = STATE(1701), - [sym_reference_type] = STATE(1701), - [sym_pointer_type] = STATE(1701), - [sym_never_type] = STATE(1701), - [sym_abstract_type] = STATE(1701), - [sym_dynamic_type] = STATE(1701), - [sym_macro_invocation] = STATE(1701), - [sym_scoped_identifier] = STATE(3264), - [sym_scoped_type_identifier] = STATE(1526), + [sym_function_modifiers] = STATE(3553), + [sym_higher_ranked_trait_bound] = STATE(2265), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2261), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(2263), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), [sym_line_comment] = STATE(868), [sym_block_comment] = STATE(868), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3059), - [anon_sym_LPAREN] = ACTIONS(3061), - [anon_sym_LBRACK] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_QMARK] = ACTIONS(3069), - [anon_sym_u8] = ACTIONS(3071), - [anon_sym_i8] = ACTIONS(3071), - [anon_sym_u16] = ACTIONS(3071), - [anon_sym_i16] = ACTIONS(3071), - [anon_sym_u32] = ACTIONS(3071), - [anon_sym_i32] = ACTIONS(3071), - [anon_sym_u64] = ACTIONS(3071), - [anon_sym_i64] = ACTIONS(3071), - [anon_sym_u128] = ACTIONS(3071), - [anon_sym_i128] = ACTIONS(3071), - [anon_sym_isize] = ACTIONS(3071), - [anon_sym_usize] = ACTIONS(3071), - [anon_sym_f32] = ACTIONS(3071), - [anon_sym_f64] = ACTIONS(3071), - [anon_sym_bool] = ACTIONS(3071), - [anon_sym_str] = ACTIONS(3071), - [anon_sym_char] = ACTIONS(3071), - [anon_sym_BANG] = ACTIONS(3073), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3077), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(3079), - [anon_sym_fn] = ACTIONS(3081), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(3083), - [anon_sym_union] = ACTIONS(3085), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(3087), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3091), - [sym_super] = ACTIONS(3091), - [sym_crate] = ACTIONS(3091), - [sym_metavariable] = ACTIONS(3093), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(3229), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), }, [869] = { - [sym_function_modifiers] = STATE(3473), - [sym_removed_trait_bound] = STATE(1701), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1737), - [sym_bracketed_type] = STATE(3529), - [sym_lifetime] = STATE(3368), - [sym_array_type] = STATE(1701), - [sym_for_lifetimes] = STATE(1613), - [sym_function_type] = STATE(1701), - [sym_tuple_type] = STATE(1701), - [sym_unit_type] = STATE(1701), - [sym_generic_type] = STATE(1608), - [sym_generic_type_with_turbofish] = STATE(3521), - [sym_bounded_type] = STATE(1701), - [sym_reference_type] = STATE(1701), - [sym_pointer_type] = STATE(1701), - [sym_never_type] = STATE(1701), - [sym_abstract_type] = STATE(1701), - [sym_dynamic_type] = STATE(1701), - [sym_macro_invocation] = STATE(1701), - [sym_scoped_identifier] = STATE(3264), - [sym_scoped_type_identifier] = STATE(1526), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_type_parameters] = STATE(1013), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2349), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(2354), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(2177), [sym_line_comment] = STATE(869), [sym_block_comment] = STATE(869), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3059), - [anon_sym_LPAREN] = ACTIONS(3061), - [anon_sym_LBRACK] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_QMARK] = ACTIONS(3069), - [anon_sym_u8] = ACTIONS(3071), - [anon_sym_i8] = ACTIONS(3071), - [anon_sym_u16] = ACTIONS(3071), - [anon_sym_i16] = ACTIONS(3071), - [anon_sym_u32] = ACTIONS(3071), - [anon_sym_i32] = ACTIONS(3071), - [anon_sym_u64] = ACTIONS(3071), - [anon_sym_i64] = ACTIONS(3071), - [anon_sym_u128] = ACTIONS(3071), - [anon_sym_i128] = ACTIONS(3071), - [anon_sym_isize] = ACTIONS(3071), - [anon_sym_usize] = ACTIONS(3071), - [anon_sym_f32] = ACTIONS(3071), - [anon_sym_f64] = ACTIONS(3071), - [anon_sym_bool] = ACTIONS(3071), - [anon_sym_str] = ACTIONS(3071), - [anon_sym_char] = ACTIONS(3071), - [anon_sym_BANG] = ACTIONS(3073), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3077), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(3079), - [anon_sym_fn] = ACTIONS(3081), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(3083), - [anon_sym_union] = ACTIONS(3085), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(3087), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3091), - [sym_super] = ACTIONS(3091), - [sym_crate] = ACTIONS(3091), - [sym_metavariable] = ACTIONS(3093), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3243), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(3245), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(3227), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), }, [870] = { - [sym_function_modifiers] = STATE(3473), - [sym_removed_trait_bound] = STATE(1701), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1738), - [sym_bracketed_type] = STATE(3529), - [sym_lifetime] = STATE(3368), - [sym_array_type] = STATE(1701), - [sym_for_lifetimes] = STATE(1613), - [sym_function_type] = STATE(1701), - [sym_tuple_type] = STATE(1701), - [sym_unit_type] = STATE(1701), - [sym_generic_type] = STATE(1608), - [sym_generic_type_with_turbofish] = STATE(3521), - [sym_bounded_type] = STATE(1701), - [sym_reference_type] = STATE(1701), - [sym_pointer_type] = STATE(1701), - [sym_never_type] = STATE(1701), - [sym_abstract_type] = STATE(1701), - [sym_dynamic_type] = STATE(1701), - [sym_macro_invocation] = STATE(1701), - [sym_scoped_identifier] = STATE(3264), - [sym_scoped_type_identifier] = STATE(1526), + [sym_function_modifiers] = STATE(3553), + [sym_higher_ranked_trait_bound] = STATE(2265), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2261), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(2260), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), [sym_line_comment] = STATE(870), [sym_block_comment] = STATE(870), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3059), - [anon_sym_LPAREN] = ACTIONS(3061), - [anon_sym_LBRACK] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_QMARK] = ACTIONS(3069), - [anon_sym_u8] = ACTIONS(3071), - [anon_sym_i8] = ACTIONS(3071), - [anon_sym_u16] = ACTIONS(3071), - [anon_sym_i16] = ACTIONS(3071), - [anon_sym_u32] = ACTIONS(3071), - [anon_sym_i32] = ACTIONS(3071), - [anon_sym_u64] = ACTIONS(3071), - [anon_sym_i64] = ACTIONS(3071), - [anon_sym_u128] = ACTIONS(3071), - [anon_sym_i128] = ACTIONS(3071), - [anon_sym_isize] = ACTIONS(3071), - [anon_sym_usize] = ACTIONS(3071), - [anon_sym_f32] = ACTIONS(3071), - [anon_sym_f64] = ACTIONS(3071), - [anon_sym_bool] = ACTIONS(3071), - [anon_sym_str] = ACTIONS(3071), - [anon_sym_char] = ACTIONS(3071), - [anon_sym_BANG] = ACTIONS(3073), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3077), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(3079), - [anon_sym_fn] = ACTIONS(3081), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(3083), - [anon_sym_union] = ACTIONS(3085), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(3087), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3091), - [sym_super] = ACTIONS(3091), - [sym_crate] = ACTIONS(3091), - [sym_metavariable] = ACTIONS(3093), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(3229), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), }, [871] = { - [sym_function_modifiers] = STATE(3473), - [sym_removed_trait_bound] = STATE(1701), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1739), - [sym_bracketed_type] = STATE(3529), - [sym_lifetime] = STATE(3368), - [sym_array_type] = STATE(1701), - [sym_for_lifetimes] = STATE(1613), - [sym_function_type] = STATE(1701), - [sym_tuple_type] = STATE(1701), - [sym_unit_type] = STATE(1701), - [sym_generic_type] = STATE(1608), - [sym_generic_type_with_turbofish] = STATE(3521), - [sym_bounded_type] = STATE(1701), - [sym_reference_type] = STATE(1701), - [sym_pointer_type] = STATE(1701), - [sym_never_type] = STATE(1701), - [sym_abstract_type] = STATE(1701), - [sym_dynamic_type] = STATE(1701), - [sym_macro_invocation] = STATE(1701), - [sym_scoped_identifier] = STATE(3264), - [sym_scoped_type_identifier] = STATE(1526), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_type_parameters] = STATE(910), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2415), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(2416), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(2178), [sym_line_comment] = STATE(871), [sym_block_comment] = STATE(871), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3059), - [anon_sym_LPAREN] = ACTIONS(3061), - [anon_sym_LBRACK] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_QMARK] = ACTIONS(3069), - [anon_sym_u8] = ACTIONS(3071), - [anon_sym_i8] = ACTIONS(3071), - [anon_sym_u16] = ACTIONS(3071), - [anon_sym_i16] = ACTIONS(3071), - [anon_sym_u32] = ACTIONS(3071), - [anon_sym_i32] = ACTIONS(3071), - [anon_sym_u64] = ACTIONS(3071), - [anon_sym_i64] = ACTIONS(3071), - [anon_sym_u128] = ACTIONS(3071), - [anon_sym_i128] = ACTIONS(3071), - [anon_sym_isize] = ACTIONS(3071), - [anon_sym_usize] = ACTIONS(3071), - [anon_sym_f32] = ACTIONS(3071), - [anon_sym_f64] = ACTIONS(3071), - [anon_sym_bool] = ACTIONS(3071), - [anon_sym_str] = ACTIONS(3071), - [anon_sym_char] = ACTIONS(3071), - [anon_sym_BANG] = ACTIONS(3073), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3077), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(3079), - [anon_sym_fn] = ACTIONS(3081), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(3083), - [anon_sym_union] = ACTIONS(3085), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(3087), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3091), - [sym_super] = ACTIONS(3091), - [sym_crate] = ACTIONS(3091), - [sym_metavariable] = ACTIONS(3093), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3247), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(3249), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(3227), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), }, [872] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2184), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3553), + [sym_higher_ranked_trait_bound] = STATE(2265), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2264), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(2263), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), [sym_line_comment] = STATE(872), [sym_block_comment] = STATE(872), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(3229), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), }, [873] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2350), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2896), + [sym_bracketed_type] = STATE(3418), + [sym_qualified_type] = STATE(3550), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), [sym_line_comment] = STATE(873), [sym_block_comment] = STATE(873), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), }, [874] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2351), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2614), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), [sym_line_comment] = STATE(874), [sym_block_comment] = STATE(874), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3251), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), }, [875] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2837), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2938), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), [sym_line_comment] = STATE(875), [sym_block_comment] = STATE(875), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_RPAREN] = ACTIONS(3253), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), }, [876] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2863), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_type_parameters] = STATE(936), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2413), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(2406), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(2169), [sym_line_comment] = STATE(876), [sym_block_comment] = STATE(876), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3255), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(3257), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(3227), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), }, [877] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2355), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3424), + [sym_removed_trait_bound] = STATE(1441), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(1498), + [sym_bracketed_type] = STATE(3609), + [sym_lifetime] = STATE(851), + [sym_array_type] = STATE(1441), + [sym_for_lifetimes] = STATE(1668), + [sym_function_type] = STATE(1441), + [sym_tuple_type] = STATE(1441), + [sym_unit_type] = STATE(1441), + [sym_generic_type] = STATE(1270), + [sym_generic_type_with_turbofish] = STATE(3599), + [sym_bounded_type] = STATE(1441), + [sym_reference_type] = STATE(1441), + [sym_pointer_type] = STATE(1441), + [sym_never_type] = STATE(1441), + [sym_abstract_type] = STATE(1441), + [sym_dynamic_type] = STATE(1441), + [sym_macro_invocation] = STATE(1441), + [sym_scoped_identifier] = STATE(3399), + [sym_scoped_type_identifier] = STATE(1054), [sym_line_comment] = STATE(877), [sym_block_comment] = STATE(877), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3171), + [anon_sym_LPAREN] = ACTIONS(3173), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_STAR] = ACTIONS(3179), + [anon_sym_QMARK] = ACTIONS(3181), + [anon_sym_u8] = ACTIONS(3183), + [anon_sym_i8] = ACTIONS(3183), + [anon_sym_u16] = ACTIONS(3183), + [anon_sym_i16] = ACTIONS(3183), + [anon_sym_u32] = ACTIONS(3183), + [anon_sym_i32] = ACTIONS(3183), + [anon_sym_u64] = ACTIONS(3183), + [anon_sym_i64] = ACTIONS(3183), + [anon_sym_u128] = ACTIONS(3183), + [anon_sym_i128] = ACTIONS(3183), + [anon_sym_isize] = ACTIONS(3183), + [anon_sym_usize] = ACTIONS(3183), + [anon_sym_f32] = ACTIONS(3183), + [anon_sym_f64] = ACTIONS(3183), + [anon_sym_bool] = ACTIONS(3183), + [anon_sym_str] = ACTIONS(3183), + [anon_sym_char] = ACTIONS(3183), + [anon_sym_BANG] = ACTIONS(3185), + [anon_sym_AMP] = ACTIONS(3187), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(3189), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(3191), + [anon_sym_fn] = ACTIONS(3193), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(3195), + [anon_sym_union] = ACTIONS(3197), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(3199), + [sym_mutable_specifier] = ACTIONS(3259), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3203), + [sym_super] = ACTIONS(3203), + [sym_crate] = ACTIONS(3203), + [sym_metavariable] = ACTIONS(3205), }, [878] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2874), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2733), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), [sym_line_comment] = STATE(878), [sym_block_comment] = STATE(878), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), }, [879] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2357), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2677), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), [sym_line_comment] = STATE(879), [sym_block_comment] = STATE(879), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), }, [880] = { - [sym_function_modifiers] = STATE(3338), - [sym_removed_trait_bound] = STATE(1451), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1223), - [sym_bracketed_type] = STATE(3514), - [sym_lifetime] = STATE(3511), - [sym_array_type] = STATE(1451), - [sym_for_lifetimes] = STATE(1592), - [sym_function_type] = STATE(1451), - [sym_tuple_type] = STATE(1451), - [sym_unit_type] = STATE(1451), - [sym_generic_type] = STATE(1078), - [sym_generic_type_with_turbofish] = STATE(3504), - [sym_bounded_type] = STATE(1451), - [sym_reference_type] = STATE(1451), - [sym_pointer_type] = STATE(1451), - [sym_never_type] = STATE(1451), - [sym_abstract_type] = STATE(1451), - [sym_dynamic_type] = STATE(1451), - [sym_macro_invocation] = STATE(1451), - [sym_scoped_identifier] = STATE(3202), - [sym_scoped_type_identifier] = STATE(1028), + [sym_function_modifiers] = STATE(3424), + [sym_removed_trait_bound] = STATE(1441), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(1460), + [sym_bracketed_type] = STATE(3609), + [sym_lifetime] = STATE(3531), + [sym_array_type] = STATE(1441), + [sym_for_lifetimes] = STATE(1668), + [sym_function_type] = STATE(1441), + [sym_tuple_type] = STATE(1441), + [sym_unit_type] = STATE(1441), + [sym_generic_type] = STATE(1270), + [sym_generic_type_with_turbofish] = STATE(3599), + [sym_bounded_type] = STATE(1441), + [sym_reference_type] = STATE(1441), + [sym_pointer_type] = STATE(1441), + [sym_never_type] = STATE(1441), + [sym_abstract_type] = STATE(1441), + [sym_dynamic_type] = STATE(1441), + [sym_macro_invocation] = STATE(1441), + [sym_scoped_identifier] = STATE(3399), + [sym_scoped_type_identifier] = STATE(1054), [sym_line_comment] = STATE(880), [sym_block_comment] = STATE(880), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3095), - [anon_sym_LPAREN] = ACTIONS(3097), - [anon_sym_LBRACK] = ACTIONS(3099), - [anon_sym_STAR] = ACTIONS(3103), - [anon_sym_QMARK] = ACTIONS(3105), - [anon_sym_u8] = ACTIONS(3107), - [anon_sym_i8] = ACTIONS(3107), - [anon_sym_u16] = ACTIONS(3107), - [anon_sym_i16] = ACTIONS(3107), - [anon_sym_u32] = ACTIONS(3107), - [anon_sym_i32] = ACTIONS(3107), - [anon_sym_u64] = ACTIONS(3107), - [anon_sym_i64] = ACTIONS(3107), - [anon_sym_u128] = ACTIONS(3107), - [anon_sym_i128] = ACTIONS(3107), - [anon_sym_isize] = ACTIONS(3107), - [anon_sym_usize] = ACTIONS(3107), - [anon_sym_f32] = ACTIONS(3107), - [anon_sym_f64] = ACTIONS(3107), - [anon_sym_bool] = ACTIONS(3107), - [anon_sym_str] = ACTIONS(3107), - [anon_sym_char] = ACTIONS(3107), - [anon_sym_BANG] = ACTIONS(3109), - [anon_sym_AMP] = ACTIONS(3111), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3113), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(3115), - [anon_sym_fn] = ACTIONS(3117), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(3119), - [anon_sym_union] = ACTIONS(3121), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(3123), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3127), - [sym_super] = ACTIONS(3127), - [sym_crate] = ACTIONS(3127), - [sym_metavariable] = ACTIONS(3129), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3171), + [anon_sym_LPAREN] = ACTIONS(3173), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_STAR] = ACTIONS(3179), + [anon_sym_QMARK] = ACTIONS(3181), + [anon_sym_u8] = ACTIONS(3183), + [anon_sym_i8] = ACTIONS(3183), + [anon_sym_u16] = ACTIONS(3183), + [anon_sym_i16] = ACTIONS(3183), + [anon_sym_u32] = ACTIONS(3183), + [anon_sym_i32] = ACTIONS(3183), + [anon_sym_u64] = ACTIONS(3183), + [anon_sym_i64] = ACTIONS(3183), + [anon_sym_u128] = ACTIONS(3183), + [anon_sym_i128] = ACTIONS(3183), + [anon_sym_isize] = ACTIONS(3183), + [anon_sym_usize] = ACTIONS(3183), + [anon_sym_f32] = ACTIONS(3183), + [anon_sym_f64] = ACTIONS(3183), + [anon_sym_bool] = ACTIONS(3183), + [anon_sym_str] = ACTIONS(3183), + [anon_sym_char] = ACTIONS(3183), + [anon_sym_BANG] = ACTIONS(3185), + [anon_sym_AMP] = ACTIONS(3187), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(3189), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(3191), + [anon_sym_fn] = ACTIONS(3193), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(3195), + [anon_sym_union] = ACTIONS(3197), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(3199), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3203), + [sym_super] = ACTIONS(3203), + [sym_crate] = ACTIONS(3203), + [sym_metavariable] = ACTIONS(3205), }, [881] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2668), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2395), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), [sym_line_comment] = STATE(881), [sym_block_comment] = STATE(881), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), }, [882] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2896), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(3011), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), [sym_line_comment] = STATE(882), [sym_block_comment] = STATE(882), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), }, [883] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2952), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2623), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), [sym_line_comment] = STATE(883), [sym_block_comment] = STATE(883), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), }, [884] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2467), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2798), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), [sym_line_comment] = STATE(884), [sym_block_comment] = STATE(884), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), }, [885] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2698), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2362), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), [sym_line_comment] = STATE(885), [sym_block_comment] = STATE(885), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), }, [886] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2576), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2021), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), [sym_line_comment] = STATE(886), [sym_block_comment] = STATE(886), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), }, [887] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2358), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3424), + [sym_removed_trait_bound] = STATE(1441), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(1410), + [sym_bracketed_type] = STATE(3609), + [sym_lifetime] = STATE(3531), + [sym_array_type] = STATE(1441), + [sym_for_lifetimes] = STATE(1668), + [sym_function_type] = STATE(1441), + [sym_tuple_type] = STATE(1441), + [sym_unit_type] = STATE(1441), + [sym_generic_type] = STATE(1270), + [sym_generic_type_with_turbofish] = STATE(3599), + [sym_bounded_type] = STATE(1441), + [sym_reference_type] = STATE(1441), + [sym_pointer_type] = STATE(1441), + [sym_never_type] = STATE(1441), + [sym_abstract_type] = STATE(1441), + [sym_dynamic_type] = STATE(1441), + [sym_macro_invocation] = STATE(1441), + [sym_scoped_identifier] = STATE(3399), + [sym_scoped_type_identifier] = STATE(1054), [sym_line_comment] = STATE(887), [sym_block_comment] = STATE(887), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3171), + [anon_sym_LPAREN] = ACTIONS(3173), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_STAR] = ACTIONS(3179), + [anon_sym_QMARK] = ACTIONS(3181), + [anon_sym_u8] = ACTIONS(3183), + [anon_sym_i8] = ACTIONS(3183), + [anon_sym_u16] = ACTIONS(3183), + [anon_sym_i16] = ACTIONS(3183), + [anon_sym_u32] = ACTIONS(3183), + [anon_sym_i32] = ACTIONS(3183), + [anon_sym_u64] = ACTIONS(3183), + [anon_sym_i64] = ACTIONS(3183), + [anon_sym_u128] = ACTIONS(3183), + [anon_sym_i128] = ACTIONS(3183), + [anon_sym_isize] = ACTIONS(3183), + [anon_sym_usize] = ACTIONS(3183), + [anon_sym_f32] = ACTIONS(3183), + [anon_sym_f64] = ACTIONS(3183), + [anon_sym_bool] = ACTIONS(3183), + [anon_sym_str] = ACTIONS(3183), + [anon_sym_char] = ACTIONS(3183), + [anon_sym_BANG] = ACTIONS(3185), + [anon_sym_AMP] = ACTIONS(3187), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(3189), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(3191), + [anon_sym_fn] = ACTIONS(3193), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(3195), + [anon_sym_union] = ACTIONS(3197), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(3199), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3203), + [sym_super] = ACTIONS(3203), + [sym_crate] = ACTIONS(3203), + [sym_metavariable] = ACTIONS(3205), }, [888] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2359), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2862), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), [sym_line_comment] = STATE(888), [sym_block_comment] = STATE(888), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), }, [889] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1990), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(1991), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2217), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), [sym_line_comment] = STATE(889), [sym_block_comment] = STATE(889), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2957), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), }, [890] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1976), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2399), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), [sym_line_comment] = STATE(890), [sym_block_comment] = STATE(890), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), }, [891] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2719), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2024), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), [sym_line_comment] = STATE(891), [sym_block_comment] = STATE(891), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), }, [892] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2225), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2025), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), [sym_line_comment] = STATE(892), [sym_block_comment] = STATE(892), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), }, [893] = { - [sym_function_modifiers] = STATE(3338), - [sym_removed_trait_bound] = STATE(1451), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1292), - [sym_bracketed_type] = STATE(3514), - [sym_lifetime] = STATE(3511), - [sym_array_type] = STATE(1451), - [sym_for_lifetimes] = STATE(1592), - [sym_function_type] = STATE(1451), - [sym_tuple_type] = STATE(1451), - [sym_unit_type] = STATE(1451), - [sym_generic_type] = STATE(1078), - [sym_generic_type_with_turbofish] = STATE(3504), - [sym_bounded_type] = STATE(1451), - [sym_reference_type] = STATE(1451), - [sym_pointer_type] = STATE(1451), - [sym_never_type] = STATE(1451), - [sym_abstract_type] = STATE(1451), - [sym_dynamic_type] = STATE(1451), - [sym_macro_invocation] = STATE(1451), - [sym_scoped_identifier] = STATE(3202), - [sym_scoped_type_identifier] = STATE(1028), + [sym_function_modifiers] = STATE(3424), + [sym_removed_trait_bound] = STATE(1441), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(1422), + [sym_bracketed_type] = STATE(3609), + [sym_lifetime] = STATE(3531), + [sym_array_type] = STATE(1441), + [sym_for_lifetimes] = STATE(1668), + [sym_function_type] = STATE(1441), + [sym_tuple_type] = STATE(1441), + [sym_unit_type] = STATE(1441), + [sym_generic_type] = STATE(1270), + [sym_generic_type_with_turbofish] = STATE(3599), + [sym_bounded_type] = STATE(1441), + [sym_reference_type] = STATE(1441), + [sym_pointer_type] = STATE(1441), + [sym_never_type] = STATE(1441), + [sym_abstract_type] = STATE(1441), + [sym_dynamic_type] = STATE(1441), + [sym_macro_invocation] = STATE(1441), + [sym_scoped_identifier] = STATE(3399), + [sym_scoped_type_identifier] = STATE(1054), [sym_line_comment] = STATE(893), [sym_block_comment] = STATE(893), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3095), - [anon_sym_LPAREN] = ACTIONS(3097), - [anon_sym_LBRACK] = ACTIONS(3099), - [anon_sym_STAR] = ACTIONS(3103), - [anon_sym_QMARK] = ACTIONS(3105), - [anon_sym_u8] = ACTIONS(3107), - [anon_sym_i8] = ACTIONS(3107), - [anon_sym_u16] = ACTIONS(3107), - [anon_sym_i16] = ACTIONS(3107), - [anon_sym_u32] = ACTIONS(3107), - [anon_sym_i32] = ACTIONS(3107), - [anon_sym_u64] = ACTIONS(3107), - [anon_sym_i64] = ACTIONS(3107), - [anon_sym_u128] = ACTIONS(3107), - [anon_sym_i128] = ACTIONS(3107), - [anon_sym_isize] = ACTIONS(3107), - [anon_sym_usize] = ACTIONS(3107), - [anon_sym_f32] = ACTIONS(3107), - [anon_sym_f64] = ACTIONS(3107), - [anon_sym_bool] = ACTIONS(3107), - [anon_sym_str] = ACTIONS(3107), - [anon_sym_char] = ACTIONS(3107), - [anon_sym_BANG] = ACTIONS(3109), - [anon_sym_AMP] = ACTIONS(3111), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3113), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(3115), - [anon_sym_fn] = ACTIONS(3117), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(3119), - [anon_sym_union] = ACTIONS(3121), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(3123), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3127), - [sym_super] = ACTIONS(3127), - [sym_crate] = ACTIONS(3127), - [sym_metavariable] = ACTIONS(3129), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3171), + [anon_sym_LPAREN] = ACTIONS(3173), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_STAR] = ACTIONS(3179), + [anon_sym_QMARK] = ACTIONS(3181), + [anon_sym_u8] = ACTIONS(3183), + [anon_sym_i8] = ACTIONS(3183), + [anon_sym_u16] = ACTIONS(3183), + [anon_sym_i16] = ACTIONS(3183), + [anon_sym_u32] = ACTIONS(3183), + [anon_sym_i32] = ACTIONS(3183), + [anon_sym_u64] = ACTIONS(3183), + [anon_sym_i64] = ACTIONS(3183), + [anon_sym_u128] = ACTIONS(3183), + [anon_sym_i128] = ACTIONS(3183), + [anon_sym_isize] = ACTIONS(3183), + [anon_sym_usize] = ACTIONS(3183), + [anon_sym_f32] = ACTIONS(3183), + [anon_sym_f64] = ACTIONS(3183), + [anon_sym_bool] = ACTIONS(3183), + [anon_sym_str] = ACTIONS(3183), + [anon_sym_char] = ACTIONS(3183), + [anon_sym_BANG] = ACTIONS(3185), + [anon_sym_AMP] = ACTIONS(3187), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(3189), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(3191), + [anon_sym_fn] = ACTIONS(3193), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(3195), + [anon_sym_union] = ACTIONS(3197), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(3199), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3203), + [sym_super] = ACTIONS(3203), + [sym_crate] = ACTIONS(3203), + [sym_metavariable] = ACTIONS(3205), }, [894] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2565), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3424), + [sym_removed_trait_bound] = STATE(1441), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(1423), + [sym_bracketed_type] = STATE(3609), + [sym_lifetime] = STATE(3531), + [sym_array_type] = STATE(1441), + [sym_for_lifetimes] = STATE(1668), + [sym_function_type] = STATE(1441), + [sym_tuple_type] = STATE(1441), + [sym_unit_type] = STATE(1441), + [sym_generic_type] = STATE(1270), + [sym_generic_type_with_turbofish] = STATE(3599), + [sym_bounded_type] = STATE(1441), + [sym_reference_type] = STATE(1441), + [sym_pointer_type] = STATE(1441), + [sym_never_type] = STATE(1441), + [sym_abstract_type] = STATE(1441), + [sym_dynamic_type] = STATE(1441), + [sym_macro_invocation] = STATE(1441), + [sym_scoped_identifier] = STATE(3399), + [sym_scoped_type_identifier] = STATE(1054), [sym_line_comment] = STATE(894), [sym_block_comment] = STATE(894), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3171), + [anon_sym_LPAREN] = ACTIONS(3173), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_STAR] = ACTIONS(3179), + [anon_sym_QMARK] = ACTIONS(3181), + [anon_sym_u8] = ACTIONS(3183), + [anon_sym_i8] = ACTIONS(3183), + [anon_sym_u16] = ACTIONS(3183), + [anon_sym_i16] = ACTIONS(3183), + [anon_sym_u32] = ACTIONS(3183), + [anon_sym_i32] = ACTIONS(3183), + [anon_sym_u64] = ACTIONS(3183), + [anon_sym_i64] = ACTIONS(3183), + [anon_sym_u128] = ACTIONS(3183), + [anon_sym_i128] = ACTIONS(3183), + [anon_sym_isize] = ACTIONS(3183), + [anon_sym_usize] = ACTIONS(3183), + [anon_sym_f32] = ACTIONS(3183), + [anon_sym_f64] = ACTIONS(3183), + [anon_sym_bool] = ACTIONS(3183), + [anon_sym_str] = ACTIONS(3183), + [anon_sym_char] = ACTIONS(3183), + [anon_sym_BANG] = ACTIONS(3185), + [anon_sym_AMP] = ACTIONS(3187), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(3189), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(3191), + [anon_sym_fn] = ACTIONS(3193), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(3195), + [anon_sym_union] = ACTIONS(3197), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(3199), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3203), + [sym_super] = ACTIONS(3203), + [sym_crate] = ACTIONS(3203), + [sym_metavariable] = ACTIONS(3205), }, [895] = { - [sym_function_modifiers] = STATE(3338), - [sym_removed_trait_bound] = STATE(1451), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1294), - [sym_bracketed_type] = STATE(3514), - [sym_lifetime] = STATE(3511), - [sym_array_type] = STATE(1451), - [sym_for_lifetimes] = STATE(1592), - [sym_function_type] = STATE(1451), - [sym_tuple_type] = STATE(1451), - [sym_unit_type] = STATE(1451), - [sym_generic_type] = STATE(1078), - [sym_generic_type_with_turbofish] = STATE(3504), - [sym_bounded_type] = STATE(1451), - [sym_reference_type] = STATE(1451), - [sym_pointer_type] = STATE(1451), - [sym_never_type] = STATE(1451), - [sym_abstract_type] = STATE(1451), - [sym_dynamic_type] = STATE(1451), - [sym_macro_invocation] = STATE(1451), - [sym_scoped_identifier] = STATE(3202), - [sym_scoped_type_identifier] = STATE(1028), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2242), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), [sym_line_comment] = STATE(895), [sym_block_comment] = STATE(895), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3095), - [anon_sym_LPAREN] = ACTIONS(3097), - [anon_sym_LBRACK] = ACTIONS(3099), - [anon_sym_STAR] = ACTIONS(3103), - [anon_sym_QMARK] = ACTIONS(3105), - [anon_sym_u8] = ACTIONS(3107), - [anon_sym_i8] = ACTIONS(3107), - [anon_sym_u16] = ACTIONS(3107), - [anon_sym_i16] = ACTIONS(3107), - [anon_sym_u32] = ACTIONS(3107), - [anon_sym_i32] = ACTIONS(3107), - [anon_sym_u64] = ACTIONS(3107), - [anon_sym_i64] = ACTIONS(3107), - [anon_sym_u128] = ACTIONS(3107), - [anon_sym_i128] = ACTIONS(3107), - [anon_sym_isize] = ACTIONS(3107), - [anon_sym_usize] = ACTIONS(3107), - [anon_sym_f32] = ACTIONS(3107), - [anon_sym_f64] = ACTIONS(3107), - [anon_sym_bool] = ACTIONS(3107), - [anon_sym_str] = ACTIONS(3107), - [anon_sym_char] = ACTIONS(3107), - [anon_sym_BANG] = ACTIONS(3109), - [anon_sym_AMP] = ACTIONS(3111), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3113), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(3115), - [anon_sym_fn] = ACTIONS(3117), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(3119), - [anon_sym_union] = ACTIONS(3121), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(3123), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3127), - [sym_super] = ACTIONS(3127), - [sym_crate] = ACTIONS(3127), - [sym_metavariable] = ACTIONS(3129), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), }, [896] = { - [sym_function_modifiers] = STATE(3338), - [sym_removed_trait_bound] = STATE(1451), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1225), - [sym_bracketed_type] = STATE(3514), - [sym_lifetime] = STATE(3511), - [sym_array_type] = STATE(1451), - [sym_for_lifetimes] = STATE(1592), - [sym_function_type] = STATE(1451), - [sym_tuple_type] = STATE(1451), - [sym_unit_type] = STATE(1451), - [sym_generic_type] = STATE(1078), - [sym_generic_type_with_turbofish] = STATE(3504), - [sym_bounded_type] = STATE(1451), - [sym_reference_type] = STATE(1451), - [sym_pointer_type] = STATE(1451), - [sym_never_type] = STATE(1451), - [sym_abstract_type] = STATE(1451), - [sym_dynamic_type] = STATE(1451), - [sym_macro_invocation] = STATE(1451), - [sym_scoped_identifier] = STATE(3202), - [sym_scoped_type_identifier] = STATE(1028), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2211), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), [sym_line_comment] = STATE(896), [sym_block_comment] = STATE(896), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3095), - [anon_sym_LPAREN] = ACTIONS(3097), - [anon_sym_LBRACK] = ACTIONS(3099), - [anon_sym_STAR] = ACTIONS(3103), - [anon_sym_QMARK] = ACTIONS(3105), - [anon_sym_u8] = ACTIONS(3107), - [anon_sym_i8] = ACTIONS(3107), - [anon_sym_u16] = ACTIONS(3107), - [anon_sym_i16] = ACTIONS(3107), - [anon_sym_u32] = ACTIONS(3107), - [anon_sym_i32] = ACTIONS(3107), - [anon_sym_u64] = ACTIONS(3107), - [anon_sym_i64] = ACTIONS(3107), - [anon_sym_u128] = ACTIONS(3107), - [anon_sym_i128] = ACTIONS(3107), - [anon_sym_isize] = ACTIONS(3107), - [anon_sym_usize] = ACTIONS(3107), - [anon_sym_f32] = ACTIONS(3107), - [anon_sym_f64] = ACTIONS(3107), - [anon_sym_bool] = ACTIONS(3107), - [anon_sym_str] = ACTIONS(3107), - [anon_sym_char] = ACTIONS(3107), - [anon_sym_BANG] = ACTIONS(3109), - [anon_sym_AMP] = ACTIONS(3111), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3113), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(3115), - [anon_sym_fn] = ACTIONS(3117), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(3119), - [anon_sym_union] = ACTIONS(3121), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(3123), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3127), - [sym_super] = ACTIONS(3127), - [sym_crate] = ACTIONS(3127), - [sym_metavariable] = ACTIONS(3129), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), }, [897] = { - [sym_function_modifiers] = STATE(3338), - [sym_removed_trait_bound] = STATE(1451), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1210), - [sym_bracketed_type] = STATE(3514), - [sym_lifetime] = STATE(3511), - [sym_array_type] = STATE(1451), - [sym_for_lifetimes] = STATE(1592), - [sym_function_type] = STATE(1451), - [sym_tuple_type] = STATE(1451), - [sym_unit_type] = STATE(1451), - [sym_generic_type] = STATE(1078), - [sym_generic_type_with_turbofish] = STATE(3504), - [sym_bounded_type] = STATE(1451), - [sym_reference_type] = STATE(1451), - [sym_pointer_type] = STATE(1451), - [sym_never_type] = STATE(1451), - [sym_abstract_type] = STATE(1451), - [sym_dynamic_type] = STATE(1451), - [sym_macro_invocation] = STATE(1451), - [sym_scoped_identifier] = STATE(3202), - [sym_scoped_type_identifier] = STATE(1028), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2223), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), [sym_line_comment] = STATE(897), [sym_block_comment] = STATE(897), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3095), - [anon_sym_LPAREN] = ACTIONS(3097), - [anon_sym_LBRACK] = ACTIONS(3099), - [anon_sym_STAR] = ACTIONS(3103), - [anon_sym_QMARK] = ACTIONS(3105), - [anon_sym_u8] = ACTIONS(3107), - [anon_sym_i8] = ACTIONS(3107), - [anon_sym_u16] = ACTIONS(3107), - [anon_sym_i16] = ACTIONS(3107), - [anon_sym_u32] = ACTIONS(3107), - [anon_sym_i32] = ACTIONS(3107), - [anon_sym_u64] = ACTIONS(3107), - [anon_sym_i64] = ACTIONS(3107), - [anon_sym_u128] = ACTIONS(3107), - [anon_sym_i128] = ACTIONS(3107), - [anon_sym_isize] = ACTIONS(3107), - [anon_sym_usize] = ACTIONS(3107), - [anon_sym_f32] = ACTIONS(3107), - [anon_sym_f64] = ACTIONS(3107), - [anon_sym_bool] = ACTIONS(3107), - [anon_sym_str] = ACTIONS(3107), - [anon_sym_char] = ACTIONS(3107), - [anon_sym_BANG] = ACTIONS(3109), - [anon_sym_AMP] = ACTIONS(3111), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3113), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(3115), - [anon_sym_fn] = ACTIONS(3117), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(3119), - [anon_sym_union] = ACTIONS(3121), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(3123), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3127), - [sym_super] = ACTIONS(3127), - [sym_crate] = ACTIONS(3127), - [sym_metavariable] = ACTIONS(3129), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), }, [898] = { - [sym_function_modifiers] = STATE(3473), - [sym_removed_trait_bound] = STATE(1701), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1667), - [sym_bracketed_type] = STATE(3529), - [sym_lifetime] = STATE(3368), - [sym_array_type] = STATE(1701), - [sym_for_lifetimes] = STATE(1613), - [sym_function_type] = STATE(1701), - [sym_tuple_type] = STATE(1701), - [sym_unit_type] = STATE(1701), - [sym_generic_type] = STATE(1608), - [sym_generic_type_with_turbofish] = STATE(3521), - [sym_bounded_type] = STATE(1701), - [sym_reference_type] = STATE(1701), - [sym_pointer_type] = STATE(1701), - [sym_never_type] = STATE(1701), - [sym_abstract_type] = STATE(1701), - [sym_dynamic_type] = STATE(1701), - [sym_macro_invocation] = STATE(1701), - [sym_scoped_identifier] = STATE(3264), - [sym_scoped_type_identifier] = STATE(1526), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(3090), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), [sym_line_comment] = STATE(898), [sym_block_comment] = STATE(898), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3059), - [anon_sym_LPAREN] = ACTIONS(3061), - [anon_sym_LBRACK] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_QMARK] = ACTIONS(3069), - [anon_sym_u8] = ACTIONS(3071), - [anon_sym_i8] = ACTIONS(3071), - [anon_sym_u16] = ACTIONS(3071), - [anon_sym_i16] = ACTIONS(3071), - [anon_sym_u32] = ACTIONS(3071), - [anon_sym_i32] = ACTIONS(3071), - [anon_sym_u64] = ACTIONS(3071), - [anon_sym_i64] = ACTIONS(3071), - [anon_sym_u128] = ACTIONS(3071), - [anon_sym_i128] = ACTIONS(3071), - [anon_sym_isize] = ACTIONS(3071), - [anon_sym_usize] = ACTIONS(3071), - [anon_sym_f32] = ACTIONS(3071), - [anon_sym_f64] = ACTIONS(3071), - [anon_sym_bool] = ACTIONS(3071), - [anon_sym_str] = ACTIONS(3071), - [anon_sym_char] = ACTIONS(3071), - [anon_sym_BANG] = ACTIONS(3073), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3077), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(3079), - [anon_sym_fn] = ACTIONS(3081), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(3083), - [anon_sym_union] = ACTIONS(3085), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(3087), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3091), - [sym_super] = ACTIONS(3091), - [sym_crate] = ACTIONS(3091), - [sym_metavariable] = ACTIONS(3093), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), }, [899] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(3018), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2234), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), [sym_line_comment] = STATE(899), [sym_block_comment] = STATE(899), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), }, [900] = { - [sym_function_modifiers] = STATE(3338), - [sym_removed_trait_bound] = STATE(1451), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1298), - [sym_bracketed_type] = STATE(3514), - [sym_lifetime] = STATE(3511), - [sym_array_type] = STATE(1451), - [sym_for_lifetimes] = STATE(1592), - [sym_function_type] = STATE(1451), - [sym_tuple_type] = STATE(1451), - [sym_unit_type] = STATE(1451), - [sym_generic_type] = STATE(1078), - [sym_generic_type_with_turbofish] = STATE(3504), - [sym_bounded_type] = STATE(1451), - [sym_reference_type] = STATE(1451), - [sym_pointer_type] = STATE(1451), - [sym_never_type] = STATE(1451), - [sym_abstract_type] = STATE(1451), - [sym_dynamic_type] = STATE(1451), - [sym_macro_invocation] = STATE(1451), - [sym_scoped_identifier] = STATE(3202), - [sym_scoped_type_identifier] = STATE(1028), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2030), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), [sym_line_comment] = STATE(900), [sym_block_comment] = STATE(900), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3095), - [anon_sym_LPAREN] = ACTIONS(3097), - [anon_sym_LBRACK] = ACTIONS(3099), - [anon_sym_STAR] = ACTIONS(3103), - [anon_sym_QMARK] = ACTIONS(3105), - [anon_sym_u8] = ACTIONS(3107), - [anon_sym_i8] = ACTIONS(3107), - [anon_sym_u16] = ACTIONS(3107), - [anon_sym_i16] = ACTIONS(3107), - [anon_sym_u32] = ACTIONS(3107), - [anon_sym_i32] = ACTIONS(3107), - [anon_sym_u64] = ACTIONS(3107), - [anon_sym_i64] = ACTIONS(3107), - [anon_sym_u128] = ACTIONS(3107), - [anon_sym_i128] = ACTIONS(3107), - [anon_sym_isize] = ACTIONS(3107), - [anon_sym_usize] = ACTIONS(3107), - [anon_sym_f32] = ACTIONS(3107), - [anon_sym_f64] = ACTIONS(3107), - [anon_sym_bool] = ACTIONS(3107), - [anon_sym_str] = ACTIONS(3107), - [anon_sym_char] = ACTIONS(3107), - [anon_sym_BANG] = ACTIONS(3109), - [anon_sym_AMP] = ACTIONS(3111), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3113), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(3115), - [anon_sym_fn] = ACTIONS(3117), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(3119), - [anon_sym_union] = ACTIONS(3121), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(3123), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3127), - [sym_super] = ACTIONS(3127), - [sym_crate] = ACTIONS(3127), - [sym_metavariable] = ACTIONS(3129), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), }, [901] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(3059), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(3111), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), [sym_line_comment] = STATE(901), [sym_block_comment] = STATE(901), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), }, [902] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(3061), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2429), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), [sym_line_comment] = STATE(902), [sym_block_comment] = STATE(902), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), }, [903] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(3015), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2346), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), [sym_line_comment] = STATE(903), [sym_block_comment] = STATE(903), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), }, [904] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2506), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3567), + [sym_removed_trait_bound] = STATE(1759), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(1791), + [sym_bracketed_type] = STATE(3624), + [sym_lifetime] = STATE(3628), + [sym_array_type] = STATE(1759), + [sym_for_lifetimes] = STATE(1661), + [sym_function_type] = STATE(1759), + [sym_tuple_type] = STATE(1759), + [sym_unit_type] = STATE(1759), + [sym_generic_type] = STATE(1650), + [sym_generic_type_with_turbofish] = STATE(3616), + [sym_bounded_type] = STATE(1759), + [sym_reference_type] = STATE(1759), + [sym_pointer_type] = STATE(1759), + [sym_never_type] = STATE(1759), + [sym_abstract_type] = STATE(1759), + [sym_dynamic_type] = STATE(1759), + [sym_macro_invocation] = STATE(1759), + [sym_scoped_identifier] = STATE(3211), + [sym_scoped_type_identifier] = STATE(1570), [sym_line_comment] = STATE(904), [sym_block_comment] = STATE(904), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3135), + [anon_sym_LPAREN] = ACTIONS(3137), + [anon_sym_LBRACK] = ACTIONS(3139), + [anon_sym_STAR] = ACTIONS(3143), + [anon_sym_QMARK] = ACTIONS(3145), + [anon_sym_u8] = ACTIONS(3147), + [anon_sym_i8] = ACTIONS(3147), + [anon_sym_u16] = ACTIONS(3147), + [anon_sym_i16] = ACTIONS(3147), + [anon_sym_u32] = ACTIONS(3147), + [anon_sym_i32] = ACTIONS(3147), + [anon_sym_u64] = ACTIONS(3147), + [anon_sym_i64] = ACTIONS(3147), + [anon_sym_u128] = ACTIONS(3147), + [anon_sym_i128] = ACTIONS(3147), + [anon_sym_isize] = ACTIONS(3147), + [anon_sym_usize] = ACTIONS(3147), + [anon_sym_f32] = ACTIONS(3147), + [anon_sym_f64] = ACTIONS(3147), + [anon_sym_bool] = ACTIONS(3147), + [anon_sym_str] = ACTIONS(3147), + [anon_sym_char] = ACTIONS(3147), + [anon_sym_BANG] = ACTIONS(3149), + [anon_sym_AMP] = ACTIONS(3151), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(3153), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(3155), + [anon_sym_fn] = ACTIONS(3157), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(3159), + [anon_sym_union] = ACTIONS(3161), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(3163), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3167), + [sym_super] = ACTIONS(3167), + [sym_crate] = ACTIONS(3167), + [sym_metavariable] = ACTIONS(3169), }, [905] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1990), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(1991), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2352), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), [sym_line_comment] = STATE(905), [sym_block_comment] = STATE(905), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), }, [906] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(3277), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2557), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), [sym_line_comment] = STATE(906), [sym_block_comment] = STATE(906), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), }, [907] = { - [sym_function_modifiers] = STATE(3338), - [sym_removed_trait_bound] = STATE(1451), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1305), - [sym_bracketed_type] = STATE(3514), - [sym_lifetime] = STATE(3511), - [sym_array_type] = STATE(1451), - [sym_for_lifetimes] = STATE(1592), - [sym_function_type] = STATE(1451), - [sym_tuple_type] = STATE(1451), - [sym_unit_type] = STATE(1451), - [sym_generic_type] = STATE(1078), - [sym_generic_type_with_turbofish] = STATE(3504), - [sym_bounded_type] = STATE(1451), - [sym_reference_type] = STATE(1451), - [sym_pointer_type] = STATE(1451), - [sym_never_type] = STATE(1451), - [sym_abstract_type] = STATE(1451), - [sym_dynamic_type] = STATE(1451), - [sym_macro_invocation] = STATE(1451), - [sym_scoped_identifier] = STATE(3202), - [sym_scoped_type_identifier] = STATE(1028), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2246), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), [sym_line_comment] = STATE(907), [sym_block_comment] = STATE(907), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3095), - [anon_sym_LPAREN] = ACTIONS(3097), - [anon_sym_LBRACK] = ACTIONS(3099), - [anon_sym_STAR] = ACTIONS(3103), - [anon_sym_QMARK] = ACTIONS(3105), - [anon_sym_u8] = ACTIONS(3107), - [anon_sym_i8] = ACTIONS(3107), - [anon_sym_u16] = ACTIONS(3107), - [anon_sym_i16] = ACTIONS(3107), - [anon_sym_u32] = ACTIONS(3107), - [anon_sym_i32] = ACTIONS(3107), - [anon_sym_u64] = ACTIONS(3107), - [anon_sym_i64] = ACTIONS(3107), - [anon_sym_u128] = ACTIONS(3107), - [anon_sym_i128] = ACTIONS(3107), - [anon_sym_isize] = ACTIONS(3107), - [anon_sym_usize] = ACTIONS(3107), - [anon_sym_f32] = ACTIONS(3107), - [anon_sym_f64] = ACTIONS(3107), - [anon_sym_bool] = ACTIONS(3107), - [anon_sym_str] = ACTIONS(3107), - [anon_sym_char] = ACTIONS(3107), - [anon_sym_BANG] = ACTIONS(3109), - [anon_sym_AMP] = ACTIONS(3111), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3113), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(3115), - [anon_sym_fn] = ACTIONS(3117), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(3119), - [anon_sym_union] = ACTIONS(3121), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(3123), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3127), - [sym_super] = ACTIONS(3127), - [sym_crate] = ACTIONS(3127), - [sym_metavariable] = ACTIONS(3129), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), }, [908] = { + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2353), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), [sym_line_comment] = STATE(908), [sym_block_comment] = STATE(908), - [sym_identifier] = ACTIONS(2412), - [anon_sym_LPAREN] = ACTIONS(2410), - [anon_sym_LBRACK] = ACTIONS(2410), - [anon_sym_RBRACK] = ACTIONS(2410), - [anon_sym_LBRACE] = ACTIONS(2410), - [anon_sym_STAR] = ACTIONS(2410), - [anon_sym_u8] = ACTIONS(2412), - [anon_sym_i8] = ACTIONS(2412), - [anon_sym_u16] = ACTIONS(2412), - [anon_sym_i16] = ACTIONS(2412), - [anon_sym_u32] = ACTIONS(2412), - [anon_sym_i32] = ACTIONS(2412), - [anon_sym_u64] = ACTIONS(2412), - [anon_sym_i64] = ACTIONS(2412), - [anon_sym_u128] = ACTIONS(2412), - [anon_sym_i128] = ACTIONS(2412), - [anon_sym_isize] = ACTIONS(2412), - [anon_sym_usize] = ACTIONS(2412), - [anon_sym_f32] = ACTIONS(2412), - [anon_sym_f64] = ACTIONS(2412), - [anon_sym_bool] = ACTIONS(2412), - [anon_sym_str] = ACTIONS(2412), - [anon_sym_char] = ACTIONS(2412), - [anon_sym_DASH] = ACTIONS(2410), - [anon_sym_BANG] = ACTIONS(2410), - [anon_sym_AMP] = ACTIONS(2410), - [anon_sym_PIPE] = ACTIONS(2410), - [anon_sym_LT] = ACTIONS(2410), - [anon_sym__] = ACTIONS(2412), - [anon_sym_DOT_DOT] = ACTIONS(2410), - [anon_sym_COMMA] = ACTIONS(2410), - [anon_sym_COLON_COLON] = ACTIONS(2410), - [anon_sym_POUND] = ACTIONS(2410), - [anon_sym_SQUOTE] = ACTIONS(2412), - [anon_sym_async] = ACTIONS(2412), - [anon_sym_break] = ACTIONS(2412), - [anon_sym_const] = ACTIONS(2412), - [anon_sym_continue] = ACTIONS(2412), - [anon_sym_default] = ACTIONS(2412), - [anon_sym_for] = ACTIONS(2412), - [anon_sym_if] = ACTIONS(2412), - [anon_sym_loop] = ACTIONS(2412), - [anon_sym_match] = ACTIONS(2412), - [anon_sym_return] = ACTIONS(2412), - [anon_sym_static] = ACTIONS(2412), - [anon_sym_union] = ACTIONS(2412), - [anon_sym_unsafe] = ACTIONS(2412), - [anon_sym_while] = ACTIONS(2412), - [anon_sym_ref] = ACTIONS(2412), - [sym_mutable_specifier] = ACTIONS(2412), - [anon_sym_yield] = ACTIONS(2412), - [anon_sym_move] = ACTIONS(2412), - [anon_sym_try] = ACTIONS(2412), - [sym_integer_literal] = ACTIONS(2410), - [aux_sym_string_literal_token1] = ACTIONS(2410), - [sym_char_literal] = ACTIONS(2410), - [anon_sym_true] = ACTIONS(2412), - [anon_sym_false] = ACTIONS(2412), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2412), - [sym_super] = ACTIONS(2412), - [sym_crate] = ACTIONS(2412), - [sym_metavariable] = ACTIONS(2410), - [sym__raw_string_literal_start] = ACTIONS(2410), - [sym_float_literal] = ACTIONS(2410), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), }, [909] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2574), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2438), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), [sym_line_comment] = STATE(909), [sym_block_comment] = STATE(909), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), }, [910] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2987), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2381), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(2437), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(2189), [sym_line_comment] = STATE(910), [sym_block_comment] = STATE(910), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3261), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(3263), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), }, [911] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(3166), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2372), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), [sym_line_comment] = STATE(911), [sym_block_comment] = STATE(911), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), }, [912] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(3048), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2374), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), [sym_line_comment] = STATE(912), [sym_block_comment] = STATE(912), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), }, [913] = { - [sym_function_modifiers] = STATE(3338), - [sym_removed_trait_bound] = STATE(1451), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1309), - [sym_bracketed_type] = STATE(3514), - [sym_lifetime] = STATE(3511), - [sym_array_type] = STATE(1451), - [sym_for_lifetimes] = STATE(1592), - [sym_function_type] = STATE(1451), - [sym_tuple_type] = STATE(1451), - [sym_unit_type] = STATE(1451), - [sym_generic_type] = STATE(1078), - [sym_generic_type_with_turbofish] = STATE(3504), - [sym_bounded_type] = STATE(1451), - [sym_reference_type] = STATE(1451), - [sym_pointer_type] = STATE(1451), - [sym_never_type] = STATE(1451), - [sym_abstract_type] = STATE(1451), - [sym_dynamic_type] = STATE(1451), - [sym_macro_invocation] = STATE(1451), - [sym_scoped_identifier] = STATE(3202), - [sym_scoped_type_identifier] = STATE(1028), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(3072), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), [sym_line_comment] = STATE(913), [sym_block_comment] = STATE(913), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3095), - [anon_sym_LPAREN] = ACTIONS(3097), - [anon_sym_LBRACK] = ACTIONS(3099), - [anon_sym_STAR] = ACTIONS(3103), - [anon_sym_QMARK] = ACTIONS(3105), - [anon_sym_u8] = ACTIONS(3107), - [anon_sym_i8] = ACTIONS(3107), - [anon_sym_u16] = ACTIONS(3107), - [anon_sym_i16] = ACTIONS(3107), - [anon_sym_u32] = ACTIONS(3107), - [anon_sym_i32] = ACTIONS(3107), - [anon_sym_u64] = ACTIONS(3107), - [anon_sym_i64] = ACTIONS(3107), - [anon_sym_u128] = ACTIONS(3107), - [anon_sym_i128] = ACTIONS(3107), - [anon_sym_isize] = ACTIONS(3107), - [anon_sym_usize] = ACTIONS(3107), - [anon_sym_f32] = ACTIONS(3107), - [anon_sym_f64] = ACTIONS(3107), - [anon_sym_bool] = ACTIONS(3107), - [anon_sym_str] = ACTIONS(3107), - [anon_sym_char] = ACTIONS(3107), - [anon_sym_BANG] = ACTIONS(3109), - [anon_sym_AMP] = ACTIONS(3111), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3113), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(3115), - [anon_sym_fn] = ACTIONS(3117), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(3119), - [anon_sym_union] = ACTIONS(3121), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(3123), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3127), - [sym_super] = ACTIONS(3127), - [sym_crate] = ACTIONS(3127), - [sym_metavariable] = ACTIONS(3129), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), }, [914] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2394), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2804), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), [sym_line_comment] = STATE(914), [sym_block_comment] = STATE(914), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), }, [915] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2934), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2344), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), [sym_line_comment] = STATE(915), [sym_block_comment] = STATE(915), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), }, [916] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2799), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2343), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), [sym_line_comment] = STATE(916), [sym_block_comment] = STATE(916), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), }, [917] = { - [sym_function_modifiers] = STATE(3338), - [sym_removed_trait_bound] = STATE(1451), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1388), - [sym_bracketed_type] = STATE(3514), - [sym_lifetime] = STATE(3511), - [sym_array_type] = STATE(1451), - [sym_for_lifetimes] = STATE(1592), - [sym_function_type] = STATE(1451), - [sym_tuple_type] = STATE(1451), - [sym_unit_type] = STATE(1451), - [sym_generic_type] = STATE(1078), - [sym_generic_type_with_turbofish] = STATE(3504), - [sym_bounded_type] = STATE(1451), - [sym_reference_type] = STATE(1451), - [sym_pointer_type] = STATE(1451), - [sym_never_type] = STATE(1451), - [sym_abstract_type] = STATE(1451), - [sym_dynamic_type] = STATE(1451), - [sym_macro_invocation] = STATE(1451), - [sym_scoped_identifier] = STATE(3202), - [sym_scoped_type_identifier] = STATE(1028), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2210), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), [sym_line_comment] = STATE(917), [sym_block_comment] = STATE(917), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3095), - [anon_sym_LPAREN] = ACTIONS(3097), - [anon_sym_LBRACK] = ACTIONS(3099), - [anon_sym_STAR] = ACTIONS(3103), - [anon_sym_QMARK] = ACTIONS(3105), - [anon_sym_u8] = ACTIONS(3107), - [anon_sym_i8] = ACTIONS(3107), - [anon_sym_u16] = ACTIONS(3107), - [anon_sym_i16] = ACTIONS(3107), - [anon_sym_u32] = ACTIONS(3107), - [anon_sym_i32] = ACTIONS(3107), - [anon_sym_u64] = ACTIONS(3107), - [anon_sym_i64] = ACTIONS(3107), - [anon_sym_u128] = ACTIONS(3107), - [anon_sym_i128] = ACTIONS(3107), - [anon_sym_isize] = ACTIONS(3107), - [anon_sym_usize] = ACTIONS(3107), - [anon_sym_f32] = ACTIONS(3107), - [anon_sym_f64] = ACTIONS(3107), - [anon_sym_bool] = ACTIONS(3107), - [anon_sym_str] = ACTIONS(3107), - [anon_sym_char] = ACTIONS(3107), - [anon_sym_BANG] = ACTIONS(3109), - [anon_sym_AMP] = ACTIONS(3111), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3113), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(3115), - [anon_sym_fn] = ACTIONS(3117), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(3119), - [anon_sym_union] = ACTIONS(3121), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(3123), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3127), - [sym_super] = ACTIONS(3127), - [sym_crate] = ACTIONS(3127), - [sym_metavariable] = ACTIONS(3129), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), }, [918] = { - [sym_function_modifiers] = STATE(3338), - [sym_removed_trait_bound] = STATE(1451), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1389), - [sym_bracketed_type] = STATE(3514), - [sym_lifetime] = STATE(3511), - [sym_array_type] = STATE(1451), - [sym_for_lifetimes] = STATE(1592), - [sym_function_type] = STATE(1451), - [sym_tuple_type] = STATE(1451), - [sym_unit_type] = STATE(1451), - [sym_generic_type] = STATE(1078), - [sym_generic_type_with_turbofish] = STATE(3504), - [sym_bounded_type] = STATE(1451), - [sym_reference_type] = STATE(1451), - [sym_pointer_type] = STATE(1451), - [sym_never_type] = STATE(1451), - [sym_abstract_type] = STATE(1451), - [sym_dynamic_type] = STATE(1451), - [sym_macro_invocation] = STATE(1451), - [sym_scoped_identifier] = STATE(3202), - [sym_scoped_type_identifier] = STATE(1028), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2570), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), [sym_line_comment] = STATE(918), [sym_block_comment] = STATE(918), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3095), - [anon_sym_LPAREN] = ACTIONS(3097), - [anon_sym_LBRACK] = ACTIONS(3099), - [anon_sym_STAR] = ACTIONS(3103), - [anon_sym_QMARK] = ACTIONS(3105), - [anon_sym_u8] = ACTIONS(3107), - [anon_sym_i8] = ACTIONS(3107), - [anon_sym_u16] = ACTIONS(3107), - [anon_sym_i16] = ACTIONS(3107), - [anon_sym_u32] = ACTIONS(3107), - [anon_sym_i32] = ACTIONS(3107), - [anon_sym_u64] = ACTIONS(3107), - [anon_sym_i64] = ACTIONS(3107), - [anon_sym_u128] = ACTIONS(3107), - [anon_sym_i128] = ACTIONS(3107), - [anon_sym_isize] = ACTIONS(3107), - [anon_sym_usize] = ACTIONS(3107), - [anon_sym_f32] = ACTIONS(3107), - [anon_sym_f64] = ACTIONS(3107), - [anon_sym_bool] = ACTIONS(3107), - [anon_sym_str] = ACTIONS(3107), - [anon_sym_char] = ACTIONS(3107), - [anon_sym_BANG] = ACTIONS(3109), - [anon_sym_AMP] = ACTIONS(3111), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3113), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(3115), - [anon_sym_fn] = ACTIONS(3117), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(3119), - [anon_sym_union] = ACTIONS(3121), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(3123), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3127), - [sym_super] = ACTIONS(3127), - [sym_crate] = ACTIONS(3127), - [sym_metavariable] = ACTIONS(3129), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), }, [919] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1990), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(3028), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), [sym_line_comment] = STATE(919), [sym_block_comment] = STATE(919), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), }, [920] = { - [sym_function_modifiers] = STATE(3338), - [sym_removed_trait_bound] = STATE(1451), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1391), - [sym_bracketed_type] = STATE(3514), - [sym_lifetime] = STATE(3511), - [sym_array_type] = STATE(1451), - [sym_for_lifetimes] = STATE(1592), - [sym_function_type] = STATE(1451), - [sym_tuple_type] = STATE(1451), - [sym_unit_type] = STATE(1451), - [sym_generic_type] = STATE(1078), - [sym_generic_type_with_turbofish] = STATE(3504), - [sym_bounded_type] = STATE(1451), - [sym_reference_type] = STATE(1451), - [sym_pointer_type] = STATE(1451), - [sym_never_type] = STATE(1451), - [sym_abstract_type] = STATE(1451), - [sym_dynamic_type] = STATE(1451), - [sym_macro_invocation] = STATE(1451), - [sym_scoped_identifier] = STATE(3202), - [sym_scoped_type_identifier] = STATE(1028), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2595), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), [sym_line_comment] = STATE(920), [sym_block_comment] = STATE(920), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3095), - [anon_sym_LPAREN] = ACTIONS(3097), - [anon_sym_LBRACK] = ACTIONS(3099), - [anon_sym_STAR] = ACTIONS(3103), - [anon_sym_QMARK] = ACTIONS(3105), - [anon_sym_u8] = ACTIONS(3107), - [anon_sym_i8] = ACTIONS(3107), - [anon_sym_u16] = ACTIONS(3107), - [anon_sym_i16] = ACTIONS(3107), - [anon_sym_u32] = ACTIONS(3107), - [anon_sym_i32] = ACTIONS(3107), - [anon_sym_u64] = ACTIONS(3107), - [anon_sym_i64] = ACTIONS(3107), - [anon_sym_u128] = ACTIONS(3107), - [anon_sym_i128] = ACTIONS(3107), - [anon_sym_isize] = ACTIONS(3107), - [anon_sym_usize] = ACTIONS(3107), - [anon_sym_f32] = ACTIONS(3107), - [anon_sym_f64] = ACTIONS(3107), - [anon_sym_bool] = ACTIONS(3107), - [anon_sym_str] = ACTIONS(3107), - [anon_sym_char] = ACTIONS(3107), - [anon_sym_BANG] = ACTIONS(3109), - [anon_sym_AMP] = ACTIONS(3111), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3113), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(3115), - [anon_sym_fn] = ACTIONS(3117), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(3119), - [anon_sym_union] = ACTIONS(3121), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(3123), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3127), - [sym_super] = ACTIONS(3127), - [sym_crate] = ACTIONS(3127), - [sym_metavariable] = ACTIONS(3129), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), }, [921] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2569), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2462), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), [sym_line_comment] = STATE(921), [sym_block_comment] = STATE(921), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), }, [922] = { - [sym_function_modifiers] = STATE(3338), - [sym_removed_trait_bound] = STATE(1451), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1449), - [sym_bracketed_type] = STATE(3514), - [sym_lifetime] = STATE(3511), - [sym_array_type] = STATE(1451), - [sym_for_lifetimes] = STATE(1592), - [sym_function_type] = STATE(1451), - [sym_tuple_type] = STATE(1451), - [sym_unit_type] = STATE(1451), - [sym_generic_type] = STATE(1078), - [sym_generic_type_with_turbofish] = STATE(3504), - [sym_bounded_type] = STATE(1451), - [sym_reference_type] = STATE(1451), - [sym_pointer_type] = STATE(1451), - [sym_never_type] = STATE(1451), - [sym_abstract_type] = STATE(1451), - [sym_dynamic_type] = STATE(1451), - [sym_macro_invocation] = STATE(1451), - [sym_scoped_identifier] = STATE(3202), - [sym_scoped_type_identifier] = STATE(1028), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(3006), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), [sym_line_comment] = STATE(922), [sym_block_comment] = STATE(922), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3095), - [anon_sym_LPAREN] = ACTIONS(3097), - [anon_sym_LBRACK] = ACTIONS(3099), - [anon_sym_STAR] = ACTIONS(3103), - [anon_sym_QMARK] = ACTIONS(3105), - [anon_sym_u8] = ACTIONS(3107), - [anon_sym_i8] = ACTIONS(3107), - [anon_sym_u16] = ACTIONS(3107), - [anon_sym_i16] = ACTIONS(3107), - [anon_sym_u32] = ACTIONS(3107), - [anon_sym_i32] = ACTIONS(3107), - [anon_sym_u64] = ACTIONS(3107), - [anon_sym_i64] = ACTIONS(3107), - [anon_sym_u128] = ACTIONS(3107), - [anon_sym_i128] = ACTIONS(3107), - [anon_sym_isize] = ACTIONS(3107), - [anon_sym_usize] = ACTIONS(3107), - [anon_sym_f32] = ACTIONS(3107), - [anon_sym_f64] = ACTIONS(3107), - [anon_sym_bool] = ACTIONS(3107), - [anon_sym_str] = ACTIONS(3107), - [anon_sym_char] = ACTIONS(3107), - [anon_sym_BANG] = ACTIONS(3109), - [anon_sym_AMP] = ACTIONS(3111), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3113), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(3115), - [anon_sym_fn] = ACTIONS(3117), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(3119), - [anon_sym_union] = ACTIONS(3121), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(3123), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3127), - [sym_super] = ACTIONS(3127), - [sym_crate] = ACTIONS(3127), - [sym_metavariable] = ACTIONS(3129), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), }, [923] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1968), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2601), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), [sym_line_comment] = STATE(923), [sym_block_comment] = STATE(923), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3183), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), }, [924] = { - [sym_function_modifiers] = STATE(3473), - [sym_removed_trait_bound] = STATE(1701), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1706), - [sym_bracketed_type] = STATE(3529), - [sym_lifetime] = STATE(3368), - [sym_array_type] = STATE(1701), - [sym_for_lifetimes] = STATE(1613), - [sym_function_type] = STATE(1701), - [sym_tuple_type] = STATE(1701), - [sym_unit_type] = STATE(1701), - [sym_generic_type] = STATE(1608), - [sym_generic_type_with_turbofish] = STATE(3521), - [sym_bounded_type] = STATE(1701), - [sym_reference_type] = STATE(1701), - [sym_pointer_type] = STATE(1701), - [sym_never_type] = STATE(1701), - [sym_abstract_type] = STATE(1701), - [sym_dynamic_type] = STATE(1701), - [sym_macro_invocation] = STATE(1701), - [sym_scoped_identifier] = STATE(3264), - [sym_scoped_type_identifier] = STATE(1526), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2409), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), [sym_line_comment] = STATE(924), [sym_block_comment] = STATE(924), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3059), - [anon_sym_LPAREN] = ACTIONS(3061), - [anon_sym_LBRACK] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_QMARK] = ACTIONS(3069), - [anon_sym_u8] = ACTIONS(3071), - [anon_sym_i8] = ACTIONS(3071), - [anon_sym_u16] = ACTIONS(3071), - [anon_sym_i16] = ACTIONS(3071), - [anon_sym_u32] = ACTIONS(3071), - [anon_sym_i32] = ACTIONS(3071), - [anon_sym_u64] = ACTIONS(3071), - [anon_sym_i64] = ACTIONS(3071), - [anon_sym_u128] = ACTIONS(3071), - [anon_sym_i128] = ACTIONS(3071), - [anon_sym_isize] = ACTIONS(3071), - [anon_sym_usize] = ACTIONS(3071), - [anon_sym_f32] = ACTIONS(3071), - [anon_sym_f64] = ACTIONS(3071), - [anon_sym_bool] = ACTIONS(3071), - [anon_sym_str] = ACTIONS(3071), - [anon_sym_char] = ACTIONS(3071), - [anon_sym_BANG] = ACTIONS(3073), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3077), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(3079), - [anon_sym_fn] = ACTIONS(3081), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(3083), - [anon_sym_union] = ACTIONS(3085), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(3087), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3091), - [sym_super] = ACTIONS(3091), - [sym_crate] = ACTIONS(3091), - [sym_metavariable] = ACTIONS(3093), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), }, [925] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2601), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2778), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), [sym_line_comment] = STATE(925), [sym_block_comment] = STATE(925), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), }, [926] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1993), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2404), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), [sym_line_comment] = STATE(926), [sym_block_comment] = STATE(926), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), }, [927] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1995), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2388), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), [sym_line_comment] = STATE(927), [sym_block_comment] = STATE(927), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), }, [928] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1972), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3567), + [sym_removed_trait_bound] = STATE(1759), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(1697), + [sym_bracketed_type] = STATE(3624), + [sym_lifetime] = STATE(3628), + [sym_array_type] = STATE(1759), + [sym_for_lifetimes] = STATE(1661), + [sym_function_type] = STATE(1759), + [sym_tuple_type] = STATE(1759), + [sym_unit_type] = STATE(1759), + [sym_generic_type] = STATE(1650), + [sym_generic_type_with_turbofish] = STATE(3616), + [sym_bounded_type] = STATE(1759), + [sym_reference_type] = STATE(1759), + [sym_pointer_type] = STATE(1759), + [sym_never_type] = STATE(1759), + [sym_abstract_type] = STATE(1759), + [sym_dynamic_type] = STATE(1759), + [sym_macro_invocation] = STATE(1759), + [sym_scoped_identifier] = STATE(3211), + [sym_scoped_type_identifier] = STATE(1570), [sym_line_comment] = STATE(928), [sym_block_comment] = STATE(928), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3135), + [anon_sym_LPAREN] = ACTIONS(3137), + [anon_sym_LBRACK] = ACTIONS(3139), + [anon_sym_STAR] = ACTIONS(3143), + [anon_sym_QMARK] = ACTIONS(3145), + [anon_sym_u8] = ACTIONS(3147), + [anon_sym_i8] = ACTIONS(3147), + [anon_sym_u16] = ACTIONS(3147), + [anon_sym_i16] = ACTIONS(3147), + [anon_sym_u32] = ACTIONS(3147), + [anon_sym_i32] = ACTIONS(3147), + [anon_sym_u64] = ACTIONS(3147), + [anon_sym_i64] = ACTIONS(3147), + [anon_sym_u128] = ACTIONS(3147), + [anon_sym_i128] = ACTIONS(3147), + [anon_sym_isize] = ACTIONS(3147), + [anon_sym_usize] = ACTIONS(3147), + [anon_sym_f32] = ACTIONS(3147), + [anon_sym_f64] = ACTIONS(3147), + [anon_sym_bool] = ACTIONS(3147), + [anon_sym_str] = ACTIONS(3147), + [anon_sym_char] = ACTIONS(3147), + [anon_sym_BANG] = ACTIONS(3149), + [anon_sym_AMP] = ACTIONS(3151), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(3153), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(3155), + [anon_sym_fn] = ACTIONS(3157), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(3159), + [anon_sym_union] = ACTIONS(3161), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(3163), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3167), + [sym_super] = ACTIONS(3167), + [sym_crate] = ACTIONS(3167), + [sym_metavariable] = ACTIONS(3169), }, [929] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2734), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2348), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), [sym_line_comment] = STATE(929), [sym_block_comment] = STATE(929), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), }, [930] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1971), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2257), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), [sym_line_comment] = STATE(930), [sym_block_comment] = STATE(930), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), }, [931] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2189), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2430), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), [sym_line_comment] = STATE(931), [sym_block_comment] = STATE(931), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), }, [932] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2685), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(3337), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), [sym_line_comment] = STATE(932), [sym_block_comment] = STATE(932), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), }, [933] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2185), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3424), + [sym_removed_trait_bound] = STATE(1441), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(1490), + [sym_bracketed_type] = STATE(3609), + [sym_lifetime] = STATE(3531), + [sym_array_type] = STATE(1441), + [sym_for_lifetimes] = STATE(1668), + [sym_function_type] = STATE(1441), + [sym_tuple_type] = STATE(1441), + [sym_unit_type] = STATE(1441), + [sym_generic_type] = STATE(1270), + [sym_generic_type_with_turbofish] = STATE(3599), + [sym_bounded_type] = STATE(1441), + [sym_reference_type] = STATE(1441), + [sym_pointer_type] = STATE(1441), + [sym_never_type] = STATE(1441), + [sym_abstract_type] = STATE(1441), + [sym_dynamic_type] = STATE(1441), + [sym_macro_invocation] = STATE(1441), + [sym_scoped_identifier] = STATE(3399), + [sym_scoped_type_identifier] = STATE(1054), [sym_line_comment] = STATE(933), [sym_block_comment] = STATE(933), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3171), + [anon_sym_LPAREN] = ACTIONS(3173), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_STAR] = ACTIONS(3179), + [anon_sym_QMARK] = ACTIONS(3181), + [anon_sym_u8] = ACTIONS(3183), + [anon_sym_i8] = ACTIONS(3183), + [anon_sym_u16] = ACTIONS(3183), + [anon_sym_i16] = ACTIONS(3183), + [anon_sym_u32] = ACTIONS(3183), + [anon_sym_i32] = ACTIONS(3183), + [anon_sym_u64] = ACTIONS(3183), + [anon_sym_i64] = ACTIONS(3183), + [anon_sym_u128] = ACTIONS(3183), + [anon_sym_i128] = ACTIONS(3183), + [anon_sym_isize] = ACTIONS(3183), + [anon_sym_usize] = ACTIONS(3183), + [anon_sym_f32] = ACTIONS(3183), + [anon_sym_f64] = ACTIONS(3183), + [anon_sym_bool] = ACTIONS(3183), + [anon_sym_str] = ACTIONS(3183), + [anon_sym_char] = ACTIONS(3183), + [anon_sym_BANG] = ACTIONS(3185), + [anon_sym_AMP] = ACTIONS(3187), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(3189), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(3191), + [anon_sym_fn] = ACTIONS(3193), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(3195), + [anon_sym_union] = ACTIONS(3197), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(3199), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3203), + [sym_super] = ACTIONS(3203), + [sym_crate] = ACTIONS(3203), + [sym_metavariable] = ACTIONS(3205), }, [934] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2930), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2241), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), [sym_line_comment] = STATE(934), [sym_block_comment] = STATE(934), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), }, [935] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2378), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(2379), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(2174), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2458), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), [sym_line_comment] = STATE(935), [sym_block_comment] = STATE(935), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3185), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(3187), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), }, [936] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2316), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2433), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(2375), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(2203), [sym_line_comment] = STATE(936), [sym_block_comment] = STATE(936), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3265), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(3267), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), }, [937] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2318), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2643), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), [sym_line_comment] = STATE(937), [sym_block_comment] = STATE(937), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), }, [938] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2328), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(2380), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(2131), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2240), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), [sym_line_comment] = STATE(938), [sym_block_comment] = STATE(938), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3189), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(3191), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), }, [939] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2347), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2448), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), [sym_line_comment] = STATE(939), [sym_block_comment] = STATE(939), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), }, [940] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1992), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2904), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), [sym_line_comment] = STATE(940), [sym_block_comment] = STATE(940), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), }, [941] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2829), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2706), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), [sym_line_comment] = STATE(941), [sym_block_comment] = STATE(941), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), }, [942] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2671), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2985), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), [sym_line_comment] = STATE(942), [sym_block_comment] = STATE(942), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), }, [943] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2927), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2598), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), [sym_line_comment] = STATE(943), [sym_block_comment] = STATE(943), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), }, [944] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2183), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2675), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), [sym_line_comment] = STATE(944), [sym_block_comment] = STATE(944), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), }, [945] = { - [sym_function_modifiers] = STATE(3338), - [sym_removed_trait_bound] = STATE(1451), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1212), - [sym_bracketed_type] = STATE(3514), - [sym_lifetime] = STATE(3511), - [sym_array_type] = STATE(1451), - [sym_for_lifetimes] = STATE(1592), - [sym_function_type] = STATE(1451), - [sym_tuple_type] = STATE(1451), - [sym_unit_type] = STATE(1451), - [sym_generic_type] = STATE(1078), - [sym_generic_type_with_turbofish] = STATE(3504), - [sym_bounded_type] = STATE(1451), - [sym_reference_type] = STATE(1451), - [sym_pointer_type] = STATE(1451), - [sym_never_type] = STATE(1451), - [sym_abstract_type] = STATE(1451), - [sym_dynamic_type] = STATE(1451), - [sym_macro_invocation] = STATE(1451), - [sym_scoped_identifier] = STATE(3202), - [sym_scoped_type_identifier] = STATE(1028), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2885), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), [sym_line_comment] = STATE(945), [sym_block_comment] = STATE(945), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3095), - [anon_sym_LPAREN] = ACTIONS(3097), - [anon_sym_LBRACK] = ACTIONS(3099), - [anon_sym_STAR] = ACTIONS(3103), - [anon_sym_QMARK] = ACTIONS(3105), - [anon_sym_u8] = ACTIONS(3107), - [anon_sym_i8] = ACTIONS(3107), - [anon_sym_u16] = ACTIONS(3107), - [anon_sym_i16] = ACTIONS(3107), - [anon_sym_u32] = ACTIONS(3107), - [anon_sym_i32] = ACTIONS(3107), - [anon_sym_u64] = ACTIONS(3107), - [anon_sym_i64] = ACTIONS(3107), - [anon_sym_u128] = ACTIONS(3107), - [anon_sym_i128] = ACTIONS(3107), - [anon_sym_isize] = ACTIONS(3107), - [anon_sym_usize] = ACTIONS(3107), - [anon_sym_f32] = ACTIONS(3107), - [anon_sym_f64] = ACTIONS(3107), - [anon_sym_bool] = ACTIONS(3107), - [anon_sym_str] = ACTIONS(3107), - [anon_sym_char] = ACTIONS(3107), - [anon_sym_BANG] = ACTIONS(3109), - [anon_sym_AMP] = ACTIONS(3111), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3113), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(3115), - [anon_sym_fn] = ACTIONS(3117), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(3119), - [anon_sym_union] = ACTIONS(3121), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(3123), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3127), - [sym_super] = ACTIONS(3127), - [sym_crate] = ACTIONS(3127), - [sym_metavariable] = ACTIONS(3129), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), }, [946] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2646), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2426), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), [sym_line_comment] = STATE(946), [sym_block_comment] = STATE(946), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), }, [947] = { - [sym_function_modifiers] = STATE(3338), - [sym_removed_trait_bound] = STATE(1451), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1213), - [sym_bracketed_type] = STATE(3514), - [sym_lifetime] = STATE(3511), - [sym_array_type] = STATE(1451), - [sym_for_lifetimes] = STATE(1592), - [sym_function_type] = STATE(1451), - [sym_tuple_type] = STATE(1451), - [sym_unit_type] = STATE(1451), - [sym_generic_type] = STATE(1078), - [sym_generic_type_with_turbofish] = STATE(3504), - [sym_bounded_type] = STATE(1451), - [sym_reference_type] = STATE(1451), - [sym_pointer_type] = STATE(1451), - [sym_never_type] = STATE(1451), - [sym_abstract_type] = STATE(1451), - [sym_dynamic_type] = STATE(1451), - [sym_macro_invocation] = STATE(1451), - [sym_scoped_identifier] = STATE(3202), - [sym_scoped_type_identifier] = STATE(1028), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2009), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), [sym_line_comment] = STATE(947), [sym_block_comment] = STATE(947), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3095), - [anon_sym_LPAREN] = ACTIONS(3097), - [anon_sym_LBRACK] = ACTIONS(3099), - [anon_sym_STAR] = ACTIONS(3103), - [anon_sym_QMARK] = ACTIONS(3105), - [anon_sym_u8] = ACTIONS(3107), - [anon_sym_i8] = ACTIONS(3107), - [anon_sym_u16] = ACTIONS(3107), - [anon_sym_i16] = ACTIONS(3107), - [anon_sym_u32] = ACTIONS(3107), - [anon_sym_i32] = ACTIONS(3107), - [anon_sym_u64] = ACTIONS(3107), - [anon_sym_i64] = ACTIONS(3107), - [anon_sym_u128] = ACTIONS(3107), - [anon_sym_i128] = ACTIONS(3107), - [anon_sym_isize] = ACTIONS(3107), - [anon_sym_usize] = ACTIONS(3107), - [anon_sym_f32] = ACTIONS(3107), - [anon_sym_f64] = ACTIONS(3107), - [anon_sym_bool] = ACTIONS(3107), - [anon_sym_str] = ACTIONS(3107), - [anon_sym_char] = ACTIONS(3107), - [anon_sym_BANG] = ACTIONS(3109), - [anon_sym_AMP] = ACTIONS(3111), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3113), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(3115), - [anon_sym_fn] = ACTIONS(3117), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(3119), - [anon_sym_union] = ACTIONS(3121), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(3123), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3127), - [sym_super] = ACTIONS(3127), - [sym_crate] = ACTIONS(3127), - [sym_metavariable] = ACTIONS(3129), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), }, [948] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2997), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2421), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), [sym_line_comment] = STATE(948), [sym_block_comment] = STATE(948), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), }, [949] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2622), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2881), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), [sym_line_comment] = STATE(949), [sym_block_comment] = STATE(949), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), }, [950] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2291), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(2384), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(2168), + [sym_function_modifiers] = STATE(3424), + [sym_removed_trait_bound] = STATE(1441), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(1433), + [sym_bracketed_type] = STATE(3609), + [sym_lifetime] = STATE(3531), + [sym_array_type] = STATE(1441), + [sym_for_lifetimes] = STATE(1668), + [sym_function_type] = STATE(1441), + [sym_tuple_type] = STATE(1441), + [sym_unit_type] = STATE(1441), + [sym_generic_type] = STATE(1270), + [sym_generic_type_with_turbofish] = STATE(3599), + [sym_bounded_type] = STATE(1441), + [sym_reference_type] = STATE(1441), + [sym_pointer_type] = STATE(1441), + [sym_never_type] = STATE(1441), + [sym_abstract_type] = STATE(1441), + [sym_dynamic_type] = STATE(1441), + [sym_macro_invocation] = STATE(1441), + [sym_scoped_identifier] = STATE(3399), + [sym_scoped_type_identifier] = STATE(1054), [sym_line_comment] = STATE(950), [sym_block_comment] = STATE(950), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3193), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(3195), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3171), + [anon_sym_LPAREN] = ACTIONS(3173), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_STAR] = ACTIONS(3179), + [anon_sym_QMARK] = ACTIONS(3181), + [anon_sym_u8] = ACTIONS(3183), + [anon_sym_i8] = ACTIONS(3183), + [anon_sym_u16] = ACTIONS(3183), + [anon_sym_i16] = ACTIONS(3183), + [anon_sym_u32] = ACTIONS(3183), + [anon_sym_i32] = ACTIONS(3183), + [anon_sym_u64] = ACTIONS(3183), + [anon_sym_i64] = ACTIONS(3183), + [anon_sym_u128] = ACTIONS(3183), + [anon_sym_i128] = ACTIONS(3183), + [anon_sym_isize] = ACTIONS(3183), + [anon_sym_usize] = ACTIONS(3183), + [anon_sym_f32] = ACTIONS(3183), + [anon_sym_f64] = ACTIONS(3183), + [anon_sym_bool] = ACTIONS(3183), + [anon_sym_str] = ACTIONS(3183), + [anon_sym_char] = ACTIONS(3183), + [anon_sym_BANG] = ACTIONS(3185), + [anon_sym_AMP] = ACTIONS(3187), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(3189), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(3191), + [anon_sym_fn] = ACTIONS(3193), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(3195), + [anon_sym_union] = ACTIONS(3197), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(3199), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3203), + [sym_super] = ACTIONS(3203), + [sym_crate] = ACTIONS(3203), + [sym_metavariable] = ACTIONS(3205), }, [951] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2414), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2872), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), [sym_line_comment] = STATE(951), [sym_block_comment] = STATE(951), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), }, [952] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2758), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3424), + [sym_removed_trait_bound] = STATE(1441), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(1439), + [sym_bracketed_type] = STATE(3609), + [sym_lifetime] = STATE(3531), + [sym_array_type] = STATE(1441), + [sym_for_lifetimes] = STATE(1668), + [sym_function_type] = STATE(1441), + [sym_tuple_type] = STATE(1441), + [sym_unit_type] = STATE(1441), + [sym_generic_type] = STATE(1270), + [sym_generic_type_with_turbofish] = STATE(3599), + [sym_bounded_type] = STATE(1441), + [sym_reference_type] = STATE(1441), + [sym_pointer_type] = STATE(1441), + [sym_never_type] = STATE(1441), + [sym_abstract_type] = STATE(1441), + [sym_dynamic_type] = STATE(1441), + [sym_macro_invocation] = STATE(1441), + [sym_scoped_identifier] = STATE(3399), + [sym_scoped_type_identifier] = STATE(1054), [sym_line_comment] = STATE(952), [sym_block_comment] = STATE(952), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3171), + [anon_sym_LPAREN] = ACTIONS(3173), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_STAR] = ACTIONS(3179), + [anon_sym_QMARK] = ACTIONS(3181), + [anon_sym_u8] = ACTIONS(3183), + [anon_sym_i8] = ACTIONS(3183), + [anon_sym_u16] = ACTIONS(3183), + [anon_sym_i16] = ACTIONS(3183), + [anon_sym_u32] = ACTIONS(3183), + [anon_sym_i32] = ACTIONS(3183), + [anon_sym_u64] = ACTIONS(3183), + [anon_sym_i64] = ACTIONS(3183), + [anon_sym_u128] = ACTIONS(3183), + [anon_sym_i128] = ACTIONS(3183), + [anon_sym_isize] = ACTIONS(3183), + [anon_sym_usize] = ACTIONS(3183), + [anon_sym_f32] = ACTIONS(3183), + [anon_sym_f64] = ACTIONS(3183), + [anon_sym_bool] = ACTIONS(3183), + [anon_sym_str] = ACTIONS(3183), + [anon_sym_char] = ACTIONS(3183), + [anon_sym_BANG] = ACTIONS(3185), + [anon_sym_AMP] = ACTIONS(3187), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(3189), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(3191), + [anon_sym_fn] = ACTIONS(3193), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(3195), + [anon_sym_union] = ACTIONS(3197), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(3199), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3203), + [sym_super] = ACTIONS(3203), + [sym_crate] = ACTIONS(3203), + [sym_metavariable] = ACTIONS(3205), }, [953] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2307), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2412), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), [sym_line_comment] = STATE(953), [sym_block_comment] = STATE(953), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), }, [954] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2308), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2614), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), [sym_line_comment] = STATE(954), [sym_block_comment] = STATE(954), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), }, [955] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2538), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3424), + [sym_removed_trait_bound] = STATE(1441), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(1431), + [sym_bracketed_type] = STATE(3609), + [sym_lifetime] = STATE(3531), + [sym_array_type] = STATE(1441), + [sym_for_lifetimes] = STATE(1668), + [sym_function_type] = STATE(1441), + [sym_tuple_type] = STATE(1441), + [sym_unit_type] = STATE(1441), + [sym_generic_type] = STATE(1270), + [sym_generic_type_with_turbofish] = STATE(3599), + [sym_bounded_type] = STATE(1441), + [sym_reference_type] = STATE(1441), + [sym_pointer_type] = STATE(1441), + [sym_never_type] = STATE(1441), + [sym_abstract_type] = STATE(1441), + [sym_dynamic_type] = STATE(1441), + [sym_macro_invocation] = STATE(1441), + [sym_scoped_identifier] = STATE(3399), + [sym_scoped_type_identifier] = STATE(1054), [sym_line_comment] = STATE(955), [sym_block_comment] = STATE(955), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3171), + [anon_sym_LPAREN] = ACTIONS(3173), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_STAR] = ACTIONS(3179), + [anon_sym_QMARK] = ACTIONS(3181), + [anon_sym_u8] = ACTIONS(3183), + [anon_sym_i8] = ACTIONS(3183), + [anon_sym_u16] = ACTIONS(3183), + [anon_sym_i16] = ACTIONS(3183), + [anon_sym_u32] = ACTIONS(3183), + [anon_sym_i32] = ACTIONS(3183), + [anon_sym_u64] = ACTIONS(3183), + [anon_sym_i64] = ACTIONS(3183), + [anon_sym_u128] = ACTIONS(3183), + [anon_sym_i128] = ACTIONS(3183), + [anon_sym_isize] = ACTIONS(3183), + [anon_sym_usize] = ACTIONS(3183), + [anon_sym_f32] = ACTIONS(3183), + [anon_sym_f64] = ACTIONS(3183), + [anon_sym_bool] = ACTIONS(3183), + [anon_sym_str] = ACTIONS(3183), + [anon_sym_char] = ACTIONS(3183), + [anon_sym_BANG] = ACTIONS(3185), + [anon_sym_AMP] = ACTIONS(3187), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(3189), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(3191), + [anon_sym_fn] = ACTIONS(3193), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(3195), + [anon_sym_union] = ACTIONS(3197), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(3199), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3203), + [sym_super] = ACTIONS(3203), + [sym_crate] = ACTIONS(3203), + [sym_metavariable] = ACTIONS(3205), }, [956] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2789), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2652), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), [sym_line_comment] = STATE(956), [sym_block_comment] = STATE(956), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), }, [957] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2450), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2891), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), [sym_line_comment] = STATE(957), [sym_block_comment] = STATE(957), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), }, [958] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2541), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3567), + [sym_removed_trait_bound] = STATE(1759), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(1677), + [sym_bracketed_type] = STATE(3624), + [sym_lifetime] = STATE(3628), + [sym_array_type] = STATE(1759), + [sym_for_lifetimes] = STATE(1661), + [sym_function_type] = STATE(1759), + [sym_tuple_type] = STATE(1759), + [sym_unit_type] = STATE(1759), + [sym_generic_type] = STATE(1650), + [sym_generic_type_with_turbofish] = STATE(3616), + [sym_bounded_type] = STATE(1759), + [sym_reference_type] = STATE(1759), + [sym_pointer_type] = STATE(1759), + [sym_never_type] = STATE(1759), + [sym_abstract_type] = STATE(1759), + [sym_dynamic_type] = STATE(1759), + [sym_macro_invocation] = STATE(1759), + [sym_scoped_identifier] = STATE(3211), + [sym_scoped_type_identifier] = STATE(1570), [sym_line_comment] = STATE(958), [sym_block_comment] = STATE(958), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3135), + [anon_sym_LPAREN] = ACTIONS(3137), + [anon_sym_LBRACK] = ACTIONS(3139), + [anon_sym_STAR] = ACTIONS(3143), + [anon_sym_QMARK] = ACTIONS(3145), + [anon_sym_u8] = ACTIONS(3147), + [anon_sym_i8] = ACTIONS(3147), + [anon_sym_u16] = ACTIONS(3147), + [anon_sym_i16] = ACTIONS(3147), + [anon_sym_u32] = ACTIONS(3147), + [anon_sym_i32] = ACTIONS(3147), + [anon_sym_u64] = ACTIONS(3147), + [anon_sym_i64] = ACTIONS(3147), + [anon_sym_u128] = ACTIONS(3147), + [anon_sym_i128] = ACTIONS(3147), + [anon_sym_isize] = ACTIONS(3147), + [anon_sym_usize] = ACTIONS(3147), + [anon_sym_f32] = ACTIONS(3147), + [anon_sym_f64] = ACTIONS(3147), + [anon_sym_bool] = ACTIONS(3147), + [anon_sym_str] = ACTIONS(3147), + [anon_sym_char] = ACTIONS(3147), + [anon_sym_BANG] = ACTIONS(3149), + [anon_sym_AMP] = ACTIONS(3151), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(3153), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(3155), + [anon_sym_fn] = ACTIONS(3157), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(3159), + [anon_sym_union] = ACTIONS(3161), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(3163), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3167), + [sym_super] = ACTIONS(3167), + [sym_crate] = ACTIONS(3167), + [sym_metavariable] = ACTIONS(3169), }, [959] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2309), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(2386), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(2172), [sym_line_comment] = STATE(959), [sym_block_comment] = STATE(959), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3197), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(3199), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [sym_identifier] = ACTIONS(2769), + [anon_sym_LPAREN] = ACTIONS(2767), + [anon_sym_LBRACK] = ACTIONS(2767), + [anon_sym_RBRACK] = ACTIONS(2767), + [anon_sym_LBRACE] = ACTIONS(2767), + [anon_sym_COMMA] = ACTIONS(2767), + [anon_sym_STAR] = ACTIONS(2767), + [anon_sym_u8] = ACTIONS(2769), + [anon_sym_i8] = ACTIONS(2769), + [anon_sym_u16] = ACTIONS(2769), + [anon_sym_i16] = ACTIONS(2769), + [anon_sym_u32] = ACTIONS(2769), + [anon_sym_i32] = ACTIONS(2769), + [anon_sym_u64] = ACTIONS(2769), + [anon_sym_i64] = ACTIONS(2769), + [anon_sym_u128] = ACTIONS(2769), + [anon_sym_i128] = ACTIONS(2769), + [anon_sym_isize] = ACTIONS(2769), + [anon_sym_usize] = ACTIONS(2769), + [anon_sym_f32] = ACTIONS(2769), + [anon_sym_f64] = ACTIONS(2769), + [anon_sym_bool] = ACTIONS(2769), + [anon_sym_str] = ACTIONS(2769), + [anon_sym_char] = ACTIONS(2769), + [anon_sym_DASH] = ACTIONS(2767), + [anon_sym_BANG] = ACTIONS(2767), + [anon_sym_AMP] = ACTIONS(2767), + [anon_sym_PIPE] = ACTIONS(2767), + [anon_sym_LT] = ACTIONS(2767), + [anon_sym__] = ACTIONS(2769), + [anon_sym_DOT_DOT] = ACTIONS(2767), + [anon_sym_COLON_COLON] = ACTIONS(2767), + [anon_sym_POUND] = ACTIONS(2767), + [anon_sym_SQUOTE] = ACTIONS(2769), + [anon_sym_async] = ACTIONS(2769), + [anon_sym_break] = ACTIONS(2769), + [anon_sym_const] = ACTIONS(2769), + [anon_sym_continue] = ACTIONS(2769), + [anon_sym_default] = ACTIONS(2769), + [anon_sym_for] = ACTIONS(2769), + [anon_sym_if] = ACTIONS(2769), + [anon_sym_loop] = ACTIONS(2769), + [anon_sym_match] = ACTIONS(2769), + [anon_sym_return] = ACTIONS(2769), + [anon_sym_static] = ACTIONS(2769), + [anon_sym_union] = ACTIONS(2769), + [anon_sym_unsafe] = ACTIONS(2769), + [anon_sym_while] = ACTIONS(2769), + [anon_sym_ref] = ACTIONS(2769), + [sym_mutable_specifier] = ACTIONS(2769), + [anon_sym_yield] = ACTIONS(2769), + [anon_sym_move] = ACTIONS(2769), + [anon_sym_try] = ACTIONS(2769), + [sym_integer_literal] = ACTIONS(2767), + [aux_sym_string_literal_token1] = ACTIONS(2767), + [sym_char_literal] = ACTIONS(2767), + [anon_sym_true] = ACTIONS(2769), + [anon_sym_false] = ACTIONS(2769), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2769), + [sym_super] = ACTIONS(2769), + [sym_crate] = ACTIONS(2769), + [sym_metavariable] = ACTIONS(2767), + [sym__raw_string_literal_start] = ACTIONS(2767), + [sym_float_literal] = ACTIONS(2767), }, [960] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2366), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3567), + [sym_removed_trait_bound] = STATE(1759), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(1680), + [sym_bracketed_type] = STATE(3624), + [sym_lifetime] = STATE(3628), + [sym_array_type] = STATE(1759), + [sym_for_lifetimes] = STATE(1661), + [sym_function_type] = STATE(1759), + [sym_tuple_type] = STATE(1759), + [sym_unit_type] = STATE(1759), + [sym_generic_type] = STATE(1650), + [sym_generic_type_with_turbofish] = STATE(3616), + [sym_bounded_type] = STATE(1759), + [sym_reference_type] = STATE(1759), + [sym_pointer_type] = STATE(1759), + [sym_never_type] = STATE(1759), + [sym_abstract_type] = STATE(1759), + [sym_dynamic_type] = STATE(1759), + [sym_macro_invocation] = STATE(1759), + [sym_scoped_identifier] = STATE(3211), + [sym_scoped_type_identifier] = STATE(1570), [sym_line_comment] = STATE(960), [sym_block_comment] = STATE(960), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3135), + [anon_sym_LPAREN] = ACTIONS(3137), + [anon_sym_LBRACK] = ACTIONS(3139), + [anon_sym_STAR] = ACTIONS(3143), + [anon_sym_QMARK] = ACTIONS(3145), + [anon_sym_u8] = ACTIONS(3147), + [anon_sym_i8] = ACTIONS(3147), + [anon_sym_u16] = ACTIONS(3147), + [anon_sym_i16] = ACTIONS(3147), + [anon_sym_u32] = ACTIONS(3147), + [anon_sym_i32] = ACTIONS(3147), + [anon_sym_u64] = ACTIONS(3147), + [anon_sym_i64] = ACTIONS(3147), + [anon_sym_u128] = ACTIONS(3147), + [anon_sym_i128] = ACTIONS(3147), + [anon_sym_isize] = ACTIONS(3147), + [anon_sym_usize] = ACTIONS(3147), + [anon_sym_f32] = ACTIONS(3147), + [anon_sym_f64] = ACTIONS(3147), + [anon_sym_bool] = ACTIONS(3147), + [anon_sym_str] = ACTIONS(3147), + [anon_sym_char] = ACTIONS(3147), + [anon_sym_BANG] = ACTIONS(3149), + [anon_sym_AMP] = ACTIONS(3151), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(3153), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(3155), + [anon_sym_fn] = ACTIONS(3157), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(3159), + [anon_sym_union] = ACTIONS(3161), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(3163), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3167), + [sym_super] = ACTIONS(3167), + [sym_crate] = ACTIONS(3167), + [sym_metavariable] = ACTIONS(3169), }, [961] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2367), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3567), + [sym_removed_trait_bound] = STATE(1759), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(1685), + [sym_bracketed_type] = STATE(3624), + [sym_lifetime] = STATE(3628), + [sym_array_type] = STATE(1759), + [sym_for_lifetimes] = STATE(1661), + [sym_function_type] = STATE(1759), + [sym_tuple_type] = STATE(1759), + [sym_unit_type] = STATE(1759), + [sym_generic_type] = STATE(1650), + [sym_generic_type_with_turbofish] = STATE(3616), + [sym_bounded_type] = STATE(1759), + [sym_reference_type] = STATE(1759), + [sym_pointer_type] = STATE(1759), + [sym_never_type] = STATE(1759), + [sym_abstract_type] = STATE(1759), + [sym_dynamic_type] = STATE(1759), + [sym_macro_invocation] = STATE(1759), + [sym_scoped_identifier] = STATE(3211), + [sym_scoped_type_identifier] = STATE(1570), [sym_line_comment] = STATE(961), [sym_block_comment] = STATE(961), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3135), + [anon_sym_LPAREN] = ACTIONS(3137), + [anon_sym_LBRACK] = ACTIONS(3139), + [anon_sym_STAR] = ACTIONS(3143), + [anon_sym_QMARK] = ACTIONS(3145), + [anon_sym_u8] = ACTIONS(3147), + [anon_sym_i8] = ACTIONS(3147), + [anon_sym_u16] = ACTIONS(3147), + [anon_sym_i16] = ACTIONS(3147), + [anon_sym_u32] = ACTIONS(3147), + [anon_sym_i32] = ACTIONS(3147), + [anon_sym_u64] = ACTIONS(3147), + [anon_sym_i64] = ACTIONS(3147), + [anon_sym_u128] = ACTIONS(3147), + [anon_sym_i128] = ACTIONS(3147), + [anon_sym_isize] = ACTIONS(3147), + [anon_sym_usize] = ACTIONS(3147), + [anon_sym_f32] = ACTIONS(3147), + [anon_sym_f64] = ACTIONS(3147), + [anon_sym_bool] = ACTIONS(3147), + [anon_sym_str] = ACTIONS(3147), + [anon_sym_char] = ACTIONS(3147), + [anon_sym_BANG] = ACTIONS(3149), + [anon_sym_AMP] = ACTIONS(3151), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(3153), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(3155), + [anon_sym_fn] = ACTIONS(3157), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(3159), + [anon_sym_union] = ACTIONS(3161), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(3163), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3167), + [sym_super] = ACTIONS(3167), + [sym_crate] = ACTIONS(3167), + [sym_metavariable] = ACTIONS(3169), }, [962] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2370), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2358), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), [sym_line_comment] = STATE(962), [sym_block_comment] = STATE(962), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), }, [963] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2192), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2028), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(2029), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), [sym_line_comment] = STATE(963), [sym_block_comment] = STATE(963), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), }, [964] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2321), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2007), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), [sym_line_comment] = STATE(964), [sym_block_comment] = STATE(964), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), }, [965] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2290), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2027), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), [sym_line_comment] = STATE(965), [sym_block_comment] = STATE(965), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), }, [966] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2323), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2018), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), [sym_line_comment] = STATE(966), [sym_block_comment] = STATE(966), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), }, [967] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2324), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2369), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), [sym_line_comment] = STATE(967), [sym_block_comment] = STATE(967), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), }, [968] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2557), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2006), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), [sym_line_comment] = STATE(968), [sym_block_comment] = STATE(968), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), }, [969] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2909), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2402), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), [sym_line_comment] = STATE(969), [sym_block_comment] = STATE(969), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), }, [970] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2484), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3567), + [sym_removed_trait_bound] = STATE(1759), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(1687), + [sym_bracketed_type] = STATE(3624), + [sym_lifetime] = STATE(3628), + [sym_array_type] = STATE(1759), + [sym_for_lifetimes] = STATE(1661), + [sym_function_type] = STATE(1759), + [sym_tuple_type] = STATE(1759), + [sym_unit_type] = STATE(1759), + [sym_generic_type] = STATE(1650), + [sym_generic_type_with_turbofish] = STATE(3616), + [sym_bounded_type] = STATE(1759), + [sym_reference_type] = STATE(1759), + [sym_pointer_type] = STATE(1759), + [sym_never_type] = STATE(1759), + [sym_abstract_type] = STATE(1759), + [sym_dynamic_type] = STATE(1759), + [sym_macro_invocation] = STATE(1759), + [sym_scoped_identifier] = STATE(3211), + [sym_scoped_type_identifier] = STATE(1570), [sym_line_comment] = STATE(970), [sym_block_comment] = STATE(970), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3135), + [anon_sym_LPAREN] = ACTIONS(3137), + [anon_sym_LBRACK] = ACTIONS(3139), + [anon_sym_STAR] = ACTIONS(3143), + [anon_sym_QMARK] = ACTIONS(3145), + [anon_sym_u8] = ACTIONS(3147), + [anon_sym_i8] = ACTIONS(3147), + [anon_sym_u16] = ACTIONS(3147), + [anon_sym_i16] = ACTIONS(3147), + [anon_sym_u32] = ACTIONS(3147), + [anon_sym_i32] = ACTIONS(3147), + [anon_sym_u64] = ACTIONS(3147), + [anon_sym_i64] = ACTIONS(3147), + [anon_sym_u128] = ACTIONS(3147), + [anon_sym_i128] = ACTIONS(3147), + [anon_sym_isize] = ACTIONS(3147), + [anon_sym_usize] = ACTIONS(3147), + [anon_sym_f32] = ACTIONS(3147), + [anon_sym_f64] = ACTIONS(3147), + [anon_sym_bool] = ACTIONS(3147), + [anon_sym_str] = ACTIONS(3147), + [anon_sym_char] = ACTIONS(3147), + [anon_sym_BANG] = ACTIONS(3149), + [anon_sym_AMP] = ACTIONS(3151), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(3153), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(3155), + [anon_sym_fn] = ACTIONS(3157), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(3159), + [anon_sym_union] = ACTIONS(3161), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(3163), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3167), + [sym_super] = ACTIONS(3167), + [sym_crate] = ACTIONS(3167), + [sym_metavariable] = ACTIONS(3169), }, [971] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2558), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3424), + [sym_removed_trait_bound] = STATE(1441), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(1450), + [sym_bracketed_type] = STATE(3609), + [sym_lifetime] = STATE(3531), + [sym_array_type] = STATE(1441), + [sym_for_lifetimes] = STATE(1668), + [sym_function_type] = STATE(1441), + [sym_tuple_type] = STATE(1441), + [sym_unit_type] = STATE(1441), + [sym_generic_type] = STATE(1270), + [sym_generic_type_with_turbofish] = STATE(3599), + [sym_bounded_type] = STATE(1441), + [sym_reference_type] = STATE(1441), + [sym_pointer_type] = STATE(1441), + [sym_never_type] = STATE(1441), + [sym_abstract_type] = STATE(1441), + [sym_dynamic_type] = STATE(1441), + [sym_macro_invocation] = STATE(1441), + [sym_scoped_identifier] = STATE(3399), + [sym_scoped_type_identifier] = STATE(1054), [sym_line_comment] = STATE(971), [sym_block_comment] = STATE(971), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3171), + [anon_sym_LPAREN] = ACTIONS(3173), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_STAR] = ACTIONS(3179), + [anon_sym_QMARK] = ACTIONS(3181), + [anon_sym_u8] = ACTIONS(3183), + [anon_sym_i8] = ACTIONS(3183), + [anon_sym_u16] = ACTIONS(3183), + [anon_sym_i16] = ACTIONS(3183), + [anon_sym_u32] = ACTIONS(3183), + [anon_sym_i32] = ACTIONS(3183), + [anon_sym_u64] = ACTIONS(3183), + [anon_sym_i64] = ACTIONS(3183), + [anon_sym_u128] = ACTIONS(3183), + [anon_sym_i128] = ACTIONS(3183), + [anon_sym_isize] = ACTIONS(3183), + [anon_sym_usize] = ACTIONS(3183), + [anon_sym_f32] = ACTIONS(3183), + [anon_sym_f64] = ACTIONS(3183), + [anon_sym_bool] = ACTIONS(3183), + [anon_sym_str] = ACTIONS(3183), + [anon_sym_char] = ACTIONS(3183), + [anon_sym_BANG] = ACTIONS(3185), + [anon_sym_AMP] = ACTIONS(3187), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(3189), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(3191), + [anon_sym_fn] = ACTIONS(3193), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(3195), + [anon_sym_union] = ACTIONS(3197), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(3199), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3203), + [sym_super] = ACTIONS(3203), + [sym_crate] = ACTIONS(3203), + [sym_metavariable] = ACTIONS(3205), }, [972] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2932), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2233), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), [sym_line_comment] = STATE(972), [sym_block_comment] = STATE(972), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), }, [973] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2560), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2769), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), [sym_line_comment] = STATE(973), [sym_block_comment] = STATE(973), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), }, [974] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2376), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2010), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), [sym_line_comment] = STATE(974), [sym_block_comment] = STATE(974), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), }, [975] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2218), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2470), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), [sym_line_comment] = STATE(975), [sym_block_comment] = STATE(975), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), }, [976] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2330), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3424), + [sym_removed_trait_bound] = STATE(1441), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(1385), + [sym_bracketed_type] = STATE(3609), + [sym_lifetime] = STATE(3531), + [sym_array_type] = STATE(1441), + [sym_for_lifetimes] = STATE(1668), + [sym_function_type] = STATE(1441), + [sym_tuple_type] = STATE(1441), + [sym_unit_type] = STATE(1441), + [sym_generic_type] = STATE(1270), + [sym_generic_type_with_turbofish] = STATE(3599), + [sym_bounded_type] = STATE(1441), + [sym_reference_type] = STATE(1441), + [sym_pointer_type] = STATE(1441), + [sym_never_type] = STATE(1441), + [sym_abstract_type] = STATE(1441), + [sym_dynamic_type] = STATE(1441), + [sym_macro_invocation] = STATE(1441), + [sym_scoped_identifier] = STATE(3399), + [sym_scoped_type_identifier] = STATE(1054), [sym_line_comment] = STATE(976), [sym_block_comment] = STATE(976), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3171), + [anon_sym_LPAREN] = ACTIONS(3173), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_STAR] = ACTIONS(3179), + [anon_sym_QMARK] = ACTIONS(3181), + [anon_sym_u8] = ACTIONS(3183), + [anon_sym_i8] = ACTIONS(3183), + [anon_sym_u16] = ACTIONS(3183), + [anon_sym_i16] = ACTIONS(3183), + [anon_sym_u32] = ACTIONS(3183), + [anon_sym_i32] = ACTIONS(3183), + [anon_sym_u64] = ACTIONS(3183), + [anon_sym_i64] = ACTIONS(3183), + [anon_sym_u128] = ACTIONS(3183), + [anon_sym_i128] = ACTIONS(3183), + [anon_sym_isize] = ACTIONS(3183), + [anon_sym_usize] = ACTIONS(3183), + [anon_sym_f32] = ACTIONS(3183), + [anon_sym_f64] = ACTIONS(3183), + [anon_sym_bool] = ACTIONS(3183), + [anon_sym_str] = ACTIONS(3183), + [anon_sym_char] = ACTIONS(3183), + [anon_sym_BANG] = ACTIONS(3185), + [anon_sym_AMP] = ACTIONS(3187), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(3189), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(3191), + [anon_sym_fn] = ACTIONS(3193), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(3195), + [anon_sym_union] = ACTIONS(3197), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(3199), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3203), + [sym_super] = ACTIONS(3203), + [sym_crate] = ACTIONS(3203), + [sym_metavariable] = ACTIONS(3205), }, [977] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2331), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3424), + [sym_removed_trait_bound] = STATE(1441), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(1387), + [sym_bracketed_type] = STATE(3609), + [sym_lifetime] = STATE(3531), + [sym_array_type] = STATE(1441), + [sym_for_lifetimes] = STATE(1668), + [sym_function_type] = STATE(1441), + [sym_tuple_type] = STATE(1441), + [sym_unit_type] = STATE(1441), + [sym_generic_type] = STATE(1270), + [sym_generic_type_with_turbofish] = STATE(3599), + [sym_bounded_type] = STATE(1441), + [sym_reference_type] = STATE(1441), + [sym_pointer_type] = STATE(1441), + [sym_never_type] = STATE(1441), + [sym_abstract_type] = STATE(1441), + [sym_dynamic_type] = STATE(1441), + [sym_macro_invocation] = STATE(1441), + [sym_scoped_identifier] = STATE(3399), + [sym_scoped_type_identifier] = STATE(1054), [sym_line_comment] = STATE(977), [sym_block_comment] = STATE(977), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3171), + [anon_sym_LPAREN] = ACTIONS(3173), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_STAR] = ACTIONS(3179), + [anon_sym_QMARK] = ACTIONS(3181), + [anon_sym_u8] = ACTIONS(3183), + [anon_sym_i8] = ACTIONS(3183), + [anon_sym_u16] = ACTIONS(3183), + [anon_sym_i16] = ACTIONS(3183), + [anon_sym_u32] = ACTIONS(3183), + [anon_sym_i32] = ACTIONS(3183), + [anon_sym_u64] = ACTIONS(3183), + [anon_sym_i64] = ACTIONS(3183), + [anon_sym_u128] = ACTIONS(3183), + [anon_sym_i128] = ACTIONS(3183), + [anon_sym_isize] = ACTIONS(3183), + [anon_sym_usize] = ACTIONS(3183), + [anon_sym_f32] = ACTIONS(3183), + [anon_sym_f64] = ACTIONS(3183), + [anon_sym_bool] = ACTIONS(3183), + [anon_sym_str] = ACTIONS(3183), + [anon_sym_char] = ACTIONS(3183), + [anon_sym_BANG] = ACTIONS(3185), + [anon_sym_AMP] = ACTIONS(3187), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(3189), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(3191), + [anon_sym_fn] = ACTIONS(3193), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(3195), + [anon_sym_union] = ACTIONS(3197), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(3199), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3203), + [sym_super] = ACTIONS(3203), + [sym_crate] = ACTIONS(3203), + [sym_metavariable] = ACTIONS(3205), }, [978] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2986), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3424), + [sym_removed_trait_bound] = STATE(1441), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(1389), + [sym_bracketed_type] = STATE(3609), + [sym_lifetime] = STATE(3531), + [sym_array_type] = STATE(1441), + [sym_for_lifetimes] = STATE(1668), + [sym_function_type] = STATE(1441), + [sym_tuple_type] = STATE(1441), + [sym_unit_type] = STATE(1441), + [sym_generic_type] = STATE(1270), + [sym_generic_type_with_turbofish] = STATE(3599), + [sym_bounded_type] = STATE(1441), + [sym_reference_type] = STATE(1441), + [sym_pointer_type] = STATE(1441), + [sym_never_type] = STATE(1441), + [sym_abstract_type] = STATE(1441), + [sym_dynamic_type] = STATE(1441), + [sym_macro_invocation] = STATE(1441), + [sym_scoped_identifier] = STATE(3399), + [sym_scoped_type_identifier] = STATE(1054), [sym_line_comment] = STATE(978), [sym_block_comment] = STATE(978), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3171), + [anon_sym_LPAREN] = ACTIONS(3173), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_STAR] = ACTIONS(3179), + [anon_sym_QMARK] = ACTIONS(3181), + [anon_sym_u8] = ACTIONS(3183), + [anon_sym_i8] = ACTIONS(3183), + [anon_sym_u16] = ACTIONS(3183), + [anon_sym_i16] = ACTIONS(3183), + [anon_sym_u32] = ACTIONS(3183), + [anon_sym_i32] = ACTIONS(3183), + [anon_sym_u64] = ACTIONS(3183), + [anon_sym_i64] = ACTIONS(3183), + [anon_sym_u128] = ACTIONS(3183), + [anon_sym_i128] = ACTIONS(3183), + [anon_sym_isize] = ACTIONS(3183), + [anon_sym_usize] = ACTIONS(3183), + [anon_sym_f32] = ACTIONS(3183), + [anon_sym_f64] = ACTIONS(3183), + [anon_sym_bool] = ACTIONS(3183), + [anon_sym_str] = ACTIONS(3183), + [anon_sym_char] = ACTIONS(3183), + [anon_sym_BANG] = ACTIONS(3185), + [anon_sym_AMP] = ACTIONS(3187), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(3189), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(3191), + [anon_sym_fn] = ACTIONS(3193), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(3195), + [anon_sym_union] = ACTIONS(3197), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(3199), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3203), + [sym_super] = ACTIONS(3203), + [sym_crate] = ACTIONS(3203), + [sym_metavariable] = ACTIONS(3205), }, [979] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1968), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2959), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), [sym_line_comment] = STATE(979), [sym_block_comment] = STATE(979), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), }, [980] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2332), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2401), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(2411), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(2162), [sym_line_comment] = STATE(980), [sym_block_comment] = STATE(980), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3269), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(3271), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), }, [981] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2333), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2028), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(2029), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), [sym_line_comment] = STATE(981), [sym_block_comment] = STATE(981), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3035), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), }, [982] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2335), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2368), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), [sym_line_comment] = STATE(982), [sym_block_comment] = STATE(982), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), }, [983] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2224), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(3200), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), [sym_line_comment] = STATE(983), [sym_block_comment] = STATE(983), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), }, [984] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2570), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3424), + [sym_removed_trait_bound] = STATE(1441), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(1487), + [sym_bracketed_type] = STATE(3609), + [sym_lifetime] = STATE(3531), + [sym_array_type] = STATE(1441), + [sym_for_lifetimes] = STATE(1668), + [sym_function_type] = STATE(1441), + [sym_tuple_type] = STATE(1441), + [sym_unit_type] = STATE(1441), + [sym_generic_type] = STATE(1270), + [sym_generic_type_with_turbofish] = STATE(3599), + [sym_bounded_type] = STATE(1441), + [sym_reference_type] = STATE(1441), + [sym_pointer_type] = STATE(1441), + [sym_never_type] = STATE(1441), + [sym_abstract_type] = STATE(1441), + [sym_dynamic_type] = STATE(1441), + [sym_macro_invocation] = STATE(1441), + [sym_scoped_identifier] = STATE(3399), + [sym_scoped_type_identifier] = STATE(1054), [sym_line_comment] = STATE(984), [sym_block_comment] = STATE(984), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3171), + [anon_sym_LPAREN] = ACTIONS(3173), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_STAR] = ACTIONS(3179), + [anon_sym_QMARK] = ACTIONS(3181), + [anon_sym_u8] = ACTIONS(3183), + [anon_sym_i8] = ACTIONS(3183), + [anon_sym_u16] = ACTIONS(3183), + [anon_sym_i16] = ACTIONS(3183), + [anon_sym_u32] = ACTIONS(3183), + [anon_sym_i32] = ACTIONS(3183), + [anon_sym_u64] = ACTIONS(3183), + [anon_sym_i64] = ACTIONS(3183), + [anon_sym_u128] = ACTIONS(3183), + [anon_sym_i128] = ACTIONS(3183), + [anon_sym_isize] = ACTIONS(3183), + [anon_sym_usize] = ACTIONS(3183), + [anon_sym_f32] = ACTIONS(3183), + [anon_sym_f64] = ACTIONS(3183), + [anon_sym_bool] = ACTIONS(3183), + [anon_sym_str] = ACTIONS(3183), + [anon_sym_char] = ACTIONS(3183), + [anon_sym_BANG] = ACTIONS(3185), + [anon_sym_AMP] = ACTIONS(3187), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(3189), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(3191), + [anon_sym_fn] = ACTIONS(3193), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(3195), + [anon_sym_union] = ACTIONS(3197), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(3199), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3203), + [sym_super] = ACTIONS(3203), + [sym_crate] = ACTIONS(3203), + [sym_metavariable] = ACTIONS(3205), }, [985] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2338), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2028), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), [sym_line_comment] = STATE(985), [sym_block_comment] = STATE(985), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), }, [986] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2339), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2256), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), [sym_line_comment] = STATE(986), [sym_block_comment] = STATE(986), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), }, [987] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2186), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2806), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), [sym_line_comment] = STATE(987), [sym_block_comment] = STATE(987), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), }, [988] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2739), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2364), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), [sym_line_comment] = STATE(988), [sym_block_comment] = STATE(988), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), }, [989] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2190), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2363), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), [sym_line_comment] = STATE(989), [sym_block_comment] = STATE(989), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), }, [990] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2664), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(3025), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), [sym_line_comment] = STATE(990), [sym_block_comment] = STATE(990), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), }, [991] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2193), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2945), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), [sym_line_comment] = STATE(991), [sym_block_comment] = STATE(991), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), }, [992] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2195), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2932), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), [sym_line_comment] = STATE(992), [sym_block_comment] = STATE(992), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), }, [993] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2780), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2016), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), [sym_line_comment] = STATE(993), [sym_block_comment] = STATE(993), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), }, [994] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2523), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2759), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), [sym_line_comment] = STATE(994), [sym_block_comment] = STATE(994), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), }, [995] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1975), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3424), + [sym_removed_trait_bound] = STATE(1441), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(1392), + [sym_bracketed_type] = STATE(3609), + [sym_lifetime] = STATE(3531), + [sym_array_type] = STATE(1441), + [sym_for_lifetimes] = STATE(1668), + [sym_function_type] = STATE(1441), + [sym_tuple_type] = STATE(1441), + [sym_unit_type] = STATE(1441), + [sym_generic_type] = STATE(1270), + [sym_generic_type_with_turbofish] = STATE(3599), + [sym_bounded_type] = STATE(1441), + [sym_reference_type] = STATE(1441), + [sym_pointer_type] = STATE(1441), + [sym_never_type] = STATE(1441), + [sym_abstract_type] = STATE(1441), + [sym_dynamic_type] = STATE(1441), + [sym_macro_invocation] = STATE(1441), + [sym_scoped_identifier] = STATE(3399), + [sym_scoped_type_identifier] = STATE(1054), [sym_line_comment] = STATE(995), [sym_block_comment] = STATE(995), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3171), + [anon_sym_LPAREN] = ACTIONS(3173), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_STAR] = ACTIONS(3179), + [anon_sym_QMARK] = ACTIONS(3181), + [anon_sym_u8] = ACTIONS(3183), + [anon_sym_i8] = ACTIONS(3183), + [anon_sym_u16] = ACTIONS(3183), + [anon_sym_i16] = ACTIONS(3183), + [anon_sym_u32] = ACTIONS(3183), + [anon_sym_i32] = ACTIONS(3183), + [anon_sym_u64] = ACTIONS(3183), + [anon_sym_i64] = ACTIONS(3183), + [anon_sym_u128] = ACTIONS(3183), + [anon_sym_i128] = ACTIONS(3183), + [anon_sym_isize] = ACTIONS(3183), + [anon_sym_usize] = ACTIONS(3183), + [anon_sym_f32] = ACTIONS(3183), + [anon_sym_f64] = ACTIONS(3183), + [anon_sym_bool] = ACTIONS(3183), + [anon_sym_str] = ACTIONS(3183), + [anon_sym_char] = ACTIONS(3183), + [anon_sym_BANG] = ACTIONS(3185), + [anon_sym_AMP] = ACTIONS(3187), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(3189), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(3191), + [anon_sym_fn] = ACTIONS(3193), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(3195), + [anon_sym_union] = ACTIONS(3197), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(3199), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3203), + [sym_super] = ACTIONS(3203), + [sym_crate] = ACTIONS(3203), + [sym_metavariable] = ACTIONS(3205), }, [996] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2947), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2878), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), [sym_line_comment] = STATE(996), [sym_block_comment] = STATE(996), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), }, [997] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1989), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2685), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), [sym_line_comment] = STATE(997), [sym_block_comment] = STATE(997), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), }, [998] = { - [sym_function_modifiers] = STATE(3473), - [sym_removed_trait_bound] = STATE(1701), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1764), - [sym_bracketed_type] = STATE(3529), - [sym_lifetime] = STATE(3368), - [sym_array_type] = STATE(1701), - [sym_for_lifetimes] = STATE(1613), - [sym_function_type] = STATE(1701), - [sym_tuple_type] = STATE(1701), - [sym_unit_type] = STATE(1701), - [sym_generic_type] = STATE(1608), - [sym_generic_type_with_turbofish] = STATE(3521), - [sym_bounded_type] = STATE(1701), - [sym_reference_type] = STATE(1701), - [sym_pointer_type] = STATE(1701), - [sym_never_type] = STATE(1701), - [sym_abstract_type] = STATE(1701), - [sym_dynamic_type] = STATE(1701), - [sym_macro_invocation] = STATE(1701), - [sym_scoped_identifier] = STATE(3264), - [sym_scoped_type_identifier] = STATE(1526), + [sym_function_modifiers] = STATE(3567), + [sym_removed_trait_bound] = STATE(1759), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(1811), + [sym_bracketed_type] = STATE(3624), + [sym_lifetime] = STATE(3628), + [sym_array_type] = STATE(1759), + [sym_for_lifetimes] = STATE(1661), + [sym_function_type] = STATE(1759), + [sym_tuple_type] = STATE(1759), + [sym_unit_type] = STATE(1759), + [sym_generic_type] = STATE(1650), + [sym_generic_type_with_turbofish] = STATE(3616), + [sym_bounded_type] = STATE(1759), + [sym_reference_type] = STATE(1759), + [sym_pointer_type] = STATE(1759), + [sym_never_type] = STATE(1759), + [sym_abstract_type] = STATE(1759), + [sym_dynamic_type] = STATE(1759), + [sym_macro_invocation] = STATE(1759), + [sym_scoped_identifier] = STATE(3211), + [sym_scoped_type_identifier] = STATE(1570), [sym_line_comment] = STATE(998), [sym_block_comment] = STATE(998), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3059), - [anon_sym_LPAREN] = ACTIONS(3061), - [anon_sym_LBRACK] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_QMARK] = ACTIONS(3069), - [anon_sym_u8] = ACTIONS(3071), - [anon_sym_i8] = ACTIONS(3071), - [anon_sym_u16] = ACTIONS(3071), - [anon_sym_i16] = ACTIONS(3071), - [anon_sym_u32] = ACTIONS(3071), - [anon_sym_i32] = ACTIONS(3071), - [anon_sym_u64] = ACTIONS(3071), - [anon_sym_i64] = ACTIONS(3071), - [anon_sym_u128] = ACTIONS(3071), - [anon_sym_i128] = ACTIONS(3071), - [anon_sym_isize] = ACTIONS(3071), - [anon_sym_usize] = ACTIONS(3071), - [anon_sym_f32] = ACTIONS(3071), - [anon_sym_f64] = ACTIONS(3071), - [anon_sym_bool] = ACTIONS(3071), - [anon_sym_str] = ACTIONS(3071), - [anon_sym_char] = ACTIONS(3071), - [anon_sym_BANG] = ACTIONS(3073), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3077), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(3079), - [anon_sym_fn] = ACTIONS(3081), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(3083), - [anon_sym_union] = ACTIONS(3085), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(3087), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3091), - [sym_super] = ACTIONS(3091), - [sym_crate] = ACTIONS(3091), - [sym_metavariable] = ACTIONS(3093), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3135), + [anon_sym_LPAREN] = ACTIONS(3137), + [anon_sym_LBRACK] = ACTIONS(3139), + [anon_sym_STAR] = ACTIONS(3143), + [anon_sym_QMARK] = ACTIONS(3145), + [anon_sym_u8] = ACTIONS(3147), + [anon_sym_i8] = ACTIONS(3147), + [anon_sym_u16] = ACTIONS(3147), + [anon_sym_i16] = ACTIONS(3147), + [anon_sym_u32] = ACTIONS(3147), + [anon_sym_i32] = ACTIONS(3147), + [anon_sym_u64] = ACTIONS(3147), + [anon_sym_i64] = ACTIONS(3147), + [anon_sym_u128] = ACTIONS(3147), + [anon_sym_i128] = ACTIONS(3147), + [anon_sym_isize] = ACTIONS(3147), + [anon_sym_usize] = ACTIONS(3147), + [anon_sym_f32] = ACTIONS(3147), + [anon_sym_f64] = ACTIONS(3147), + [anon_sym_bool] = ACTIONS(3147), + [anon_sym_str] = ACTIONS(3147), + [anon_sym_char] = ACTIONS(3147), + [anon_sym_BANG] = ACTIONS(3149), + [anon_sym_AMP] = ACTIONS(3151), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(3153), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(3155), + [anon_sym_fn] = ACTIONS(3157), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(3159), + [anon_sym_union] = ACTIONS(3161), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(3163), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3167), + [sym_super] = ACTIONS(3167), + [sym_crate] = ACTIONS(3167), + [sym_metavariable] = ACTIONS(3169), }, [999] = { - [sym_function_modifiers] = STATE(3473), - [sym_removed_trait_bound] = STATE(1701), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1765), - [sym_bracketed_type] = STATE(3529), - [sym_lifetime] = STATE(3368), - [sym_array_type] = STATE(1701), - [sym_for_lifetimes] = STATE(1613), - [sym_function_type] = STATE(1701), - [sym_tuple_type] = STATE(1701), - [sym_unit_type] = STATE(1701), - [sym_generic_type] = STATE(1608), - [sym_generic_type_with_turbofish] = STATE(3521), - [sym_bounded_type] = STATE(1701), - [sym_reference_type] = STATE(1701), - [sym_pointer_type] = STATE(1701), - [sym_never_type] = STATE(1701), - [sym_abstract_type] = STATE(1701), - [sym_dynamic_type] = STATE(1701), - [sym_macro_invocation] = STATE(1701), - [sym_scoped_identifier] = STATE(3264), - [sym_scoped_type_identifier] = STATE(1526), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2355), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), [sym_line_comment] = STATE(999), [sym_block_comment] = STATE(999), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3059), - [anon_sym_LPAREN] = ACTIONS(3061), - [anon_sym_LBRACK] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_QMARK] = ACTIONS(3069), - [anon_sym_u8] = ACTIONS(3071), - [anon_sym_i8] = ACTIONS(3071), - [anon_sym_u16] = ACTIONS(3071), - [anon_sym_i16] = ACTIONS(3071), - [anon_sym_u32] = ACTIONS(3071), - [anon_sym_i32] = ACTIONS(3071), - [anon_sym_u64] = ACTIONS(3071), - [anon_sym_i64] = ACTIONS(3071), - [anon_sym_u128] = ACTIONS(3071), - [anon_sym_i128] = ACTIONS(3071), - [anon_sym_isize] = ACTIONS(3071), - [anon_sym_usize] = ACTIONS(3071), - [anon_sym_f32] = ACTIONS(3071), - [anon_sym_f64] = ACTIONS(3071), - [anon_sym_bool] = ACTIONS(3071), - [anon_sym_str] = ACTIONS(3071), - [anon_sym_char] = ACTIONS(3071), - [anon_sym_BANG] = ACTIONS(3073), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3077), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(3079), - [anon_sym_fn] = ACTIONS(3081), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(3083), - [anon_sym_union] = ACTIONS(3085), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(3087), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3091), - [sym_super] = ACTIONS(3091), - [sym_crate] = ACTIONS(3091), - [sym_metavariable] = ACTIONS(3093), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), }, [1000] = { - [sym_function_modifiers] = STATE(3473), - [sym_removed_trait_bound] = STATE(1701), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(1725), - [sym_bracketed_type] = STATE(3529), - [sym_lifetime] = STATE(3368), - [sym_array_type] = STATE(1701), - [sym_for_lifetimes] = STATE(1613), - [sym_function_type] = STATE(1701), - [sym_tuple_type] = STATE(1701), - [sym_unit_type] = STATE(1701), - [sym_generic_type] = STATE(1608), - [sym_generic_type_with_turbofish] = STATE(3521), - [sym_bounded_type] = STATE(1701), - [sym_reference_type] = STATE(1701), - [sym_pointer_type] = STATE(1701), - [sym_never_type] = STATE(1701), - [sym_abstract_type] = STATE(1701), - [sym_dynamic_type] = STATE(1701), - [sym_macro_invocation] = STATE(1701), - [sym_scoped_identifier] = STATE(3264), - [sym_scoped_type_identifier] = STATE(1526), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2718), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), [sym_line_comment] = STATE(1000), [sym_block_comment] = STATE(1000), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(3059), - [anon_sym_LPAREN] = ACTIONS(3061), - [anon_sym_LBRACK] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_QMARK] = ACTIONS(3069), - [anon_sym_u8] = ACTIONS(3071), - [anon_sym_i8] = ACTIONS(3071), - [anon_sym_u16] = ACTIONS(3071), - [anon_sym_i16] = ACTIONS(3071), - [anon_sym_u32] = ACTIONS(3071), - [anon_sym_i32] = ACTIONS(3071), - [anon_sym_u64] = ACTIONS(3071), - [anon_sym_i64] = ACTIONS(3071), - [anon_sym_u128] = ACTIONS(3071), - [anon_sym_i128] = ACTIONS(3071), - [anon_sym_isize] = ACTIONS(3071), - [anon_sym_usize] = ACTIONS(3071), - [anon_sym_f32] = ACTIONS(3071), - [anon_sym_f64] = ACTIONS(3071), - [anon_sym_bool] = ACTIONS(3071), - [anon_sym_str] = ACTIONS(3071), - [anon_sym_char] = ACTIONS(3071), - [anon_sym_BANG] = ACTIONS(3073), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3077), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(3079), - [anon_sym_fn] = ACTIONS(3081), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(3083), - [anon_sym_union] = ACTIONS(3085), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(3087), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3091), - [sym_super] = ACTIONS(3091), - [sym_crate] = ACTIONS(3091), - [sym_metavariable] = ACTIONS(3093), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), }, [1001] = { - [sym_function_modifiers] = STATE(3427), - [sym_removed_trait_bound] = STATE(1978), - [sym_extern_modifier] = STATE(2320), - [sym__type] = STATE(2312), - [sym_bracketed_type] = STATE(3332), - [sym_lifetime] = STATE(3533), - [sym_array_type] = STATE(1978), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1978), - [sym_tuple_type] = STATE(1978), - [sym_unit_type] = STATE(1978), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3430), - [sym_bounded_type] = STATE(1978), - [sym_reference_type] = STATE(1978), - [sym_pointer_type] = STATE(1978), - [sym_never_type] = STATE(1978), - [sym_abstract_type] = STATE(1978), - [sym_dynamic_type] = STATE(1978), - [sym_macro_invocation] = STATE(1978), - [sym_scoped_identifier] = STATE(3153), - [sym_scoped_type_identifier] = STATE(1920), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2342), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), [sym_line_comment] = STATE(1001), [sym_block_comment] = STATE(1001), - [aux_sym_function_modifiers_repeat1] = STATE(2206), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [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_BANG] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_dyn] = ACTIONS(1302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), }, [1002] = { - [sym_attribute_item] = STATE(1003), + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2554), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), [sym_line_comment] = STATE(1002), [sym_block_comment] = STATE(1002), - [aux_sym_enum_variant_list_repeat1] = STATE(1002), - [sym_identifier] = ACTIONS(3201), - [anon_sym_LPAREN] = ACTIONS(796), - [anon_sym_LBRACK] = ACTIONS(796), - [anon_sym_RBRACK] = ACTIONS(796), - [anon_sym_LBRACE] = ACTIONS(796), - [anon_sym_STAR] = ACTIONS(796), - [anon_sym_u8] = ACTIONS(3201), - [anon_sym_i8] = ACTIONS(3201), - [anon_sym_u16] = ACTIONS(3201), - [anon_sym_i16] = ACTIONS(3201), - [anon_sym_u32] = ACTIONS(3201), - [anon_sym_i32] = ACTIONS(3201), - [anon_sym_u64] = ACTIONS(3201), - [anon_sym_i64] = ACTIONS(3201), - [anon_sym_u128] = ACTIONS(3201), - [anon_sym_i128] = ACTIONS(3201), - [anon_sym_isize] = ACTIONS(3201), - [anon_sym_usize] = ACTIONS(3201), - [anon_sym_f32] = ACTIONS(3201), - [anon_sym_f64] = ACTIONS(3201), - [anon_sym_bool] = ACTIONS(3201), - [anon_sym_str] = ACTIONS(3201), - [anon_sym_char] = ACTIONS(3201), - [anon_sym_DASH] = ACTIONS(796), - [anon_sym_BANG] = ACTIONS(796), - [anon_sym_AMP] = ACTIONS(796), - [anon_sym_PIPE] = ACTIONS(796), - [anon_sym_LT] = ACTIONS(796), - [anon_sym_DOT_DOT] = ACTIONS(796), - [anon_sym_COMMA] = ACTIONS(796), - [anon_sym_COLON_COLON] = ACTIONS(796), - [anon_sym_POUND] = ACTIONS(822), - [anon_sym_SQUOTE] = ACTIONS(3201), - [anon_sym_async] = ACTIONS(3201), - [anon_sym_break] = ACTIONS(3201), - [anon_sym_const] = ACTIONS(3201), - [anon_sym_continue] = ACTIONS(3201), - [anon_sym_default] = ACTIONS(3201), - [anon_sym_for] = ACTIONS(3201), - [anon_sym_if] = ACTIONS(3201), - [anon_sym_loop] = ACTIONS(3201), - [anon_sym_match] = ACTIONS(3201), - [anon_sym_return] = ACTIONS(3201), - [anon_sym_static] = ACTIONS(3201), - [anon_sym_union] = ACTIONS(3201), - [anon_sym_unsafe] = ACTIONS(3201), - [anon_sym_while] = ACTIONS(3201), - [anon_sym_yield] = ACTIONS(3201), - [anon_sym_move] = ACTIONS(3201), - [anon_sym_try] = ACTIONS(3201), - [sym_integer_literal] = ACTIONS(796), - [aux_sym_string_literal_token1] = ACTIONS(796), - [sym_char_literal] = ACTIONS(796), - [anon_sym_true] = ACTIONS(3201), - [anon_sym_false] = ACTIONS(3201), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3201), - [sym_super] = ACTIONS(3201), - [sym_crate] = ACTIONS(3201), - [sym_metavariable] = ACTIONS(796), - [sym__raw_string_literal_start] = ACTIONS(796), - [sym_float_literal] = ACTIONS(796), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), }, [1003] = { + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(3079), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), [sym_line_comment] = STATE(1003), [sym_block_comment] = STATE(1003), - [sym_identifier] = ACTIONS(3203), - [anon_sym_LPAREN] = ACTIONS(3205), - [anon_sym_LBRACK] = ACTIONS(3205), - [anon_sym_RBRACK] = ACTIONS(3205), - [anon_sym_LBRACE] = ACTIONS(3205), - [anon_sym_STAR] = ACTIONS(3205), - [anon_sym_u8] = ACTIONS(3203), - [anon_sym_i8] = ACTIONS(3203), - [anon_sym_u16] = ACTIONS(3203), - [anon_sym_i16] = ACTIONS(3203), - [anon_sym_u32] = ACTIONS(3203), - [anon_sym_i32] = ACTIONS(3203), - [anon_sym_u64] = ACTIONS(3203), - [anon_sym_i64] = ACTIONS(3203), - [anon_sym_u128] = ACTIONS(3203), - [anon_sym_i128] = ACTIONS(3203), - [anon_sym_isize] = ACTIONS(3203), - [anon_sym_usize] = ACTIONS(3203), - [anon_sym_f32] = ACTIONS(3203), - [anon_sym_f64] = ACTIONS(3203), - [anon_sym_bool] = ACTIONS(3203), - [anon_sym_str] = ACTIONS(3203), - [anon_sym_char] = ACTIONS(3203), - [anon_sym_DASH] = ACTIONS(3205), - [anon_sym_BANG] = ACTIONS(3205), - [anon_sym_AMP] = ACTIONS(3205), - [anon_sym_PIPE] = ACTIONS(3205), - [anon_sym_LT] = ACTIONS(3205), - [anon_sym_DOT_DOT] = ACTIONS(3205), - [anon_sym_COMMA] = ACTIONS(3205), - [anon_sym_COLON_COLON] = ACTIONS(3205), - [anon_sym_POUND] = ACTIONS(3205), - [anon_sym_SQUOTE] = ACTIONS(3203), - [anon_sym_async] = ACTIONS(3203), - [anon_sym_break] = ACTIONS(3203), - [anon_sym_const] = ACTIONS(3203), - [anon_sym_continue] = ACTIONS(3203), - [anon_sym_default] = ACTIONS(3203), - [anon_sym_for] = ACTIONS(3203), - [anon_sym_if] = ACTIONS(3203), - [anon_sym_loop] = ACTIONS(3203), - [anon_sym_match] = ACTIONS(3203), - [anon_sym_return] = ACTIONS(3203), - [anon_sym_static] = ACTIONS(3203), - [anon_sym_union] = ACTIONS(3203), - [anon_sym_unsafe] = ACTIONS(3203), - [anon_sym_while] = ACTIONS(3203), - [anon_sym_yield] = ACTIONS(3203), - [anon_sym_move] = ACTIONS(3203), - [anon_sym_try] = ACTIONS(3203), - [sym_integer_literal] = ACTIONS(3205), - [aux_sym_string_literal_token1] = ACTIONS(3205), - [sym_char_literal] = ACTIONS(3205), - [anon_sym_true] = ACTIONS(3203), - [anon_sym_false] = ACTIONS(3203), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3203), - [sym_super] = ACTIONS(3203), - [sym_crate] = ACTIONS(3203), - [sym_metavariable] = ACTIONS(3205), - [sym__raw_string_literal_start] = ACTIONS(3205), - [sym_float_literal] = ACTIONS(3205), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), + }, + [1004] = { + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2450), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), + [sym_line_comment] = STATE(1004), + [sym_block_comment] = STATE(1004), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), + }, + [1005] = { + [sym_function_modifiers] = STATE(3567), + [sym_removed_trait_bound] = STATE(1759), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(1812), + [sym_bracketed_type] = STATE(3624), + [sym_lifetime] = STATE(3628), + [sym_array_type] = STATE(1759), + [sym_for_lifetimes] = STATE(1661), + [sym_function_type] = STATE(1759), + [sym_tuple_type] = STATE(1759), + [sym_unit_type] = STATE(1759), + [sym_generic_type] = STATE(1650), + [sym_generic_type_with_turbofish] = STATE(3616), + [sym_bounded_type] = STATE(1759), + [sym_reference_type] = STATE(1759), + [sym_pointer_type] = STATE(1759), + [sym_never_type] = STATE(1759), + [sym_abstract_type] = STATE(1759), + [sym_dynamic_type] = STATE(1759), + [sym_macro_invocation] = STATE(1759), + [sym_scoped_identifier] = STATE(3211), + [sym_scoped_type_identifier] = STATE(1570), + [sym_line_comment] = STATE(1005), + [sym_block_comment] = STATE(1005), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3135), + [anon_sym_LPAREN] = ACTIONS(3137), + [anon_sym_LBRACK] = ACTIONS(3139), + [anon_sym_STAR] = ACTIONS(3143), + [anon_sym_QMARK] = ACTIONS(3145), + [anon_sym_u8] = ACTIONS(3147), + [anon_sym_i8] = ACTIONS(3147), + [anon_sym_u16] = ACTIONS(3147), + [anon_sym_i16] = ACTIONS(3147), + [anon_sym_u32] = ACTIONS(3147), + [anon_sym_i32] = ACTIONS(3147), + [anon_sym_u64] = ACTIONS(3147), + [anon_sym_i64] = ACTIONS(3147), + [anon_sym_u128] = ACTIONS(3147), + [anon_sym_i128] = ACTIONS(3147), + [anon_sym_isize] = ACTIONS(3147), + [anon_sym_usize] = ACTIONS(3147), + [anon_sym_f32] = ACTIONS(3147), + [anon_sym_f64] = ACTIONS(3147), + [anon_sym_bool] = ACTIONS(3147), + [anon_sym_str] = ACTIONS(3147), + [anon_sym_char] = ACTIONS(3147), + [anon_sym_BANG] = ACTIONS(3149), + [anon_sym_AMP] = ACTIONS(3151), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(3153), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(3155), + [anon_sym_fn] = ACTIONS(3157), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(3159), + [anon_sym_union] = ACTIONS(3161), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(3163), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3167), + [sym_super] = ACTIONS(3167), + [sym_crate] = ACTIONS(3167), + [sym_metavariable] = ACTIONS(3169), + }, + [1006] = { + [sym_function_modifiers] = STATE(3567), + [sym_removed_trait_bound] = STATE(1759), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(1853), + [sym_bracketed_type] = STATE(3624), + [sym_lifetime] = STATE(3628), + [sym_array_type] = STATE(1759), + [sym_for_lifetimes] = STATE(1661), + [sym_function_type] = STATE(1759), + [sym_tuple_type] = STATE(1759), + [sym_unit_type] = STATE(1759), + [sym_generic_type] = STATE(1650), + [sym_generic_type_with_turbofish] = STATE(3616), + [sym_bounded_type] = STATE(1759), + [sym_reference_type] = STATE(1759), + [sym_pointer_type] = STATE(1759), + [sym_never_type] = STATE(1759), + [sym_abstract_type] = STATE(1759), + [sym_dynamic_type] = STATE(1759), + [sym_macro_invocation] = STATE(1759), + [sym_scoped_identifier] = STATE(3211), + [sym_scoped_type_identifier] = STATE(1570), + [sym_line_comment] = STATE(1006), + [sym_block_comment] = STATE(1006), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3135), + [anon_sym_LPAREN] = ACTIONS(3137), + [anon_sym_LBRACK] = ACTIONS(3139), + [anon_sym_STAR] = ACTIONS(3143), + [anon_sym_QMARK] = ACTIONS(3145), + [anon_sym_u8] = ACTIONS(3147), + [anon_sym_i8] = ACTIONS(3147), + [anon_sym_u16] = ACTIONS(3147), + [anon_sym_i16] = ACTIONS(3147), + [anon_sym_u32] = ACTIONS(3147), + [anon_sym_i32] = ACTIONS(3147), + [anon_sym_u64] = ACTIONS(3147), + [anon_sym_i64] = ACTIONS(3147), + [anon_sym_u128] = ACTIONS(3147), + [anon_sym_i128] = ACTIONS(3147), + [anon_sym_isize] = ACTIONS(3147), + [anon_sym_usize] = ACTIONS(3147), + [anon_sym_f32] = ACTIONS(3147), + [anon_sym_f64] = ACTIONS(3147), + [anon_sym_bool] = ACTIONS(3147), + [anon_sym_str] = ACTIONS(3147), + [anon_sym_char] = ACTIONS(3147), + [anon_sym_BANG] = ACTIONS(3149), + [anon_sym_AMP] = ACTIONS(3151), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(3153), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(3155), + [anon_sym_fn] = ACTIONS(3157), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(3159), + [anon_sym_union] = ACTIONS(3161), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(3163), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3167), + [sym_super] = ACTIONS(3167), + [sym_crate] = ACTIONS(3167), + [sym_metavariable] = ACTIONS(3169), + }, + [1007] = { + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2026), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), + [sym_line_comment] = STATE(1007), + [sym_block_comment] = STATE(1007), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), + }, + [1008] = { + [sym_function_modifiers] = STATE(3567), + [sym_removed_trait_bound] = STATE(1759), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(1763), + [sym_bracketed_type] = STATE(3624), + [sym_lifetime] = STATE(3628), + [sym_array_type] = STATE(1759), + [sym_for_lifetimes] = STATE(1661), + [sym_function_type] = STATE(1759), + [sym_tuple_type] = STATE(1759), + [sym_unit_type] = STATE(1759), + [sym_generic_type] = STATE(1650), + [sym_generic_type_with_turbofish] = STATE(3616), + [sym_bounded_type] = STATE(1759), + [sym_reference_type] = STATE(1759), + [sym_pointer_type] = STATE(1759), + [sym_never_type] = STATE(1759), + [sym_abstract_type] = STATE(1759), + [sym_dynamic_type] = STATE(1759), + [sym_macro_invocation] = STATE(1759), + [sym_scoped_identifier] = STATE(3211), + [sym_scoped_type_identifier] = STATE(1570), + [sym_line_comment] = STATE(1008), + [sym_block_comment] = STATE(1008), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3135), + [anon_sym_LPAREN] = ACTIONS(3137), + [anon_sym_LBRACK] = ACTIONS(3139), + [anon_sym_STAR] = ACTIONS(3143), + [anon_sym_QMARK] = ACTIONS(3145), + [anon_sym_u8] = ACTIONS(3147), + [anon_sym_i8] = ACTIONS(3147), + [anon_sym_u16] = ACTIONS(3147), + [anon_sym_i16] = ACTIONS(3147), + [anon_sym_u32] = ACTIONS(3147), + [anon_sym_i32] = ACTIONS(3147), + [anon_sym_u64] = ACTIONS(3147), + [anon_sym_i64] = ACTIONS(3147), + [anon_sym_u128] = ACTIONS(3147), + [anon_sym_i128] = ACTIONS(3147), + [anon_sym_isize] = ACTIONS(3147), + [anon_sym_usize] = ACTIONS(3147), + [anon_sym_f32] = ACTIONS(3147), + [anon_sym_f64] = ACTIONS(3147), + [anon_sym_bool] = ACTIONS(3147), + [anon_sym_str] = ACTIONS(3147), + [anon_sym_char] = ACTIONS(3147), + [anon_sym_BANG] = ACTIONS(3149), + [anon_sym_AMP] = ACTIONS(3151), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(3153), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(3155), + [anon_sym_fn] = ACTIONS(3157), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(3159), + [anon_sym_union] = ACTIONS(3161), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(3163), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3167), + [sym_super] = ACTIONS(3167), + [sym_crate] = ACTIONS(3167), + [sym_metavariable] = ACTIONS(3169), + }, + [1009] = { + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2566), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), + [sym_line_comment] = STATE(1009), + [sym_block_comment] = STATE(1009), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), + }, + [1010] = { + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2016), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), + [sym_line_comment] = STATE(1010), + [sym_block_comment] = STATE(1010), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3273), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), + }, + [1011] = { + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2938), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), + [sym_line_comment] = STATE(1011), + [sym_block_comment] = STATE(1011), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), + }, + [1012] = { + [sym_function_modifiers] = STATE(3567), + [sym_removed_trait_bound] = STATE(1759), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(1706), + [sym_bracketed_type] = STATE(3624), + [sym_lifetime] = STATE(3628), + [sym_array_type] = STATE(1759), + [sym_for_lifetimes] = STATE(1661), + [sym_function_type] = STATE(1759), + [sym_tuple_type] = STATE(1759), + [sym_unit_type] = STATE(1759), + [sym_generic_type] = STATE(1650), + [sym_generic_type_with_turbofish] = STATE(3616), + [sym_bounded_type] = STATE(1759), + [sym_reference_type] = STATE(1759), + [sym_pointer_type] = STATE(1759), + [sym_never_type] = STATE(1759), + [sym_abstract_type] = STATE(1759), + [sym_dynamic_type] = STATE(1759), + [sym_macro_invocation] = STATE(1759), + [sym_scoped_identifier] = STATE(3211), + [sym_scoped_type_identifier] = STATE(1570), + [sym_line_comment] = STATE(1012), + [sym_block_comment] = STATE(1012), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3135), + [anon_sym_LPAREN] = ACTIONS(3137), + [anon_sym_LBRACK] = ACTIONS(3139), + [anon_sym_STAR] = ACTIONS(3143), + [anon_sym_QMARK] = ACTIONS(3145), + [anon_sym_u8] = ACTIONS(3147), + [anon_sym_i8] = ACTIONS(3147), + [anon_sym_u16] = ACTIONS(3147), + [anon_sym_i16] = ACTIONS(3147), + [anon_sym_u32] = ACTIONS(3147), + [anon_sym_i32] = ACTIONS(3147), + [anon_sym_u64] = ACTIONS(3147), + [anon_sym_i64] = ACTIONS(3147), + [anon_sym_u128] = ACTIONS(3147), + [anon_sym_i128] = ACTIONS(3147), + [anon_sym_isize] = ACTIONS(3147), + [anon_sym_usize] = ACTIONS(3147), + [anon_sym_f32] = ACTIONS(3147), + [anon_sym_f64] = ACTIONS(3147), + [anon_sym_bool] = ACTIONS(3147), + [anon_sym_str] = ACTIONS(3147), + [anon_sym_char] = ACTIONS(3147), + [anon_sym_BANG] = ACTIONS(3149), + [anon_sym_AMP] = ACTIONS(3151), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(3153), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(3155), + [anon_sym_fn] = ACTIONS(3157), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(3159), + [anon_sym_union] = ACTIONS(3161), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(3163), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3167), + [sym_super] = ACTIONS(3167), + [sym_crate] = ACTIONS(3167), + [sym_metavariable] = ACTIONS(3169), + }, + [1013] = { + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2347), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(2350), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(2198), + [sym_line_comment] = STATE(1013), + [sym_block_comment] = STATE(1013), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3275), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), + }, + [1014] = { + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2459), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), + [sym_line_comment] = STATE(1014), + [sym_block_comment] = STATE(1014), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), + }, + [1015] = { + [sym_function_modifiers] = STATE(3567), + [sym_removed_trait_bound] = STATE(1759), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(1734), + [sym_bracketed_type] = STATE(3624), + [sym_lifetime] = STATE(3628), + [sym_array_type] = STATE(1759), + [sym_for_lifetimes] = STATE(1661), + [sym_function_type] = STATE(1759), + [sym_tuple_type] = STATE(1759), + [sym_unit_type] = STATE(1759), + [sym_generic_type] = STATE(1650), + [sym_generic_type_with_turbofish] = STATE(3616), + [sym_bounded_type] = STATE(1759), + [sym_reference_type] = STATE(1759), + [sym_pointer_type] = STATE(1759), + [sym_never_type] = STATE(1759), + [sym_abstract_type] = STATE(1759), + [sym_dynamic_type] = STATE(1759), + [sym_macro_invocation] = STATE(1759), + [sym_scoped_identifier] = STATE(3211), + [sym_scoped_type_identifier] = STATE(1570), + [sym_line_comment] = STATE(1015), + [sym_block_comment] = STATE(1015), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3135), + [anon_sym_LPAREN] = ACTIONS(3137), + [anon_sym_LBRACK] = ACTIONS(3139), + [anon_sym_STAR] = ACTIONS(3143), + [anon_sym_QMARK] = ACTIONS(3145), + [anon_sym_u8] = ACTIONS(3147), + [anon_sym_i8] = ACTIONS(3147), + [anon_sym_u16] = ACTIONS(3147), + [anon_sym_i16] = ACTIONS(3147), + [anon_sym_u32] = ACTIONS(3147), + [anon_sym_i32] = ACTIONS(3147), + [anon_sym_u64] = ACTIONS(3147), + [anon_sym_i64] = ACTIONS(3147), + [anon_sym_u128] = ACTIONS(3147), + [anon_sym_i128] = ACTIONS(3147), + [anon_sym_isize] = ACTIONS(3147), + [anon_sym_usize] = ACTIONS(3147), + [anon_sym_f32] = ACTIONS(3147), + [anon_sym_f64] = ACTIONS(3147), + [anon_sym_bool] = ACTIONS(3147), + [anon_sym_str] = ACTIONS(3147), + [anon_sym_char] = ACTIONS(3147), + [anon_sym_BANG] = ACTIONS(3149), + [anon_sym_AMP] = ACTIONS(3151), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(3153), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(3155), + [anon_sym_fn] = ACTIONS(3157), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(3159), + [anon_sym_union] = ACTIONS(3161), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(3163), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3167), + [sym_super] = ACTIONS(3167), + [sym_crate] = ACTIONS(3167), + [sym_metavariable] = ACTIONS(3169), + }, + [1016] = { + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(3192), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), + [sym_line_comment] = STATE(1016), + [sym_block_comment] = STATE(1016), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), + }, + [1017] = { + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(3099), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), + [sym_line_comment] = STATE(1017), + [sym_block_comment] = STATE(1017), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), + }, + [1018] = { + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2847), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), + [sym_line_comment] = STATE(1018), + [sym_block_comment] = STATE(1018), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), + }, + [1019] = { + [sym_function_modifiers] = STATE(3553), + [sym_removed_trait_bound] = STATE(2004), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(2644), + [sym_bracketed_type] = STATE(3418), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2004), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2004), + [sym_tuple_type] = STATE(2004), + [sym_unit_type] = STATE(2004), + [sym_generic_type] = STATE(1974), + [sym_generic_type_with_turbofish] = STATE(3547), + [sym_bounded_type] = STATE(2004), + [sym_reference_type] = STATE(2004), + [sym_pointer_type] = STATE(2004), + [sym_never_type] = STATE(2004), + [sym_abstract_type] = STATE(2004), + [sym_dynamic_type] = STATE(2004), + [sym_macro_invocation] = STATE(2004), + [sym_scoped_identifier] = STATE(3233), + [sym_scoped_type_identifier] = STATE(1947), + [sym_line_comment] = STATE(1019), + [sym_block_comment] = STATE(1019), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(1407), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), + }, + [1020] = { + [sym_function_modifiers] = STATE(3567), + [sym_removed_trait_bound] = STATE(1759), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(1708), + [sym_bracketed_type] = STATE(3624), + [sym_lifetime] = STATE(3628), + [sym_array_type] = STATE(1759), + [sym_for_lifetimes] = STATE(1661), + [sym_function_type] = STATE(1759), + [sym_tuple_type] = STATE(1759), + [sym_unit_type] = STATE(1759), + [sym_generic_type] = STATE(1650), + [sym_generic_type_with_turbofish] = STATE(3616), + [sym_bounded_type] = STATE(1759), + [sym_reference_type] = STATE(1759), + [sym_pointer_type] = STATE(1759), + [sym_never_type] = STATE(1759), + [sym_abstract_type] = STATE(1759), + [sym_dynamic_type] = STATE(1759), + [sym_macro_invocation] = STATE(1759), + [sym_scoped_identifier] = STATE(3211), + [sym_scoped_type_identifier] = STATE(1570), + [sym_line_comment] = STATE(1020), + [sym_block_comment] = STATE(1020), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3135), + [anon_sym_LPAREN] = ACTIONS(3137), + [anon_sym_LBRACK] = ACTIONS(3139), + [anon_sym_STAR] = ACTIONS(3143), + [anon_sym_QMARK] = ACTIONS(3145), + [anon_sym_u8] = ACTIONS(3147), + [anon_sym_i8] = ACTIONS(3147), + [anon_sym_u16] = ACTIONS(3147), + [anon_sym_i16] = ACTIONS(3147), + [anon_sym_u32] = ACTIONS(3147), + [anon_sym_i32] = ACTIONS(3147), + [anon_sym_u64] = ACTIONS(3147), + [anon_sym_i64] = ACTIONS(3147), + [anon_sym_u128] = ACTIONS(3147), + [anon_sym_i128] = ACTIONS(3147), + [anon_sym_isize] = ACTIONS(3147), + [anon_sym_usize] = ACTIONS(3147), + [anon_sym_f32] = ACTIONS(3147), + [anon_sym_f64] = ACTIONS(3147), + [anon_sym_bool] = ACTIONS(3147), + [anon_sym_str] = ACTIONS(3147), + [anon_sym_char] = ACTIONS(3147), + [anon_sym_BANG] = ACTIONS(3149), + [anon_sym_AMP] = ACTIONS(3151), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(3153), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(3155), + [anon_sym_fn] = ACTIONS(3157), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(3159), + [anon_sym_union] = ACTIONS(3161), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(3163), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3167), + [sym_super] = ACTIONS(3167), + [sym_crate] = ACTIONS(3167), + [sym_metavariable] = ACTIONS(3169), + }, + [1021] = { + [sym_function_modifiers] = STATE(3567), + [sym_removed_trait_bound] = STATE(1759), + [sym_extern_modifier] = STATE(2359), + [sym__type] = STATE(1702), + [sym_bracketed_type] = STATE(3624), + [sym_lifetime] = STATE(3628), + [sym_array_type] = STATE(1759), + [sym_for_lifetimes] = STATE(1661), + [sym_function_type] = STATE(1759), + [sym_tuple_type] = STATE(1759), + [sym_unit_type] = STATE(1759), + [sym_generic_type] = STATE(1650), + [sym_generic_type_with_turbofish] = STATE(3616), + [sym_bounded_type] = STATE(1759), + [sym_reference_type] = STATE(1759), + [sym_pointer_type] = STATE(1759), + [sym_never_type] = STATE(1759), + [sym_abstract_type] = STATE(1759), + [sym_dynamic_type] = STATE(1759), + [sym_macro_invocation] = STATE(1759), + [sym_scoped_identifier] = STATE(3211), + [sym_scoped_type_identifier] = STATE(1570), + [sym_line_comment] = STATE(1021), + [sym_block_comment] = STATE(1021), + [aux_sym_function_modifiers_repeat1] = STATE(2255), + [sym_identifier] = ACTIONS(3135), + [anon_sym_LPAREN] = ACTIONS(3137), + [anon_sym_LBRACK] = ACTIONS(3139), + [anon_sym_STAR] = ACTIONS(3143), + [anon_sym_QMARK] = ACTIONS(3145), + [anon_sym_u8] = ACTIONS(3147), + [anon_sym_i8] = ACTIONS(3147), + [anon_sym_u16] = ACTIONS(3147), + [anon_sym_i16] = ACTIONS(3147), + [anon_sym_u32] = ACTIONS(3147), + [anon_sym_i32] = ACTIONS(3147), + [anon_sym_u64] = ACTIONS(3147), + [anon_sym_i64] = ACTIONS(3147), + [anon_sym_u128] = ACTIONS(3147), + [anon_sym_i128] = ACTIONS(3147), + [anon_sym_isize] = ACTIONS(3147), + [anon_sym_usize] = ACTIONS(3147), + [anon_sym_f32] = ACTIONS(3147), + [anon_sym_f64] = ACTIONS(3147), + [anon_sym_bool] = ACTIONS(3147), + [anon_sym_str] = ACTIONS(3147), + [anon_sym_char] = ACTIONS(3147), + [anon_sym_BANG] = ACTIONS(3149), + [anon_sym_AMP] = ACTIONS(3151), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(3153), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(3155), + [anon_sym_fn] = ACTIONS(3157), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(3159), + [anon_sym_union] = ACTIONS(3161), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_dyn] = ACTIONS(3163), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3167), + [sym_super] = ACTIONS(3167), + [sym_crate] = ACTIONS(3167), + [sym_metavariable] = ACTIONS(3169), + }, + [1022] = { + [sym_attribute_item] = STATE(1023), + [sym_line_comment] = STATE(1022), + [sym_block_comment] = STATE(1022), + [aux_sym_enum_variant_list_repeat1] = STATE(1022), + [sym_identifier] = ACTIONS(3279), + [anon_sym_LPAREN] = ACTIONS(793), + [anon_sym_LBRACK] = ACTIONS(793), + [anon_sym_RBRACK] = ACTIONS(793), + [anon_sym_LBRACE] = ACTIONS(793), + [anon_sym_COMMA] = ACTIONS(793), + [anon_sym_STAR] = ACTIONS(793), + [anon_sym_u8] = ACTIONS(3279), + [anon_sym_i8] = ACTIONS(3279), + [anon_sym_u16] = ACTIONS(3279), + [anon_sym_i16] = ACTIONS(3279), + [anon_sym_u32] = ACTIONS(3279), + [anon_sym_i32] = ACTIONS(3279), + [anon_sym_u64] = ACTIONS(3279), + [anon_sym_i64] = ACTIONS(3279), + [anon_sym_u128] = ACTIONS(3279), + [anon_sym_i128] = ACTIONS(3279), + [anon_sym_isize] = ACTIONS(3279), + [anon_sym_usize] = ACTIONS(3279), + [anon_sym_f32] = ACTIONS(3279), + [anon_sym_f64] = ACTIONS(3279), + [anon_sym_bool] = ACTIONS(3279), + [anon_sym_str] = ACTIONS(3279), + [anon_sym_char] = ACTIONS(3279), + [anon_sym_DASH] = ACTIONS(793), + [anon_sym_BANG] = ACTIONS(793), + [anon_sym_AMP] = ACTIONS(793), + [anon_sym_PIPE] = ACTIONS(793), + [anon_sym_LT] = ACTIONS(793), + [anon_sym_DOT_DOT] = ACTIONS(793), + [anon_sym_COLON_COLON] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(819), + [anon_sym_SQUOTE] = ACTIONS(3279), + [anon_sym_async] = ACTIONS(3279), + [anon_sym_break] = ACTIONS(3279), + [anon_sym_const] = ACTIONS(3279), + [anon_sym_continue] = ACTIONS(3279), + [anon_sym_default] = ACTIONS(3279), + [anon_sym_for] = ACTIONS(3279), + [anon_sym_if] = ACTIONS(3279), + [anon_sym_loop] = ACTIONS(3279), + [anon_sym_match] = ACTIONS(3279), + [anon_sym_return] = ACTIONS(3279), + [anon_sym_static] = ACTIONS(3279), + [anon_sym_union] = ACTIONS(3279), + [anon_sym_unsafe] = ACTIONS(3279), + [anon_sym_while] = ACTIONS(3279), + [anon_sym_yield] = ACTIONS(3279), + [anon_sym_move] = ACTIONS(3279), + [anon_sym_try] = ACTIONS(3279), + [sym_integer_literal] = ACTIONS(793), + [aux_sym_string_literal_token1] = ACTIONS(793), + [sym_char_literal] = ACTIONS(793), + [anon_sym_true] = ACTIONS(3279), + [anon_sym_false] = ACTIONS(3279), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3279), + [sym_super] = ACTIONS(3279), + [sym_crate] = ACTIONS(3279), + [sym_metavariable] = ACTIONS(793), + [sym__raw_string_literal_start] = ACTIONS(793), + [sym_float_literal] = ACTIONS(793), + }, + [1023] = { + [sym_line_comment] = STATE(1023), + [sym_block_comment] = STATE(1023), + [sym_identifier] = ACTIONS(3281), + [anon_sym_LPAREN] = ACTIONS(3283), + [anon_sym_LBRACK] = ACTIONS(3283), + [anon_sym_RBRACK] = ACTIONS(3283), + [anon_sym_LBRACE] = ACTIONS(3283), + [anon_sym_COMMA] = ACTIONS(3283), + [anon_sym_STAR] = ACTIONS(3283), + [anon_sym_u8] = ACTIONS(3281), + [anon_sym_i8] = ACTIONS(3281), + [anon_sym_u16] = ACTIONS(3281), + [anon_sym_i16] = ACTIONS(3281), + [anon_sym_u32] = ACTIONS(3281), + [anon_sym_i32] = ACTIONS(3281), + [anon_sym_u64] = ACTIONS(3281), + [anon_sym_i64] = ACTIONS(3281), + [anon_sym_u128] = ACTIONS(3281), + [anon_sym_i128] = ACTIONS(3281), + [anon_sym_isize] = ACTIONS(3281), + [anon_sym_usize] = ACTIONS(3281), + [anon_sym_f32] = ACTIONS(3281), + [anon_sym_f64] = ACTIONS(3281), + [anon_sym_bool] = ACTIONS(3281), + [anon_sym_str] = ACTIONS(3281), + [anon_sym_char] = ACTIONS(3281), + [anon_sym_DASH] = ACTIONS(3283), + [anon_sym_BANG] = ACTIONS(3283), + [anon_sym_AMP] = ACTIONS(3283), + [anon_sym_PIPE] = ACTIONS(3283), + [anon_sym_LT] = ACTIONS(3283), + [anon_sym_DOT_DOT] = ACTIONS(3283), + [anon_sym_COLON_COLON] = ACTIONS(3283), + [anon_sym_POUND] = ACTIONS(3283), + [anon_sym_SQUOTE] = ACTIONS(3281), + [anon_sym_async] = ACTIONS(3281), + [anon_sym_break] = ACTIONS(3281), + [anon_sym_const] = ACTIONS(3281), + [anon_sym_continue] = ACTIONS(3281), + [anon_sym_default] = ACTIONS(3281), + [anon_sym_for] = ACTIONS(3281), + [anon_sym_if] = ACTIONS(3281), + [anon_sym_loop] = ACTIONS(3281), + [anon_sym_match] = ACTIONS(3281), + [anon_sym_return] = ACTIONS(3281), + [anon_sym_static] = ACTIONS(3281), + [anon_sym_union] = ACTIONS(3281), + [anon_sym_unsafe] = ACTIONS(3281), + [anon_sym_while] = ACTIONS(3281), + [anon_sym_yield] = ACTIONS(3281), + [anon_sym_move] = ACTIONS(3281), + [anon_sym_try] = ACTIONS(3281), + [sym_integer_literal] = ACTIONS(3283), + [aux_sym_string_literal_token1] = ACTIONS(3283), + [sym_char_literal] = ACTIONS(3283), + [anon_sym_true] = ACTIONS(3281), + [anon_sym_false] = ACTIONS(3281), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3281), + [sym_super] = ACTIONS(3281), + [sym_crate] = ACTIONS(3281), + [sym_metavariable] = ACTIONS(3283), + [sym__raw_string_literal_start] = ACTIONS(3283), + [sym_float_literal] = ACTIONS(3283), }, }; static const uint16_t ts_small_parse_table[] = { [0] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1004), 2, + STATE(1024), 2, sym_line_comment, sym_block_comment, - ACTIONS(1556), 17, + ACTIONS(1573), 17, sym__raw_string_literal_start, sym_float_literal, anon_sym_LPAREN, @@ -108415,7 +110873,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(1554), 43, + ACTIONS(1571), 43, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -108460,14 +110918,14 @@ static const uint16_t ts_small_parse_table[] = { sym_super, sym_crate, [75] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1005), 2, + STATE(1025), 2, sym_line_comment, sym_block_comment, - ACTIONS(3209), 17, + ACTIONS(3287), 17, sym__raw_string_literal_start, sym_float_literal, anon_sym_LPAREN, @@ -108485,7 +110943,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(3207), 43, + ACTIONS(3285), 43, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -108530,14 +110988,14 @@ static const uint16_t ts_small_parse_table[] = { sym_super, sym_crate, [150] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1006), 2, + STATE(1026), 2, sym_line_comment, sym_block_comment, - ACTIONS(1067), 18, + ACTIONS(1114), 18, sym__raw_string_literal_start, sym_float_literal, anon_sym_LPAREN, @@ -108556,7 +111014,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(3211), 41, + ACTIONS(3289), 41, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -108599,14 +111057,14 @@ static const uint16_t ts_small_parse_table[] = { sym_super, sym_crate, [224] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1007), 2, + STATE(1027), 2, sym_line_comment, sym_block_comment, - ACTIONS(2410), 17, + ACTIONS(2767), 17, sym__raw_string_literal_start, sym_float_literal, anon_sym_LPAREN, @@ -108624,7 +111082,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(2412), 38, + ACTIONS(2769), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -108664,14 +111122,14 @@ static const uint16_t ts_small_parse_table[] = { sym_super, sym_crate, [294] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1008), 2, + STATE(1028), 2, sym_line_comment, sym_block_comment, - ACTIONS(3215), 20, + ACTIONS(3293), 20, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -108679,6 +111137,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_STAR, anon_sym_QMARK, @@ -108688,11 +111147,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_SQUOTE, sym_metavariable, - ACTIONS(3213), 34, + ACTIONS(3291), 34, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -108728,64 +111186,64 @@ static const uint16_t ts_small_parse_table[] = { sym_super, sym_crate, [363] = 21, - ACTIONS(29), 1, + ACTIONS(31), 1, anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1262), 1, + ACTIONS(1369), 1, anon_sym_DASH, - ACTIONS(1308), 1, + ACTIONS(1413), 1, aux_sym_string_literal_token1, - ACTIONS(1318), 1, + ACTIONS(1423), 1, sym__raw_string_literal_start, - ACTIONS(2340), 1, + ACTIONS(1677), 1, anon_sym_COLON_COLON, - ACTIONS(3217), 1, + ACTIONS(3295), 1, sym_identifier, - ACTIONS(3227), 1, + ACTIONS(3305), 1, sym_metavariable, - STATE(2048), 1, + STATE(2085), 1, sym_scoped_identifier, - STATE(2091), 1, + STATE(2141), 1, sym__literal_pattern, - STATE(3324), 1, + STATE(3408), 1, sym_bracketed_type, - STATE(3350), 1, + STATE(3436), 1, sym_generic_type_with_turbofish, - ACTIONS(1310), 2, + ACTIONS(1415), 2, anon_sym_true, anon_sym_false, - STATE(1009), 2, + STATE(1029), 2, sym_line_comment, sym_block_comment, - ACTIONS(1306), 3, + ACTIONS(1411), 3, sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(3221), 3, + ACTIONS(3299), 3, anon_sym_COLON, anon_sym_else, anon_sym_in, - ACTIONS(3225), 3, + ACTIONS(3303), 3, sym_self, sym_super, sym_crate, - STATE(2004), 4, + STATE(2048), 4, sym_negative_literal, sym_string_literal, sym_raw_string_literal, sym_boolean_literal, - ACTIONS(3219), 7, + ACTIONS(3297), 7, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_PIPE, anon_sym_EQ, - anon_sym_COMMA, - ACTIONS(3223), 19, + ACTIONS(3301), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -108806,64 +111264,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_union, [462] = 21, - ACTIONS(29), 1, + ACTIONS(31), 1, anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1262), 1, + ACTIONS(1369), 1, anon_sym_DASH, - ACTIONS(1308), 1, + ACTIONS(1413), 1, aux_sym_string_literal_token1, - ACTIONS(1318), 1, + ACTIONS(1423), 1, sym__raw_string_literal_start, - ACTIONS(2340), 1, + ACTIONS(1677), 1, anon_sym_COLON_COLON, - ACTIONS(3229), 1, + ACTIONS(3307), 1, sym_identifier, - ACTIONS(3239), 1, + ACTIONS(3317), 1, sym_metavariable, - STATE(2036), 1, + STATE(2082), 1, sym_scoped_identifier, - STATE(2080), 1, + STATE(2117), 1, sym__literal_pattern, - STATE(3324), 1, + STATE(3408), 1, sym_bracketed_type, - STATE(3350), 1, + STATE(3436), 1, sym_generic_type_with_turbofish, - ACTIONS(1310), 2, + ACTIONS(1415), 2, anon_sym_true, anon_sym_false, - STATE(1010), 2, + STATE(1030), 2, sym_line_comment, sym_block_comment, - ACTIONS(1306), 3, + ACTIONS(1411), 3, sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(3233), 3, + ACTIONS(3311), 3, anon_sym_COLON, anon_sym_else, anon_sym_in, - ACTIONS(3237), 3, + ACTIONS(3315), 3, sym_self, sym_super, sym_crate, - STATE(2004), 4, + STATE(2048), 4, sym_negative_literal, sym_string_literal, sym_raw_string_literal, sym_boolean_literal, - ACTIONS(3231), 7, + ACTIONS(3309), 7, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_PIPE, anon_sym_EQ, - anon_sym_COMMA, - ACTIONS(3235), 19, + ACTIONS(3313), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -108884,26 +111342,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_union, [561] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3243), 1, + ACTIONS(3321), 1, anon_sym_LPAREN, - ACTIONS(3247), 1, + ACTIONS(3325), 1, anon_sym_BANG, - ACTIONS(3249), 1, + ACTIONS(3327), 1, anon_sym_COLON_COLON, - ACTIONS(3251), 1, + ACTIONS(3329), 1, anon_sym_LT2, - STATE(1071), 1, - sym_type_arguments, - STATE(1087), 1, + STATE(1186), 1, sym_parameters, - STATE(1011), 2, + STATE(1209), 1, + sym_type_arguments, + STATE(1031), 2, sym_line_comment, sym_block_comment, - ACTIONS(3245), 17, + ACTIONS(3323), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -108921,13 +111379,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3241), 27, + ACTIONS(3319), 27, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -108945,29 +111404,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [638] = 10, - ACTIONS(101), 1, + [638] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1032), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1293), 9, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1295), 40, + anon_sym_macro, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_if, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [702] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1033), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1046), 9, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1044), 40, + anon_sym_macro, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_if, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [766] = 10, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3243), 1, + ACTIONS(3321), 1, anon_sym_LPAREN, - ACTIONS(3251), 1, + ACTIONS(3329), 1, anon_sym_LT2, - ACTIONS(3257), 1, + ACTIONS(3335), 1, anon_sym_COLON_COLON, - STATE(1071), 1, - sym_type_arguments, - STATE(1087), 1, + STATE(1186), 1, sym_parameters, - STATE(1012), 2, + STATE(1209), 1, + sym_type_arguments, + STATE(1034), 2, sym_line_comment, sym_block_comment, - ACTIONS(3255), 17, + ACTIONS(3333), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -108985,77 +111561,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3253), 27, + ACTIONS(3331), 27, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [712] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3243), 1, - anon_sym_LPAREN, - ACTIONS(3251), 1, - anon_sym_LT2, - ACTIONS(3257), 1, - anon_sym_COLON_COLON, - STATE(1071), 1, - sym_type_arguments, - STATE(1087), 1, - sym_parameters, - STATE(1013), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3261), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_EQ, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3259), 27, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -109073,29 +111586,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [786] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [840] = 10, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3243), 1, + ACTIONS(3321), 1, anon_sym_LPAREN, - ACTIONS(3251), 1, + ACTIONS(3329), 1, anon_sym_LT2, - ACTIONS(3257), 1, + ACTIONS(3335), 1, anon_sym_COLON_COLON, - STATE(1071), 1, - sym_type_arguments, - STATE(1087), 1, + STATE(1186), 1, sym_parameters, - STATE(1014), 2, + STATE(1209), 1, + sym_type_arguments, + STATE(1035), 2, sym_line_comment, sym_block_comment, - ACTIONS(3265), 17, + ACTIONS(3339), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -109113,130 +111625,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3263), 27, + ACTIONS(3337), 27, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [860] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1015), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1236), 9, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1238), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_if, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [923] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3271), 1, - anon_sym_BANG, - ACTIONS(3273), 1, - anon_sym_COLON_COLON, - STATE(1016), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3269), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_EQ, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3267), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -109254,80 +111650,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - anon_sym_LT2, - [990] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [914] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3279), 1, - anon_sym_BANG, - ACTIONS(3281), 1, - anon_sym_COLON_COLON, - STATE(1017), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3277), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_EQ, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3275), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - anon_sym_LT2, - [1057] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1018), 2, + STATE(1036), 2, sym_line_comment, sym_block_comment, - ACTIONS(1206), 9, + ACTIONS(996), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -109337,7 +111671,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1208), 39, + ACTIONS(994), 40, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -109377,15 +111712,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [1120] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [978] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1019), 2, + STATE(1037), 2, sym_line_comment, sym_block_comment, - ACTIONS(987), 9, + ACTIONS(1325), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -109395,7 +111730,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(985), 39, + ACTIONS(1327), 40, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -109435,15 +111771,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [1183] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [1042] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1020), 2, + STATE(1038), 2, sym_line_comment, sym_block_comment, - ACTIONS(1232), 9, + ACTIONS(1235), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -109453,7 +111789,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1234), 39, + ACTIONS(1237), 40, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -109493,139 +111830,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [1246] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3243), 1, - anon_sym_LPAREN, - ACTIONS(3251), 1, - anon_sym_LT2, - STATE(1075), 1, - sym_type_arguments, - STATE(1086), 1, - sym_parameters, - STATE(1021), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3285), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_EQ, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3283), 27, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [1317] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [1106] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3243), 1, - anon_sym_LPAREN, - ACTIONS(3251), 1, - anon_sym_LT2, - STATE(1075), 1, - sym_type_arguments, - STATE(1086), 1, - sym_parameters, - STATE(1022), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3289), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_EQ, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3287), 27, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [1388] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1023), 2, + STATE(1039), 2, sym_line_comment, sym_block_comment, - ACTIONS(991), 9, + ACTIONS(1227), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -109635,7 +111848,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(989), 39, + ACTIONS(1229), 40, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -109675,75 +111889,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [1451] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [1170] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3295), 1, - anon_sym_BANG, - ACTIONS(3297), 1, - anon_sym_COLON_COLON, - STATE(1024), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3293), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_EQ, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3291), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - anon_sym_LT2, - [1518] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1025), 2, + STATE(1040), 2, sym_line_comment, sym_block_comment, - ACTIONS(1442), 9, + ACTIONS(1223), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -109753,7 +111907,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1444), 39, + ACTIONS(1225), 40, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -109793,15 +111948,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [1581] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [1234] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1026), 2, + STATE(1041), 2, sym_line_comment, sym_block_comment, - ACTIONS(1320), 9, + ACTIONS(1219), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -109811,7 +111966,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1322), 39, + ACTIONS(1221), 40, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -109851,15 +112007,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [1644] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [1298] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1027), 2, + STATE(1042), 2, sym_line_comment, sym_block_comment, - ACTIONS(1244), 9, + ACTIONS(1239), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -109869,7 +112025,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1246), 39, + ACTIONS(1241), 40, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -109909,23 +112066,25 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [1707] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [1362] = 10, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3243), 1, + ACTIONS(3321), 1, anon_sym_LPAREN, - ACTIONS(3251), 1, + ACTIONS(3329), 1, anon_sym_LT2, - STATE(1075), 1, - sym_type_arguments, - STATE(1086), 1, + ACTIONS(3335), 1, + anon_sym_COLON_COLON, + STATE(1186), 1, sym_parameters, - STATE(1028), 2, + STATE(1209), 1, + sym_type_arguments, + STATE(1043), 2, sym_line_comment, sym_block_comment, - ACTIONS(3301), 17, + ACTIONS(3343), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -109943,13 +112102,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3299), 27, + ACTIONS(3341), 27, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -109967,27 +112127,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [1778] = 9, - ACTIONS(101), 1, + [1436] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1044), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2327), 9, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2329), 39, + anon_sym_macro, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_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, + [1499] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3243), 1, + ACTIONS(3321), 1, anon_sym_LPAREN, - ACTIONS(3251), 1, + ACTIONS(3329), 1, anon_sym_LT2, - STATE(1075), 1, - sym_type_arguments, - STATE(1086), 1, + STATE(1184), 1, sym_parameters, - STATE(1029), 2, + STATE(1208), 1, + sym_type_arguments, + STATE(1045), 2, sym_line_comment, sym_block_comment, - ACTIONS(3305), 17, + ACTIONS(3347), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -110005,13 +112222,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3303), 27, + ACTIONS(3345), 27, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -110029,29 +112247,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [1849] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [1570] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1030), 2, + STATE(1046), 2, sym_line_comment, sym_block_comment, - ACTIONS(1240), 9, + ACTIONS(2727), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_EQ, anon_sym_LT, anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1242), 39, + ACTIONS(2729), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -110074,7 +112292,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, - anon_sym_if, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -110091,19 +112308,19 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [1912] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [1633] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3311), 1, + ACTIONS(3353), 1, anon_sym_BANG, - ACTIONS(3313), 1, + ACTIONS(3355), 1, anon_sym_COLON_COLON, - STATE(1031), 2, + STATE(1047), 2, sym_line_comment, sym_block_comment, - ACTIONS(3309), 17, + ACTIONS(3351), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -110121,7 +112338,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3307), 29, + ACTIONS(3349), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -110129,6 +112346,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -110146,31 +112364,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, anon_sym_LT2, - [1979] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [1700] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3319), 1, - anon_sym_BANG, ACTIONS(3321), 1, - anon_sym_COLON_COLON, - STATE(1032), 2, + anon_sym_LPAREN, + ACTIONS(3329), 1, + anon_sym_LT2, + STATE(1184), 1, + sym_parameters, + STATE(1208), 1, + sym_type_arguments, + STATE(1048), 2, sym_line_comment, sym_block_comment, - ACTIONS(3323), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - ACTIONS(3317), 16, + ACTIONS(3359), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -110181,126 +112395,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - anon_sym_as, - ACTIONS(3315), 23, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [2047] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1033), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3295), 16, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3297), 31, + ACTIONS(3357), 27, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [2109] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1034), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3311), 16, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3313), 31, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -110312,38 +112421,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [2171] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [1771] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1035), 2, + STATE(1049), 2, sym_line_comment, sym_block_comment, - ACTIONS(2795), 9, + ACTIONS(2303), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_EQ, anon_sym_LT, - anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2797), 38, + ACTIONS(2305), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -110382,32 +112488,37 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [2233] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [1834] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1036), 2, + ACTIONS(3365), 1, + anon_sym_BANG, + ACTIONS(3367), 1, + anon_sym_COLON_COLON, + STATE(1050), 2, sym_line_comment, sym_block_comment, - ACTIONS(3279), 16, + ACTIONS(3363), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, - anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3281), 31, + ACTIONS(3361), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -110415,6 +112526,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -110426,38 +112538,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [2295] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_LT2, + [1901] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1037), 2, + STATE(1051), 2, sym_line_comment, sym_block_comment, - ACTIONS(1762), 9, + ACTIONS(1999), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_EQ, anon_sym_LT, - anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1764), 38, + ACTIONS(2001), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -110496,82 +112606,86 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [2357] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [1964] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1038), 2, + ACTIONS(3373), 1, + anon_sym_BANG, + ACTIONS(3375), 1, + anon_sym_COLON_COLON, + STATE(1052), 2, sym_line_comment, sym_block_comment, - ACTIONS(2458), 9, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + ACTIONS(3371), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_EQ, anon_sym_EQ, + anon_sym_GT, anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3369), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2460), 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, - [2419] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + anon_sym_LT2, + [2031] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1039), 2, + STATE(1053), 2, sym_line_comment, sym_block_comment, - ACTIONS(1994), 9, + ACTIONS(2319), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_EQ, anon_sym_LT, - anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1996), 38, + ACTIONS(2321), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -110610,23 +112724,23 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [2481] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [2094] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3247), 1, - anon_sym_BANG, - ACTIONS(3325), 1, - anon_sym_LBRACE, - ACTIONS(3327), 1, - anon_sym_COLON_COLON, - STATE(1199), 1, - sym_field_initializer_list, - STATE(1040), 2, + ACTIONS(3321), 1, + anon_sym_LPAREN, + ACTIONS(3329), 1, + anon_sym_LT2, + STATE(1184), 1, + sym_parameters, + STATE(1208), 1, + sym_type_arguments, + STATE(1054), 2, sym_line_comment, sym_block_comment, - ACTIONS(1416), 15, + ACTIONS(3379), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -110637,18 +112751,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1418), 28, + ACTIONS(3377), 27, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -110660,102 +112777,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, + anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [2551] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [2165] = 7, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3333), 1, - anon_sym_POUND, - STATE(1479), 2, - sym_attribute_item, - sym_inner_attribute_item, - STATE(1041), 3, - sym_line_comment, - sym_block_comment, - aux_sym_match_arm_repeat1, - ACTIONS(3331), 14, - sym__raw_string_literal_start, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_DOT_DOT, - anon_sym_COLON_COLON, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(3329), 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__, - anon_sym_const, - anon_sym_default, - anon_sym_union, - anon_sym_ref, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [2617] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1042), 2, + ACTIONS(3385), 1, + anon_sym_BANG, + ACTIONS(3387), 1, + anon_sym_COLON_COLON, + STATE(1055), 2, sym_line_comment, sym_block_comment, - ACTIONS(3271), 16, + ACTIONS(3383), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, - anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3273), 31, + ACTIONS(3381), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -110763,6 +112824,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -110774,85 +112836,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [2679] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_LT2, + [2232] = 9, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1043), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2146), 9, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_LT, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2148), 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, - [2741] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1044), 2, + ACTIONS(3321), 1, + anon_sym_LPAREN, + ACTIONS(3329), 1, + anon_sym_LT2, + STATE(1184), 1, + sym_parameters, + STATE(1208), 1, + sym_type_arguments, + STATE(1056), 2, sym_line_comment, sym_block_comment, - ACTIONS(3338), 15, + ACTIONS(3391), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -110863,19 +112873,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3336), 31, + ACTIONS(3389), 27, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -110887,32 +112899,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [2802] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [2303] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - STATE(1386), 1, - sym_label, - STATE(1045), 2, + ACTIONS(3397), 1, + anon_sym_BANG, + ACTIONS(3399), 1, + anon_sym_COLON_COLON, + STATE(1057), 2, sym_line_comment, sym_block_comment, - ACTIONS(3342), 15, + ACTIONS(3401), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + ACTIONS(3395), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -110928,13 +112943,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3340), 29, + anon_sym_as, + ACTIONS(3393), 23, anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -110955,20 +112968,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_as, - anon_sym_else, - [2867] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [2371] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3346), 1, - anon_sym_LBRACE, - STATE(1046), 2, + STATE(1058), 2, sym_line_comment, sym_block_comment, - ACTIONS(3311), 16, + ACTIONS(3373), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -110985,13 +112993,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3313), 29, + ACTIONS(3375), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -111011,25 +113021,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, anon_sym_COLON_COLON, + anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [2930] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [2433] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1047), 2, + STATE(1059), 2, sym_line_comment, sym_block_comment, - ACTIONS(3350), 15, + ACTIONS(3385), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, + anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -111039,7 +113050,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3348), 31, + ACTIONS(3387), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -111047,6 +113058,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -111066,20 +113078,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [2991] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [2495] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1048), 2, + ACTIONS(3325), 1, + anon_sym_BANG, + ACTIONS(3403), 1, + anon_sym_LBRACE, + ACTIONS(3405), 1, + anon_sym_COLON_COLON, + STATE(1491), 1, + sym_field_initializer_list, + STATE(1060), 2, sym_line_comment, sym_block_comment, - ACTIONS(3354), 15, + ACTIONS(1307), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -111095,14 +113114,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3352), 31, + ACTIONS(1305), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -111122,28 +113141,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [3052] = 6, - ACTIONS(101), 1, + [2565] = 7, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3411), 1, + anon_sym_POUND, + STATE(1515), 2, + sym_attribute_item, + sym_inner_attribute_item, + STATE(1061), 3, + sym_line_comment, + sym_block_comment, + aux_sym_match_arm_repeat1, + ACTIONS(3409), 14, + sym__raw_string_literal_start, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DASH, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_DOT_DOT, + anon_sym_COLON_COLON, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(3407), 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__, + anon_sym_const, + anon_sym_default, + anon_sym_union, + anon_sym_ref, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [2631] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3360), 1, - anon_sym_DASH_GT, - STATE(1049), 2, + STATE(1062), 2, sym_line_comment, sym_block_comment, - ACTIONS(3358), 15, + ACTIONS(3353), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, + anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -111153,7 +113227,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3356), 30, + ACTIONS(3355), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -111161,6 +113235,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -111180,29 +113255,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [3115] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [2693] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3362), 1, - anon_sym_else, - STATE(1239), 1, - sym_else_clause, - STATE(1050), 2, + STATE(1063), 2, sym_line_comment, sym_block_comment, - ACTIONS(1196), 15, + ACTIONS(3365), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, + anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -111212,7 +113284,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1194), 29, + ACTIONS(3367), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -111220,62 +113292,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - [3180] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3364), 1, - anon_sym_COLON_COLON, - STATE(1051), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3305), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3303), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -111295,183 +113312,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [3243] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [2755] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1052), 2, + STATE(1064), 2, sym_line_comment, sym_block_comment, - ACTIONS(3368), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3366), 31, + ACTIONS(2123), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, + anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [3304] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2125), 39, + anon_sym_macro, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_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, + [2816] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1053), 2, + STATE(1065), 2, sym_line_comment, sym_block_comment, - ACTIONS(3372), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3370), 31, + ACTIONS(1923), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [3365] = 27, - ACTIONS(29), 1, anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(1298), 1, - anon_sym_extern, - ACTIONS(3069), 1, - anon_sym_QMARK, - ACTIONS(3081), 1, - anon_sym_fn, - ACTIONS(3374), 1, - sym_identifier, - ACTIONS(3376), 1, - anon_sym_LPAREN, - ACTIONS(3380), 1, anon_sym_COLON_COLON, - ACTIONS(3382), 1, - anon_sym_default, - ACTIONS(3384), 1, - anon_sym_for, - ACTIONS(3386), 1, - anon_sym_union, - ACTIONS(3390), 1, + anon_sym_POUND, sym_metavariable, - STATE(1530), 1, - sym_scoped_type_identifier, - STATE(1597), 1, - sym_generic_type, - STATE(1613), 1, - sym_for_lifetimes, - STATE(2206), 1, - aux_sym_function_modifiers_repeat1, - STATE(2320), 1, - sym_extern_modifier, - STATE(3473), 1, - sym_function_modifiers, - STATE(3507), 1, - sym_scoped_identifier, - STATE(3524), 1, - sym_generic_type_with_turbofish, - STATE(3530), 1, - sym_bracketed_type, - STATE(1054), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1284), 3, + ACTIONS(1925), 39, + anon_sym_macro, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_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, - ACTIONS(3388), 3, + anon_sym_use, + anon_sym_extern, + sym_identifier, sym_self, sym_super, sym_crate, - STATE(1708), 3, - sym_removed_trait_bound, - sym_function_type, - sym_tuple_type, - ACTIONS(3378), 17, + [2877] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1066), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2779), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2781), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -111489,463 +113463,269 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3470] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + 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, + [2938] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3394), 1, - anon_sym_LPAREN, - STATE(1209), 1, - sym_arguments, - STATE(1055), 2, + STATE(1067), 2, sym_line_comment, sym_block_comment, - ACTIONS(3396), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3392), 29, + ACTIONS(2819), 7, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [3535] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2821), 39, + anon_sym_macro, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_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, + [2999] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3398), 1, - anon_sym_LBRACE, - STATE(1056), 2, + STATE(1068), 2, sym_line_comment, sym_block_comment, - ACTIONS(3279), 16, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3281), 29, + ACTIONS(2823), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, + anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_as, - anon_sym_else, - [3598] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2825), 39, + anon_sym_macro, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_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, + [3060] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1057), 2, + STATE(1069), 2, sym_line_comment, sym_block_comment, - ACTIONS(3402), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3400), 31, + ACTIONS(2827), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [3659] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1058), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3406), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3404), 31, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, anon_sym_COLON_COLON, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [3720] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2829), 39, + anon_sym_macro, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_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, + [3121] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1059), 2, + STATE(1070), 2, sym_line_comment, sym_block_comment, - ACTIONS(3410), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3408), 31, + ACTIONS(2831), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, + anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [3781] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2833), 39, + anon_sym_macro, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_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, + [3182] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3416), 1, - anon_sym_DASH_GT, - STATE(1060), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3414), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3412), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [3844] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1061), 2, + STATE(1071), 2, sym_line_comment, sym_block_comment, - ACTIONS(3420), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3418), 31, + ACTIONS(2839), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [3905] = 27, - ACTIONS(29), 1, anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(1298), 1, - anon_sym_extern, - ACTIONS(3105), 1, - anon_sym_QMARK, - ACTIONS(3117), 1, - anon_sym_fn, - ACTIONS(3422), 1, - sym_identifier, - ACTIONS(3424), 1, - anon_sym_LPAREN, - ACTIONS(3428), 1, anon_sym_COLON_COLON, - ACTIONS(3430), 1, - anon_sym_default, - ACTIONS(3432), 1, - anon_sym_for, - ACTIONS(3434), 1, - anon_sym_union, - ACTIONS(3438), 1, + anon_sym_POUND, sym_metavariable, - STATE(1022), 1, - sym_scoped_type_identifier, - STATE(1088), 1, - sym_generic_type, - STATE(1592), 1, - sym_for_lifetimes, - STATE(2206), 1, - aux_sym_function_modifiers_repeat1, - STATE(2320), 1, - sym_extern_modifier, - STATE(3338), 1, - sym_function_modifiers, - STATE(3483), 1, - sym_scoped_identifier, - STATE(3516), 1, - sym_generic_type_with_turbofish, - STATE(3526), 1, - sym_bracketed_type, - STATE(1062), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1284), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3436), 3, - sym_self, - sym_super, - sym_crate, - STATE(1293), 3, - sym_removed_trait_bound, - sym_function_type, - sym_tuple_type, - ACTIONS(3426), 17, + ACTIONS(2841), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -111963,144 +113743,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4010] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + 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, + [3243] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1063), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1546), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1548), 31, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [4071] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1064), 2, + STATE(1072), 2, sym_line_comment, sym_block_comment, - ACTIONS(3309), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_EQ, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3307), 29, + ACTIONS(2435), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - anon_sym_LT2, - [4132] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3440), 1, - anon_sym_POUND, - STATE(1476), 1, - sym_attribute_item, - STATE(1065), 3, - sym_line_comment, - sym_block_comment, - aux_sym_enum_variant_list_repeat1, - ACTIONS(796), 11, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_SQUOTE, - sym_integer_literal, + anon_sym_POUND, sym_metavariable, - ACTIONS(3201), 32, + ACTIONS(2437), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -112121,192 +113802,42 @@ 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, - [4197] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [3304] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1066), 2, + STATE(1073), 2, sym_line_comment, sym_block_comment, - ACTIONS(3445), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3443), 31, + ACTIONS(2855), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [4258] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3451), 1, - anon_sym_DASH_GT, - STATE(1067), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3449), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3447), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [4321] = 27, - ACTIONS(29), 1, anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(1292), 1, - anon_sym_for, - ACTIONS(1298), 1, - anon_sym_extern, - ACTIONS(3069), 1, - anon_sym_QMARK, - ACTIONS(3081), 1, - anon_sym_fn, - ACTIONS(3376), 1, - anon_sym_LPAREN, - ACTIONS(3380), 1, anon_sym_COLON_COLON, - ACTIONS(3382), 1, - anon_sym_default, - ACTIONS(3386), 1, - anon_sym_union, - ACTIONS(3390), 1, + anon_sym_POUND, sym_metavariable, - ACTIONS(3453), 1, - sym_identifier, - STATE(1520), 1, - sym_scoped_type_identifier, - STATE(1613), 1, - sym_for_lifetimes, - STATE(1633), 1, - sym_generic_type, - STATE(2206), 1, - aux_sym_function_modifiers_repeat1, - STATE(2320), 1, - sym_extern_modifier, - STATE(3473), 1, - sym_function_modifiers, - STATE(3507), 1, - sym_scoped_identifier, - STATE(3524), 1, - sym_generic_type_with_turbofish, - STATE(3530), 1, - sym_bracketed_type, - STATE(1068), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1284), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3388), 3, - sym_self, - sym_super, - sym_crate, - STATE(1730), 3, - sym_removed_trait_bound, - sym_function_type, - sym_tuple_type, - ACTIONS(3378), 17, + ACTIONS(2857), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -112324,350 +113855,157 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4426] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + 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, + [3365] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3455), 1, - anon_sym_LBRACE, - STATE(1069), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3271), 16, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3273), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_as, - anon_sym_else, - [4489] = 6, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3364), 1, - anon_sym_COLON_COLON, - STATE(1070), 2, + STATE(1074), 2, sym_line_comment, sym_block_comment, - ACTIONS(3285), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3283), 30, + ACTIONS(2895), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [4552] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1071), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3459), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3457), 31, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, anon_sym_COLON_COLON, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [4613] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2897), 39, + anon_sym_macro, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_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, + [3426] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1072), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3463), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3461), 31, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [4674] = 6, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3465), 1, - anon_sym_COLON_COLON, - STATE(1073), 2, + STATE(1075), 2, sym_line_comment, sym_block_comment, - ACTIONS(1416), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1418), 30, + ACTIONS(2907), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [4737] = 27, - ACTIONS(29), 1, anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(1292), 1, - anon_sym_for, - ACTIONS(1298), 1, - anon_sym_extern, - ACTIONS(3105), 1, - anon_sym_QMARK, - ACTIONS(3117), 1, - anon_sym_fn, - ACTIONS(3424), 1, - anon_sym_LPAREN, - ACTIONS(3428), 1, anon_sym_COLON_COLON, - ACTIONS(3430), 1, - anon_sym_default, - ACTIONS(3434), 1, - anon_sym_union, - ACTIONS(3438), 1, + anon_sym_POUND, sym_metavariable, - ACTIONS(3467), 1, - sym_identifier, - STATE(1021), 1, - sym_scoped_type_identifier, - STATE(1070), 1, - sym_generic_type, - STATE(1592), 1, - sym_for_lifetimes, - STATE(2206), 1, - aux_sym_function_modifiers_repeat1, - STATE(2320), 1, - sym_extern_modifier, - STATE(3338), 1, - sym_function_modifiers, - STATE(3483), 1, - sym_scoped_identifier, - STATE(3516), 1, - sym_generic_type_with_turbofish, - STATE(3526), 1, - sym_bracketed_type, - STATE(1074), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1284), 3, + ACTIONS(2909), 39, + anon_sym_macro, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_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, - ACTIONS(3436), 3, + anon_sym_use, + anon_sym_extern, + sym_identifier, sym_self, sym_super, sym_crate, - STATE(1296), 3, - sym_removed_trait_bound, - sym_function_type, - sym_tuple_type, - ACTIONS(3426), 17, + [3487] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1076), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2007), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2009), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -112685,177 +114023,309 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4842] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + 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, + [3548] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1075), 2, + STATE(1077), 2, sym_line_comment, sym_block_comment, - ACTIONS(3471), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3469), 31, + ACTIONS(2915), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, + anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [4903] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2917), 39, + anon_sym_macro, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_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, + [3609] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3473), 1, - anon_sym_COLON_COLON, - STATE(1076), 2, + STATE(1078), 2, sym_line_comment, sym_block_comment, - ACTIONS(3301), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, + ACTIONS(1867), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3299), 30, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1869), 39, + anon_sym_macro, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_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, + [3670] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1079), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2015), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [4966] = 24, - ACTIONS(29), 1, anon_sym_LT, - ACTIONS(101), 1, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2017), 39, + anon_sym_macro, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_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, + [3731] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1080), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2019), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2021), 39, + anon_sym_macro, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_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, + [3792] = 24, + ACTIONS(31), 1, + anon_sym_LT, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1562), 1, + ACTIONS(1579), 1, anon_sym_LBRACK, - ACTIONS(3475), 1, + ACTIONS(3414), 1, sym_identifier, - ACTIONS(3479), 1, + ACTIONS(3418), 1, anon_sym_LPAREN, - ACTIONS(3481), 1, + ACTIONS(3420), 1, anon_sym_STAR, - ACTIONS(3485), 1, + ACTIONS(3424), 1, anon_sym_AMP, - ACTIONS(3487), 1, + ACTIONS(3426), 1, anon_sym_COLON_COLON, - ACTIONS(3489), 1, + ACTIONS(3428), 1, anon_sym_SQUOTE, - ACTIONS(3493), 1, + ACTIONS(3432), 1, anon_sym_for, - ACTIONS(3497), 1, + ACTIONS(3436), 1, sym_metavariable, - STATE(2507), 1, + STATE(2568), 1, sym_scoped_type_identifier, - STATE(2546), 1, + STATE(2712), 1, sym_where_predicate, - STATE(3020), 1, + STATE(3035), 1, sym_generic_type, - STATE(3340), 1, + STATE(3426), 1, sym_generic_type_with_turbofish, - STATE(3385), 1, + STATE(3442), 1, sym_scoped_identifier, - STATE(3469), 1, + STATE(3563), 1, sym_bracketed_type, - ACTIONS(3477), 2, + ACTIONS(3416), 2, anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(3491), 2, + ACTIONS(3430), 2, anon_sym_default, anon_sym_union, - STATE(1077), 2, + STATE(1081), 2, sym_line_comment, sym_block_comment, - ACTIONS(3495), 3, + ACTIONS(3434), 3, sym_self, sym_super, sym_crate, - STATE(3194), 6, + STATE(3154), 6, sym_higher_ranked_trait_bound, sym_lifetime, sym_array_type, sym_tuple_type, sym_reference_type, sym_pointer_type, - ACTIONS(3483), 17, + ACTIONS(3422), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -112873,124 +114343,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5065] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [3891] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3364), 1, - anon_sym_COLON_COLON, - STATE(1078), 2, + STATE(1082), 2, sym_line_comment, sym_block_comment, - ACTIONS(3301), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3299), 30, + ACTIONS(2023), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [5128] = 27, - ACTIONS(29), 1, anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(1258), 1, - anon_sym_QMARK, - ACTIONS(1290), 1, - anon_sym_fn, - ACTIONS(1298), 1, - anon_sym_extern, - ACTIONS(3479), 1, - anon_sym_LPAREN, - ACTIONS(3487), 1, anon_sym_COLON_COLON, - ACTIONS(3491), 1, - anon_sym_union, - ACTIONS(3497), 1, + anon_sym_POUND, sym_metavariable, - ACTIONS(3499), 1, - sym_identifier, - ACTIONS(3503), 1, + ACTIONS(2025), 39, + anon_sym_macro, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, anon_sym_default, - ACTIONS(3505), 1, - anon_sym_for, - STATE(1618), 1, - sym_for_lifetimes, - STATE(1914), 1, - sym_scoped_type_identifier, - STATE(1951), 1, - sym_generic_type, - STATE(2206), 1, - aux_sym_function_modifiers_repeat1, - STATE(2320), 1, - sym_extern_modifier, - STATE(3340), 1, - sym_generic_type_with_turbofish, - STATE(3385), 1, - sym_scoped_identifier, - STATE(3427), 1, - sym_function_modifiers, - STATE(3469), 1, - sym_bracketed_type, - STATE(1079), 2, + 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, + [3952] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1083), 2, sym_line_comment, sym_block_comment, - ACTIONS(1284), 3, + ACTIONS(1871), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1873), 39, + anon_sym_macro, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_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, - ACTIONS(3495), 3, + anon_sym_use, + anon_sym_extern, + sym_identifier, sym_self, sym_super, sym_crate, - STATE(1966), 3, - sym_removed_trait_bound, - sym_function_type, - sym_tuple_type, - ACTIONS(3501), 17, + [4013] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1084), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2027), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2029), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -113008,15 +114490,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5233] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + 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, + [4074] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1080), 2, + ACTIONS(3442), 1, + anon_sym_SQUOTE, + STATE(1395), 1, + sym_label, + STATE(1085), 2, sym_line_comment, sym_block_comment, - ACTIONS(3213), 15, + ACTIONS(3440), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -113032,7 +114539,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3215), 31, + ACTIONS(3438), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -113040,7 +114547,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COLON, + anon_sym_COMMA, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -113060,124 +114567,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [5294] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [4139] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1081), 2, + STATE(1086), 2, sym_line_comment, sym_block_comment, - ACTIONS(3509), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3507), 31, + ACTIONS(1875), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [5355] = 24, - ACTIONS(29), 1, anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(1562), 1, - anon_sym_LBRACK, - ACTIONS(3475), 1, - sym_identifier, - ACTIONS(3479), 1, - anon_sym_LPAREN, - ACTIONS(3481), 1, - anon_sym_STAR, - ACTIONS(3485), 1, - anon_sym_AMP, - ACTIONS(3487), 1, anon_sym_COLON_COLON, - ACTIONS(3489), 1, - anon_sym_SQUOTE, - ACTIONS(3493), 1, - anon_sym_for, - ACTIONS(3497), 1, + anon_sym_POUND, sym_metavariable, - STATE(2507), 1, - sym_scoped_type_identifier, - STATE(2546), 1, - sym_where_predicate, - STATE(3020), 1, - sym_generic_type, - STATE(3340), 1, - sym_generic_type_with_turbofish, - STATE(3385), 1, - sym_scoped_identifier, - STATE(3469), 1, - sym_bracketed_type, - ACTIONS(3491), 2, + ACTIONS(1877), 39, + anon_sym_macro, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_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, - ACTIONS(3511), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - STATE(1082), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3495), 3, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, sym_self, sym_super, sym_crate, - STATE(3194), 6, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_array_type, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(3483), 17, + [4200] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1087), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1947), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1949), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -113195,124 +114660,157 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5454] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + 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, + [4261] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3517), 1, - anon_sym_DASH_GT, - STATE(1083), 2, + STATE(1088), 2, sym_line_comment, sym_block_comment, - ACTIONS(3515), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3513), 30, + ACTIONS(1987), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [5517] = 27, - ACTIONS(29), 1, anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(1258), 1, - anon_sym_QMARK, - ACTIONS(1290), 1, - anon_sym_fn, - ACTIONS(1292), 1, - anon_sym_for, - ACTIONS(1298), 1, - anon_sym_extern, - ACTIONS(3479), 1, - anon_sym_LPAREN, - ACTIONS(3487), 1, anon_sym_COLON_COLON, - ACTIONS(3491), 1, - anon_sym_union, - ACTIONS(3497), 1, + anon_sym_POUND, sym_metavariable, - ACTIONS(3503), 1, + ACTIONS(1989), 39, + anon_sym_macro, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, anon_sym_default, - ACTIONS(3519), 1, + 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, - STATE(1618), 1, - sym_for_lifetimes, - STATE(1916), 1, - sym_scoped_type_identifier, - STATE(1940), 1, - sym_generic_type, - STATE(2206), 1, - aux_sym_function_modifiers_repeat1, - STATE(2320), 1, - sym_extern_modifier, - STATE(3340), 1, - sym_generic_type_with_turbofish, - STATE(3385), 1, - sym_scoped_identifier, - STATE(3427), 1, - sym_function_modifiers, - STATE(3469), 1, - sym_bracketed_type, - STATE(1084), 2, + sym_self, + sym_super, + sym_crate, + [4322] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1089), 2, sym_line_comment, sym_block_comment, - ACTIONS(1284), 3, + ACTIONS(2219), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2221), 39, + anon_sym_macro, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_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, - ACTIONS(3495), 3, + anon_sym_use, + anon_sym_extern, + sym_identifier, sym_self, sym_super, sym_crate, - STATE(1979), 3, - sym_removed_trait_bound, - sym_function_type, - sym_tuple_type, - ACTIONS(3501), 17, + [4383] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1090), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2223), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2225), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -113330,412 +114828,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5622] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + 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, + [4444] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3525), 1, - anon_sym_DASH_GT, - STATE(1085), 2, + STATE(1091), 2, sym_line_comment, sym_block_comment, - ACTIONS(3523), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3521), 30, + ACTIONS(2255), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [5685] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2257), 39, + anon_sym_macro, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_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, + [4505] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3531), 1, - anon_sym_DASH_GT, - STATE(1086), 2, + STATE(1092), 2, sym_line_comment, sym_block_comment, - ACTIONS(3529), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3527), 30, + ACTIONS(2259), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [5748] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2261), 39, + anon_sym_macro, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_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, + [4566] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3537), 1, - anon_sym_DASH_GT, - STATE(1087), 2, + STATE(1093), 2, sym_line_comment, sym_block_comment, - ACTIONS(3535), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3533), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [5811] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3364), 1, - anon_sym_COLON_COLON, - STATE(1088), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3289), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3287), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [5874] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3539), 1, - anon_sym_LBRACE, - STATE(1089), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3295), 16, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3297), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_as, - anon_sym_else, - [5937] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3541), 1, - anon_sym_COLON_COLON, - STATE(1090), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3301), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3299), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [6000] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1091), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1368), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1366), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [6060] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1092), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1958), 7, + ACTIONS(2291), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -113743,7 +114977,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1960), 38, + ACTIONS(2293), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -113782,15 +115017,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6120] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [4627] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1093), 2, + STATE(1094), 2, sym_line_comment, sym_block_comment, - ACTIONS(1962), 7, + ACTIONS(2299), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -113798,7 +115033,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1964), 38, + ACTIONS(2301), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -113837,15 +115073,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6180] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [4688] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1094), 2, + STATE(1095), 2, sym_line_comment, sym_block_comment, - ACTIONS(1966), 7, + ACTIONS(2315), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -113853,7 +115089,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1968), 38, + ACTIONS(2317), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -113892,15 +115129,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6240] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [4749] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1095), 2, + STATE(1096), 2, sym_line_comment, sym_block_comment, - ACTIONS(1970), 7, + ACTIONS(2035), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -113908,7 +115145,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1972), 38, + ACTIONS(2037), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -113947,15 +115185,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6300] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [4810] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1096), 2, + STATE(1097), 2, sym_line_comment, sym_block_comment, - ACTIONS(1974), 7, + ACTIONS(2043), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -113963,7 +115201,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1976), 38, + ACTIONS(2045), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114002,15 +115241,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6360] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [4871] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1097), 2, + STATE(1098), 2, sym_line_comment, sym_block_comment, - ACTIONS(1978), 7, + ACTIONS(2047), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -114018,7 +115257,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1980), 38, + ACTIONS(2049), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114057,15 +115297,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6420] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [4932] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1098), 2, + STATE(1099), 2, sym_line_comment, sym_block_comment, - ACTIONS(1982), 7, + ACTIONS(2103), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -114073,7 +115313,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1984), 38, + ACTIONS(2105), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114112,15 +115353,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6480] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [4993] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1099), 2, + STATE(1100), 2, sym_line_comment, sym_block_comment, - ACTIONS(1986), 7, + ACTIONS(2595), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -114128,7 +115369,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1988), 38, + ACTIONS(2597), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114167,15 +115409,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6540] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [5054] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1100), 2, + STATE(1101), 2, sym_line_comment, sym_block_comment, - ACTIONS(1990), 7, + ACTIONS(2627), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -114183,7 +115425,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1992), 38, + ACTIONS(2629), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114222,15 +115465,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6600] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [5115] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1101), 2, + STATE(1102), 2, sym_line_comment, sym_block_comment, - ACTIONS(1874), 7, + ACTIONS(2639), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -114238,7 +115481,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1876), 38, + ACTIONS(2641), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114277,15 +115521,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6660] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [5176] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1102), 2, + STATE(1103), 2, sym_line_comment, sym_block_comment, - ACTIONS(1998), 7, + ACTIONS(2715), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -114293,7 +115537,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2000), 38, + ACTIONS(2717), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114332,15 +115577,72 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6720] = 5, - ACTIONS(101), 1, + [5237] = 6, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3444), 1, + anon_sym_LBRACE, + STATE(1104), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3385), 16, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3387), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_as, + anon_sym_else, + [5300] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1103), 2, + STATE(1105), 2, sym_line_comment, sym_block_comment, - ACTIONS(2002), 7, + ACTIONS(2719), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -114348,7 +115650,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2004), 38, + ACTIONS(2721), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114387,15 +115690,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6780] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [5361] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1104), 2, + STATE(1106), 2, sym_line_comment, sym_block_comment, - ACTIONS(2006), 7, + ACTIONS(2131), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -114403,7 +115706,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2008), 38, + ACTIONS(2133), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114442,15 +115746,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6840] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [5422] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1105), 2, + STATE(1107), 2, sym_line_comment, sym_block_comment, - ACTIONS(2010), 7, + ACTIONS(2135), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -114458,7 +115762,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2012), 38, + ACTIONS(2137), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114497,15 +115802,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6900] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [5483] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1106), 2, + STATE(1108), 2, sym_line_comment, sym_block_comment, - ACTIONS(2014), 7, + ACTIONS(2139), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -114513,7 +115818,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2016), 38, + ACTIONS(2141), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114552,15 +115858,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6960] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [5544] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1107), 2, + STATE(1109), 2, sym_line_comment, sym_block_comment, - ACTIONS(2018), 7, + ACTIONS(2911), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -114568,7 +115874,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2020), 38, + ACTIONS(2913), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114607,15 +115914,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7020] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [5605] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1108), 2, + STATE(1110), 2, sym_line_comment, sym_block_comment, - ACTIONS(2022), 7, + ACTIONS(2171), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -114623,7 +115930,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2024), 38, + ACTIONS(2173), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114662,15 +115970,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7080] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [5666] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1109), 2, + STATE(1111), 2, sym_line_comment, sym_block_comment, - ACTIONS(2026), 7, + ACTIONS(2899), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -114678,7 +115986,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2028), 38, + ACTIONS(2901), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114717,15 +116026,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7140] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [5727] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1110), 2, + STATE(1112), 2, sym_line_comment, sym_block_comment, - ACTIONS(2030), 7, + ACTIONS(2183), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -114733,7 +116042,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2032), 38, + ACTIONS(2185), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114772,15 +116082,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7200] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [5788] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1111), 2, + STATE(1113), 2, sym_line_comment, sym_block_comment, - ACTIONS(2034), 7, + ACTIONS(2887), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -114788,7 +116098,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2036), 38, + ACTIONS(2889), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114827,15 +116138,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7260] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [5849] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1112), 2, + STATE(1114), 2, sym_line_comment, sym_block_comment, - ACTIONS(2038), 7, + ACTIONS(2883), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -114843,7 +116154,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2040), 38, + ACTIONS(2885), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114882,15 +116194,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7320] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [5910] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1113), 2, + STATE(1115), 2, sym_line_comment, sym_block_comment, - ACTIONS(2042), 7, + ACTIONS(2815), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -114898,7 +116210,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2044), 38, + ACTIONS(2817), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114937,15 +116250,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7380] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [5971] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1114), 2, + STATE(1116), 2, sym_line_comment, sym_block_comment, - ACTIONS(2046), 7, + ACTIONS(2191), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -114953,7 +116266,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2048), 38, + ACTIONS(2193), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114992,15 +116306,129 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7440] = 5, - ACTIONS(101), 1, + [6032] = 6, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3450), 1, + anon_sym_DASH_GT, + STATE(1117), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3448), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3446), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [6095] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1115), 2, + ACTIONS(3456), 1, + anon_sym_DASH_GT, + STATE(1118), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3454), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3452), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [6158] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1119), 2, sym_line_comment, sym_block_comment, - ACTIONS(2050), 7, + ACTIONS(2195), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -115008,7 +116436,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2052), 38, + ACTIONS(2197), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115047,15 +116476,71 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7500] = 5, - ACTIONS(101), 1, + [6219] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1120), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2207), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2209), 39, + anon_sym_macro, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_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, + [6280] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1116), 2, + STATE(1121), 2, sym_line_comment, sym_block_comment, - ACTIONS(2054), 7, + ACTIONS(2211), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -115063,7 +116548,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2056), 38, + ACTIONS(2213), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115102,15 +116588,72 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7560] = 5, - ACTIONS(101), 1, + [6341] = 6, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3462), 1, + anon_sym_DASH_GT, + STATE(1122), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3460), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3458), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [6404] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1117), 2, + STATE(1123), 2, sym_line_comment, sym_block_comment, - ACTIONS(2058), 7, + ACTIONS(2215), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -115118,7 +116661,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2060), 38, + ACTIONS(2217), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115157,78 +116701,67 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7620] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [6465] = 27, + ACTIONS(31), 1, + anon_sym_LT, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1118), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2062), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, + ACTIONS(1397), 1, + anon_sym_for, + ACTIONS(1403), 1, + anon_sym_extern, + ACTIONS(3181), 1, + anon_sym_QMARK, + ACTIONS(3193), 1, + anon_sym_fn, + ACTIONS(3464), 1, + sym_identifier, + ACTIONS(3466), 1, + anon_sym_LPAREN, + ACTIONS(3470), 1, anon_sym_COLON_COLON, - anon_sym_POUND, + ACTIONS(3472), 1, + anon_sym_default, + ACTIONS(3474), 1, + anon_sym_union, + ACTIONS(3478), 1, sym_metavariable, - ACTIONS(2064), 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, + STATE(1048), 1, + sym_scoped_type_identifier, + STATE(1268), 1, + sym_generic_type, + STATE(1668), 1, + sym_for_lifetimes, + STATE(2255), 1, + aux_sym_function_modifiers_repeat1, + STATE(2359), 1, + sym_extern_modifier, + STATE(3424), 1, + sym_function_modifiers, + STATE(3577), 1, + sym_scoped_identifier, + STATE(3611), 1, + sym_generic_type_with_turbofish, + STATE(3621), 1, + sym_bracketed_type, + STATE(1124), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1389), 3, 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, + ACTIONS(3476), 3, sym_self, sym_super, sym_crate, - [7680] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1119), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2066), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2068), 38, + STATE(1445), 3, + sym_removed_trait_bound, + sym_function_type, + sym_tuple_type, + ACTIONS(3468), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115246,36 +116779,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_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, - [7740] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [6570] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1120), 2, + STATE(1125), 2, sym_line_comment, sym_block_comment, - ACTIONS(2070), 7, + ACTIONS(2231), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -115283,7 +116795,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2072), 38, + ACTIONS(2233), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115322,70 +116835,71 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7800] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [6631] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1121), 2, + STATE(1126), 2, sym_line_comment, sym_block_comment, - ACTIONS(2074), 7, + ACTIONS(3482), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3480), 31, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2076), 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, - [7860] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DASH_GT, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [6692] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1122), 2, + STATE(1127), 2, sym_line_comment, sym_block_comment, - ACTIONS(2078), 7, + ACTIONS(2323), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -115393,7 +116907,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2080), 38, + ACTIONS(2325), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115432,15 +116947,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7920] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [6753] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1123), 2, + STATE(1128), 2, sym_line_comment, sym_block_comment, - ACTIONS(2082), 7, + ACTIONS(2331), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -115448,7 +116963,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2084), 38, + ACTIONS(2333), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115487,15 +117003,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7980] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [6814] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1124), 2, + STATE(1129), 2, sym_line_comment, sym_block_comment, - ACTIONS(2086), 7, + ACTIONS(2351), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -115503,7 +117019,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2088), 38, + ACTIONS(2353), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115542,15 +117059,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8040] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [6875] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1125), 2, + STATE(1130), 2, sym_line_comment, sym_block_comment, - ACTIONS(2090), 7, + ACTIONS(2355), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -115558,7 +117075,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2092), 38, + ACTIONS(2357), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115597,15 +117115,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8100] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [6936] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1126), 2, + STATE(1131), 2, sym_line_comment, sym_block_comment, - ACTIONS(2094), 7, + ACTIONS(2367), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -115613,7 +117131,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2096), 38, + ACTIONS(2369), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115652,15 +117171,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8160] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [6997] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1127), 2, + STATE(1132), 2, sym_line_comment, sym_block_comment, - ACTIONS(1430), 15, + ACTIONS(3486), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -115676,7 +117195,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1428), 30, + ACTIONS(3484), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -115684,6 +117203,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -115703,19 +117223,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [8220] = 5, - ACTIONS(101), 1, + [7058] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1133), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3371), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_EQ, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3369), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + anon_sym_LT2, + [7119] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1128), 2, + STATE(1134), 2, sym_line_comment, sym_block_comment, - ACTIONS(1878), 7, + ACTIONS(2375), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -115723,7 +117299,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1880), 38, + ACTIONS(2377), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115762,15 +117339,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8280] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [7180] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1129), 2, + STATE(1135), 2, sym_line_comment, sym_block_comment, - ACTIONS(1882), 7, + ACTIONS(2383), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -115778,7 +117355,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1884), 38, + ACTIONS(2385), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115817,70 +117395,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8340] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [7241] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1130), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1400), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1398), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [8400] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1131), 2, + STATE(1136), 2, sym_line_comment, sym_block_comment, - ACTIONS(2102), 7, + ACTIONS(2391), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -115888,7 +117411,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2104), 38, + ACTIONS(2393), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115927,15 +117451,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8460] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [7302] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1132), 2, + STATE(1137), 2, sym_line_comment, sym_block_comment, - ACTIONS(2106), 7, + ACTIONS(2379), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -115943,7 +117467,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2108), 38, + ACTIONS(2381), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115982,15 +117507,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8520] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [7363] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1133), 2, + STATE(1138), 2, sym_line_comment, sym_block_comment, - ACTIONS(2110), 7, + ACTIONS(2363), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -115998,7 +117523,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2112), 38, + ACTIONS(2365), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116037,15 +117563,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8580] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [7424] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1134), 2, + STATE(1139), 2, sym_line_comment, sym_block_comment, - ACTIONS(2114), 7, + ACTIONS(2395), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116053,7 +117579,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2116), 38, + ACTIONS(2397), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116092,15 +117619,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8640] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [7485] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1135), 2, + STATE(1140), 2, sym_line_comment, sym_block_comment, - ACTIONS(2118), 7, + ACTIONS(2399), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116108,7 +117635,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2120), 38, + ACTIONS(2401), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116147,15 +117675,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8700] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [7546] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1136), 2, + STATE(1141), 2, sym_line_comment, sym_block_comment, - ACTIONS(2122), 7, + ACTIONS(2271), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116163,7 +117691,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2124), 38, + ACTIONS(2273), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116202,15 +117731,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8760] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [7607] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1137), 2, + STATE(1142), 2, sym_line_comment, sym_block_comment, - ACTIONS(2126), 7, + ACTIONS(2243), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116218,7 +117747,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2128), 38, + ACTIONS(2245), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116257,15 +117787,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8820] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [7668] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1138), 2, + STATE(1143), 2, sym_line_comment, sym_block_comment, - ACTIONS(2130), 7, + ACTIONS(1879), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116273,7 +117803,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2132), 38, + ACTIONS(1881), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116312,15 +117843,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8880] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [7729] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1139), 2, + STATE(1144), 2, sym_line_comment, sym_block_comment, - ACTIONS(2134), 7, + ACTIONS(2415), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116328,7 +117859,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2136), 38, + ACTIONS(2417), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116367,15 +117899,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8940] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [7790] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1140), 2, + STATE(1145), 2, sym_line_comment, sym_block_comment, - ACTIONS(2138), 7, + ACTIONS(1887), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116383,7 +117915,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2140), 38, + ACTIONS(1889), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116422,15 +117955,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9000] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [7851] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1141), 2, + STATE(1146), 2, sym_line_comment, sym_block_comment, - ACTIONS(2142), 7, + ACTIONS(2079), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116438,7 +117971,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2144), 38, + ACTIONS(2081), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116477,15 +118011,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9060] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [7912] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1142), 2, + STATE(1147), 2, sym_line_comment, sym_block_comment, - ACTIONS(1894), 7, + ACTIONS(2423), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116493,7 +118027,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1896), 38, + ACTIONS(2425), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116532,15 +118067,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9120] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [7973] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1143), 2, + STATE(1148), 2, sym_line_comment, sym_block_comment, - ACTIONS(2150), 7, + ACTIONS(2443), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116548,7 +118083,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2152), 38, + ACTIONS(2445), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116587,15 +118123,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9180] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [8034] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1144), 2, + STATE(1149), 2, sym_line_comment, sym_block_comment, - ACTIONS(2154), 7, + ACTIONS(2075), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116603,7 +118139,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2156), 38, + ACTIONS(2077), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116642,15 +118179,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9240] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [8095] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1145), 2, + STATE(1150), 2, sym_line_comment, sym_block_comment, - ACTIONS(2158), 7, + ACTIONS(1975), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116658,7 +118195,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2160), 38, + ACTIONS(1977), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116697,15 +118235,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9300] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [8156] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1146), 2, + STATE(1151), 2, sym_line_comment, sym_block_comment, - ACTIONS(2162), 7, + ACTIONS(1931), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116713,7 +118251,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2164), 38, + ACTIONS(1933), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116752,15 +118291,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9360] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [8217] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1147), 2, + STATE(1152), 2, sym_line_comment, sym_block_comment, - ACTIONS(2166), 7, + ACTIONS(1823), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116768,7 +118307,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2168), 38, + ACTIONS(1825), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116807,15 +118347,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9420] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [8278] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1148), 2, + STATE(1153), 2, sym_line_comment, sym_block_comment, - ACTIONS(2170), 7, + ACTIONS(2455), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116823,7 +118363,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2172), 38, + ACTIONS(2457), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116862,15 +118403,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9480] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [8339] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1149), 2, + STATE(1154), 2, sym_line_comment, sym_block_comment, - ACTIONS(2174), 7, + ACTIONS(2459), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116878,7 +118419,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2176), 38, + ACTIONS(2461), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116917,15 +118459,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9540] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [8400] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1150), 2, + STATE(1155), 2, sym_line_comment, sym_block_comment, - ACTIONS(2178), 7, + ACTIONS(2467), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116933,7 +118475,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2180), 38, + ACTIONS(2469), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116972,15 +118515,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9600] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [8461] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1151), 2, + STATE(1156), 2, sym_line_comment, sym_block_comment, - ACTIONS(2182), 7, + ACTIONS(1911), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116988,7 +118531,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2184), 38, + ACTIONS(1913), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117027,15 +118571,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9660] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [8522] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1152), 2, + STATE(1157), 2, sym_line_comment, sym_block_comment, - ACTIONS(2186), 7, + ACTIONS(1863), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117043,7 +118587,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2188), 38, + ACTIONS(1865), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117082,15 +118627,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9720] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [8583] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1153), 2, + STATE(1158), 2, sym_line_comment, sym_block_comment, - ACTIONS(2190), 7, + ACTIONS(1847), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117098,7 +118643,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2192), 38, + ACTIONS(1849), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117137,15 +118683,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9780] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [8644] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1154), 2, + STATE(1159), 2, sym_line_comment, sym_block_comment, - ACTIONS(2194), 7, + ACTIONS(1835), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117153,7 +118699,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2196), 38, + ACTIONS(1837), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117192,15 +118739,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9840] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [8705] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1155), 2, + STATE(1160), 2, sym_line_comment, sym_block_comment, - ACTIONS(2198), 7, + ACTIONS(1983), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117208,7 +118755,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2200), 38, + ACTIONS(1985), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117247,15 +118795,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9900] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [8766] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1156), 2, + STATE(1161), 2, sym_line_comment, sym_block_comment, - ACTIONS(2202), 7, + ACTIONS(2483), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117263,7 +118811,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2204), 38, + ACTIONS(2485), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117302,15 +118851,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9960] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [8827] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1157), 2, + STATE(1162), 2, sym_line_comment, sym_block_comment, - ACTIONS(2206), 7, + ACTIONS(1955), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117318,7 +118867,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2208), 38, + ACTIONS(1957), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117357,15 +118907,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10020] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [8888] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1158), 2, + STATE(1163), 2, sym_line_comment, sym_block_comment, - ACTIONS(2210), 7, + ACTIONS(2771), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117373,7 +118923,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2212), 38, + ACTIONS(2773), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117412,15 +118963,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10080] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [8949] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1159), 2, + STATE(1164), 2, sym_line_comment, sym_block_comment, - ACTIONS(2214), 7, + ACTIONS(2059), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117428,7 +118979,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2216), 38, + ACTIONS(2061), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117467,15 +119019,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10140] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [9010] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1160), 2, + STATE(1165), 2, sym_line_comment, sym_block_comment, - ACTIONS(2218), 7, + ACTIONS(2067), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117483,7 +119035,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2220), 38, + ACTIONS(2069), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117522,15 +119075,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10200] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [9071] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1161), 2, + STATE(1166), 2, sym_line_comment, sym_block_comment, - ACTIONS(2222), 7, + ACTIONS(2479), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117538,7 +119091,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2224), 38, + ACTIONS(2481), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117577,15 +119131,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10260] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [9132] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1162), 2, + STATE(1167), 2, sym_line_comment, sym_block_comment, - ACTIONS(2226), 7, + ACTIONS(1963), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117593,7 +119147,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2228), 38, + ACTIONS(1965), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117632,15 +119187,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10320] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [9193] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1163), 2, + STATE(1168), 2, sym_line_comment, sym_block_comment, - ACTIONS(2230), 7, + ACTIONS(2503), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117648,7 +119203,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2232), 38, + ACTIONS(2505), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117687,15 +119243,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10380] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [9254] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1164), 2, + STATE(1169), 2, sym_line_comment, sym_block_comment, - ACTIONS(2234), 7, + ACTIONS(1967), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117703,7 +119259,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2236), 38, + ACTIONS(1969), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117742,15 +119299,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10440] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [9315] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1165), 2, + STATE(1170), 2, sym_line_comment, sym_block_comment, - ACTIONS(2238), 7, + ACTIONS(2511), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117758,7 +119315,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2240), 38, + ACTIONS(2513), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117797,15 +119355,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10500] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [9376] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1166), 2, + STATE(1171), 2, sym_line_comment, sym_block_comment, - ACTIONS(2242), 7, + ACTIONS(2115), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117813,7 +119371,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2244), 38, + ACTIONS(2117), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117852,15 +119411,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10560] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [9437] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1167), 2, + STATE(1172), 2, sym_line_comment, sym_block_comment, - ACTIONS(2250), 7, + ACTIONS(2143), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117868,7 +119427,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2252), 38, + ACTIONS(2145), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117907,15 +119467,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10620] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [9498] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1168), 2, + STATE(1173), 2, sym_line_comment, sym_block_comment, - ACTIONS(2254), 7, + ACTIONS(2151), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117923,7 +119483,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2256), 38, + ACTIONS(2153), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117962,15 +119523,73 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10680] = 5, - ACTIONS(101), 1, + [9559] = 7, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3488), 1, + anon_sym_else, + STATE(1402), 1, + sym_else_clause, + STATE(1174), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1070), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1068), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + anon_sym_as, + [9624] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1169), 2, + STATE(1175), 2, sym_line_comment, sym_block_comment, - ACTIONS(2258), 7, + ACTIONS(2515), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117978,7 +119597,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2260), 38, + ACTIONS(2517), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118017,15 +119637,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10740] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [9685] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1170), 2, + STATE(1176), 2, sym_line_comment, sym_block_comment, - ACTIONS(2262), 7, + ACTIONS(2039), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118033,7 +119653,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2264), 38, + ACTIONS(2041), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118072,15 +119693,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10800] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [9746] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1171), 2, + STATE(1177), 2, sym_line_comment, sym_block_comment, - ACTIONS(2266), 7, + ACTIONS(2311), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118088,7 +119709,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2268), 38, + ACTIONS(2313), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118127,15 +119749,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10860] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [9807] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1172), 2, + STATE(1178), 2, sym_line_comment, sym_block_comment, - ACTIONS(2915), 7, + ACTIONS(2523), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118143,7 +119765,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2917), 38, + ACTIONS(2525), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118182,15 +119805,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10920] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [9868] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1173), 2, + STATE(1179), 2, sym_line_comment, sym_block_comment, - ACTIONS(2274), 7, + ACTIONS(2051), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118198,7 +119821,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2276), 38, + ACTIONS(2053), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118237,15 +119861,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10980] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [9929] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1174), 2, + STATE(1180), 2, sym_line_comment, sym_block_comment, - ACTIONS(2278), 7, + ACTIONS(2055), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118253,7 +119877,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2280), 38, + ACTIONS(2057), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118292,15 +119917,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11040] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [9990] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1175), 2, + STATE(1181), 2, sym_line_comment, sym_block_comment, - ACTIONS(2282), 7, + ACTIONS(2531), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118308,7 +119933,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2284), 38, + ACTIONS(2533), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118347,15 +119973,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11100] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [10051] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1176), 2, + STATE(1182), 2, sym_line_comment, sym_block_comment, - ACTIONS(2286), 7, + ACTIONS(2535), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118363,7 +119989,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2288), 38, + ACTIONS(2537), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118402,15 +120029,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11160] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [10112] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1177), 2, + STATE(1183), 2, sym_line_comment, sym_block_comment, - ACTIONS(2290), 7, + ACTIONS(2539), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118418,7 +120045,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2292), 38, + ACTIONS(2541), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118457,15 +120085,72 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11220] = 5, - ACTIONS(101), 1, + [10173] = 6, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3494), 1, + anon_sym_DASH_GT, + STATE(1184), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3492), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3490), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [10236] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1178), 2, + STATE(1185), 2, sym_line_comment, sym_block_comment, - ACTIONS(2294), 7, + ACTIONS(2543), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118473,7 +120158,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2296), 38, + ACTIONS(2545), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118512,15 +120198,129 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11280] = 5, - ACTIONS(101), 1, + [10297] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3500), 1, + anon_sym_DASH_GT, + STATE(1186), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3498), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3496), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [10360] = 6, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3502), 1, + anon_sym_COLON_COLON, + STATE(1187), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3347), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3345), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [10423] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1179), 2, + STATE(1188), 2, sym_line_comment, sym_block_comment, - ACTIONS(2302), 7, + ACTIONS(2547), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118528,7 +120328,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2304), 38, + ACTIONS(2549), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118567,15 +120368,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11340] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [10484] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1180), 2, + STATE(1189), 2, sym_line_comment, sym_block_comment, - ACTIONS(2306), 7, + ACTIONS(2551), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118583,7 +120384,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2308), 38, + ACTIONS(2553), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118622,15 +120424,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11400] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [10545] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1181), 2, + STATE(1190), 2, sym_line_comment, sym_block_comment, - ACTIONS(2310), 7, + ACTIONS(2739), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118638,7 +120440,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2312), 38, + ACTIONS(2741), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118677,15 +120480,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11460] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [10606] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1182), 2, + STATE(1191), 2, sym_line_comment, sym_block_comment, - ACTIONS(2314), 7, + ACTIONS(2063), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118693,7 +120496,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2316), 38, + ACTIONS(2065), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118732,70 +120536,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11520] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [10667] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1183), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3545), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3543), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [11580] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1184), 2, + STATE(1192), 2, sym_line_comment, sym_block_comment, - ACTIONS(1906), 7, + ACTIONS(2083), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118803,7 +120552,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1908), 38, + ACTIONS(2085), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118842,70 +120592,71 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11640] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [10728] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1185), 2, + STATE(1193), 2, sym_line_comment, sym_block_comment, - ACTIONS(2098), 7, + ACTIONS(3506), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3504), 31, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2100), 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, - [11700] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [10789] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1186), 2, + STATE(1194), 2, sym_line_comment, sym_block_comment, - ACTIONS(3549), 15, + ACTIONS(3510), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -118921,7 +120672,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3547), 30, + ACTIONS(3508), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -118929,6 +120680,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -118948,19 +120700,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [11760] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [10850] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1187), 2, + STATE(1195), 2, sym_line_comment, sym_block_comment, - ACTIONS(1662), 7, + ACTIONS(2563), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118968,7 +120720,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1664), 38, + ACTIONS(2565), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119007,15 +120760,71 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11820] = 5, - ACTIONS(101), 1, + [10911] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1196), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2567), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2569), 39, + anon_sym_macro, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_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, + [10972] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1188), 2, + STATE(1197), 2, sym_line_comment, sym_block_comment, - ACTIONS(2246), 7, + ACTIONS(2087), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119023,7 +120832,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2248), 38, + ACTIONS(2089), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119062,15 +120872,95 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11880] = 5, - ACTIONS(101), 1, + [11033] = 27, + ACTIONS(31), 1, + anon_sym_LT, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1365), 1, + anon_sym_QMARK, + ACTIONS(1395), 1, + anon_sym_fn, + ACTIONS(1397), 1, + anon_sym_for, + ACTIONS(1403), 1, + anon_sym_extern, + ACTIONS(3418), 1, + anon_sym_LPAREN, + ACTIONS(3426), 1, + anon_sym_COLON_COLON, + ACTIONS(3430), 1, + anon_sym_union, + ACTIONS(3436), 1, + sym_metavariable, + ACTIONS(3512), 1, + sym_identifier, + ACTIONS(3516), 1, + anon_sym_default, + STATE(1634), 1, + sym_for_lifetimes, + STATE(1950), 1, + sym_scoped_type_identifier, + STATE(1986), 1, + sym_generic_type, + STATE(2255), 1, + aux_sym_function_modifiers_repeat1, + STATE(2359), 1, + sym_extern_modifier, + STATE(3426), 1, + sym_generic_type_with_turbofish, + STATE(3442), 1, + sym_scoped_identifier, + STATE(3553), 1, + sym_function_modifiers, + STATE(3563), 1, + sym_bracketed_type, + STATE(1198), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1389), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3434), 3, + sym_self, + sym_super, + sym_crate, + STATE(2012), 3, + sym_removed_trait_bound, + sym_function_type, + sym_tuple_type, + ACTIONS(3514), 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, + [11138] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1189), 2, + ACTIONS(3502), 1, + anon_sym_COLON_COLON, + STATE(1199), 2, sym_line_comment, sym_block_comment, - ACTIONS(3553), 15, + ACTIONS(3391), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -119086,7 +120976,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3551), 30, + ACTIONS(3389), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -119094,6 +120984,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -119113,19 +121004,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [11940] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [11201] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1190), 2, + STATE(1200), 2, sym_line_comment, sym_block_comment, - ACTIONS(2298), 7, + ACTIONS(2091), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119133,7 +121023,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2300), 38, + ACTIONS(2093), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119172,15 +121063,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12000] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [11262] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1191), 2, + STATE(1201), 2, sym_line_comment, sym_block_comment, - ACTIONS(2318), 7, + ACTIONS(2711), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119188,7 +121079,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2320), 38, + ACTIONS(2713), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119227,15 +121119,17 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12060] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [11323] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1192), 2, + ACTIONS(3522), 1, + anon_sym_DASH_GT, + STATE(1202), 2, sym_line_comment, sym_block_comment, - ACTIONS(1416), 15, + ACTIONS(3520), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -119251,7 +121145,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1418), 30, + ACTIONS(3518), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -119259,6 +121153,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -119278,19 +121173,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [12120] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [11386] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1193), 2, + STATE(1203), 2, sym_line_comment, sym_block_comment, - ACTIONS(3557), 15, + ACTIONS(3291), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -119306,7 +121200,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3555), 30, + ACTIONS(3293), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -119314,6 +121208,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -119333,19 +121229,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [12180] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [11447] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1194), 2, + STATE(1204), 2, sym_line_comment, sym_block_comment, - ACTIONS(2322), 7, + ACTIONS(2095), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119353,7 +121248,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2324), 38, + ACTIONS(2097), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119392,125 +121288,71 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12240] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [11508] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1195), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1452), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1450), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [12300] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1196), 2, + STATE(1205), 2, sym_line_comment, sym_block_comment, - ACTIONS(1322), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1320), 30, + ACTIONS(2099), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [12360] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2101), 39, + anon_sym_macro, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_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, + [11569] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1197), 2, + STATE(1206), 2, sym_line_comment, sym_block_comment, - ACTIONS(2326), 7, + ACTIONS(2107), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119518,7 +121360,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2328), 38, + ACTIONS(2109), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119557,15 +121400,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12420] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [11630] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1198), 2, + STATE(1207), 2, sym_line_comment, sym_block_comment, - ACTIONS(753), 15, + ACTIONS(3526), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -119581,7 +121424,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(755), 30, + ACTIONS(3524), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -119589,6 +121432,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -119608,19 +121452,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [12480] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [11691] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1199), 2, + STATE(1208), 2, sym_line_comment, sym_block_comment, - ACTIONS(3561), 15, + ACTIONS(3530), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -119636,7 +121480,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3559), 30, + ACTIONS(3528), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -119644,6 +121488,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -119663,19 +121508,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [12540] = 5, - ACTIONS(101), 1, + [11752] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1209), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3534), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3532), 31, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [11813] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1200), 2, + STATE(1210), 2, sym_line_comment, sym_block_comment, - ACTIONS(2380), 7, + ACTIONS(2111), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119683,7 +121584,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2382), 38, + ACTIONS(2113), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119722,15 +121624,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12600] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [11874] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1201), 2, + STATE(1211), 2, sym_line_comment, sym_block_comment, - ACTIONS(2384), 7, + ACTIONS(2119), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119738,7 +121640,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2386), 38, + ACTIONS(2121), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119777,15 +121680,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12660] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [11935] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1202), 2, + STATE(1212), 2, sym_line_comment, sym_block_comment, - ACTIONS(3565), 15, + ACTIONS(3538), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -119801,7 +121704,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3563), 30, + ACTIONS(3536), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -119809,6 +121712,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -119828,19 +121732,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [12720] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [11996] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1203), 2, + STATE(1213), 2, sym_line_comment, sym_block_comment, - ACTIONS(2388), 7, + ACTIONS(2127), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119848,7 +121752,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2390), 38, + ACTIONS(2129), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119887,15 +121792,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12780] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [12057] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1204), 2, + STATE(1214), 2, sym_line_comment, sym_block_comment, - ACTIONS(2392), 7, + ACTIONS(2591), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119903,7 +121808,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2394), 38, + ACTIONS(2593), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119942,663 +121848,584 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12840] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [12118] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1205), 2, + STATE(1215), 2, sym_line_comment, sym_block_comment, - ACTIONS(1208), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1206), 30, + ACTIONS(2599), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [12900] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2601), 39, + anon_sym_macro, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_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, + [12179] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1206), 2, + STATE(1216), 2, sym_line_comment, sym_block_comment, - ACTIONS(1384), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1382), 30, + ACTIONS(2147), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [12960] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2149), 39, + anon_sym_macro, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_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, + [12240] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1207), 2, + STATE(1217), 2, sym_line_comment, sym_block_comment, - ACTIONS(3569), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3567), 30, + ACTIONS(2603), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [13020] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2605), 39, + anon_sym_macro, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_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, + [12301] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1208), 2, + STATE(1218), 2, sym_line_comment, sym_block_comment, - ACTIONS(3573), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3571), 30, + ACTIONS(2607), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [13080] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2609), 39, + anon_sym_macro, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_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, + [12362] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1209), 2, + STATE(1219), 2, sym_line_comment, sym_block_comment, - ACTIONS(3577), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3575), 30, + ACTIONS(2611), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [13140] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2613), 39, + anon_sym_macro, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_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, + [12423] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1210), 2, + STATE(1220), 2, sym_line_comment, sym_block_comment, - ACTIONS(3581), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3579), 30, + ACTIONS(2155), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [13200] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1211), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3585), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3583), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [13260] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2157), 39, + anon_sym_macro, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_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, + [12484] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1212), 2, + STATE(1221), 2, sym_line_comment, sym_block_comment, - ACTIONS(3589), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3587), 30, + ACTIONS(2619), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [13320] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2621), 39, + anon_sym_macro, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_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, + [12545] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1213), 2, + STATE(1222), 2, sym_line_comment, sym_block_comment, - ACTIONS(3593), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3591), 30, + ACTIONS(2623), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [13380] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2625), 39, + anon_sym_macro, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_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, + [12606] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1214), 2, + STATE(1223), 2, sym_line_comment, sym_block_comment, - ACTIONS(1416), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1418), 30, + ACTIONS(2159), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [13440] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2161), 39, + anon_sym_macro, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_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, + [12667] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1215), 2, + STATE(1224), 2, sym_line_comment, sym_block_comment, - ACTIONS(3396), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3392), 30, + ACTIONS(2631), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [13500] = 21, - ACTIONS(29), 1, anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(1614), 1, - anon_sym_DASH, - ACTIONS(1638), 1, - aux_sym_string_literal_token1, - ACTIONS(1646), 1, - sym__raw_string_literal_start, - ACTIONS(3221), 1, - anon_sym_if, - ACTIONS(3595), 1, - sym_identifier, - ACTIONS(3599), 1, anon_sym_COLON_COLON, - ACTIONS(3603), 1, + anon_sym_POUND, sym_metavariable, - STATE(2726), 1, - sym_scoped_identifier, - STATE(2895), 1, - sym__literal_pattern, - STATE(3465), 1, - sym_bracketed_type, - STATE(3478), 1, - sym_generic_type_with_turbofish, - ACTIONS(1640), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3219), 2, - anon_sym_EQ_GT, - anon_sym_PIPE, - STATE(1216), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1636), 3, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3601), 3, + ACTIONS(2633), 39, + anon_sym_macro, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_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, - STATE(2299), 4, - sym_negative_literal, - sym_string_literal, - sym_raw_string_literal, - sym_boolean_literal, - ACTIONS(3597), 19, + [12728] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1225), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2635), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2637), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120616,17 +122443,36 @@ 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, - [13592] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [12789] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1217), 2, + STATE(1226), 2, sym_line_comment, sym_block_comment, - ACTIONS(3607), 15, + ACTIONS(3542), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -120642,7 +122488,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3605), 30, + ACTIONS(3540), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -120650,6 +122496,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -120669,190 +122516,420 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [13652] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [12850] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1218), 2, + STATE(1227), 2, sym_line_comment, sym_block_comment, - ACTIONS(1422), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1420), 30, + ACTIONS(2663), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [13712] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2665), 39, + anon_sym_macro, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_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, + [12911] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1219), 2, + STATE(1228), 2, sym_line_comment, sym_block_comment, - ACTIONS(3611), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, + ACTIONS(2643), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3609), 30, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2645), 39, + anon_sym_macro, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_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, + [12972] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1229), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2615), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [13772] = 5, - ACTIONS(101), 1, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2617), 39, + anon_sym_macro, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_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, + [13033] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1230), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2163), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2165), 39, + anon_sym_macro, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_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, + [13094] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1220), 2, + STATE(1231), 2, sym_line_comment, sym_block_comment, - ACTIONS(3615), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, + ACTIONS(2167), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3613), 30, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2169), 39, + anon_sym_macro, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_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, + [13155] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1232), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2175), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [13832] = 5, - ACTIONS(101), 1, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2177), 39, + anon_sym_macro, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_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, + [13216] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1233), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2647), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2649), 39, + anon_sym_macro, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_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, + [13277] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1221), 2, + ACTIONS(3544), 1, + anon_sym_LBRACE, + STATE(1234), 2, sym_line_comment, sym_block_comment, - ACTIONS(3619), 15, + ACTIONS(3365), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, + anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -120862,14 +122939,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3617), 30, + ACTIONS(3367), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -120889,302 +122966,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, + anon_sym_COLON_COLON, anon_sym_as, anon_sym_else, - [13892] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [13340] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1222), 2, + STATE(1235), 2, sym_line_comment, sym_block_comment, - ACTIONS(3623), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3621), 30, + ACTIONS(2651), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [13952] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1223), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3627), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3625), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [14012] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1224), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3627), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3625), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [14072] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1225), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3631), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3629), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [14132] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1226), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3635), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3633), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [14192] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1227), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2400), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, anon_sym_LT, anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2402), 38, + ACTIONS(2653), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121223,84 +123025,24 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14252] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [13401] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1228), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3639), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3637), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [14312] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1229), 2, + STATE(1236), 2, sym_line_comment, sym_block_comment, - ACTIONS(3643), 13, + ACTIONS(2179), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_EQ, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_SQUOTE, + anon_sym_POUND, sym_metavariable, - ACTIONS(3641), 32, + ACTIONS(2181), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121321,41 +123063,50 @@ 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, - [14372] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [13462] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1230), 2, + ACTIONS(3546), 1, + anon_sym_POUND, + STATE(1514), 1, + sym_attribute_item, + STATE(1237), 3, sym_line_comment, sym_block_comment, - ACTIONS(3647), 13, - anon_sym_SEMI, + aux_sym_enum_variant_list_repeat1, + ACTIONS(793), 11, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_STAR, anon_sym_QMARK, anon_sym_BANG, anon_sym_AMP, - anon_sym_EQ, anon_sym_LT, anon_sym_COLON_COLON, anon_sym_SQUOTE, + sym_integer_literal, sym_metavariable, - ACTIONS(3645), 32, + ACTIONS(3279), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121379,79 +123130,24 @@ 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, - [14432] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [13527] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1231), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(985), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(987), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [14492] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1232), 2, + STATE(1238), 2, sym_line_comment, sym_block_comment, - ACTIONS(2418), 7, + ACTIONS(2655), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121459,7 +123155,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2420), 38, + ACTIONS(2657), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121498,15 +123195,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14552] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [13588] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1233), 2, + STATE(1239), 2, sym_line_comment, sym_block_comment, - ACTIONS(2422), 7, + ACTIONS(2659), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121514,7 +123211,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2424), 38, + ACTIONS(2661), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121553,15 +123251,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14612] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [13649] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1234), 2, + STATE(1240), 2, sym_line_comment, sym_block_comment, - ACTIONS(2426), 7, + ACTIONS(2767), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121569,7 +123267,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2428), 38, + ACTIONS(2769), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121608,15 +123307,149 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14672] = 5, - ACTIONS(101), 1, + [13710] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1241), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3551), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3549), 31, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [13771] = 27, + ACTIONS(31), 1, + anon_sym_LT, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1235), 2, + ACTIONS(1365), 1, + anon_sym_QMARK, + ACTIONS(1395), 1, + anon_sym_fn, + ACTIONS(1403), 1, + anon_sym_extern, + ACTIONS(3418), 1, + anon_sym_LPAREN, + ACTIONS(3426), 1, + anon_sym_COLON_COLON, + ACTIONS(3430), 1, + anon_sym_union, + ACTIONS(3436), 1, + sym_metavariable, + ACTIONS(3516), 1, + anon_sym_default, + ACTIONS(3553), 1, + sym_identifier, + ACTIONS(3555), 1, + anon_sym_for, + STATE(1634), 1, + sym_for_lifetimes, + STATE(1954), 1, + sym_scoped_type_identifier, + STATE(1989), 1, + sym_generic_type, + STATE(2255), 1, + aux_sym_function_modifiers_repeat1, + STATE(2359), 1, + sym_extern_modifier, + STATE(3426), 1, + sym_generic_type_with_turbofish, + STATE(3442), 1, + sym_scoped_identifier, + STATE(3553), 1, + sym_function_modifiers, + STATE(3563), 1, + sym_bracketed_type, + STATE(1242), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1389), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3434), 3, + sym_self, + sym_super, + sym_crate, + STATE(2015), 3, + sym_removed_trait_bound, + sym_function_type, + sym_tuple_type, + ACTIONS(3514), 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, + [13876] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1243), 2, sym_line_comment, sym_block_comment, - ACTIONS(2430), 7, + ACTIONS(2667), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121624,7 +123457,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2432), 38, + ACTIONS(2669), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121663,15 +123497,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14732] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [13937] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1236), 2, + STATE(1244), 2, sym_line_comment, sym_block_comment, - ACTIONS(2434), 7, + ACTIONS(2671), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121679,7 +123513,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2436), 38, + ACTIONS(2673), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121718,182 +123553,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14792] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [13998] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1237), 2, + STATE(1245), 2, sym_line_comment, sym_block_comment, - ACTIONS(3651), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3649), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [14852] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3321), 1, - anon_sym_COLON_COLON, - ACTIONS(3653), 1, - anon_sym_BANG, - STATE(1238), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3317), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3315), 28, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_as, - anon_sym_else, - [14916] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1239), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1388), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1386), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [14976] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1240), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2438), 7, + ACTIONS(2187), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121901,7 +123569,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2440), 38, + ACTIONS(2189), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121940,70 +123609,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15036] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [14059] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1241), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1416), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1418), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [15096] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1242), 2, + STATE(1246), 2, sym_line_comment, sym_block_comment, - ACTIONS(2442), 7, + ACTIONS(2675), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122011,7 +123625,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2444), 38, + ACTIONS(2677), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122050,33 +123665,24 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15156] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [14120] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3659), 1, - anon_sym_RBRACE, - STATE(1243), 2, + STATE(1247), 2, sym_line_comment, sym_block_comment, - ACTIONS(3657), 15, - sym__raw_string_literal_start, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(2679), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, anon_sym_LT, - anon_sym_DOT_DOT, anon_sym_COLON_COLON, anon_sym_POUND, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, sym_metavariable, - ACTIONS(3655), 29, + ACTIONS(2681), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122094,27 +123700,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym__, + 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, - 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, - [15218] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [14181] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1244), 2, + STATE(1248), 2, sym_line_comment, sym_block_comment, - ACTIONS(2410), 7, + ACTIONS(2199), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122122,7 +123737,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2412), 38, + ACTIONS(2201), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122161,15 +123777,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15278] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [14242] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1245), 2, + STATE(1249), 2, sym_line_comment, sym_block_comment, - ACTIONS(2446), 7, + ACTIONS(2203), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122177,7 +123793,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2448), 38, + ACTIONS(2205), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122216,15 +123833,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15338] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [14303] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1246), 2, + STATE(1250), 2, sym_line_comment, sym_block_comment, - ACTIONS(2450), 7, + ACTIONS(3559), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122232,7 +123849,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2452), 38, + ACTIONS(3557), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122271,15 +123889,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15398] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [14364] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1247), 2, + STATE(1251), 2, sym_line_comment, sym_block_comment, - ACTIONS(2454), 7, + ACTIONS(2687), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122287,7 +123905,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2456), 38, + ACTIONS(2689), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122326,239 +123945,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15458] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1248), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1396), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1394), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [15518] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1249), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3663), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3661), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [15578] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1250), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1416), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1418), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [15638] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [14425] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - STATE(1251), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3669), 14, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3665), 27, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_else, - [15706] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, STATE(1252), 2, sym_line_comment, sym_block_comment, - ACTIONS(2462), 7, + ACTIONS(2575), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122566,7 +123961,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2464), 38, + ACTIONS(2577), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122605,15 +124001,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15766] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [14486] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, STATE(1253), 2, sym_line_comment, sym_block_comment, - ACTIONS(2466), 7, + ACTIONS(2571), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122621,7 +124017,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2468), 38, + ACTIONS(2573), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122660,15 +124057,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15826] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [14547] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, STATE(1254), 2, sym_line_comment, sym_block_comment, - ACTIONS(2470), 7, + ACTIONS(2239), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122676,7 +124073,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2472), 38, + ACTIONS(2241), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122715,15 +124113,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15886] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [14608] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, STATE(1255), 2, sym_line_comment, sym_block_comment, - ACTIONS(2474), 7, + ACTIONS(2251), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122731,7 +124129,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2476), 38, + ACTIONS(2253), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122770,15 +124169,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15946] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [14669] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, STATE(1256), 2, sym_line_comment, sym_block_comment, - ACTIONS(2478), 7, + ACTIONS(2691), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122786,7 +124185,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2480), 38, + ACTIONS(2693), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122825,70 +124225,127 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16006] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [14730] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, STATE(1257), 2, sym_line_comment, sym_block_comment, - ACTIONS(3679), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3677), 30, + ACTIONS(2695), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2697), 39, + anon_sym_macro, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_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, + [14791] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1258), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3563), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3561), 31, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [16066] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [14852] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1258), 2, + STATE(1259), 2, sym_line_comment, sym_block_comment, - ACTIONS(2482), 7, + ACTIONS(2699), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122896,7 +124353,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2484), 38, + ACTIONS(2701), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122935,15 +124393,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16126] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [14913] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1259), 2, + STATE(1260), 2, sym_line_comment, sym_block_comment, - ACTIONS(2486), 7, + ACTIONS(2703), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122951,7 +124409,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2488), 38, + ACTIONS(2705), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122990,29 +124449,24 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16186] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [14974] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1260), 2, + STATE(1261), 2, sym_line_comment, sym_block_comment, - ACTIONS(3683), 13, + ACTIONS(2707), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_EQ, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_SQUOTE, + anon_sym_POUND, sym_metavariable, - ACTIONS(3681), 32, + ACTIONS(2709), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123033,41 +124487,42 @@ 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, - [16246] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [15035] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1261), 2, + STATE(1262), 2, sym_line_comment, sym_block_comment, - ACTIONS(3687), 13, + ACTIONS(2731), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_EQ, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_SQUOTE, + anon_sym_POUND, sym_metavariable, - ACTIONS(3685), 32, + ACTIONS(2733), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123088,82 +124543,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_enum, anon_sym_fn, - anon_sym_for, anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, anon_sym_unsafe, - anon_sym_where, + anon_sym_use, anon_sym_extern, - anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [16306] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [15096] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1262), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3691), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3689), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [16366] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, STATE(1263), 2, sym_line_comment, sym_block_comment, - ACTIONS(2490), 7, + ACTIONS(2735), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123171,7 +124577,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2492), 38, + ACTIONS(2737), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123210,70 +124617,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16426] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [15157] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1264), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3695), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3693), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [16486] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1265), 2, + STATE(1264), 2, sym_line_comment, sym_block_comment, - ACTIONS(2494), 7, + ACTIONS(2267), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123281,7 +124633,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2496), 38, + ACTIONS(2269), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123320,15 +124673,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16546] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [15218] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1266), 2, + STATE(1265), 2, sym_line_comment, sym_block_comment, - ACTIONS(2498), 7, + ACTIONS(2747), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123336,7 +124689,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2500), 38, + ACTIONS(2749), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123375,15 +124729,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16606] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [15279] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1267), 2, + STATE(1266), 2, sym_line_comment, sym_block_comment, - ACTIONS(2502), 7, + ACTIONS(2759), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123391,7 +124745,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2504), 38, + ACTIONS(2761), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123430,15 +124785,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16666] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [15340] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1268), 2, + STATE(1267), 2, sym_line_comment, sym_block_comment, - ACTIONS(2506), 7, + ACTIONS(2763), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123446,7 +124801,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2508), 38, + ACTIONS(2765), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123485,15 +124841,17 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16726] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [15401] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1269), 2, + ACTIONS(3502), 1, + anon_sym_COLON_COLON, + STATE(1268), 2, sym_line_comment, sym_block_comment, - ACTIONS(1376), 15, + ACTIONS(3359), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -123509,7 +124867,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1374), 30, + ACTIONS(3357), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -123517,6 +124875,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -123536,19 +124895,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [16786] = 5, - ACTIONS(101), 1, + [15464] = 6, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3565), 1, + anon_sym_LBRACE, + STATE(1269), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3373), 16, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3375), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_as, + anon_sym_else, + [15527] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(3502), 1, + anon_sym_COLON_COLON, STATE(1270), 2, sym_line_comment, sym_block_comment, - ACTIONS(2514), 7, + ACTIONS(3379), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3377), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [15590] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1271), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2787), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123556,7 +125028,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2516), 38, + ACTIONS(2789), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123595,15 +125068,72 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16846] = 5, - ACTIONS(101), 1, + [15651] = 6, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3567), 1, + anon_sym_COLON_COLON, + STATE(1272), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3379), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3377), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [15714] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1271), 2, + STATE(1273), 2, sym_line_comment, sym_block_comment, - ACTIONS(2518), 7, + ACTIONS(2791), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123611,7 +125141,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2520), 38, + ACTIONS(2793), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123650,29 +125181,24 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16906] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [15775] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1272), 2, + STATE(1274), 2, sym_line_comment, sym_block_comment, - ACTIONS(3699), 13, + ACTIONS(2799), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_EQ, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_SQUOTE, + anon_sym_POUND, sym_metavariable, - ACTIONS(3697), 32, + ACTIONS(2801), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123693,41 +125219,42 @@ 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, - [16966] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [15836] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1273), 2, + STATE(1275), 2, sym_line_comment, sym_block_comment, - ACTIONS(3703), 13, + ACTIONS(2275), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_EQ, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_SQUOTE, + anon_sym_POUND, sym_metavariable, - ACTIONS(3701), 32, + ACTIONS(2277), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123748,96 +125275,42 @@ 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, - [17026] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [15897] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1274), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3707), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3705), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [17086] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1275), 2, + STATE(1276), 2, sym_line_comment, sym_block_comment, - ACTIONS(3711), 13, + ACTIONS(2803), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_EQ, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_SQUOTE, + anon_sym_POUND, sym_metavariable, - ACTIONS(3709), 32, + ACTIONS(2805), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123858,27 +125331,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_enum, anon_sym_fn, - anon_sym_for, anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, anon_sym_unsafe, - anon_sym_where, + anon_sym_use, anon_sym_extern, - anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [17146] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [15958] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1276), 2, + STATE(1277), 2, sym_line_comment, sym_block_comment, - ACTIONS(2522), 7, + ACTIONS(2807), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123886,7 +125365,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2524), 38, + ACTIONS(2809), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123925,15 +125405,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17206] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [16019] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1277), 2, + STATE(1278), 2, sym_line_comment, sym_block_comment, - ACTIONS(2528), 7, + ACTIONS(2811), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123941,7 +125421,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2530), 38, + ACTIONS(2813), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123980,15 +125461,75 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17266] = 5, - ACTIONS(101), 1, + [16080] = 7, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3571), 1, + anon_sym_LPAREN, + STATE(1472), 1, + sym_arguments, + STATE(1279), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3573), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3569), 29, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [16145] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1278), 2, + ACTIONS(3575), 1, + anon_sym_COLON_COLON, + STATE(1280), 2, sym_line_comment, sym_block_comment, - ACTIONS(3715), 15, + ACTIONS(3379), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -124004,7 +125545,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3713), 30, + ACTIONS(3377), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -124012,6 +125553,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -124031,19 +125573,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [17326] = 5, - ACTIONS(101), 1, + [16208] = 6, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3581), 1, + anon_sym_DASH_GT, + STATE(1281), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3579), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3577), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [16271] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1279), 2, + STATE(1282), 2, sym_line_comment, sym_block_comment, - ACTIONS(2615), 7, + ACTIONS(2835), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124051,7 +125649,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2617), 38, + ACTIONS(2837), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124090,15 +125689,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17386] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [16332] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1280), 2, + STATE(1283), 2, sym_line_comment, sym_block_comment, - ACTIONS(2619), 7, + ACTIONS(2843), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124106,7 +125705,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2621), 38, + ACTIONS(2845), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124145,15 +125745,72 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17446] = 5, - ACTIONS(101), 1, + [16393] = 6, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3583), 1, + anon_sym_COLON_COLON, + STATE(1284), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1307), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1305), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [16456] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1281), 2, + STATE(1285), 2, sym_line_comment, sym_block_comment, - ACTIONS(2623), 7, + ACTIONS(2847), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124161,7 +125818,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2625), 38, + ACTIONS(2849), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124200,15 +125858,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17506] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [16517] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1282), 2, + STATE(1286), 2, sym_line_comment, sym_block_comment, - ACTIONS(2627), 7, + ACTIONS(2527), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124216,7 +125874,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2629), 38, + ACTIONS(2529), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124255,15 +125914,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17566] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [16578] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1283), 2, + STATE(1287), 2, sym_line_comment, sym_block_comment, - ACTIONS(2631), 7, + ACTIONS(2519), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124271,7 +125930,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2633), 38, + ACTIONS(2521), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124310,15 +125970,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17626] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [16639] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1284), 2, + STATE(1288), 2, sym_line_comment, sym_block_comment, - ACTIONS(2637), 7, + ACTIONS(2851), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124326,7 +125986,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2639), 38, + ACTIONS(2853), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124365,15 +126026,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17686] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [16700] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1285), 2, + STATE(1289), 2, sym_line_comment, sym_block_comment, - ACTIONS(2641), 7, + ACTIONS(2859), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124381,7 +126042,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2643), 38, + ACTIONS(2861), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124420,143 +126082,248 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17746] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [16761] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1286), 2, + STATE(1290), 2, sym_line_comment, sym_block_comment, - ACTIONS(3719), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3717), 30, + ACTIONS(2863), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [17806] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2865), 39, + anon_sym_macro, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_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, + [16822] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1287), 2, + STATE(1291), 2, sym_line_comment, sym_block_comment, - ACTIONS(1426), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1424), 30, + ACTIONS(2875), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [17866] = 6, - ACTIONS(101), 1, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2877), 39, + anon_sym_macro, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_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, + [16883] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1292), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2879), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2881), 39, + anon_sym_macro, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_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, + [16944] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3725), 1, + STATE(1293), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2903), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - STATE(1288), 2, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2905), 39, + anon_sym_macro, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_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, + [17005] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1294), 2, sym_line_comment, sym_block_comment, - ACTIONS(3723), 15, - sym__raw_string_literal_start, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(2919), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, anon_sym_LT, - anon_sym_DOT_DOT, anon_sym_COLON_COLON, anon_sym_POUND, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, sym_metavariable, - ACTIONS(3721), 29, + ACTIONS(2921), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124574,27 +126341,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym__, + 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, - 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, - [17928] = 5, - ACTIONS(101), 1, + [17066] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1295), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2279), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2281), 39, + anon_sym_macro, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_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, + [17127] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1289), 2, + STATE(1296), 2, sym_line_comment, sym_block_comment, - ACTIONS(2645), 7, + ACTIONS(2283), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124602,7 +126434,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2647), 38, + ACTIONS(2285), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124641,15 +126474,71 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17988] = 5, - ACTIONS(101), 1, + [17188] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1297), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2507), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2509), 39, + anon_sym_macro, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_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, + [17249] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1290), 2, + STATE(1298), 2, sym_line_comment, sym_block_comment, - ACTIONS(2653), 7, + ACTIONS(2775), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124657,7 +126546,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2655), 38, + ACTIONS(2777), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124696,21 +126586,102 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18048] = 5, - ACTIONS(101), 1, + [17310] = 27, + ACTIONS(31), 1, + anon_sym_LT, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1403), 1, + anon_sym_extern, + ACTIONS(3145), 1, + anon_sym_QMARK, + ACTIONS(3157), 1, + anon_sym_fn, + ACTIONS(3585), 1, + sym_identifier, + ACTIONS(3587), 1, + anon_sym_LPAREN, + ACTIONS(3591), 1, + anon_sym_COLON_COLON, + ACTIONS(3593), 1, + anon_sym_default, + ACTIONS(3595), 1, + anon_sym_for, + ACTIONS(3597), 1, + anon_sym_union, + ACTIONS(3601), 1, + sym_metavariable, + STATE(1560), 1, + sym_scoped_type_identifier, + STATE(1629), 1, + sym_generic_type, + STATE(1661), 1, + sym_for_lifetimes, + STATE(2255), 1, + aux_sym_function_modifiers_repeat1, + STATE(2359), 1, + sym_extern_modifier, + STATE(3567), 1, + sym_function_modifiers, + STATE(3602), 1, + sym_scoped_identifier, + STATE(3619), 1, + sym_generic_type_with_turbofish, + STATE(3625), 1, + sym_bracketed_type, + STATE(1299), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1389), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3599), 3, + sym_self, + sym_super, + sym_crate, + STATE(1808), 3, + sym_removed_trait_bound, + sym_function_type, + sym_tuple_type, + ACTIONS(3589), 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, + [17415] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1291), 2, + ACTIONS(3603), 1, + anon_sym_LBRACE, + STATE(1300), 2, sym_line_comment, sym_block_comment, - ACTIONS(3729), 15, + ACTIONS(3353), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, + anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -124720,14 +126691,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3727), 30, + ACTIONS(3355), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -124747,129 +126718,466 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, + anon_sym_COLON_COLON, anon_sym_as, anon_sym_else, - [18108] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [17478] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1292), 2, + STATE(1301), 2, sym_line_comment, sym_block_comment, - ACTIONS(3733), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3731), 30, + ACTIONS(2923), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [18168] = 5, - ACTIONS(101), 1, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2925), 39, + anon_sym_macro, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_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, + [17539] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1302), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2927), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2929), 39, + anon_sym_macro, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_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, + [17600] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1293), 2, + STATE(1303), 2, sym_line_comment, sym_block_comment, - ACTIONS(3289), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, + ACTIONS(2723), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3287), 30, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2725), 39, + anon_sym_macro, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_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, + [17661] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1304), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2579), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [18228] = 5, - ACTIONS(101), 1, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2581), 39, + anon_sym_macro, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_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, + [17722] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1305), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2387), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2389), 39, + anon_sym_macro, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_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, + [17783] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1294), 2, + STATE(1306), 2, sym_line_comment, sym_block_comment, - ACTIONS(3737), 15, + ACTIONS(2495), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2497), 39, + anon_sym_macro, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_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, + [17844] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1307), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2287), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2289), 39, + anon_sym_macro, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_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, + [17905] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1308), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2295), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2297), 39, + anon_sym_macro, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_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, + [17966] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1309), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3607), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -124885,7 +127193,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3735), 30, + ACTIONS(3605), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -124893,6 +127201,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -124912,19 +127221,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [18288] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [18027] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1295), 2, + STATE(1310), 2, sym_line_comment, sym_block_comment, - ACTIONS(3741), 15, + ACTIONS(3611), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -124940,7 +127249,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3739), 30, + ACTIONS(3609), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -124948,6 +127257,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -124967,294 +127277,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [18348] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [18088] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1296), 2, + STATE(1311), 2, sym_line_comment, sym_block_comment, - ACTIONS(3285), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3283), 30, + ACTIONS(2499), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [18408] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1297), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3305), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3303), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [18468] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2501), 39, + anon_sym_macro, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_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, + [18149] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1298), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3745), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3743), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [18528] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1299), 2, + STATE(1312), 2, sym_line_comment, sym_block_comment, - ACTIONS(3749), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3747), 30, + ACTIONS(2011), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [18588] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1300), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3753), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3751), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [18648] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2013), 39, + anon_sym_macro, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_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, + [18210] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1301), 2, + STATE(1313), 2, sym_line_comment, sym_block_comment, - ACTIONS(2406), 7, + ACTIONS(2003), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125262,7 +127409,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2408), 38, + ACTIONS(2005), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125301,113 +127449,24 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18708] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [18271] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1302), 2, + STATE(1314), 2, sym_line_comment, sym_block_comment, - ACTIONS(1242), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1240), 30, + ACTIONS(2359), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [18768] = 21, - ACTIONS(29), 1, anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(1614), 1, - anon_sym_DASH, - ACTIONS(1638), 1, - aux_sym_string_literal_token1, - ACTIONS(1646), 1, - sym__raw_string_literal_start, - ACTIONS(3233), 1, - anon_sym_if, - ACTIONS(3599), 1, anon_sym_COLON_COLON, - ACTIONS(3755), 1, - sym_identifier, - ACTIONS(3761), 1, + anon_sym_POUND, sym_metavariable, - STATE(2696), 1, - sym_scoped_identifier, - STATE(2971), 1, - sym__literal_pattern, - STATE(3465), 1, - sym_bracketed_type, - STATE(3478), 1, - sym_generic_type_with_turbofish, - ACTIONS(1640), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3231), 2, - anon_sym_EQ_GT, - anon_sym_PIPE, - STATE(1303), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1636), 3, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3759), 3, - sym_self, - sym_super, - sym_crate, - STATE(2299), 4, - sym_negative_literal, - sym_string_literal, - sym_raw_string_literal, - sym_boolean_literal, - ACTIONS(3757), 19, + ACTIONS(2361), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125425,72 +127484,92 @@ 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, - [18860] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [18332] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1304), 2, + STATE(1315), 2, sym_line_comment, sym_block_comment, - ACTIONS(3765), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3763), 30, + ACTIONS(2491), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [18920] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2493), 39, + anon_sym_macro, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_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, + [18393] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1305), 2, + STATE(1316), 2, sym_line_comment, sym_block_comment, - ACTIONS(3769), 15, + ACTIONS(1563), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -125506,7 +127585,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3767), 30, + ACTIONS(1565), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -125514,6 +127593,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -125533,19 +127614,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [18980] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [18454] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1306), 2, + STATE(1317), 2, sym_line_comment, sym_block_comment, - ACTIONS(2657), 7, + ACTIONS(2891), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125553,7 +127633,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2659), 38, + ACTIONS(2893), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125592,15 +127673,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19040] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [18515] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1307), 2, + STATE(1318), 2, sym_line_comment, sym_block_comment, - ACTIONS(2661), 7, + ACTIONS(2871), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125608,7 +127689,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2663), 38, + ACTIONS(2873), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125647,235 +127729,239 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19100] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [18576] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1308), 2, + STATE(1319), 2, sym_line_comment, sym_block_comment, - ACTIONS(3773), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3771), 30, + ACTIONS(2867), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [19160] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2869), 39, + anon_sym_macro, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_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, + [18637] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1309), 2, + STATE(1320), 2, sym_line_comment, sym_block_comment, - ACTIONS(3777), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3775), 30, + ACTIONS(1995), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [19220] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1997), 39, + anon_sym_macro, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_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, + [18698] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1310), 2, + STATE(1321), 2, sym_line_comment, sym_block_comment, - ACTIONS(1416), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1418), 30, + ACTIONS(2487), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [19280] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2489), 39, + anon_sym_macro, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_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, + [18759] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1311), 2, + STATE(1322), 2, sym_line_comment, sym_block_comment, - ACTIONS(989), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(991), 30, + ACTIONS(2371), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [19340] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2373), 39, + anon_sym_macro, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_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, + [18820] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1312), 2, + STATE(1323), 2, sym_line_comment, sym_block_comment, - ACTIONS(2665), 7, + ACTIONS(1991), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125883,7 +127969,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2667), 38, + ACTIONS(1993), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125922,70 +128009,71 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19400] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [18881] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1313), 2, + STATE(1324), 2, sym_line_comment, sym_block_comment, - ACTIONS(767), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(769), 30, + ACTIONS(1979), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [19460] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1981), 39, + anon_sym_macro, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_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, + [18942] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1314), 2, + STATE(1325), 2, sym_line_comment, sym_block_comment, - ACTIONS(2669), 7, + ACTIONS(1971), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125993,7 +128081,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2671), 38, + ACTIONS(1973), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126032,15 +128121,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19520] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [19003] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1315), 2, + STATE(1326), 2, sym_line_comment, sym_block_comment, - ACTIONS(2673), 7, + ACTIONS(1959), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126048,7 +128137,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2675), 38, + ACTIONS(1961), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126087,15 +128177,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19580] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [19064] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1316), 2, + STATE(1327), 2, sym_line_comment, sym_block_comment, - ACTIONS(2677), 7, + ACTIONS(1951), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126103,7 +128193,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2679), 38, + ACTIONS(1953), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126142,15 +128233,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19640] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [19125] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1317), 2, + STATE(1328), 2, sym_line_comment, sym_block_comment, - ACTIONS(2681), 7, + ACTIONS(2795), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126158,7 +128249,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2683), 38, + ACTIONS(2797), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126197,15 +128289,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19700] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [19186] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1318), 2, + STATE(1329), 2, sym_line_comment, sym_block_comment, - ACTIONS(2685), 7, + ACTIONS(2475), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126213,7 +128305,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2687), 38, + ACTIONS(2477), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126252,411 +128345,24 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19760] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [19247] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1319), 2, + STATE(1330), 2, sym_line_comment, sym_block_comment, - ACTIONS(1352), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1350), 30, + ACTIONS(1943), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [19820] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1320), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3781), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3779), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [19880] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1321), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1356), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1354), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [19940] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1322), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3785), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3783), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [20000] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - STATE(1323), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3789), 14, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3787), 28, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [20066] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1324), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3793), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3791), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [20126] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1325), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3797), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3795), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [20186] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1326), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2689), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, anon_sym_LT, anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2691), 38, + ACTIONS(1945), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126695,70 +128401,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20246] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [19308] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1327), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3801), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3799), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [20306] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1328), 2, + STATE(1331), 2, sym_line_comment, sym_block_comment, - ACTIONS(2693), 7, + ACTIONS(1939), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126766,7 +128417,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2695), 38, + ACTIONS(1941), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126805,15 +128457,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20366] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [19369] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1329), 2, + STATE(1332), 2, sym_line_comment, sym_block_comment, - ACTIONS(2697), 7, + ACTIONS(2335), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126821,7 +128473,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2699), 38, + ACTIONS(2337), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126860,15 +128513,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20426] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [19430] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1330), 2, + STATE(1333), 2, sym_line_comment, sym_block_comment, - ACTIONS(2701), 7, + ACTIONS(1935), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126876,7 +128529,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2703), 38, + ACTIONS(1937), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126915,15 +128569,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20486] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [19491] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1331), 2, + STATE(1334), 2, sym_line_comment, sym_block_comment, - ACTIONS(2705), 7, + ACTIONS(2783), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126931,7 +128585,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2707), 38, + ACTIONS(2785), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126970,15 +128625,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20546] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [19552] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1332), 2, + STATE(1335), 2, sym_line_comment, sym_block_comment, - ACTIONS(2709), 7, + ACTIONS(1927), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126986,7 +128641,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2711), 38, + ACTIONS(1929), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127025,23 +128681,123 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20606] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [19613] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1333), 2, + STATE(1336), 2, sym_line_comment, sym_block_comment, - ACTIONS(2713), 7, + ACTIONS(3615), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3613), 31, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DASH_GT, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [19674] = 27, + ACTIONS(31), 1, anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1397), 1, + anon_sym_for, + ACTIONS(1403), 1, + anon_sym_extern, + ACTIONS(3145), 1, + anon_sym_QMARK, + ACTIONS(3157), 1, + anon_sym_fn, + ACTIONS(3587), 1, + anon_sym_LPAREN, + ACTIONS(3591), 1, anon_sym_COLON_COLON, - anon_sym_POUND, + ACTIONS(3593), 1, + anon_sym_default, + ACTIONS(3597), 1, + anon_sym_union, + ACTIONS(3601), 1, sym_metavariable, - ACTIONS(2715), 38, + ACTIONS(3617), 1, + sym_identifier, + STATE(1561), 1, + sym_scoped_type_identifier, + STATE(1661), 1, + sym_for_lifetimes, + STATE(1666), 1, + sym_generic_type, + STATE(2255), 1, + aux_sym_function_modifiers_repeat1, + STATE(2359), 1, + sym_extern_modifier, + STATE(3567), 1, + sym_function_modifiers, + STATE(3602), 1, + sym_scoped_identifier, + STATE(3619), 1, + sym_generic_type_with_turbofish, + STATE(3625), 1, + sym_bracketed_type, + STATE(1337), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1389), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3599), 3, + sym_self, + sym_super, + sym_crate, + STATE(1732), 3, + sym_removed_trait_bound, + sym_function_type, + sym_tuple_type, + ACTIONS(3589), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127059,36 +128815,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_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, - [20666] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [19779] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1334), 2, + STATE(1338), 2, sym_line_comment, sym_block_comment, - ACTIONS(2717), 7, + ACTIONS(1919), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127096,7 +128831,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2719), 38, + ACTIONS(1921), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127135,15 +128871,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20726] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [19840] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1335), 2, + STATE(1339), 2, sym_line_comment, sym_block_comment, - ACTIONS(2721), 7, + ACTIONS(2471), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127151,7 +128887,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2723), 38, + ACTIONS(2473), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127190,128 +128927,93 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20786] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1336), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1364), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, + [19901] = 27, + ACTIONS(31), 1, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1362), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [20846] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(1403), 1, + anon_sym_extern, + ACTIONS(3181), 1, anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - STATE(1337), 2, + ACTIONS(3193), 1, + anon_sym_fn, + ACTIONS(3466), 1, + anon_sym_LPAREN, + ACTIONS(3470), 1, + anon_sym_COLON_COLON, + ACTIONS(3472), 1, + anon_sym_default, + ACTIONS(3474), 1, + anon_sym_union, + ACTIONS(3478), 1, + sym_metavariable, + ACTIONS(3619), 1, + sym_identifier, + ACTIONS(3621), 1, + anon_sym_for, + STATE(1056), 1, + sym_scoped_type_identifier, + STATE(1199), 1, + sym_generic_type, + STATE(1668), 1, + sym_for_lifetimes, + STATE(2255), 1, + aux_sym_function_modifiers_repeat1, + STATE(2359), 1, + sym_extern_modifier, + STATE(3424), 1, + sym_function_modifiers, + STATE(3577), 1, + sym_scoped_identifier, + STATE(3611), 1, + sym_generic_type_with_turbofish, + STATE(3621), 1, + sym_bracketed_type, + STATE(1340), 2, sym_line_comment, sym_block_comment, - ACTIONS(3805), 14, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3803), 28, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [20912] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(1389), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3476), 3, + sym_self, + sym_super, + sym_crate, + STATE(1499), 3, + sym_removed_trait_bound, + sym_function_type, + sym_tuple_type, + ACTIONS(3468), 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, + [20006] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1338), 2, + STATE(1341), 2, sym_line_comment, sym_block_comment, - ACTIONS(2791), 7, + ACTIONS(1915), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127319,7 +129021,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2793), 38, + ACTIONS(1917), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127358,15 +129061,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20972] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [20067] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1339), 2, + STATE(1342), 2, sym_line_comment, sym_block_comment, - ACTIONS(2799), 7, + ACTIONS(1907), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127374,7 +129077,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2801), 38, + ACTIONS(1909), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127413,15 +129117,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21032] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [20128] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1340), 2, + STATE(1343), 2, sym_line_comment, sym_block_comment, - ACTIONS(2803), 7, + ACTIONS(1903), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127429,7 +129133,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2805), 38, + ACTIONS(1905), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127468,15 +129173,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21092] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [20189] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1341), 2, + STATE(1344), 2, sym_line_comment, sym_block_comment, - ACTIONS(2807), 7, + ACTIONS(1899), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127484,7 +129189,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2809), 38, + ACTIONS(1901), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127523,15 +129229,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21152] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [20250] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1342), 2, + STATE(1345), 2, sym_line_comment, sym_block_comment, - ACTIONS(2811), 7, + ACTIONS(1895), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127539,7 +129245,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2813), 38, + ACTIONS(1897), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127578,15 +129285,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21212] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [20311] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1343), 2, + STATE(1346), 2, sym_line_comment, sym_block_comment, - ACTIONS(2815), 7, + ACTIONS(2403), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127594,7 +129301,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2817), 38, + ACTIONS(2405), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127633,15 +129341,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21272] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [20372] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1344), 2, + STATE(1347), 2, sym_line_comment, sym_block_comment, - ACTIONS(2819), 7, + ACTIONS(2407), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127649,7 +129357,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2821), 38, + ACTIONS(2409), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127688,15 +129397,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21332] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [20433] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1345), 2, + STATE(1348), 2, sym_line_comment, sym_block_comment, - ACTIONS(2823), 7, + ACTIONS(1891), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127704,7 +129413,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2825), 38, + ACTIONS(1893), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127743,15 +129453,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21392] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [20494] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1346), 2, + STATE(1349), 2, sym_line_comment, sym_block_comment, - ACTIONS(2827), 7, + ACTIONS(1883), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127759,7 +129469,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2829), 38, + ACTIONS(1885), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127798,15 +129509,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21452] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [20555] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1347), 2, + STATE(1350), 2, sym_line_comment, sym_block_comment, - ACTIONS(2831), 7, + ACTIONS(1859), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127814,7 +129525,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2833), 38, + ACTIONS(1861), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127853,15 +129565,90 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21512] = 5, - ACTIONS(101), 1, + [20616] = 24, + ACTIONS(31), 1, + anon_sym_LT, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1579), 1, + anon_sym_LBRACK, + ACTIONS(3414), 1, + sym_identifier, + ACTIONS(3418), 1, + anon_sym_LPAREN, + ACTIONS(3420), 1, + anon_sym_STAR, + ACTIONS(3424), 1, + anon_sym_AMP, + ACTIONS(3426), 1, + anon_sym_COLON_COLON, + ACTIONS(3428), 1, + anon_sym_SQUOTE, + ACTIONS(3432), 1, + anon_sym_for, + ACTIONS(3436), 1, + sym_metavariable, + STATE(2568), 1, + sym_scoped_type_identifier, + STATE(2712), 1, + sym_where_predicate, + STATE(3035), 1, + sym_generic_type, + STATE(3426), 1, + sym_generic_type_with_turbofish, + STATE(3442), 1, + sym_scoped_identifier, + STATE(3563), 1, + sym_bracketed_type, + ACTIONS(3430), 2, + anon_sym_default, + anon_sym_union, + ACTIONS(3623), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(1351), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3434), 3, + sym_self, + sym_super, + sym_crate, + STATE(3154), 6, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_array_type, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(3422), 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, + [20715] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1348), 2, + STATE(1352), 2, sym_line_comment, sym_block_comment, - ACTIONS(2835), 7, + ACTIONS(1855), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127869,7 +129656,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2837), 38, + ACTIONS(1857), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127908,15 +129696,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21572] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [20776] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1349), 2, + STATE(1353), 2, sym_line_comment, sym_block_comment, - ACTIONS(2839), 7, + ACTIONS(1851), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127924,7 +129712,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2841), 38, + ACTIONS(1853), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127963,15 +129752,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21632] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [20837] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1350), 2, + STATE(1354), 2, sym_line_comment, sym_block_comment, - ACTIONS(2843), 7, + ACTIONS(1843), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127979,7 +129768,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2845), 38, + ACTIONS(1845), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128018,15 +129808,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21692] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [20898] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1351), 2, + STATE(1355), 2, sym_line_comment, sym_block_comment, - ACTIONS(2847), 7, + ACTIONS(2755), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128034,7 +129824,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2849), 38, + ACTIONS(2757), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128073,15 +129864,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21752] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [20959] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1352), 2, + STATE(1356), 2, sym_line_comment, sym_block_comment, - ACTIONS(2851), 7, + ACTIONS(2751), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128089,7 +129880,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2853), 38, + ACTIONS(2753), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128128,73 +129920,71 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21812] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [21020] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - STATE(1353), 2, + STATE(1357), 2, sym_line_comment, sym_block_comment, - ACTIONS(3809), 14, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3807), 28, + ACTIONS(1839), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [21878] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1841), 39, + anon_sym_macro, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_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, + [21081] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1354), 2, + STATE(1358), 2, sym_line_comment, sym_block_comment, - ACTIONS(2855), 7, + ACTIONS(1831), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128202,7 +129992,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2857), 38, + ACTIONS(1833), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128241,15 +130032,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21938] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [21142] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1355), 2, + STATE(1359), 2, sym_line_comment, sym_block_comment, - ACTIONS(2859), 7, + ACTIONS(2743), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128257,7 +130048,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2861), 38, + ACTIONS(2745), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128296,15 +130088,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21998] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [21203] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1356), 2, + STATE(1360), 2, sym_line_comment, sym_block_comment, - ACTIONS(2863), 7, + ACTIONS(2031), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128312,7 +130104,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2865), 38, + ACTIONS(2033), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128351,15 +130144,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22058] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [21264] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1357), 2, + STATE(1361), 2, sym_line_comment, sym_block_comment, - ACTIONS(2867), 7, + ACTIONS(2071), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128367,7 +130160,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2869), 38, + ACTIONS(2073), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128406,15 +130200,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22118] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [21325] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1358), 2, + STATE(1362), 2, sym_line_comment, sym_block_comment, - ACTIONS(2871), 7, + ACTIONS(2451), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128422,7 +130216,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2873), 38, + ACTIONS(2453), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128461,15 +130256,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22178] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [21386] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1359), 2, + STATE(1363), 2, sym_line_comment, sym_block_comment, - ACTIONS(2875), 7, + ACTIONS(2419), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128477,7 +130272,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2877), 38, + ACTIONS(2421), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128516,15 +130312,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22238] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [21447] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1360), 2, + STATE(1364), 2, sym_line_comment, sym_block_comment, - ACTIONS(2879), 7, + ACTIONS(2447), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128532,7 +130328,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2881), 38, + ACTIONS(2449), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128571,15 +130368,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22298] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [21508] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1361), 2, + STATE(1365), 2, sym_line_comment, sym_block_comment, - ACTIONS(2883), 7, + ACTIONS(2439), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128587,7 +130384,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2885), 38, + ACTIONS(2441), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128626,15 +130424,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22358] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [21569] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1362), 2, + STATE(1366), 2, sym_line_comment, sym_block_comment, - ACTIONS(2887), 7, + ACTIONS(2227), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128642,7 +130440,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2889), 38, + ACTIONS(2229), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128681,15 +130480,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22418] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [21630] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1363), 2, + STATE(1367), 2, sym_line_comment, sym_block_comment, - ACTIONS(2891), 7, + ACTIONS(2235), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128697,7 +130496,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2893), 38, + ACTIONS(2237), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128736,15 +130536,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22478] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [21691] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1364), 2, + STATE(1368), 2, sym_line_comment, sym_block_comment, - ACTIONS(2895), 7, + ACTIONS(2247), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128752,7 +130552,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2897), 38, + ACTIONS(2249), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128791,29 +130592,24 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22538] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [21752] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1365), 2, + STATE(1369), 2, sym_line_comment, sym_block_comment, - ACTIONS(3813), 13, + ACTIONS(2263), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_EQ, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_SQUOTE, + anon_sym_POUND, sym_metavariable, - ACTIONS(3811), 32, + ACTIONS(2265), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128834,41 +130630,98 @@ 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, - [22598] = 5, - ACTIONS(101), 1, + [21813] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1370), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2587), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2589), 39, + anon_sym_macro, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_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, + [21874] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1366), 2, + STATE(1371), 2, sym_line_comment, sym_block_comment, - ACTIONS(3817), 13, + ACTIONS(2307), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_EQ, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_SQUOTE, + anon_sym_POUND, sym_metavariable, - ACTIONS(3815), 32, + ACTIONS(2309), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128889,41 +130742,42 @@ 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, - [22658] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [21935] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1367), 2, + STATE(1372), 2, sym_line_comment, sym_block_comment, - ACTIONS(3821), 13, + ACTIONS(2427), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_EQ, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_SQUOTE, + anon_sym_POUND, sym_metavariable, - ACTIONS(3819), 32, + ACTIONS(2429), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128944,27 +130798,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_enum, anon_sym_fn, - anon_sym_for, anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, anon_sym_unsafe, - anon_sym_where, + anon_sym_use, anon_sym_extern, - anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [22718] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [21996] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1368), 2, + STATE(1373), 2, sym_line_comment, sym_block_comment, - ACTIONS(2899), 7, + ACTIONS(2431), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128972,7 +130832,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2901), 38, + ACTIONS(2433), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129011,70 +130872,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22778] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [22057] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1369), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3825), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3823), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [22838] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1370), 2, + STATE(1374), 2, sym_line_comment, sym_block_comment, - ACTIONS(2903), 7, + ACTIONS(2339), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129082,7 +130888,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2905), 38, + ACTIONS(2341), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129121,15 +130928,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22898] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [22118] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1371), 2, + STATE(1375), 2, sym_line_comment, sym_block_comment, - ACTIONS(2907), 7, + ACTIONS(2347), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129137,7 +130944,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2909), 38, + ACTIONS(2349), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129176,15 +130984,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22958] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [22179] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1372), 2, + STATE(1376), 2, sym_line_comment, sym_block_comment, - ACTIONS(2911), 7, + ACTIONS(1827), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129192,7 +131000,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2913), 38, + ACTIONS(1829), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129231,15 +131040,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23018] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [22240] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1373), 2, + STATE(1377), 2, sym_line_comment, sym_block_comment, - ACTIONS(2270), 7, + ACTIONS(2555), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129247,7 +131056,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2272), 38, + ACTIONS(2557), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129286,15 +131096,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23078] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [22301] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1374), 2, + STATE(1378), 2, sym_line_comment, sym_block_comment, - ACTIONS(2649), 7, + ACTIONS(2411), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129302,7 +131112,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2651), 38, + ACTIONS(2413), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129341,181 +131152,71 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23138] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [22362] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1375), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1234), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1232), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [23198] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1376), 2, + STATE(1379), 2, sym_line_comment, sym_block_comment, - ACTIONS(1380), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1378), 30, + ACTIONS(2463), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [23258] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3827), 2, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - STATE(1377), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3545), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3543), 28, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_as, - anon_sym_else, - [23320] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2465), 39, + anon_sym_macro, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_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, + [22423] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1378), 2, + STATE(1380), 2, sym_line_comment, sym_block_comment, - ACTIONS(1666), 7, + ACTIONS(2559), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129523,7 +131224,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1668), 38, + ACTIONS(2561), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129562,15 +131264,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23380] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [22484] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1379), 2, + STATE(1381), 2, sym_line_comment, sym_block_comment, - ACTIONS(1670), 7, + ACTIONS(2583), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129578,7 +131280,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1672), 38, + ACTIONS(2585), 39, + anon_sym_macro, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129617,15 +131320,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23440] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [22545] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1380), 2, + STATE(1382), 2, sym_line_comment, sym_block_comment, - ACTIONS(771), 15, + ACTIONS(3627), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -129641,7 +131344,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(773), 30, + ACTIONS(3625), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -129649,6 +131352,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -129668,19 +131372,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [23500] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [22605] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1381), 2, + STATE(1383), 2, sym_line_comment, sym_block_comment, - ACTIONS(1372), 15, + ACTIONS(1245), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -129696,7 +131399,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1370), 30, + ACTIONS(1243), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -129704,6 +131407,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -129723,19 +131427,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [23560] = 5, - ACTIONS(101), 1, + [22665] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1384), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3631), 13, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + sym_metavariable, + ACTIONS(3629), 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, + [22725] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1382), 2, + STATE(1385), 2, sym_line_comment, sym_block_comment, - ACTIONS(3831), 15, + ACTIONS(3635), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -129751,7 +131509,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3829), 30, + ACTIONS(3633), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -129759,6 +131517,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -129778,19 +131537,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [23620] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [22785] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1383), 2, + STATE(1386), 2, sym_line_comment, sym_block_comment, - ACTIONS(3835), 15, + ACTIONS(3639), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -129806,7 +131564,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3833), 30, + ACTIONS(3637), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -129814,6 +131572,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -129833,19 +131592,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [23680] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [22845] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1384), 2, + STATE(1387), 2, sym_line_comment, sym_block_comment, - ACTIONS(3839), 15, + ACTIONS(3643), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -129861,7 +131619,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3837), 30, + ACTIONS(3641), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -129869,6 +131627,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -129888,19 +131647,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [23740] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [22905] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1385), 2, + STATE(1388), 2, sym_line_comment, sym_block_comment, - ACTIONS(3843), 15, + ACTIONS(1307), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -129916,7 +131674,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3841), 30, + ACTIONS(1305), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -129924,6 +131682,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -129943,19 +131702,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [23800] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [22965] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1386), 2, + STATE(1389), 2, sym_line_comment, sym_block_comment, - ACTIONS(3847), 15, + ACTIONS(3647), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -129971,7 +131729,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3845), 30, + ACTIONS(3645), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -129979,6 +131737,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -129998,19 +131757,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [23860] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [23025] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1387), 2, + STATE(1390), 2, sym_line_comment, sym_block_comment, - ACTIONS(1444), 15, + ACTIONS(960), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -130026,7 +131784,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1442), 30, + ACTIONS(962), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -130034,6 +131792,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -130053,19 +131812,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [23920] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [23085] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1388), 2, + STATE(1391), 2, sym_line_comment, sym_block_comment, - ACTIONS(3851), 15, + ACTIONS(1339), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -130081,7 +131839,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3849), 30, + ACTIONS(1337), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -130089,6 +131847,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -130108,19 +131867,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [23980] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [23145] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1389), 2, + STATE(1392), 2, sym_line_comment, sym_block_comment, - ACTIONS(3855), 15, + ACTIONS(3651), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -130136,7 +131894,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3853), 30, + ACTIONS(3649), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -130144,6 +131902,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -130163,74 +131922,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24040] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [23205] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1390), 2, + STATE(1393), 2, sym_line_comment, sym_block_comment, - ACTIONS(1758), 7, + ACTIONS(3655), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3653), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1760), 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, - [24100] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [23265] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1391), 2, + STATE(1394), 2, sym_line_comment, sym_block_comment, - ACTIONS(3859), 15, + ACTIONS(1351), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -130246,7 +132004,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3857), 30, + ACTIONS(1349), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -130254,6 +132012,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -130273,78 +132032,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24160] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [23325] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1392), 2, + STATE(1395), 2, sym_line_comment, sym_block_comment, - ACTIONS(1674), 7, + ACTIONS(3659), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3657), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - 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, - [24220] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [23385] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3247), 1, - anon_sym_BANG, - ACTIONS(3861), 1, - anon_sym_COLON_COLON, - STATE(1393), 2, + STATE(1396), 2, sym_line_comment, sym_block_comment, - ACTIONS(1416), 15, + ACTIONS(3663), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -130360,13 +132114,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1418), 28, + ACTIONS(3661), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -130386,81 +132142,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, + anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24284] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [23445] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1394), 2, + STATE(1397), 2, sym_line_comment, sym_block_comment, - ACTIONS(1678), 7, + ACTIONS(3667), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3665), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1680), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [24344] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [23505] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1395), 2, + STATE(1398), 2, sym_line_comment, sym_block_comment, - ACTIONS(1682), 7, + ACTIONS(3671), 13, anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_EQ, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_POUND, + anon_sym_SQUOTE, sym_metavariable, - ACTIONS(1684), 38, + ACTIONS(3669), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130481,41 +132243,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, - anon_sym_enum, anon_sym_fn, + anon_sym_for, anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, anon_sym_unsafe, - anon_sym_use, + anon_sym_where, anon_sym_extern, + anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [24404] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [23565] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1396), 2, + STATE(1399), 2, sym_line_comment, sym_block_comment, - ACTIONS(1686), 7, + ACTIONS(3675), 13, anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_EQ, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_POUND, + anon_sym_SQUOTE, sym_metavariable, - ACTIONS(1688), 38, + ACTIONS(3673), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130536,96 +132298,96 @@ 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_where, anon_sym_extern, + anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [24464] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [23625] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1397), 2, + STATE(1400), 2, sym_line_comment, sym_block_comment, - ACTIONS(1690), 7, + ACTIONS(3679), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3677), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - 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, - [24524] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [23685] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1398), 2, + STATE(1401), 2, sym_line_comment, sym_block_comment, - ACTIONS(1694), 7, + ACTIONS(3683), 13, anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_EQ, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_POUND, + anon_sym_SQUOTE, sym_metavariable, - ACTIONS(1696), 38, + ACTIONS(3681), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130646,151 +132408,154 @@ 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_where, anon_sym_extern, + anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [24584] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [23745] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1399), 2, + STATE(1402), 2, sym_line_comment, sym_block_comment, - ACTIONS(1698), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1700), 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, - [24644] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(1251), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1249), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [23805] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1400), 2, + ACTIONS(3687), 1, + anon_sym_LBRACK, + ACTIONS(3691), 1, + anon_sym_QMARK, + ACTIONS(3693), 1, + anon_sym_DOT, + STATE(1403), 2, sym_line_comment, sym_block_comment, - ACTIONS(1702), 7, + ACTIONS(3689), 14, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(3685), 28, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1704), 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, - [24704] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_COMMA, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [23871] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1401), 2, + STATE(1404), 2, sym_line_comment, sym_block_comment, - ACTIONS(1706), 7, + ACTIONS(3697), 13, anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_EQ, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_POUND, + anon_sym_SQUOTE, sym_metavariable, - ACTIONS(1708), 38, + ACTIONS(3695), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130811,638 +132576,360 @@ 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_where, anon_sym_extern, + anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [24764] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [23931] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1402), 2, + ACTIONS(3687), 1, + anon_sym_LBRACK, + ACTIONS(3691), 1, + anon_sym_QMARK, + ACTIONS(3693), 1, + anon_sym_DOT, + STATE(1405), 2, sym_line_comment, sym_block_comment, - ACTIONS(1710), 7, + ACTIONS(3701), 14, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(3699), 28, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1712), 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, - [24824] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_COMMA, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [23997] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1403), 2, + STATE(1406), 2, sym_line_comment, sym_block_comment, - ACTIONS(1714), 7, + ACTIONS(1343), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1341), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1716), 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, - [24884] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [24057] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1404), 2, + STATE(1407), 2, sym_line_comment, sym_block_comment, - ACTIONS(1718), 7, + ACTIONS(3705), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3703), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1720), 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, - [24944] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [24117] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1405), 2, + STATE(1408), 2, sym_line_comment, sym_block_comment, - ACTIONS(1722), 7, + ACTIONS(994), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(996), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1724), 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, - [25004] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [24177] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1406), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1726), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1728), 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, - [25064] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1407), 2, + STATE(1409), 2, sym_line_comment, sym_block_comment, - ACTIONS(1730), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + ACTIONS(3709), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1732), 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, - [25124] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1408), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1734), 7, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3707), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1736), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [25184] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [24237] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1409), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1738), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1740), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [25244] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, STATE(1410), 2, sym_line_comment, sym_block_comment, - ACTIONS(1742), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + ACTIONS(3709), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1744), 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, - [25304] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1411), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1746), 7, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3707), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1748), 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, - [25364] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [24297] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1412), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1750), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1752), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [25424] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1413), 2, + STATE(1411), 2, sym_line_comment, sym_block_comment, - ACTIONS(1392), 15, + ACTIONS(964), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -131458,7 +132945,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1390), 30, + ACTIONS(966), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -131466,6 +132953,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -131485,239 +132973,348 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25484] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [24357] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1414), 2, + STATE(1412), 2, sym_line_comment, sym_block_comment, - ACTIONS(1754), 7, + ACTIONS(1311), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1309), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1756), 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, - [25544] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [24417] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1415), 2, + STATE(1413), 2, sym_line_comment, sym_block_comment, - ACTIONS(1766), 7, + ACTIONS(3713), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3711), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [24477] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1414), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3717), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1768), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [25604] = 5, - ACTIONS(101), 1, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3715), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [24537] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1415), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3721), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3719), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [24597] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, STATE(1416), 2, sym_line_comment, sym_block_comment, - ACTIONS(1770), 7, + ACTIONS(1237), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1235), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1772), 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, - [25664] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [24657] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, STATE(1417), 2, sym_line_comment, sym_block_comment, - ACTIONS(1774), 7, + ACTIONS(926), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(928), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1776), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [25724] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [24717] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, STATE(1418), 2, sym_line_comment, sym_block_comment, - ACTIONS(1246), 15, + ACTIONS(1044), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -131733,7 +133330,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1244), 30, + ACTIONS(1046), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -131741,6 +133338,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -131760,22 +133358,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25784] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [24777] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3863), 2, - anon_sym_LBRACE, + ACTIONS(3325), 1, + anon_sym_BANG, + ACTIONS(3723), 1, anon_sym_COLON_COLON, STATE(1419), 2, sym_line_comment, sym_block_comment, - ACTIONS(3545), 15, + ACTIONS(1307), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -131791,13 +133389,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3543), 28, + ACTIONS(1305), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -131817,26 +133416,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, anon_sym_as, anon_sym_else, - [25846] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [24841] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, STATE(1420), 2, sym_line_comment, sym_block_comment, - ACTIONS(1778), 7, + ACTIONS(3727), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3725), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [24901] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3733), 1, anon_sym_RBRACE, + STATE(1421), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3731), 15, + sym__raw_string_literal_start, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DASH, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT, + anon_sym_DOT_DOT, anon_sym_COLON_COLON, anon_sym_POUND, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, sym_metavariable, - ACTIONS(1780), 38, + ACTIONS(3729), 29, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131854,264 +133517,373 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, + anon_sym__, anon_sym_const, anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, + anon_sym_ref, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, sym_identifier, sym_self, sym_super, sym_crate, - [25906] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [24963] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1421), 2, + STATE(1422), 2, sym_line_comment, sym_block_comment, - ACTIONS(1782), 7, + ACTIONS(3737), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3735), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1784), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [25966] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [25023] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1422), 2, + STATE(1423), 2, sym_line_comment, sym_block_comment, - ACTIONS(1786), 7, + ACTIONS(3741), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3739), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1788), 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, - [26026] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [25083] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1423), 2, + STATE(1424), 2, sym_line_comment, sym_block_comment, - ACTIONS(1790), 7, + ACTIONS(3745), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3743), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1792), 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, - [26086] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [25143] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1424), 2, + STATE(1425), 2, sym_line_comment, sym_block_comment, - ACTIONS(1794), 7, + ACTIONS(1307), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1305), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1796), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [26146] = 5, - ACTIONS(101), 1, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [25203] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1426), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3749), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3747), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [25263] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1425), 2, + ACTIONS(3399), 1, + anon_sym_COLON_COLON, + ACTIONS(3751), 1, + anon_sym_BANG, + STATE(1427), 2, sym_line_comment, sym_block_comment, - ACTIONS(1798), 7, + ACTIONS(3395), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3393), 28, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + anon_sym_else, + [25327] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1428), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3755), 13, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_EQ, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_POUND, + anon_sym_SQUOTE, sym_metavariable, - ACTIONS(1800), 38, + ACTIONS(3753), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132132,646 +133904,756 @@ 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_where, anon_sym_extern, + anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [26206] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [25387] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1426), 2, + STATE(1429), 2, sym_line_comment, sym_block_comment, - ACTIONS(1802), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1804), 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, - [26266] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3759), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3757), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [25447] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1427), 2, + STATE(1430), 2, sym_line_comment, sym_block_comment, - ACTIONS(1806), 7, + ACTIONS(3763), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3761), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1808), 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, - [26326] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [25507] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1428), 2, + STATE(1431), 2, sym_line_comment, sym_block_comment, - ACTIONS(1810), 7, + ACTIONS(3767), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3765), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1812), 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, - [26386] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [25567] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1429), 2, + STATE(1432), 2, sym_line_comment, sym_block_comment, - ACTIONS(1814), 7, + ACTIONS(3573), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3569), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1816), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [26446] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [25627] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1430), 2, + STATE(1433), 2, sym_line_comment, sym_block_comment, - ACTIONS(1818), 7, + ACTIONS(3771), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3769), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1820), 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, - [26506] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [25687] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1431), 2, + STATE(1434), 2, sym_line_comment, sym_block_comment, - ACTIONS(1822), 7, + ACTIONS(3775), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3773), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1824), 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, - [26566] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [25747] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1432), 2, + STATE(1435), 2, sym_line_comment, sym_block_comment, - ACTIONS(1826), 7, + ACTIONS(1307), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1305), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [25807] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1436), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1229), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1828), 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, - [26626] = 5, - ACTIONS(101), 1, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1227), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [25867] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1437), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(922), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(924), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [25927] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1433), 2, + STATE(1438), 2, sym_line_comment, sym_block_comment, - ACTIONS(1830), 7, + ACTIONS(3779), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3777), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1832), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [26686] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [25987] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1434), 2, + STATE(1439), 2, sym_line_comment, sym_block_comment, - ACTIONS(1834), 7, + ACTIONS(3783), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3781), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1836), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [26746] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [26047] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1435), 2, + STATE(1440), 2, sym_line_comment, sym_block_comment, - ACTIONS(1838), 7, + ACTIONS(3787), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3785), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1840), 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, - [26806] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [26107] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1436), 2, + STATE(1441), 2, sym_line_comment, sym_block_comment, - ACTIONS(1842), 7, + ACTIONS(3379), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3377), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1844), 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, - [26866] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [26167] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1437), 2, + STATE(1442), 2, sym_line_comment, sym_block_comment, - ACTIONS(1846), 7, + ACTIONS(3791), 13, anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_EQ, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_POUND, + anon_sym_SQUOTE, sym_metavariable, - ACTIONS(1848), 38, + ACTIONS(3789), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132792,88 +134674,137 @@ 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_where, anon_sym_extern, + anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [26926] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [26227] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1438), 2, + STATE(1443), 2, sym_line_comment, sym_block_comment, - ACTIONS(1850), 7, + ACTIONS(3795), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3793), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1852), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [26986] = 5, - ACTIONS(101), 1, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [26287] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1444), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3799), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3797), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [26347] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1439), 2, + STATE(1445), 2, sym_line_comment, sym_block_comment, - ACTIONS(3867), 15, + ACTIONS(3359), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -132889,7 +134820,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3865), 30, + ACTIONS(3357), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -132897,6 +134828,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -132916,239 +134848,239 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27046] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [26407] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1440), 2, + STATE(1446), 2, sym_line_comment, sym_block_comment, - ACTIONS(1854), 7, + ACTIONS(1319), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1317), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1856), 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, - [27106] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [26467] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1441), 2, + STATE(1447), 2, sym_line_comment, sym_block_comment, - ACTIONS(1858), 7, + ACTIONS(3803), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3801), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1860), 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, - [27166] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [26527] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1442), 2, + STATE(1448), 2, sym_line_comment, sym_block_comment, - ACTIONS(1862), 7, + ACTIONS(1323), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1321), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1864), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [27226] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [26587] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1443), 2, + ACTIONS(3807), 2, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + STATE(1449), 2, sym_line_comment, sym_block_comment, - ACTIONS(1866), 7, + ACTIONS(3809), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3805), 28, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1868), 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, - [27286] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + anon_sym_else, + [26649] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1444), 2, + STATE(1450), 2, sym_line_comment, sym_block_comment, - ACTIONS(3871), 15, + ACTIONS(3813), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -133164,7 +135096,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3869), 30, + ACTIONS(3811), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -133172,6 +135104,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -133191,74 +135124,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27346] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [26709] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1445), 2, + STATE(1451), 2, sym_line_comment, sym_block_comment, - ACTIONS(1870), 7, + ACTIONS(1271), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1269), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1872), 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, - [27406] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [26769] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1446), 2, + STATE(1452), 2, sym_line_comment, sym_block_comment, - ACTIONS(1238), 15, + ACTIONS(1267), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -133274,7 +135206,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1236), 30, + ACTIONS(1265), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -133282,6 +135214,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -133301,82 +135234,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27466] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [26829] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1447), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1886), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1888), 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, - [27526] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1448), 2, + STATE(1453), 2, sym_line_comment, sym_block_comment, - ACTIONS(1890), 7, + ACTIONS(3817), 13, anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_EQ, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_POUND, + anon_sym_SQUOTE, sym_metavariable, - ACTIONS(1892), 38, + ACTIONS(3815), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133397,33 +135280,27 @@ 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_where, anon_sym_extern, + anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [27586] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [26889] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1449), 2, + STATE(1454), 2, sym_line_comment, sym_block_comment, - ACTIONS(3875), 15, + ACTIONS(1331), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -133439,7 +135316,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3873), 30, + ACTIONS(1329), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -133447,6 +135324,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -133466,74 +135344,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27646] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [26949] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1450), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1898), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1900), 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, - [27706] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1451), 2, + STATE(1455), 2, sym_line_comment, sym_block_comment, - ACTIONS(3301), 15, + ACTIONS(3821), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -133549,7 +135371,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3299), 30, + ACTIONS(3819), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -133557,6 +135379,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -133576,129 +135399,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27766] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1452), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1902), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(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, - [27826] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [27009] = 8, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1453), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1910), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(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, - [27886] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1454), 2, + ACTIONS(3687), 1, + anon_sym_LBRACK, + ACTIONS(3691), 1, + anon_sym_QMARK, + ACTIONS(3693), 1, + anon_sym_DOT, + STATE(1456), 2, sym_line_comment, sym_block_comment, - ACTIONS(1404), 15, + ACTIONS(3825), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -133712,17 +135430,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1402), 30, + ACTIONS(3823), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_QMARK, + anon_sym_COMMA, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -133741,294 +135457,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27946] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1455), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1914), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(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, - [28006] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [27075] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1456), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3879), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(3877), 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, - [28066] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, STATE(1457), 2, sym_line_comment, sym_block_comment, - ACTIONS(1918), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1920), 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, - [28126] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1458), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1922), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1924), 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, - [28186] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1459), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1926), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1928), 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, - [28246] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1460), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3883), 15, + ACTIONS(3829), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -134044,7 +135484,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3881), 30, + ACTIONS(3827), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -134052,6 +135492,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -134071,74 +135512,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28306] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [27135] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1461), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1930), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1932), 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, - [28366] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1462), 2, + STATE(1458), 2, sym_line_comment, sym_block_comment, - ACTIONS(935), 15, + ACTIONS(3833), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -134154,7 +135539,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(937), 30, + ACTIONS(3831), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -134162,6 +135547,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -134181,19 +135567,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28426] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [27195] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1463), 2, + STATE(1459), 2, sym_line_comment, sym_block_comment, - ACTIONS(967), 15, + ACTIONS(3837), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -134209,7 +135594,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(969), 30, + ACTIONS(3835), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -134217,6 +135602,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -134236,471 +135622,556 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28486] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [27255] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1464), 2, + STATE(1460), 2, sym_line_comment, sym_block_comment, - ACTIONS(1934), 7, + ACTIONS(3841), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3839), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1936), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [28546] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [27315] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1465), 2, + STATE(1461), 2, sym_line_comment, sym_block_comment, - ACTIONS(1938), 7, + ACTIONS(3845), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3843), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1940), 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, - [28606] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [27375] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1466), 2, + STATE(1462), 2, sym_line_comment, sym_block_comment, - ACTIONS(1942), 7, + ACTIONS(3849), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3847), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1944), 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, - [28666] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [27435] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1467), 2, + STATE(1463), 2, sym_line_comment, sym_block_comment, - ACTIONS(1946), 7, + ACTIONS(1295), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1293), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1948), 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, - [28726] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [27495] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1468), 2, + STATE(1464), 2, sym_line_comment, sym_block_comment, - ACTIONS(1950), 7, + ACTIONS(1259), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1257), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1952), 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, - [28786] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [27555] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1469), 2, + STATE(1465), 2, sym_line_comment, sym_block_comment, - ACTIONS(1954), 7, + ACTIONS(3853), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3851), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1956), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [28846] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [27615] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1470), 2, + STATE(1466), 2, sym_line_comment, sym_block_comment, - ACTIONS(2510), 7, + ACTIONS(3857), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3855), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2512), 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, - [28906] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [27675] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1471), 2, + STATE(1467), 2, sym_line_comment, sym_block_comment, - ACTIONS(3887), 15, - sym__raw_string_literal_start, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(1225), 15, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(3885), 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__, - anon_sym_const, - anon_sym_default, - anon_sym_union, - anon_sym_ref, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [28965] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(1223), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [27735] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1472), 2, + STATE(1468), 2, sym_line_comment, sym_block_comment, - ACTIONS(2410), 12, + ACTIONS(1255), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1253), 30, + anon_sym_SEMI, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_STAR, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [27795] = 21, + ACTIONS(31), 1, anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1631), 1, + anon_sym_DASH, + ACTIONS(1655), 1, + aux_sym_string_literal_token1, + ACTIONS(1663), 1, + sym__raw_string_literal_start, + ACTIONS(3311), 1, + anon_sym_if, + ACTIONS(3859), 1, + sym_identifier, + ACTIONS(3863), 1, anon_sym_COLON_COLON, - anon_sym_POUND, - anon_sym_SQUOTE, - sym_integer_literal, + ACTIONS(3867), 1, sym_metavariable, - ACTIONS(2412), 32, + STATE(2589), 1, + sym_scoped_identifier, + STATE(3018), 1, + sym__literal_pattern, + STATE(3559), 1, + sym_bracketed_type, + STATE(3572), 1, + sym_generic_type_with_turbofish, + ACTIONS(1657), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3309), 2, + anon_sym_EQ_GT, + anon_sym_PIPE, + STATE(1469), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1653), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3865), 3, + sym_self, + sym_super, + sym_crate, + STATE(2383), 4, + sym_negative_literal, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + ACTIONS(3861), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134718,140 +136189,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, - anon_sym_const, anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_pub, anon_sym_union, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [29024] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [27887] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1473), 2, + STATE(1470), 2, sym_line_comment, sym_block_comment, - ACTIONS(3657), 15, - sym__raw_string_literal_start, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(1307), 15, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(3655), 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__, - anon_sym_const, - anon_sym_default, - anon_sym_union, - anon_sym_ref, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [29083] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(1305), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [27947] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1474), 2, + STATE(1471), 2, sym_line_comment, sym_block_comment, - ACTIONS(2657), 15, - sym__raw_string_literal_start, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(3871), 15, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(2659), 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__, - anon_sym_const, - anon_sym_default, - anon_sym_union, - anon_sym_ref, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [29142] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3869), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [28007] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3889), 1, - anon_sym_COLON_COLON, - STATE(1475), 2, + STATE(1472), 2, sym_line_comment, sym_block_comment, - ACTIONS(1416), 15, + ACTIONS(3875), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -134867,13 +136325,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1418), 28, + ACTIONS(3873), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -134893,128 +136353,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, + anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29203] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [28067] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1476), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3205), 12, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - anon_sym_SQUOTE, - sym_integer_literal, - sym_metavariable, - ACTIONS(3203), 32, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_pub, - anon_sym_union, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [29262] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1477), 2, + STATE(1473), 2, sym_line_comment, sym_block_comment, - ACTIONS(3723), 15, - sym__raw_string_literal_start, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(3879), 15, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(3721), 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__, - anon_sym_const, - anon_sym_default, - anon_sym_union, - anon_sym_ref, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [29321] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3877), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [28127] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3321), 1, - anon_sym_COLON_COLON, - STATE(1478), 2, + STATE(1474), 2, sym_line_comment, sym_block_comment, - ACTIONS(3317), 15, + ACTIONS(3883), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -135030,13 +136435,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3315), 28, + ACTIONS(3881), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -135056,118 +136463,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, + anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29382] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [28187] = 21, + ACTIONS(31), 1, + anon_sym_LT, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1479), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3893), 15, - sym__raw_string_literal_start, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(1631), 1, anon_sym_DASH, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_DOT_DOT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_integer_literal, + ACTIONS(1655), 1, aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(3891), 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__, - anon_sym_const, - anon_sym_default, - anon_sym_union, - anon_sym_ref, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [29441] = 23, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(1562), 1, - anon_sym_LBRACK, - ACTIONS(3475), 1, - sym_identifier, - ACTIONS(3479), 1, - anon_sym_LPAREN, - ACTIONS(3481), 1, - anon_sym_STAR, - ACTIONS(3485), 1, - anon_sym_AMP, - ACTIONS(3487), 1, + ACTIONS(1663), 1, + sym__raw_string_literal_start, + ACTIONS(3299), 1, + anon_sym_if, + ACTIONS(3863), 1, anon_sym_COLON_COLON, - ACTIONS(3489), 1, - anon_sym_SQUOTE, - ACTIONS(3493), 1, - anon_sym_for, - ACTIONS(3497), 1, + ACTIONS(3885), 1, + sym_identifier, + ACTIONS(3891), 1, sym_metavariable, - STATE(2507), 1, - sym_scoped_type_identifier, - STATE(2546), 1, - sym_where_predicate, - STATE(3020), 1, - sym_generic_type, - STATE(3340), 1, - sym_generic_type_with_turbofish, - STATE(3385), 1, + STATE(2580), 1, sym_scoped_identifier, - STATE(3469), 1, + STATE(3023), 1, + sym__literal_pattern, + STATE(3559), 1, sym_bracketed_type, - ACTIONS(3491), 2, - anon_sym_default, - anon_sym_union, - STATE(1480), 2, + STATE(3572), 1, + sym_generic_type_with_turbofish, + ACTIONS(1657), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3297), 2, + anon_sym_EQ_GT, + anon_sym_PIPE, + STATE(1475), 2, sym_line_comment, sym_block_comment, - ACTIONS(3495), 3, + ACTIONS(1653), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3889), 3, sym_self, sym_super, sym_crate, - STATE(3194), 6, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_array_type, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(3483), 17, + STATE(2383), 4, + sym_negative_literal, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + ACTIONS(3887), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -135185,131 +136535,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [29536] = 23, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(1562), 1, - anon_sym_LBRACK, - ACTIONS(3475), 1, - sym_identifier, - ACTIONS(3479), 1, - anon_sym_LPAREN, - ACTIONS(3481), 1, - anon_sym_STAR, - ACTIONS(3485), 1, - anon_sym_AMP, - ACTIONS(3487), 1, - anon_sym_COLON_COLON, - ACTIONS(3489), 1, - anon_sym_SQUOTE, - ACTIONS(3493), 1, - anon_sym_for, - ACTIONS(3497), 1, - sym_metavariable, - STATE(2438), 1, - sym_where_predicate, - STATE(2507), 1, - sym_scoped_type_identifier, - STATE(3020), 1, - sym_generic_type, - STATE(3340), 1, - sym_generic_type_with_turbofish, - STATE(3385), 1, - sym_scoped_identifier, - STATE(3469), 1, - sym_bracketed_type, - ACTIONS(3491), 2, anon_sym_default, anon_sym_union, - STATE(1481), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3495), 3, - sym_self, - sym_super, - sym_crate, - STATE(3194), 6, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_array_type, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(3483), 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, - [29631] = 19, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [28279] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, + STATE(1476), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3895), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3903), 1, anon_sym_AMP, - ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3913), 2, anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - STATE(1482), 2, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3893), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [28339] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1477), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(1299), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3895), 19, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1297), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -135320,67 +136638,165 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, anon_sym_else, - [29717] = 21, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [28399] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3687), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3691), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3693), 1, anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, ACTIONS(3901), 1, + anon_sym_as, + STATE(1478), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3899), 14, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3903), 1, anon_sym_AMP, - ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3921), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(3923), 1, + anon_sym_GT, + anon_sym_LT, anon_sym_DOT_DOT, - ACTIONS(3897), 2, + ACTIONS(3897), 27, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + anon_sym_else, + [28467] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1479), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1241), 15, anon_sym_PLUS, + anon_sym_STAR, anon_sym_DASH, - ACTIONS(3911), 2, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(3925), 2, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1239), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1483), 2, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [28527] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1480), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(1307), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3919), 17, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1305), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -135391,25 +136807,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_COMMA, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + anon_sym_as, anon_sym_else, - [29807] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [28587] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3325), 1, - anon_sym_LBRACE, - ACTIONS(3327), 1, - anon_sym_COLON_COLON, - ACTIONS(3927), 1, - anon_sym_BANG, - STATE(1199), 1, - sym_field_initializer_list, - STATE(1484), 2, + STATE(1481), 2, sym_line_comment, sym_block_comment, - ACTIONS(1416), 15, + ACTIONS(3809), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -135425,11 +136840,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1418), 24, + ACTIONS(3805), 30, anon_sym_SEMI, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -135449,48 +136868,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, anon_sym_as, - [29873] = 13, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_else, + [28647] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3903), 1, - anon_sym_AMP, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1485), 2, + STATE(1482), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(1327), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3669), 6, anon_sym_CARET, + anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3665), 25, + ACTIONS(1325), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -135509,48 +136923,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, anon_sym_else, - [29947] = 12, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [28707] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1486), 2, + STATE(1483), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(1347), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3669), 7, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3665), 25, + ACTIONS(1345), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -135569,68 +136978,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, anon_sym_else, - [30019] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [28767] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, + STATE(1484), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1263), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3903), 1, anon_sym_AMP, - ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3923), 1, - anon_sym_DOT_DOT, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(3925), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1487), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3899), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3661), 7, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1261), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_else, - ACTIONS(3929), 10, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -135641,48 +137027,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30111] = 14, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [28827] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, - anon_sym_CARET, - ACTIONS(3903), 1, - anon_sym_AMP, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1488), 2, + STATE(1485), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3347), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3669), 5, + anon_sym_CARET, + anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3665), 25, + ACTIONS(3345), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -135701,65 +137088,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, anon_sym_else, - [30187] = 21, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [28887] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3903), 2, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + STATE(1486), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3809), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3903), 1, anon_sym_AMP, - ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3923), 1, - anon_sym_DOT_DOT, - ACTIONS(3935), 1, - anon_sym_EQ, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(3925), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1489), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3899), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3933), 17, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3805), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -135770,57 +137139,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_COMMA, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, anon_sym_else, - [30277] = 17, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [28949] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, + STATE(1487), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3907), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3903), 1, anon_sym_AMP, - ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(3669), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - STATE(1490), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3899), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3665), 21, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3905), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -135833,104 +137193,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, anon_sym_else, - [30359] = 25, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [29009] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(1290), 1, - anon_sym_fn, - ACTIONS(1298), 1, - anon_sym_extern, - ACTIONS(3145), 1, - anon_sym_for, - ACTIONS(3487), 1, - anon_sym_COLON_COLON, - ACTIONS(3491), 1, - anon_sym_union, - ACTIONS(3497), 1, - sym_metavariable, - ACTIONS(3503), 1, - anon_sym_default, - ACTIONS(3937), 1, - sym_identifier, - STATE(1618), 1, - sym_for_lifetimes, - STATE(1917), 1, - sym_scoped_type_identifier, - STATE(1944), 1, - sym_generic_type, - STATE(2206), 1, - aux_sym_function_modifiers_repeat1, - STATE(2320), 1, - sym_extern_modifier, - STATE(3340), 1, - sym_generic_type_with_turbofish, - STATE(3385), 1, - sym_scoped_identifier, - STATE(3427), 1, - sym_function_modifiers, - STATE(3469), 1, - sym_bracketed_type, - STATE(1491), 2, - sym_line_comment, - sym_block_comment, - STATE(1984), 2, - sym_higher_ranked_trait_bound, - sym_function_type, - ACTIONS(1284), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3495), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(3501), 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, - [30457] = 11, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3939), 1, - anon_sym_LPAREN, - ACTIONS(3941), 1, - anon_sym_BANG, - ACTIONS(3943), 1, - anon_sym_COLON_COLON, - ACTIONS(3945), 1, - anon_sym_LT2, - STATE(1582), 1, - sym_type_arguments, - STATE(1602), 1, - sym_parameters, - STATE(1492), 2, + STATE(1488), 2, sym_line_comment, sym_block_comment, - ACTIONS(3245), 17, + ACTIONS(3911), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -135941,16 +137221,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3241), 20, + ACTIONS(3909), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -135962,66 +137246,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, anon_sym_as, - [30527] = 19, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_else, + [29069] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, + STATE(1489), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(956), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3903), 1, anon_sym_AMP, - ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(370), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - STATE(1493), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3899), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(368), 19, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(958), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -136032,67 +137303,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, anon_sym_else, - [30613] = 21, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [29129] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, + STATE(1490), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3915), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3903), 1, anon_sym_AMP, - ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3923), 1, - anon_sym_DOT_DOT, - ACTIONS(3949), 1, - anon_sym_EQ, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(3925), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1494), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3899), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3947), 17, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3913), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -136103,31 +137358,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_COMMA, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + anon_sym_as, anon_sym_else, - [30703] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [29189] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - STATE(1495), 2, + STATE(1491), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3919), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3669), 11, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -136136,13 +137389,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3665), 25, + ACTIONS(3917), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -136161,68 +137419,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, anon_sym_else, - [30771] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [29249] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, + STATE(1492), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1221), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3903), 1, anon_sym_AMP, - ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3923), 1, - anon_sym_DOT_DOT, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(3925), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1496), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3899), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3771), 7, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1219), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_else, - ACTIONS(3929), 10, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -136233,49 +137468,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30863] = 15, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [29309] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, - anon_sym_CARET, - ACTIONS(3903), 1, - anon_sym_AMP, - ACTIONS(3905), 1, - anon_sym_PIPE, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1497), 2, + STATE(1493), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3923), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3669), 4, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3665), 25, + ACTIONS(3921), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -136294,64 +137529,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, anon_sym_else, - [30941] = 25, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [29369] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1298), 1, - anon_sym_extern, - ACTIONS(3117), 1, - anon_sym_fn, - ACTIONS(3428), 1, - anon_sym_COLON_COLON, - ACTIONS(3430), 1, - anon_sym_default, - ACTIONS(3434), 1, - anon_sym_union, - ACTIONS(3438), 1, - sym_metavariable, - ACTIONS(3951), 1, - sym_identifier, - ACTIONS(3953), 1, - anon_sym_for, - STATE(1029), 1, - sym_scoped_type_identifier, - STATE(1051), 1, - sym_generic_type, - STATE(1592), 1, - sym_for_lifetimes, - STATE(2206), 1, - aux_sym_function_modifiers_repeat1, - STATE(2320), 1, - sym_extern_modifier, - STATE(3338), 1, - sym_function_modifiers, - STATE(3483), 1, - sym_scoped_identifier, - STATE(3516), 1, - sym_generic_type_with_turbofish, - STATE(3526), 1, - sym_bracketed_type, - STATE(1297), 2, - sym_higher_ranked_trait_bound, - sym_function_type, - STATE(1498), 2, + STATE(1494), 2, sym_line_comment, sym_block_comment, - ACTIONS(1284), 3, + ACTIONS(3927), 13, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + sym_metavariable, + ACTIONS(3925), 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, - ACTIONS(3436), 3, + anon_sym_where, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, sym_self, sym_super, sym_crate, - ACTIONS(3426), 17, + [29429] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1495), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3931), 13, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + sym_metavariable, + ACTIONS(3929), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -136369,126 +137627,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [31039] = 21, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + 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, + [29489] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, - anon_sym_CARET, - ACTIONS(3903), 1, - anon_sym_AMP, - ACTIONS(3905), 1, - anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3923), 1, - anon_sym_DOT_DOT, - ACTIONS(3957), 1, - anon_sym_EQ, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3917), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3925), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1499), 2, + STATE(1496), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(1335), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3955), 17, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_COMMA, - anon_sym_else, - [31129] = 18, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, anon_sym_CARET, - ACTIONS(3903), 1, anon_sym_AMP, - ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3669), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - STATE(1500), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3899), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3665), 20, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1333), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -136500,34 +137688,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, anon_sym_else, - [31213] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [29549] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1501), 2, + STATE(1497), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3935), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3669), 9, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -136536,13 +137719,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3665), 25, + ACTIONS(3933), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -136561,134 +137749,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, anon_sym_else, - [31283] = 21, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [29609] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(342), 1, - anon_sym_EQ, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, - anon_sym_CARET, - ACTIONS(3903), 1, - anon_sym_AMP, - ACTIONS(3905), 1, - anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3923), 1, - anon_sym_DOT_DOT, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3917), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3925), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1502), 2, + STATE(1498), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3939), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(336), 17, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_COMMA, - anon_sym_else, - [31373] = 21, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, anon_sym_CARET, - ACTIONS(3903), 1, anon_sym_AMP, - ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3923), 1, - anon_sym_DOT_DOT, - ACTIONS(3961), 1, - anon_sym_EQ, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(3925), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1503), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3899), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3959), 17, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3937), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -136699,141 +137798,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_COMMA, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + anon_sym_as, anon_sym_else, - [31463] = 25, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [29669] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1298), 1, - anon_sym_extern, - ACTIONS(3081), 1, - anon_sym_fn, - ACTIONS(3380), 1, - anon_sym_COLON_COLON, - ACTIONS(3382), 1, - anon_sym_default, - ACTIONS(3386), 1, - anon_sym_union, - ACTIONS(3390), 1, - sym_metavariable, - ACTIONS(3963), 1, - sym_identifier, - ACTIONS(3965), 1, - anon_sym_for, - STATE(1532), 1, - sym_scoped_type_identifier, - STATE(1600), 1, - sym_generic_type, - STATE(1613), 1, - sym_for_lifetimes, - STATE(2206), 1, - aux_sym_function_modifiers_repeat1, - STATE(2320), 1, - sym_extern_modifier, - STATE(3473), 1, - sym_function_modifiers, - STATE(3507), 1, - sym_scoped_identifier, - STATE(3524), 1, - sym_generic_type_with_turbofish, - STATE(3530), 1, - sym_bracketed_type, - STATE(1504), 2, + STATE(1499), 2, sym_line_comment, sym_block_comment, - STATE(1709), 2, - sym_higher_ranked_trait_bound, - sym_function_type, - ACTIONS(1284), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3388), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(3378), 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, - [31561] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3391), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3903), 1, anon_sym_AMP, - ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3923), 1, - anon_sym_DOT_DOT, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(3925), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1505), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3899), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3739), 7, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3389), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_else, - ACTIONS(3929), 10, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -136844,25 +137853,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31653] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [29729] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3939), 1, - anon_sym_LPAREN, - ACTIONS(3945), 1, - anon_sym_LT2, - ACTIONS(3967), 1, - anon_sym_COLON_COLON, - STATE(1582), 1, - sym_type_arguments, - STATE(1602), 1, - sym_parameters, - STATE(1506), 2, + STATE(1500), 2, sym_line_comment, sym_block_comment, - ACTIONS(3261), 17, + ACTIONS(3943), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136873,16 +137881,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3259), 20, + ACTIONS(3941), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -136894,30 +137906,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, anon_sym_as, - [31720] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_else, + [29789] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3941), 1, - anon_sym_BANG, - ACTIONS(3969), 1, - anon_sym_LBRACE, - ACTIONS(3971), 1, - anon_sym_COLON_COLON, - STATE(1650), 1, - sym_field_initializer_list, - STATE(1507), 2, + STATE(1501), 2, sym_line_comment, sym_block_comment, - ACTIONS(1416), 15, + ACTIONS(3947), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136933,10 +137941,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1418), 23, + ACTIONS(3945), 30, + anon_sym_SEMI, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -136956,26 +137969,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, anon_sym_as, - [31785] = 10, - ACTIONS(101), 1, + anon_sym_else, + [29849] = 6, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3953), 1, + anon_sym_RBRACE, + STATE(1502), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3951), 15, + sym__raw_string_literal_start, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DASH, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_DOT_DOT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(3949), 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__, + anon_sym_const, + anon_sym_default, + anon_sym_union, + anon_sym_ref, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [29911] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3939), 1, - anon_sym_LPAREN, - ACTIONS(3945), 1, - anon_sym_LT2, - ACTIONS(3967), 1, - anon_sym_COLON_COLON, - STATE(1582), 1, - sym_type_arguments, - STATE(1602), 1, - sym_parameters, - STATE(1508), 2, + STATE(1503), 2, sym_line_comment, sym_block_comment, - ACTIONS(3265), 17, + ACTIONS(3957), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136986,16 +138047,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3263), 20, + ACTIONS(3955), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -137007,28 +138072,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, anon_sym_as, - [31852] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_else, + [29971] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3319), 1, - anon_sym_BANG, - ACTIONS(3321), 1, - anon_sym_COLON_COLON, - ACTIONS(3973), 1, - sym_identifier, - STATE(1509), 2, + STATE(1504), 2, sym_line_comment, sym_block_comment, - ACTIONS(3317), 16, + ACTIONS(3961), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137044,12 +138107,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - anon_sym_as, - ACTIONS(3315), 23, + ACTIONS(3959), 30, anon_sym_SEMI, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -137069,53 +138135,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [31915] = 19, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [30031] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1262), 1, - anon_sym_DASH, - ACTIONS(1308), 1, - aux_sym_string_literal_token1, - ACTIONS(1318), 1, + STATE(1505), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3965), 15, sym__raw_string_literal_start, - ACTIONS(2340), 1, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DASH, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_DOT_DOT, anon_sym_COLON_COLON, - ACTIONS(3229), 1, - sym_identifier, - ACTIONS(3239), 1, + anon_sym_POUND, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, sym_metavariable, - STATE(2036), 1, - sym_scoped_identifier, - STATE(2080), 1, - sym__literal_pattern, - STATE(3324), 1, - sym_bracketed_type, - STATE(3350), 1, - sym_generic_type_with_turbofish, - ACTIONS(1310), 2, + ACTIONS(3963), 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__, + anon_sym_const, + anon_sym_default, + anon_sym_union, + anon_sym_ref, + sym_mutable_specifier, anon_sym_true, anon_sym_false, - STATE(1510), 2, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [30090] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1506), 2, sym_line_comment, sym_block_comment, - ACTIONS(1306), 3, - sym_float_literal, + ACTIONS(2767), 12, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_SQUOTE, sym_integer_literal, - sym_char_literal, - ACTIONS(3237), 3, + sym_metavariable, + ACTIONS(2769), 32, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, + anon_sym_pub, + anon_sym_union, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, sym_self, sym_super, sym_crate, - STATE(2004), 4, - sym_negative_literal, - sym_string_literal, - sym_raw_string_literal, - sym_boolean_literal, - ACTIONS(3235), 19, + [30149] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1507), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3731), 15, + sym__raw_string_literal_start, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DASH, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_DOT_DOT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(3729), 29, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -137133,110 +138288,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, + anon_sym__, + anon_sym_const, anon_sym_default, anon_sym_union, - [32000] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_ref, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [30208] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3247), 1, - anon_sym_BANG, - ACTIONS(3975), 1, - anon_sym_COLON_COLON, - STATE(1199), 1, - sym_field_initializer_list, - STATE(1511), 2, + STATE(1508), 2, sym_line_comment, sym_block_comment, - ACTIONS(1416), 15, - anon_sym_PLUS, - anon_sym_STAR, + ACTIONS(3951), 15, + sym__raw_string_literal_start, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1418), 24, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, - anon_sym_as, - [32063] = 19, - ACTIONS(29), 1, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(3949), 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__, + anon_sym_const, + anon_sym_default, + anon_sym_union, + anon_sym_ref, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [30267] = 23, + ACTIONS(31), 1, anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1262), 1, - anon_sym_DASH, - ACTIONS(1308), 1, - aux_sym_string_literal_token1, - ACTIONS(1318), 1, - sym__raw_string_literal_start, - ACTIONS(2340), 1, - anon_sym_COLON_COLON, - ACTIONS(3217), 1, + ACTIONS(1579), 1, + anon_sym_LBRACK, + ACTIONS(3414), 1, sym_identifier, - ACTIONS(3227), 1, + ACTIONS(3418), 1, + anon_sym_LPAREN, + ACTIONS(3420), 1, + anon_sym_STAR, + ACTIONS(3424), 1, + anon_sym_AMP, + ACTIONS(3426), 1, + anon_sym_COLON_COLON, + ACTIONS(3428), 1, + anon_sym_SQUOTE, + ACTIONS(3432), 1, + anon_sym_for, + ACTIONS(3436), 1, sym_metavariable, - STATE(2048), 1, + STATE(2568), 1, + sym_scoped_type_identifier, + STATE(2712), 1, + sym_where_predicate, + STATE(3035), 1, + sym_generic_type, + STATE(3426), 1, + sym_generic_type_with_turbofish, + STATE(3442), 1, sym_scoped_identifier, - STATE(2091), 1, - sym__literal_pattern, - STATE(3324), 1, + STATE(3563), 1, sym_bracketed_type, - STATE(3350), 1, - sym_generic_type_with_turbofish, - ACTIONS(1310), 2, - anon_sym_true, - anon_sym_false, - STATE(1512), 2, + ACTIONS(3430), 2, + anon_sym_default, + anon_sym_union, + STATE(1509), 2, sym_line_comment, sym_block_comment, - ACTIONS(1306), 3, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3225), 3, + ACTIONS(3434), 3, sym_self, sym_super, sym_crate, - STATE(2004), 4, - sym_negative_literal, - sym_string_literal, - sym_raw_string_literal, - sym_boolean_literal, - ACTIONS(3223), 19, + STATE(3154), 6, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_array_type, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(3422), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -137254,27 +138426,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, + [30362] = 23, + ACTIONS(31), 1, + anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1579), 1, + anon_sym_LBRACK, + ACTIONS(3414), 1, + sym_identifier, + ACTIONS(3418), 1, + anon_sym_LPAREN, + ACTIONS(3420), 1, + anon_sym_STAR, + ACTIONS(3424), 1, + anon_sym_AMP, + ACTIONS(3426), 1, + anon_sym_COLON_COLON, + ACTIONS(3428), 1, + anon_sym_SQUOTE, + ACTIONS(3432), 1, + anon_sym_for, + ACTIONS(3436), 1, + sym_metavariable, + STATE(2507), 1, + sym_where_predicate, + STATE(2568), 1, + sym_scoped_type_identifier, + STATE(3035), 1, + sym_generic_type, + STATE(3426), 1, + sym_generic_type_with_turbofish, + STATE(3442), 1, + sym_scoped_identifier, + STATE(3563), 1, + sym_bracketed_type, + ACTIONS(3430), 2, anon_sym_default, anon_sym_union, - [32148] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + STATE(1510), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3434), 3, + sym_self, + sym_super, + sym_crate, + STATE(3154), 6, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_array_type, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(3422), 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, + [30457] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3939), 1, - anon_sym_LPAREN, - ACTIONS(3945), 1, - anon_sym_LT2, - ACTIONS(3967), 1, + ACTIONS(3399), 1, anon_sym_COLON_COLON, - STATE(1582), 1, - sym_type_arguments, - STATE(1602), 1, - sym_parameters, - STATE(1513), 2, + STATE(1511), 2, sym_line_comment, sym_block_comment, - ACTIONS(3255), 17, + ACTIONS(3395), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137285,16 +138519,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3253), 20, + ACTIONS(3393), 28, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -137306,60 +138543,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [32215] = 19, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_else, + [30518] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1614), 1, - anon_sym_DASH, - ACTIONS(1638), 1, - aux_sym_string_literal_token1, - ACTIONS(1646), 1, - sym__raw_string_literal_start, - ACTIONS(3599), 1, - anon_sym_COLON_COLON, - ACTIONS(3755), 1, - sym_identifier, - ACTIONS(3761), 1, - sym_metavariable, - STATE(2696), 1, - sym_scoped_identifier, - STATE(2971), 1, - sym__literal_pattern, - STATE(3465), 1, - sym_bracketed_type, - STATE(3478), 1, - sym_generic_type_with_turbofish, - ACTIONS(1640), 2, - anon_sym_true, - anon_sym_false, - STATE(1514), 2, + STATE(1512), 2, sym_line_comment, sym_block_comment, - ACTIONS(1636), 3, + ACTIONS(2527), 15, + sym__raw_string_literal_start, sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DASH, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_DOT_DOT, + anon_sym_COLON_COLON, + anon_sym_POUND, sym_integer_literal, + aux_sym_string_literal_token1, sym_char_literal, - ACTIONS(3759), 3, - sym_self, - sym_super, - sym_crate, - STATE(2299), 4, - sym_negative_literal, - sym_string_literal, - sym_raw_string_literal, - sym_boolean_literal, - ACTIONS(3757), 19, + sym_metavariable, + ACTIONS(2529), 29, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -137377,90 +138595,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, + anon_sym__, + anon_sym_const, anon_sym_default, anon_sym_union, - [32300] = 19, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(1614), 1, - anon_sym_DASH, - ACTIONS(1638), 1, - aux_sym_string_literal_token1, - ACTIONS(1646), 1, - sym__raw_string_literal_start, - ACTIONS(3595), 1, - sym_identifier, - ACTIONS(3599), 1, - anon_sym_COLON_COLON, - ACTIONS(3603), 1, - sym_metavariable, - STATE(2726), 1, - sym_scoped_identifier, - STATE(2895), 1, - sym__literal_pattern, - STATE(3465), 1, - sym_bracketed_type, - STATE(3478), 1, - sym_generic_type_with_turbofish, - ACTIONS(1640), 2, + anon_sym_ref, + sym_mutable_specifier, anon_sym_true, anon_sym_false, - STATE(1515), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1636), 3, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3601), 3, + sym_identifier, sym_self, sym_super, sym_crate, - STATE(2299), 4, - sym_negative_literal, - sym_string_literal, - sym_raw_string_literal, - sym_boolean_literal, - ACTIONS(3597), 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, - [32385] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [30577] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1516), 2, + ACTIONS(3967), 1, + anon_sym_COLON_COLON, + STATE(1513), 2, sym_line_comment, sym_block_comment, - ACTIONS(3295), 16, + ACTIONS(1307), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, - anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -137470,10 +138633,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3297), 25, + ACTIONS(1305), 28, + anon_sym_SEMI, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -137493,20 +138660,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, anon_sym_as, - [32441] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_else, + [30638] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3981), 1, - anon_sym_COLON_COLON, - STATE(1517), 2, + STATE(1514), 2, sym_line_comment, sym_block_comment, - ACTIONS(3979), 9, + ACTIONS(3283), 12, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, @@ -137514,9 +138678,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_AMP, anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, anon_sym_SQUOTE, + sym_integer_literal, sym_metavariable, - ACTIONS(3977), 31, + ACTIONS(3281), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -137540,6 +138707,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, @@ -137548,38 +138716,102 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [32499] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [30697] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3539), 1, - anon_sym_LBRACE, - STATE(1518), 2, + STATE(1515), 2, sym_line_comment, sym_block_comment, - ACTIONS(3295), 16, + ACTIONS(3971), 15, + sym__raw_string_literal_start, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DASH, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_DOT_DOT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(3969), 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__, + anon_sym_const, + anon_sym_default, + anon_sym_union, + anon_sym_ref, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [30756] = 13, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3687), 1, + anon_sym_LBRACK, + ACTIONS(3691), 1, + anon_sym_QMARK, + ACTIONS(3693), 1, + anon_sym_DOT, + ACTIONS(3901), 1, + anon_sym_as, + ACTIONS(3977), 1, + anon_sym_AMP, + ACTIONS(3973), 2, anon_sym_PLUS, - anon_sym_STAR, anon_sym_DASH, + ACTIONS(3979), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1516), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3975), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3899), 6, anon_sym_CARET, - anon_sym_BANG, - anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3297), 24, + ACTIONS(3897), 25, + anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -137598,43 +138830,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_as, - [32557] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_else, + [30830] = 10, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3295), 1, - anon_sym_BANG, - ACTIONS(3297), 1, - anon_sym_COLON_COLON, - STATE(1519), 2, + ACTIONS(3687), 1, + anon_sym_LBRACK, + ACTIONS(3691), 1, + anon_sym_QMARK, + ACTIONS(3693), 1, + anon_sym_DOT, + ACTIONS(3901), 1, + anon_sym_as, + STATE(1517), 2, sym_line_comment, sym_block_comment, - ACTIONS(3293), 17, - anon_sym_PLUS, + ACTIONS(3975), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3899), 11, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3291), 22, + ACTIONS(3897), 25, + anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -137645,52 +138880,203 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - anon_sym_LT2, - [32617] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_else, + [30898] = 21, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3939), 1, - anon_sym_LPAREN, - ACTIONS(3945), 1, - anon_sym_LT2, - STATE(1583), 1, - sym_type_arguments, - STATE(1614), 1, - sym_parameters, - STATE(1520), 2, + ACTIONS(347), 1, + anon_sym_EQ, + ACTIONS(3687), 1, + anon_sym_LBRACK, + ACTIONS(3691), 1, + anon_sym_QMARK, + ACTIONS(3693), 1, + anon_sym_DOT, + ACTIONS(3901), 1, + anon_sym_as, + ACTIONS(3977), 1, + anon_sym_AMP, + ACTIONS(3981), 1, + anon_sym_CARET, + ACTIONS(3983), 1, + anon_sym_PIPE, + ACTIONS(3985), 1, + anon_sym_AMP_AMP, + ACTIONS(3987), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3993), 1, + anon_sym_DOT_DOT, + ACTIONS(3973), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3979), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3991), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3995), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1518), 2, sym_line_comment, sym_block_comment, - ACTIONS(3285), 17, - anon_sym_PLUS, + ACTIONS(3975), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(3989), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(341), 17, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_else, + [30988] = 21, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3687), 1, + anon_sym_LBRACK, + ACTIONS(3691), 1, + anon_sym_QMARK, + ACTIONS(3693), 1, + anon_sym_DOT, + ACTIONS(3901), 1, + anon_sym_as, + ACTIONS(3977), 1, anon_sym_AMP, + ACTIONS(3981), 1, + anon_sym_CARET, + ACTIONS(3983), 1, anon_sym_PIPE, + ACTIONS(3985), 1, + anon_sym_AMP_AMP, + ACTIONS(3987), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3993), 1, + anon_sym_DOT_DOT, + ACTIONS(3999), 1, + anon_sym_EQ, + ACTIONS(3973), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, - anon_sym_EQ, + ACTIONS(3991), 2, anon_sym_GT, anon_sym_LT, + ACTIONS(3995), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1519), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3975), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3989), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3283), 20, + ACTIONS(3997), 17, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_else, + [31078] = 17, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3687), 1, anon_sym_LBRACK, - anon_sym_EQ_GT, + ACTIONS(3691), 1, anon_sym_QMARK, + ACTIONS(3693), 1, + anon_sym_DOT, + ACTIONS(3901), 1, + anon_sym_as, + ACTIONS(3977), 1, + anon_sym_AMP, + ACTIONS(3981), 1, + anon_sym_CARET, + ACTIONS(3983), 1, + anon_sym_PIPE, + ACTIONS(3899), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(3973), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3979), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3991), 2, + anon_sym_GT, + anon_sym_LT, + STATE(1520), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3975), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3989), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3897), 21, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -137701,43 +139087,193 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [32681] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_else, + [31160] = 21, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(3687), 1, + anon_sym_LBRACK, + ACTIONS(3691), 1, + anon_sym_QMARK, + ACTIONS(3693), 1, + anon_sym_DOT, + ACTIONS(3901), 1, + anon_sym_as, + ACTIONS(3977), 1, + anon_sym_AMP, + ACTIONS(3981), 1, + anon_sym_CARET, + ACTIONS(3983), 1, + anon_sym_PIPE, + ACTIONS(3985), 1, + anon_sym_AMP_AMP, + ACTIONS(3987), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3993), 1, + anon_sym_DOT_DOT, + ACTIONS(4003), 1, + anon_sym_EQ, + ACTIONS(3973), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3979), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3991), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3995), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(1521), 2, sym_line_comment, sym_block_comment, - ACTIONS(3279), 16, - anon_sym_PLUS, + ACTIONS(3975), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3989), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4001), 17, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_else, + [31250] = 21, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3687), 1, + anon_sym_LBRACK, + ACTIONS(3691), 1, + anon_sym_QMARK, + ACTIONS(3693), 1, + anon_sym_DOT, + ACTIONS(3901), 1, + anon_sym_as, + ACTIONS(3977), 1, + anon_sym_AMP, + ACTIONS(3981), 1, anon_sym_CARET, - anon_sym_BANG, + ACTIONS(3983), 1, + anon_sym_PIPE, + ACTIONS(3985), 1, + anon_sym_AMP_AMP, + ACTIONS(3987), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3993), 1, + anon_sym_DOT_DOT, + ACTIONS(4007), 1, + anon_sym_EQ, + ACTIONS(3973), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3979), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3991), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3995), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1522), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3975), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3989), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4005), 17, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_else, + [31340] = 15, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3687), 1, + anon_sym_LBRACK, + ACTIONS(3691), 1, + anon_sym_QMARK, + ACTIONS(3693), 1, + anon_sym_DOT, + ACTIONS(3901), 1, + anon_sym_as, + ACTIONS(3977), 1, anon_sym_AMP, + ACTIONS(3981), 1, + anon_sym_CARET, + ACTIONS(3983), 1, anon_sym_PIPE, + ACTIONS(3973), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3979), 2, anon_sym_LT_LT, anon_sym_GT_GT, + STATE(1523), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3975), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3899), 4, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3281), 25, + ACTIONS(3897), 25, + anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_QMARK, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -137756,41 +139292,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - anon_sym_as, - [32737] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_else, + [31418] = 14, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3398), 1, - anon_sym_LBRACE, - STATE(1522), 2, + ACTIONS(3687), 1, + anon_sym_LBRACK, + ACTIONS(3691), 1, + anon_sym_QMARK, + ACTIONS(3693), 1, + anon_sym_DOT, + ACTIONS(3901), 1, + anon_sym_as, + ACTIONS(3977), 1, + anon_sym_AMP, + ACTIONS(3981), 1, + anon_sym_CARET, + ACTIONS(3973), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3979), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1524), 2, sym_line_comment, sym_block_comment, - ACTIONS(3279), 16, - anon_sym_PLUS, + ACTIONS(3975), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_BANG, - anon_sym_AMP, + ACTIONS(3899), 5, anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3281), 24, + ACTIONS(3897), 25, + anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -137809,38 +139354,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_as, - [32795] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_else, + [31494] = 12, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1523), 2, + ACTIONS(3687), 1, + anon_sym_LBRACK, + ACTIONS(3691), 1, + anon_sym_QMARK, + ACTIONS(3693), 1, + anon_sym_DOT, + ACTIONS(3901), 1, + anon_sym_as, + ACTIONS(3973), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3979), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1525), 2, sym_line_comment, sym_block_comment, - ACTIONS(3311), 16, - anon_sym_PLUS, + ACTIONS(3975), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3899), 7, anon_sym_CARET, - anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3313), 25, + ACTIONS(3897), 25, + anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_QMARK, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -137859,43 +139414,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - anon_sym_as, - [32851] = 6, - ACTIONS(101), 1, + anon_sym_else, + [31566] = 21, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3687), 1, + anon_sym_LBRACK, + ACTIONS(3691), 1, + anon_sym_QMARK, + ACTIONS(3693), 1, + anon_sym_DOT, + ACTIONS(3901), 1, + anon_sym_as, + ACTIONS(3977), 1, + anon_sym_AMP, + ACTIONS(3981), 1, + anon_sym_CARET, + ACTIONS(3983), 1, + anon_sym_PIPE, + ACTIONS(3985), 1, + anon_sym_AMP_AMP, + ACTIONS(3987), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3993), 1, + anon_sym_DOT_DOT, + ACTIONS(4011), 1, + anon_sym_EQ, + ACTIONS(3973), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3979), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3991), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3995), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1526), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3975), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3989), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4009), 17, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_else, + [31656] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3455), 1, - anon_sym_LBRACE, - STATE(1524), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3271), 16, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_BANG, + ACTIONS(3687), 1, + anon_sym_LBRACK, + ACTIONS(3691), 1, + anon_sym_QMARK, + ACTIONS(3693), 1, + anon_sym_DOT, + ACTIONS(3901), 1, + anon_sym_as, + ACTIONS(3977), 1, anon_sym_AMP, + ACTIONS(3981), 1, + anon_sym_CARET, + ACTIONS(3983), 1, anon_sym_PIPE, + ACTIONS(3985), 1, + anon_sym_AMP_AMP, + ACTIONS(3987), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3993), 1, + anon_sym_DOT_DOT, + ACTIONS(4015), 1, + anon_sym_EQ, + ACTIONS(3973), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(3991), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3273), 24, + ACTIONS(3995), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1527), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3975), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3989), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3637), 7, + anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_else, + ACTIONS(4013), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -137906,46 +139554,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_as, - [32909] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [31748] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1525), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3271), 16, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_BANG, + ACTIONS(3687), 1, + anon_sym_LBRACK, + ACTIONS(3691), 1, + anon_sym_QMARK, + ACTIONS(3693), 1, + anon_sym_DOT, + ACTIONS(3901), 1, + anon_sym_as, + ACTIONS(3977), 1, anon_sym_AMP, + ACTIONS(3981), 1, + anon_sym_CARET, + ACTIONS(3983), 1, anon_sym_PIPE, + ACTIONS(3985), 1, + anon_sym_AMP_AMP, + ACTIONS(3987), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3993), 1, + anon_sym_DOT_DOT, + ACTIONS(4015), 1, + anon_sym_EQ, + ACTIONS(3973), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(3991), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3273), 25, + ACTIONS(3995), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1528), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3975), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3989), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3881), 7, + anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_else, + ACTIONS(4013), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -137956,32 +139624,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - anon_sym_as, - [32965] = 9, - ACTIONS(101), 1, + [31840] = 25, + ACTIONS(31), 1, + anon_sym_LT, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1403), 1, + anon_sym_extern, + ACTIONS(3157), 1, + anon_sym_fn, + ACTIONS(3591), 1, + anon_sym_COLON_COLON, + ACTIONS(3593), 1, + anon_sym_default, + ACTIONS(3597), 1, + anon_sym_union, + ACTIONS(3601), 1, + sym_metavariable, + ACTIONS(4017), 1, + sym_identifier, + ACTIONS(4019), 1, + anon_sym_for, + STATE(1564), 1, + sym_scoped_type_identifier, + STATE(1627), 1, + sym_generic_type, + STATE(1661), 1, + sym_for_lifetimes, + STATE(2255), 1, + aux_sym_function_modifiers_repeat1, + STATE(2359), 1, + sym_extern_modifier, + STATE(3567), 1, + sym_function_modifiers, + STATE(3602), 1, + sym_scoped_identifier, + STATE(3619), 1, + sym_generic_type_with_turbofish, + STATE(3625), 1, + sym_bracketed_type, + STATE(1529), 2, + sym_line_comment, + sym_block_comment, + STATE(1817), 2, + sym_higher_ranked_trait_bound, + sym_function_type, + ACTIONS(1389), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3599), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(3589), 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, + [31938] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3939), 1, - anon_sym_LPAREN, - ACTIONS(3945), 1, - anon_sym_LT2, - STATE(1583), 1, - sym_type_arguments, - STATE(1614), 1, - sym_parameters, - STATE(1526), 2, + ACTIONS(3403), 1, + anon_sym_LBRACE, + ACTIONS(3405), 1, + anon_sym_COLON_COLON, + ACTIONS(4021), 1, + anon_sym_BANG, + STATE(1491), 1, + sym_field_initializer_list, + STATE(1530), 2, sym_line_comment, sym_block_comment, - ACTIONS(3301), 17, + ACTIONS(1307), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137992,16 +139724,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3299), 20, + ACTIONS(1305), 24, + anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_EQ_GT, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -138013,26 +139745,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [33029] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [32004] = 11, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3271), 1, + ACTIONS(4023), 1, + anon_sym_LPAREN, + ACTIONS(4025), 1, anon_sym_BANG, - ACTIONS(3273), 1, + ACTIONS(4027), 1, anon_sym_COLON_COLON, - STATE(1527), 2, + ACTIONS(4029), 1, + anon_sym_LT2, + STATE(1626), 1, + sym_parameters, + STATE(1644), 1, + sym_type_arguments, + STATE(1531), 2, sym_line_comment, sym_block_comment, - ACTIONS(3269), 17, + ACTIONS(3323), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138050,8 +139792,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3267), 22, - anon_sym_LPAREN, + ACTIONS(3319), 20, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, @@ -138072,27 +139813,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - anon_sym_LT2, - [33089] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [32074] = 25, + ACTIONS(31), 1, + anon_sym_LT, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1528), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3817), 10, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_LT, + ACTIONS(1403), 1, + anon_sym_extern, + ACTIONS(3193), 1, + anon_sym_fn, + ACTIONS(3470), 1, anon_sym_COLON_COLON, - anon_sym_SQUOTE, + ACTIONS(3472), 1, + anon_sym_default, + ACTIONS(3474), 1, + anon_sym_union, + ACTIONS(3478), 1, sym_metavariable, - ACTIONS(3815), 31, + ACTIONS(4031), 1, + sym_identifier, + ACTIONS(4033), 1, + anon_sym_for, + STATE(1045), 1, + sym_scoped_type_identifier, + STATE(1187), 1, + sym_generic_type, + STATE(1668), 1, + sym_for_lifetimes, + STATE(2255), 1, + aux_sym_function_modifiers_repeat1, + STATE(2359), 1, + sym_extern_modifier, + STATE(3424), 1, + sym_function_modifiers, + STATE(3577), 1, + sym_scoped_identifier, + STATE(3611), 1, + sym_generic_type_with_turbofish, + STATE(3621), 1, + sym_bracketed_type, + STATE(1485), 2, + sym_higher_ranked_trait_bound, + sym_function_type, + STATE(1532), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1389), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3476), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(3468), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -138110,56 +139886,58 @@ 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, - [33145] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [32172] = 18, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3311), 1, - anon_sym_BANG, - ACTIONS(3313), 1, - anon_sym_COLON_COLON, - STATE(1529), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3309), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(3687), 1, + anon_sym_LBRACK, + ACTIONS(3691), 1, + anon_sym_QMARK, + ACTIONS(3693), 1, + anon_sym_DOT, + ACTIONS(3901), 1, + anon_sym_as, + ACTIONS(3977), 1, anon_sym_AMP, + ACTIONS(3981), 1, + anon_sym_CARET, + ACTIONS(3983), 1, anon_sym_PIPE, + ACTIONS(3985), 1, + anon_sym_AMP_AMP, + ACTIONS(3899), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(3973), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, - anon_sym_EQ, + ACTIONS(3991), 2, anon_sym_GT, anon_sym_LT, + STATE(1533), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3975), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3989), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3307), 22, + ACTIONS(3897), 20, + anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -138169,54 +139947,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - anon_sym_LT2, - [33205] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_else, + [32256] = 19, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3939), 1, - anon_sym_LPAREN, - ACTIONS(3945), 1, - anon_sym_LT2, - STATE(1583), 1, - sym_type_arguments, - STATE(1614), 1, - sym_parameters, - STATE(1530), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3289), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(3687), 1, + anon_sym_LBRACK, + ACTIONS(3691), 1, + anon_sym_QMARK, + ACTIONS(3693), 1, + anon_sym_DOT, + ACTIONS(3901), 1, + anon_sym_as, + ACTIONS(3977), 1, anon_sym_AMP, + ACTIONS(3981), 1, + anon_sym_CARET, + ACTIONS(3983), 1, anon_sym_PIPE, + ACTIONS(3985), 1, + anon_sym_AMP_AMP, + ACTIONS(3987), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3973), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, - anon_sym_EQ, + ACTIONS(3991), 2, anon_sym_GT, anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_DOT, + ACTIONS(4037), 2, + anon_sym_EQ, anon_sym_DOT_DOT, - ACTIONS(3287), 20, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + STATE(1534), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3975), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3989), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4035), 19, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -138225,34 +140014,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [33269] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_else, + [32342] = 25, + ACTIONS(31), 1, + anon_sym_LT, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3984), 1, - anon_sym_LPAREN, - STATE(1531), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3979), 9, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_LT, + ACTIONS(1395), 1, + anon_sym_fn, + ACTIONS(1403), 1, + anon_sym_extern, + ACTIONS(3229), 1, + anon_sym_for, + ACTIONS(3426), 1, anon_sym_COLON_COLON, - anon_sym_SQUOTE, + ACTIONS(3430), 1, + anon_sym_union, + ACTIONS(3436), 1, sym_metavariable, - ACTIONS(3977), 31, + ACTIONS(3516), 1, + anon_sym_default, + ACTIONS(4039), 1, + sym_identifier, + STATE(1634), 1, + sym_for_lifetimes, + STATE(1948), 1, + sym_scoped_type_identifier, + STATE(1993), 1, + sym_generic_type, + STATE(2255), 1, + aux_sym_function_modifiers_repeat1, + STATE(2359), 1, + sym_extern_modifier, + STATE(3426), 1, + sym_generic_type_with_turbofish, + STATE(3442), 1, + sym_scoped_identifier, + STATE(3553), 1, + sym_function_modifiers, + STATE(3563), 1, + sym_bracketed_type, + STATE(1535), 2, + sym_line_comment, + sym_block_comment, + STATE(2014), 2, + sym_higher_ranked_trait_bound, + sym_function_type, + ACTIONS(1389), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3434), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(3514), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -138270,60 +140092,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_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [33327] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [32440] = 21, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3939), 1, - anon_sym_LPAREN, - ACTIONS(3945), 1, - anon_sym_LT2, - STATE(1583), 1, - sym_type_arguments, - STATE(1614), 1, - sym_parameters, - STATE(1532), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3305), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(3687), 1, + anon_sym_LBRACK, + ACTIONS(3691), 1, + anon_sym_QMARK, + ACTIONS(3693), 1, + anon_sym_DOT, + ACTIONS(3901), 1, + anon_sym_as, + ACTIONS(3977), 1, anon_sym_AMP, + ACTIONS(3981), 1, + anon_sym_CARET, + ACTIONS(3983), 1, anon_sym_PIPE, + ACTIONS(3985), 1, + anon_sym_AMP_AMP, + ACTIONS(3987), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3993), 1, + anon_sym_DOT_DOT, + ACTIONS(4043), 1, + anon_sym_EQ, + ACTIONS(3973), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, - anon_sym_EQ, + ACTIONS(3991), 2, anon_sym_GT, anon_sym_LT, + ACTIONS(3995), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1536), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3975), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3989), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3303), 20, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4041), 17, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -138331,49 +140157,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [33391] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_else, + [32530] = 11, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3279), 1, - anon_sym_BANG, - ACTIONS(3281), 1, - anon_sym_COLON_COLON, - STATE(1533), 2, + ACTIONS(3687), 1, + anon_sym_LBRACK, + ACTIONS(3691), 1, + anon_sym_QMARK, + ACTIONS(3693), 1, + anon_sym_DOT, + ACTIONS(3901), 1, + anon_sym_as, + ACTIONS(3973), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1537), 2, sym_line_comment, sym_block_comment, - ACTIONS(3277), 17, - anon_sym_PLUS, + ACTIONS(3975), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3899), 9, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3275), 22, + ACTIONS(3897), 25, + anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -138384,50 +140211,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - anon_sym_LT2, - [33451] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_else, + [32600] = 19, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3861), 1, - anon_sym_COLON_COLON, - ACTIONS(3927), 1, - anon_sym_BANG, - STATE(1534), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1416), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(3687), 1, + anon_sym_LBRACK, + ACTIONS(3691), 1, + anon_sym_QMARK, + ACTIONS(3693), 1, + anon_sym_DOT, + ACTIONS(3901), 1, + anon_sym_as, + ACTIONS(3977), 1, anon_sym_AMP, + ACTIONS(3981), 1, + anon_sym_CARET, + ACTIONS(3983), 1, anon_sym_PIPE, + ACTIONS(3985), 1, + anon_sym_AMP_AMP, + ACTIONS(3987), 1, + anon_sym_PIPE_PIPE, + ACTIONS(375), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(3973), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(3991), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1418), 24, + STATE(1538), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3975), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3989), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(373), 19, anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -138438,48 +140284,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [33511] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_else, + [32686] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3247), 1, - anon_sym_BANG, + ACTIONS(3687), 1, + anon_sym_LBRACK, + ACTIONS(3691), 1, + anon_sym_QMARK, + ACTIONS(3693), 1, + anon_sym_DOT, + ACTIONS(3901), 1, + anon_sym_as, + ACTIONS(3977), 1, + anon_sym_AMP, + ACTIONS(3981), 1, + anon_sym_CARET, + ACTIONS(3983), 1, + anon_sym_PIPE, + ACTIONS(3985), 1, + anon_sym_AMP_AMP, ACTIONS(3987), 1, - anon_sym_COLON_COLON, - STATE(1535), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1416), 15, + anon_sym_PIPE_PIPE, + ACTIONS(3993), 1, + anon_sym_DOT_DOT, + ACTIONS(4015), 1, + anon_sym_EQ, + ACTIONS(3973), 2, anon_sym_PLUS, - anon_sym_STAR, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(3979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(3991), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1418), 24, + ACTIONS(3995), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1539), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3975), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3989), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3777), 7, + anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_else, + ACTIONS(4013), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -138490,78 +140357,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, - anon_sym_as, - [33571] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [32778] = 10, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1536), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3647), 10, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - sym_metavariable, - ACTIONS(3645), 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, - [33627] = 7, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3653), 1, - anon_sym_BANG, - ACTIONS(3989), 1, + ACTIONS(4023), 1, + anon_sym_LPAREN, + ACTIONS(4029), 1, + anon_sym_LT2, + ACTIONS(4045), 1, anon_sym_COLON_COLON, - STATE(1537), 2, + STATE(1626), 1, + sym_parameters, + STATE(1644), 1, + sym_type_arguments, + STATE(1540), 2, sym_line_comment, sym_block_comment, - ACTIONS(3317), 15, + ACTIONS(3333), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138572,15 +140386,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3315), 24, - anon_sym_LPAREN, + ACTIONS(3331), 20, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -138592,45 +140407,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, anon_sym_as, - [33687] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [32845] = 10, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3346), 1, - anon_sym_LBRACE, - STATE(1538), 2, + ACTIONS(4023), 1, + anon_sym_LPAREN, + ACTIONS(4029), 1, + anon_sym_LT2, + ACTIONS(4045), 1, + anon_sym_COLON_COLON, + STATE(1626), 1, + sym_parameters, + STATE(1644), 1, + sym_type_arguments, + STATE(1541), 2, sym_line_comment, sym_block_comment, - ACTIONS(3311), 16, + ACTIONS(3343), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, - anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3313), 24, - anon_sym_LPAREN, + ACTIONS(3341), 20, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, @@ -138644,36 +140464,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, anon_sym_as, - [33745] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [32912] = 19, + ACTIONS(31), 1, + anon_sym_LT, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1539), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3993), 10, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_LT, + ACTIONS(1631), 1, + anon_sym_DASH, + ACTIONS(1655), 1, + aux_sym_string_literal_token1, + ACTIONS(1663), 1, + sym__raw_string_literal_start, + ACTIONS(3859), 1, + sym_identifier, + ACTIONS(3863), 1, anon_sym_COLON_COLON, - anon_sym_SQUOTE, + ACTIONS(3867), 1, sym_metavariable, - ACTIONS(3991), 31, + STATE(2589), 1, + sym_scoped_identifier, + STATE(3018), 1, + sym__literal_pattern, + STATE(3559), 1, + sym_bracketed_type, + STATE(3572), 1, + sym_generic_type_with_turbofish, + ACTIONS(1657), 2, + anon_sym_true, + anon_sym_false, + STATE(1542), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1653), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3865), 3, + sym_self, + sym_super, + sym_crate, + STATE(2383), 4, + sym_negative_literal, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + ACTIONS(3861), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -138691,40 +140535,55 @@ 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, - [33801] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [32997] = 19, + ACTIONS(31), 1, + anon_sym_LT, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1540), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3997), 10, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_LT, + ACTIONS(1369), 1, + anon_sym_DASH, + ACTIONS(1413), 1, + aux_sym_string_literal_token1, + ACTIONS(1423), 1, + sym__raw_string_literal_start, + ACTIONS(1677), 1, anon_sym_COLON_COLON, - anon_sym_SQUOTE, + ACTIONS(3307), 1, + sym_identifier, + ACTIONS(3317), 1, sym_metavariable, - ACTIONS(3995), 31, + STATE(2082), 1, + sym_scoped_identifier, + STATE(2117), 1, + sym__literal_pattern, + STATE(3408), 1, + sym_bracketed_type, + STATE(3436), 1, + sym_generic_type_with_turbofish, + ACTIONS(1415), 2, + anon_sym_true, + anon_sym_false, + STATE(1543), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1411), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3315), 3, + sym_self, + sym_super, + sym_crate, + STATE(2048), 4, + sym_negative_literal, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + ACTIONS(3313), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -138742,40 +140601,55 @@ 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, - [33857] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [33082] = 19, + ACTIONS(31), 1, + anon_sym_LT, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1541), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4001), 10, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_LT, + ACTIONS(1631), 1, + anon_sym_DASH, + ACTIONS(1655), 1, + aux_sym_string_literal_token1, + ACTIONS(1663), 1, + sym__raw_string_literal_start, + ACTIONS(3863), 1, anon_sym_COLON_COLON, - anon_sym_SQUOTE, + ACTIONS(3885), 1, + sym_identifier, + ACTIONS(3891), 1, sym_metavariable, - ACTIONS(3999), 31, + STATE(2580), 1, + sym_scoped_identifier, + STATE(3023), 1, + sym__literal_pattern, + STATE(3559), 1, + sym_bracketed_type, + STATE(3572), 1, + sym_generic_type_with_turbofish, + ACTIONS(1657), 2, + anon_sym_true, + anon_sym_false, + STATE(1544), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1653), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3889), 3, + sym_self, + sym_super, + sym_crate, + STATE(2383), 4, + sym_negative_literal, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + ACTIONS(3887), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -138793,31 +140667,25 @@ 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, - [33913] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [33167] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1386), 1, - sym_label, - STATE(1542), 2, + ACTIONS(4025), 1, + anon_sym_BANG, + ACTIONS(4047), 1, + anon_sym_LBRACE, + ACTIONS(4049), 1, + anon_sym_COLON_COLON, + STATE(1795), 1, + sym_field_initializer_list, + STATE(1545), 2, sym_line_comment, sym_block_comment, - ACTIONS(3342), 15, + ACTIONS(1307), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138833,10 +140701,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3340), 24, + ACTIONS(1305), 23, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -138856,91 +140724,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, anon_sym_as, - [33970] = 25, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [33232] = 19, + ACTIONS(31), 1, + anon_sym_LT, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1003), 1, - anon_sym_RBRACK, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, - anon_sym_CARET, - ACTIONS(3903), 1, - anon_sym_AMP, - ACTIONS(3905), 1, - anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(4003), 1, - anon_sym_SEMI, - ACTIONS(4005), 1, - anon_sym_DOT_DOT, - ACTIONS(4009), 1, - anon_sym_COMMA, - STATE(2960), 1, - aux_sym_arguments_repeat1, - ACTIONS(3897), 2, - anon_sym_PLUS, + ACTIONS(1369), 1, anon_sym_DASH, - ACTIONS(3911), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3917), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4007), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1543), 2, + ACTIONS(1413), 1, + aux_sym_string_literal_token1, + ACTIONS(1423), 1, + sym__raw_string_literal_start, + ACTIONS(1677), 1, + anon_sym_COLON_COLON, + ACTIONS(3295), 1, + sym_identifier, + ACTIONS(3305), 1, + sym_metavariable, + STATE(2085), 1, + sym_scoped_identifier, + STATE(2141), 1, + sym__literal_pattern, + STATE(3408), 1, + sym_bracketed_type, + STATE(3436), 1, + sym_generic_type_with_turbofish, + ACTIONS(1415), 2, + anon_sym_true, + anon_sym_false, + STATE(1546), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3929), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [34065] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(1411), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3303), 3, + sym_self, + sym_super, + sym_crate, + STATE(2048), 4, + sym_negative_literal, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + ACTIONS(3301), 19, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_default, + anon_sym_union, + [33317] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4011), 1, - anon_sym_SQUOTE, - STATE(1647), 1, - sym_label, - STATE(1544), 2, + ACTIONS(3325), 1, + anon_sym_BANG, + ACTIONS(4051), 1, + anon_sym_COLON_COLON, + STATE(1491), 1, + sym_field_initializer_list, + STATE(1547), 2, sym_line_comment, sym_block_comment, - ACTIONS(3342), 15, + ACTIONS(1307), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138956,10 +140821,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3340), 23, + ACTIONS(1305), 24, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -138979,23 +140844,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, anon_sym_as, - [34124] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [33380] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1545), 2, + ACTIONS(3397), 1, + anon_sym_BANG, + ACTIONS(3399), 1, + anon_sym_COLON_COLON, + ACTIONS(4053), 1, + sym_identifier, + STATE(1548), 2, sym_line_comment, sym_block_comment, - ACTIONS(3279), 16, + ACTIONS(3395), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, - anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -139005,10 +140876,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3281), 24, + anon_sym_as, + ACTIONS(3393), 23, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_EQ_GT, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -139028,21 +140901,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_as, - [34179] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [33443] = 10, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3941), 1, - anon_sym_BANG, - ACTIONS(4013), 1, + ACTIONS(4023), 1, + anon_sym_LPAREN, + ACTIONS(4029), 1, + anon_sym_LT2, + ACTIONS(4045), 1, anon_sym_COLON_COLON, - STATE(1546), 2, + STATE(1626), 1, + sym_parameters, + STATE(1644), 1, + sym_type_arguments, + STATE(1549), 2, sym_line_comment, sym_block_comment, - ACTIONS(1416), 15, + ACTIONS(3339), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139053,13 +140930,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1418), 23, - anon_sym_LPAREN, + ACTIONS(3337), 20, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, @@ -139073,24 +140951,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [34238] = 5, - ACTIONS(101), 1, + [33510] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1550), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3683), 10, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + sym_metavariable, + ACTIONS(3681), 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, + [33566] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1547), 2, + ACTIONS(3565), 1, + anon_sym_LBRACE, + STATE(1551), 2, sym_line_comment, sym_block_comment, - ACTIONS(3295), 16, + ACTIONS(3373), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139107,7 +141036,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3297), 24, + ACTIONS(3375), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -139132,19 +141061,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_as, - [34293] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [33624] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4015), 1, + ACTIONS(3373), 1, anon_sym_BANG, - ACTIONS(4017), 1, + ACTIONS(3375), 1, anon_sym_COLON_COLON, - STATE(1548), 2, + STATE(1552), 2, sym_line_comment, sym_block_comment, - ACTIONS(3317), 15, + ACTIONS(3371), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139155,12 +141084,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3315), 23, + ACTIONS(3369), 22, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -139175,100 +141106,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [34352] = 25, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_LT2, + [33684] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(955), 1, - anon_sym_RBRACK, - ACTIONS(3667), 1, + ACTIONS(4059), 1, + anon_sym_COLON_COLON, + STATE(1553), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4057), 9, + anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(3671), 1, + anon_sym_STAR, anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, - anon_sym_CARET, - ACTIONS(3903), 1, + anon_sym_BANG, anon_sym_AMP, - ACTIONS(3905), 1, - anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(4005), 1, - anon_sym_DOT_DOT, - ACTIONS(4019), 1, - anon_sym_SEMI, - ACTIONS(4021), 1, - anon_sym_COMMA, - STATE(2774), 1, - aux_sym_arguments_repeat1, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3917), 2, - anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1549), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3899), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3929), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [34447] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_SQUOTE, + sym_metavariable, + ACTIONS(4055), 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, + [33742] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1550), 2, + STATE(1554), 2, sym_line_comment, sym_block_comment, - ACTIONS(3463), 15, + ACTIONS(3353), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, + anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -139278,11 +141191,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3461), 25, + ACTIONS(3355), 25, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -139303,89 +141215,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - anon_sym_as, - [34502] = 25, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(1210), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, anon_sym_SQUOTE, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, anon_sym_as, - ACTIONS(4027), 1, - anon_sym_CARET, - ACTIONS(4029), 1, - anon_sym_AMP, - ACTIONS(4031), 1, - anon_sym_PIPE, - ACTIONS(4033), 1, - anon_sym_AMP_AMP, - ACTIONS(4035), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4041), 1, - anon_sym_EQ, - ACTIONS(4047), 1, - anon_sym_DOT_DOT, - STATE(469), 1, - sym_block, - STATE(3590), 1, - sym_label, - ACTIONS(4023), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4037), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4045), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4049), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1551), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4025), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4043), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4039), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [34597] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [33798] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3827), 2, - anon_sym_LBRACE, + ACTIONS(3385), 1, + anon_sym_BANG, + ACTIONS(3387), 1, anon_sym_COLON_COLON, - STATE(1552), 2, + STATE(1555), 2, sym_line_comment, sym_block_comment, - ACTIONS(3545), 15, + ACTIONS(3383), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139396,12 +141240,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3543), 23, + ACTIONS(3381), 22, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -139416,26 +141262,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [34654] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_LT2, + [33858] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3989), 1, + ACTIONS(3365), 1, + anon_sym_BANG, + ACTIONS(3367), 1, anon_sym_COLON_COLON, - STATE(1553), 2, + STATE(1556), 2, sym_line_comment, sym_block_comment, - ACTIONS(3317), 15, + ACTIONS(3363), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139446,15 +141293,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3315), 24, + ACTIONS(3361), 22, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -139466,35 +141315,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, anon_sym_as, - [34711] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_LT2, + [33918] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4051), 1, - anon_sym_else, - STATE(1766), 1, - sym_else_clause, - STATE(1554), 2, + STATE(1557), 2, sym_line_comment, sym_block_comment, - ACTIONS(1196), 15, + ACTIONS(3373), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, + anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -139504,10 +141348,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1194), 23, + ACTIONS(3375), 25, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -139527,92 +141371,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, anon_sym_as, - [34770] = 25, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [33974] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(915), 1, - anon_sym_RBRACK, - ACTIONS(3667), 1, + STATE(1558), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3755), 10, + anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(3671), 1, + anon_sym_STAR, anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, - anon_sym_CARET, - ACTIONS(3903), 1, + anon_sym_BANG, anon_sym_AMP, - ACTIONS(3905), 1, - anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(4005), 1, - anon_sym_DOT_DOT, - ACTIONS(4053), 1, - anon_sym_SEMI, - ACTIONS(4055), 1, - anon_sym_COMMA, - STATE(2777), 1, - aux_sym_arguments_repeat1, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3917), 2, - anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1555), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3899), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3929), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [34865] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + sym_metavariable, + ACTIONS(3753), 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, + [34030] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1556), 2, + ACTIONS(3444), 1, + anon_sym_LBRACE, + STATE(1559), 2, sym_line_comment, sym_block_comment, - ACTIONS(3350), 15, + ACTIONS(3385), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, + anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -139622,10 +141452,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3348), 25, + ACTIONS(3387), 24, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -139648,15 +141477,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_as, - [34920] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [34088] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1557), 2, + ACTIONS(4023), 1, + anon_sym_LPAREN, + ACTIONS(4029), 1, + anon_sym_LT2, + STATE(1625), 1, + sym_parameters, + STATE(1641), 1, + sym_type_arguments, + STATE(1560), 2, sym_line_comment, sym_block_comment, - ACTIONS(3406), 15, + ACTIONS(3391), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139667,15 +141504,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3404), 25, - anon_sym_LPAREN, + ACTIONS(3389), 20, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -139688,27 +141525,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, anon_sym_as, - [34975] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [34152] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4057), 1, - anon_sym_COLON_COLON, - STATE(1558), 2, + ACTIONS(4023), 1, + anon_sym_LPAREN, + ACTIONS(4029), 1, + anon_sym_LT2, + STATE(1625), 1, + sym_parameters, + STATE(1641), 1, + sym_type_arguments, + STATE(1561), 2, sym_line_comment, sym_block_comment, - ACTIONS(1416), 15, + ACTIONS(3359), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139719,15 +141559,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1418), 24, - anon_sym_LPAREN, + ACTIONS(3357), 20, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -139739,25 +141580,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, anon_sym_as, - [35032] = 5, - ACTIONS(101), 1, + [34216] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1562), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4064), 10, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + sym_metavariable, + ACTIONS(4062), 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, + [34272] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1559), 2, + ACTIONS(3723), 1, + anon_sym_COLON_COLON, + ACTIONS(4021), 1, + anon_sym_BANG, + STATE(1563), 2, sym_line_comment, sym_block_comment, - ACTIONS(3410), 15, + ACTIONS(1307), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139773,11 +141666,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3408), 25, + ACTIONS(1305), 24, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ_GT, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -139797,68 +141690,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, anon_sym_as, - [35087] = 25, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [34332] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(4027), 1, - anon_sym_CARET, + ACTIONS(4023), 1, + anon_sym_LPAREN, ACTIONS(4029), 1, - anon_sym_AMP, - ACTIONS(4031), 1, - anon_sym_PIPE, - ACTIONS(4033), 1, - anon_sym_AMP_AMP, - ACTIONS(4035), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4041), 1, - anon_sym_EQ, - ACTIONS(4047), 1, - anon_sym_DOT_DOT, - STATE(376), 1, - sym_block, - STATE(3510), 1, - sym_label, - ACTIONS(4023), 2, + anon_sym_LT2, + STATE(1625), 1, + sym_parameters, + STATE(1641), 1, + sym_type_arguments, + STATE(1564), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3347), 17, anon_sym_PLUS, + anon_sym_STAR, anon_sym_DASH, - ACTIONS(4037), 2, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4045), 2, + anon_sym_LT_LT_EQ, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4049), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1560), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4025), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4043), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4039), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3345), 20, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139867,17 +141739,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35182] = 5, - ACTIONS(101), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [34396] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1565), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4068), 10, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + sym_metavariable, + ACTIONS(4066), 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, + [34452] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1561), 2, + ACTIONS(3544), 1, + anon_sym_LBRACE, + STATE(1566), 2, sym_line_comment, sym_block_comment, - ACTIONS(3271), 16, + ACTIONS(3365), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139894,7 +141824,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3273), 24, + ACTIONS(3367), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -139919,136 +141849,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_as, - [35237] = 25, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [34510] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(4027), 1, - anon_sym_CARET, - ACTIONS(4029), 1, - anon_sym_AMP, - ACTIONS(4031), 1, - anon_sym_PIPE, - ACTIONS(4033), 1, - anon_sym_AMP_AMP, - ACTIONS(4035), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4041), 1, - anon_sym_EQ, - ACTIONS(4047), 1, - anon_sym_DOT_DOT, - STATE(1127), 1, - sym_block, - STATE(3539), 1, - sym_label, - ACTIONS(4023), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4037), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4045), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4049), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1562), 2, + STATE(1567), 2, sym_line_comment, sym_block_comment, - ACTIONS(4025), 3, + ACTIONS(3385), 16, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4043), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4039), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [35332] = 25, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(400), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(4027), 1, anon_sym_CARET, - ACTIONS(4029), 1, + anon_sym_BANG, anon_sym_AMP, - ACTIONS(4031), 1, anon_sym_PIPE, - ACTIONS(4033), 1, - anon_sym_AMP_AMP, - ACTIONS(4035), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4041), 1, - anon_sym_EQ, - ACTIONS(4047), 1, - anon_sym_DOT_DOT, - STATE(1777), 1, - sym_block, - STATE(3591), 1, - sym_label, - ACTIONS(4023), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4037), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4045), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4049), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1563), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4025), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4043), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4039), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3387), 25, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140059,15 +141891,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35427] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + anon_sym_as, + [34566] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1564), 2, + ACTIONS(3603), 1, + anon_sym_LBRACE, + STATE(1568), 2, sym_line_comment, sym_block_comment, - ACTIONS(3311), 16, + ACTIONS(3353), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140084,7 +141927,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3313), 24, + ACTIONS(3355), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -140109,17 +141952,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_as, - [35482] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [34624] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3863), 1, + ACTIONS(3353), 1, + anon_sym_BANG, + ACTIONS(3355), 1, anon_sym_COLON_COLON, - STATE(1565), 2, + STATE(1569), 2, sym_line_comment, sym_block_comment, - ACTIONS(3545), 15, + ACTIONS(3351), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140130,15 +141975,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3543), 24, + ACTIONS(3349), 22, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -140150,146 +141997,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, anon_sym_as, - [35539] = 25, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_LT2, + [34684] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(400), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(4027), 1, - anon_sym_CARET, + ACTIONS(4023), 1, + anon_sym_LPAREN, ACTIONS(4029), 1, - anon_sym_AMP, - ACTIONS(4031), 1, - anon_sym_PIPE, - ACTIONS(4033), 1, - anon_sym_AMP_AMP, - ACTIONS(4035), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4041), 1, - anon_sym_EQ, - ACTIONS(4047), 1, - anon_sym_DOT_DOT, - STATE(1772), 1, - sym_block, - STATE(3591), 1, - sym_label, - ACTIONS(4023), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4037), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4045), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4049), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1566), 2, + anon_sym_LT2, + STATE(1625), 1, + sym_parameters, + STATE(1641), 1, + sym_type_arguments, + STATE(1570), 2, sym_line_comment, sym_block_comment, - ACTIONS(4025), 3, + ACTIONS(3379), 17, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4043), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4039), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [35634] = 25, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(4027), 1, anon_sym_CARET, - ACTIONS(4029), 1, anon_sym_AMP, - ACTIONS(4031), 1, anon_sym_PIPE, - ACTIONS(4033), 1, - anon_sym_AMP_AMP, - ACTIONS(4035), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4041), 1, - anon_sym_EQ, - ACTIONS(4047), 1, - anon_sym_DOT_DOT, - STATE(394), 1, - sym_block, - STATE(3510), 1, - sym_label, - ACTIONS(4023), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4037), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4045), 2, + anon_sym_LT_LT_EQ, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4049), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1567), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4025), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4043), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4039), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3377), 20, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140298,20 +142053,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35729] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [34748] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3863), 2, - anon_sym_LBRACE, + ACTIONS(3751), 1, + anon_sym_BANG, + ACTIONS(4070), 1, anon_sym_COLON_COLON, - STATE(1568), 2, + STATE(1571), 2, sym_line_comment, sym_block_comment, - ACTIONS(3545), 15, + ACTIONS(3395), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140327,10 +142088,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3543), 23, + ACTIONS(3393), 24, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -140350,88 +142111,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, anon_sym_as, - [35786] = 25, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [34808] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1035), 1, - anon_sym_RBRACK, - ACTIONS(3667), 1, + STATE(1572), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4074), 10, + anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(3671), 1, + anon_sym_STAR, anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, - anon_sym_CARET, - ACTIONS(3903), 1, + anon_sym_BANG, anon_sym_AMP, - ACTIONS(3905), 1, - anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(4005), 1, - anon_sym_DOT_DOT, - ACTIONS(4059), 1, - anon_sym_SEMI, - ACTIONS(4061), 1, - anon_sym_COMMA, - STATE(2788), 1, - aux_sym_arguments_repeat1, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3917), 2, - anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1569), 2, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + sym_metavariable, + ACTIONS(4072), 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, + [34864] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4076), 1, + anon_sym_LPAREN, + STATE(1573), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4057), 9, + anon_sym_LBRACK, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3929), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [35881] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + sym_metavariable, + ACTIONS(4055), 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, + [34922] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3827), 1, + ACTIONS(3325), 1, + anon_sym_BANG, + ACTIONS(4079), 1, anon_sym_COLON_COLON, - STATE(1570), 2, + STATE(1574), 2, sym_line_comment, sym_block_comment, - ACTIONS(3545), 15, + ACTIONS(1307), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140447,7 +142244,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3543), 24, + ACTIONS(1305), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -140472,136 +142269,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_SQUOTE, anon_sym_as, - [35938] = 25, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [34982] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(4027), 1, - anon_sym_CARET, - ACTIONS(4029), 1, - anon_sym_AMP, - ACTIONS(4031), 1, - anon_sym_PIPE, - ACTIONS(4033), 1, - anon_sym_AMP_AMP, - ACTIONS(4035), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4041), 1, - anon_sym_EQ, - ACTIONS(4047), 1, - anon_sym_DOT_DOT, - STATE(1319), 1, - sym_block, - STATE(3539), 1, - sym_label, - ACTIONS(4023), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4037), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4045), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4049), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1571), 2, + STATE(1575), 2, sym_line_comment, sym_block_comment, - ACTIONS(4025), 3, + ACTIONS(3365), 16, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4043), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4039), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [36033] = 25, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(1210), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(4027), 1, anon_sym_CARET, - ACTIONS(4029), 1, + anon_sym_BANG, anon_sym_AMP, - ACTIONS(4031), 1, anon_sym_PIPE, - ACTIONS(4033), 1, - anon_sym_AMP_AMP, - ACTIONS(4035), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4041), 1, - anon_sym_EQ, - ACTIONS(4047), 1, - anon_sym_DOT_DOT, - STATE(453), 1, - sym_block, - STATE(3590), 1, - sym_label, - ACTIONS(4023), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4037), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4045), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4049), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1572), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4025), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4043), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4039), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3367), 25, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140612,62 +142311,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36128] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + anon_sym_as, + [35038] = 25, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(405), 1, + anon_sym_LBRACE, + ACTIONS(3442), 1, + anon_sym_SQUOTE, + ACTIONS(3687), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3691), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3693), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3901), 1, anon_sym_as, - ACTIONS(4027), 1, + ACTIONS(4085), 1, anon_sym_CARET, - ACTIONS(4029), 1, + ACTIONS(4087), 1, anon_sym_AMP, - ACTIONS(4031), 1, + ACTIONS(4089), 1, anon_sym_PIPE, - ACTIONS(4033), 1, + ACTIONS(4091), 1, anon_sym_AMP_AMP, - ACTIONS(4035), 1, + ACTIONS(4093), 1, anon_sym_PIPE_PIPE, - ACTIONS(4041), 1, + ACTIONS(4099), 1, anon_sym_EQ, - ACTIONS(4063), 1, + ACTIONS(4105), 1, anon_sym_DOT_DOT, - ACTIONS(4023), 2, + STATE(1721), 1, + sym_block, + STATE(3688), 1, + sym_label, + ACTIONS(4081), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4037), 2, + ACTIONS(4095), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4045), 2, + ACTIONS(4103), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4065), 2, + ACTIONS(4107), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1573), 2, + STATE(1576), 2, sym_line_comment, sym_block_comment, - ACTIONS(3771), 3, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_SQUOTE, - ACTIONS(4025), 3, + ACTIONS(4083), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4043), 4, + ACTIONS(4101), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4039), 10, + ACTIONS(4097), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140678,64 +142390,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36216] = 24, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [35133] = 25, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1005), 1, - anon_sym_RPAREN, - ACTIONS(3667), 1, + ACTIONS(1273), 1, + anon_sym_LBRACE, + ACTIONS(3442), 1, + anon_sym_SQUOTE, + ACTIONS(3687), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3691), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3693), 1, anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, ACTIONS(3901), 1, + anon_sym_as, + ACTIONS(4085), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4087), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4089), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(4091), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4093), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4099), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4105), 1, anon_sym_DOT_DOT, - ACTIONS(4067), 1, - anon_sym_COMMA, - STATE(2790), 1, - aux_sym_arguments_repeat1, - ACTIONS(3897), 2, + STATE(477), 1, + sym_block, + STATE(3687), 1, + sym_label, + ACTIONS(4081), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4095), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4103), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4107), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1574), 2, + STATE(1577), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4083), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4101), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4097), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140746,60 +142460,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36308] = 21, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [35228] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3935), 1, - anon_sym_EQ, - ACTIONS(4027), 1, + ACTIONS(4109), 1, + anon_sym_BANG, + ACTIONS(4111), 1, + anon_sym_COLON_COLON, + STATE(1578), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3395), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4029), 1, anon_sym_AMP, - ACTIONS(4031), 1, anon_sym_PIPE, - ACTIONS(4033), 1, - anon_sym_AMP_AMP, - ACTIONS(4035), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4063), 1, - anon_sym_DOT_DOT, - ACTIONS(4023), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4037), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4045), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4065), 2, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3393), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1575), 2, + anon_sym_as, + [35287] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1579), 2, sym_line_comment, sym_block_comment, - ACTIONS(4025), 3, + ACTIONS(3486), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4043), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3933), 13, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3484), 25, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140810,65 +142554,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_SQUOTE, - [36394] = 24, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_as, + [35342] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1007), 1, - anon_sym_RBRACK, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4113), 1, + anon_sym_COLON_COLON, + STATE(1580), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1307), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3903), 1, anon_sym_AMP, - ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(4005), 1, - anon_sym_DOT_DOT, - ACTIONS(4069), 1, - anon_sym_COMMA, - STATE(2849), 1, - aux_sym_arguments_repeat1, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1576), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3899), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3929), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1305), 24, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140879,60 +142605,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36486] = 21, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + anon_sym_as, + [35399] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3957), 1, - anon_sym_EQ, - ACTIONS(4027), 1, + ACTIONS(4115), 1, + anon_sym_SQUOTE, + STATE(1784), 1, + sym_label, + STATE(1581), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3440), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4029), 1, anon_sym_AMP, - ACTIONS(4031), 1, anon_sym_PIPE, - ACTIONS(4033), 1, - anon_sym_AMP_AMP, - ACTIONS(4035), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4063), 1, - anon_sym_DOT_DOT, - ACTIONS(4023), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4037), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4045), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4065), 2, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3438), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1577), 2, + anon_sym_as, + [35458] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1582), 2, sym_line_comment, sym_block_comment, - ACTIONS(4025), 3, + ACTIONS(3551), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4043), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3955), 13, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3549), 25, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140943,65 +142707,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_SQUOTE, - [36572] = 24, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_as, + [35513] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(983), 1, - anon_sym_RBRACK, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, + STATE(1583), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3526), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3903), 1, anon_sym_AMP, - ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(4005), 1, - anon_sym_DOT_DOT, - ACTIONS(4071), 1, - anon_sym_COMMA, - STATE(2898), 1, - aux_sym_arguments_repeat1, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3524), 25, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1578), 2, + anon_sym_COLON_COLON, + anon_sym_as, + [35568] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4025), 1, + anon_sym_BANG, + ACTIONS(4117), 1, + anon_sym_COLON_COLON, + STATE(1584), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(1307), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3929), 10, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1305), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141012,56 +142810,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36664] = 19, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [35627] = 25, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(405), 1, + anon_sym_LBRACE, + ACTIONS(3442), 1, + anon_sym_SQUOTE, + ACTIONS(3687), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3691), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3693), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3901), 1, anon_sym_as, - ACTIONS(4027), 1, + ACTIONS(4085), 1, anon_sym_CARET, - ACTIONS(4029), 1, + ACTIONS(4087), 1, anon_sym_AMP, - ACTIONS(4031), 1, + ACTIONS(4089), 1, anon_sym_PIPE, - ACTIONS(4033), 1, + ACTIONS(4091), 1, anon_sym_AMP_AMP, - ACTIONS(4035), 1, + ACTIONS(4093), 1, anon_sym_PIPE_PIPE, - ACTIONS(3913), 2, + ACTIONS(4099), 1, anon_sym_EQ, + ACTIONS(4105), 1, anon_sym_DOT_DOT, - ACTIONS(4023), 2, + STATE(1713), 1, + sym_block, + STATE(3688), 1, + sym_label, + ACTIONS(4081), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4037), 2, + ACTIONS(4095), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4045), 2, + ACTIONS(4103), 2, anon_sym_GT, anon_sym_LT, - STATE(1579), 2, + ACTIONS(4107), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1585), 2, sym_line_comment, sym_block_comment, - ACTIONS(4025), 3, + ACTIONS(4083), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4043), 4, + ACTIONS(4101), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3895), 15, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(4097), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141072,46 +142887,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, - [36746] = 12, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [35722] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(4023), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4037), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1580), 2, + STATE(1586), 2, sym_line_comment, sym_block_comment, - ACTIONS(4025), 3, + ACTIONS(3607), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3669), 7, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3665), 21, + ACTIONS(3605), 25, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -141130,38 +142935,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, - [36814] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_COLON_COLON, + anon_sym_as, + [35777] = 25, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1581), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3354), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(952), 1, + anon_sym_RBRACK, + ACTIONS(3687), 1, + anon_sym_LBRACK, + ACTIONS(3691), 1, + anon_sym_QMARK, + ACTIONS(3693), 1, + anon_sym_DOT, + ACTIONS(3901), 1, + anon_sym_as, + ACTIONS(3977), 1, anon_sym_AMP, + ACTIONS(3981), 1, + anon_sym_CARET, + ACTIONS(3983), 1, anon_sym_PIPE, + ACTIONS(3985), 1, + anon_sym_AMP_AMP, + ACTIONS(3987), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4015), 1, + anon_sym_EQ, + ACTIONS(4119), 1, + anon_sym_SEMI, + ACTIONS(4121), 1, + anon_sym_COMMA, + ACTIONS(4123), 1, + anon_sym_DOT_DOT, + STATE(2815), 1, + aux_sym_arguments_repeat1, + ACTIONS(3973), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(3991), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3352), 24, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4125), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1587), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3975), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3989), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4013), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141172,45 +143007,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + [35872] = 25, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1052), 1, + anon_sym_RBRACK, + ACTIONS(3687), 1, + anon_sym_LBRACK, + ACTIONS(3691), 1, + anon_sym_QMARK, + ACTIONS(3693), 1, + anon_sym_DOT, + ACTIONS(3901), 1, + anon_sym_as, + ACTIONS(3977), 1, + anon_sym_AMP, + ACTIONS(3981), 1, + anon_sym_CARET, + ACTIONS(3983), 1, + anon_sym_PIPE, + ACTIONS(3985), 1, + anon_sym_AMP_AMP, + ACTIONS(3987), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4015), 1, + anon_sym_EQ, + ACTIONS(4123), 1, + anon_sym_DOT_DOT, + ACTIONS(4127), 1, + anon_sym_SEMI, + ACTIONS(4129), 1, + anon_sym_COMMA, + STATE(2835), 1, + aux_sym_arguments_repeat1, + ACTIONS(3973), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3979), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3991), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4125), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_as, - [36868] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1582), 2, + STATE(1588), 2, sym_line_comment, sym_block_comment, - ACTIONS(3459), 15, - anon_sym_PLUS, + ACTIONS(3975), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3457), 24, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3989), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4013), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141221,23 +143077,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_as, - [36922] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [35967] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1583), 2, + ACTIONS(3903), 2, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + STATE(1589), 2, sym_line_comment, sym_block_comment, - ACTIONS(3471), 15, + ACTIONS(3809), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141253,7 +143104,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3469), 24, + ACTIONS(3805), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -141276,17 +143127,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, anon_sym_as, - [36976] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [36024] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1584), 2, + ACTIONS(3903), 1, + anon_sym_COLON_COLON, + STATE(1590), 2, sym_line_comment, sym_block_comment, - ACTIONS(3338), 15, + ACTIONS(3809), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141302,10 +143154,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3336), 24, + ACTIONS(3805), 24, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -141325,101 +143177,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_DASH_GT, + anon_sym_SQUOTE, anon_sym_as, - [37030] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [36081] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(4027), 1, - anon_sym_CARET, - ACTIONS(4029), 1, - anon_sym_AMP, - ACTIONS(4031), 1, - anon_sym_PIPE, - ACTIONS(4033), 1, - anon_sym_AMP_AMP, - ACTIONS(4035), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4041), 1, - anon_sym_EQ, - ACTIONS(4063), 1, - anon_sym_DOT_DOT, - ACTIONS(4023), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4037), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4045), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4065), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1585), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3739), 3, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_SQUOTE, - ACTIONS(4025), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4043), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4039), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [37118] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1586), 2, + STATE(1591), 2, sym_line_comment, sym_block_comment, - ACTIONS(3309), 17, + ACTIONS(3373), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, + anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3307), 22, + ACTIONS(3375), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -141434,23 +143219,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, anon_sym_as, - anon_sym_LT2, - [37172] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [36136] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1587), 2, + STATE(1395), 1, + sym_label, + STATE(1592), 2, sym_line_comment, sym_block_comment, - ACTIONS(1242), 15, + ACTIONS(3440), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141466,10 +143255,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1240), 24, + ACTIONS(3438), 24, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -141489,49 +143278,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, anon_sym_as, - anon_sym_else, - [37226] = 14, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [36193] = 25, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3442), 1, + anon_sym_SQUOTE, + ACTIONS(3687), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3691), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3693), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3901), 1, anon_sym_as, - ACTIONS(4027), 1, + ACTIONS(4085), 1, anon_sym_CARET, - ACTIONS(4029), 1, + ACTIONS(4087), 1, anon_sym_AMP, - ACTIONS(4023), 2, + ACTIONS(4089), 1, + anon_sym_PIPE, + ACTIONS(4091), 1, + anon_sym_AMP_AMP, + ACTIONS(4093), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4099), 1, + anon_sym_EQ, + ACTIONS(4105), 1, + anon_sym_DOT_DOT, + STATE(1406), 1, + sym_block, + STATE(3635), 1, + sym_label, + ACTIONS(4081), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4037), 2, + ACTIONS(4095), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1588), 2, + ACTIONS(4103), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4107), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1593), 2, sym_line_comment, sym_block_comment, - ACTIONS(4025), 3, + ACTIONS(4083), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3669), 5, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3665), 21, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4101), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4097), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141542,71 +143350,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, - [37298] = 24, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [36288] = 25, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1009), 1, - anon_sym_RPAREN, - ACTIONS(3667), 1, + ACTIONS(914), 1, + anon_sym_RBRACK, + ACTIONS(3687), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3691), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3693), 1, anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, ACTIONS(3901), 1, - anon_sym_CARET, - ACTIONS(3903), 1, + anon_sym_as, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3981), 1, + anon_sym_CARET, + ACTIONS(3983), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3985), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3987), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4015), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4123), 1, anon_sym_DOT_DOT, - ACTIONS(4073), 1, + ACTIONS(4131), 1, + anon_sym_SEMI, + ACTIONS(4133), 1, anon_sym_COMMA, - STATE(2944), 1, + STATE(2825), 1, aux_sym_arguments_repeat1, - ACTIONS(3897), 2, + ACTIONS(3973), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(3991), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4125), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1589), 2, + STATE(1594), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(3989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4013), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141617,54 +143420,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37390] = 17, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [36383] = 25, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(1006), 1, + anon_sym_RBRACK, + ACTIONS(3687), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3691), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3693), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3901), 1, anon_sym_as, - ACTIONS(4027), 1, - anon_sym_CARET, - ACTIONS(4029), 1, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(4031), 1, + ACTIONS(3981), 1, + anon_sym_CARET, + ACTIONS(3983), 1, anon_sym_PIPE, - ACTIONS(3669), 2, + ACTIONS(3985), 1, + anon_sym_AMP_AMP, + ACTIONS(3987), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4015), 1, anon_sym_EQ, + ACTIONS(4123), 1, anon_sym_DOT_DOT, - ACTIONS(4023), 2, + ACTIONS(4135), 1, + anon_sym_SEMI, + ACTIONS(4137), 1, + anon_sym_COMMA, + STATE(2915), 1, + aux_sym_arguments_repeat1, + ACTIONS(3973), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4037), 2, + ACTIONS(3979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4045), 2, + ACTIONS(3991), 2, anon_sym_GT, anon_sym_LT, - STATE(1590), 2, + ACTIONS(4125), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1595), 2, sym_line_comment, sym_block_comment, - ACTIONS(4025), 3, + ACTIONS(3975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4043), 4, + ACTIONS(3989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3665), 17, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4013), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141675,20 +143490,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, - [37468] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [36478] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4017), 1, + ACTIONS(3807), 2, + anon_sym_LBRACE, anon_sym_COLON_COLON, - STATE(1591), 2, + STATE(1596), 2, sym_line_comment, sym_block_comment, - ACTIONS(3317), 15, + ACTIONS(3809), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141704,7 +143517,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3315), 23, + ACTIONS(3805), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -141728,121 +143541,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [37524] = 22, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [36535] = 25, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(1298), 1, - anon_sym_extern, - ACTIONS(3487), 1, - anon_sym_COLON_COLON, - ACTIONS(3491), 1, - anon_sym_union, - ACTIONS(3497), 1, - sym_metavariable, - ACTIONS(3503), 1, - anon_sym_default, - ACTIONS(4075), 1, - sym_identifier, - ACTIONS(4077), 1, - anon_sym_fn, - STATE(2206), 1, - aux_sym_function_modifiers_repeat1, - STATE(2320), 1, - sym_extern_modifier, - STATE(2509), 1, - sym_scoped_type_identifier, - STATE(3340), 1, - sym_generic_type_with_turbofish, - STATE(3370), 1, - sym_function_modifiers, - STATE(3385), 1, - sym_scoped_identifier, - STATE(3403), 1, - sym_generic_type, - STATE(3469), 1, - sym_bracketed_type, - STATE(1592), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1284), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3495), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(3501), 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, - [37612] = 18, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3442), 1, + anon_sym_SQUOTE, + ACTIONS(3687), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3691), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3693), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3901), 1, anon_sym_as, - ACTIONS(4027), 1, + ACTIONS(4085), 1, anon_sym_CARET, - ACTIONS(4029), 1, + ACTIONS(4087), 1, anon_sym_AMP, - ACTIONS(4031), 1, + ACTIONS(4089), 1, anon_sym_PIPE, - ACTIONS(4033), 1, + ACTIONS(4091), 1, anon_sym_AMP_AMP, - ACTIONS(3669), 2, + ACTIONS(4093), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4099), 1, anon_sym_EQ, + ACTIONS(4105), 1, anon_sym_DOT_DOT, - ACTIONS(4023), 2, + STATE(390), 1, + sym_block, + STATE(3543), 1, + sym_label, + ACTIONS(4081), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4037), 2, + ACTIONS(4095), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4045), 2, + ACTIONS(4103), 2, anon_sym_GT, anon_sym_LT, - STATE(1593), 2, + ACTIONS(4107), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1597), 2, sym_line_comment, sym_block_comment, - ACTIONS(4025), 3, + ACTIONS(4083), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4043), 4, + ACTIONS(4101), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3665), 16, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_PIPE, + ACTIONS(4097), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141853,26 +143611,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, - [37692] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [36630] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4079), 1, - anon_sym_DASH_GT, - STATE(1594), 2, + STATE(1598), 2, sym_line_comment, sym_block_comment, - ACTIONS(3414), 15, + ACTIONS(3353), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, + anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -141882,7 +143636,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3412), 23, + ACTIONS(3355), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -141905,16 +143659,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, anon_sym_as, - [37748] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [36685] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1595), 2, + ACTIONS(3807), 1, + anon_sym_COLON_COLON, + STATE(1599), 2, sym_line_comment, sym_block_comment, - ACTIONS(1208), 15, + ACTIONS(3809), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141930,10 +143687,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1206), 24, + ACTIONS(3805), 24, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -141953,25 +143710,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, anon_sym_as, - anon_sym_else, - [37802] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [36742] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4081), 1, - anon_sym_COLON_COLON, - STATE(1596), 2, + STATE(1600), 2, sym_line_comment, sym_block_comment, - ACTIONS(3301), 15, + ACTIONS(3365), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, + anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -141981,7 +143737,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3299), 23, + ACTIONS(3367), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -142004,18 +143760,161 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_as, + [36797] = 25, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1273), 1, + anon_sym_LBRACE, + ACTIONS(3442), 1, + anon_sym_SQUOTE, + ACTIONS(3687), 1, + anon_sym_LBRACK, + ACTIONS(3691), 1, + anon_sym_QMARK, + ACTIONS(3693), 1, + anon_sym_DOT, + ACTIONS(3901), 1, anon_sym_as, - [37858] = 6, - ACTIONS(101), 1, + ACTIONS(4085), 1, + anon_sym_CARET, + ACTIONS(4087), 1, + anon_sym_AMP, + ACTIONS(4089), 1, + anon_sym_PIPE, + ACTIONS(4091), 1, + anon_sym_AMP_AMP, + ACTIONS(4093), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4099), 1, + anon_sym_EQ, + ACTIONS(4105), 1, + anon_sym_DOT_DOT, + STATE(482), 1, + sym_block, + STATE(3687), 1, + sym_label, + ACTIONS(4081), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4095), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4103), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4107), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1601), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4083), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4101), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4097), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [36892] = 25, + ACTIONS(19), 1, + anon_sym_LBRACE, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3442), 1, + anon_sym_SQUOTE, + ACTIONS(3687), 1, + anon_sym_LBRACK, + ACTIONS(3691), 1, + anon_sym_QMARK, + ACTIONS(3693), 1, + anon_sym_DOT, + ACTIONS(3901), 1, + anon_sym_as, + ACTIONS(4085), 1, + anon_sym_CARET, + ACTIONS(4087), 1, + anon_sym_AMP, + ACTIONS(4089), 1, + anon_sym_PIPE, + ACTIONS(4091), 1, + anon_sym_AMP_AMP, + ACTIONS(4093), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4099), 1, + anon_sym_EQ, + ACTIONS(4105), 1, + anon_sym_DOT_DOT, + STATE(394), 1, + sym_block, + STATE(3543), 1, + sym_label, + ACTIONS(4081), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4095), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4103), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4107), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1602), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4083), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4101), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4097), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [36987] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4083), 1, - anon_sym_COLON_COLON, - STATE(1597), 2, + ACTIONS(4139), 1, + anon_sym_else, + STATE(1689), 1, + sym_else_clause, + STATE(1603), 2, sym_line_comment, sym_block_comment, - ACTIONS(3289), 15, + ACTIONS(1070), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142031,7 +143930,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3287), 23, + ACTIONS(1068), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -142055,23 +143954,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [37914] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [37046] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4085), 1, - anon_sym_DASH_GT, - STATE(1598), 2, + STATE(1604), 2, sym_line_comment, sym_block_comment, - ACTIONS(3523), 15, + ACTIONS(3385), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, + anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -142081,7 +143979,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3521), 23, + ACTIONS(3387), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -142104,16 +144002,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, anon_sym_as, - [37970] = 5, - ACTIONS(101), 1, + [37101] = 25, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3442), 1, + anon_sym_SQUOTE, + ACTIONS(3687), 1, + anon_sym_LBRACK, + ACTIONS(3691), 1, + anon_sym_QMARK, + ACTIONS(3693), 1, + anon_sym_DOT, + ACTIONS(3901), 1, + anon_sym_as, + ACTIONS(4085), 1, + anon_sym_CARET, + ACTIONS(4087), 1, + anon_sym_AMP, + ACTIONS(4089), 1, + anon_sym_PIPE, + ACTIONS(4091), 1, + anon_sym_AMP_AMP, + ACTIONS(4093), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4099), 1, + anon_sym_EQ, + ACTIONS(4105), 1, + anon_sym_DOT_DOT, + STATE(1496), 1, + sym_block, + STATE(3635), 1, + sym_label, + ACTIONS(4081), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4095), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4103), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4107), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1605), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4083), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4101), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4097), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [37196] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1599), 2, + ACTIONS(4070), 1, + anon_sym_COLON_COLON, + STATE(1606), 2, sym_line_comment, sym_block_comment, - ACTIONS(3402), 15, + ACTIONS(3395), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142129,10 +144100,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3400), 24, + ACTIONS(3393), 24, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -142152,19 +144123,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, + anon_sym_SQUOTE, anon_sym_as, - [38024] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [37253] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4083), 1, + ACTIONS(4141), 1, anon_sym_COLON_COLON, - STATE(1600), 2, + STATE(1607), 2, sym_line_comment, sym_block_comment, - ACTIONS(3305), 15, + ACTIONS(3379), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142180,7 +144151,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3303), 23, + ACTIONS(3377), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -142204,58 +144175,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [38080] = 21, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [37309] = 21, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(342), 1, - anon_sym_EQ, - ACTIONS(3667), 1, + ACTIONS(3687), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3691), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3693), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3901), 1, anon_sym_as, - ACTIONS(4027), 1, + ACTIONS(4011), 1, + anon_sym_EQ, + ACTIONS(4085), 1, anon_sym_CARET, - ACTIONS(4029), 1, + ACTIONS(4087), 1, anon_sym_AMP, - ACTIONS(4031), 1, + ACTIONS(4089), 1, anon_sym_PIPE, - ACTIONS(4033), 1, + ACTIONS(4091), 1, anon_sym_AMP_AMP, - ACTIONS(4035), 1, + ACTIONS(4093), 1, anon_sym_PIPE_PIPE, - ACTIONS(4063), 1, + ACTIONS(4143), 1, anon_sym_DOT_DOT, - ACTIONS(4023), 2, + ACTIONS(4081), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4037), 2, + ACTIONS(4095), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4045), 2, + ACTIONS(4103), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4065), 2, + ACTIONS(4145), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1601), 2, + STATE(1608), 2, sym_line_comment, sym_block_comment, - ACTIONS(4025), 3, + ACTIONS(4083), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4043), 4, + ACTIONS(4101), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(336), 13, + ACTIONS(4009), 13, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_PLUS_EQ, @@ -142269,17 +144240,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_SQUOTE, - [38166] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [37395] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4087), 1, - anon_sym_DASH_GT, - STATE(1602), 2, + STATE(1609), 2, sym_line_comment, sym_block_comment, - ACTIONS(3535), 15, + ACTIONS(1237), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142295,7 +144264,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3533), 23, + ACTIONS(1235), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -142319,15 +144288,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [38222] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_else, + [37449] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1603), 2, + ACTIONS(4147), 1, + anon_sym_DASH_GT, + STATE(1610), 2, sym_line_comment, sym_block_comment, - ACTIONS(1234), 15, + ACTIONS(3460), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142343,7 +144315,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1232), 24, + ACTIONS(3458), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -142367,20 +144339,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - anon_sym_else, - [38276] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [37505] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4089), 1, - anon_sym_LPAREN, - STATE(1652), 1, - sym_arguments, - STATE(1604), 2, + STATE(1611), 2, sym_line_comment, sym_block_comment, - ACTIONS(3396), 15, + ACTIONS(1225), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142396,7 +144363,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3392), 22, + ACTIONS(1223), 24, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, @@ -142419,15 +144387,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [38334] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_else, + [37559] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1605), 2, + STATE(1612), 2, sym_line_comment, sym_block_comment, - ACTIONS(3445), 15, + ACTIONS(3482), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142443,7 +144412,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3443), 24, + ACTIONS(3480), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -142468,42 +144437,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_DASH_GT, anon_sym_as, - [38388] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [37613] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3687), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3691), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3693), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3901), 1, anon_sym_as, - ACTIONS(4023), 2, + ACTIONS(4085), 1, + anon_sym_CARET, + ACTIONS(4087), 1, + anon_sym_AMP, + ACTIONS(4089), 1, + anon_sym_PIPE, + ACTIONS(4091), 1, + anon_sym_AMP_AMP, + ACTIONS(4093), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4099), 1, + anon_sym_EQ, + ACTIONS(4143), 1, + anon_sym_DOT_DOT, + ACTIONS(4081), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1606), 2, + ACTIONS(4095), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4103), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4145), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1613), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3637), 3, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_SQUOTE, + ACTIONS(4083), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4101), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4097), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [37701] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1614), 2, sym_line_comment, sym_block_comment, - ACTIONS(4025), 3, + ACTIONS(3371), 17, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3669), 9, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3665), 21, + ACTIONS(3369), 22, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -142514,71 +144544,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, - [38454] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_as, + anon_sym_LT2, + [37755] = 21, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3687), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3691), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3693), 1, anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, ACTIONS(3901), 1, + anon_sym_as, + ACTIONS(4003), 1, + anon_sym_EQ, + ACTIONS(4085), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4087), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4089), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(4091), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4093), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4143), 1, anon_sym_DOT_DOT, - ACTIONS(3897), 2, + ACTIONS(4081), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4095), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4103), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4145), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1607), 2, + STATE(1615), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4083), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4091), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(3915), 4, + ACTIONS(4101), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4001), 13, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142589,17 +144616,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38542] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_SQUOTE, + [37841] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4083), 1, - anon_sym_COLON_COLON, - STATE(1608), 2, + STATE(1616), 2, sym_line_comment, sym_block_comment, - ACTIONS(3301), 15, + ACTIONS(1229), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142615,7 +144641,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3299), 23, + ACTIONS(1227), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -142639,37 +144665,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [38598] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_else, + [37895] = 24, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1609), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1238), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(1016), 1, + anon_sym_RBRACK, + ACTIONS(3687), 1, + anon_sym_LBRACK, + ACTIONS(3691), 1, + anon_sym_QMARK, + ACTIONS(3693), 1, + anon_sym_DOT, + ACTIONS(3901), 1, + anon_sym_as, + ACTIONS(3977), 1, anon_sym_AMP, + ACTIONS(3981), 1, + anon_sym_CARET, + ACTIONS(3983), 1, anon_sym_PIPE, + ACTIONS(3985), 1, + anon_sym_AMP_AMP, + ACTIONS(3987), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4015), 1, + anon_sym_EQ, + ACTIONS(4123), 1, + anon_sym_DOT_DOT, + ACTIONS(4149), 1, + anon_sym_COMMA, + STATE(2957), 1, + aux_sym_arguments_repeat1, + ACTIONS(3973), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(3991), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1236), 24, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4125), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1617), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3975), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3989), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4013), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142680,70 +144734,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - anon_sym_else, - [38652] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [37987] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3687), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3691), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3693), 1, anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, ACTIONS(3901), 1, - anon_sym_CARET, - ACTIONS(3903), 1, + anon_sym_as, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3981), 1, + anon_sym_CARET, + ACTIONS(3983), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3985), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3987), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4015), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4123), 1, anon_sym_DOT_DOT, - ACTIONS(3897), 2, + ACTIONS(3973), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(3991), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4125), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1610), 2, + STATE(1618), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4093), 3, + ACTIONS(4151), 3, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_COMMA, - ACTIONS(3915), 4, + ACTIONS(3989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4013), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142754,37 +144800,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38740] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [38075] = 24, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1611), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3372), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(3687), 1, + anon_sym_LBRACK, + ACTIONS(3691), 1, + anon_sym_QMARK, + ACTIONS(3693), 1, + anon_sym_DOT, + ACTIONS(3901), 1, + anon_sym_as, + ACTIONS(3977), 1, anon_sym_AMP, + ACTIONS(3981), 1, + anon_sym_CARET, + ACTIONS(3983), 1, anon_sym_PIPE, + ACTIONS(3985), 1, + anon_sym_AMP_AMP, + ACTIONS(3987), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4015), 1, + anon_sym_EQ, + ACTIONS(4123), 1, + anon_sym_DOT_DOT, + ACTIONS(4153), 1, + anon_sym_RPAREN, + ACTIONS(4155), 1, + anon_sym_COMMA, + STATE(2941), 1, + aux_sym_arguments_repeat1, + ACTIONS(3973), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(3991), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3370), 24, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4125), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1619), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3975), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3989), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4013), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142795,25 +144868,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DASH_GT, - anon_sym_as, - [38794] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [38167] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4095), 1, - anon_sym_COLON_COLON, - STATE(1612), 2, + ACTIONS(4157), 1, + anon_sym_DASH_GT, + STATE(1620), 2, sym_line_comment, sym_block_comment, - ACTIONS(3301), 15, + ACTIONS(3454), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142829,7 +144894,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3299), 23, + ACTIONS(3452), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -142853,83 +144918,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [38850] = 22, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [38223] = 6, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(1298), 1, - anon_sym_extern, - ACTIONS(3487), 1, - anon_sym_COLON_COLON, - ACTIONS(3491), 1, - anon_sym_union, - ACTIONS(3497), 1, - sym_metavariable, - ACTIONS(3503), 1, - anon_sym_default, - ACTIONS(4097), 1, - sym_identifier, - ACTIONS(4099), 1, - anon_sym_fn, - STATE(2206), 1, - aux_sym_function_modifiers_repeat1, - STATE(2320), 1, - sym_extern_modifier, - STATE(2603), 1, - sym_scoped_type_identifier, - STATE(3340), 1, - sym_generic_type_with_turbofish, - STATE(3385), 1, - sym_scoped_identifier, - STATE(3403), 1, - sym_generic_type, - STATE(3469), 1, - sym_bracketed_type, - STATE(3484), 1, - sym_function_modifiers, - STATE(1613), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1284), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3495), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(3501), 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, - [38938] = 6, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4101), 1, + ACTIONS(4159), 1, anon_sym_DASH_GT, - STATE(1614), 2, + STATE(1621), 2, sym_line_comment, sym_block_comment, - ACTIONS(3529), 15, + ACTIONS(3448), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142945,7 +144944,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3527), 23, + ACTIONS(3446), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -142969,60 +144968,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [38994] = 21, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [38279] = 24, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(1050), 1, + anon_sym_RPAREN, + ACTIONS(3687), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3691), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3693), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3901), 1, anon_sym_as, - ACTIONS(3949), 1, - anon_sym_EQ, - ACTIONS(4027), 1, - anon_sym_CARET, - ACTIONS(4029), 1, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(4031), 1, + ACTIONS(3981), 1, + anon_sym_CARET, + ACTIONS(3983), 1, anon_sym_PIPE, - ACTIONS(4033), 1, + ACTIONS(3985), 1, anon_sym_AMP_AMP, - ACTIONS(4035), 1, + ACTIONS(3987), 1, anon_sym_PIPE_PIPE, - ACTIONS(4063), 1, + ACTIONS(4015), 1, + anon_sym_EQ, + ACTIONS(4123), 1, anon_sym_DOT_DOT, - ACTIONS(4023), 2, + ACTIONS(4161), 1, + anon_sym_COMMA, + STATE(2789), 1, + aux_sym_arguments_repeat1, + ACTIONS(3973), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4037), 2, + ACTIONS(3979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4045), 2, + ACTIONS(3991), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4065), 2, + ACTIONS(4125), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1615), 2, + STATE(1622), 2, sym_line_comment, sym_block_comment, - ACTIONS(4025), 3, + ACTIONS(3975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4043), 4, + ACTIONS(3989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3947), 13, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(4013), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143033,103 +145036,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_SQUOTE, - [39080] = 21, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [38371] = 24, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(1008), 1, + anon_sym_RBRACK, + ACTIONS(3687), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3691), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3693), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3901), 1, anon_sym_as, - ACTIONS(3961), 1, - anon_sym_EQ, - ACTIONS(4027), 1, - anon_sym_CARET, - ACTIONS(4029), 1, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(4031), 1, + ACTIONS(3981), 1, + anon_sym_CARET, + ACTIONS(3983), 1, anon_sym_PIPE, - ACTIONS(4033), 1, + ACTIONS(3985), 1, anon_sym_AMP_AMP, - ACTIONS(4035), 1, + ACTIONS(3987), 1, anon_sym_PIPE_PIPE, - ACTIONS(4063), 1, + ACTIONS(4015), 1, + anon_sym_EQ, + ACTIONS(4123), 1, anon_sym_DOT_DOT, - ACTIONS(4023), 2, + ACTIONS(4163), 1, + anon_sym_COMMA, + STATE(2973), 1, + aux_sym_arguments_repeat1, + ACTIONS(3973), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4037), 2, + ACTIONS(3979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4045), 2, + ACTIONS(3991), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4065), 2, + ACTIONS(4125), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1616), 2, + STATE(1623), 2, sym_line_comment, sym_block_comment, - ACTIONS(4025), 3, + ACTIONS(3975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4043), 4, + ACTIONS(3989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3959), 13, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_SQUOTE, - [39166] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1617), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3509), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3507), 24, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4013), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143140,120 +145104,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DASH_GT, - anon_sym_as, - [39220] = 22, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [38463] = 24, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(1298), 1, - anon_sym_extern, - ACTIONS(3487), 1, - anon_sym_COLON_COLON, - ACTIONS(3491), 1, - anon_sym_union, - ACTIONS(3497), 1, - sym_metavariable, - ACTIONS(3503), 1, - anon_sym_default, - ACTIONS(4103), 1, - sym_identifier, - ACTIONS(4105), 1, - anon_sym_fn, - STATE(2206), 1, - aux_sym_function_modifiers_repeat1, - STATE(2320), 1, - sym_extern_modifier, - STATE(2578), 1, - sym_scoped_type_identifier, - STATE(3330), 1, - sym_function_modifiers, - STATE(3340), 1, - sym_generic_type_with_turbofish, - STATE(3385), 1, - sym_scoped_identifier, - STATE(3403), 1, - sym_generic_type, - STATE(3469), 1, - sym_bracketed_type, - STATE(1618), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1284), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3495), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(3501), 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, - [39308] = 15, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3687), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3691), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3693), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3901), 1, anon_sym_as, - ACTIONS(4027), 1, - anon_sym_CARET, - ACTIONS(4029), 1, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(4031), 1, + ACTIONS(3981), 1, + anon_sym_CARET, + ACTIONS(3983), 1, anon_sym_PIPE, - ACTIONS(4023), 2, + ACTIONS(3985), 1, + anon_sym_AMP_AMP, + ACTIONS(3987), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4015), 1, + anon_sym_EQ, + ACTIONS(4123), 1, + anon_sym_DOT_DOT, + ACTIONS(4165), 1, + anon_sym_RPAREN, + ACTIONS(4167), 1, + anon_sym_COMMA, + STATE(2993), 1, + aux_sym_arguments_repeat1, + ACTIONS(3973), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4037), 2, + ACTIONS(3979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1619), 2, + ACTIONS(3991), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4125), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1624), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3975), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3989), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4013), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [38555] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4169), 1, + anon_sym_DASH_GT, + STATE(1625), 2, sym_line_comment, sym_block_comment, - ACTIONS(4025), 3, + ACTIONS(3492), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3669), 4, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3665), 21, + ACTIONS(3490), 23, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -143272,18 +145221,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, - [39382] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_as, + [38611] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4107), 1, - anon_sym_COLON_COLON, - STATE(1620), 2, + ACTIONS(4171), 1, + anon_sym_DASH_GT, + STATE(1626), 2, sym_line_comment, sym_block_comment, - ACTIONS(1416), 15, + ACTIONS(3498), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143299,7 +145248,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1418), 23, + ACTIONS(3496), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -143323,15 +145272,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [39438] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [38667] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1621), 2, + ACTIONS(4173), 1, + anon_sym_COLON_COLON, + STATE(1627), 2, sym_line_comment, sym_block_comment, - ACTIONS(3368), 15, + ACTIONS(3347), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143347,7 +145298,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3366), 24, + ACTIONS(3345), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -143370,19 +145321,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, anon_sym_as, - [39492] = 6, - ACTIONS(101), 1, + [38723] = 22, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3687), 1, + anon_sym_LBRACK, + ACTIONS(3691), 1, + anon_sym_QMARK, + ACTIONS(3693), 1, + anon_sym_DOT, + ACTIONS(3901), 1, + anon_sym_as, + ACTIONS(4085), 1, + anon_sym_CARET, + ACTIONS(4087), 1, + anon_sym_AMP, + ACTIONS(4089), 1, + anon_sym_PIPE, + ACTIONS(4091), 1, + anon_sym_AMP_AMP, + ACTIONS(4093), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4099), 1, + anon_sym_EQ, + ACTIONS(4143), 1, + anon_sym_DOT_DOT, + ACTIONS(4081), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4095), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4103), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4145), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1628), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3777), 3, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_SQUOTE, + ACTIONS(4083), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4101), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4097), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [38811] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4109), 1, - anon_sym_DASH_GT, - STATE(1622), 2, + ACTIONS(4173), 1, + anon_sym_COLON_COLON, + STATE(1629), 2, sym_line_comment, sym_block_comment, - ACTIONS(3515), 15, + ACTIONS(3391), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143398,7 +145414,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3513), 23, + ACTIONS(3389), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -143422,22 +145438,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [39548] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [38867] = 10, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4111), 1, - anon_sym_DASH_GT, - STATE(1623), 2, + ACTIONS(3687), 1, + anon_sym_LBRACK, + ACTIONS(3691), 1, + anon_sym_QMARK, + ACTIONS(3693), 1, + anon_sym_DOT, + ACTIONS(3901), 1, + anon_sym_as, + STATE(1630), 2, sym_line_comment, sym_block_comment, - ACTIONS(3358), 15, - anon_sym_PLUS, + ACTIONS(4083), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3899), 11, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -143446,13 +145469,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3356), 23, + ACTIONS(3897), 21, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, + anon_sym_LBRACE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -143471,36 +145491,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [39604] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_SQUOTE, + [38931] = 13, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1624), 2, + ACTIONS(3687), 1, + anon_sym_LBRACK, + ACTIONS(3691), 1, + anon_sym_QMARK, + ACTIONS(3693), 1, + anon_sym_DOT, + ACTIONS(3901), 1, + anon_sym_as, + ACTIONS(4087), 1, + anon_sym_AMP, + ACTIONS(4081), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4095), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1631), 2, sym_line_comment, sym_block_comment, - ACTIONS(3420), 15, - anon_sym_PLUS, + ACTIONS(4083), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3899), 6, anon_sym_CARET, - anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3418), 24, + ACTIONS(3897), 21, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, + anon_sym_LBRACE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -143519,62 +145548,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_DASH_GT, - anon_sym_as, - [39658] = 21, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_SQUOTE, + [39001] = 12, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3687), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3691), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3693), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3901), 1, anon_sym_as, - ACTIONS(3921), 1, - anon_sym_EQ, - ACTIONS(4027), 1, + ACTIONS(4081), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4095), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1632), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4083), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3899), 7, anon_sym_CARET, - ACTIONS(4029), 1, anon_sym_AMP, - ACTIONS(4031), 1, anon_sym_PIPE, - ACTIONS(4033), 1, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(3897), 21, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_AMP_AMP, - ACTIONS(4035), 1, anon_sym_PIPE_PIPE, - ACTIONS(4063), 1, - anon_sym_DOT_DOT, - ACTIONS(4023), 2, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + [39069] = 14, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3687), 1, + anon_sym_LBRACK, + ACTIONS(3691), 1, + anon_sym_QMARK, + ACTIONS(3693), 1, + anon_sym_DOT, + ACTIONS(3901), 1, + anon_sym_as, + ACTIONS(4085), 1, + anon_sym_CARET, + ACTIONS(4087), 1, + anon_sym_AMP, + ACTIONS(4081), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4037), 2, + ACTIONS(4095), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4045), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4065), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1625), 2, + STATE(1633), 2, sym_line_comment, sym_block_comment, - ACTIONS(4025), 3, + ACTIONS(4083), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4043), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3919), 13, + ACTIONS(3899), 5, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(3897), 21, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143585,18 +145656,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_SQUOTE, - [39744] = 6, - ACTIONS(101), 1, + [39141] = 22, + ACTIONS(31), 1, + anon_sym_LT, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1403), 1, + anon_sym_extern, + ACTIONS(3426), 1, + anon_sym_COLON_COLON, + ACTIONS(3430), 1, + anon_sym_union, + ACTIONS(3436), 1, + sym_metavariable, + ACTIONS(3516), 1, + anon_sym_default, + ACTIONS(4175), 1, + sym_identifier, + ACTIONS(4177), 1, + anon_sym_fn, + STATE(2255), 1, + aux_sym_function_modifiers_repeat1, + STATE(2359), 1, + sym_extern_modifier, + STATE(2777), 1, + sym_scoped_type_identifier, + STATE(3426), 1, + sym_generic_type_with_turbofish, + STATE(3430), 1, + sym_function_modifiers, + STATE(3442), 1, + sym_scoped_identifier, + STATE(3491), 1, + sym_generic_type, + STATE(3563), 1, + sym_bracketed_type, + STATE(1634), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1389), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3434), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(3514), 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, + [39229] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4113), 1, + ACTIONS(4179), 1, anon_sym_DASH_GT, - STATE(1626), 2, + STATE(1635), 2, sym_line_comment, sym_block_comment, - ACTIONS(3449), 15, + ACTIONS(3520), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143612,7 +145755,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3447), 23, + ACTIONS(3518), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -143636,56 +145779,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [39800] = 19, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [39285] = 17, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3687), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3691), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3693), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3901), 1, anon_sym_as, - ACTIONS(4027), 1, + ACTIONS(4085), 1, anon_sym_CARET, - ACTIONS(4029), 1, + ACTIONS(4087), 1, anon_sym_AMP, - ACTIONS(4031), 1, + ACTIONS(4089), 1, anon_sym_PIPE, - ACTIONS(4033), 1, - anon_sym_AMP_AMP, - ACTIONS(4035), 1, - anon_sym_PIPE_PIPE, - ACTIONS(370), 2, + ACTIONS(3899), 2, anon_sym_EQ, anon_sym_DOT_DOT, - ACTIONS(4023), 2, + ACTIONS(4081), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4037), 2, + ACTIONS(4095), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4045), 2, + ACTIONS(4103), 2, anon_sym_GT, anon_sym_LT, - STATE(1627), 2, + STATE(1636), 2, sym_line_comment, sym_block_comment, - ACTIONS(4025), 3, + ACTIONS(4083), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4043), 4, + ACTIONS(4101), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(368), 15, + ACTIONS(3897), 17, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143699,110 +145840,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_SQUOTE, - [39882] = 24, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [39363] = 18, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3687), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3691), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3693), 1, anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, ACTIONS(3901), 1, + anon_sym_as, + ACTIONS(4085), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4087), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4089), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(4091), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(3899), 2, anon_sym_EQ, - ACTIONS(4005), 1, anon_sym_DOT_DOT, - ACTIONS(4115), 1, - anon_sym_RPAREN, - ACTIONS(4117), 1, - anon_sym_COMMA, - STATE(2830), 1, - aux_sym_arguments_repeat1, - ACTIONS(3897), 2, + ACTIONS(4081), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4095), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4103), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1628), 2, + STATE(1637), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4083), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4101), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [39974] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - STATE(1629), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4025), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3669), 11, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3665), 21, + ACTIONS(3897), 16, anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -143814,49 +145899,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_SQUOTE, - [40038] = 13, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [39443] = 11, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3687), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3691), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3693), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3901), 1, anon_sym_as, - ACTIONS(4029), 1, - anon_sym_AMP, - ACTIONS(4023), 2, + ACTIONS(4081), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4037), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1630), 2, + STATE(1638), 2, sym_line_comment, sym_block_comment, - ACTIONS(4025), 3, + ACTIONS(4083), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3669), 6, + ACTIONS(3899), 9, anon_sym_CARET, + anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, anon_sym_DOT_DOT, - ACTIONS(3665), 21, + ACTIONS(3897), 21, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_AMP_AMP, @@ -143878,15 +145957,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_SQUOTE, - [40108] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [39509] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1631), 2, + STATE(1639), 2, sym_line_comment, sym_block_comment, - ACTIONS(1246), 15, + ACTIONS(1241), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143902,7 +145981,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1244), 24, + ACTIONS(1239), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -143927,64 +146006,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_as, anon_sym_else, - [40162] = 24, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [39563] = 21, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3687), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3691), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3693), 1, anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, ACTIONS(3901), 1, + anon_sym_as, + ACTIONS(4043), 1, + anon_sym_EQ, + ACTIONS(4085), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4087), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4089), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(4091), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4093), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4143), 1, anon_sym_DOT_DOT, - ACTIONS(4119), 1, - anon_sym_RPAREN, - ACTIONS(4121), 1, - anon_sym_COMMA, - STATE(3004), 1, - aux_sym_arguments_repeat1, - ACTIONS(3897), 2, + ACTIONS(4081), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4095), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4103), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4145), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1632), 2, + STATE(1640), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4083), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4101), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4041), 13, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143995,17 +146070,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40254] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_SQUOTE, + [39649] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4083), 1, - anon_sym_COLON_COLON, - STATE(1633), 2, + STATE(1641), 2, sym_line_comment, sym_block_comment, - ACTIONS(3285), 15, + ACTIONS(3530), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144021,7 +146095,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3283), 23, + ACTIONS(3528), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -144044,63 +146118,163 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, anon_sym_as, - [40310] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [39703] = 21, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3687), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3691), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3693), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3901), 1, anon_sym_as, - ACTIONS(4027), 1, + ACTIONS(4007), 1, + anon_sym_EQ, + ACTIONS(4085), 1, anon_sym_CARET, - ACTIONS(4029), 1, + ACTIONS(4087), 1, anon_sym_AMP, - ACTIONS(4031), 1, + ACTIONS(4089), 1, anon_sym_PIPE, - ACTIONS(4033), 1, + ACTIONS(4091), 1, anon_sym_AMP_AMP, - ACTIONS(4035), 1, + ACTIONS(4093), 1, anon_sym_PIPE_PIPE, - ACTIONS(4041), 1, - anon_sym_EQ, - ACTIONS(4063), 1, + ACTIONS(4143), 1, anon_sym_DOT_DOT, - ACTIONS(4023), 2, + ACTIONS(4081), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4037), 2, + ACTIONS(4095), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4045), 2, + ACTIONS(4103), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4065), 2, + ACTIONS(4145), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1634), 2, + STATE(1642), 2, sym_line_comment, sym_block_comment, - ACTIONS(3661), 3, + ACTIONS(4083), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4101), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4005), 13, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_SQUOTE, - ACTIONS(4025), 3, + [39789] = 15, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3687), 1, + anon_sym_LBRACK, + ACTIONS(3691), 1, + anon_sym_QMARK, + ACTIONS(3693), 1, + anon_sym_DOT, + ACTIONS(3901), 1, + anon_sym_as, + ACTIONS(4085), 1, + anon_sym_CARET, + ACTIONS(4087), 1, + anon_sym_AMP, + ACTIONS(4089), 1, + anon_sym_PIPE, + ACTIONS(4081), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4095), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1643), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4083), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4043), 4, + ACTIONS(3899), 4, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(3897), 21, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4039), 10, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + [39863] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1644), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3534), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3532), 24, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144111,17 +146285,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40398] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_as, + [39917] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4123), 1, - anon_sym_COLON_COLON, - STATE(1635), 2, + STATE(1645), 2, sym_line_comment, sym_block_comment, - ACTIONS(1416), 15, + ACTIONS(3542), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144137,7 +146317,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1418), 23, + ACTIONS(3540), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -144160,63 +146340,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, anon_sym_as, - [40454] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [39971] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, + STATE(1646), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3510), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3903), 1, anon_sym_AMP, - ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(4005), 1, - anon_sym_DOT_DOT, - ACTIONS(4125), 1, - anon_sym_SEMI, - ACTIONS(4127), 1, - anon_sym_RBRACE, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1636), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3899), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3929), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3508), 24, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144227,15 +146383,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40543] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_as, + [40025] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1637), 2, + STATE(1647), 2, sym_line_comment, sym_block_comment, - ACTIONS(1416), 15, + ACTIONS(3506), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144251,7 +146415,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1418), 23, + ACTIONS(3504), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -144274,61 +146438,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, anon_sym_as, - [40596] = 21, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [40079] = 19, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3687), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3691), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3693), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3901), 1, anon_sym_as, - ACTIONS(4027), 1, + ACTIONS(4085), 1, anon_sym_CARET, - ACTIONS(4029), 1, + ACTIONS(4087), 1, anon_sym_AMP, - ACTIONS(4031), 1, + ACTIONS(4089), 1, anon_sym_PIPE, - ACTIONS(4035), 1, + ACTIONS(4091), 1, + anon_sym_AMP_AMP, + ACTIONS(4093), 1, anon_sym_PIPE_PIPE, - ACTIONS(4041), 1, + ACTIONS(4037), 2, anon_sym_EQ, - ACTIONS(4047), 1, anon_sym_DOT_DOT, - ACTIONS(4023), 2, + ACTIONS(4081), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4037), 2, + ACTIONS(4095), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4045), 2, + ACTIONS(4103), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4049), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1638), 2, + STATE(1648), 2, sym_line_comment, sym_block_comment, - ACTIONS(4025), 3, + ACTIONS(4083), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4129), 3, - anon_sym_LBRACE, - anon_sym_AMP_AMP, - anon_sym_SQUOTE, - ACTIONS(4043), 4, + ACTIONS(4101), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4039), 10, + ACTIONS(4035), 15, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144339,15 +146500,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40681] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + [40161] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1639), 2, + STATE(1649), 2, sym_line_comment, sym_block_comment, - ACTIONS(3396), 15, + ACTIONS(1221), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144363,7 +146527,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3392), 23, + ACTIONS(1219), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -144387,15 +146551,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [40734] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_else, + [40215] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1640), 2, + ACTIONS(4173), 1, + anon_sym_COLON_COLON, + STATE(1650), 2, sym_line_comment, sym_block_comment, - ACTIONS(3635), 15, + ACTIONS(3379), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144411,7 +146578,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3633), 23, + ACTIONS(3377), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -144435,15 +146602,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [40787] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [40271] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1641), 2, + ACTIONS(4181), 1, + anon_sym_COLON_COLON, + STATE(1651), 2, sym_line_comment, sym_block_comment, - ACTIONS(1416), 15, + ACTIONS(3379), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144459,7 +146628,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1418), 23, + ACTIONS(3377), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -144483,15 +146652,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [40840] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [40327] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1642), 2, + ACTIONS(4183), 1, + anon_sym_COLON_COLON, + STATE(1652), 2, sym_line_comment, sym_block_comment, - ACTIONS(3719), 15, + ACTIONS(1307), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144507,7 +146678,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3717), 23, + ACTIONS(1305), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -144531,21 +146702,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [40893] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [40383] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4131), 1, - anon_sym_LBRACK, - ACTIONS(4133), 1, - anon_sym_QMARK, - ACTIONS(4135), 1, - anon_sym_DOT, - STATE(1643), 2, + STATE(1653), 2, sym_line_comment, sym_block_comment, - ACTIONS(3789), 14, + ACTIONS(3563), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144559,10 +146724,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3787), 21, + ACTIONS(3561), 24, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -144581,22 +146749,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_DASH_GT, anon_sym_as, - [40952] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [40437] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4131), 1, + ACTIONS(3687), 1, anon_sym_LBRACK, - ACTIONS(4133), 1, + ACTIONS(3691), 1, anon_sym_QMARK, - ACTIONS(4135), 1, + ACTIONS(3693), 1, anon_sym_DOT, - STATE(1644), 2, + ACTIONS(3901), 1, + anon_sym_as, + ACTIONS(4085), 1, + anon_sym_CARET, + ACTIONS(4087), 1, + anon_sym_AMP, + ACTIONS(4089), 1, + anon_sym_PIPE, + ACTIONS(4091), 1, + anon_sym_AMP_AMP, + ACTIONS(4093), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4099), 1, + anon_sym_EQ, + ACTIONS(4143), 1, + anon_sym_DOT_DOT, + ACTIONS(4081), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4095), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4103), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4145), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1654), 2, sym_line_comment, sym_block_comment, - ACTIONS(3805), 14, + ACTIONS(3881), 3, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_SQUOTE, + ACTIONS(4083), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4101), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4097), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [40525] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4185), 1, + anon_sym_LPAREN, + STATE(1799), 1, + sym_arguments, + STATE(1655), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3573), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144610,10 +146843,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3803), 21, - anon_sym_LPAREN, + ACTIONS(3569), 22, + anon_sym_LBRACK, anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -144633,56 +146868,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [41011] = 19, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [40583] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4131), 1, - anon_sym_LBRACK, - ACTIONS(4133), 1, - anon_sym_QMARK, - ACTIONS(4135), 1, - anon_sym_DOT, - ACTIONS(4141), 1, + ACTIONS(4187), 1, + anon_sym_COLON_COLON, + STATE(1656), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1307), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4143), 1, anon_sym_AMP, - ACTIONS(4145), 1, anon_sym_PIPE, - ACTIONS(4147), 1, - anon_sym_AMP_AMP, - ACTIONS(4149), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4157), 1, - anon_sym_as, - ACTIONS(370), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(4137), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4151), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4155), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - STATE(1645), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4139), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4153), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(368), 14, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1305), 23, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144693,62 +146911,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [41092] = 21, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(342), 1, - anon_sym_EQ, - ACTIONS(4131), 1, - anon_sym_LBRACK, - ACTIONS(4133), 1, - anon_sym_QMARK, - ACTIONS(4135), 1, - anon_sym_DOT, - ACTIONS(4141), 1, - anon_sym_CARET, - ACTIONS(4143), 1, - anon_sym_AMP, - ACTIONS(4145), 1, - anon_sym_PIPE, - ACTIONS(4147), 1, - anon_sym_AMP_AMP, - ACTIONS(4149), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4157), 1, - anon_sym_as, - ACTIONS(4159), 1, - anon_sym_DOT_DOT, - ACTIONS(4137), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4151), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4155), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4161), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1646), 2, + anon_sym_as, + [40639] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4189), 1, + anon_sym_DASH_GT, + STATE(1657), 2, sym_line_comment, sym_block_comment, - ACTIONS(4139), 3, + ACTIONS(3579), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4153), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(336), 12, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3577), 23, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144759,15 +146961,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41177] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [40695] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1647), 2, + STATE(1658), 2, sym_line_comment, sym_block_comment, - ACTIONS(3847), 15, + ACTIONS(3615), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144783,7 +146992,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3845), 23, + ACTIONS(3613), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -144806,61 +147015,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_DASH_GT, anon_sym_as, - [41230] = 21, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [40749] = 24, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3935), 1, - anon_sym_EQ, - ACTIONS(4131), 1, + ACTIONS(1032), 1, + anon_sym_RPAREN, + ACTIONS(3687), 1, anon_sym_LBRACK, - ACTIONS(4133), 1, + ACTIONS(3691), 1, anon_sym_QMARK, - ACTIONS(4135), 1, + ACTIONS(3693), 1, anon_sym_DOT, - ACTIONS(4141), 1, - anon_sym_CARET, - ACTIONS(4143), 1, + ACTIONS(3901), 1, + anon_sym_as, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(4145), 1, + ACTIONS(3981), 1, + anon_sym_CARET, + ACTIONS(3983), 1, anon_sym_PIPE, - ACTIONS(4147), 1, + ACTIONS(3985), 1, anon_sym_AMP_AMP, - ACTIONS(4149), 1, + ACTIONS(3987), 1, anon_sym_PIPE_PIPE, - ACTIONS(4157), 1, - anon_sym_as, - ACTIONS(4159), 1, + ACTIONS(4015), 1, + anon_sym_EQ, + ACTIONS(4123), 1, anon_sym_DOT_DOT, - ACTIONS(4137), 2, + ACTIONS(4191), 1, + anon_sym_COMMA, + STATE(3040), 1, + aux_sym_arguments_repeat1, + ACTIONS(3973), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4151), 2, + ACTIONS(3979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4155), 2, + ACTIONS(3991), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4161), 2, + ACTIONS(4125), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1648), 2, + STATE(1659), 2, sym_line_comment, sym_block_comment, - ACTIONS(4139), 3, + ACTIONS(3975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4153), 4, + ACTIONS(3989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3933), 12, - anon_sym_LPAREN, - anon_sym_EQ_GT, + ACTIONS(4013), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144871,60 +147085,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41315] = 21, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [40841] = 19, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3957), 1, - anon_sym_EQ, - ACTIONS(4131), 1, + ACTIONS(3687), 1, anon_sym_LBRACK, - ACTIONS(4133), 1, + ACTIONS(3691), 1, anon_sym_QMARK, - ACTIONS(4135), 1, + ACTIONS(3693), 1, anon_sym_DOT, - ACTIONS(4141), 1, + ACTIONS(3901), 1, + anon_sym_as, + ACTIONS(4085), 1, anon_sym_CARET, - ACTIONS(4143), 1, + ACTIONS(4087), 1, anon_sym_AMP, - ACTIONS(4145), 1, + ACTIONS(4089), 1, anon_sym_PIPE, - ACTIONS(4147), 1, + ACTIONS(4091), 1, anon_sym_AMP_AMP, - ACTIONS(4149), 1, + ACTIONS(4093), 1, anon_sym_PIPE_PIPE, - ACTIONS(4157), 1, - anon_sym_as, - ACTIONS(4159), 1, + ACTIONS(375), 2, + anon_sym_EQ, anon_sym_DOT_DOT, - ACTIONS(4137), 2, + ACTIONS(4081), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4151), 2, + ACTIONS(4095), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4155), 2, + ACTIONS(4103), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4161), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1649), 2, + STATE(1660), 2, sym_line_comment, sym_block_comment, - ACTIONS(4139), 3, + ACTIONS(4083), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4153), 4, + ACTIONS(4101), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3955), 12, + ACTIONS(373), 15, anon_sym_LPAREN, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144935,15 +147145,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41400] = 5, - ACTIONS(101), 1, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + [40923] = 22, + ACTIONS(31), 1, + anon_sym_LT, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1403), 1, + anon_sym_extern, + ACTIONS(3426), 1, + anon_sym_COLON_COLON, + ACTIONS(3430), 1, + anon_sym_union, + ACTIONS(3436), 1, + sym_metavariable, + ACTIONS(3516), 1, + anon_sym_default, + ACTIONS(4193), 1, + sym_identifier, + ACTIONS(4195), 1, + anon_sym_fn, + STATE(2255), 1, + aux_sym_function_modifiers_repeat1, + STATE(2359), 1, + sym_extern_modifier, + STATE(2600), 1, + sym_scoped_type_identifier, + STATE(3426), 1, + sym_generic_type_with_turbofish, + STATE(3442), 1, + sym_scoped_identifier, + STATE(3491), 1, + sym_generic_type, + STATE(3563), 1, + sym_bracketed_type, + STATE(3578), 1, + sym_function_modifiers, + STATE(1661), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1389), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3434), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(3514), 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, + [41011] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1650), 2, + ACTIONS(4111), 1, + anon_sym_COLON_COLON, + STATE(1662), 2, sym_line_comment, sym_block_comment, - ACTIONS(3561), 15, + ACTIONS(3395), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144959,7 +147240,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3559), 23, + ACTIONS(3393), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -144983,15 +147264,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [41453] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [41067] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1651), 2, + STATE(1663), 2, sym_line_comment, sym_block_comment, - ACTIONS(3573), 15, + ACTIONS(3611), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145007,7 +147288,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3571), 23, + ACTIONS(3609), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -145030,86 +147311,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_DASH_GT, anon_sym_as, - [41506] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [41121] = 21, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1652), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3577), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3687), 1, + anon_sym_LBRACK, + ACTIONS(3691), 1, + anon_sym_QMARK, + ACTIONS(3693), 1, + anon_sym_DOT, + ACTIONS(3901), 1, + anon_sym_as, + ACTIONS(3999), 1, + anon_sym_EQ, + ACTIONS(4085), 1, anon_sym_CARET, + ACTIONS(4087), 1, anon_sym_AMP, + ACTIONS(4089), 1, anon_sym_PIPE, + ACTIONS(4091), 1, + anon_sym_AMP_AMP, + ACTIONS(4093), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4143), 1, + anon_sym_DOT_DOT, + ACTIONS(4081), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4095), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4103), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3575), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + ACTIONS(4145), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [41559] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1653), 2, + STATE(1664), 2, sym_line_comment, sym_block_comment, - ACTIONS(3607), 15, - anon_sym_PLUS, + ACTIONS(4083), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3605), 23, + ACTIONS(4101), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3997), 13, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145120,69 +147377,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [41612] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_SQUOTE, + [41207] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3687), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3691), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3693), 1, anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, ACTIONS(3901), 1, - anon_sym_CARET, - ACTIONS(3903), 1, + anon_sym_as, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3981), 1, + anon_sym_CARET, + ACTIONS(3983), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3985), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3987), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4015), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4123), 1, anon_sym_DOT_DOT, - ACTIONS(4163), 1, - anon_sym_SEMI, - ACTIONS(4165), 1, - anon_sym_else, - ACTIONS(3897), 2, + ACTIONS(3973), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(3991), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4125), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1654), 2, + STATE(1665), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4197), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(3989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4013), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145193,15 +147444,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41701] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [41295] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1655), 2, + ACTIONS(4173), 1, + anon_sym_COLON_COLON, + STATE(1666), 2, sym_line_comment, sym_block_comment, - ACTIONS(3773), 15, + ACTIONS(3359), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145217,7 +147470,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3771), 23, + ACTIONS(3357), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -145241,15 +147494,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [41754] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [41351] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1656), 2, + STATE(1667), 2, sym_line_comment, sym_block_comment, - ACTIONS(1416), 15, + ACTIONS(3538), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145265,7 +147518,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1418), 23, + ACTIONS(3536), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -145288,36 +147541,176 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_DASH_GT, anon_sym_as, - [41807] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [41405] = 22, + ACTIONS(31), 1, + anon_sym_LT, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1657), 2, + ACTIONS(1403), 1, + anon_sym_extern, + ACTIONS(3426), 1, + anon_sym_COLON_COLON, + ACTIONS(3430), 1, + anon_sym_union, + ACTIONS(3436), 1, + sym_metavariable, + ACTIONS(3516), 1, + anon_sym_default, + ACTIONS(4199), 1, + sym_identifier, + ACTIONS(4201), 1, + anon_sym_fn, + STATE(2255), 1, + aux_sym_function_modifiers_repeat1, + STATE(2359), 1, + sym_extern_modifier, + STATE(2773), 1, + sym_scoped_type_identifier, + STATE(3426), 1, + sym_generic_type_with_turbofish, + STATE(3442), 1, + sym_scoped_identifier, + STATE(3457), 1, + sym_function_modifiers, + STATE(3491), 1, + sym_generic_type, + STATE(3563), 1, + sym_bracketed_type, + STATE(1668), 2, sym_line_comment, sym_block_comment, - ACTIONS(3785), 15, + ACTIONS(1389), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3434), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(3514), 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, + [41493] = 21, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(347), 1, + anon_sym_EQ, + ACTIONS(3687), 1, + anon_sym_LBRACK, + ACTIONS(3691), 1, + anon_sym_QMARK, + ACTIONS(3693), 1, + anon_sym_DOT, + ACTIONS(3901), 1, + anon_sym_as, + ACTIONS(4085), 1, + anon_sym_CARET, + ACTIONS(4087), 1, + anon_sym_AMP, + ACTIONS(4089), 1, + anon_sym_PIPE, + ACTIONS(4091), 1, + anon_sym_AMP_AMP, + ACTIONS(4093), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4143), 1, + anon_sym_DOT_DOT, + ACTIONS(4081), 2, anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4095), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4103), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4145), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1669), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4083), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4101), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(341), 13, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_SQUOTE, + [41579] = 12, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4203), 1, + anon_sym_LBRACK, + ACTIONS(4209), 1, + anon_sym_QMARK, + ACTIONS(4213), 1, + anon_sym_DOT, + ACTIONS(4215), 1, + anon_sym_as, + ACTIONS(4205), 2, + anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4211), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1670), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4207), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3899), 7, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3783), 23, + ACTIONS(3897), 20, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_EQ_GT, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -145336,21 +147729,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [41860] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [41646] = 10, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1658), 2, + ACTIONS(4203), 1, + anon_sym_LBRACK, + ACTIONS(4209), 1, + anon_sym_QMARK, + ACTIONS(4213), 1, + anon_sym_DOT, + ACTIONS(4215), 1, + anon_sym_as, + STATE(1671), 2, sym_line_comment, sym_block_comment, - ACTIONS(3801), 15, - anon_sym_PLUS, + ACTIONS(4207), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3899), 11, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -145359,13 +147760,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3799), 23, + ACTIONS(3897), 20, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_EQ_GT, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -145384,22 +147782,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [41913] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [41709] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4131), 1, - anon_sym_LBRACK, - ACTIONS(4133), 1, - anon_sym_QMARK, - ACTIONS(4135), 1, - anon_sym_DOT, - STATE(1659), 2, + STATE(1672), 2, sym_line_comment, sym_block_comment, - ACTIONS(3809), 14, + ACTIONS(1319), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145413,10 +147804,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3807), 21, + ACTIONS(1317), 23, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -145436,62 +147830,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [41972] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [41762] = 23, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(286), 1, - anon_sym_RBRACE, - ACTIONS(3667), 1, + ACTIONS(1088), 1, + anon_sym_RPAREN, + ACTIONS(3687), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3691), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3693), 1, anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, ACTIONS(3901), 1, - anon_sym_CARET, - ACTIONS(3903), 1, + anon_sym_as, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3981), 1, + anon_sym_CARET, + ACTIONS(3983), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3985), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3987), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4015), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4123), 1, anon_sym_DOT_DOT, - ACTIONS(4125), 1, - anon_sym_SEMI, - ACTIONS(3897), 2, + ACTIONS(4217), 1, + anon_sym_COMMA, + ACTIONS(3973), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(3991), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4125), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1660), 2, + STATE(1673), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(3989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4013), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145502,15 +147896,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42061] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [41851] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1661), 2, + STATE(1674), 2, sym_line_comment, sym_block_comment, - ACTIONS(3741), 15, + ACTIONS(1563), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145526,7 +147920,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3739), 23, + ACTIONS(1565), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -145550,15 +147944,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42114] = 5, - ACTIONS(101), 1, + [41904] = 23, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3687), 1, + anon_sym_LBRACK, + ACTIONS(3691), 1, + anon_sym_QMARK, + ACTIONS(3693), 1, + anon_sym_DOT, + ACTIONS(3901), 1, + anon_sym_as, + ACTIONS(4219), 1, + anon_sym_LBRACE, + ACTIONS(4225), 1, + anon_sym_CARET, + ACTIONS(4227), 1, + anon_sym_AMP, + ACTIONS(4229), 1, + anon_sym_PIPE, + ACTIONS(4231), 1, + anon_sym_AMP_AMP, + ACTIONS(4233), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4239), 1, + anon_sym_EQ, + ACTIONS(4245), 1, + anon_sym_DOT_DOT, + STATE(469), 1, + sym_match_block, + ACTIONS(4221), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4235), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4243), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4247), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1675), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4223), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4241), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4237), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [41993] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1662), 2, + STATE(1676), 2, sym_line_comment, sym_block_comment, - ACTIONS(1416), 15, + ACTIONS(3627), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145574,7 +148034,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1418), 23, + ACTIONS(3625), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -145598,15 +148058,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42167] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [42046] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1663), 2, + STATE(1677), 2, sym_line_comment, sym_block_comment, - ACTIONS(3835), 15, + ACTIONS(3907), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145622,7 +148082,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3833), 23, + ACTIONS(3905), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -145646,15 +148106,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42220] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [42099] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1664), 2, + STATE(1678), 2, sym_line_comment, sym_block_comment, - ACTIONS(3619), 15, + ACTIONS(3943), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145670,7 +148130,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3617), 23, + ACTIONS(3941), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -145694,23 +148154,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42273] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [42152] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4131), 1, - anon_sym_LBRACK, - ACTIONS(4133), 1, - anon_sym_QMARK, - ACTIONS(4135), 1, - anon_sym_DOT, - ACTIONS(4157), 1, - anon_sym_as, - STATE(1665), 2, + STATE(1679), 2, sym_line_comment, sym_block_comment, - ACTIONS(3669), 14, + ACTIONS(3947), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145724,10 +148176,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3665), 20, + ACTIONS(3945), 23, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -145746,15 +148201,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [42334] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_as, + [42205] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1666), 2, + STATE(1680), 2, sym_line_comment, sym_block_comment, - ACTIONS(3651), 15, + ACTIONS(3647), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145770,7 +148226,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3649), 23, + ACTIONS(3645), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -145794,36 +148250,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42387] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [42258] = 18, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1667), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3777), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4203), 1, + anon_sym_LBRACK, + ACTIONS(4209), 1, + anon_sym_QMARK, + ACTIONS(4213), 1, + anon_sym_DOT, + ACTIONS(4215), 1, + anon_sym_as, + ACTIONS(4249), 1, anon_sym_CARET, + ACTIONS(4251), 1, anon_sym_AMP, + ACTIONS(4253), 1, anon_sym_PIPE, + ACTIONS(4255), 1, + anon_sym_AMP_AMP, + ACTIONS(3899), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4205), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4211), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4259), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3775), 23, + STATE(1681), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4207), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4257), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3897), 15, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -145835,42 +148309,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [42440] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [42337] = 17, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1668), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3545), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4203), 1, + anon_sym_LBRACK, + ACTIONS(4209), 1, + anon_sym_QMARK, + ACTIONS(4213), 1, + anon_sym_DOT, + ACTIONS(4215), 1, + anon_sym_as, + ACTIONS(4249), 1, anon_sym_CARET, + ACTIONS(4251), 1, anon_sym_AMP, + ACTIONS(4253), 1, anon_sym_PIPE, + ACTIONS(3899), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4205), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4211), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4259), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3543), 23, + STATE(1682), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4207), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4257), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3897), 16, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_EQ_GT, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -145883,42 +148369,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [42493] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [42414] = 23, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1669), 2, + ACTIONS(3687), 1, + anon_sym_LBRACK, + ACTIONS(3691), 1, + anon_sym_QMARK, + ACTIONS(3693), 1, + anon_sym_DOT, + ACTIONS(3901), 1, + anon_sym_as, + ACTIONS(3977), 1, + anon_sym_AMP, + ACTIONS(3981), 1, + anon_sym_CARET, + ACTIONS(3983), 1, + anon_sym_PIPE, + ACTIONS(3985), 1, + anon_sym_AMP_AMP, + ACTIONS(3987), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4015), 1, + anon_sym_EQ, + ACTIONS(4123), 1, + anon_sym_DOT_DOT, + ACTIONS(4261), 1, + anon_sym_SEMI, + ACTIONS(4263), 1, + anon_sym_else, + ACTIONS(3973), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3979), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3991), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4125), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1683), 2, sym_line_comment, sym_block_comment, - ACTIONS(3549), 15, - anon_sym_PLUS, + ACTIONS(3975), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3989), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4013), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [42503] = 14, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4203), 1, + anon_sym_LBRACK, + ACTIONS(4209), 1, + anon_sym_QMARK, + ACTIONS(4213), 1, + anon_sym_DOT, + ACTIONS(4215), 1, + anon_sym_as, + ACTIONS(4249), 1, anon_sym_CARET, + ACTIONS(4251), 1, anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4205), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4211), 2, anon_sym_LT_LT, anon_sym_GT_GT, + STATE(1684), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4207), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3899), 5, + anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3547), 23, + ACTIONS(3897), 20, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_EQ_GT, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -145937,16 +148494,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [42546] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [42574] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1670), 2, + STATE(1685), 2, sym_line_comment, sym_block_comment, - ACTIONS(3553), 15, + ACTIONS(3643), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145962,7 +148518,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3551), 23, + ACTIONS(3641), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -145986,61 +148542,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42599] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [42627] = 23, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(1086), 1, + anon_sym_RPAREN, + ACTIONS(3687), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3691), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3693), 1, anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, ACTIONS(3901), 1, - anon_sym_CARET, - ACTIONS(3903), 1, + anon_sym_as, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3981), 1, + anon_sym_CARET, + ACTIONS(3983), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3985), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3987), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4015), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4123), 1, anon_sym_DOT_DOT, - ACTIONS(3897), 2, + ACTIONS(4217), 1, + anon_sym_COMMA, + ACTIONS(3973), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(3991), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4125), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4167), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1671), 2, + STATE(1686), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(3989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4013), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146051,15 +148608,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42686] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [42716] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1672), 2, + STATE(1687), 2, sym_line_comment, sym_block_comment, - ACTIONS(3663), 15, + ACTIONS(3635), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -146075,7 +148632,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3661), 23, + ACTIONS(3633), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -146099,15 +148656,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42739] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [42769] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1673), 2, + STATE(1688), 2, sym_line_comment, sym_block_comment, - ACTIONS(1416), 15, + ACTIONS(3679), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -146123,7 +148680,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1418), 23, + ACTIONS(3677), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -146147,81 +148704,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42792] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [42822] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(288), 1, - anon_sym_RBRACE, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, - anon_sym_CARET, - ACTIONS(3903), 1, - anon_sym_AMP, - ACTIONS(3905), 1, - anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(4005), 1, - anon_sym_DOT_DOT, - ACTIONS(4125), 1, - anon_sym_SEMI, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3917), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4007), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1674), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3899), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3929), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [42881] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1675), 2, + STATE(1689), 2, sym_line_comment, sym_block_comment, - ACTIONS(3715), 15, + ACTIONS(1251), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -146237,7 +148728,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3713), 23, + ACTIONS(1249), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -146261,37 +148752,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42934] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [42875] = 21, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1676), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3749), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(347), 1, + anon_sym_EQ, + ACTIONS(3687), 1, + anon_sym_LBRACK, + ACTIONS(3691), 1, + anon_sym_QMARK, + ACTIONS(3693), 1, + anon_sym_DOT, + ACTIONS(3901), 1, + anon_sym_as, + ACTIONS(4225), 1, anon_sym_CARET, + ACTIONS(4227), 1, anon_sym_AMP, + ACTIONS(4229), 1, anon_sym_PIPE, + ACTIONS(4231), 1, + anon_sym_AMP_AMP, + ACTIONS(4233), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4265), 1, + anon_sym_DOT_DOT, + ACTIONS(4221), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4243), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3747), 23, + ACTIONS(4267), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1690), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4223), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4241), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(341), 12, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146302,22 +148816,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [42987] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [42960] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1677), 2, + STATE(1691), 2, sym_line_comment, sym_block_comment, - ACTIONS(3753), 15, + ACTIONS(1245), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -146333,7 +148840,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3751), 23, + ACTIONS(1243), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -146357,37 +148864,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [43040] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [43013] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1678), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3765), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(3687), 1, + anon_sym_LBRACK, + ACTIONS(3691), 1, + anon_sym_QMARK, + ACTIONS(3693), 1, + anon_sym_DOT, + ACTIONS(3901), 1, + anon_sym_as, + ACTIONS(3977), 1, anon_sym_AMP, + ACTIONS(3981), 1, + anon_sym_CARET, + ACTIONS(3983), 1, anon_sym_PIPE, + ACTIONS(3985), 1, + anon_sym_AMP_AMP, + ACTIONS(3987), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4015), 1, + anon_sym_EQ, + ACTIONS(4123), 1, + anon_sym_DOT_DOT, + ACTIONS(3881), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3973), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(3991), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3763), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4125), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1692), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3975), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3989), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4013), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146398,44 +148929,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [43093] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [43100] = 23, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1679), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3781), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(3687), 1, + anon_sym_LBRACK, + ACTIONS(3691), 1, + anon_sym_QMARK, + ACTIONS(3693), 1, + anon_sym_DOT, + ACTIONS(3901), 1, + anon_sym_as, + ACTIONS(3977), 1, anon_sym_AMP, + ACTIONS(3981), 1, + anon_sym_CARET, + ACTIONS(3983), 1, anon_sym_PIPE, + ACTIONS(3985), 1, + anon_sym_AMP_AMP, + ACTIONS(3987), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4015), 1, + anon_sym_EQ, + ACTIONS(4123), 1, + anon_sym_DOT_DOT, + ACTIONS(4269), 1, + anon_sym_SEMI, + ACTIONS(4271), 1, + anon_sym_else, + ACTIONS(3973), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(3991), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3779), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4125), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1693), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3975), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3989), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4013), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146446,22 +148995,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [43146] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [43189] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1680), 2, + STATE(1694), 2, sym_line_comment, sym_block_comment, - ACTIONS(3793), 15, + ACTIONS(3713), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -146477,7 +149019,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3791), 23, + ACTIONS(3711), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -146501,15 +149043,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [43199] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [43242] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1681), 2, + STATE(1695), 2, sym_line_comment, sym_block_comment, - ACTIONS(3797), 15, + ACTIONS(3717), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -146525,7 +149067,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3795), 23, + ACTIONS(3715), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -146549,62 +149091,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [43252] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [43295] = 23, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1174), 1, - anon_sym_RPAREN, - ACTIONS(3667), 1, + ACTIONS(3687), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3691), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3693), 1, anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, ACTIONS(3901), 1, - anon_sym_CARET, - ACTIONS(3903), 1, + anon_sym_as, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3981), 1, + anon_sym_CARET, + ACTIONS(3983), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3985), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3987), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4015), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4123), 1, anon_sym_DOT_DOT, - ACTIONS(4169), 1, - anon_sym_COMMA, - ACTIONS(3897), 2, + ACTIONS(4273), 1, + anon_sym_SEMI, + ACTIONS(4275), 1, + anon_sym_else, + ACTIONS(3973), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(3991), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4125), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1682), 2, + STATE(1696), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(3989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4013), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146615,15 +149157,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43341] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [43384] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1683), 2, + STATE(1697), 2, sym_line_comment, sym_block_comment, - ACTIONS(3839), 15, + ACTIONS(3767), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -146639,7 +149181,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3837), 23, + ACTIONS(3765), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -146663,37 +149205,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [43394] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [43437] = 19, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1684), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3871), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3687), 1, + anon_sym_LBRACK, + ACTIONS(3691), 1, + anon_sym_QMARK, + ACTIONS(3693), 1, + anon_sym_DOT, + ACTIONS(3901), 1, + anon_sym_as, + ACTIONS(4225), 1, anon_sym_CARET, + ACTIONS(4227), 1, anon_sym_AMP, + ACTIONS(4229), 1, anon_sym_PIPE, + ACTIONS(4231), 1, + anon_sym_AMP_AMP, + ACTIONS(4233), 1, + anon_sym_PIPE_PIPE, + ACTIONS(375), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4221), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4243), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3869), 23, + STATE(1698), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4223), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4241), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(373), 14, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146704,44 +149265,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [43447] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [43518] = 18, + ACTIONS(31), 1, + anon_sym_LT, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1685), 2, + ACTIONS(4277), 1, + sym_identifier, + ACTIONS(4279), 1, + anon_sym_LBRACE, + ACTIONS(4281), 1, + anon_sym_RBRACE, + ACTIONS(4283), 1, + anon_sym_COMMA, + ACTIONS(4285), 1, + anon_sym_STAR, + ACTIONS(4289), 1, + anon_sym_COLON_COLON, + ACTIONS(4293), 1, + sym_metavariable, + STATE(2461), 1, + sym_scoped_identifier, + STATE(2832), 1, + sym__use_clause, + STATE(3513), 1, + sym_generic_type_with_turbofish, + STATE(3650), 1, + sym_bracketed_type, + STATE(1699), 2, sym_line_comment, sym_block_comment, - ACTIONS(3883), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(4291), 3, + sym_self, + sym_super, + sym_crate, + STATE(2850), 4, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(4287), 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, + [43597] = 22, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3687), 1, + anon_sym_LBRACK, + ACTIONS(3691), 1, + anon_sym_QMARK, + ACTIONS(3693), 1, + anon_sym_DOT, + ACTIONS(3901), 1, + anon_sym_as, + ACTIONS(3977), 1, anon_sym_AMP, + ACTIONS(3981), 1, + anon_sym_CARET, + ACTIONS(3983), 1, anon_sym_PIPE, + ACTIONS(3985), 1, + anon_sym_AMP_AMP, + ACTIONS(3987), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4015), 1, + anon_sym_EQ, + ACTIONS(4123), 1, + anon_sym_DOT_DOT, + ACTIONS(3973), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(3991), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3881), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4125), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4295), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1700), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3975), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3989), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4013), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146752,44 +149393,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [43500] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [43684] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1686), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3679), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(3687), 1, + anon_sym_LBRACK, + ACTIONS(3691), 1, + anon_sym_QMARK, + ACTIONS(3693), 1, + anon_sym_DOT, + ACTIONS(3901), 1, + anon_sym_as, + ACTIONS(3977), 1, anon_sym_AMP, + ACTIONS(3981), 1, + anon_sym_CARET, + ACTIONS(3983), 1, anon_sym_PIPE, + ACTIONS(3985), 1, + anon_sym_AMP_AMP, + ACTIONS(3987), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4015), 1, + anon_sym_EQ, + ACTIONS(4123), 1, + anon_sym_DOT_DOT, + ACTIONS(3973), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(3991), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3677), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4125), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4297), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1701), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3975), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3989), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4013), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146800,22 +149458,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [43553] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [43771] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1687), 2, + STATE(1702), 2, sym_line_comment, sym_block_comment, - ACTIONS(3691), 15, + ACTIONS(3783), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -146831,7 +149482,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3689), 23, + ACTIONS(3781), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -146855,15 +149506,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [43606] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [43824] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1688), 2, + STATE(1703), 2, sym_line_comment, sym_block_comment, - ACTIONS(3695), 15, + ACTIONS(1263), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -146879,7 +149530,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3693), 23, + ACTIONS(1261), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -146903,37 +149554,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [43659] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [43877] = 23, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1689), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3557), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(3687), 1, + anon_sym_LBRACK, + ACTIONS(3691), 1, + anon_sym_QMARK, + ACTIONS(3693), 1, + anon_sym_DOT, + ACTIONS(3901), 1, + anon_sym_as, + ACTIONS(3977), 1, anon_sym_AMP, + ACTIONS(3981), 1, + anon_sym_CARET, + ACTIONS(3983), 1, anon_sym_PIPE, + ACTIONS(3985), 1, + anon_sym_AMP_AMP, + ACTIONS(3987), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4015), 1, + anon_sym_EQ, + ACTIONS(4123), 1, + anon_sym_DOT_DOT, + ACTIONS(4299), 1, + anon_sym_RPAREN, + ACTIONS(4301), 1, + anon_sym_COMMA, + ACTIONS(3973), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(3991), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3555), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4125), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1704), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3975), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3989), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4013), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146944,67 +149620,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [43712] = 21, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [43966] = 23, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(327), 1, + anon_sym_RBRACE, + ACTIONS(3687), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3691), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3693), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3901), 1, anon_sym_as, - ACTIONS(4027), 1, - anon_sym_CARET, - ACTIONS(4029), 1, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(4031), 1, + ACTIONS(3981), 1, + anon_sym_CARET, + ACTIONS(3983), 1, anon_sym_PIPE, - ACTIONS(4035), 1, + ACTIONS(3985), 1, + anon_sym_AMP_AMP, + ACTIONS(3987), 1, anon_sym_PIPE_PIPE, - ACTIONS(4041), 1, + ACTIONS(4015), 1, anon_sym_EQ, - ACTIONS(4047), 1, + ACTIONS(4123), 1, anon_sym_DOT_DOT, - ACTIONS(4023), 2, + ACTIONS(4303), 1, + anon_sym_SEMI, + ACTIONS(3973), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4037), 2, + ACTIONS(3979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4045), 2, + ACTIONS(3991), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4049), 2, + ACTIONS(4125), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1690), 2, + STATE(1705), 2, sym_line_comment, sym_block_comment, - ACTIONS(4025), 3, + ACTIONS(3975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4171), 3, - anon_sym_LBRACE, - anon_sym_AMP_AMP, - anon_sym_SQUOTE, - ACTIONS(4043), 4, + ACTIONS(3989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4039), 10, + ACTIONS(4013), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147015,15 +149686,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43797] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [44055] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1691), 2, + STATE(1706), 2, sym_line_comment, sym_block_comment, - ACTIONS(3707), 15, + ACTIONS(3841), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147039,7 +149710,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3705), 23, + ACTIONS(3839), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -147063,15 +149734,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [43850] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [44108] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1692), 2, + STATE(1707), 2, sym_line_comment, sym_block_comment, - ACTIONS(3825), 15, + ACTIONS(3853), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147087,7 +149758,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3823), 23, + ACTIONS(3851), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -147111,15 +149782,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [43903] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [44161] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1693), 2, + STATE(1708), 2, sym_line_comment, sym_block_comment, - ACTIONS(3611), 15, + ACTIONS(3771), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147135,7 +149806,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3609), 23, + ACTIONS(3769), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -147159,15 +149830,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [43956] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [44214] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1694), 2, + STATE(1709), 2, sym_line_comment, sym_block_comment, - ACTIONS(3615), 15, + ACTIONS(3829), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147183,7 +149854,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3613), 23, + ACTIONS(3827), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -147207,62 +149878,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [44009] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [44267] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, - anon_sym_CARET, - ACTIONS(3903), 1, - anon_sym_AMP, - ACTIONS(3905), 1, - anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(4005), 1, - anon_sym_DOT_DOT, - ACTIONS(4173), 1, - anon_sym_SEMI, - ACTIONS(4175), 1, - anon_sym_else, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3917), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4007), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1695), 2, + STATE(1710), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(1295), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3929), 10, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1293), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147273,15 +149919,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44098] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [44320] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1696), 2, + STATE(1711), 2, sym_line_comment, sym_block_comment, - ACTIONS(3565), 15, + ACTIONS(922), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147297,7 +149950,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3563), 23, + ACTIONS(924), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -147321,61 +149974,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [44151] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [44373] = 23, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3687), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3691), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3693), 1, anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, ACTIONS(3901), 1, + anon_sym_as, + ACTIONS(4225), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4227), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4229), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(4231), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4233), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4239), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4245), 1, anon_sym_DOT_DOT, - ACTIONS(3897), 2, + ACTIONS(4305), 1, + anon_sym_LBRACE, + STATE(285), 1, + sym_match_block, + ACTIONS(4221), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4243), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4247), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4177), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1697), 2, + STATE(1712), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4223), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4241), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4237), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147386,61 +150040,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44238] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [44462] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, + STATE(1713), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1335), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3903), 1, anon_sym_AMP, - ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(4005), 1, - anon_sym_DOT_DOT, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4179), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1698), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3899), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3929), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1333), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147451,61 +150081,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44325] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [44515] = 23, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(333), 1, + anon_sym_RBRACE, + ACTIONS(3687), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3691), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3693), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3901), 1, anon_sym_as, - ACTIONS(4027), 1, - anon_sym_CARET, - ACTIONS(4029), 1, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(4031), 1, + ACTIONS(3981), 1, + anon_sym_CARET, + ACTIONS(3983), 1, anon_sym_PIPE, - ACTIONS(4035), 1, + ACTIONS(3985), 1, + anon_sym_AMP_AMP, + ACTIONS(3987), 1, anon_sym_PIPE_PIPE, - ACTIONS(4041), 1, + ACTIONS(4015), 1, anon_sym_EQ, - ACTIONS(4047), 1, + ACTIONS(4123), 1, anon_sym_DOT_DOT, - ACTIONS(4183), 1, - anon_sym_AMP_AMP, - ACTIONS(4023), 2, + ACTIONS(4303), 1, + anon_sym_SEMI, + ACTIONS(3973), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4037), 2, + ACTIONS(3979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4045), 2, + ACTIONS(3991), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4049), 2, + ACTIONS(4125), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4181), 2, - anon_sym_LBRACE, - anon_sym_SQUOTE, - STATE(1699), 2, + STATE(1714), 2, sym_line_comment, sym_block_comment, - ACTIONS(4025), 3, + ACTIONS(3975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4043), 4, + ACTIONS(3989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4039), 10, + ACTIONS(4013), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147516,63 +150154,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44412] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [44604] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1700), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3867), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3865), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [44465] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1701), 2, + STATE(1715), 2, sym_line_comment, sym_block_comment, - ACTIONS(3301), 15, + ACTIONS(1339), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147588,7 +150178,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3299), 23, + ACTIONS(1337), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -147612,62 +150202,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [44518] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [44657] = 23, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3687), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3691), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3693), 1, anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, ACTIONS(3901), 1, - anon_sym_CARET, - ACTIONS(3903), 1, + anon_sym_as, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3981), 1, + anon_sym_CARET, + ACTIONS(3983), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3985), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3987), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4015), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4123), 1, anon_sym_DOT_DOT, - ACTIONS(4125), 1, - anon_sym_SEMI, - ACTIONS(4185), 1, + ACTIONS(4307), 1, anon_sym_RBRACE, - ACTIONS(3897), 2, + ACTIONS(4309), 1, + anon_sym_COMMA, + ACTIONS(3973), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(3991), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4125), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1702), 2, + STATE(1716), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(3989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4013), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147678,61 +150268,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44607] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [44746] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(4191), 1, + STATE(1717), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1351), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4193), 1, anon_sym_AMP, - ACTIONS(4195), 1, anon_sym_PIPE, - ACTIONS(4197), 1, - anon_sym_AMP_AMP, - ACTIONS(4199), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4205), 1, - anon_sym_EQ, - ACTIONS(4211), 1, - anon_sym_DOT_DOT, - ACTIONS(3771), 2, - anon_sym_LPAREN, - anon_sym_LBRACE, - ACTIONS(4187), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4201), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4209), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4213), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1703), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4189), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4207), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4203), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1349), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147743,62 +150309,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44694] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [44799] = 23, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3687), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3691), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3693), 1, anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, ACTIONS(3901), 1, - anon_sym_CARET, - ACTIONS(3903), 1, + anon_sym_as, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3981), 1, + anon_sym_CARET, + ACTIONS(3983), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3985), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3987), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4015), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4123), 1, anon_sym_DOT_DOT, - ACTIONS(4169), 1, - anon_sym_COMMA, - ACTIONS(4215), 1, - anon_sym_RPAREN, - ACTIONS(3897), 2, + ACTIONS(4311), 1, + anon_sym_SEMI, + ACTIONS(4313), 1, + anon_sym_else, + ACTIONS(3973), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(3991), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4125), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1704), 2, + STATE(1718), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(3989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4013), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147809,15 +150382,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44783] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [44888] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1705), 2, + STATE(1719), 2, sym_line_comment, sym_block_comment, - ACTIONS(3623), 15, + ACTIONS(1299), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147833,7 +150406,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3621), 23, + ACTIONS(1297), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -147857,15 +150430,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [44836] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [44941] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1706), 2, + STATE(1720), 2, sym_line_comment, sym_block_comment, - ACTIONS(3631), 15, + ACTIONS(1311), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147881,7 +150454,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3629), 23, + ACTIONS(1309), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -147905,15 +150478,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [44889] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [44994] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1707), 2, + STATE(1721), 2, sym_line_comment, sym_block_comment, - ACTIONS(3213), 15, + ACTIONS(1343), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147929,7 +150502,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3215), 23, + ACTIONS(1341), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -147953,15 +150526,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [44942] = 5, - ACTIONS(101), 1, + [45047] = 23, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1094), 1, + anon_sym_RPAREN, + ACTIONS(3687), 1, + anon_sym_LBRACK, + ACTIONS(3691), 1, + anon_sym_QMARK, + ACTIONS(3693), 1, + anon_sym_DOT, + ACTIONS(3901), 1, + anon_sym_as, + ACTIONS(3977), 1, + anon_sym_AMP, + ACTIONS(3981), 1, + anon_sym_CARET, + ACTIONS(3983), 1, + anon_sym_PIPE, + ACTIONS(3985), 1, + anon_sym_AMP_AMP, + ACTIONS(3987), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4015), 1, + anon_sym_EQ, + ACTIONS(4123), 1, + anon_sym_DOT_DOT, + ACTIONS(4217), 1, + anon_sym_COMMA, + ACTIONS(3973), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3979), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3991), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4125), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1722), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3975), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3989), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4013), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [45136] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1708), 2, + STATE(1723), 2, sym_line_comment, sym_block_comment, - ACTIONS(3289), 15, + ACTIONS(960), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147977,7 +150616,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3287), 23, + ACTIONS(962), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -148001,37 +150640,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [44995] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [45189] = 23, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1709), 2, + ACTIONS(3687), 1, + anon_sym_LBRACK, + ACTIONS(3691), 1, + anon_sym_QMARK, + ACTIONS(3693), 1, + anon_sym_DOT, + ACTIONS(3901), 1, + anon_sym_as, + ACTIONS(4225), 1, + anon_sym_CARET, + ACTIONS(4227), 1, + anon_sym_AMP, + ACTIONS(4229), 1, + anon_sym_PIPE, + ACTIONS(4231), 1, + anon_sym_AMP_AMP, + ACTIONS(4233), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4239), 1, + anon_sym_EQ, + ACTIONS(4245), 1, + anon_sym_DOT_DOT, + ACTIONS(4315), 1, + anon_sym_LBRACE, + STATE(1468), 1, + sym_match_block, + ACTIONS(4221), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4235), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4243), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4247), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1724), 2, sym_line_comment, sym_block_comment, - ACTIONS(3305), 15, - anon_sym_PLUS, + ACTIONS(4223), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4241), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4237), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [45278] = 22, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3687), 1, + anon_sym_LBRACK, + ACTIONS(3691), 1, + anon_sym_QMARK, + ACTIONS(3693), 1, + anon_sym_DOT, + ACTIONS(3901), 1, + anon_sym_as, + ACTIONS(4085), 1, anon_sym_CARET, + ACTIONS(4087), 1, anon_sym_AMP, + ACTIONS(4089), 1, anon_sym_PIPE, + ACTIONS(4093), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4099), 1, + anon_sym_EQ, + ACTIONS(4105), 1, + anon_sym_DOT_DOT, + ACTIONS(4319), 1, + anon_sym_AMP_AMP, + ACTIONS(4081), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4095), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4103), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3303), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4107), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4317), 2, + anon_sym_LBRACE, + anon_sym_SQUOTE, + STATE(1725), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4083), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4101), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4097), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148042,67 +150771,169 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, + [45365] = 23, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3687), 1, + anon_sym_LBRACK, + ACTIONS(3691), 1, + anon_sym_QMARK, + ACTIONS(3693), 1, + anon_sym_DOT, + ACTIONS(3901), 1, + anon_sym_as, + ACTIONS(3977), 1, + anon_sym_AMP, + ACTIONS(3981), 1, + anon_sym_CARET, + ACTIONS(3983), 1, + anon_sym_PIPE, + ACTIONS(3985), 1, + anon_sym_AMP_AMP, + ACTIONS(3987), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4015), 1, + anon_sym_EQ, + ACTIONS(4123), 1, + anon_sym_DOT_DOT, + ACTIONS(4303), 1, + anon_sym_SEMI, + ACTIONS(4321), 1, + anon_sym_RBRACE, + ACTIONS(3973), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3979), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3991), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4125), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1726), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3975), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [45048] = 21, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4013), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [45454] = 23, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(329), 1, + anon_sym_RBRACE, + ACTIONS(3687), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3691), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3693), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3901), 1, anon_sym_as, - ACTIONS(3921), 1, - anon_sym_EQ, - ACTIONS(4191), 1, - anon_sym_CARET, - ACTIONS(4193), 1, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(4195), 1, + ACTIONS(3981), 1, + anon_sym_CARET, + ACTIONS(3983), 1, anon_sym_PIPE, - ACTIONS(4197), 1, + ACTIONS(3985), 1, anon_sym_AMP_AMP, - ACTIONS(4199), 1, + ACTIONS(3987), 1, anon_sym_PIPE_PIPE, - ACTIONS(4211), 1, + ACTIONS(4015), 1, + anon_sym_EQ, + ACTIONS(4123), 1, anon_sym_DOT_DOT, - ACTIONS(4187), 2, + ACTIONS(4303), 1, + anon_sym_SEMI, + ACTIONS(3973), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4201), 2, + ACTIONS(3979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4209), 2, + ACTIONS(3991), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4213), 2, + ACTIONS(4125), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1710), 2, + STATE(1727), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3975), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3989), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4013), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [45543] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1728), 2, sym_line_comment, sym_block_comment, - ACTIONS(4189), 3, + ACTIONS(964), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4207), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3919), 12, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(966), 23, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148113,61 +150944,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45133] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [45596] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3687), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3691), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3693), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3901), 1, anon_sym_as, - ACTIONS(4191), 1, - anon_sym_CARET, - ACTIONS(4193), 1, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(4195), 1, + ACTIONS(3981), 1, + anon_sym_CARET, + ACTIONS(3983), 1, anon_sym_PIPE, - ACTIONS(4197), 1, + ACTIONS(3985), 1, anon_sym_AMP_AMP, - ACTIONS(4199), 1, + ACTIONS(3987), 1, anon_sym_PIPE_PIPE, - ACTIONS(4205), 1, + ACTIONS(4015), 1, anon_sym_EQ, - ACTIONS(4211), 1, + ACTIONS(4123), 1, anon_sym_DOT_DOT, - ACTIONS(3739), 2, - anon_sym_LPAREN, - anon_sym_LBRACE, - ACTIONS(4187), 2, + ACTIONS(3973), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4201), 2, + ACTIONS(3979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4209), 2, + ACTIONS(3991), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4213), 2, + ACTIONS(4125), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1711), 2, + ACTIONS(4323), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1729), 2, sym_line_comment, sym_block_comment, - ACTIONS(4189), 3, + ACTIONS(3975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4207), 4, + ACTIONS(3989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4203), 10, + ACTIONS(4013), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148178,29 +151016,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45220] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [45683] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - STATE(1712), 2, + STATE(1730), 2, sym_line_comment, sym_block_comment, - ACTIONS(4189), 3, + ACTIONS(1323), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3669), 11, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -148209,10 +151038,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3665), 20, + ACTIONS(1321), 23, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -148231,46 +151063,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [45283] = 13, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_as, + [45736] = 23, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(331), 1, + anon_sym_RBRACE, + ACTIONS(3687), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3691), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3693), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3901), 1, anon_sym_as, - ACTIONS(4193), 1, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(4187), 2, + ACTIONS(3981), 1, + anon_sym_CARET, + ACTIONS(3983), 1, + anon_sym_PIPE, + ACTIONS(3985), 1, + anon_sym_AMP_AMP, + ACTIONS(3987), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4015), 1, + anon_sym_EQ, + ACTIONS(4123), 1, + anon_sym_DOT_DOT, + ACTIONS(4303), 1, + anon_sym_SEMI, + ACTIONS(3973), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4201), 2, + ACTIONS(3979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1713), 2, + ACTIONS(3991), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4125), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1731), 2, sym_line_comment, sym_block_comment, - ACTIONS(4189), 3, + ACTIONS(3975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3669), 6, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3665), 20, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3989), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4013), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148281,49 +151130,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [45352] = 12, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [45825] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(4187), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4201), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1714), 2, + STATE(1732), 2, sym_line_comment, sym_block_comment, - ACTIONS(4189), 3, + ACTIONS(3359), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3669), 7, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3665), 20, + ACTIONS(3357), 23, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -148342,45 +151177,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [45419] = 14, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_as, + [45878] = 23, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(299), 1, + anon_sym_RBRACE, + ACTIONS(3687), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3691), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3693), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3901), 1, anon_sym_as, - ACTIONS(4191), 1, - anon_sym_CARET, - ACTIONS(4193), 1, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(4187), 2, + ACTIONS(3981), 1, + anon_sym_CARET, + ACTIONS(3983), 1, + anon_sym_PIPE, + ACTIONS(3985), 1, + anon_sym_AMP_AMP, + ACTIONS(3987), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4015), 1, + anon_sym_EQ, + ACTIONS(4123), 1, + anon_sym_DOT_DOT, + ACTIONS(4303), 1, + anon_sym_SEMI, + ACTIONS(3973), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4201), 2, + ACTIONS(3979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1715), 2, + ACTIONS(3991), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4125), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1733), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3975), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3989), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4013), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [45967] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1734), 2, sym_line_comment, sym_block_comment, - ACTIONS(4189), 3, + ACTIONS(3813), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3669), 5, + anon_sym_CARET, + anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3665), 20, + ACTIONS(3811), 23, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -148399,54 +151291,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [45490] = 17, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_as, + [46020] = 23, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(337), 1, + anon_sym_RBRACE, + ACTIONS(3687), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3691), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3693), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3901), 1, anon_sym_as, - ACTIONS(4191), 1, - anon_sym_CARET, - ACTIONS(4193), 1, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(4195), 1, + ACTIONS(3981), 1, + anon_sym_CARET, + ACTIONS(3983), 1, anon_sym_PIPE, - ACTIONS(3669), 2, + ACTIONS(3985), 1, + anon_sym_AMP_AMP, + ACTIONS(3987), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4015), 1, anon_sym_EQ, + ACTIONS(4123), 1, anon_sym_DOT_DOT, - ACTIONS(4187), 2, + ACTIONS(4303), 1, + anon_sym_SEMI, + ACTIONS(3973), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4201), 2, + ACTIONS(3979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4209), 2, + ACTIONS(3991), 2, anon_sym_GT, anon_sym_LT, - STATE(1716), 2, + ACTIONS(4125), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1735), 2, sym_line_comment, sym_block_comment, - ACTIONS(4189), 3, + ACTIONS(3975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4207), 4, + ACTIONS(3989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3665), 16, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4013), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148457,57 +151358,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [45567] = 18, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [46109] = 23, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3687), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3691), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3693), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3901), 1, anon_sym_as, - ACTIONS(4191), 1, - anon_sym_CARET, - ACTIONS(4193), 1, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(4195), 1, + ACTIONS(3981), 1, + anon_sym_CARET, + ACTIONS(3983), 1, anon_sym_PIPE, - ACTIONS(4197), 1, + ACTIONS(3985), 1, anon_sym_AMP_AMP, - ACTIONS(3669), 2, + ACTIONS(3987), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4015), 1, anon_sym_EQ, + ACTIONS(4123), 1, anon_sym_DOT_DOT, - ACTIONS(4187), 2, + ACTIONS(4303), 1, + anon_sym_SEMI, + ACTIONS(4325), 1, + anon_sym_RBRACE, + ACTIONS(3973), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4201), 2, + ACTIONS(3979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4209), 2, + ACTIONS(3991), 2, anon_sym_GT, anon_sym_LT, - STATE(1717), 2, + ACTIONS(4125), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1736), 2, sym_line_comment, sym_block_comment, - ACTIONS(4189), 3, + ACTIONS(3975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4207), 4, + ACTIONS(3989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3665), 15, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_PIPE, + ACTIONS(4013), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148518,32 +151424,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [45646] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [46198] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(4187), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1718), 2, + STATE(1737), 2, sym_line_comment, sym_block_comment, - ACTIONS(4189), 3, + ACTIONS(3857), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3669), 9, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -148552,10 +151446,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3665), 20, + ACTIONS(3855), 23, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -148574,60 +151471,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [45711] = 21, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_as, + [46251] = 23, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(293), 1, + anon_sym_RBRACE, + ACTIONS(3687), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3691), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3693), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3901), 1, anon_sym_as, - ACTIONS(3949), 1, - anon_sym_EQ, - ACTIONS(4191), 1, - anon_sym_CARET, - ACTIONS(4193), 1, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(4195), 1, + ACTIONS(3981), 1, + anon_sym_CARET, + ACTIONS(3983), 1, anon_sym_PIPE, - ACTIONS(4197), 1, + ACTIONS(3985), 1, anon_sym_AMP_AMP, - ACTIONS(4199), 1, + ACTIONS(3987), 1, anon_sym_PIPE_PIPE, - ACTIONS(4211), 1, + ACTIONS(4015), 1, + anon_sym_EQ, + ACTIONS(4123), 1, anon_sym_DOT_DOT, - ACTIONS(4187), 2, + ACTIONS(4303), 1, + anon_sym_SEMI, + ACTIONS(3973), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4201), 2, + ACTIONS(3979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4209), 2, + ACTIONS(3991), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4213), 2, + ACTIONS(4125), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1719), 2, + STATE(1738), 2, sym_line_comment, sym_block_comment, - ACTIONS(4189), 3, + ACTIONS(3975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4207), 4, + ACTIONS(3989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3947), 12, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(4013), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148638,110 +151538,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45796] = 21, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [46340] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3961), 1, - anon_sym_EQ, - ACTIONS(4191), 1, - anon_sym_CARET, - ACTIONS(4193), 1, - anon_sym_AMP, - ACTIONS(4195), 1, - anon_sym_PIPE, - ACTIONS(4197), 1, - anon_sym_AMP_AMP, - ACTIONS(4199), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4211), 1, - anon_sym_DOT_DOT, - ACTIONS(4187), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4201), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4209), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4213), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1720), 2, + STATE(1739), 2, sym_line_comment, sym_block_comment, - ACTIONS(4189), 3, + ACTIONS(3895), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4207), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3959), 12, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [45881] = 15, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(4191), 1, anon_sym_CARET, - ACTIONS(4193), 1, anon_sym_AMP, - ACTIONS(4195), 1, anon_sym_PIPE, - ACTIONS(4187), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4201), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1721), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4189), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3669), 4, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3665), 20, + ACTIONS(3893), 23, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -148760,56 +151585,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [45954] = 19, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_as, + [46393] = 13, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(4203), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(4209), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(4213), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(4215), 1, anon_sym_as, - ACTIONS(4191), 1, - anon_sym_CARET, - ACTIONS(4193), 1, + ACTIONS(4251), 1, anon_sym_AMP, - ACTIONS(4195), 1, - anon_sym_PIPE, - ACTIONS(4197), 1, - anon_sym_AMP_AMP, - ACTIONS(4199), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3913), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(4187), 2, + ACTIONS(4205), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4201), 2, + ACTIONS(4211), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4209), 2, - anon_sym_GT, - anon_sym_LT, - STATE(1722), 2, + STATE(1740), 2, sym_line_comment, sym_block_comment, - ACTIONS(4189), 3, + ACTIONS(4207), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4207), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3895), 14, + ACTIONS(3899), 6, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(3897), 20, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148820,17 +151636,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [46035] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [46462] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1723), 2, + STATE(1741), 2, sym_line_comment, sym_block_comment, - ACTIONS(3569), 15, + ACTIONS(3837), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -148846,7 +151666,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3567), 23, + ACTIONS(3835), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -148870,15 +151690,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46088] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [46515] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1724), 2, + STATE(1742), 2, sym_line_comment, sym_block_comment, - ACTIONS(3585), 15, + ACTIONS(1307), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -148894,7 +151714,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3583), 23, + ACTIONS(1305), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -148918,15 +151738,145 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46141] = 5, - ACTIONS(101), 1, + [46568] = 21, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3687), 1, + anon_sym_LBRACK, + ACTIONS(3691), 1, + anon_sym_QMARK, + ACTIONS(3693), 1, + anon_sym_DOT, + ACTIONS(3901), 1, + anon_sym_as, + ACTIONS(4011), 1, + anon_sym_EQ, + ACTIONS(4225), 1, + anon_sym_CARET, + ACTIONS(4227), 1, + anon_sym_AMP, + ACTIONS(4229), 1, + anon_sym_PIPE, + ACTIONS(4231), 1, + anon_sym_AMP_AMP, + ACTIONS(4233), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4265), 1, + anon_sym_DOT_DOT, + ACTIONS(4221), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4235), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4243), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4267), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1743), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4223), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4241), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4009), 12, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [46653] = 23, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(297), 1, + anon_sym_RBRACE, + ACTIONS(3687), 1, + anon_sym_LBRACK, + ACTIONS(3691), 1, + anon_sym_QMARK, + ACTIONS(3693), 1, + anon_sym_DOT, + ACTIONS(3901), 1, + anon_sym_as, + ACTIONS(3977), 1, + anon_sym_AMP, + ACTIONS(3981), 1, + anon_sym_CARET, + ACTIONS(3983), 1, + anon_sym_PIPE, + ACTIONS(3985), 1, + anon_sym_AMP_AMP, + ACTIONS(3987), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4015), 1, + anon_sym_EQ, + ACTIONS(4123), 1, + anon_sym_DOT_DOT, + ACTIONS(4303), 1, + anon_sym_SEMI, + ACTIONS(3973), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3979), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3991), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4125), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1744), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3975), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3989), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4013), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [46742] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1725), 2, + STATE(1745), 2, sym_line_comment, sym_block_comment, - ACTIONS(3627), 15, + ACTIONS(3809), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -148942,7 +151892,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3625), 23, + ACTIONS(3805), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -148966,15 +151916,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46194] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [46795] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1726), 2, + STATE(1746), 2, sym_line_comment, sym_block_comment, - ACTIONS(3627), 15, + ACTIONS(3573), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -148990,7 +151940,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3625), 23, + ACTIONS(3569), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -149014,61 +151964,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46247] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [46848] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3687), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3691), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3693), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3901), 1, anon_sym_as, - ACTIONS(4191), 1, - anon_sym_CARET, - ACTIONS(4193), 1, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(4195), 1, + ACTIONS(3981), 1, + anon_sym_CARET, + ACTIONS(3983), 1, anon_sym_PIPE, - ACTIONS(4197), 1, + ACTIONS(3985), 1, anon_sym_AMP_AMP, - ACTIONS(4199), 1, + ACTIONS(3987), 1, anon_sym_PIPE_PIPE, - ACTIONS(4205), 1, + ACTIONS(4015), 1, anon_sym_EQ, - ACTIONS(4211), 1, + ACTIONS(4123), 1, anon_sym_DOT_DOT, - ACTIONS(3661), 2, - anon_sym_LPAREN, - anon_sym_LBRACE, - ACTIONS(4187), 2, + ACTIONS(3973), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4201), 2, + ACTIONS(3979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4209), 2, + ACTIONS(3991), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4213), 2, + ACTIONS(4125), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1727), 2, + ACTIONS(4327), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1747), 2, sym_line_comment, sym_block_comment, - ACTIONS(4189), 3, + ACTIONS(3975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4207), 4, + ACTIONS(3989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4203), 10, + ACTIONS(4013), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149079,15 +152029,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46334] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [46935] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1728), 2, + STATE(1748), 2, sym_line_comment, sym_block_comment, - ACTIONS(3729), 15, + ACTIONS(1259), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149103,7 +152053,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3727), 23, + ACTIONS(1257), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -149127,15 +152077,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46387] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [46988] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1729), 2, + STATE(1749), 2, sym_line_comment, sym_block_comment, - ACTIONS(3737), 15, + ACTIONS(3759), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149151,7 +152101,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3735), 23, + ACTIONS(3757), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -149175,15 +152125,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46440] = 5, - ACTIONS(101), 1, + [47041] = 17, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3687), 1, + anon_sym_LBRACK, + ACTIONS(3691), 1, + anon_sym_QMARK, + ACTIONS(3693), 1, + anon_sym_DOT, + ACTIONS(3901), 1, + anon_sym_as, + ACTIONS(4225), 1, + anon_sym_CARET, + ACTIONS(4227), 1, + anon_sym_AMP, + ACTIONS(4229), 1, + anon_sym_PIPE, + ACTIONS(3899), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4221), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4235), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4243), 2, + anon_sym_GT, + anon_sym_LT, + STATE(1750), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4223), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4241), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3897), 16, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [47118] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1730), 2, + STATE(1751), 2, sym_line_comment, sym_block_comment, - ACTIONS(3285), 15, + ACTIONS(3849), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149199,7 +152209,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3283), 23, + ACTIONS(3847), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -149223,15 +152233,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46493] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [47171] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1731), 2, + STATE(1752), 2, sym_line_comment, sym_block_comment, - ACTIONS(3745), 15, + ACTIONS(1307), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149247,7 +152257,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3743), 23, + ACTIONS(1305), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -149271,15 +152281,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46546] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [47224] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1732), 2, + STATE(1753), 2, sym_line_comment, sym_block_comment, - ACTIONS(3769), 15, + ACTIONS(3721), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149295,7 +152305,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3767), 23, + ACTIONS(3719), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -149319,61 +152329,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46599] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [47277] = 23, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(119), 1, + anon_sym_RBRACE, + ACTIONS(3687), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3691), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3693), 1, anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, ACTIONS(3901), 1, - anon_sym_CARET, - ACTIONS(3903), 1, + anon_sym_as, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3981), 1, + anon_sym_CARET, + ACTIONS(3983), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3985), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3987), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4015), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4123), 1, anon_sym_DOT_DOT, - ACTIONS(3897), 2, + ACTIONS(4303), 1, + anon_sym_SEMI, + ACTIONS(3973), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(3991), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4125), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4217), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1733), 2, + STATE(1754), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(3989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4013), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149384,15 +152395,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46686] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [47366] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1734), 2, + ACTIONS(4203), 1, + anon_sym_LBRACK, + ACTIONS(4209), 1, + anon_sym_QMARK, + ACTIONS(4213), 1, + anon_sym_DOT, + STATE(1755), 2, sym_line_comment, sym_block_comment, - ACTIONS(3831), 15, + ACTIONS(3701), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149406,13 +152423,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3829), 23, + ACTIONS(3699), 21, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_EQ_GT, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -149432,15 +152446,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46739] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [47425] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1735), 2, + STATE(1756), 2, sym_line_comment, sym_block_comment, - ACTIONS(3843), 15, + ACTIONS(1307), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149456,7 +152470,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3841), 23, + ACTIONS(1305), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -149480,15 +152494,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46792] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [47478] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1736), 2, + ACTIONS(4203), 1, + anon_sym_LBRACK, + ACTIONS(4209), 1, + anon_sym_QMARK, + ACTIONS(4213), 1, + anon_sym_DOT, + STATE(1757), 2, sym_line_comment, sym_block_comment, - ACTIONS(3851), 15, + ACTIONS(3825), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149502,13 +152522,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3849), 23, + ACTIONS(3823), 21, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_EQ_GT, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -149528,15 +152545,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46845] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [47537] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1737), 2, + STATE(1758), 2, sym_line_comment, sym_block_comment, - ACTIONS(3855), 15, + ACTIONS(3775), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149552,7 +152569,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3853), 23, + ACTIONS(3773), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -149576,15 +152593,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46898] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [47590] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1738), 2, + STATE(1759), 2, sym_line_comment, sym_block_comment, - ACTIONS(3859), 15, + ACTIONS(3379), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149600,7 +152617,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3857), 23, + ACTIONS(3377), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -149624,15 +152641,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46951] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [47643] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1739), 2, + STATE(1760), 2, sym_line_comment, sym_block_comment, - ACTIONS(3875), 15, + ACTIONS(1271), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149648,7 +152665,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3873), 23, + ACTIONS(1269), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -149672,62 +152689,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [47004] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [47696] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(4203), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(4209), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(4213), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(4215), 1, anon_sym_as, - ACTIONS(4191), 1, + ACTIONS(4249), 1, anon_sym_CARET, - ACTIONS(4193), 1, + ACTIONS(4251), 1, anon_sym_AMP, - ACTIONS(4195), 1, + ACTIONS(4253), 1, anon_sym_PIPE, - ACTIONS(4197), 1, + ACTIONS(4255), 1, anon_sym_AMP_AMP, - ACTIONS(4199), 1, + ACTIONS(4329), 1, anon_sym_PIPE_PIPE, - ACTIONS(4205), 1, + ACTIONS(4333), 1, anon_sym_EQ, - ACTIONS(4219), 1, - anon_sym_LBRACE, - ACTIONS(4221), 1, + ACTIONS(4335), 1, anon_sym_DOT_DOT, - STATE(388), 1, - sym_match_block, - ACTIONS(4187), 2, + ACTIONS(3637), 2, + anon_sym_LPAREN, + anon_sym_EQ_GT, + ACTIONS(4205), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4201), 2, + ACTIONS(4211), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4209), 2, + ACTIONS(4259), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4223), 2, + ACTIONS(4337), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1740), 2, + STATE(1761), 2, sym_line_comment, sym_block_comment, - ACTIONS(4189), 3, + ACTIONS(4207), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4207), 4, + ACTIONS(4257), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4203), 10, + ACTIONS(4331), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149738,111 +152754,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47093] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [47783] = 23, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1741), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1546), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(3687), 1, + anon_sym_LBRACK, + ACTIONS(3691), 1, + anon_sym_QMARK, + ACTIONS(3693), 1, + anon_sym_DOT, + ACTIONS(3901), 1, + anon_sym_as, + ACTIONS(3977), 1, anon_sym_AMP, + ACTIONS(3981), 1, + anon_sym_CARET, + ACTIONS(3983), 1, anon_sym_PIPE, + ACTIONS(3985), 1, + anon_sym_AMP_AMP, + ACTIONS(3987), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4015), 1, + anon_sym_EQ, + ACTIONS(4123), 1, + anon_sym_DOT_DOT, + ACTIONS(4339), 1, + anon_sym_RPAREN, + ACTIONS(4341), 1, + anon_sym_COMMA, + ACTIONS(3973), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(3991), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1548), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + ACTIONS(4125), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [47146] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1742), 2, + STATE(1762), 2, sym_line_comment, sym_block_comment, - ACTIONS(1404), 15, - anon_sym_PLUS, + ACTIONS(3975), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1402), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, + ACTIONS(3989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [47199] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4013), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [47872] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1743), 2, + STATE(1763), 2, sym_line_comment, sym_block_comment, - ACTIONS(1376), 15, + ACTIONS(3915), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149858,7 +152844,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1374), 23, + ACTIONS(3913), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -149882,37 +152868,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [47252] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [47925] = 23, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1744), 2, + ACTIONS(3687), 1, + anon_sym_LBRACK, + ACTIONS(3691), 1, + anon_sym_QMARK, + ACTIONS(3693), 1, + anon_sym_DOT, + ACTIONS(3901), 1, + anon_sym_as, + ACTIONS(3977), 1, + anon_sym_AMP, + ACTIONS(3981), 1, + anon_sym_CARET, + ACTIONS(3983), 1, + anon_sym_PIPE, + ACTIONS(3985), 1, + anon_sym_AMP_AMP, + ACTIONS(3987), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4015), 1, + anon_sym_EQ, + ACTIONS(4123), 1, + anon_sym_DOT_DOT, + ACTIONS(4303), 1, + anon_sym_SEMI, + ACTIONS(4343), 1, + anon_sym_RBRACE, + ACTIONS(3973), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3979), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3991), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4125), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1764), 2, sym_line_comment, sym_block_comment, - ACTIONS(1384), 15, - anon_sym_PLUS, + ACTIONS(3975), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(3989), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4013), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [48014] = 23, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3687), 1, + anon_sym_LBRACK, + ACTIONS(3691), 1, + anon_sym_QMARK, + ACTIONS(3693), 1, + anon_sym_DOT, + ACTIONS(3901), 1, + anon_sym_as, + ACTIONS(3977), 1, anon_sym_AMP, + ACTIONS(3981), 1, + anon_sym_CARET, + ACTIONS(3983), 1, anon_sym_PIPE, + ACTIONS(3985), 1, + anon_sym_AMP_AMP, + ACTIONS(3987), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4015), 1, + anon_sym_EQ, + ACTIONS(4123), 1, + anon_sym_DOT_DOT, + ACTIONS(4345), 1, + anon_sym_SEMI, + ACTIONS(4347), 1, + anon_sym_else, + ACTIONS(3973), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(3991), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1382), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4125), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1765), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3975), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3989), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4013), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149923,22 +153000,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [47305] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [48103] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1745), 2, + STATE(1766), 2, sym_line_comment, sym_block_comment, - ACTIONS(1422), 15, + ACTIONS(1267), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149954,7 +153024,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1420), 23, + ACTIONS(1265), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -149978,61 +153048,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [47358] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [48156] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3687), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3691), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3693), 1, anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, ACTIONS(3901), 1, - anon_sym_CARET, - ACTIONS(3903), 1, + anon_sym_as, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3981), 1, + anon_sym_CARET, + ACTIONS(3983), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3985), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3987), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4015), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4123), 1, anon_sym_DOT_DOT, - ACTIONS(3771), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3897), 2, + ACTIONS(3973), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(3991), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4125), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1746), 2, + ACTIONS(4349), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1767), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(3989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4013), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150043,15 +153113,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47445] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [48243] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1747), 2, + STATE(1768), 2, sym_line_comment, sym_block_comment, - ACTIONS(3639), 15, + ACTIONS(3935), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -150067,7 +153137,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3637), 23, + ACTIONS(3933), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -150091,62 +153161,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [47498] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [48296] = 23, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(127), 1, + ACTIONS(319), 1, anon_sym_RBRACE, - ACTIONS(3667), 1, + ACTIONS(3687), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3691), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3693), 1, anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, ACTIONS(3901), 1, - anon_sym_CARET, - ACTIONS(3903), 1, + anon_sym_as, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3981), 1, + anon_sym_CARET, + ACTIONS(3983), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3985), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3987), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4015), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4123), 1, anon_sym_DOT_DOT, - ACTIONS(4125), 1, + ACTIONS(4303), 1, anon_sym_SEMI, - ACTIONS(3897), 2, + ACTIONS(3973), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(3991), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4125), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1748), 2, + STATE(1769), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(3989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4013), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150157,60 +153227,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47587] = 21, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [48385] = 23, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3921), 1, - anon_sym_EQ, - ACTIONS(4131), 1, + ACTIONS(3687), 1, anon_sym_LBRACK, - ACTIONS(4133), 1, + ACTIONS(3691), 1, anon_sym_QMARK, - ACTIONS(4135), 1, + ACTIONS(3693), 1, anon_sym_DOT, - ACTIONS(4141), 1, - anon_sym_CARET, - ACTIONS(4143), 1, + ACTIONS(3901), 1, + anon_sym_as, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(4145), 1, + ACTIONS(3981), 1, + anon_sym_CARET, + ACTIONS(3983), 1, anon_sym_PIPE, - ACTIONS(4147), 1, + ACTIONS(3985), 1, anon_sym_AMP_AMP, - ACTIONS(4149), 1, + ACTIONS(3987), 1, anon_sym_PIPE_PIPE, - ACTIONS(4157), 1, - anon_sym_as, - ACTIONS(4159), 1, + ACTIONS(4015), 1, + anon_sym_EQ, + ACTIONS(4123), 1, anon_sym_DOT_DOT, - ACTIONS(4137), 2, + ACTIONS(4217), 1, + anon_sym_COMMA, + ACTIONS(4351), 1, + anon_sym_RPAREN, + ACTIONS(3973), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4151), 2, + ACTIONS(3979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4155), 2, + ACTIONS(3991), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4161), 2, + ACTIONS(4125), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1749), 2, + STATE(1770), 2, sym_line_comment, sym_block_comment, - ACTIONS(4139), 3, + ACTIONS(3975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4153), 4, + ACTIONS(3989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3919), 12, - anon_sym_LPAREN, - anon_sym_EQ_GT, + ACTIONS(4013), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150221,37 +153293,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47672] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [48474] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1750), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1400), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3687), 1, + anon_sym_LBRACK, + ACTIONS(3691), 1, + anon_sym_QMARK, + ACTIONS(3693), 1, + anon_sym_DOT, + ACTIONS(3901), 1, + anon_sym_as, + ACTIONS(4225), 1, anon_sym_CARET, + ACTIONS(4227), 1, anon_sym_AMP, + ACTIONS(4229), 1, anon_sym_PIPE, + ACTIONS(4231), 1, + anon_sym_AMP_AMP, + ACTIONS(4233), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4239), 1, + anon_sym_EQ, + ACTIONS(4265), 1, + anon_sym_DOT_DOT, + ACTIONS(3777), 2, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4221), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4243), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1398), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4267), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1771), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4223), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4241), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4237), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150262,68 +153358,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [47725] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [48561] = 23, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(123), 1, + anon_sym_RBRACE, + ACTIONS(3687), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3691), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3693), 1, anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, ACTIONS(3901), 1, - anon_sym_CARET, - ACTIONS(3903), 1, + anon_sym_as, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3981), 1, + anon_sym_CARET, + ACTIONS(3983), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3985), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3987), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4015), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4123), 1, anon_sym_DOT_DOT, - ACTIONS(3739), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3897), 2, + ACTIONS(4303), 1, + anon_sym_SEMI, + ACTIONS(3973), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(3991), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4125), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1751), 2, + STATE(1772), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(3989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4013), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150334,15 +153424,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47812] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [48650] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1752), 2, + STATE(1773), 2, sym_line_comment, sym_block_comment, - ACTIONS(1452), 15, + ACTIONS(3883), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -150358,7 +153448,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1450), 23, + ACTIONS(3881), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -150382,43 +153472,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [47865] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [48703] = 23, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4131), 1, + ACTIONS(3687), 1, anon_sym_LBRACK, - ACTIONS(4133), 1, + ACTIONS(3691), 1, anon_sym_QMARK, - ACTIONS(4135), 1, + ACTIONS(3693), 1, anon_sym_DOT, - ACTIONS(4157), 1, + ACTIONS(3901), 1, anon_sym_as, - STATE(1753), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4139), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3669), 11, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, + ACTIONS(3977), 1, anon_sym_AMP, + ACTIONS(3981), 1, + anon_sym_CARET, + ACTIONS(3983), 1, anon_sym_PIPE, + ACTIONS(3985), 1, + anon_sym_AMP_AMP, + ACTIONS(3987), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4015), 1, + anon_sym_EQ, + ACTIONS(4123), 1, + anon_sym_DOT_DOT, + ACTIONS(4303), 1, + anon_sym_SEMI, + ACTIONS(4353), 1, + anon_sym_RBRACE, + ACTIONS(3973), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(3991), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3665), 20, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4125), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1774), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3975), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3989), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4013), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150429,52 +153538,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [47928] = 13, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [48792] = 23, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4131), 1, + ACTIONS(3687), 1, anon_sym_LBRACK, - ACTIONS(4133), 1, + ACTIONS(3691), 1, anon_sym_QMARK, - ACTIONS(4135), 1, + ACTIONS(3693), 1, anon_sym_DOT, - ACTIONS(4143), 1, - anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(3901), 1, anon_sym_as, - ACTIONS(4137), 2, + ACTIONS(3977), 1, + anon_sym_AMP, + ACTIONS(3981), 1, + anon_sym_CARET, + ACTIONS(3983), 1, + anon_sym_PIPE, + ACTIONS(3985), 1, + anon_sym_AMP_AMP, + ACTIONS(3987), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4015), 1, + anon_sym_EQ, + ACTIONS(4123), 1, + anon_sym_DOT_DOT, + ACTIONS(4303), 1, + anon_sym_SEMI, + ACTIONS(4355), 1, + anon_sym_RBRACE, + ACTIONS(3973), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4151), 2, + ACTIONS(3979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1754), 2, + ACTIONS(3991), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4125), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1775), 2, sym_line_comment, sym_block_comment, - ACTIONS(4139), 3, + ACTIONS(3975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3669), 6, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3665), 20, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3989), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4013), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150485,51 +153604,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [47997] = 12, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [48881] = 19, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4131), 1, + ACTIONS(4203), 1, anon_sym_LBRACK, - ACTIONS(4133), 1, + ACTIONS(4209), 1, anon_sym_QMARK, - ACTIONS(4135), 1, + ACTIONS(4213), 1, anon_sym_DOT, - ACTIONS(4157), 1, + ACTIONS(4215), 1, anon_sym_as, - ACTIONS(4137), 2, + ACTIONS(4249), 1, + anon_sym_CARET, + ACTIONS(4251), 1, + anon_sym_AMP, + ACTIONS(4253), 1, + anon_sym_PIPE, + ACTIONS(4255), 1, + anon_sym_AMP_AMP, + ACTIONS(4329), 1, + anon_sym_PIPE_PIPE, + ACTIONS(375), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4205), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4151), 2, + ACTIONS(4211), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1755), 2, + ACTIONS(4259), 2, + anon_sym_GT, + anon_sym_LT, + STATE(1776), 2, sym_line_comment, sym_block_comment, - ACTIONS(4139), 3, + ACTIONS(4207), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3669), 7, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3665), 20, + ACTIONS(4257), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(373), 14, anon_sym_LPAREN, anon_sym_EQ_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150540,53 +153664,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [48064] = 14, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [48962] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4131), 1, + ACTIONS(3687), 1, anon_sym_LBRACK, - ACTIONS(4133), 1, + ACTIONS(3691), 1, anon_sym_QMARK, - ACTIONS(4135), 1, + ACTIONS(3693), 1, anon_sym_DOT, - ACTIONS(4141), 1, - anon_sym_CARET, - ACTIONS(4143), 1, - anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(3901), 1, anon_sym_as, - ACTIONS(4137), 2, + ACTIONS(3977), 1, + anon_sym_AMP, + ACTIONS(3981), 1, + anon_sym_CARET, + ACTIONS(3983), 1, + anon_sym_PIPE, + ACTIONS(3985), 1, + anon_sym_AMP_AMP, + ACTIONS(3987), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4015), 1, + anon_sym_EQ, + ACTIONS(4123), 1, + anon_sym_DOT_DOT, + ACTIONS(3973), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4151), 2, + ACTIONS(3979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1756), 2, + ACTIONS(3991), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4125), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4357), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1777), 2, sym_line_comment, sym_block_comment, - ACTIONS(4139), 3, + ACTIONS(3975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3669), 5, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3665), 20, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3989), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4013), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150597,60 +153731,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [48135] = 17, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [49049] = 21, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4131), 1, + ACTIONS(3687), 1, anon_sym_LBRACK, - ACTIONS(4133), 1, + ACTIONS(3691), 1, anon_sym_QMARK, - ACTIONS(4135), 1, + ACTIONS(3693), 1, anon_sym_DOT, - ACTIONS(4141), 1, + ACTIONS(3901), 1, + anon_sym_as, + ACTIONS(4085), 1, anon_sym_CARET, - ACTIONS(4143), 1, + ACTIONS(4087), 1, anon_sym_AMP, - ACTIONS(4145), 1, + ACTIONS(4089), 1, anon_sym_PIPE, - ACTIONS(4157), 1, - anon_sym_as, - ACTIONS(3669), 2, + ACTIONS(4093), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4099), 1, anon_sym_EQ, + ACTIONS(4105), 1, anon_sym_DOT_DOT, - ACTIONS(4137), 2, + ACTIONS(4081), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4151), 2, + ACTIONS(4095), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4155), 2, + ACTIONS(4103), 2, anon_sym_GT, anon_sym_LT, - STATE(1757), 2, + ACTIONS(4107), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1778), 2, sym_line_comment, sym_block_comment, - ACTIONS(4139), 3, + ACTIONS(4083), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4153), 4, + ACTIONS(4359), 3, + anon_sym_LBRACE, + anon_sym_AMP_AMP, + anon_sym_SQUOTE, + ACTIONS(4101), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3665), 16, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4097), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150661,57 +153795,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [48212] = 18, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [49134] = 23, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4131), 1, + ACTIONS(303), 1, + anon_sym_RBRACE, + ACTIONS(3687), 1, anon_sym_LBRACK, - ACTIONS(4133), 1, + ACTIONS(3691), 1, anon_sym_QMARK, - ACTIONS(4135), 1, + ACTIONS(3693), 1, anon_sym_DOT, - ACTIONS(4141), 1, - anon_sym_CARET, - ACTIONS(4143), 1, + ACTIONS(3901), 1, + anon_sym_as, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(4145), 1, + ACTIONS(3981), 1, + anon_sym_CARET, + ACTIONS(3983), 1, anon_sym_PIPE, - ACTIONS(4147), 1, + ACTIONS(3985), 1, anon_sym_AMP_AMP, - ACTIONS(4157), 1, - anon_sym_as, - ACTIONS(3669), 2, + ACTIONS(3987), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4015), 1, anon_sym_EQ, + ACTIONS(4123), 1, anon_sym_DOT_DOT, - ACTIONS(4137), 2, + ACTIONS(4303), 1, + anon_sym_SEMI, + ACTIONS(3973), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4151), 2, + ACTIONS(3979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4155), 2, + ACTIONS(3991), 2, anon_sym_GT, anon_sym_LT, - STATE(1758), 2, + ACTIONS(4125), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1779), 2, sym_line_comment, sym_block_comment, - ACTIONS(4139), 3, + ACTIONS(3975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4153), 4, + ACTIONS(3989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3665), 15, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_PIPE_PIPE, + ACTIONS(4013), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150722,46 +153861,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [48291] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [49223] = 23, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4131), 1, + ACTIONS(3687), 1, anon_sym_LBRACK, - ACTIONS(4133), 1, + ACTIONS(3691), 1, anon_sym_QMARK, - ACTIONS(4135), 1, + ACTIONS(3693), 1, anon_sym_DOT, - ACTIONS(4157), 1, + ACTIONS(3901), 1, anon_sym_as, - ACTIONS(4137), 2, + ACTIONS(3977), 1, + anon_sym_AMP, + ACTIONS(3981), 1, + anon_sym_CARET, + ACTIONS(3983), 1, + anon_sym_PIPE, + ACTIONS(3985), 1, + anon_sym_AMP_AMP, + ACTIONS(3987), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4015), 1, + anon_sym_EQ, + ACTIONS(4123), 1, + anon_sym_DOT_DOT, + ACTIONS(4217), 1, + anon_sym_COMMA, + ACTIONS(4361), 1, + anon_sym_RPAREN, + ACTIONS(3973), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1759), 2, + ACTIONS(3979), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3991), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4125), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1780), 2, sym_line_comment, sym_block_comment, - ACTIONS(4139), 3, + ACTIONS(3975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3669), 9, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3665), 20, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3989), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4013), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150772,64 +153927,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [48356] = 21, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [49312] = 21, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3949), 1, + ACTIONS(347), 1, anon_sym_EQ, - ACTIONS(4131), 1, + ACTIONS(4203), 1, anon_sym_LBRACK, - ACTIONS(4133), 1, + ACTIONS(4209), 1, anon_sym_QMARK, - ACTIONS(4135), 1, + ACTIONS(4213), 1, anon_sym_DOT, - ACTIONS(4141), 1, + ACTIONS(4215), 1, + anon_sym_as, + ACTIONS(4249), 1, anon_sym_CARET, - ACTIONS(4143), 1, + ACTIONS(4251), 1, anon_sym_AMP, - ACTIONS(4145), 1, + ACTIONS(4253), 1, anon_sym_PIPE, - ACTIONS(4147), 1, + ACTIONS(4255), 1, anon_sym_AMP_AMP, - ACTIONS(4149), 1, + ACTIONS(4329), 1, anon_sym_PIPE_PIPE, - ACTIONS(4157), 1, - anon_sym_as, - ACTIONS(4159), 1, + ACTIONS(4335), 1, anon_sym_DOT_DOT, - ACTIONS(4137), 2, + ACTIONS(4205), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4151), 2, + ACTIONS(4211), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4155), 2, + ACTIONS(4259), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4161), 2, + ACTIONS(4337), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1760), 2, + STATE(1781), 2, sym_line_comment, sym_block_comment, - ACTIONS(4139), 3, + ACTIONS(4207), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4153), 4, + ACTIONS(4257), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3947), 12, + ACTIONS(341), 12, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_PLUS_EQ, @@ -150842,60 +153991,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48441] = 21, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [49397] = 21, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3961), 1, - anon_sym_EQ, - ACTIONS(4131), 1, + ACTIONS(3687), 1, anon_sym_LBRACK, - ACTIONS(4133), 1, + ACTIONS(3691), 1, anon_sym_QMARK, - ACTIONS(4135), 1, + ACTIONS(3693), 1, anon_sym_DOT, - ACTIONS(4141), 1, + ACTIONS(3901), 1, + anon_sym_as, + ACTIONS(4085), 1, anon_sym_CARET, - ACTIONS(4143), 1, + ACTIONS(4087), 1, anon_sym_AMP, - ACTIONS(4145), 1, + ACTIONS(4089), 1, anon_sym_PIPE, - ACTIONS(4147), 1, - anon_sym_AMP_AMP, - ACTIONS(4149), 1, + ACTIONS(4093), 1, anon_sym_PIPE_PIPE, - ACTIONS(4157), 1, - anon_sym_as, - ACTIONS(4159), 1, + ACTIONS(4099), 1, + anon_sym_EQ, + ACTIONS(4105), 1, anon_sym_DOT_DOT, - ACTIONS(4137), 2, + ACTIONS(4081), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4151), 2, + ACTIONS(4095), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4155), 2, + ACTIONS(4103), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4161), 2, + ACTIONS(4107), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1761), 2, + STATE(1782), 2, sym_line_comment, sym_block_comment, - ACTIONS(4139), 3, + ACTIONS(4083), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4153), 4, + ACTIONS(4363), 3, + anon_sym_LBRACE, + anon_sym_AMP_AMP, + anon_sym_SQUOTE, + ACTIONS(4101), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3959), 12, - anon_sym_LPAREN, - anon_sym_EQ_GT, + ACTIONS(4097), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150906,48 +154055,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48526] = 15, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [49482] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4131), 1, + ACTIONS(4203), 1, anon_sym_LBRACK, - ACTIONS(4133), 1, + ACTIONS(4209), 1, anon_sym_QMARK, - ACTIONS(4135), 1, + ACTIONS(4213), 1, anon_sym_DOT, - ACTIONS(4141), 1, + ACTIONS(4215), 1, + anon_sym_as, + ACTIONS(4249), 1, anon_sym_CARET, - ACTIONS(4143), 1, + ACTIONS(4251), 1, anon_sym_AMP, - ACTIONS(4145), 1, + ACTIONS(4253), 1, anon_sym_PIPE, - ACTIONS(4157), 1, - anon_sym_as, - ACTIONS(4137), 2, + ACTIONS(4255), 1, + anon_sym_AMP_AMP, + ACTIONS(4329), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4333), 1, + anon_sym_EQ, + ACTIONS(4335), 1, + anon_sym_DOT_DOT, + ACTIONS(3881), 2, + anon_sym_LPAREN, + anon_sym_EQ_GT, + ACTIONS(4205), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4151), 2, + ACTIONS(4211), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1762), 2, + ACTIONS(4259), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4337), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1783), 2, sym_line_comment, sym_block_comment, - ACTIONS(4139), 3, + ACTIONS(4207), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3669), 4, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3665), 20, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4257), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4331), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150958,62 +154120,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [48599] = 19, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [49569] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4131), 1, - anon_sym_LBRACK, - ACTIONS(4133), 1, - anon_sym_QMARK, - ACTIONS(4135), 1, - anon_sym_DOT, - ACTIONS(4141), 1, + STATE(1784), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3659), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4143), 1, anon_sym_AMP, - ACTIONS(4145), 1, anon_sym_PIPE, - ACTIONS(4147), 1, - anon_sym_AMP_AMP, - ACTIONS(4149), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4157), 1, - anon_sym_as, - ACTIONS(3913), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(4137), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4151), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4155), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - STATE(1763), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4139), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4153), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3895), 14, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3657), 23, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151024,17 +154161,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [48680] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_as, + [49622] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1764), 2, + STATE(1785), 2, sym_line_comment, sym_block_comment, - ACTIONS(3589), 15, + ACTIONS(3803), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151050,7 +154192,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3587), 23, + ACTIONS(3801), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151074,15 +154216,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [48733] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [49675] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1765), 2, + STATE(1786), 2, sym_line_comment, sym_block_comment, - ACTIONS(3593), 15, + ACTIONS(3799), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151098,7 +154240,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3591), 23, + ACTIONS(3797), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151122,15 +154264,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [48786] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [49728] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1766), 2, + STATE(1787), 2, sym_line_comment, sym_block_comment, - ACTIONS(1388), 15, + ACTIONS(3795), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151146,7 +154288,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1386), 23, + ACTIONS(3793), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151170,15 +154312,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [48839] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [49781] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1767), 2, + STATE(1788), 2, sym_line_comment, sym_block_comment, - ACTIONS(1396), 15, + ACTIONS(3923), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151194,7 +154336,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1394), 23, + ACTIONS(3921), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151218,61 +154360,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [48892] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [49834] = 21, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(4011), 1, + anon_sym_EQ, + ACTIONS(4203), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(4209), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(4213), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(4215), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4249), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4251), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4253), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(4255), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4329), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4335), 1, anon_sym_DOT_DOT, - ACTIONS(3661), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3897), 2, + ACTIONS(4205), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4211), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4259), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4337), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1768), 2, + STATE(1789), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4207), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4257), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4009), 12, + anon_sym_LPAREN, + anon_sym_EQ_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151283,15 +154424,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48979] = 5, - ACTIONS(101), 1, + [49919] = 22, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3687), 1, + anon_sym_LBRACK, + ACTIONS(3691), 1, + anon_sym_QMARK, + ACTIONS(3693), 1, + anon_sym_DOT, + ACTIONS(3901), 1, + anon_sym_as, + ACTIONS(3977), 1, + anon_sym_AMP, + ACTIONS(3981), 1, + anon_sym_CARET, + ACTIONS(3983), 1, + anon_sym_PIPE, + ACTIONS(3985), 1, + anon_sym_AMP_AMP, + ACTIONS(3987), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4015), 1, + anon_sym_EQ, + ACTIONS(4123), 1, + anon_sym_DOT_DOT, + ACTIONS(3973), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3979), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3991), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4125), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4365), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1790), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3975), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3989), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4013), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [50006] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1769), 2, + STATE(1791), 2, sym_line_comment, sym_block_comment, - ACTIONS(1426), 15, + ACTIONS(3651), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151307,7 +154513,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1424), 23, + ACTIONS(3649), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151331,37 +154537,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49032] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [50059] = 21, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1770), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3733), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3999), 1, + anon_sym_EQ, + ACTIONS(4203), 1, + anon_sym_LBRACK, + ACTIONS(4209), 1, + anon_sym_QMARK, + ACTIONS(4213), 1, + anon_sym_DOT, + ACTIONS(4215), 1, + anon_sym_as, + ACTIONS(4249), 1, anon_sym_CARET, + ACTIONS(4251), 1, anon_sym_AMP, + ACTIONS(4253), 1, anon_sym_PIPE, + ACTIONS(4255), 1, + anon_sym_AMP_AMP, + ACTIONS(4329), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4335), 1, + anon_sym_DOT_DOT, + ACTIONS(4205), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4211), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4259), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3731), 23, + ACTIONS(4337), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1792), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4207), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4257), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3997), 12, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151372,22 +154601,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, + [50144] = 23, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(325), 1, + anon_sym_RBRACE, + ACTIONS(3687), 1, + anon_sym_LBRACK, + ACTIONS(3691), 1, + anon_sym_QMARK, + ACTIONS(3693), 1, + anon_sym_DOT, + ACTIONS(3901), 1, + anon_sym_as, + ACTIONS(3977), 1, + anon_sym_AMP, + ACTIONS(3981), 1, + anon_sym_CARET, + ACTIONS(3983), 1, + anon_sym_PIPE, + ACTIONS(3985), 1, + anon_sym_AMP_AMP, + ACTIONS(3987), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4015), 1, + anon_sym_EQ, + ACTIONS(4123), 1, + anon_sym_DOT_DOT, + ACTIONS(4303), 1, + anon_sym_SEMI, + ACTIONS(3973), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3979), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3991), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4125), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1793), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3975), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [49085] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4013), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [50233] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1771), 2, + STATE(1794), 2, sym_line_comment, sym_block_comment, - ACTIONS(3581), 15, + ACTIONS(1331), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151403,7 +154691,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3579), 23, + ACTIONS(1329), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151427,15 +154715,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49138] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [50286] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1772), 2, + STATE(1795), 2, sym_line_comment, sym_block_comment, - ACTIONS(1352), 15, + ACTIONS(3919), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151451,7 +154739,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1350), 23, + ACTIONS(3917), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151475,15 +154763,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49191] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [50339] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1773), 2, + STATE(1796), 2, sym_line_comment, sym_block_comment, - ACTIONS(1356), 15, + ACTIONS(3291), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151499,7 +154787,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1354), 23, + ACTIONS(3293), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151523,15 +154811,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49244] = 5, - ACTIONS(101), 1, + [50392] = 23, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3687), 1, + anon_sym_LBRACK, + ACTIONS(3691), 1, + anon_sym_QMARK, + ACTIONS(3693), 1, + anon_sym_DOT, + ACTIONS(3901), 1, + anon_sym_as, + ACTIONS(3977), 1, + anon_sym_AMP, + ACTIONS(3981), 1, + anon_sym_CARET, + ACTIONS(3983), 1, + anon_sym_PIPE, + ACTIONS(3985), 1, + anon_sym_AMP_AMP, + ACTIONS(3987), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4015), 1, + anon_sym_EQ, + ACTIONS(4123), 1, + anon_sym_DOT_DOT, + ACTIONS(4367), 1, + anon_sym_SEMI, + ACTIONS(4369), 1, + anon_sym_else, + ACTIONS(3973), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3979), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3991), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4125), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1797), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3975), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3989), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4013), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [50481] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1774), 2, + STATE(1798), 2, sym_line_comment, sym_block_comment, - ACTIONS(1364), 15, + ACTIONS(3879), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151547,7 +154901,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1362), 23, + ACTIONS(3877), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151571,15 +154925,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49297] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [50534] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1775), 2, + STATE(1799), 2, sym_line_comment, sym_block_comment, - ACTIONS(1380), 15, + ACTIONS(3875), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151595,7 +154949,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1378), 23, + ACTIONS(3873), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151619,15 +154973,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49350] = 5, - ACTIONS(101), 1, + [50587] = 22, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3687), 1, + anon_sym_LBRACK, + ACTIONS(3691), 1, + anon_sym_QMARK, + ACTIONS(3693), 1, + anon_sym_DOT, + ACTIONS(3901), 1, + anon_sym_as, + ACTIONS(3977), 1, + anon_sym_AMP, + ACTIONS(3981), 1, + anon_sym_CARET, + ACTIONS(3983), 1, + anon_sym_PIPE, + ACTIONS(3985), 1, + anon_sym_AMP_AMP, + ACTIONS(3987), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4015), 1, + anon_sym_EQ, + ACTIONS(4123), 1, + anon_sym_DOT_DOT, + ACTIONS(3777), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3973), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3979), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3991), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4125), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1800), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3975), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3989), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4013), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [50674] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1776), 2, + STATE(1801), 2, sym_line_comment, sym_block_comment, - ACTIONS(1392), 15, + ACTIONS(3821), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151643,7 +155062,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1390), 23, + ACTIONS(3819), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151667,15 +155086,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49403] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [50727] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1777), 2, + STATE(1802), 2, sym_line_comment, sym_block_comment, - ACTIONS(1430), 15, + ACTIONS(3845), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151691,7 +155110,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1428), 23, + ACTIONS(3843), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151715,15 +155134,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49456] = 5, - ACTIONS(101), 1, + [50780] = 23, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3687), 1, + anon_sym_LBRACK, + ACTIONS(3691), 1, + anon_sym_QMARK, + ACTIONS(3693), 1, + anon_sym_DOT, + ACTIONS(3901), 1, + anon_sym_as, + ACTIONS(3977), 1, + anon_sym_AMP, + ACTIONS(3981), 1, + anon_sym_CARET, + ACTIONS(3983), 1, + anon_sym_PIPE, + ACTIONS(3985), 1, + anon_sym_AMP_AMP, + ACTIONS(3987), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4015), 1, + anon_sym_EQ, + ACTIONS(4123), 1, + anon_sym_DOT_DOT, + ACTIONS(4303), 1, + anon_sym_SEMI, + ACTIONS(4371), 1, + anon_sym_RBRACE, + ACTIONS(3973), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3979), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3991), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4125), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1803), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3975), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3989), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4013), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [50869] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1778), 2, + STATE(1804), 2, sym_line_comment, sym_block_comment, - ACTIONS(935), 15, + ACTIONS(3939), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151739,7 +155224,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(937), 23, + ACTIONS(3937), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151763,15 +155248,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49509] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [50922] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1779), 2, + STATE(1805), 2, sym_line_comment, sym_block_comment, - ACTIONS(967), 15, + ACTIONS(1044), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151787,7 +155272,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(969), 23, + ACTIONS(1046), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151811,15 +155296,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49562] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [50975] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1780), 2, + ACTIONS(4203), 1, + anon_sym_LBRACK, + ACTIONS(4209), 1, + anon_sym_QMARK, + ACTIONS(4213), 1, + anon_sym_DOT, + ACTIONS(4215), 1, + anon_sym_as, + STATE(1806), 2, sym_line_comment, sym_block_comment, - ACTIONS(1368), 15, + ACTIONS(3899), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151833,13 +155326,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1366), 23, + ACTIONS(3897), 20, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_EQ_GT, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -151858,16 +155348,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [49615] = 5, - ACTIONS(101), 1, + [51036] = 21, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3687), 1, + anon_sym_LBRACK, + ACTIONS(3691), 1, + anon_sym_QMARK, + ACTIONS(3693), 1, + anon_sym_DOT, + ACTIONS(3901), 1, + anon_sym_as, + ACTIONS(3999), 1, + anon_sym_EQ, + ACTIONS(4225), 1, + anon_sym_CARET, + ACTIONS(4227), 1, + anon_sym_AMP, + ACTIONS(4229), 1, + anon_sym_PIPE, + ACTIONS(4231), 1, + anon_sym_AMP_AMP, + ACTIONS(4233), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4265), 1, + anon_sym_DOT_DOT, + ACTIONS(4221), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4235), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4243), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4267), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1807), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4223), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4241), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3997), 12, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [51121] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1781), 2, + STATE(1808), 2, sym_line_comment, sym_block_comment, - ACTIONS(753), 15, + ACTIONS(3391), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151883,7 +155436,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(755), 23, + ACTIONS(3389), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151907,62 +155460,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49668] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [51174] = 23, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(335), 1, + anon_sym_RBRACE, + ACTIONS(3687), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3691), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3693), 1, anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, ACTIONS(3901), 1, - anon_sym_CARET, - ACTIONS(3903), 1, + anon_sym_as, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3981), 1, + anon_sym_CARET, + ACTIONS(3983), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3985), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3987), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4015), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4123), 1, anon_sym_DOT_DOT, - ACTIONS(4225), 1, + ACTIONS(4303), 1, anon_sym_SEMI, - ACTIONS(4227), 1, - anon_sym_else, - ACTIONS(3897), 2, + ACTIONS(3973), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(3991), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4125), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1782), 2, + STATE(1809), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(3989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4013), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151973,61 +155526,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49757] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [51263] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4131), 1, - anon_sym_LBRACK, - ACTIONS(4133), 1, - anon_sym_QMARK, - ACTIONS(4135), 1, - anon_sym_DOT, - ACTIONS(4141), 1, + STATE(1810), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1347), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4143), 1, anon_sym_AMP, - ACTIONS(4145), 1, anon_sym_PIPE, - ACTIONS(4147), 1, - anon_sym_AMP_AMP, - ACTIONS(4149), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4157), 1, - anon_sym_as, - ACTIONS(4159), 1, - anon_sym_DOT_DOT, - ACTIONS(4231), 1, - anon_sym_EQ, - ACTIONS(3771), 2, - anon_sym_LPAREN, - anon_sym_EQ_GT, - ACTIONS(4137), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4151), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4155), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4161), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1783), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4139), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4153), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4229), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1345), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152038,15 +155567,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49844] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [51316] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1784), 2, + STATE(1811), 2, sym_line_comment, sym_block_comment, - ACTIONS(767), 15, + ACTIONS(3741), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152062,7 +155598,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(769), 23, + ACTIONS(3739), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152086,15 +155622,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49897] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [51369] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1785), 2, + STATE(1812), 2, sym_line_comment, sym_block_comment, - ACTIONS(1444), 15, + ACTIONS(3737), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152110,7 +155646,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1442), 23, + ACTIONS(3735), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152134,62 +155670,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49950] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [51422] = 23, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(311), 1, + anon_sym_RBRACE, + ACTIONS(3687), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3691), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3693), 1, anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, ACTIONS(3901), 1, - anon_sym_CARET, - ACTIONS(3903), 1, + anon_sym_as, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3981), 1, + anon_sym_CARET, + ACTIONS(3983), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3985), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3987), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4015), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4123), 1, anon_sym_DOT_DOT, - ACTIONS(4233), 1, - anon_sym_RBRACE, - ACTIONS(4235), 1, - anon_sym_COMMA, - ACTIONS(3897), 2, + ACTIONS(4303), 1, + anon_sym_SEMI, + ACTIONS(3973), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(3991), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4125), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1786), 2, + STATE(1813), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(3989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4013), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152200,61 +155736,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50039] = 22, - ACTIONS(101), 1, + [51511] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1814), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3779), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3777), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [51564] = 19, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4131), 1, + ACTIONS(4203), 1, anon_sym_LBRACK, - ACTIONS(4133), 1, + ACTIONS(4209), 1, anon_sym_QMARK, - ACTIONS(4135), 1, + ACTIONS(4213), 1, anon_sym_DOT, - ACTIONS(4141), 1, + ACTIONS(4215), 1, + anon_sym_as, + ACTIONS(4249), 1, anon_sym_CARET, - ACTIONS(4143), 1, + ACTIONS(4251), 1, anon_sym_AMP, - ACTIONS(4145), 1, + ACTIONS(4253), 1, anon_sym_PIPE, - ACTIONS(4147), 1, + ACTIONS(4255), 1, anon_sym_AMP_AMP, - ACTIONS(4149), 1, + ACTIONS(4329), 1, anon_sym_PIPE_PIPE, - ACTIONS(4157), 1, - anon_sym_as, - ACTIONS(4159), 1, - anon_sym_DOT_DOT, - ACTIONS(4231), 1, + ACTIONS(4037), 2, anon_sym_EQ, - ACTIONS(3739), 2, - anon_sym_LPAREN, - anon_sym_EQ_GT, - ACTIONS(4137), 2, + anon_sym_DOT_DOT, + ACTIONS(4205), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4151), 2, + ACTIONS(4211), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4155), 2, + ACTIONS(4259), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4161), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1787), 2, + STATE(1815), 2, sym_line_comment, sym_block_comment, - ACTIONS(4139), 3, + ACTIONS(4207), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4153), 4, + ACTIONS(4257), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4229), 10, + ACTIONS(4035), 14, + anon_sym_LPAREN, + anon_sym_EQ_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152265,15 +155844,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50126] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [51645] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1788), 2, + STATE(1816), 2, sym_line_comment, sym_block_comment, - ACTIONS(771), 15, + ACTIONS(1307), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152289,7 +155870,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(773), 23, + ACTIONS(1305), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152313,15 +155894,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [50179] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [51698] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1789), 2, + STATE(1817), 2, sym_line_comment, sym_block_comment, - ACTIONS(1322), 15, + ACTIONS(3347), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152337,7 +155918,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1320), 23, + ACTIONS(3345), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152361,61 +155942,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [50232] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [51751] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4131), 1, - anon_sym_LBRACK, - ACTIONS(4133), 1, - anon_sym_QMARK, - ACTIONS(4135), 1, - anon_sym_DOT, - ACTIONS(4141), 1, + STATE(1818), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3655), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4143), 1, anon_sym_AMP, - ACTIONS(4145), 1, anon_sym_PIPE, - ACTIONS(4147), 1, - anon_sym_AMP_AMP, - ACTIONS(4149), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4157), 1, - anon_sym_as, - ACTIONS(4159), 1, - anon_sym_DOT_DOT, - ACTIONS(4231), 1, - anon_sym_EQ, - ACTIONS(3661), 2, - anon_sym_LPAREN, - anon_sym_EQ_GT, - ACTIONS(4137), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4151), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4155), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4161), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1790), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4139), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4153), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4229), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3653), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152426,15 +155983,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50319] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [51804] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1791), 2, + STATE(1819), 2, sym_line_comment, sym_block_comment, - ACTIONS(985), 15, + ACTIONS(994), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152450,7 +156014,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(987), 23, + ACTIONS(996), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152474,15 +156038,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [50372] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [51857] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1792), 2, + STATE(1820), 2, sym_line_comment, sym_block_comment, - ACTIONS(989), 15, + ACTIONS(3667), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152498,7 +156062,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(991), 23, + ACTIONS(3665), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152522,62 +156086,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [50425] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [51910] = 23, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3687), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3691), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3693), 1, anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, ACTIONS(3901), 1, - anon_sym_CARET, - ACTIONS(3903), 1, + anon_sym_as, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3981), 1, + anon_sym_CARET, + ACTIONS(3983), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3985), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3987), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4015), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4123), 1, anon_sym_DOT_DOT, - ACTIONS(4237), 1, - anon_sym_RPAREN, - ACTIONS(4239), 1, - anon_sym_COMMA, - ACTIONS(3897), 2, + ACTIONS(4303), 1, + anon_sym_SEMI, + ACTIONS(4373), 1, + anon_sym_RBRACE, + ACTIONS(3973), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(3991), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4125), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1793), 2, + STATE(1821), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(3989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4013), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152588,189 +156152,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50514] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [51999] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(292), 1, - anon_sym_RBRACE, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, + STATE(1822), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3871), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3903), 1, anon_sym_AMP, - ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(4005), 1, - anon_sym_DOT_DOT, - ACTIONS(4125), 1, - anon_sym_SEMI, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1794), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3899), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3929), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3869), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [50603] = 18, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4241), 1, - sym_identifier, - ACTIONS(4243), 1, - anon_sym_LBRACE, - ACTIONS(4245), 1, - anon_sym_RBRACE, - ACTIONS(4247), 1, - anon_sym_STAR, - ACTIONS(4251), 1, - anon_sym_COMMA, - ACTIONS(4253), 1, - anon_sym_COLON_COLON, - ACTIONS(4257), 1, - sym_metavariable, - STATE(2488), 1, - sym_scoped_identifier, - STATE(2852), 1, - sym__use_clause, - STATE(3374), 1, - sym_generic_type_with_turbofish, - STATE(3495), 1, - sym_bracketed_type, - STATE(1795), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4255), 3, - sym_self, - sym_super, - sym_crate, - STATE(2966), 4, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(4249), 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, - [50682] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [52052] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3687), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3691), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3693), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3901), 1, anon_sym_as, - ACTIONS(4191), 1, + ACTIONS(4225), 1, anon_sym_CARET, - ACTIONS(4193), 1, + ACTIONS(4227), 1, anon_sym_AMP, - ACTIONS(4195), 1, + ACTIONS(4229), 1, anon_sym_PIPE, - ACTIONS(4197), 1, + ACTIONS(4231), 1, anon_sym_AMP_AMP, - ACTIONS(4199), 1, + ACTIONS(4233), 1, anon_sym_PIPE_PIPE, - ACTIONS(4205), 1, + ACTIONS(4239), 1, anon_sym_EQ, - ACTIONS(4221), 1, + ACTIONS(4265), 1, anon_sym_DOT_DOT, - ACTIONS(4259), 1, + ACTIONS(3881), 2, + anon_sym_LPAREN, anon_sym_LBRACE, - STATE(1130), 1, - sym_match_block, - ACTIONS(4187), 2, + ACTIONS(4221), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4201), 2, + ACTIONS(4235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4209), 2, + ACTIONS(4243), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4223), 2, + ACTIONS(4267), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1796), 2, + STATE(1823), 2, sym_line_comment, sym_block_comment, - ACTIONS(4189), 3, + ACTIONS(4223), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4207), 4, + ACTIONS(4241), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4203), 10, + ACTIONS(4237), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152781,62 +156265,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50771] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [52139] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(294), 1, - anon_sym_RBRACE, - ACTIONS(3667), 1, + ACTIONS(4203), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(4209), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(4213), 1, anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, + STATE(1824), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3689), 14, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3903), 1, anon_sym_AMP, - ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(4005), 1, - anon_sym_DOT_DOT, - ACTIONS(4125), 1, - anon_sym_SEMI, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + anon_sym_DOT_DOT, + ACTIONS(3685), 21, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1797), 2, + anon_sym_as, + [52198] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1825), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(1327), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3929), 10, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1325), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152847,61 +156357,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50860] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [52251] = 23, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(313), 1, + anon_sym_RBRACE, + ACTIONS(3687), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3691), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3693), 1, anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, ACTIONS(3901), 1, - anon_sym_CARET, - ACTIONS(3903), 1, + anon_sym_as, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3981), 1, + anon_sym_CARET, + ACTIONS(3983), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3985), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3987), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4015), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4123), 1, anon_sym_DOT_DOT, - ACTIONS(3897), 2, + ACTIONS(4303), 1, + anon_sym_SEMI, + ACTIONS(3973), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(3991), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4125), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4261), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1798), 2, + STATE(1826), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(3989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4013), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152912,61 +156430,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50947] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [52340] = 23, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3687), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3691), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3693), 1, anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, ACTIONS(3901), 1, - anon_sym_CARET, - ACTIONS(3903), 1, + anon_sym_as, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3981), 1, + anon_sym_CARET, + ACTIONS(3983), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3985), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3987), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4015), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4123), 1, anon_sym_DOT_DOT, - ACTIONS(3897), 2, + ACTIONS(4375), 1, + anon_sym_SEMI, + ACTIONS(4377), 1, + anon_sym_else, + ACTIONS(3973), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(3991), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4125), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4263), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1799), 2, + STATE(1827), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(3989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4013), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152977,62 +156496,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51034] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [52429] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1051), 1, - anon_sym_RPAREN, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, + STATE(1828), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3705), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3903), 1, anon_sym_AMP, - ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(4005), 1, - anon_sym_DOT_DOT, - ACTIONS(4169), 1, - anon_sym_COMMA, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1800), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3899), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3929), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3703), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153043,62 +156537,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51123] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [52482] = 23, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(295), 1, + anon_sym_RBRACE, + ACTIONS(3687), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3691), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3693), 1, anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, ACTIONS(3901), 1, - anon_sym_CARET, - ACTIONS(3903), 1, + anon_sym_as, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3981), 1, + anon_sym_CARET, + ACTIONS(3983), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3985), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3987), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4015), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4123), 1, anon_sym_DOT_DOT, - ACTIONS(4265), 1, + ACTIONS(4303), 1, anon_sym_SEMI, - ACTIONS(4267), 1, - anon_sym_else, - ACTIONS(3897), 2, + ACTIONS(3973), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(3991), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4125), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1801), 2, + STATE(1829), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(3989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4013), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153109,62 +156610,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51212] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [52571] = 21, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(296), 1, - anon_sym_RBRACE, - ACTIONS(3667), 1, + ACTIONS(3687), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3691), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3693), 1, anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, ACTIONS(3901), 1, + anon_sym_as, + ACTIONS(4003), 1, + anon_sym_EQ, + ACTIONS(4225), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4227), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4229), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(4231), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4233), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4265), 1, anon_sym_DOT_DOT, - ACTIONS(4125), 1, - anon_sym_SEMI, - ACTIONS(3897), 2, + ACTIONS(4221), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4243), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4267), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1802), 2, + STATE(1830), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4223), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4241), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4001), 12, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153175,62 +156674,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51301] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [52656] = 15, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1168), 1, - anon_sym_RPAREN, - ACTIONS(3667), 1, + ACTIONS(4203), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(4209), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(4213), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(4215), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4249), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4251), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4253), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(4005), 1, - anon_sym_DOT_DOT, - ACTIONS(4169), 1, - anon_sym_COMMA, - ACTIONS(3897), 2, + ACTIONS(4205), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4211), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4007), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1803), 2, + STATE(1831), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4207), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(3899), 4, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(3897), 20, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [52729] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1832), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(926), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(928), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153241,62 +156773,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51390] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [52782] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(4203), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(4209), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(4213), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(4215), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4249), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4251), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4253), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(4255), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4329), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4333), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4335), 1, anon_sym_DOT_DOT, - ACTIONS(4269), 1, - anon_sym_SEMI, - ACTIONS(4271), 1, - anon_sym_else, - ACTIONS(3897), 2, + ACTIONS(3777), 2, + anon_sym_LPAREN, + anon_sym_EQ_GT, + ACTIONS(4205), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4211), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4259), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4337), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1804), 2, + STATE(1833), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4207), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4257), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4331), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153307,62 +156845,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51479] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [52869] = 21, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(4007), 1, + anon_sym_EQ, + ACTIONS(4203), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(4209), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(4213), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(4215), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4249), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4251), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4253), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(4255), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4329), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4335), 1, anon_sym_DOT_DOT, - ACTIONS(4125), 1, - anon_sym_SEMI, - ACTIONS(4273), 1, - anon_sym_RBRACE, - ACTIONS(3897), 2, + ACTIONS(4205), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4211), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4259), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4337), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1805), 2, + STATE(1834), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4207), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4257), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4005), 12, + anon_sym_LPAREN, + anon_sym_EQ_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153373,62 +156909,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51568] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [52954] = 23, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1059), 1, - anon_sym_RPAREN, - ACTIONS(3667), 1, + ACTIONS(3687), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3691), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3693), 1, anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, ACTIONS(3901), 1, + anon_sym_as, + ACTIONS(4225), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4227), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4229), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(4231), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4233), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4239), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4245), 1, anon_sym_DOT_DOT, - ACTIONS(4169), 1, - anon_sym_COMMA, - ACTIONS(3897), 2, + ACTIONS(4379), 1, + anon_sym_LBRACE, + STATE(1863), 1, + sym_match_block, + ACTIONS(4221), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4243), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4247), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1806), 2, + STATE(1835), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4223), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4241), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4237), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153439,62 +156975,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51657] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [53043] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, + STATE(1836), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3787), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3903), 1, anon_sym_AMP, - ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(4005), 1, - anon_sym_DOT_DOT, - ACTIONS(4169), 1, - anon_sym_COMMA, - ACTIONS(4275), 1, - anon_sym_RPAREN, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1807), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3899), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3929), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3785), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153505,62 +157016,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51746] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [53096] = 23, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3687), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3691), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3693), 1, anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, ACTIONS(3901), 1, - anon_sym_CARET, - ACTIONS(3903), 1, + anon_sym_as, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3981), 1, + anon_sym_CARET, + ACTIONS(3983), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3985), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3987), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4015), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4123), 1, anon_sym_DOT_DOT, - ACTIONS(4277), 1, + ACTIONS(4381), 1, anon_sym_SEMI, - ACTIONS(4279), 1, + ACTIONS(4383), 1, anon_sym_else, - ACTIONS(3897), 2, + ACTIONS(3973), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(3991), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4125), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1808), 2, + STATE(1837), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(3989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4013), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153571,62 +157089,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51835] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [53185] = 21, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(4043), 1, + anon_sym_EQ, + ACTIONS(4203), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(4209), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(4213), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(4215), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4249), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4251), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4253), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(4255), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4329), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4335), 1, anon_sym_DOT_DOT, - ACTIONS(4281), 1, - anon_sym_SEMI, - ACTIONS(4283), 1, - anon_sym_else, - ACTIONS(3897), 2, + ACTIONS(4205), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4211), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4259), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4337), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1809), 2, + STATE(1838), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4207), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4257), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4041), 12, + anon_sym_LPAREN, + anon_sym_EQ_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153637,62 +157153,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51924] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [53270] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(300), 1, - anon_sym_RBRACE, - ACTIONS(3667), 1, + ACTIONS(3687), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3691), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3693), 1, anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, ACTIONS(3901), 1, + anon_sym_as, + ACTIONS(4225), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4227), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4229), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(4231), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4233), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4239), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4265), 1, anon_sym_DOT_DOT, - ACTIONS(4125), 1, - anon_sym_SEMI, - ACTIONS(3897), 2, + ACTIONS(3637), 2, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4221), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4243), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4267), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1810), 2, + STATE(1839), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4223), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4241), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4237), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153703,56 +157218,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52013] = 19, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [53357] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(4191), 1, + STATE(1840), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3749), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4193), 1, anon_sym_AMP, - ACTIONS(4195), 1, anon_sym_PIPE, - ACTIONS(4197), 1, - anon_sym_AMP_AMP, - ACTIONS(4199), 1, - anon_sym_PIPE_PIPE, - ACTIONS(370), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(4187), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4201), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4209), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - STATE(1811), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4189), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4207), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(368), 14, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3747), 23, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153763,62 +157259,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [52094] = 21, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_as, + [53410] = 10, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(342), 1, - anon_sym_EQ, - ACTIONS(3667), 1, + ACTIONS(3687), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3691), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3693), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3901), 1, anon_sym_as, - ACTIONS(4191), 1, + STATE(1841), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4223), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3899), 11, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_CARET, - ACTIONS(4193), 1, anon_sym_AMP, - ACTIONS(4195), 1, anon_sym_PIPE, - ACTIONS(4197), 1, - anon_sym_AMP_AMP, - ACTIONS(4199), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4211), 1, - anon_sym_DOT_DOT, - ACTIONS(4187), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4201), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4209), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4213), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1812), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4189), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4207), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(336), 12, + anon_sym_DOT_DOT, + ACTIONS(3897), 20, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153829,62 +157313,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52179] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [53473] = 13, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3687), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3691), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3693), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3901), 1, anon_sym_as, - ACTIONS(4191), 1, - anon_sym_CARET, - ACTIONS(4193), 1, + ACTIONS(4227), 1, anon_sym_AMP, - ACTIONS(4195), 1, - anon_sym_PIPE, - ACTIONS(4197), 1, - anon_sym_AMP_AMP, - ACTIONS(4199), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4205), 1, - anon_sym_EQ, - ACTIONS(4221), 1, - anon_sym_DOT_DOT, - ACTIONS(4285), 1, - anon_sym_LBRACE, - STATE(460), 1, - sym_match_block, - ACTIONS(4187), 2, + ACTIONS(4221), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4201), 2, + ACTIONS(4235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4209), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4223), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1813), 2, + STATE(1842), 2, sym_line_comment, sym_block_comment, - ACTIONS(4189), 3, + ACTIONS(4223), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4207), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4203), 10, + ACTIONS(3899), 6, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(3897), 20, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153895,60 +157369,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52268] = 21, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [53542] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3935), 1, - anon_sym_EQ, - ACTIONS(4191), 1, + STATE(1843), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3957), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4193), 1, anon_sym_AMP, - ACTIONS(4195), 1, anon_sym_PIPE, - ACTIONS(4197), 1, - anon_sym_AMP_AMP, - ACTIONS(4199), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4211), 1, - anon_sym_DOT_DOT, - ACTIONS(4187), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4201), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4209), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4213), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1814), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4189), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4207), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3933), 12, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3955), 23, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153959,60 +157416,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52353] = 21, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [53595] = 12, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3687), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3691), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3693), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(3901), 1, anon_sym_as, - ACTIONS(3957), 1, - anon_sym_EQ, - ACTIONS(4191), 1, - anon_sym_CARET, - ACTIONS(4193), 1, - anon_sym_AMP, - ACTIONS(4195), 1, - anon_sym_PIPE, - ACTIONS(4197), 1, - anon_sym_AMP_AMP, - ACTIONS(4199), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4211), 1, - anon_sym_DOT_DOT, - ACTIONS(4187), 2, + ACTIONS(4221), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4201), 2, + ACTIONS(4235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4209), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4213), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1815), 2, + STATE(1844), 2, sym_line_comment, sym_block_comment, - ACTIONS(4189), 3, + ACTIONS(4223), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4207), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3955), 12, + ACTIONS(3899), 7, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(3897), 20, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154023,62 +157472,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52438] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [53662] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(302), 1, - anon_sym_RBRACE, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, + STATE(1845), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3961), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3903), 1, anon_sym_AMP, - ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(4005), 1, - anon_sym_DOT_DOT, - ACTIONS(4125), 1, - anon_sym_SEMI, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1816), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3899), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3929), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3959), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154089,61 +157519,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52527] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [53715] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3687), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3691), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3693), 1, anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, ACTIONS(3901), 1, - anon_sym_CARET, - ACTIONS(3903), 1, + anon_sym_as, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3981), 1, + anon_sym_CARET, + ACTIONS(3983), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3985), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3987), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4015), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4123), 1, anon_sym_DOT_DOT, - ACTIONS(3897), 2, + ACTIONS(3973), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(3991), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4125), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4287), 2, + ACTIONS(4385), 2, anon_sym_RBRACE, anon_sym_COMMA, - STATE(1817), 2, + STATE(1846), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(3989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4013), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154154,61 +157591,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52614] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [53802] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, + STATE(1847), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3911), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3903), 1, anon_sym_AMP, - ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(4005), 1, - anon_sym_DOT_DOT, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4289), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1818), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3899), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3929), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3909), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154219,62 +157632,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52701] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [53855] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(304), 1, - anon_sym_RBRACE, - ACTIONS(3667), 1, + ACTIONS(3687), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3691), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3693), 1, anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, ACTIONS(3901), 1, - anon_sym_CARET, - ACTIONS(3903), 1, + anon_sym_as, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3981), 1, + anon_sym_CARET, + ACTIONS(3983), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3985), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3987), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4015), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4123), 1, anon_sym_DOT_DOT, - ACTIONS(4125), 1, - anon_sym_SEMI, - ACTIONS(3897), 2, + ACTIONS(3973), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(3991), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4125), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1819), 2, + ACTIONS(4387), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1848), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(3989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4013), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154285,62 +157704,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52790] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [53942] = 14, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3687), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3691), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3693), 1, anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, ACTIONS(3901), 1, + anon_sym_as, + ACTIONS(4225), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4227), 1, anon_sym_AMP, - ACTIONS(3905), 1, - anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(4005), 1, - anon_sym_DOT_DOT, - ACTIONS(4125), 1, - anon_sym_SEMI, - ACTIONS(4291), 1, - anon_sym_RBRACE, - ACTIONS(3897), 2, + ACTIONS(4221), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4007), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1820), 2, + STATE(1849), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4223), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(3899), 5, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(3897), 20, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154351,62 +157755,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52879] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [54013] = 11, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(308), 1, - anon_sym_RBRACE, - ACTIONS(3667), 1, + ACTIONS(4203), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(4209), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(4213), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(4215), 1, anon_sym_as, - ACTIONS(3901), 1, - anon_sym_CARET, - ACTIONS(3903), 1, - anon_sym_AMP, - ACTIONS(3905), 1, - anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(4005), 1, - anon_sym_DOT_DOT, - ACTIONS(4125), 1, - anon_sym_SEMI, - ACTIONS(3897), 2, + ACTIONS(4205), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3917), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4007), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1821), 2, + STATE(1850), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4207), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(3899), 9, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(3897), 20, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154417,62 +157809,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52968] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [54078] = 21, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(4003), 1, + anon_sym_EQ, + ACTIONS(4203), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(4209), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(4213), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(4215), 1, anon_sym_as, - ACTIONS(4191), 1, + ACTIONS(4249), 1, anon_sym_CARET, - ACTIONS(4193), 1, + ACTIONS(4251), 1, anon_sym_AMP, - ACTIONS(4195), 1, + ACTIONS(4253), 1, anon_sym_PIPE, - ACTIONS(4197), 1, + ACTIONS(4255), 1, anon_sym_AMP_AMP, - ACTIONS(4199), 1, + ACTIONS(4329), 1, anon_sym_PIPE_PIPE, - ACTIONS(4205), 1, - anon_sym_EQ, - ACTIONS(4221), 1, + ACTIONS(4335), 1, anon_sym_DOT_DOT, - ACTIONS(4293), 1, - anon_sym_LBRACE, - STATE(1750), 1, - sym_match_block, - ACTIONS(4187), 2, + ACTIONS(4205), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4201), 2, + ACTIONS(4211), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4209), 2, + ACTIONS(4259), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4223), 2, + ACTIONS(4337), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1822), 2, + STATE(1851), 2, sym_line_comment, sym_block_comment, - ACTIONS(4189), 3, + ACTIONS(4207), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4207), 4, + ACTIONS(4257), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4203), 10, + ACTIONS(4001), 12, + anon_sym_LPAREN, + anon_sym_EQ_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154483,62 +157879,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53057] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [54163] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(310), 1, - anon_sym_RBRACE, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, + STATE(1852), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3709), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3903), 1, anon_sym_AMP, - ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(4005), 1, - anon_sym_DOT_DOT, - ACTIONS(4125), 1, - anon_sym_SEMI, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3707), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1823), 2, + anon_sym_as, + [54216] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1853), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3709), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3929), 10, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3707), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154549,62 +157968,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53146] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [54269] = 23, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(312), 1, - anon_sym_RBRACE, - ACTIONS(3667), 1, + ACTIONS(3687), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3691), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3693), 1, anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, ACTIONS(3901), 1, - anon_sym_CARET, - ACTIONS(3903), 1, + anon_sym_as, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3981), 1, + anon_sym_CARET, + ACTIONS(3983), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3985), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3987), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4015), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4123), 1, anon_sym_DOT_DOT, - ACTIONS(4125), 1, - anon_sym_SEMI, - ACTIONS(3897), 2, + ACTIONS(4389), 1, + anon_sym_RBRACE, + ACTIONS(4391), 1, + anon_sym_COMMA, + ACTIONS(3973), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(3991), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4125), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1824), 2, + STATE(1854), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(3989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4013), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154615,62 +158041,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53235] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [54358] = 18, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3687), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3691), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3693), 1, anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, ACTIONS(3901), 1, + anon_sym_as, + ACTIONS(4225), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4227), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4229), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(4231), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(3899), 2, anon_sym_EQ, - ACTIONS(4005), 1, anon_sym_DOT_DOT, - ACTIONS(4295), 1, - anon_sym_SEMI, - ACTIONS(4297), 1, - anon_sym_else, - ACTIONS(3897), 2, + ACTIONS(4221), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4243), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1825), 2, + STATE(1855), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4223), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4241), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(3897), 15, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154681,62 +158100,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53324] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [54437] = 11, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(316), 1, - anon_sym_RBRACE, - ACTIONS(3667), 1, + ACTIONS(3687), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3691), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3693), 1, anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, ACTIONS(3901), 1, + anon_sym_as, + ACTIONS(4221), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1856), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4223), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3899), 9, anon_sym_CARET, - ACTIONS(3903), 1, anon_sym_AMP, - ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(4005), 1, - anon_sym_DOT_DOT, - ACTIONS(4125), 1, - anon_sym_SEMI, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + anon_sym_DOT_DOT, + ACTIONS(3897), 20, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1826), 2, + [54502] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1857), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(1307), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3929), 10, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1305), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154747,62 +158197,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53413] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [54555] = 21, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(318), 1, - anon_sym_RBRACE, - ACTIONS(3667), 1, + ACTIONS(3687), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3691), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3693), 1, anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, ACTIONS(3901), 1, + anon_sym_as, + ACTIONS(4043), 1, + anon_sym_EQ, + ACTIONS(4225), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4227), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4229), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(4231), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4233), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4265), 1, anon_sym_DOT_DOT, - ACTIONS(4125), 1, - anon_sym_SEMI, - ACTIONS(3897), 2, + ACTIONS(4221), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4243), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4267), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1827), 2, + STATE(1858), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4223), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4241), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4041), 12, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154813,62 +158268,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53502] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [54640] = 21, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(320), 1, - anon_sym_RBRACE, - ACTIONS(3667), 1, + ACTIONS(3687), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3691), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3693), 1, anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, ACTIONS(3901), 1, + anon_sym_as, + ACTIONS(4007), 1, + anon_sym_EQ, + ACTIONS(4225), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4227), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4229), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(4231), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4233), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4265), 1, anon_sym_DOT_DOT, - ACTIONS(4125), 1, - anon_sym_SEMI, - ACTIONS(3897), 2, + ACTIONS(4221), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4243), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4267), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1828), 2, + STATE(1859), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4223), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4241), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4005), 12, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154879,62 +158332,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53591] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [54725] = 15, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3687), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3691), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3693), 1, anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, ACTIONS(3901), 1, + anon_sym_as, + ACTIONS(4225), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4227), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4229), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(4005), 1, - anon_sym_DOT_DOT, - ACTIONS(4299), 1, - anon_sym_RBRACE, - ACTIONS(4301), 1, - anon_sym_COMMA, - ACTIONS(3897), 2, + ACTIONS(4221), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4007), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1829), 2, + STATE(1860), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4223), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(3899), 4, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(3897), 20, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [54798] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1861), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3663), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3661), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154945,62 +158431,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53680] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [54851] = 19, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3687), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3691), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3693), 1, anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, ACTIONS(3901), 1, + anon_sym_as, + ACTIONS(4225), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4227), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4229), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(4231), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4233), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4037), 2, anon_sym_EQ, - ACTIONS(4005), 1, anon_sym_DOT_DOT, - ACTIONS(4125), 1, - anon_sym_SEMI, - ACTIONS(4303), 1, - anon_sym_RBRACE, - ACTIONS(3897), 2, + ACTIONS(4221), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4243), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1830), 2, + STATE(1862), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4223), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4241), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4035), 14, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155011,62 +158498,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53769] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [54932] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(324), 1, - anon_sym_RBRACE, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, + STATE(1863), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1255), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3903), 1, anon_sym_AMP, - ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(4005), 1, - anon_sym_DOT_DOT, - ACTIONS(4125), 1, - anon_sym_SEMI, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1831), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3899), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3929), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1253), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155077,62 +158541,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53858] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [54985] = 23, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(326), 1, - anon_sym_RBRACE, - ACTIONS(3667), 1, + ACTIONS(1064), 1, + anon_sym_RPAREN, + ACTIONS(3687), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3691), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3693), 1, anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, ACTIONS(3901), 1, - anon_sym_CARET, - ACTIONS(3903), 1, + anon_sym_as, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3981), 1, + anon_sym_CARET, + ACTIONS(3983), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3985), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3987), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4015), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4123), 1, anon_sym_DOT_DOT, - ACTIONS(4125), 1, - anon_sym_SEMI, - ACTIONS(3897), 2, + ACTIONS(4217), 1, + anon_sym_COMMA, + ACTIONS(3973), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(3991), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4125), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1832), 2, + STATE(1864), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(3989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4013), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155143,62 +158614,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53947] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [55074] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(328), 1, - anon_sym_RBRACE, - ACTIONS(3667), 1, + ACTIONS(3687), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3691), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3693), 1, anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, ACTIONS(3901), 1, - anon_sym_CARET, - ACTIONS(3903), 1, + anon_sym_as, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3981), 1, + anon_sym_CARET, + ACTIONS(3983), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3985), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3987), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4015), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4123), 1, anon_sym_DOT_DOT, - ACTIONS(4125), 1, - anon_sym_SEMI, - ACTIONS(3897), 2, + ACTIONS(3637), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3973), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(3991), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4125), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1833), 2, + STATE(1865), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(3989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4013), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155209,62 +158679,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54036] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [55161] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, + STATE(1866), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(956), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3903), 1, anon_sym_AMP, - ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(4005), 1, - anon_sym_DOT_DOT, - ACTIONS(4125), 1, - anon_sym_SEMI, - ACTIONS(4305), 1, - anon_sym_RBRACE, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(958), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1834), 2, + anon_sym_as, + [55214] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1867), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3727), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3929), 10, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3725), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155275,62 +158768,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54125] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [55267] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(332), 1, - anon_sym_RBRACE, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, + STATE(1868), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3763), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3903), 1, anon_sym_AMP, - ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(4005), 1, - anon_sym_DOT_DOT, - ACTIONS(4125), 1, - anon_sym_SEMI, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3761), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1835), 2, + anon_sym_as, + [55320] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1869), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3833), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3831), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [55373] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1870), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3745), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3743), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155341,62 +158912,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54214] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [55426] = 23, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(121), 1, + ACTIONS(289), 1, anon_sym_RBRACE, - ACTIONS(3667), 1, + ACTIONS(3687), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3691), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3693), 1, anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, ACTIONS(3901), 1, - anon_sym_CARET, - ACTIONS(3903), 1, + anon_sym_as, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3981), 1, + anon_sym_CARET, + ACTIONS(3983), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3985), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3987), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4015), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4123), 1, anon_sym_DOT_DOT, - ACTIONS(4125), 1, + ACTIONS(4303), 1, anon_sym_SEMI, - ACTIONS(3897), 2, + ACTIONS(3973), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(3991), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4125), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1836), 2, + STATE(1871), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(3989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4013), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155407,62 +158985,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54303] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [55515] = 23, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(117), 1, + ACTIONS(315), 1, anon_sym_RBRACE, - ACTIONS(3667), 1, + ACTIONS(3687), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3691), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3693), 1, anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, ACTIONS(3901), 1, - anon_sym_CARET, - ACTIONS(3903), 1, + anon_sym_as, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3981), 1, + anon_sym_CARET, + ACTIONS(3983), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3985), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3987), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4015), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4123), 1, anon_sym_DOT_DOT, - ACTIONS(4125), 1, + ACTIONS(4303), 1, anon_sym_SEMI, - ACTIONS(3897), 2, + ACTIONS(3973), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(3991), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4125), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1837), 2, + STATE(1872), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(3989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4013), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155473,62 +159051,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54392] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [55604] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3671), 1, - anon_sym_QMARK, - ACTIONS(3673), 1, - anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, - ACTIONS(3901), 1, + STATE(1873), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3639), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3903), 1, anon_sym_AMP, - ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(4005), 1, - anon_sym_DOT_DOT, - ACTIONS(4125), 1, - anon_sym_SEMI, - ACTIONS(4307), 1, - anon_sym_RBRACE, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1838), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3899), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3929), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3637), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155539,61 +159092,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54481] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [55657] = 23, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(287), 1, + anon_sym_RBRACE, + ACTIONS(3687), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3691), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3693), 1, anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, ACTIONS(3901), 1, - anon_sym_CARET, - ACTIONS(3903), 1, + anon_sym_as, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3981), 1, + anon_sym_CARET, + ACTIONS(3983), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3985), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3987), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4015), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4123), 1, anon_sym_DOT_DOT, - ACTIONS(3897), 2, + ACTIONS(4303), 1, + anon_sym_SEMI, + ACTIONS(3973), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(3991), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4125), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4309), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1839), 2, + STATE(1874), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(3989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4013), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155604,62 +159165,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54568] = 23, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [55746] = 23, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(323), 1, + anon_sym_RBRACE, + ACTIONS(3687), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3691), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3693), 1, anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, ACTIONS(3901), 1, - anon_sym_CARET, - ACTIONS(3903), 1, + anon_sym_as, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3981), 1, + anon_sym_CARET, + ACTIONS(3983), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3985), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3987), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4015), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4123), 1, anon_sym_DOT_DOT, - ACTIONS(4311), 1, - anon_sym_RPAREN, - ACTIONS(4313), 1, - anon_sym_COMMA, - ACTIONS(3897), 2, + ACTIONS(4303), 1, + anon_sym_SEMI, + ACTIONS(3973), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(3991), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4125), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1840), 2, + STATE(1875), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(3989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4013), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155670,108 +159231,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54657] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [55835] = 22, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1841), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1372), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1370), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [54710] = 22, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3687), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3691), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3693), 1, anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, ACTIONS(3901), 1, - anon_sym_CARET, - ACTIONS(3903), 1, + anon_sym_as, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3981), 1, + anon_sym_CARET, + ACTIONS(3983), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3985), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3987), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4015), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4123), 1, anon_sym_DOT_DOT, - ACTIONS(4315), 1, - anon_sym_SEMI, - ACTIONS(3897), 2, + ACTIONS(4393), 1, + anon_sym_RBRACK, + ACTIONS(3973), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(3991), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4125), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1842), 2, + STATE(1876), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(3989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4013), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155782,60 +159295,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54796] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [55921] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3687), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3691), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3693), 1, anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, ACTIONS(3901), 1, - anon_sym_CARET, - ACTIONS(3903), 1, + anon_sym_as, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3981), 1, + anon_sym_CARET, + ACTIONS(3983), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3985), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3987), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4015), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4123), 1, anon_sym_DOT_DOT, - ACTIONS(4317), 1, - anon_sym_RBRACK, - ACTIONS(3897), 2, + ACTIONS(4395), 1, + anon_sym_COMMA, + ACTIONS(3973), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(3991), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4125), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1843), 2, + STATE(1877), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(3989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4013), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155846,60 +159359,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54882] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [56007] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3687), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3691), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3693), 1, anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, ACTIONS(3901), 1, - anon_sym_CARET, - ACTIONS(3903), 1, + anon_sym_as, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3981), 1, + anon_sym_CARET, + ACTIONS(3983), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3985), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3987), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4015), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4123), 1, anon_sym_DOT_DOT, - ACTIONS(4319), 1, + ACTIONS(4397), 1, anon_sym_RBRACK, - ACTIONS(3897), 2, + ACTIONS(3973), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(3991), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4125), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1844), 2, + STATE(1878), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(3989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4013), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155910,60 +159423,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54968] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [56093] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3687), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3691), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3693), 1, anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, ACTIONS(3901), 1, - anon_sym_CARET, - ACTIONS(3903), 1, + anon_sym_as, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3981), 1, + anon_sym_CARET, + ACTIONS(3983), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3985), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3987), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4015), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4123), 1, anon_sym_DOT_DOT, - ACTIONS(4125), 1, + ACTIONS(4399), 1, anon_sym_SEMI, - ACTIONS(3897), 2, + ACTIONS(3973), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(3991), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4125), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1845), 2, + STATE(1879), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(3989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4013), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155974,118 +159487,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55054] = 17, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [56179] = 22, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4241), 1, - sym_identifier, - ACTIONS(4243), 1, - anon_sym_LBRACE, - ACTIONS(4247), 1, - anon_sym_STAR, - ACTIONS(4253), 1, - anon_sym_COLON_COLON, - ACTIONS(4257), 1, - sym_metavariable, - ACTIONS(4321), 1, - anon_sym_RBRACE, - STATE(2488), 1, - sym_scoped_identifier, - STATE(3073), 1, - sym__use_clause, - STATE(3374), 1, - sym_generic_type_with_turbofish, - STATE(3495), 1, - sym_bracketed_type, - STATE(1846), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4255), 3, - sym_self, - sym_super, - sym_crate, - STATE(2966), 4, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(4249), 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, - [55130] = 21, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4131), 1, + ACTIONS(3687), 1, anon_sym_LBRACK, - ACTIONS(4133), 1, + ACTIONS(3691), 1, anon_sym_QMARK, - ACTIONS(4135), 1, + ACTIONS(3693), 1, anon_sym_DOT, - ACTIONS(4141), 1, - anon_sym_CARET, - ACTIONS(4143), 1, + ACTIONS(3901), 1, + anon_sym_as, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(4145), 1, + ACTIONS(3981), 1, + anon_sym_CARET, + ACTIONS(3983), 1, anon_sym_PIPE, - ACTIONS(4149), 1, + ACTIONS(3985), 1, + anon_sym_AMP_AMP, + ACTIONS(3987), 1, anon_sym_PIPE_PIPE, - ACTIONS(4157), 1, - anon_sym_as, - ACTIONS(4231), 1, + ACTIONS(4015), 1, anon_sym_EQ, - ACTIONS(4323), 1, + ACTIONS(4123), 1, anon_sym_DOT_DOT, - ACTIONS(4129), 2, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - ACTIONS(4137), 2, + ACTIONS(4401), 1, + anon_sym_COMMA, + ACTIONS(3973), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4151), 2, + ACTIONS(3979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4155), 2, + ACTIONS(3991), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4325), 2, + ACTIONS(4125), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1847), 2, + STATE(1880), 2, sym_line_comment, sym_block_comment, - ACTIONS(4139), 3, + ACTIONS(3975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4153), 4, + ACTIONS(3989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4229), 10, + ACTIONS(4013), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156096,60 +159551,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55214] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [56265] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3687), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3691), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3693), 1, anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, ACTIONS(3901), 1, - anon_sym_CARET, - ACTIONS(3903), 1, + anon_sym_as, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3981), 1, + anon_sym_CARET, + ACTIONS(3983), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3985), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3987), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4015), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4123), 1, anon_sym_DOT_DOT, - ACTIONS(4169), 1, - anon_sym_COMMA, - ACTIONS(3897), 2, + ACTIONS(4403), 1, + anon_sym_SEMI, + ACTIONS(3973), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(3991), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4125), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1848), 2, + STATE(1881), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(3989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4013), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156160,60 +159615,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55300] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [56351] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3687), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3691), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3693), 1, anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, ACTIONS(3901), 1, - anon_sym_CARET, - ACTIONS(3903), 1, + anon_sym_as, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3981), 1, + anon_sym_CARET, + ACTIONS(3983), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3985), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3987), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4015), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4123), 1, anon_sym_DOT_DOT, - ACTIONS(4327), 1, - anon_sym_SEMI, - ACTIONS(3897), 2, + ACTIONS(4405), 1, + anon_sym_RBRACK, + ACTIONS(3973), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(3991), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4125), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1849), 2, + STATE(1882), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(3989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4013), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156224,60 +159679,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55386] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [56437] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3687), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3691), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3693), 1, anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, ACTIONS(3901), 1, - anon_sym_CARET, - ACTIONS(3903), 1, + anon_sym_as, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3981), 1, + anon_sym_CARET, + ACTIONS(3983), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3985), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3987), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4015), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4123), 1, anon_sym_DOT_DOT, - ACTIONS(4329), 1, - anon_sym_RBRACK, - ACTIONS(3897), 2, + ACTIONS(4407), 1, + anon_sym_SEMI, + ACTIONS(3973), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(3991), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4125), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1850), 2, + STATE(1883), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(3989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4013), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156288,60 +159743,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55472] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [56523] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3687), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3691), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3693), 1, anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, ACTIONS(3901), 1, - anon_sym_CARET, - ACTIONS(3903), 1, + anon_sym_as, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3981), 1, + anon_sym_CARET, + ACTIONS(3983), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3985), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3987), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4015), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4123), 1, anon_sym_DOT_DOT, - ACTIONS(4331), 1, + ACTIONS(4409), 1, anon_sym_RBRACK, - ACTIONS(3897), 2, + ACTIONS(3973), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(3991), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4125), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1851), 2, + STATE(1884), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(3989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4013), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156352,60 +159807,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55558] = 22, - ACTIONS(101), 1, + [56609] = 17, + ACTIONS(31), 1, + anon_sym_LT, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4277), 1, + sym_identifier, + ACTIONS(4279), 1, + anon_sym_LBRACE, + ACTIONS(4285), 1, + anon_sym_STAR, + ACTIONS(4289), 1, + anon_sym_COLON_COLON, + ACTIONS(4293), 1, + sym_metavariable, + ACTIONS(4411), 1, + anon_sym_RBRACE, + STATE(2461), 1, + sym_scoped_identifier, + STATE(3367), 1, + sym__use_clause, + STATE(3513), 1, + sym_generic_type_with_turbofish, + STATE(3650), 1, + sym_bracketed_type, + STATE(1885), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4291), 3, + sym_self, + sym_super, + sym_crate, + STATE(2850), 4, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(4287), 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, + [56685] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3687), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3691), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3693), 1, anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, ACTIONS(3901), 1, - anon_sym_CARET, - ACTIONS(3903), 1, + anon_sym_as, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3981), 1, + anon_sym_CARET, + ACTIONS(3983), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3985), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3987), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4015), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4123), 1, anon_sym_DOT_DOT, - ACTIONS(4333), 1, - anon_sym_RBRACK, - ACTIONS(3897), 2, + ACTIONS(4413), 1, + anon_sym_SEMI, + ACTIONS(3973), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(3991), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4125), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1852), 2, + STATE(1886), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(3989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4013), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156416,60 +159930,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55644] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [56771] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3687), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3691), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3693), 1, anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, ACTIONS(3901), 1, - anon_sym_CARET, - ACTIONS(3903), 1, + anon_sym_as, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3981), 1, + anon_sym_CARET, + ACTIONS(3983), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3985), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3987), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4015), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4123), 1, anon_sym_DOT_DOT, - ACTIONS(4335), 1, - anon_sym_COMMA, - ACTIONS(3897), 2, + ACTIONS(4415), 1, + anon_sym_RBRACK, + ACTIONS(3973), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(3991), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4125), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1853), 2, + STATE(1887), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(3989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4013), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156480,60 +159994,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55730] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [56857] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3687), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3691), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3693), 1, anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, ACTIONS(3901), 1, - anon_sym_CARET, - ACTIONS(3903), 1, + anon_sym_as, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3981), 1, + anon_sym_CARET, + ACTIONS(3983), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3985), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3987), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4015), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4123), 1, anon_sym_DOT_DOT, - ACTIONS(4337), 1, - anon_sym_COMMA, - ACTIONS(3897), 2, + ACTIONS(4417), 1, + anon_sym_SEMI, + ACTIONS(3973), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(3991), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4125), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1854), 2, + STATE(1888), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(3989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4013), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156544,60 +160058,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55816] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [56943] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3687), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3691), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3693), 1, anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, ACTIONS(3901), 1, - anon_sym_CARET, - ACTIONS(3903), 1, + anon_sym_as, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3981), 1, + anon_sym_CARET, + ACTIONS(3983), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3985), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3987), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4015), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4123), 1, anon_sym_DOT_DOT, - ACTIONS(4339), 1, - anon_sym_RBRACK, - ACTIONS(3897), 2, + ACTIONS(4419), 1, + anon_sym_COMMA, + ACTIONS(3973), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(3991), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4125), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1855), 2, + STATE(1889), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(3989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4013), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156608,60 +160122,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55902] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [57029] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3687), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3691), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3693), 1, anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, ACTIONS(3901), 1, - anon_sym_CARET, - ACTIONS(3903), 1, + anon_sym_as, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3981), 1, + anon_sym_CARET, + ACTIONS(3983), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3985), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3987), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4015), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4123), 1, anon_sym_DOT_DOT, - ACTIONS(4341), 1, + ACTIONS(4421), 1, anon_sym_RBRACK, - ACTIONS(3897), 2, + ACTIONS(3973), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(3991), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4125), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1856), 2, + STATE(1890), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(3989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4013), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156672,60 +160186,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55988] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [57115] = 21, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(4203), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(4209), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(4213), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(4215), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4249), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4251), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4253), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4329), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4333), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4423), 1, anon_sym_DOT_DOT, - ACTIONS(4343), 1, - anon_sym_RBRACK, - ACTIONS(3897), 2, + ACTIONS(4205), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4211), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4259), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4359), 2, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, + ACTIONS(4425), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1857), 2, + STATE(1891), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4207), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4257), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4331), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156736,60 +160249,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56074] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [57199] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3687), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3691), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3693), 1, anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, ACTIONS(3901), 1, - anon_sym_CARET, - ACTIONS(3903), 1, + anon_sym_as, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3981), 1, + anon_sym_CARET, + ACTIONS(3983), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3985), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3987), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4015), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4123), 1, anon_sym_DOT_DOT, - ACTIONS(4345), 1, - anon_sym_SEMI, - ACTIONS(3897), 2, + ACTIONS(4427), 1, + anon_sym_RBRACK, + ACTIONS(3973), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(3991), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4125), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1858), 2, + STATE(1892), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(3989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4013), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156800,60 +160313,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56160] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [57285] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3687), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3691), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3693), 1, anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, ACTIONS(3901), 1, - anon_sym_CARET, - ACTIONS(3903), 1, + anon_sym_as, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3981), 1, + anon_sym_CARET, + ACTIONS(3983), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3985), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3987), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4015), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4123), 1, anon_sym_DOT_DOT, - ACTIONS(4347), 1, + ACTIONS(4429), 1, anon_sym_SEMI, - ACTIONS(3897), 2, + ACTIONS(3973), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(3991), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4125), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1859), 2, + STATE(1893), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(3989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4013), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156864,60 +160377,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56246] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [57371] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3687), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3691), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3693), 1, anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, ACTIONS(3901), 1, - anon_sym_CARET, - ACTIONS(3903), 1, + anon_sym_as, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3981), 1, + anon_sym_CARET, + ACTIONS(3983), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3985), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3987), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4015), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4123), 1, anon_sym_DOT_DOT, - ACTIONS(4349), 1, - anon_sym_RBRACK, - ACTIONS(3897), 2, + ACTIONS(4431), 1, + anon_sym_SEMI, + ACTIONS(3973), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(3991), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4125), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1860), 2, + STATE(1894), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(3989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4013), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156928,60 +160441,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56332] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [57457] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3687), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3691), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3693), 1, anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, ACTIONS(3901), 1, - anon_sym_CARET, - ACTIONS(3903), 1, + anon_sym_as, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3981), 1, + anon_sym_CARET, + ACTIONS(3983), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3985), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3987), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4015), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4123), 1, anon_sym_DOT_DOT, - ACTIONS(4351), 1, - anon_sym_SEMI, - ACTIONS(3897), 2, + ACTIONS(4433), 1, + anon_sym_RBRACK, + ACTIONS(3973), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(3991), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4125), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1861), 2, + STATE(1895), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(3989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4013), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156992,60 +160505,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56418] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [57543] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3687), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3691), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3693), 1, anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, ACTIONS(3901), 1, - anon_sym_CARET, - ACTIONS(3903), 1, + anon_sym_as, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3981), 1, + anon_sym_CARET, + ACTIONS(3983), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3985), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3987), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4015), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4123), 1, anon_sym_DOT_DOT, - ACTIONS(4353), 1, + ACTIONS(4435), 1, anon_sym_SEMI, - ACTIONS(3897), 2, + ACTIONS(3973), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(3991), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4125), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1862), 2, + STATE(1896), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(3989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4013), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157056,60 +160569,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56504] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [57629] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3687), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3691), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3693), 1, anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, ACTIONS(3901), 1, - anon_sym_CARET, - ACTIONS(3903), 1, + anon_sym_as, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3981), 1, + anon_sym_CARET, + ACTIONS(3983), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3985), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3987), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4015), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4123), 1, anon_sym_DOT_DOT, - ACTIONS(4355), 1, + ACTIONS(4437), 1, anon_sym_SEMI, - ACTIONS(3897), 2, + ACTIONS(3973), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(3991), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4125), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1863), 2, + STATE(1897), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(3989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4013), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157120,60 +160633,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56590] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [57715] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3687), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3691), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3693), 1, anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, ACTIONS(3901), 1, - anon_sym_CARET, - ACTIONS(3903), 1, + anon_sym_as, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3981), 1, + anon_sym_CARET, + ACTIONS(3983), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3985), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3987), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4015), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4123), 1, anon_sym_DOT_DOT, - ACTIONS(4357), 1, - anon_sym_SEMI, - ACTIONS(3897), 2, + ACTIONS(4439), 1, + anon_sym_RBRACK, + ACTIONS(3973), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(3991), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4125), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1864), 2, + STATE(1898), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(3989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4013), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157184,59 +160697,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56676] = 21, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [57801] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4131), 1, + ACTIONS(3687), 1, anon_sym_LBRACK, - ACTIONS(4133), 1, + ACTIONS(3691), 1, anon_sym_QMARK, - ACTIONS(4135), 1, + ACTIONS(3693), 1, anon_sym_DOT, - ACTIONS(4141), 1, - anon_sym_CARET, - ACTIONS(4143), 1, + ACTIONS(3901), 1, + anon_sym_as, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(4145), 1, + ACTIONS(3981), 1, + anon_sym_CARET, + ACTIONS(3983), 1, anon_sym_PIPE, - ACTIONS(4149), 1, + ACTIONS(3985), 1, + anon_sym_AMP_AMP, + ACTIONS(3987), 1, anon_sym_PIPE_PIPE, - ACTIONS(4157), 1, - anon_sym_as, - ACTIONS(4231), 1, + ACTIONS(4015), 1, anon_sym_EQ, - ACTIONS(4323), 1, + ACTIONS(4123), 1, anon_sym_DOT_DOT, - ACTIONS(4137), 2, + ACTIONS(4441), 1, + anon_sym_COMMA, + ACTIONS(3973), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4151), 2, + ACTIONS(3979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4155), 2, + ACTIONS(3991), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4171), 2, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - ACTIONS(4325), 2, + ACTIONS(4125), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1865), 2, + STATE(1899), 2, sym_line_comment, sym_block_comment, - ACTIONS(4139), 3, + ACTIONS(3975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4153), 4, + ACTIONS(3989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4229), 10, + ACTIONS(4013), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157247,60 +160761,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56760] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [57887] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3687), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3691), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3693), 1, anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, ACTIONS(3901), 1, - anon_sym_CARET, - ACTIONS(3903), 1, + anon_sym_as, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3981), 1, + anon_sym_CARET, + ACTIONS(3983), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3985), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3987), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4015), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4123), 1, anon_sym_DOT_DOT, - ACTIONS(4359), 1, - anon_sym_RBRACK, - ACTIONS(3897), 2, + ACTIONS(4443), 1, + anon_sym_SEMI, + ACTIONS(3973), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(3991), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4125), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1866), 2, + STATE(1900), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(3989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4013), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157311,60 +160825,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56846] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [57973] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3687), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3691), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3693), 1, anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, ACTIONS(3901), 1, - anon_sym_CARET, - ACTIONS(3903), 1, + anon_sym_as, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3981), 1, + anon_sym_CARET, + ACTIONS(3983), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3985), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3987), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4015), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4123), 1, anon_sym_DOT_DOT, - ACTIONS(4361), 1, - anon_sym_RBRACK, - ACTIONS(3897), 2, + ACTIONS(4303), 1, + anon_sym_SEMI, + ACTIONS(3973), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(3991), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4125), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1867), 2, + STATE(1901), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(3989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4013), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157375,60 +160889,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56932] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [58059] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3687), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3691), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3693), 1, anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, ACTIONS(3901), 1, - anon_sym_CARET, - ACTIONS(3903), 1, + anon_sym_as, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3981), 1, + anon_sym_CARET, + ACTIONS(3983), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3985), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3987), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4015), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4123), 1, anon_sym_DOT_DOT, - ACTIONS(4363), 1, + ACTIONS(4445), 1, anon_sym_SEMI, - ACTIONS(3897), 2, + ACTIONS(3973), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(3991), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4125), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1868), 2, + STATE(1902), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(3989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4013), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157439,60 +160953,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57018] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [58145] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3687), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3691), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3693), 1, anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, ACTIONS(3901), 1, - anon_sym_CARET, - ACTIONS(3903), 1, + anon_sym_as, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3981), 1, + anon_sym_CARET, + ACTIONS(3983), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3985), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3987), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4015), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4123), 1, anon_sym_DOT_DOT, - ACTIONS(4365), 1, - anon_sym_SEMI, - ACTIONS(3897), 2, + ACTIONS(4217), 1, + anon_sym_COMMA, + ACTIONS(3973), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(3991), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4125), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1869), 2, + STATE(1903), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(3989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4013), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157503,60 +161017,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57104] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [58231] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3687), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3691), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3693), 1, anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, ACTIONS(3901), 1, - anon_sym_CARET, - ACTIONS(3903), 1, + anon_sym_as, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3981), 1, + anon_sym_CARET, + ACTIONS(3983), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3985), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3987), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4015), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4123), 1, anon_sym_DOT_DOT, - ACTIONS(4367), 1, - anon_sym_SEMI, - ACTIONS(3897), 2, + ACTIONS(4447), 1, + anon_sym_RBRACK, + ACTIONS(3973), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(3991), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4125), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1870), 2, + STATE(1904), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(3989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4013), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157567,60 +161081,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57190] = 22, - ACTIONS(101), 1, + [58317] = 17, + ACTIONS(31), 1, + anon_sym_LT, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4277), 1, + sym_identifier, + ACTIONS(4279), 1, + anon_sym_LBRACE, + ACTIONS(4285), 1, + anon_sym_STAR, + ACTIONS(4289), 1, + anon_sym_COLON_COLON, + ACTIONS(4293), 1, + sym_metavariable, + ACTIONS(4449), 1, + anon_sym_RBRACE, + STATE(2461), 1, + sym_scoped_identifier, + STATE(3367), 1, + sym__use_clause, + STATE(3513), 1, + sym_generic_type_with_turbofish, + STATE(3650), 1, + sym_bracketed_type, + STATE(1905), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4291), 3, + sym_self, + sym_super, + sym_crate, + STATE(2850), 4, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(4287), 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, + [58393] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3687), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(3691), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(3693), 1, anon_sym_DOT, - ACTIONS(3675), 1, - anon_sym_as, ACTIONS(3901), 1, - anon_sym_CARET, - ACTIONS(3903), 1, + anon_sym_as, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(3981), 1, + anon_sym_CARET, + ACTIONS(3983), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3985), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(3987), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4015), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4123), 1, anon_sym_DOT_DOT, - ACTIONS(4369), 1, - anon_sym_COMMA, - ACTIONS(3897), 2, + ACTIONS(4451), 1, + anon_sym_RBRACK, + ACTIONS(3973), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(3979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(3991), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4125), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1871), 2, + STATE(1906), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(3989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4013), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157631,60 +161204,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57276] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [58479] = 21, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(4203), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(4209), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(4213), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(4215), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4249), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4251), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4253), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4329), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4333), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4423), 1, anon_sym_DOT_DOT, - ACTIONS(4371), 1, - anon_sym_SEMI, - ACTIONS(3897), 2, + ACTIONS(4205), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4211), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4259), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4363), 2, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, + ACTIONS(4425), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1872), 2, + STATE(1907), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4207), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4257), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4331), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157695,60 +161267,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57362] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [58563] = 22, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(4203), 1, anon_sym_LBRACK, - ACTIONS(3671), 1, + ACTIONS(4209), 1, anon_sym_QMARK, - ACTIONS(3673), 1, + ACTIONS(4213), 1, anon_sym_DOT, - ACTIONS(3675), 1, + ACTIONS(4215), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4249), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4251), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4253), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4317), 1, + anon_sym_EQ_GT, + ACTIONS(4329), 1, anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, + ACTIONS(4333), 1, anon_sym_EQ, - ACTIONS(4005), 1, + ACTIONS(4423), 1, anon_sym_DOT_DOT, - ACTIONS(4373), 1, - anon_sym_COMMA, - ACTIONS(3897), 2, + ACTIONS(4453), 1, + anon_sym_AMP_AMP, + ACTIONS(4205), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4211), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4259), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, + ACTIONS(4425), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1873), 2, + STATE(1908), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4207), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4257), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3929), 10, + ACTIONS(4331), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157759,119 +161331,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57448] = 17, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [58649] = 22, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4241), 1, - sym_identifier, - ACTIONS(4243), 1, - anon_sym_LBRACE, - ACTIONS(4247), 1, - anon_sym_STAR, - ACTIONS(4253), 1, - anon_sym_COLON_COLON, - ACTIONS(4257), 1, - sym_metavariable, - ACTIONS(4375), 1, - anon_sym_RBRACE, - STATE(2488), 1, - sym_scoped_identifier, - STATE(3073), 1, - sym__use_clause, - STATE(3374), 1, - sym_generic_type_with_turbofish, - STATE(3495), 1, - sym_bracketed_type, - STATE(1874), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4255), 3, - sym_self, - sym_super, - sym_crate, - STATE(2966), 4, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(4249), 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, - [57524] = 22, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4131), 1, + ACTIONS(3687), 1, anon_sym_LBRACK, - ACTIONS(4133), 1, + ACTIONS(3691), 1, anon_sym_QMARK, - ACTIONS(4135), 1, + ACTIONS(3693), 1, anon_sym_DOT, - ACTIONS(4141), 1, - anon_sym_CARET, - ACTIONS(4143), 1, + ACTIONS(3901), 1, + anon_sym_as, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(4145), 1, + ACTIONS(3981), 1, + anon_sym_CARET, + ACTIONS(3983), 1, anon_sym_PIPE, - ACTIONS(4149), 1, + ACTIONS(3985), 1, + anon_sym_AMP_AMP, + ACTIONS(3987), 1, anon_sym_PIPE_PIPE, - ACTIONS(4157), 1, - anon_sym_as, - ACTIONS(4181), 1, - anon_sym_EQ_GT, - ACTIONS(4231), 1, + ACTIONS(4015), 1, anon_sym_EQ, - ACTIONS(4323), 1, + ACTIONS(4123), 1, anon_sym_DOT_DOT, - ACTIONS(4377), 1, - anon_sym_AMP_AMP, - ACTIONS(4137), 2, + ACTIONS(4455), 1, + anon_sym_SEMI, + ACTIONS(3973), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4151), 2, + ACTIONS(3979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4155), 2, + ACTIONS(3991), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4325), 2, + ACTIONS(4125), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1875), 2, + STATE(1909), 2, sym_line_comment, sym_block_comment, - ACTIONS(4139), 3, + ACTIONS(3975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4153), 4, + ACTIONS(3989), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4229), 10, + ACTIONS(4013), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157882,101 +161395,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57610] = 16, - ACTIONS(29), 1, + [58735] = 16, + ACTIONS(31), 1, anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4241), 1, - sym_identifier, - ACTIONS(4243), 1, - anon_sym_LBRACE, - ACTIONS(4247), 1, - anon_sym_STAR, - ACTIONS(4253), 1, - anon_sym_COLON_COLON, - ACTIONS(4257), 1, - sym_metavariable, - STATE(2488), 1, - sym_scoped_identifier, - STATE(3374), 1, - sym_generic_type_with_turbofish, - STATE(3487), 1, - sym__use_clause, - STATE(3495), 1, - sym_bracketed_type, - STATE(1876), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4255), 3, - sym_self, - sym_super, - sym_crate, - STATE(2966), 4, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(4249), 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, - [57683] = 16, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4241), 1, + ACTIONS(4277), 1, sym_identifier, - ACTIONS(4243), 1, + ACTIONS(4279), 1, anon_sym_LBRACE, - ACTIONS(4247), 1, + ACTIONS(4285), 1, anon_sym_STAR, - ACTIONS(4253), 1, + ACTIONS(4289), 1, anon_sym_COLON_COLON, - ACTIONS(4257), 1, + ACTIONS(4293), 1, sym_metavariable, - STATE(2488), 1, + STATE(2461), 1, sym_scoped_identifier, - STATE(3348), 1, - sym__use_clause, - STATE(3374), 1, + STATE(3513), 1, sym_generic_type_with_turbofish, - STATE(3495), 1, + STATE(3520), 1, + sym__use_clause, + STATE(3650), 1, sym_bracketed_type, - STATE(1877), 2, + STATE(1910), 2, sym_line_comment, sym_block_comment, - ACTIONS(4255), 3, + ACTIONS(4291), 3, sym_self, sym_super, sym_crate, - STATE(2966), 4, + STATE(2850), 4, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(4249), 19, + ACTIONS(4287), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -157996,101 +161452,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [57756] = 16, - ACTIONS(29), 1, + [58808] = 16, + ACTIONS(31), 1, anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4241), 1, - sym_identifier, - ACTIONS(4243), 1, - anon_sym_LBRACE, - ACTIONS(4247), 1, - anon_sym_STAR, - ACTIONS(4253), 1, - anon_sym_COLON_COLON, - ACTIONS(4257), 1, - sym_metavariable, - STATE(2488), 1, - sym_scoped_identifier, - STATE(3374), 1, - sym_generic_type_with_turbofish, - STATE(3495), 1, - sym_bracketed_type, - STATE(3597), 1, - sym__use_clause, - STATE(1878), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4255), 3, - sym_self, - sym_super, - sym_crate, - STATE(2966), 4, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(4249), 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, - [57829] = 16, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4241), 1, + ACTIONS(4277), 1, sym_identifier, - ACTIONS(4243), 1, + ACTIONS(4279), 1, anon_sym_LBRACE, - ACTIONS(4247), 1, + ACTIONS(4285), 1, anon_sym_STAR, - ACTIONS(4253), 1, + ACTIONS(4289), 1, anon_sym_COLON_COLON, - ACTIONS(4257), 1, + ACTIONS(4293), 1, sym_metavariable, - STATE(2488), 1, + STATE(2461), 1, sym_scoped_identifier, - STATE(3073), 1, + STATE(3419), 1, sym__use_clause, - STATE(3374), 1, + STATE(3513), 1, sym_generic_type_with_turbofish, - STATE(3495), 1, + STATE(3650), 1, sym_bracketed_type, - STATE(1879), 2, + STATE(1911), 2, sym_line_comment, sym_block_comment, - ACTIONS(4255), 3, + ACTIONS(4291), 3, sym_self, sym_super, sym_crate, - STATE(2966), 4, + STATE(2850), 4, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(4249), 19, + ACTIONS(4287), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -158110,44 +161509,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [57902] = 16, - ACTIONS(29), 1, + [58881] = 16, + ACTIONS(31), 1, anon_sym_LT, - ACTIONS(101), 1, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4277), 1, + sym_identifier, + ACTIONS(4279), 1, + anon_sym_LBRACE, + ACTIONS(4285), 1, + anon_sym_STAR, + ACTIONS(4289), 1, + anon_sym_COLON_COLON, + ACTIONS(4293), 1, + sym_metavariable, + STATE(2461), 1, + sym_scoped_identifier, + STATE(3513), 1, + sym_generic_type_with_turbofish, + STATE(3521), 1, + sym__use_clause, + STATE(3650), 1, + sym_bracketed_type, + STATE(1912), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4291), 3, + sym_self, + sym_super, + sym_crate, + STATE(2850), 4, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(4287), 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, + [58954] = 16, + ACTIONS(31), 1, + anon_sym_LT, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4241), 1, + ACTIONS(4277), 1, sym_identifier, - ACTIONS(4243), 1, + ACTIONS(4279), 1, anon_sym_LBRACE, - ACTIONS(4247), 1, + ACTIONS(4285), 1, anon_sym_STAR, - ACTIONS(4253), 1, + ACTIONS(4289), 1, anon_sym_COLON_COLON, - ACTIONS(4257), 1, + ACTIONS(4293), 1, sym_metavariable, - STATE(2488), 1, + STATE(2461), 1, sym_scoped_identifier, - STATE(3328), 1, + STATE(3493), 1, sym__use_clause, - STATE(3374), 1, + STATE(3513), 1, sym_generic_type_with_turbofish, - STATE(3495), 1, + STATE(3650), 1, sym_bracketed_type, - STATE(1880), 2, + STATE(1913), 2, sym_line_comment, sym_block_comment, - ACTIONS(4255), 3, + ACTIONS(4291), 3, sym_self, sym_super, sym_crate, - STATE(2966), 4, + STATE(2850), 4, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(4249), 19, + ACTIONS(4287), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -158167,46 +161623,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [57975] = 17, - ACTIONS(29), 1, + [59027] = 16, + ACTIONS(31), 1, anon_sym_LT, - ACTIONS(101), 1, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4277), 1, + sym_identifier, + ACTIONS(4279), 1, + anon_sym_LBRACE, + ACTIONS(4285), 1, + anon_sym_STAR, + ACTIONS(4289), 1, + anon_sym_COLON_COLON, + ACTIONS(4293), 1, + sym_metavariable, + STATE(2461), 1, + sym_scoped_identifier, + STATE(3367), 1, + sym__use_clause, + STATE(3513), 1, + sym_generic_type_with_turbofish, + STATE(3650), 1, + sym_bracketed_type, + STATE(1914), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4291), 3, + sym_self, + sym_super, + sym_crate, + STATE(2850), 4, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(4287), 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, + [59100] = 17, + ACTIONS(31), 1, + anon_sym_LT, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3867), 1, + ACTIONS(3775), 1, anon_sym_where, - ACTIONS(4379), 1, + ACTIONS(4457), 1, sym_identifier, - ACTIONS(4383), 1, + ACTIONS(4461), 1, anon_sym_COLON_COLON, - ACTIONS(4389), 1, + ACTIONS(4467), 1, sym_metavariable, - STATE(3025), 1, + STATE(3062), 1, sym_scoped_type_identifier, - STATE(3297), 1, + STATE(3125), 1, sym_generic_type, - STATE(3369), 1, + STATE(3456), 1, sym_scoped_identifier, - STATE(3475), 1, + STATE(3569), 1, sym_generic_type_with_turbofish, - STATE(3501), 1, + STATE(3596), 1, sym_bracketed_type, - ACTIONS(4385), 2, + ACTIONS(4463), 2, anon_sym_default, anon_sym_union, - STATE(1881), 2, + STATE(1915), 2, sym_line_comment, sym_block_comment, - ACTIONS(3865), 3, + ACTIONS(3773), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4387), 3, + ACTIONS(4465), 3, sym_self, sym_super, sym_crate, - ACTIONS(4381), 17, + ACTIONS(4459), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -158224,46 +161737,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [58049] = 17, - ACTIONS(29), 1, + [59174] = 17, + ACTIONS(31), 1, anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3867), 1, + ACTIONS(3775), 1, anon_sym_where, - ACTIONS(4383), 1, + ACTIONS(4461), 1, anon_sym_COLON_COLON, - ACTIONS(4389), 1, + ACTIONS(4467), 1, sym_metavariable, - ACTIONS(4391), 1, + ACTIONS(4469), 1, sym_identifier, - STATE(3029), 1, + STATE(2829), 1, sym_scoped_type_identifier, - STATE(3306), 1, + STATE(3350), 1, sym_generic_type, - STATE(3369), 1, + STATE(3456), 1, sym_scoped_identifier, - STATE(3475), 1, + STATE(3569), 1, sym_generic_type_with_turbofish, - STATE(3501), 1, + STATE(3596), 1, sym_bracketed_type, - ACTIONS(4385), 2, + ACTIONS(4463), 2, anon_sym_default, anon_sym_union, - STATE(1882), 2, + STATE(1916), 2, sym_line_comment, sym_block_comment, - ACTIONS(3865), 3, + ACTIONS(3773), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4387), 3, + ACTIONS(4465), 3, sym_self, sym_super, sym_crate, - ACTIONS(4381), 17, + ACTIONS(4459), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -158281,46 +161794,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [58123] = 17, - ACTIONS(29), 1, + [59248] = 17, + ACTIONS(31), 1, anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3867), 1, + ACTIONS(3775), 1, anon_sym_where, - ACTIONS(4383), 1, + ACTIONS(4461), 1, anon_sym_COLON_COLON, - ACTIONS(4389), 1, + ACTIONS(4467), 1, sym_metavariable, - ACTIONS(4393), 1, + ACTIONS(4471), 1, sym_identifier, - STATE(2865), 1, + STATE(2930), 1, sym_scoped_type_identifier, - STATE(3043), 1, + STATE(3145), 1, sym_generic_type, - STATE(3369), 1, + STATE(3456), 1, sym_scoped_identifier, - STATE(3475), 1, + STATE(3569), 1, sym_generic_type_with_turbofish, - STATE(3501), 1, + STATE(3596), 1, sym_bracketed_type, - ACTIONS(4385), 2, + ACTIONS(4463), 2, anon_sym_default, anon_sym_union, - STATE(1883), 2, + STATE(1917), 2, sym_line_comment, sym_block_comment, - ACTIONS(3865), 3, + ACTIONS(3773), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4387), 3, + ACTIONS(4465), 3, sym_self, sym_super, sym_crate, - ACTIONS(4381), 17, + ACTIONS(4459), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -158338,46 +161851,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [58197] = 17, - ACTIONS(29), 1, + [59322] = 17, + ACTIONS(31), 1, anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3867), 1, + ACTIONS(3775), 1, anon_sym_where, - ACTIONS(4383), 1, + ACTIONS(4461), 1, anon_sym_COLON_COLON, - ACTIONS(4389), 1, + ACTIONS(4467), 1, sym_metavariable, - ACTIONS(4395), 1, + ACTIONS(4473), 1, sym_identifier, - STATE(2942), 1, + STATE(2979), 1, sym_scoped_type_identifier, - STATE(3227), 1, + STATE(3138), 1, sym_generic_type, - STATE(3369), 1, + STATE(3456), 1, sym_scoped_identifier, - STATE(3475), 1, + STATE(3569), 1, sym_generic_type_with_turbofish, - STATE(3501), 1, + STATE(3596), 1, sym_bracketed_type, - ACTIONS(4385), 2, + ACTIONS(4463), 2, anon_sym_default, anon_sym_union, - STATE(1884), 2, + STATE(1918), 2, sym_line_comment, sym_block_comment, - ACTIONS(3865), 3, + ACTIONS(3773), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4387), 3, + ACTIONS(4465), 3, sym_self, sym_super, sym_crate, - ACTIONS(4381), 17, + ACTIONS(4459), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -158395,46 +161908,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [58271] = 17, - ACTIONS(29), 1, + [59396] = 17, + ACTIONS(31), 1, anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3867), 1, + ACTIONS(3775), 1, anon_sym_where, - ACTIONS(4383), 1, + ACTIONS(4461), 1, anon_sym_COLON_COLON, - ACTIONS(4389), 1, + ACTIONS(4467), 1, sym_metavariable, - ACTIONS(4397), 1, + ACTIONS(4475), 1, sym_identifier, - STATE(2979), 1, + STATE(3004), 1, sym_scoped_type_identifier, - STATE(3095), 1, + STATE(3134), 1, sym_generic_type, - STATE(3369), 1, + STATE(3456), 1, sym_scoped_identifier, - STATE(3475), 1, + STATE(3569), 1, sym_generic_type_with_turbofish, - STATE(3501), 1, + STATE(3596), 1, sym_bracketed_type, - ACTIONS(4385), 2, + ACTIONS(4463), 2, anon_sym_default, anon_sym_union, - STATE(1885), 2, + STATE(1919), 2, sym_line_comment, sym_block_comment, - ACTIONS(3865), 3, + ACTIONS(3773), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4387), 3, + ACTIONS(4465), 3, sym_self, sym_super, sym_crate, - ACTIONS(4381), 17, + ACTIONS(4459), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -158452,46 +161965,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [58345] = 17, - ACTIONS(29), 1, + [59470] = 17, + ACTIONS(31), 1, anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3867), 1, + ACTIONS(3775), 1, anon_sym_where, - ACTIONS(4383), 1, + ACTIONS(4461), 1, anon_sym_COLON_COLON, - ACTIONS(4389), 1, + ACTIONS(4467), 1, sym_metavariable, - ACTIONS(4399), 1, + ACTIONS(4477), 1, sym_identifier, - STATE(3013), 1, + STATE(2795), 1, sym_scoped_type_identifier, - STATE(3287), 1, + STATE(3385), 1, sym_generic_type, - STATE(3369), 1, + STATE(3456), 1, sym_scoped_identifier, - STATE(3475), 1, + STATE(3569), 1, sym_generic_type_with_turbofish, - STATE(3501), 1, + STATE(3596), 1, sym_bracketed_type, - ACTIONS(4385), 2, + ACTIONS(4463), 2, anon_sym_default, anon_sym_union, - STATE(1886), 2, + STATE(1920), 2, sym_line_comment, sym_block_comment, - ACTIONS(3865), 3, + ACTIONS(3773), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4387), 3, + ACTIONS(4465), 3, sym_self, sym_super, sym_crate, - ACTIONS(4381), 17, + ACTIONS(4459), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -158509,46 +162022,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [58419] = 17, - ACTIONS(29), 1, + [59544] = 17, + ACTIONS(31), 1, anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3867), 1, + ACTIONS(3775), 1, anon_sym_where, - ACTIONS(4383), 1, + ACTIONS(4461), 1, anon_sym_COLON_COLON, - ACTIONS(4389), 1, + ACTIONS(4467), 1, sym_metavariable, - ACTIONS(4401), 1, + ACTIONS(4479), 1, sym_identifier, - STATE(3019), 1, + STATE(3059), 1, sym_scoped_type_identifier, - STATE(3292), 1, + STATE(3141), 1, sym_generic_type, - STATE(3369), 1, + STATE(3456), 1, sym_scoped_identifier, - STATE(3475), 1, + STATE(3569), 1, sym_generic_type_with_turbofish, - STATE(3501), 1, + STATE(3596), 1, sym_bracketed_type, - ACTIONS(4385), 2, + ACTIONS(4463), 2, anon_sym_default, anon_sym_union, - STATE(1887), 2, + STATE(1921), 2, sym_line_comment, sym_block_comment, - ACTIONS(3865), 3, + ACTIONS(3773), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4387), 3, + ACTIONS(4465), 3, sym_self, sym_super, sym_crate, - ACTIONS(4381), 17, + ACTIONS(4459), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -158566,46 +162079,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [58493] = 17, - ACTIONS(29), 1, + [59618] = 17, + ACTIONS(31), 1, anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3867), 1, + ACTIONS(3775), 1, anon_sym_where, - ACTIONS(4383), 1, + ACTIONS(4461), 1, anon_sym_COLON_COLON, - ACTIONS(4389), 1, + ACTIONS(4467), 1, sym_metavariable, - ACTIONS(4403), 1, + ACTIONS(4481), 1, sym_identifier, - STATE(3021), 1, + STATE(3091), 1, sym_scoped_type_identifier, - STATE(3294), 1, + STATE(3124), 1, sym_generic_type, - STATE(3369), 1, + STATE(3456), 1, sym_scoped_identifier, - STATE(3475), 1, + STATE(3569), 1, sym_generic_type_with_turbofish, - STATE(3501), 1, + STATE(3596), 1, sym_bracketed_type, - ACTIONS(4385), 2, + ACTIONS(4463), 2, anon_sym_default, anon_sym_union, - STATE(1888), 2, + STATE(1922), 2, sym_line_comment, sym_block_comment, - ACTIONS(3865), 3, + ACTIONS(3773), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4387), 3, + ACTIONS(4465), 3, sym_self, sym_super, sym_crate, - ACTIONS(4381), 17, + ACTIONS(4459), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -158623,19 +162136,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [58567] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [59692] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1889), 2, + STATE(1923), 2, sym_line_comment, sym_block_comment, - ACTIONS(4407), 3, + ACTIONS(4485), 3, anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(4405), 28, + ACTIONS(4483), 28, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -158664,19 +162177,19 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [58613] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [59738] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1890), 2, + STATE(1924), 2, sym_line_comment, sym_block_comment, - ACTIONS(4411), 3, + ACTIONS(4489), 3, anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(4409), 28, + ACTIONS(4487), 28, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -158705,19 +162218,19 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [58659] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [59784] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1891), 2, + STATE(1925), 2, sym_line_comment, sym_block_comment, - ACTIONS(4415), 3, + ACTIONS(4493), 3, anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(4413), 28, + ACTIONS(4491), 28, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -158746,35 +162259,35 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [58705] = 13, - ACTIONS(29), 1, + [59830] = 13, + ACTIONS(31), 1, anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2340), 1, + ACTIONS(1677), 1, anon_sym_COLON_COLON, - ACTIONS(4417), 1, + ACTIONS(4495), 1, sym_identifier, - ACTIONS(4423), 1, + ACTIONS(4501), 1, sym_metavariable, - STATE(2271), 1, + STATE(2274), 1, sym_scoped_identifier, - STATE(3324), 1, + STATE(3408), 1, sym_bracketed_type, - STATE(3336), 1, - sym_attribute, - STATE(3350), 1, + STATE(3436), 1, sym_generic_type_with_turbofish, - STATE(1892), 2, + STATE(3565), 1, + sym_attribute, + STATE(1926), 2, sym_line_comment, sym_block_comment, - ACTIONS(4421), 3, + ACTIONS(4499), 3, sym_self, sym_super, sym_crate, - ACTIONS(4419), 19, + ACTIONS(4497), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -158794,35 +162307,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [58766] = 13, - ACTIONS(29), 1, + [59891] = 13, + ACTIONS(31), 1, anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2340), 1, + ACTIONS(1677), 1, anon_sym_COLON_COLON, - ACTIONS(4417), 1, + ACTIONS(4495), 1, sym_identifier, - ACTIONS(4423), 1, + ACTIONS(4501), 1, sym_metavariable, - STATE(2271), 1, + STATE(2274), 1, sym_scoped_identifier, - STATE(3324), 1, + STATE(3408), 1, sym_bracketed_type, - STATE(3350), 1, + STATE(3436), 1, sym_generic_type_with_turbofish, - STATE(3468), 1, + STATE(3610), 1, sym_attribute, - STATE(1893), 2, + STATE(1927), 2, sym_line_comment, sym_block_comment, - ACTIONS(4421), 3, + ACTIONS(4499), 3, sym_self, sym_super, sym_crate, - ACTIONS(4419), 19, + ACTIONS(4497), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -158842,35 +162355,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [58827] = 13, - ACTIONS(29), 1, + [59952] = 13, + ACTIONS(31), 1, anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2340), 1, + ACTIONS(1677), 1, anon_sym_COLON_COLON, - ACTIONS(4417), 1, + ACTIONS(4495), 1, sym_identifier, - ACTIONS(4423), 1, + ACTIONS(4501), 1, sym_metavariable, - STATE(2271), 1, + STATE(2274), 1, sym_scoped_identifier, - STATE(3324), 1, + STATE(3408), 1, sym_bracketed_type, - STATE(3350), 1, - sym_generic_type_with_turbofish, - STATE(3401), 1, + STATE(3433), 1, sym_attribute, - STATE(1894), 2, + STATE(3436), 1, + sym_generic_type_with_turbofish, + STATE(1928), 2, sym_line_comment, sym_block_comment, - ACTIONS(4421), 3, + ACTIONS(4499), 3, sym_self, sym_super, sym_crate, - ACTIONS(4419), 19, + ACTIONS(4497), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -158890,35 +162403,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [58888] = 13, - ACTIONS(29), 1, + [60013] = 13, + ACTIONS(31), 1, anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2340), 1, + ACTIONS(1677), 1, anon_sym_COLON_COLON, - ACTIONS(4417), 1, + ACTIONS(4495), 1, sym_identifier, - ACTIONS(4423), 1, + ACTIONS(4501), 1, sym_metavariable, - STATE(2271), 1, + STATE(2274), 1, sym_scoped_identifier, - STATE(3324), 1, - sym_bracketed_type, - STATE(3350), 1, - sym_generic_type_with_turbofish, STATE(3408), 1, + sym_bracketed_type, + STATE(3422), 1, sym_attribute, - STATE(1895), 2, + STATE(3436), 1, + sym_generic_type_with_turbofish, + STATE(1929), 2, sym_line_comment, sym_block_comment, - ACTIONS(4421), 3, + ACTIONS(4499), 3, sym_self, sym_super, sym_crate, - ACTIONS(4419), 19, + ACTIONS(4497), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -158938,35 +162451,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [58949] = 13, - ACTIONS(29), 1, + [60074] = 13, + ACTIONS(31), 1, anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2340), 1, + ACTIONS(1677), 1, anon_sym_COLON_COLON, - ACTIONS(4417), 1, + ACTIONS(4495), 1, sym_identifier, - ACTIONS(4423), 1, + ACTIONS(4501), 1, sym_metavariable, - STATE(2271), 1, + STATE(2274), 1, sym_scoped_identifier, - STATE(3324), 1, + STATE(3408), 1, sym_bracketed_type, - STATE(3350), 1, + STATE(3436), 1, sym_generic_type_with_turbofish, - STATE(3392), 1, + STATE(3512), 1, sym_attribute, - STATE(1896), 2, + STATE(1930), 2, sym_line_comment, sym_block_comment, - ACTIONS(4421), 3, + ACTIONS(4499), 3, sym_self, sym_super, sym_crate, - ACTIONS(4419), 19, + ACTIONS(4497), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -158986,35 +162499,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [59010] = 13, - ACTIONS(29), 1, + [60135] = 13, + ACTIONS(31), 1, anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2340), 1, + ACTIONS(1677), 1, anon_sym_COLON_COLON, - ACTIONS(4417), 1, + ACTIONS(4495), 1, sym_identifier, - ACTIONS(4423), 1, + ACTIONS(4501), 1, sym_metavariable, - STATE(2271), 1, + STATE(2274), 1, sym_scoped_identifier, - STATE(3321), 1, - sym_attribute, - STATE(3324), 1, + STATE(3408), 1, sym_bracketed_type, - STATE(3350), 1, + STATE(3436), 1, sym_generic_type_with_turbofish, - STATE(1897), 2, + STATE(3585), 1, + sym_attribute, + STATE(1931), 2, sym_line_comment, sym_block_comment, - ACTIONS(4421), 3, + ACTIONS(4499), 3, sym_self, sym_super, sym_crate, - ACTIONS(4419), 19, + ACTIONS(4497), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -159034,35 +162547,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [59071] = 13, - ACTIONS(29), 1, + [60196] = 13, + ACTIONS(31), 1, anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2340), 1, + ACTIONS(1677), 1, anon_sym_COLON_COLON, - ACTIONS(4417), 1, + ACTIONS(4495), 1, sym_identifier, - ACTIONS(4423), 1, + ACTIONS(4501), 1, sym_metavariable, - STATE(2271), 1, + STATE(2274), 1, sym_scoped_identifier, - STATE(3324), 1, + STATE(3408), 1, sym_bracketed_type, - STATE(3350), 1, + STATE(3436), 1, sym_generic_type_with_turbofish, - STATE(3411), 1, + STATE(3484), 1, sym_attribute, - STATE(1898), 2, + STATE(1932), 2, sym_line_comment, sym_block_comment, - ACTIONS(4421), 3, + ACTIONS(4499), 3, sym_self, sym_super, sym_crate, - ACTIONS(4419), 19, + ACTIONS(4497), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -159082,35 +162595,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [59132] = 13, - ACTIONS(29), 1, + [60257] = 13, + ACTIONS(31), 1, anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2340), 1, + ACTIONS(1677), 1, anon_sym_COLON_COLON, - ACTIONS(4417), 1, + ACTIONS(4495), 1, sym_identifier, - ACTIONS(4423), 1, + ACTIONS(4501), 1, sym_metavariable, - STATE(2271), 1, + STATE(2274), 1, sym_scoped_identifier, - STATE(3324), 1, + STATE(3408), 1, sym_bracketed_type, - STATE(3326), 1, - sym_attribute, - STATE(3350), 1, + STATE(3436), 1, sym_generic_type_with_turbofish, - STATE(1899), 2, + STATE(3486), 1, + sym_attribute, + STATE(1933), 2, sym_line_comment, sym_block_comment, - ACTIONS(4421), 3, + ACTIONS(4499), 3, sym_self, sym_super, sym_crate, - ACTIONS(4419), 19, + ACTIONS(4497), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -159130,33 +162643,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [59193] = 12, - ACTIONS(29), 1, + [60318] = 12, + ACTIONS(31), 1, anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4425), 1, + ACTIONS(4503), 1, sym_identifier, - ACTIONS(4429), 1, + ACTIONS(4507), 1, anon_sym_COLON_COLON, - ACTIONS(4433), 1, + ACTIONS(4511), 1, sym_metavariable, - STATE(3107), 1, + STATE(3285), 1, sym_scoped_identifier, - STATE(3374), 1, + STATE(3513), 1, sym_generic_type_with_turbofish, - STATE(3495), 1, + STATE(3650), 1, sym_bracketed_type, - STATE(1900), 2, + STATE(1934), 2, sym_line_comment, sym_block_comment, - ACTIONS(4431), 3, + ACTIONS(4509), 3, sym_self, sym_super, sym_crate, - ACTIONS(4427), 19, + ACTIONS(4505), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -159176,33 +162689,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [59251] = 12, - ACTIONS(29), 1, + [60376] = 12, + ACTIONS(31), 1, anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4429), 1, + ACTIONS(4507), 1, anon_sym_COLON_COLON, - ACTIONS(4435), 1, + ACTIONS(4513), 1, sym_identifier, - ACTIONS(4441), 1, + ACTIONS(4519), 1, sym_metavariable, - STATE(3209), 1, + STATE(3101), 1, sym_scoped_identifier, - STATE(3374), 1, + STATE(3513), 1, sym_generic_type_with_turbofish, - STATE(3495), 1, + STATE(3650), 1, sym_bracketed_type, - STATE(1901), 2, + STATE(1935), 2, sym_line_comment, sym_block_comment, - ACTIONS(4439), 3, + ACTIONS(4517), 3, sym_self, sym_super, sym_crate, - ACTIONS(4437), 19, + ACTIONS(4515), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -159222,29 +162735,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [59309] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [60434] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(771), 1, + ACTIONS(922), 1, anon_sym_DOT_DOT, - STATE(1902), 2, + STATE(1936), 2, sym_line_comment, sym_block_comment, - ACTIONS(773), 20, + ACTIONS(924), 20, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_COLON, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, anon_sym_async, anon_sym_const, anon_sym_default, @@ -159253,66 +162766,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, anon_sym_else, anon_sym_in, - [59345] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [60470] = 11, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3245), 1, + ACTIONS(3323), 1, anon_sym_COLON, - ACTIONS(4443), 1, + ACTIONS(4521), 1, anon_sym_LPAREN, - ACTIONS(4445), 1, + ACTIONS(4523), 1, anon_sym_BANG, - ACTIONS(4447), 1, + ACTIONS(4525), 1, anon_sym_COLON_COLON, - ACTIONS(4449), 1, + ACTIONS(4527), 1, anon_sym_LT2, - STATE(1931), 1, + STATE(1967), 1, sym_type_arguments, - STATE(1945), 1, + STATE(1994), 1, sym_parameters, - STATE(1903), 2, + STATE(1937), 2, sym_line_comment, sym_block_comment, - ACTIONS(3241), 14, + ACTIONS(3319), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, - anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, anon_sym_where, anon_sym_else, - [59393] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [60518] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(753), 1, + ACTIONS(956), 1, anon_sym_DOT_DOT, - STATE(1904), 2, + STATE(1938), 2, sym_line_comment, sym_block_comment, - ACTIONS(755), 20, + ACTIONS(958), 20, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_COLON, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, anon_sym_async, anon_sym_const, anon_sym_default, @@ -159321,534 +162834,660 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, anon_sym_else, anon_sym_in, - [59429] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [60554] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3261), 1, + ACTIONS(3383), 1, anon_sym_COLON, - ACTIONS(4443), 1, - anon_sym_LPAREN, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4451), 1, + ACTIONS(3387), 2, + anon_sym_BANG, anon_sym_COLON_COLON, - STATE(1931), 1, - sym_type_arguments, - STATE(1945), 1, - sym_parameters, - STATE(1905), 2, + STATE(1939), 2, sym_line_comment, sym_block_comment, - ACTIONS(3259), 14, + ACTIONS(3381), 17, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, - anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, + anon_sym_for, anon_sym_where, anon_sym_else, - [59474] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_LT2, + [60591] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3269), 1, + ACTIONS(3351), 1, anon_sym_COLON, - ACTIONS(3273), 2, + ACTIONS(3355), 2, anon_sym_BANG, anon_sym_COLON_COLON, - STATE(1906), 2, + STATE(1940), 2, sym_line_comment, sym_block_comment, - ACTIONS(3267), 17, + ACTIONS(3349), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, - anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, anon_sym_for, anon_sym_where, anon_sym_else, anon_sym_LT2, - [59511] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [60628] = 10, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3255), 1, + ACTIONS(3333), 1, anon_sym_COLON, - ACTIONS(4443), 1, + ACTIONS(4521), 1, anon_sym_LPAREN, - ACTIONS(4449), 1, + ACTIONS(4527), 1, anon_sym_LT2, - ACTIONS(4451), 1, + ACTIONS(4529), 1, anon_sym_COLON_COLON, - STATE(1931), 1, + STATE(1967), 1, sym_type_arguments, - STATE(1945), 1, + STATE(1994), 1, sym_parameters, - STATE(1907), 2, + STATE(1941), 2, sym_line_comment, sym_block_comment, - ACTIONS(3253), 14, + ACTIONS(3331), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, - anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, anon_sym_where, anon_sym_else, - [59556] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [60673] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3293), 1, + ACTIONS(3371), 1, anon_sym_COLON, - ACTIONS(3297), 2, + ACTIONS(3375), 2, anon_sym_BANG, anon_sym_COLON_COLON, - STATE(1908), 2, + STATE(1942), 2, sym_line_comment, sym_block_comment, - ACTIONS(3291), 17, + ACTIONS(3369), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, - anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, anon_sym_for, anon_sym_where, anon_sym_else, anon_sym_LT2, - [59593] = 6, - ACTIONS(101), 1, + [60710] = 10, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3339), 1, + anon_sym_COLON, + ACTIONS(4521), 1, + anon_sym_LPAREN, + ACTIONS(4527), 1, + anon_sym_LT2, + ACTIONS(4529), 1, + anon_sym_COLON_COLON, + STATE(1967), 1, + sym_type_arguments, + STATE(1994), 1, + sym_parameters, + STATE(1943), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3337), 14, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_where, + anon_sym_else, + [60755] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3309), 1, + ACTIONS(3363), 1, anon_sym_COLON, - ACTIONS(3313), 2, + ACTIONS(3367), 2, anon_sym_BANG, anon_sym_COLON_COLON, - STATE(1909), 2, + STATE(1944), 2, sym_line_comment, sym_block_comment, - ACTIONS(3307), 17, + ACTIONS(3361), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, - anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, anon_sym_for, anon_sym_where, anon_sym_else, anon_sym_LT2, - [59630] = 14, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [60792] = 14, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4445), 1, + ACTIONS(4523), 1, anon_sym_BANG, - ACTIONS(4449), 1, + ACTIONS(4527), 1, anon_sym_LT2, - ACTIONS(4455), 1, + ACTIONS(4533), 1, anon_sym_LPAREN, - ACTIONS(4457), 1, + ACTIONS(4535), 1, anon_sym_LBRACE, - ACTIONS(4459), 1, + ACTIONS(4537), 1, anon_sym_COLON, - ACTIONS(4461), 1, + ACTIONS(4539), 1, anon_sym_AT, - ACTIONS(4463), 1, + ACTIONS(4541), 1, anon_sym_DOT_DOT, - ACTIONS(4467), 1, + ACTIONS(4545), 1, anon_sym_COLON_COLON, - STATE(1931), 1, + STATE(1967), 1, sym_type_arguments, - ACTIONS(4465), 2, + ACTIONS(4543), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1910), 2, + STATE(1945), 2, sym_line_comment, sym_block_comment, - ACTIONS(4453), 9, + ACTIONS(4531), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_PIPE, anon_sym_EQ, - anon_sym_COMMA, anon_sym_else, anon_sym_in, - [59683] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [60845] = 10, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3265), 1, + ACTIONS(3343), 1, anon_sym_COLON, - ACTIONS(4443), 1, + ACTIONS(4521), 1, anon_sym_LPAREN, - ACTIONS(4449), 1, + ACTIONS(4527), 1, anon_sym_LT2, - ACTIONS(4451), 1, + ACTIONS(4529), 1, anon_sym_COLON_COLON, - STATE(1931), 1, + STATE(1967), 1, sym_type_arguments, - STATE(1945), 1, + STATE(1994), 1, sym_parameters, - STATE(1911), 2, + STATE(1946), 2, sym_line_comment, sym_block_comment, - ACTIONS(3263), 14, + ACTIONS(3341), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, - anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, anon_sym_where, anon_sym_else, - [59728] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [60890] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3277), 1, - anon_sym_COLON, - ACTIONS(3281), 2, - anon_sym_BANG, - anon_sym_COLON_COLON, - STATE(1912), 2, + ACTIONS(4521), 1, + anon_sym_LPAREN, + ACTIONS(4527), 1, + anon_sym_LT2, + STATE(1968), 1, + sym_type_arguments, + STATE(1987), 1, + sym_parameters, + STATE(1947), 2, sym_line_comment, sym_block_comment, - ACTIONS(3275), 17, + ACTIONS(3377), 15, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, - anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, - anon_sym_for, anon_sym_where, anon_sym_else, - anon_sym_LT2, - [59765] = 6, - ACTIONS(101), 1, + [60930] = 8, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4521), 1, + anon_sym_LPAREN, + ACTIONS(4527), 1, + anon_sym_LT2, + STATE(1968), 1, + sym_type_arguments, + STATE(1987), 1, + sym_parameters, + STATE(1948), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3345), 15, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_where, + anon_sym_else, + [60970] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3295), 2, + ACTIONS(3373), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(1913), 2, + STATE(1949), 2, sym_line_comment, sym_block_comment, - ACTIONS(3291), 3, + ACTIONS(3369), 3, anon_sym_LBRACE, anon_sym_for, anon_sym_LT2, - ACTIONS(3297), 14, + ACTIONS(3375), 14, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_BANG, anon_sym_PIPE, anon_sym_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_else, anon_sym_in, - [59801] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [61006] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, + ACTIONS(4521), 1, anon_sym_LPAREN, - ACTIONS(4449), 1, + ACTIONS(4527), 1, anon_sym_LT2, - STATE(1933), 1, + STATE(1968), 1, sym_type_arguments, - STATE(1947), 1, + STATE(1987), 1, sym_parameters, - STATE(1914), 2, + STATE(1950), 2, sym_line_comment, sym_block_comment, - ACTIONS(3287), 15, + ACTIONS(3357), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_COLON, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, - anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, anon_sym_where, anon_sym_else, - [59841] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [61046] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3271), 2, + ACTIONS(3365), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(1915), 2, + STATE(1951), 2, sym_line_comment, sym_block_comment, - ACTIONS(3267), 3, + ACTIONS(3361), 3, anon_sym_LBRACE, anon_sym_for, anon_sym_LT2, - ACTIONS(3273), 14, + ACTIONS(3367), 14, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_BANG, anon_sym_PIPE, anon_sym_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_else, anon_sym_in, - [59877] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [61082] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, - anon_sym_LPAREN, - ACTIONS(4449), 1, - anon_sym_LT2, - STATE(1933), 1, - sym_type_arguments, - STATE(1947), 1, - sym_parameters, - STATE(1916), 2, + ACTIONS(3353), 2, + anon_sym_COLON, + anon_sym_DOT_DOT, + STATE(1952), 2, sym_line_comment, sym_block_comment, - ACTIONS(3283), 15, + ACTIONS(3349), 3, + anon_sym_LBRACE, + anon_sym_for, + anon_sym_LT2, + ACTIONS(3355), 14, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_BANG, anon_sym_PIPE, anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_where, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, anon_sym_else, - [59917] = 8, - ACTIONS(101), 1, + anon_sym_in, + [61118] = 6, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3385), 2, + anon_sym_COLON, + anon_sym_DOT_DOT, + STATE(1953), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3381), 3, + anon_sym_LBRACE, + anon_sym_for, + anon_sym_LT2, + ACTIONS(3387), 14, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_else, + anon_sym_in, + [61154] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, + ACTIONS(4521), 1, anon_sym_LPAREN, - ACTIONS(4449), 1, + ACTIONS(4527), 1, anon_sym_LT2, - STATE(1933), 1, + STATE(1968), 1, sym_type_arguments, - STATE(1947), 1, + STATE(1987), 1, sym_parameters, - STATE(1917), 2, + STATE(1954), 2, sym_line_comment, sym_block_comment, - ACTIONS(3303), 15, + ACTIONS(3389), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_COLON, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, - anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, anon_sym_where, anon_sym_else, - [59957] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [61194] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3279), 2, + ACTIONS(3353), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(1918), 2, + STATE(1955), 2, sym_line_comment, sym_block_comment, - ACTIONS(3275), 3, - anon_sym_LBRACE, - anon_sym_for, - anon_sym_LT2, - ACTIONS(3281), 14, + ACTIONS(3355), 16, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_BANG, anon_sym_PIPE, anon_sym_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_else, anon_sym_in, - [59993] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [61227] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3311), 2, - anon_sym_COLON, - anon_sym_DOT_DOT, - STATE(1919), 2, + STATE(1956), 2, sym_line_comment, sym_block_comment, - ACTIONS(3307), 3, - anon_sym_LBRACE, - anon_sym_for, - anon_sym_LT2, - ACTIONS(3313), 14, + ACTIONS(3369), 18, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_BANG, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, + anon_sym_GT, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_for, + anon_sym_where, anon_sym_else, - anon_sym_in, - [60029] = 8, - ACTIONS(101), 1, + anon_sym_LT2, + [61258] = 20, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4547), 1, + anon_sym_macro, + ACTIONS(4551), 1, + anon_sym_const, + ACTIONS(4553), 1, + anon_sym_enum, + ACTIONS(4555), 1, + anon_sym_fn, + ACTIONS(4557), 1, + anon_sym_mod, + ACTIONS(4559), 1, + anon_sym_static, + ACTIONS(4561), 1, + anon_sym_struct, + ACTIONS(4563), 1, + anon_sym_trait, + ACTIONS(4565), 1, + anon_sym_type, + ACTIONS(4567), 1, + anon_sym_union, + ACTIONS(4569), 1, + anon_sym_unsafe, + ACTIONS(4571), 1, + anon_sym_use, + ACTIONS(4573), 1, + anon_sym_extern, + STATE(2205), 1, + sym_extern_modifier, + STATE(2255), 1, + aux_sym_function_modifiers_repeat1, + STATE(3494), 1, + sym_function_modifiers, + ACTIONS(4549), 2, + anon_sym_async, + anon_sym_default, + STATE(1957), 2, + sym_line_comment, + sym_block_comment, + [61321] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, - anon_sym_LPAREN, - ACTIONS(4449), 1, - anon_sym_LT2, - STATE(1933), 1, - sym_type_arguments, - STATE(1947), 1, - sym_parameters, - STATE(1920), 2, + ACTIONS(3551), 1, + anon_sym_COLON, + STATE(1958), 2, sym_line_comment, sym_block_comment, - ACTIONS(3299), 15, + ACTIONS(3549), 17, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COLON, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, - anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, + anon_sym_for, anon_sym_where, anon_sym_else, - [60069] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [61354] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3295), 2, + ACTIONS(3373), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(1921), 2, + STATE(1959), 2, sym_line_comment, sym_block_comment, - ACTIONS(3297), 16, + ACTIONS(3375), 16, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -159856,83 +163495,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_BANG, anon_sym_PIPE, anon_sym_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_else, anon_sym_in, - [60102] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [61387] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3406), 1, + ACTIONS(3607), 1, anon_sym_COLON, - STATE(1922), 2, + STATE(1960), 2, sym_line_comment, sym_block_comment, - ACTIONS(3404), 17, + ACTIONS(3605), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, - anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, anon_sym_for, anon_sym_where, anon_sym_else, - [60135] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [61420] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3410), 1, + ACTIONS(3486), 1, anon_sym_COLON, - STATE(1923), 2, + STATE(1961), 2, sym_line_comment, sym_block_comment, - ACTIONS(3408), 17, + ACTIONS(3484), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, - anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, anon_sym_for, anon_sym_where, anon_sym_else, - [60168] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [61453] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3279), 2, + ACTIONS(3365), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(1924), 2, + STATE(1962), 2, sym_line_comment, sym_block_comment, - ACTIONS(3281), 16, + ACTIONS(3367), 16, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -159940,27 +163579,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_BANG, anon_sym_PIPE, anon_sym_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_else, anon_sym_in, - [60201] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [61486] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3311), 2, + ACTIONS(3385), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(1925), 2, + STATE(1963), 2, sym_line_comment, sym_block_comment, - ACTIONS(3313), 16, + ACTIONS(3387), 16, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -159968,1941 +163607,1876 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_BANG, anon_sym_PIPE, anon_sym_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_else, anon_sym_in, - [60234] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [61519] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1926), 2, + ACTIONS(3526), 1, + anon_sym_COLON, + STATE(1964), 2, sym_line_comment, sym_block_comment, - ACTIONS(3307), 18, + ACTIONS(3524), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COLON, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, - anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, anon_sym_for, anon_sym_where, anon_sym_else, - anon_sym_LT2, - [60265] = 5, - ACTIONS(101), 1, + [61552] = 20, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4575), 1, + anon_sym_macro, + ACTIONS(4577), 1, + anon_sym_const, + ACTIONS(4579), 1, + anon_sym_enum, + ACTIONS(4581), 1, + anon_sym_fn, + ACTIONS(4583), 1, + anon_sym_mod, + ACTIONS(4585), 1, + anon_sym_static, + ACTIONS(4587), 1, + anon_sym_struct, + ACTIONS(4589), 1, + anon_sym_trait, + ACTIONS(4591), 1, + anon_sym_type, + ACTIONS(4593), 1, + anon_sym_union, + ACTIONS(4595), 1, + anon_sym_unsafe, + ACTIONS(4597), 1, + anon_sym_use, + ACTIONS(4599), 1, + anon_sym_extern, + STATE(2190), 1, + sym_extern_modifier, + STATE(2255), 1, + aux_sym_function_modifiers_repeat1, + STATE(3697), 1, + sym_function_modifiers, + ACTIONS(4549), 2, + anon_sym_async, + anon_sym_default, + STATE(1965), 2, + sym_line_comment, + sym_block_comment, + [61615] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3350), 1, + ACTIONS(3542), 1, anon_sym_COLON, - STATE(1927), 2, + STATE(1966), 2, sym_line_comment, sym_block_comment, - ACTIONS(3348), 17, + ACTIONS(3540), 16, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, - anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, anon_sym_for, anon_sym_where, anon_sym_else, - [60298] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [61647] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3463), 1, + ACTIONS(3534), 1, anon_sym_COLON, - STATE(1928), 2, + STATE(1967), 2, sym_line_comment, sym_block_comment, - ACTIONS(3461), 17, + ACTIONS(3532), 16, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, - anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, anon_sym_for, anon_sym_where, anon_sym_else, - [60331] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [61679] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3271), 2, - anon_sym_COLON, - anon_sym_DOT_DOT, - STATE(1929), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3273), 16, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_in, - [60364] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3354), 1, + ACTIONS(3530), 1, anon_sym_COLON, - STATE(1930), 2, + STATE(1968), 2, sym_line_comment, sym_block_comment, - ACTIONS(3352), 16, + ACTIONS(3528), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, - anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, anon_sym_for, anon_sym_where, anon_sym_else, - [60396] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [61711] = 11, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3459), 1, + ACTIONS(4527), 1, + anon_sym_LT2, + ACTIONS(4603), 1, anon_sym_COLON, - STATE(1931), 2, + ACTIONS(4605), 1, + anon_sym_BANG, + ACTIONS(4607), 1, + anon_sym_DOT_DOT, + ACTIONS(4611), 1, + anon_sym_COLON_COLON, + STATE(1966), 1, + sym_type_arguments, + ACTIONS(4609), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1969), 2, sym_line_comment, sym_block_comment, - ACTIONS(3457), 16, + ACTIONS(4601), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_PLUS, + anon_sym_COMMA, anon_sym_PIPE, anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_for, - anon_sym_where, anon_sym_else, - [60428] = 19, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_in, + [61755] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4471), 1, + ACTIONS(4613), 1, + anon_sym_LPAREN, + STATE(1970), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4055), 16, + anon_sym_macro, + anon_sym_async, anon_sym_const, - ACTIONS(4473), 1, + anon_sym_default, anon_sym_enum, - ACTIONS(4475), 1, anon_sym_fn, - ACTIONS(4477), 1, anon_sym_mod, - ACTIONS(4479), 1, anon_sym_static, - ACTIONS(4481), 1, anon_sym_struct, - ACTIONS(4483), 1, anon_sym_trait, - ACTIONS(4485), 1, anon_sym_type, - ACTIONS(4487), 1, anon_sym_union, - ACTIONS(4489), 1, anon_sym_unsafe, - ACTIONS(4491), 1, anon_sym_use, - ACTIONS(4493), 1, anon_sym_extern, - STATE(2133), 1, - sym_extern_modifier, - STATE(2206), 1, - aux_sym_function_modifiers_repeat1, - STATE(3407), 1, - sym_function_modifiers, - ACTIONS(4469), 2, - anon_sym_async, - anon_sym_default, - STATE(1932), 2, + sym_identifier, + [61787] = 12, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4527), 1, + anon_sym_LT2, + ACTIONS(4603), 1, + anon_sym_COLON, + ACTIONS(4605), 1, + anon_sym_BANG, + ACTIONS(4607), 1, + anon_sym_DOT_DOT, + ACTIONS(4615), 1, + anon_sym_COLON_COLON, + STATE(1966), 1, + sym_type_arguments, + ACTIONS(4609), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1971), 2, sym_line_comment, sym_block_comment, - [60488] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4601), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_PIPE, + ACTIONS(3401), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [61833] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3471), 1, - anon_sym_COLON, - STATE(1933), 2, + STATE(1972), 2, sym_line_comment, sym_block_comment, - ACTIONS(3469), 16, + ACTIONS(3561), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, - anon_sym_COMMA, - anon_sym_COLON_COLON, + anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_as, - anon_sym_for, anon_sym_where, anon_sym_else, - [60520] = 19, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [61862] = 16, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4495), 1, - anon_sym_const, - ACTIONS(4497), 1, - anon_sym_enum, - ACTIONS(4499), 1, - anon_sym_fn, - ACTIONS(4501), 1, - anon_sym_mod, - ACTIONS(4503), 1, - anon_sym_static, - ACTIONS(4505), 1, - anon_sym_struct, - ACTIONS(4507), 1, - anon_sym_trait, - ACTIONS(4509), 1, - anon_sym_type, - ACTIONS(4511), 1, - anon_sym_union, - ACTIONS(4513), 1, - anon_sym_unsafe, - ACTIONS(4515), 1, - anon_sym_use, - ACTIONS(4517), 1, - anon_sym_extern, - STATE(2175), 1, - sym_extern_modifier, - STATE(2206), 1, - aux_sym_function_modifiers_repeat1, - STATE(3600), 1, - sym_function_modifiers, - ACTIONS(4469), 2, - anon_sym_async, - anon_sym_default, - STATE(1934), 2, - sym_line_comment, - sym_block_comment, - [60580] = 11, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4521), 1, - anon_sym_COLON, ACTIONS(4523), 1, anon_sym_BANG, - ACTIONS(4525), 1, + ACTIONS(4527), 1, + anon_sym_LT2, + ACTIONS(4535), 1, + anon_sym_LBRACE, + ACTIONS(4539), 1, + anon_sym_AT, + ACTIONS(4541), 1, anon_sym_DOT_DOT, - ACTIONS(4529), 1, + ACTIONS(4617), 1, + anon_sym_LPAREN, + ACTIONS(4619), 1, + anon_sym_RBRACK, + ACTIONS(4622), 1, anon_sym_COLON_COLON, - STATE(1930), 1, + STATE(1967), 1, sym_type_arguments, - ACTIONS(4527), 2, + STATE(1994), 1, + sym_parameters, + ACTIONS(3319), 2, + anon_sym_SEMI, + anon_sym_PLUS, + ACTIONS(4531), 2, + anon_sym_COMMA, + anon_sym_PIPE, + ACTIONS(4543), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1935), 2, + STATE(1973), 2, + sym_line_comment, + sym_block_comment, + [61915] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3379), 1, + anon_sym_COLON, + ACTIONS(4624), 1, + anon_sym_COLON_COLON, + STATE(1974), 2, sym_line_comment, sym_block_comment, - ACTIONS(4519), 9, + ACTIONS(3377), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, - anon_sym_COMMA, + anon_sym_GT, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_where, anon_sym_else, - anon_sym_in, - [60624] = 12, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [61948] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4521), 1, - anon_sym_COLON, - ACTIONS(4523), 1, - anon_sym_BANG, - ACTIONS(4525), 1, - anon_sym_DOT_DOT, - ACTIONS(4531), 1, - anon_sym_COLON_COLON, - STATE(1930), 1, - sym_type_arguments, - ACTIONS(4527), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1936), 2, + STATE(1975), 2, sym_line_comment, sym_block_comment, - ACTIONS(4519), 3, + ACTIONS(3480), 16, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_COMMA, - ACTIONS(3323), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [60670] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_DASH_GT, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_where, + anon_sym_else, + [61977] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4523), 1, - anon_sym_BANG, - ACTIONS(4525), 1, - anon_sym_DOT_DOT, - ACTIONS(4533), 1, + ACTIONS(4626), 1, anon_sym_COLON_COLON, - STATE(1930), 1, - sym_type_arguments, - ACTIONS(4527), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1937), 2, + STATE(1976), 2, sym_line_comment, sym_block_comment, - ACTIONS(4519), 3, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_COMMA, - ACTIONS(3323), 6, + ACTIONS(4057), 15, + anon_sym_macro, 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, - [60713] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [62008] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3301), 1, + ACTIONS(3379), 1, anon_sym_COLON, - ACTIONS(4535), 1, + ACTIONS(4628), 1, anon_sym_COLON_COLON, - STATE(1938), 2, + STATE(1977), 2, sym_line_comment, sym_block_comment, - ACTIONS(3299), 14, + ACTIONS(3377), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, - anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, anon_sym_where, anon_sym_else, - [60746] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [62041] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1939), 2, + STATE(1978), 2, sym_line_comment, sym_block_comment, - ACTIONS(987), 16, + ACTIONS(3536), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_COLON, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, - anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_as, anon_sym_where, anon_sym_else, - anon_sym_in, - [60775] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [62070] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3285), 1, - anon_sym_COLON, - ACTIONS(4537), 1, - anon_sym_COLON_COLON, - STATE(1940), 2, + STATE(1979), 2, sym_line_comment, sym_block_comment, - ACTIONS(3283), 14, + ACTIONS(1046), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, - anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, anon_sym_where, anon_sym_else, - [60808] = 5, - ACTIONS(101), 1, + anon_sym_in, + [62099] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3967), 1, + anon_sym_COLON_COLON, + STATE(1980), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4057), 15, + anon_sym_macro, + 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, + [62130] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4539), 1, + ACTIONS(4630), 1, anon_sym_DASH_GT, - STATE(1941), 2, + STATE(1981), 2, sym_line_comment, sym_block_comment, - ACTIONS(3521), 15, + ACTIONS(3518), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_COLON, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, - anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, anon_sym_where, anon_sym_else, - [60839] = 17, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [62161] = 11, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3241), 1, - anon_sym_PLUS, - ACTIONS(4445), 1, - anon_sym_BANG, - ACTIONS(4449), 1, + ACTIONS(4527), 1, anon_sym_LT2, - ACTIONS(4453), 1, - anon_sym_PIPE, - ACTIONS(4457), 1, - anon_sym_LBRACE, - ACTIONS(4459), 1, - anon_sym_COLON, - ACTIONS(4461), 1, - anon_sym_AT, - ACTIONS(4463), 1, + ACTIONS(4605), 1, + anon_sym_BANG, + ACTIONS(4607), 1, anon_sym_DOT_DOT, - ACTIONS(4541), 1, - anon_sym_LPAREN, - ACTIONS(4546), 1, + ACTIONS(4632), 1, anon_sym_COLON_COLON, - STATE(1931), 1, + STATE(1966), 1, sym_type_arguments, - STATE(1945), 1, - sym_parameters, - ACTIONS(4465), 2, + ACTIONS(4609), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4543), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(1942), 2, + STATE(1982), 2, sym_line_comment, sym_block_comment, - [60894] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4601), 3, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_PIPE, + ACTIONS(3401), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [62204] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1943), 2, + STATE(1983), 2, sym_line_comment, sym_block_comment, - ACTIONS(991), 16, + ACTIONS(996), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_COLON, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, - anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, anon_sym_where, anon_sym_else, anon_sym_in, - [60923] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [62233] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3305), 1, - anon_sym_COLON, - ACTIONS(4537), 1, - anon_sym_COLON_COLON, - STATE(1944), 2, + ACTIONS(4634), 1, + anon_sym_DASH_GT, + STATE(1984), 2, sym_line_comment, sym_block_comment, - ACTIONS(3303), 14, + ACTIONS(3458), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, - anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, anon_sym_where, anon_sym_else, - [60956] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [62264] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4548), 1, - anon_sym_DASH_GT, - STATE(1945), 2, + STATE(1985), 2, sym_line_comment, sym_block_comment, - ACTIONS(3533), 15, + ACTIONS(3609), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_COLON, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, - anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_as, anon_sym_where, anon_sym_else, - [60987] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [62293] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1946), 2, + ACTIONS(3359), 1, + anon_sym_COLON, + ACTIONS(4624), 1, + anon_sym_COLON_COLON, + STATE(1986), 2, sym_line_comment, sym_block_comment, - ACTIONS(3418), 16, + ACTIONS(3357), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COLON, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, - anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_as, anon_sym_where, anon_sym_else, - [61016] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [62326] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4550), 1, + ACTIONS(4636), 1, anon_sym_DASH_GT, - STATE(1947), 2, + STATE(1987), 2, sym_line_comment, sym_block_comment, - ACTIONS(3527), 15, + ACTIONS(3490), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_COLON, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, - anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, anon_sym_where, anon_sym_else, - [61047] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [62357] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4552), 1, - anon_sym_DASH_GT, - STATE(1948), 2, + STATE(1988), 2, sym_line_comment, sym_block_comment, - ACTIONS(3447), 15, + ACTIONS(1325), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_COLON, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, - anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, anon_sym_where, anon_sym_else, - [61078] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_in, + [62386] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3301), 1, + ACTIONS(3391), 1, anon_sym_COLON, - ACTIONS(4537), 1, + ACTIONS(4624), 1, anon_sym_COLON_COLON, - STATE(1949), 2, + STATE(1989), 2, sym_line_comment, sym_block_comment, - ACTIONS(3299), 14, + ACTIONS(3389), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, - anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, anon_sym_where, anon_sym_else, - [61111] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [62419] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1950), 2, + ACTIONS(4638), 1, + anon_sym_DASH_GT, + STATE(1990), 2, sym_line_comment, sym_block_comment, - ACTIONS(3443), 16, + ACTIONS(3577), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_COLON, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, - anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_as, anon_sym_where, anon_sym_else, - [61140] = 6, - ACTIONS(101), 1, + [62450] = 4, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1991), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4072), 16, + anon_sym_macro, + 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, + [62479] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3289), 1, + ACTIONS(3379), 1, anon_sym_COLON, - ACTIONS(4537), 1, + ACTIONS(4640), 1, anon_sym_COLON_COLON, - STATE(1951), 2, + STATE(1992), 2, sym_line_comment, sym_block_comment, - ACTIONS(3287), 14, + ACTIONS(3377), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, - anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, anon_sym_where, anon_sym_else, - [61173] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [62512] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3301), 1, + ACTIONS(3347), 1, anon_sym_COLON, - ACTIONS(4554), 1, + ACTIONS(4624), 1, anon_sym_COLON_COLON, - STATE(1952), 2, + STATE(1993), 2, sym_line_comment, sym_block_comment, - ACTIONS(3299), 14, + ACTIONS(3345), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, - anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, anon_sym_where, anon_sym_else, - [61206] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [62545] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1953), 2, + ACTIONS(4642), 1, + anon_sym_DASH_GT, + STATE(1994), 2, sym_line_comment, sym_block_comment, - ACTIONS(3336), 16, + ACTIONS(3496), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_COLON, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, - anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_as, anon_sym_where, anon_sym_else, - [61235] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [62576] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1954), 2, + ACTIONS(4644), 1, + anon_sym_DASH_GT, + STATE(1995), 2, sym_line_comment, sym_block_comment, - ACTIONS(3370), 16, + ACTIONS(3452), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_COLON, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, - anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_as, anon_sym_where, anon_sym_else, - [61264] = 16, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [62607] = 16, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4445), 1, + ACTIONS(4523), 1, anon_sym_BANG, - ACTIONS(4449), 1, + ACTIONS(4527), 1, anon_sym_LT2, - ACTIONS(4457), 1, + ACTIONS(4531), 1, + anon_sym_PIPE, + ACTIONS(4535), 1, anon_sym_LBRACE, - ACTIONS(4461), 1, + ACTIONS(4537), 1, + anon_sym_COLON, + ACTIONS(4539), 1, anon_sym_AT, - ACTIONS(4463), 1, + ACTIONS(4541), 1, anon_sym_DOT_DOT, - ACTIONS(4543), 1, - anon_sym_RBRACK, - ACTIONS(4556), 1, + ACTIONS(4646), 1, anon_sym_LPAREN, - ACTIONS(4558), 1, + ACTIONS(4648), 1, anon_sym_COLON_COLON, - STATE(1931), 1, + STATE(1967), 1, sym_type_arguments, - STATE(1945), 1, + STATE(1994), 1, sym_parameters, - ACTIONS(3241), 2, - anon_sym_SEMI, - anon_sym_PLUS, - ACTIONS(4453), 2, - anon_sym_PIPE, - anon_sym_COMMA, - ACTIONS(4465), 2, + ACTIONS(4543), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1955), 2, - sym_line_comment, - sym_block_comment, - [61317] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1956), 2, + STATE(1996), 2, sym_line_comment, sym_block_comment, - ACTIONS(3507), 16, - anon_sym_SEMI, + ACTIONS(3319), 3, anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_where, - anon_sym_else, - [61346] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_PLUS, + [62660] = 10, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1957), 2, + ACTIONS(4523), 1, + anon_sym_BANG, + ACTIONS(4533), 1, + anon_sym_LPAREN, + ACTIONS(4537), 1, + anon_sym_COLON, + ACTIONS(4541), 1, + anon_sym_DOT_DOT, + ACTIONS(4650), 1, + anon_sym_COLON_COLON, + ACTIONS(4543), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1997), 2, sym_line_comment, sym_block_comment, - ACTIONS(1442), 16, + ACTIONS(4531), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PLUS, + anon_sym_COMMA, anon_sym_PIPE, anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_where, anon_sym_else, anon_sym_in, - [61375] = 16, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [62701] = 17, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4445), 1, + ACTIONS(3319), 1, + anon_sym_PLUS, + ACTIONS(4523), 1, anon_sym_BANG, - ACTIONS(4449), 1, + ACTIONS(4527), 1, anon_sym_LT2, - ACTIONS(4453), 1, + ACTIONS(4531), 1, anon_sym_PIPE, - ACTIONS(4457), 1, + ACTIONS(4535), 1, anon_sym_LBRACE, - ACTIONS(4459), 1, + ACTIONS(4537), 1, anon_sym_COLON, - ACTIONS(4461), 1, + ACTIONS(4539), 1, anon_sym_AT, - ACTIONS(4463), 1, + ACTIONS(4541), 1, anon_sym_DOT_DOT, - ACTIONS(4560), 1, + ACTIONS(4652), 1, anon_sym_LPAREN, - ACTIONS(4562), 1, + ACTIONS(4654), 1, anon_sym_COLON_COLON, - STATE(1931), 1, + STATE(1967), 1, sym_type_arguments, - STATE(1945), 1, + STATE(1994), 1, sym_parameters, - ACTIONS(4465), 2, + ACTIONS(4543), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1958), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3241), 3, + ACTIONS(4619), 2, anon_sym_RPAREN, - anon_sym_PLUS, anon_sym_COMMA, - [61428] = 4, - ACTIONS(101), 1, + STATE(1998), 2, + sym_line_comment, + sym_block_comment, + [62756] = 4, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1999), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4062), 16, + anon_sym_macro, + 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, + [62785] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1959), 2, + ACTIONS(4656), 1, + anon_sym_DASH_GT, + STATE(2000), 2, sym_line_comment, sym_block_comment, - ACTIONS(1320), 16, + ACTIONS(3446), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_COLON, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, - anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, anon_sym_where, anon_sym_else, - anon_sym_in, - [61457] = 5, - ACTIONS(101), 1, + [62816] = 4, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2001), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4066), 16, + anon_sym_macro, + 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, + [62845] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4564), 1, - anon_sym_DASH_GT, - STATE(1960), 2, + STATE(2002), 2, sym_line_comment, sym_block_comment, - ACTIONS(3513), 15, + ACTIONS(1293), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_COLON, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, - anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, anon_sym_where, anon_sym_else, - [61488] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_in, + [62874] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4445), 1, - anon_sym_BANG, - ACTIONS(4455), 1, - anon_sym_LPAREN, - ACTIONS(4459), 1, - anon_sym_COLON, - ACTIONS(4463), 1, - anon_sym_DOT_DOT, - ACTIONS(4566), 1, - anon_sym_COLON_COLON, - ACTIONS(4465), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1961), 2, + STATE(2003), 2, sym_line_comment, sym_block_comment, - ACTIONS(4453), 9, + ACTIONS(3613), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, - anon_sym_COMMA, + anon_sym_GT, + anon_sym_DASH_GT, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_where, anon_sym_else, - anon_sym_in, - [61529] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [62903] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4568), 1, - anon_sym_DASH_GT, - STATE(1962), 2, + STATE(2004), 2, sym_line_comment, sym_block_comment, - ACTIONS(3356), 15, + ACTIONS(3377), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_COLON, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, - anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, anon_sym_where, anon_sym_else, - [61560] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [62931] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4570), 1, - anon_sym_DASH_GT, - STATE(1963), 2, + STATE(2005), 2, sym_line_comment, sym_block_comment, - ACTIONS(3412), 15, + ACTIONS(3773), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_COLON, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, - anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, anon_sym_where, anon_sym_else, - [61591] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [62959] = 4, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4572), 1, - anon_sym_LPAREN, - STATE(1964), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3977), 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, - [61622] = 4, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1965), 2, + STATE(2006), 2, sym_line_comment, sym_block_comment, - ACTIONS(3583), 15, + ACTIONS(3735), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_COLON, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, - anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, anon_sym_where, anon_sym_else, - [61650] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [62987] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1966), 2, + STATE(2007), 2, sym_line_comment, sym_block_comment, - ACTIONS(3287), 15, + ACTIONS(3739), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_COLON, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, - anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, anon_sym_where, anon_sym_else, - [61678] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [63015] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1967), 2, + STATE(2008), 2, sym_line_comment, sym_block_comment, - ACTIONS(3841), 15, + ACTIONS(3743), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_COLON, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, - anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, anon_sym_where, anon_sym_else, - [61706] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [63043] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1968), 2, + STATE(2009), 2, sym_line_comment, sym_block_comment, - ACTIONS(3731), 15, + ACTIONS(3765), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_COLON, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, - anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, anon_sym_where, anon_sym_else, - [61734] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [63071] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1969), 2, + STATE(2010), 2, sym_line_comment, sym_block_comment, - ACTIONS(3621), 15, + ACTIONS(3811), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_COLON, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, - anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, anon_sym_where, anon_sym_else, - [61762] = 4, - ACTIONS(101), 1, + [63099] = 12, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4527), 1, + anon_sym_LT2, + ACTIONS(4601), 1, + anon_sym_PIPE, + ACTIONS(4603), 1, + anon_sym_COLON, + ACTIONS(4605), 1, + anon_sym_BANG, + ACTIONS(4607), 1, + anon_sym_DOT_DOT, + ACTIONS(4658), 1, + anon_sym_COLON_COLON, + STATE(1966), 1, + sym_type_arguments, + ACTIONS(4609), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2011), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3401), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [63143] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1970), 2, + STATE(2012), 2, sym_line_comment, sym_block_comment, - ACTIONS(3727), 15, + ACTIONS(3357), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_COLON, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, - anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, anon_sym_where, anon_sym_else, - [61790] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [63171] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1971), 2, + STATE(2013), 2, sym_line_comment, sym_block_comment, - ACTIONS(3629), 15, + ACTIONS(3761), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_COLON, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, - anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, anon_sym_where, anon_sym_else, - [61818] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [63199] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1972), 2, + STATE(2014), 2, sym_line_comment, sym_block_comment, - ACTIONS(3857), 15, + ACTIONS(3345), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_COLON, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, - anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, anon_sym_where, anon_sym_else, - [61846] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [63227] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1973), 2, + STATE(2015), 2, sym_line_comment, sym_block_comment, - ACTIONS(3567), 15, + ACTIONS(3389), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_COLON, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, - anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, anon_sym_where, anon_sym_else, - [61874] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [63255] = 4, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1974), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3995), 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, - [61902] = 4, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1975), 2, + STATE(2016), 2, sym_line_comment, sym_block_comment, - ACTIONS(3587), 15, + ACTIONS(3839), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_COLON, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, - anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, anon_sym_where, anon_sym_else, - [61930] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [63283] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1976), 2, + STATE(2017), 2, sym_line_comment, sym_block_comment, - ACTIONS(3591), 15, + ACTIONS(3847), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_COLON, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, - anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, anon_sym_where, anon_sym_else, - [61958] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [63311] = 4, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1977), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3991), 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, - [61986] = 4, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1978), 2, + STATE(2018), 2, sym_line_comment, sym_block_comment, - ACTIONS(3299), 15, + ACTIONS(3769), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_COLON, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, - anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, anon_sym_where, anon_sym_else, - [62014] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [63339] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1979), 2, + STATE(2019), 2, sym_line_comment, sym_block_comment, - ACTIONS(3283), 15, + ACTIONS(3937), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_COLON, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, - anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, anon_sym_where, anon_sym_else, - [62042] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1980), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3999), 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, - [62070] = 12, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4519), 1, - anon_sym_PIPE, - ACTIONS(4521), 1, - anon_sym_COLON, - ACTIONS(4523), 1, - anon_sym_BANG, - ACTIONS(4525), 1, - anon_sym_DOT_DOT, - ACTIONS(4574), 1, - anon_sym_COLON_COLON, - STATE(1930), 1, - sym_type_arguments, - ACTIONS(4527), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1981), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3323), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [62114] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [63367] = 4, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4576), 1, - anon_sym_COLON_COLON, - STATE(1982), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3979), 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, - [62144] = 4, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1983), 2, + STATE(2020), 2, sym_line_comment, sym_block_comment, - ACTIONS(3637), 15, + ACTIONS(3715), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_COLON, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, - anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, anon_sym_where, anon_sym_else, - [62172] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [63395] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1984), 2, + STATE(2021), 2, sym_line_comment, sym_block_comment, - ACTIONS(3303), 15, + ACTIONS(3649), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_COLON, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, - anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, anon_sym_where, anon_sym_else, - [62200] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [63423] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1985), 2, + STATE(2022), 2, sym_line_comment, sym_block_comment, - ACTIONS(3743), 15, + ACTIONS(3711), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_COLON, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, - anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, anon_sym_where, anon_sym_else, - [62228] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [63451] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1986), 2, + STATE(2023), 2, sym_line_comment, sym_block_comment, - ACTIONS(3829), 15, + ACTIONS(3921), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_COLON, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, - anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, anon_sym_where, anon_sym_else, - [62256] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [63479] = 4, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3889), 1, - anon_sym_COLON_COLON, - STATE(1987), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3979), 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, - [62286] = 4, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1988), 2, + STATE(2024), 2, sym_line_comment, sym_block_comment, - ACTIONS(3865), 15, + ACTIONS(3645), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_COLON, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, - anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, anon_sym_where, anon_sym_else, - [62314] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [63507] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1989), 2, + STATE(2025), 2, sym_line_comment, sym_block_comment, - ACTIONS(3735), 15, + ACTIONS(3641), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_COLON, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, - anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, anon_sym_where, anon_sym_else, - [62342] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [63535] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1990), 2, + STATE(2026), 2, sym_line_comment, sym_block_comment, - ACTIONS(3625), 15, + ACTIONS(3905), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_COLON, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, - anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, anon_sym_where, anon_sym_else, - [62370] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [63563] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1991), 2, + STATE(2027), 2, sym_line_comment, sym_block_comment, - ACTIONS(3625), 15, + ACTIONS(3781), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_COLON, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, - anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, anon_sym_where, anon_sym_else, - [62398] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [63591] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1992), 2, + STATE(2028), 2, sym_line_comment, sym_block_comment, - ACTIONS(3873), 15, + ACTIONS(3707), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_COLON, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, - anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, anon_sym_where, anon_sym_else, - [62426] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [63619] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1993), 2, + STATE(2029), 2, sym_line_comment, sym_block_comment, - ACTIONS(3849), 15, + ACTIONS(3707), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_COLON, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, - anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, anon_sym_where, anon_sym_else, - [62454] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [63647] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1994), 2, + STATE(2030), 2, sym_line_comment, sym_block_comment, - ACTIONS(3767), 15, + ACTIONS(3633), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_COLON, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, - anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, anon_sym_where, anon_sym_else, - [62482] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [63675] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1995), 2, + ACTIONS(4603), 1, + anon_sym_COLON, + ACTIONS(4607), 1, + anon_sym_DOT_DOT, + ACTIONS(4611), 1, + anon_sym_COLON_COLON, + ACTIONS(4609), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2031), 2, sym_line_comment, sym_block_comment, - ACTIONS(3853), 15, + ACTIONS(4601), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PLUS, + anon_sym_COMMA, anon_sym_PIPE, anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_where, anon_sym_else, - [62510] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_in, + [63710] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1996), 2, + ACTIONS(926), 1, + anon_sym_DOT_DOT, + STATE(2032), 2, sym_line_comment, sym_block_comment, - ACTIONS(3579), 15, + ACTIONS(928), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_COLON, - anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_where, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_else, - [62538] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_in, + [63739] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(967), 1, + ACTIONS(964), 1, anon_sym_DOT_DOT, - STATE(1997), 2, + STATE(2033), 2, sym_line_comment, sym_block_comment, - ACTIONS(969), 13, + ACTIONS(966), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_COLON, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, anon_sym_else, anon_sym_in, - [62567] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [63768] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4580), 1, + ACTIONS(4662), 1, anon_sym_pat, - STATE(144), 1, + STATE(168), 1, sym_fragment_specifier, - STATE(1998), 2, + STATE(2034), 2, sym_line_comment, sym_block_comment, - ACTIONS(4578), 12, + ACTIONS(4660), 12, anon_sym_block, anon_sym_expr, anon_sym_ident, @@ -161915,1381 +165489,1603 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_tt, anon_sym_ty, anon_sym_vis, - [62598] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [63799] = 16, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4521), 1, - anon_sym_COLON, - ACTIONS(4525), 1, - anon_sym_DOT_DOT, - ACTIONS(4529), 1, - anon_sym_COLON_COLON, - ACTIONS(4527), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1999), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4519), 9, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [62633] = 16, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, + ACTIONS(4521), 1, anon_sym_LPAREN, - ACTIONS(4445), 1, + ACTIONS(4523), 1, anon_sym_BANG, - ACTIONS(4447), 1, + ACTIONS(4525), 1, anon_sym_COLON_COLON, - ACTIONS(4449), 1, + ACTIONS(4527), 1, anon_sym_LT2, - ACTIONS(4582), 1, + ACTIONS(4664), 1, + anon_sym_COMMA, + ACTIONS(4666), 1, anon_sym_COLON, - ACTIONS(4584), 1, + ACTIONS(4668), 1, anon_sym_EQ, - ACTIONS(4586), 1, + ACTIONS(4670), 1, anon_sym_GT, - ACTIONS(4588), 1, - anon_sym_COMMA, - STATE(1931), 1, + STATE(1967), 1, sym_type_arguments, - STATE(1945), 1, + STATE(1994), 1, sym_parameters, - STATE(2746), 1, + STATE(3063), 1, sym_trait_bounds, - STATE(2907), 1, + STATE(3067), 1, aux_sym_type_parameters_repeat1, - ACTIONS(3241), 2, + ACTIONS(3319), 2, anon_sym_PLUS, anon_sym_as, - STATE(2000), 2, + STATE(2035), 2, sym_line_comment, sym_block_comment, - [62684] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [63850] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(767), 1, + ACTIONS(4541), 1, anon_sym_DOT_DOT, - STATE(2001), 2, + ACTIONS(4543), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2036), 2, sym_line_comment, sym_block_comment, - ACTIONS(769), 13, + ACTIONS(4531), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_COLON, anon_sym_PIPE, anon_sym_EQ, - anon_sym_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, anon_sym_else, anon_sym_in, - [62713] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [63880] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3311), 1, - anon_sym_DOT_DOT, - ACTIONS(4590), 2, + ACTIONS(4672), 1, anon_sym_LPAREN, - anon_sym_RBRACK, - STATE(2002), 2, + ACTIONS(3385), 2, + anon_sym_COLON, + anon_sym_DOT_DOT, + STATE(2037), 2, sym_line_comment, sym_block_comment, - ACTIONS(3307), 4, - anon_sym_SEMI, + ACTIONS(3381), 5, + anon_sym_RPAREN, anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(3313), 6, + ACTIONS(3387), 5, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, anon_sym_COLON_COLON, - [62745] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [63912] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3271), 1, + ACTIONS(3353), 2, + anon_sym_COLON, anon_sym_DOT_DOT, - ACTIONS(4593), 2, - anon_sym_LPAREN, - anon_sym_RBRACK, - STATE(2003), 2, + STATE(2038), 2, sym_line_comment, sym_block_comment, - ACTIONS(3267), 4, - anon_sym_SEMI, + ACTIONS(3349), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(3273), 6, + ACTIONS(4675), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3355), 5, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, anon_sym_COLON_COLON, - [62777] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [63944] = 7, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4598), 1, - anon_sym_DOT_DOT, - STATE(2004), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4596), 12, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [62805] = 6, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4463), 1, + ACTIONS(3365), 1, anon_sym_DOT_DOT, - ACTIONS(4465), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2005), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4453), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [62835] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4600), 1, + ACTIONS(4678), 2, anon_sym_LPAREN, - ACTIONS(3295), 2, - anon_sym_COLON, - anon_sym_DOT_DOT, - STATE(2006), 2, + anon_sym_RBRACK, + STATE(2039), 2, sym_line_comment, sym_block_comment, - ACTIONS(3291), 5, - anon_sym_RPAREN, + ACTIONS(3361), 4, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_COMMA, anon_sym_LT2, - ACTIONS(3297), 5, + ACTIONS(3367), 6, + anon_sym_COMMA, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - [62867] = 13, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [63976] = 7, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4605), 1, - anon_sym_LBRACE, - ACTIONS(4607), 1, - anon_sym_BANG, - ACTIONS(4609), 1, - anon_sym_AT, - ACTIONS(4611), 1, - anon_sym_DOT_DOT, - ACTIONS(4615), 1, - anon_sym_COLON_COLON, - STATE(1931), 1, - sym_type_arguments, - ACTIONS(4613), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2007), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4453), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [62911] = 7, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3279), 1, + ACTIONS(3373), 1, anon_sym_DOT_DOT, - ACTIONS(4617), 2, + ACTIONS(4681), 2, anon_sym_LPAREN, anon_sym_RBRACK, - STATE(2008), 2, + STATE(2040), 2, sym_line_comment, sym_block_comment, - ACTIONS(3275), 4, + ACTIONS(3369), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(3281), 6, + ACTIONS(3375), 6, + anon_sym_COMMA, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, anon_sym_COLON_COLON, - [62943] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [64008] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4590), 1, + ACTIONS(4678), 1, anon_sym_LPAREN, - ACTIONS(3311), 2, + ACTIONS(3365), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(2009), 2, + STATE(2041), 2, sym_line_comment, sym_block_comment, - ACTIONS(3307), 5, + ACTIONS(3361), 5, anon_sym_RPAREN, anon_sym_LBRACE, - anon_sym_PLUS, anon_sym_COMMA, + anon_sym_PLUS, anon_sym_LT2, - ACTIONS(3313), 5, + ACTIONS(3367), 5, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - [62975] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [64040] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4617), 1, + ACTIONS(4681), 1, anon_sym_LPAREN, - ACTIONS(3279), 2, + ACTIONS(3373), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(2010), 2, + STATE(2042), 2, sym_line_comment, sym_block_comment, - ACTIONS(3275), 5, + ACTIONS(3369), 5, anon_sym_RPAREN, anon_sym_LBRACE, - anon_sym_PLUS, anon_sym_COMMA, + anon_sym_PLUS, anon_sym_LT2, - ACTIONS(3281), 5, + ACTIONS(3375), 5, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - [63007] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [64072] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4622), 1, + ACTIONS(3385), 1, anon_sym_DOT_DOT, - STATE(2011), 2, + ACTIONS(4672), 2, + anon_sym_LPAREN, + anon_sym_RBRACK, + STATE(2043), 2, sym_line_comment, sym_block_comment, - ACTIONS(4620), 12, + ACTIONS(3381), 4, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(3387), 6, + anon_sym_COMMA, + anon_sym_BANG, anon_sym_PIPE, - anon_sym_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [63035] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_COLON_COLON, + [64104] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3295), 2, + ACTIONS(3365), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(2012), 2, + STATE(2044), 2, sym_line_comment, sym_block_comment, - ACTIONS(3291), 3, + ACTIONS(3361), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(4600), 3, + ACTIONS(4678), 3, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(3297), 5, + ACTIONS(3367), 5, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - [63067] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [64136] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3271), 2, + ACTIONS(3373), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(2013), 2, + STATE(2045), 2, sym_line_comment, sym_block_comment, - ACTIONS(3267), 3, + ACTIONS(3369), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(4593), 3, + ACTIONS(4681), 3, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(3273), 5, + ACTIONS(3375), 5, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - [63099] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [64168] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3311), 2, - anon_sym_COLON, + ACTIONS(3353), 1, anon_sym_DOT_DOT, - STATE(2014), 2, + ACTIONS(4675), 2, + anon_sym_LPAREN, + anon_sym_RBRACK, + STATE(2046), 2, sym_line_comment, sym_block_comment, - ACTIONS(3307), 3, + ACTIONS(3349), 4, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(4590), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(3355), 6, anon_sym_COMMA, - ACTIONS(3313), 5, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - [63131] = 7, - ACTIONS(101), 1, + [64200] = 13, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4527), 1, + anon_sym_LT2, + ACTIONS(4684), 1, + anon_sym_LPAREN, + ACTIONS(4686), 1, + anon_sym_LBRACE, + ACTIONS(4688), 1, + anon_sym_BANG, + ACTIONS(4690), 1, + anon_sym_AT, + ACTIONS(4692), 1, + anon_sym_DOT_DOT, + ACTIONS(4696), 1, + anon_sym_COLON_COLON, + STATE(1967), 1, + sym_type_arguments, + ACTIONS(4694), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2047), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4531), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [64244] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3279), 2, - anon_sym_COLON, + ACTIONS(4700), 1, anon_sym_DOT_DOT, - STATE(2015), 2, + STATE(2048), 2, sym_line_comment, sym_block_comment, - ACTIONS(3275), 3, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(4617), 3, - anon_sym_LPAREN, + ACTIONS(4698), 12, + anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_COMMA, - ACTIONS(3281), 5, - anon_sym_BANG, + anon_sym_COLON, anon_sym_PIPE, + anon_sym_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - [63163] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_else, + anon_sym_in, + [64272] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3295), 1, - anon_sym_DOT_DOT, - ACTIONS(4600), 2, + ACTIONS(4675), 1, anon_sym_LPAREN, - anon_sym_RBRACK, - STATE(2016), 2, + ACTIONS(3353), 2, + anon_sym_COLON, + anon_sym_DOT_DOT, + STATE(2049), 2, sym_line_comment, sym_block_comment, - ACTIONS(3291), 4, - anon_sym_SEMI, + ACTIONS(3349), 5, + anon_sym_RPAREN, anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(3297), 6, + ACTIONS(3355), 5, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, anon_sym_COLON_COLON, - [63195] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [64304] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4593), 1, - anon_sym_LPAREN, - ACTIONS(3271), 2, + ACTIONS(3385), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(2017), 2, + STATE(2050), 2, sym_line_comment, sym_block_comment, - ACTIONS(3267), 5, - anon_sym_RPAREN, + ACTIONS(3381), 3, anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_COMMA, anon_sym_LT2, - ACTIONS(3273), 5, + ACTIONS(4672), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3387), 5, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - [63227] = 14, - ACTIONS(101), 1, + [64336] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4704), 1, + anon_sym_DOT_DOT, + STATE(2051), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4702), 12, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_else, + anon_sym_in, + [64364] = 14, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, + ACTIONS(3033), 1, anon_sym_POUND, - ACTIONS(2957), 1, + ACTIONS(3035), 1, anon_sym_SQUOTE, - ACTIONS(4624), 1, + ACTIONS(4706), 1, sym_identifier, - ACTIONS(4626), 1, + ACTIONS(4708), 1, anon_sym_GT, - ACTIONS(4628), 1, + ACTIONS(4710), 1, anon_sym_const, - ACTIONS(4630), 1, + ACTIONS(4712), 1, sym_metavariable, - STATE(1476), 1, + STATE(1514), 1, sym_attribute_item, - STATE(2075), 1, + STATE(2079), 1, aux_sym_enum_variant_list_repeat1, - STATE(2605), 1, + STATE(2681), 1, sym_lifetime, - STATE(2847), 1, + STATE(2883), 1, sym_constrained_type_parameter, - STATE(2018), 2, + STATE(2052), 2, sym_line_comment, sym_block_comment, - STATE(3120), 2, + STATE(3305), 2, sym_const_parameter, sym_optional_type_parameter, - [63272] = 14, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [64409] = 14, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, + ACTIONS(3033), 1, anon_sym_POUND, - ACTIONS(2957), 1, + ACTIONS(3035), 1, anon_sym_SQUOTE, - ACTIONS(4624), 1, + ACTIONS(4706), 1, sym_identifier, - ACTIONS(4628), 1, + ACTIONS(4710), 1, anon_sym_const, - ACTIONS(4630), 1, + ACTIONS(4712), 1, sym_metavariable, - ACTIONS(4632), 1, + ACTIONS(4714), 1, anon_sym_GT, - STATE(1476), 1, + STATE(1514), 1, sym_attribute_item, - STATE(2075), 1, + STATE(2079), 1, aux_sym_enum_variant_list_repeat1, - STATE(2632), 1, + STATE(2681), 1, sym_lifetime, - STATE(2847), 1, + STATE(2883), 1, sym_constrained_type_parameter, - STATE(2019), 2, + STATE(2053), 2, sym_line_comment, sym_block_comment, - STATE(3120), 2, + STATE(3305), 2, sym_const_parameter, sym_optional_type_parameter, - [63317] = 14, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [64454] = 14, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, + ACTIONS(3033), 1, anon_sym_POUND, - ACTIONS(2957), 1, + ACTIONS(3035), 1, anon_sym_SQUOTE, - ACTIONS(4624), 1, + ACTIONS(4706), 1, sym_identifier, - ACTIONS(4628), 1, + ACTIONS(4710), 1, anon_sym_const, - ACTIONS(4630), 1, + ACTIONS(4712), 1, sym_metavariable, - ACTIONS(4634), 1, + ACTIONS(4716), 1, anon_sym_GT, - STATE(1476), 1, + STATE(1514), 1, sym_attribute_item, - STATE(2075), 1, + STATE(2079), 1, aux_sym_enum_variant_list_repeat1, - STATE(2632), 1, + STATE(2681), 1, sym_lifetime, - STATE(2847), 1, + STATE(2883), 1, sym_constrained_type_parameter, - STATE(2020), 2, + STATE(2054), 2, sym_line_comment, sym_block_comment, - STATE(3120), 2, + STATE(3305), 2, sym_const_parameter, sym_optional_type_parameter, - [63362] = 14, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [64499] = 14, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, + ACTIONS(3033), 1, anon_sym_POUND, - ACTIONS(2957), 1, + ACTIONS(3035), 1, anon_sym_SQUOTE, - ACTIONS(4624), 1, + ACTIONS(4706), 1, sym_identifier, - ACTIONS(4628), 1, + ACTIONS(4710), 1, anon_sym_const, - ACTIONS(4630), 1, + ACTIONS(4712), 1, sym_metavariable, - ACTIONS(4636), 1, + ACTIONS(4718), 1, anon_sym_GT, - STATE(1476), 1, + STATE(1514), 1, sym_attribute_item, - STATE(2075), 1, + STATE(2079), 1, aux_sym_enum_variant_list_repeat1, - STATE(2632), 1, + STATE(2681), 1, sym_lifetime, - STATE(2847), 1, + STATE(2883), 1, sym_constrained_type_parameter, - STATE(2021), 2, + STATE(2055), 2, sym_line_comment, sym_block_comment, - STATE(3120), 2, + STATE(3305), 2, sym_const_parameter, sym_optional_type_parameter, - [63407] = 14, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [64544] = 14, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, + ACTIONS(3033), 1, anon_sym_POUND, - ACTIONS(2957), 1, + ACTIONS(3035), 1, anon_sym_SQUOTE, - ACTIONS(4624), 1, + ACTIONS(4706), 1, sym_identifier, - ACTIONS(4628), 1, + ACTIONS(4710), 1, anon_sym_const, - ACTIONS(4630), 1, + ACTIONS(4712), 1, sym_metavariable, - ACTIONS(4638), 1, + ACTIONS(4720), 1, anon_sym_GT, - STATE(1476), 1, + STATE(1514), 1, sym_attribute_item, - STATE(2075), 1, + STATE(2079), 1, aux_sym_enum_variant_list_repeat1, - STATE(2632), 1, + STATE(2681), 1, sym_lifetime, - STATE(2847), 1, + STATE(2883), 1, sym_constrained_type_parameter, - STATE(2022), 2, + STATE(2056), 2, sym_line_comment, sym_block_comment, - STATE(3120), 2, + STATE(3305), 2, sym_const_parameter, sym_optional_type_parameter, - [63452] = 14, - ACTIONS(101), 1, + [64589] = 10, + ACTIONS(19), 1, + anon_sym_LBRACE, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3442), 1, + anon_sym_SQUOTE, + ACTIONS(4563), 1, + anon_sym_trait, + ACTIONS(4722), 1, + anon_sym_impl, + STATE(315), 1, + sym_block, + STATE(3543), 1, + sym_label, + STATE(2057), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3401), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [64626] = 14, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, + ACTIONS(3033), 1, anon_sym_POUND, - ACTIONS(2957), 1, + ACTIONS(3035), 1, anon_sym_SQUOTE, - ACTIONS(4624), 1, + ACTIONS(4706), 1, sym_identifier, - ACTIONS(4628), 1, + ACTIONS(4710), 1, anon_sym_const, - ACTIONS(4630), 1, + ACTIONS(4712), 1, sym_metavariable, - ACTIONS(4640), 1, + ACTIONS(4724), 1, anon_sym_GT, - STATE(1476), 1, + STATE(1514), 1, sym_attribute_item, - STATE(2075), 1, + STATE(2079), 1, aux_sym_enum_variant_list_repeat1, - STATE(2632), 1, + STATE(2681), 1, sym_lifetime, - STATE(2847), 1, + STATE(2883), 1, sym_constrained_type_parameter, - STATE(2023), 2, + STATE(2058), 2, sym_line_comment, sym_block_comment, - STATE(3120), 2, + STATE(3305), 2, sym_const_parameter, sym_optional_type_parameter, - [63497] = 14, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [64671] = 14, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, + ACTIONS(3033), 1, anon_sym_POUND, - ACTIONS(2957), 1, + ACTIONS(3035), 1, anon_sym_SQUOTE, - ACTIONS(4624), 1, + ACTIONS(4706), 1, sym_identifier, - ACTIONS(4628), 1, + ACTIONS(4710), 1, anon_sym_const, - ACTIONS(4630), 1, + ACTIONS(4712), 1, sym_metavariable, - ACTIONS(4642), 1, + ACTIONS(4726), 1, anon_sym_GT, - STATE(1476), 1, + STATE(1514), 1, sym_attribute_item, - STATE(2075), 1, + STATE(2079), 1, aux_sym_enum_variant_list_repeat1, - STATE(2632), 1, + STATE(2681), 1, sym_lifetime, - STATE(2847), 1, + STATE(2883), 1, sym_constrained_type_parameter, - STATE(2024), 2, + STATE(2059), 2, sym_line_comment, sym_block_comment, - STATE(3120), 2, + STATE(3305), 2, sym_const_parameter, sym_optional_type_parameter, - [63542] = 14, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [64716] = 14, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, + ACTIONS(3033), 1, anon_sym_POUND, - ACTIONS(2957), 1, + ACTIONS(3035), 1, anon_sym_SQUOTE, - ACTIONS(4624), 1, + ACTIONS(4706), 1, sym_identifier, - ACTIONS(4628), 1, + ACTIONS(4710), 1, anon_sym_const, - ACTIONS(4630), 1, + ACTIONS(4712), 1, sym_metavariable, - ACTIONS(4644), 1, + ACTIONS(4728), 1, anon_sym_GT, - STATE(1476), 1, + STATE(1514), 1, sym_attribute_item, - STATE(2075), 1, + STATE(2079), 1, aux_sym_enum_variant_list_repeat1, - STATE(2632), 1, + STATE(2681), 1, sym_lifetime, - STATE(2847), 1, + STATE(2883), 1, sym_constrained_type_parameter, - STATE(2025), 2, - sym_line_comment, - sym_block_comment, - STATE(3120), 2, - sym_const_parameter, - sym_optional_type_parameter, - [63587] = 10, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(4483), 1, - anon_sym_trait, - ACTIONS(4646), 1, - anon_sym_impl, - STATE(384), 1, - sym_block, - STATE(3510), 1, - sym_label, - STATE(2026), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3323), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [63624] = 14, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + STATE(2060), 2, + sym_line_comment, + sym_block_comment, + STATE(3305), 2, + sym_const_parameter, + sym_optional_type_parameter, + [64761] = 14, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, + ACTIONS(3033), 1, anon_sym_POUND, - ACTIONS(2957), 1, + ACTIONS(3035), 1, anon_sym_SQUOTE, - ACTIONS(4624), 1, + ACTIONS(4706), 1, sym_identifier, - ACTIONS(4628), 1, + ACTIONS(4710), 1, anon_sym_const, - ACTIONS(4630), 1, + ACTIONS(4712), 1, sym_metavariable, - ACTIONS(4648), 1, + ACTIONS(4730), 1, anon_sym_GT, - STATE(1476), 1, + STATE(1514), 1, sym_attribute_item, - STATE(2075), 1, + STATE(2079), 1, aux_sym_enum_variant_list_repeat1, - STATE(2632), 1, + STATE(2681), 1, sym_lifetime, - STATE(2847), 1, + STATE(2883), 1, sym_constrained_type_parameter, - STATE(2027), 2, + STATE(2061), 2, sym_line_comment, sym_block_comment, - STATE(3120), 2, + STATE(3305), 2, sym_const_parameter, sym_optional_type_parameter, - [63669] = 14, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [64806] = 14, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, + ACTIONS(3033), 1, anon_sym_POUND, - ACTIONS(2957), 1, + ACTIONS(3035), 1, anon_sym_SQUOTE, - ACTIONS(4624), 1, + ACTIONS(4706), 1, sym_identifier, - ACTIONS(4628), 1, + ACTIONS(4710), 1, anon_sym_const, - ACTIONS(4630), 1, + ACTIONS(4712), 1, sym_metavariable, - ACTIONS(4650), 1, + ACTIONS(4732), 1, anon_sym_GT, - STATE(1476), 1, + STATE(1514), 1, sym_attribute_item, - STATE(2075), 1, + STATE(2079), 1, aux_sym_enum_variant_list_repeat1, - STATE(2632), 1, + STATE(2681), 1, sym_lifetime, - STATE(2847), 1, + STATE(2883), 1, sym_constrained_type_parameter, - STATE(2028), 2, + STATE(2062), 2, sym_line_comment, sym_block_comment, - STATE(3120), 2, + STATE(3305), 2, sym_const_parameter, sym_optional_type_parameter, - [63714] = 14, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [64851] = 14, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, + ACTIONS(3033), 1, anon_sym_POUND, - ACTIONS(2957), 1, + ACTIONS(3035), 1, anon_sym_SQUOTE, - ACTIONS(4624), 1, + ACTIONS(4706), 1, sym_identifier, - ACTIONS(4628), 1, + ACTIONS(4710), 1, anon_sym_const, - ACTIONS(4630), 1, + ACTIONS(4712), 1, sym_metavariable, - ACTIONS(4652), 1, + ACTIONS(4734), 1, anon_sym_GT, - STATE(1476), 1, + STATE(1514), 1, sym_attribute_item, - STATE(2075), 1, + STATE(2079), 1, aux_sym_enum_variant_list_repeat1, - STATE(2632), 1, + STATE(2681), 1, sym_lifetime, - STATE(2847), 1, + STATE(2883), 1, sym_constrained_type_parameter, - STATE(2029), 2, + STATE(2063), 2, sym_line_comment, sym_block_comment, - STATE(3120), 2, + STATE(3305), 2, sym_const_parameter, sym_optional_type_parameter, - [63759] = 14, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [64896] = 14, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, + ACTIONS(3033), 1, anon_sym_POUND, - ACTIONS(2957), 1, + ACTIONS(3035), 1, anon_sym_SQUOTE, - ACTIONS(4624), 1, + ACTIONS(4706), 1, sym_identifier, - ACTIONS(4628), 1, + ACTIONS(4710), 1, anon_sym_const, - ACTIONS(4630), 1, + ACTIONS(4712), 1, sym_metavariable, - ACTIONS(4654), 1, + ACTIONS(4736), 1, anon_sym_GT, - STATE(1476), 1, + STATE(1514), 1, sym_attribute_item, - STATE(2075), 1, + STATE(2079), 1, aux_sym_enum_variant_list_repeat1, - STATE(2632), 1, + STATE(2635), 1, sym_lifetime, - STATE(2847), 1, + STATE(2883), 1, sym_constrained_type_parameter, - STATE(2030), 2, + STATE(2064), 2, sym_line_comment, sym_block_comment, - STATE(3120), 2, + STATE(3305), 2, sym_const_parameter, sym_optional_type_parameter, - [63804] = 14, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [64941] = 14, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, + ACTIONS(3033), 1, anon_sym_POUND, - ACTIONS(2957), 1, + ACTIONS(3035), 1, anon_sym_SQUOTE, - ACTIONS(4624), 1, + ACTIONS(4706), 1, sym_identifier, - ACTIONS(4628), 1, + ACTIONS(4710), 1, anon_sym_const, - ACTIONS(4630), 1, + ACTIONS(4712), 1, sym_metavariable, - ACTIONS(4656), 1, + ACTIONS(4738), 1, anon_sym_GT, - STATE(1476), 1, + STATE(1514), 1, sym_attribute_item, - STATE(2075), 1, + STATE(2079), 1, aux_sym_enum_variant_list_repeat1, - STATE(2632), 1, + STATE(2681), 1, sym_lifetime, - STATE(2847), 1, + STATE(2883), 1, sym_constrained_type_parameter, - STATE(2031), 2, + STATE(2065), 2, sym_line_comment, sym_block_comment, - STATE(3120), 2, + STATE(3305), 2, sym_const_parameter, sym_optional_type_parameter, - [63849] = 14, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [64986] = 14, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, + ACTIONS(3033), 1, anon_sym_POUND, - ACTIONS(2957), 1, + ACTIONS(3035), 1, anon_sym_SQUOTE, - ACTIONS(4624), 1, + ACTIONS(4706), 1, sym_identifier, - ACTIONS(4628), 1, + ACTIONS(4710), 1, anon_sym_const, - ACTIONS(4630), 1, + ACTIONS(4712), 1, sym_metavariable, - ACTIONS(4658), 1, + ACTIONS(4740), 1, anon_sym_GT, - STATE(1476), 1, + STATE(1514), 1, sym_attribute_item, - STATE(2075), 1, + STATE(2079), 1, aux_sym_enum_variant_list_repeat1, - STATE(2632), 1, + STATE(2681), 1, sym_lifetime, - STATE(2847), 1, + STATE(2883), 1, sym_constrained_type_parameter, - STATE(2032), 2, + STATE(2066), 2, sym_line_comment, sym_block_comment, - STATE(3120), 2, + STATE(3305), 2, sym_const_parameter, sym_optional_type_parameter, - [63894] = 14, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [65031] = 14, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, + ACTIONS(3033), 1, anon_sym_POUND, - ACTIONS(2957), 1, + ACTIONS(3035), 1, anon_sym_SQUOTE, - ACTIONS(4624), 1, + ACTIONS(4706), 1, sym_identifier, - ACTIONS(4628), 1, + ACTIONS(4710), 1, anon_sym_const, - ACTIONS(4630), 1, + ACTIONS(4712), 1, sym_metavariable, - ACTIONS(4660), 1, + ACTIONS(4742), 1, anon_sym_GT, - STATE(1476), 1, + STATE(1514), 1, sym_attribute_item, - STATE(2075), 1, + STATE(2079), 1, aux_sym_enum_variant_list_repeat1, - STATE(2632), 1, + STATE(2681), 1, sym_lifetime, - STATE(2847), 1, + STATE(2883), 1, sym_constrained_type_parameter, - STATE(2033), 2, + STATE(2067), 2, sym_line_comment, sym_block_comment, - STATE(3120), 2, + STATE(3305), 2, sym_const_parameter, sym_optional_type_parameter, - [63939] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [65076] = 12, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, + ACTIONS(3323), 1, + anon_sym_COLON, + ACTIONS(4521), 1, anon_sym_LPAREN, - ACTIONS(4445), 1, + ACTIONS(4523), 1, anon_sym_BANG, - ACTIONS(4447), 1, + ACTIONS(4525), 1, anon_sym_COLON_COLON, - ACTIONS(4449), 1, + ACTIONS(4527), 1, anon_sym_LT2, - ACTIONS(4662), 1, - anon_sym_for, - STATE(1931), 1, - sym_type_arguments, - STATE(1945), 1, + ACTIONS(4744), 1, + anon_sym_EQ, + STATE(1994), 1, sym_parameters, - STATE(2034), 2, + STATE(2425), 1, + sym_type_arguments, + STATE(2068), 2, sym_line_comment, sym_block_comment, - ACTIONS(3241), 4, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(3319), 3, + anon_sym_COMMA, anon_sym_PLUS, - anon_sym_where, - [63977] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_GT, + [65116] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4576), 1, + ACTIONS(3353), 1, + anon_sym_DOT_DOT, + ACTIONS(3349), 2, + anon_sym_LBRACE, + anon_sym_LT2, + STATE(2069), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3355), 8, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - ACTIONS(4666), 1, - anon_sym_COLON, - STATE(2035), 2, + anon_sym_if, + [65144] = 13, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3033), 1, + anon_sym_POUND, + ACTIONS(3035), 1, + anon_sym_SQUOTE, + ACTIONS(4710), 1, + anon_sym_const, + ACTIONS(4746), 1, + sym_identifier, + ACTIONS(4748), 1, + sym_metavariable, + STATE(1514), 1, + sym_attribute_item, + STATE(2099), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2497), 1, + sym_lifetime, + STATE(2770), 1, + sym_constrained_type_parameter, + STATE(2070), 2, + sym_line_comment, + sym_block_comment, + STATE(2797), 2, + sym_const_parameter, + sym_optional_type_parameter, + [65186] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2071), 2, sym_line_comment, sym_block_comment, - ACTIONS(4664), 9, + ACTIONS(1235), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_PIPE, anon_sym_EQ, - anon_sym_COMMA, + anon_sym_GT, anon_sym_else, anon_sym_in, - [64005] = 6, - ACTIONS(101), 1, + [65210] = 7, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1413), 1, + aux_sym_string_literal_token1, + ACTIONS(4752), 1, + sym_crate, + STATE(2226), 1, + sym_string_literal, + STATE(2072), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4750), 8, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [65240] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4666), 1, - anon_sym_COLON, - ACTIONS(4668), 1, + ACTIONS(1413), 1, + aux_sym_string_literal_token1, + ACTIONS(4754), 1, + sym_crate, + STATE(2226), 1, + sym_string_literal, + STATE(2073), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4750), 8, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [65270] = 11, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4521), 1, + anon_sym_LPAREN, + ACTIONS(4523), 1, + anon_sym_BANG, + ACTIONS(4525), 1, anon_sym_COLON_COLON, - STATE(2036), 2, + ACTIONS(4527), 1, + anon_sym_LT2, + ACTIONS(4756), 1, + anon_sym_for, + STATE(1967), 1, + sym_type_arguments, + STATE(1994), 1, + sym_parameters, + STATE(2074), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3319), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [65308] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2075), 2, sym_line_comment, sym_block_comment, - ACTIONS(4664), 9, + ACTIONS(1219), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_PIPE, anon_sym_EQ, - anon_sym_COMMA, + anon_sym_GT, anon_sym_else, anon_sym_in, - [64033] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [65332] = 11, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, + ACTIONS(4521), 1, anon_sym_LPAREN, - ACTIONS(4445), 1, + ACTIONS(4523), 1, anon_sym_BANG, - ACTIONS(4447), 1, + ACTIONS(4525), 1, anon_sym_COLON_COLON, - ACTIONS(4449), 1, + ACTIONS(4527), 1, anon_sym_LT2, - ACTIONS(4670), 1, + ACTIONS(4758), 1, anon_sym_for, - STATE(1931), 1, + STATE(1967), 1, sym_type_arguments, - STATE(1945), 1, + STATE(1994), 1, sym_parameters, - STATE(2037), 2, + STATE(2076), 2, sym_line_comment, sym_block_comment, - ACTIONS(3241), 4, + ACTIONS(3319), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [64071] = 12, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [65370] = 11, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3245), 1, - anon_sym_COLON, - ACTIONS(4443), 1, + ACTIONS(4521), 1, anon_sym_LPAREN, - ACTIONS(4445), 1, + ACTIONS(4523), 1, anon_sym_BANG, - ACTIONS(4447), 1, + ACTIONS(4525), 1, anon_sym_COLON_COLON, - ACTIONS(4449), 1, + ACTIONS(4527), 1, anon_sym_LT2, - ACTIONS(4672), 1, - anon_sym_EQ, - STATE(1945), 1, - sym_parameters, - STATE(2365), 1, + ACTIONS(4760), 1, + anon_sym_for, + STATE(1967), 1, sym_type_arguments, - STATE(2038), 2, + STATE(1994), 1, + sym_parameters, + STATE(2077), 2, sym_line_comment, sym_block_comment, - ACTIONS(3241), 3, + ACTIONS(3319), 4, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - [64111] = 4, - ACTIONS(101), 1, + anon_sym_where, + [65408] = 7, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1413), 1, + aux_sym_string_literal_token1, + ACTIONS(4762), 1, + sym_crate, + STATE(2226), 1, + sym_string_literal, + STATE(2078), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4750), 8, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [65438] = 13, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2039), 2, + ACTIONS(3033), 1, + anon_sym_POUND, + ACTIONS(3035), 1, + anon_sym_SQUOTE, + ACTIONS(4710), 1, + anon_sym_const, + ACTIONS(4764), 1, + sym_identifier, + ACTIONS(4766), 1, + sym_metavariable, + STATE(1237), 1, + aux_sym_enum_variant_list_repeat1, + STATE(1514), 1, + sym_attribute_item, + STATE(2704), 1, + sym_lifetime, + STATE(2867), 1, + sym_constrained_type_parameter, + STATE(2079), 2, + sym_line_comment, + sym_block_comment, + STATE(3256), 2, + sym_const_parameter, + sym_optional_type_parameter, + [65480] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2080), 2, sym_line_comment, sym_block_comment, - ACTIONS(1240), 11, + ACTIONS(1223), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_COLON, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, - anon_sym_COMMA, anon_sym_else, anon_sym_in, - [64135] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [65504] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3271), 1, - anon_sym_DOT_DOT, - ACTIONS(3267), 2, - anon_sym_LBRACE, - anon_sym_LT2, - STATE(2040), 2, + STATE(2081), 2, sym_line_comment, sym_block_comment, - ACTIONS(3273), 8, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_BANG, + ACTIONS(1239), 11, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_if, - [64163] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_EQ, + anon_sym_GT, + anon_sym_else, + anon_sym_in, + [65528] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4676), 1, + ACTIONS(4770), 1, anon_sym_COLON, - ACTIONS(4678), 1, + ACTIONS(4772), 1, anon_sym_COLON_COLON, - STATE(2041), 2, + STATE(2082), 2, sym_line_comment, sym_block_comment, - ACTIONS(4674), 9, + ACTIONS(4768), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_PIPE, anon_sym_EQ, - anon_sym_COMMA, anon_sym_else, anon_sym_in, - [64191] = 12, - ACTIONS(101), 1, + [65556] = 13, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3033), 1, + anon_sym_POUND, + ACTIONS(3035), 1, + anon_sym_SQUOTE, + ACTIONS(4710), 1, + anon_sym_const, + ACTIONS(4774), 1, + sym_identifier, + ACTIONS(4776), 1, + sym_metavariable, + STATE(1237), 1, + aux_sym_enum_variant_list_repeat1, + STATE(1514), 1, + sym_attribute_item, + STATE(2539), 1, + sym_lifetime, + STATE(2676), 1, + sym_constrained_type_parameter, + STATE(2083), 2, + sym_line_comment, + sym_block_comment, + STATE(2890), 2, + sym_const_parameter, + sym_optional_type_parameter, + [65598] = 13, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, + ACTIONS(3033), 1, anon_sym_POUND, - ACTIONS(4680), 1, + ACTIONS(3035), 1, + anon_sym_SQUOTE, + ACTIONS(4710), 1, + anon_sym_const, + ACTIONS(4778), 1, sym_identifier, - ACTIONS(4682), 1, - anon_sym_RBRACE, - ACTIONS(4684), 1, - anon_sym_DOT_DOT, - ACTIONS(4686), 1, - anon_sym_COMMA, - ACTIONS(4688), 1, - sym_integer_literal, - STATE(1476), 1, + ACTIONS(4780), 1, + sym_metavariable, + STATE(1514), 1, sym_attribute_item, - STATE(2395), 1, + STATE(2083), 1, aux_sym_enum_variant_list_repeat1, - STATE(2042), 2, + STATE(2506), 1, + sym_lifetime, + STATE(2781), 1, + sym_constrained_type_parameter, + STATE(2084), 2, sym_line_comment, sym_block_comment, - STATE(2851), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [64231] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + STATE(2784), 2, + sym_const_parameter, + sym_optional_type_parameter, + [65640] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4692), 1, - anon_sym_COLON, - ACTIONS(4694), 1, + ACTIONS(4772), 1, anon_sym_COLON_COLON, - STATE(2043), 2, + ACTIONS(4784), 1, + anon_sym_COLON, + STATE(2085), 2, sym_line_comment, sym_block_comment, - ACTIONS(4690), 9, + ACTIONS(4782), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_PIPE, anon_sym_EQ, - anon_sym_COMMA, anon_sym_else, anon_sym_in, - [64259] = 11, - ACTIONS(101), 1, + [65668] = 6, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4626), 1, + anon_sym_COLON_COLON, + ACTIONS(4770), 1, + anon_sym_COLON, + STATE(2086), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4768), 9, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_else, + anon_sym_in, + [65696] = 11, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, + ACTIONS(4521), 1, anon_sym_LPAREN, - ACTIONS(4445), 1, + ACTIONS(4523), 1, anon_sym_BANG, - ACTIONS(4447), 1, + ACTIONS(4525), 1, anon_sym_COLON_COLON, - ACTIONS(4449), 1, + ACTIONS(4527), 1, anon_sym_LT2, - ACTIONS(4696), 1, + ACTIONS(4786), 1, anon_sym_for, - STATE(1931), 1, + STATE(1967), 1, sym_type_arguments, - STATE(1945), 1, + STATE(1994), 1, sym_parameters, - STATE(2044), 2, + STATE(2087), 2, sym_line_comment, sym_block_comment, - ACTIONS(3241), 4, + ACTIONS(3319), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [64297] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [65734] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3295), 1, - anon_sym_DOT_DOT, - ACTIONS(3291), 2, - anon_sym_LBRACE, - anon_sym_LT2, - STATE(2045), 2, + ACTIONS(4770), 1, + anon_sym_COLON, + ACTIONS(4788), 1, + anon_sym_COLON_COLON, + STATE(2088), 2, sym_line_comment, sym_block_comment, - ACTIONS(3297), 8, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_BANG, + ACTIONS(4768), 9, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_if, - [64325] = 6, - ACTIONS(101), 1, + anon_sym_EQ, + anon_sym_else, + anon_sym_in, + [65762] = 9, + ACTIONS(19), 1, + anon_sym_LBRACE, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3442), 1, + anon_sym_SQUOTE, + ACTIONS(4790), 1, + sym_identifier, + STATE(365), 1, + sym_block, + STATE(3543), 1, + sym_label, + STATE(2089), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4792), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [65796] = 9, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4576), 1, - anon_sym_COLON_COLON, - ACTIONS(4692), 1, + ACTIONS(3442), 1, + anon_sym_SQUOTE, + ACTIONS(4794), 1, + anon_sym_move, + STATE(356), 1, + sym_block, + STATE(3543), 1, + sym_label, + STATE(2090), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3401), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [65830] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4798), 1, anon_sym_COLON, - STATE(2046), 2, + ACTIONS(4800), 1, + anon_sym_COLON_COLON, + STATE(2091), 2, sym_line_comment, sym_block_comment, - ACTIONS(4690), 9, + ACTIONS(4796), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_PIPE, anon_sym_EQ, - anon_sym_COMMA, anon_sym_else, anon_sym_in, - [64353] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [65858] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2047), 2, + ACTIONS(4626), 1, + anon_sym_COLON_COLON, + ACTIONS(4784), 1, + anon_sym_COLON, + STATE(2092), 2, sym_line_comment, sym_block_comment, - ACTIONS(1236), 11, + ACTIONS(4782), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_COLON, + anon_sym_COMMA, anon_sym_PIPE, anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, anon_sym_else, anon_sym_in, - [64377] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [65886] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4668), 1, + ACTIONS(4800), 1, anon_sym_COLON_COLON, - ACTIONS(4692), 1, + ACTIONS(4804), 1, anon_sym_COLON, - STATE(2048), 2, + STATE(2093), 2, sym_line_comment, sym_block_comment, - ACTIONS(4690), 9, + ACTIONS(4802), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_PIPE, anon_sym_EQ, - anon_sym_COMMA, anon_sym_else, anon_sym_in, - [64405] = 12, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [65914] = 11, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, - anon_sym_POUND, - ACTIONS(4680), 1, - sym_identifier, - ACTIONS(4684), 1, - anon_sym_DOT_DOT, - ACTIONS(4688), 1, - sym_integer_literal, - ACTIONS(4698), 1, - anon_sym_RBRACE, - ACTIONS(4700), 1, - anon_sym_COMMA, - STATE(1476), 1, - sym_attribute_item, - STATE(2395), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2049), 2, + ACTIONS(4521), 1, + anon_sym_LPAREN, + ACTIONS(4523), 1, + anon_sym_BANG, + ACTIONS(4525), 1, + anon_sym_COLON_COLON, + ACTIONS(4527), 1, + anon_sym_LT2, + ACTIONS(4806), 1, + anon_sym_for, + STATE(1967), 1, + sym_type_arguments, + STATE(1994), 1, + sym_parameters, + STATE(2094), 2, sym_line_comment, sym_block_comment, - STATE(2770), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [64445] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3319), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [65952] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1308), 1, + ACTIONS(1413), 1, aux_sym_string_literal_token1, - ACTIONS(4704), 1, + ACTIONS(4808), 1, sym_crate, - STATE(2179), 1, + STATE(2226), 1, sym_string_literal, - STATE(2050), 2, + STATE(2095), 2, sym_line_comment, sym_block_comment, - ACTIONS(4702), 8, + ACTIONS(4750), 8, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_async, @@ -163298,403 +167094,335 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [64475] = 13, - ACTIONS(101), 1, + [65982] = 11, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4521), 1, + anon_sym_LPAREN, + ACTIONS(4523), 1, + anon_sym_BANG, + ACTIONS(4525), 1, + anon_sym_COLON_COLON, + ACTIONS(4527), 1, + anon_sym_LT2, + ACTIONS(4810), 1, + anon_sym_for, + STATE(1967), 1, + sym_type_arguments, + STATE(1994), 1, + sym_parameters, + STATE(2096), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3319), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [66020] = 12, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3033), 1, + anon_sym_POUND, + ACTIONS(4812), 1, + sym_identifier, + ACTIONS(4814), 1, + anon_sym_RBRACE, + ACTIONS(4816), 1, + anon_sym_COMMA, + ACTIONS(4818), 1, + anon_sym_DOT_DOT, + ACTIONS(4820), 1, + sym_integer_literal, + STATE(1514), 1, + sym_attribute_item, + STATE(2500), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2097), 2, + sym_line_comment, + sym_block_comment, + STATE(2808), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [66060] = 13, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, + ACTIONS(3033), 1, anon_sym_POUND, - ACTIONS(2957), 1, + ACTIONS(3035), 1, anon_sym_SQUOTE, - ACTIONS(4628), 1, + ACTIONS(4710), 1, anon_sym_const, - ACTIONS(4706), 1, + ACTIONS(4746), 1, sym_identifier, - ACTIONS(4708), 1, + ACTIONS(4748), 1, sym_metavariable, - STATE(1476), 1, + STATE(1514), 1, sym_attribute_item, - STATE(2052), 1, + STATE(2099), 1, aux_sym_enum_variant_list_repeat1, - STATE(2436), 1, + STATE(2393), 1, sym_lifetime, - STATE(2512), 1, + STATE(2770), 1, sym_constrained_type_parameter, - STATE(2051), 2, + STATE(2098), 2, sym_line_comment, sym_block_comment, - STATE(2778), 2, + STATE(2797), 2, sym_const_parameter, sym_optional_type_parameter, - [64517] = 13, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [66102] = 13, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, + ACTIONS(3033), 1, anon_sym_POUND, - ACTIONS(2957), 1, + ACTIONS(3035), 1, anon_sym_SQUOTE, - ACTIONS(4628), 1, - anon_sym_const, ACTIONS(4710), 1, + anon_sym_const, + ACTIONS(4822), 1, sym_identifier, - ACTIONS(4712), 1, + ACTIONS(4824), 1, sym_metavariable, - STATE(1065), 1, + STATE(1237), 1, aux_sym_enum_variant_list_repeat1, - STATE(1476), 1, + STATE(1514), 1, sym_attribute_item, - STATE(2447), 1, + STATE(2469), 1, sym_lifetime, - STATE(2534), 1, + STATE(2550), 1, sym_constrained_type_parameter, - STATE(2052), 2, + STATE(2099), 2, sym_line_comment, sym_block_comment, - STATE(2775), 2, + STATE(3096), 2, sym_const_parameter, sym_optional_type_parameter, - [64559] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [66144] = 11, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2053), 2, + ACTIONS(4521), 1, + anon_sym_LPAREN, + ACTIONS(4523), 1, + anon_sym_BANG, + ACTIONS(4525), 1, + anon_sym_COLON_COLON, + ACTIONS(4527), 1, + anon_sym_LT2, + ACTIONS(4826), 1, + anon_sym_for, + STATE(1967), 1, + sym_type_arguments, + STATE(1994), 1, + sym_parameters, + STATE(2100), 2, sym_line_comment, sym_block_comment, - ACTIONS(1232), 11, + ACTIONS(3319), 4, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [64583] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [66182] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4666), 1, + ACTIONS(4784), 1, anon_sym_COLON, - ACTIONS(4694), 1, + ACTIONS(4788), 1, anon_sym_COLON_COLON, - STATE(2054), 2, + STATE(2101), 2, sym_line_comment, sym_block_comment, - ACTIONS(4664), 9, + ACTIONS(4782), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_PIPE, anon_sym_EQ, - anon_sym_COMMA, anon_sym_else, anon_sym_in, - [64611] = 13, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [66210] = 12, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, + ACTIONS(3033), 1, anon_sym_POUND, - ACTIONS(2957), 1, - anon_sym_SQUOTE, - ACTIONS(4628), 1, - anon_sym_const, - ACTIONS(4714), 1, + ACTIONS(4812), 1, sym_identifier, - ACTIONS(4716), 1, - sym_metavariable, - STATE(1065), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1476), 1, + ACTIONS(4818), 1, + anon_sym_DOT_DOT, + ACTIONS(4820), 1, + sym_integer_literal, + ACTIONS(4828), 1, + anon_sym_RBRACE, + ACTIONS(4830), 1, + anon_sym_COMMA, + STATE(1514), 1, sym_attribute_item, - STATE(2390), 1, - sym_lifetime, - STATE(2531), 1, - sym_constrained_type_parameter, - STATE(2055), 2, + STATE(2500), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2102), 2, sym_line_comment, sym_block_comment, - STATE(3011), 2, - sym_const_parameter, - sym_optional_type_parameter, - [64653] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + STATE(2848), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [66250] = 11, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2056), 2, + ACTIONS(4521), 1, + anon_sym_LPAREN, + ACTIONS(4523), 1, + anon_sym_BANG, + ACTIONS(4525), 1, + anon_sym_COLON_COLON, + ACTIONS(4527), 1, + anon_sym_LT2, + ACTIONS(4832), 1, + anon_sym_for, + STATE(1967), 1, + sym_type_arguments, + STATE(1994), 1, + sym_parameters, + STATE(2103), 2, sym_line_comment, sym_block_comment, - ACTIONS(1244), 11, + ACTIONS(3319), 4, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [64677] = 13, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [66288] = 11, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(2955), 1, - anon_sym_POUND, - ACTIONS(2957), 1, - anon_sym_SQUOTE, - ACTIONS(4628), 1, - anon_sym_const, - ACTIONS(4718), 1, - sym_identifier, - ACTIONS(4720), 1, - sym_metavariable, - STATE(1476), 1, - sym_attribute_item, - STATE(2055), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2401), 1, - sym_lifetime, - STATE(2693), 1, - sym_constrained_type_parameter, - STATE(2057), 2, - sym_line_comment, - sym_block_comment, - STATE(2959), 2, - sym_const_parameter, - sym_optional_type_parameter, - [64719] = 11, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, + ACTIONS(4527), 1, anon_sym_LT2, - ACTIONS(4521), 1, + ACTIONS(4603), 1, anon_sym_COLON, - ACTIONS(4523), 1, + ACTIONS(4605), 1, anon_sym_BANG, - ACTIONS(4525), 1, + ACTIONS(4607), 1, anon_sym_DOT_DOT, - ACTIONS(4531), 1, + ACTIONS(4615), 1, anon_sym_COLON_COLON, - STATE(1930), 1, + STATE(1966), 1, sym_type_arguments, - ACTIONS(4527), 2, + ACTIONS(4609), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2058), 2, + STATE(2104), 2, sym_line_comment, sym_block_comment, - ACTIONS(4519), 3, + ACTIONS(4601), 3, anon_sym_RPAREN, - anon_sym_PIPE, anon_sym_COMMA, - [64757] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(2059), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1206), 11, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [64781] = 13, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [66326] = 13, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, + ACTIONS(3033), 1, anon_sym_POUND, - ACTIONS(2957), 1, + ACTIONS(3035), 1, anon_sym_SQUOTE, - ACTIONS(4624), 1, + ACTIONS(4706), 1, sym_identifier, - ACTIONS(4628), 1, + ACTIONS(4710), 1, anon_sym_const, - ACTIONS(4630), 1, + ACTIONS(4712), 1, sym_metavariable, - STATE(1476), 1, + STATE(1514), 1, sym_attribute_item, - STATE(2075), 1, + STATE(2079), 1, aux_sym_enum_variant_list_repeat1, - STATE(2632), 1, + STATE(2681), 1, sym_lifetime, - STATE(2847), 1, + STATE(2883), 1, sym_constrained_type_parameter, - STATE(2060), 2, + STATE(2105), 2, sym_line_comment, sym_block_comment, - STATE(3120), 2, + STATE(3305), 2, sym_const_parameter, sym_optional_type_parameter, - [64823] = 9, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [66368] = 4, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(4722), 1, - sym_identifier, - STATE(380), 1, - sym_block, - STATE(3510), 1, - sym_label, - STATE(2061), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4724), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [64857] = 13, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, - anon_sym_POUND, - ACTIONS(2957), 1, - anon_sym_SQUOTE, - ACTIONS(4628), 1, - anon_sym_const, - ACTIONS(4718), 1, - sym_identifier, - ACTIONS(4720), 1, - sym_metavariable, - STATE(1476), 1, - sym_attribute_item, - STATE(2055), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2326), 1, - sym_lifetime, - STATE(2693), 1, - sym_constrained_type_parameter, - STATE(2062), 2, + STATE(2106), 2, sym_line_comment, sym_block_comment, - STATE(2959), 2, - sym_const_parameter, - sym_optional_type_parameter, - [64899] = 9, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(1227), 11, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_else, + anon_sym_in, + [66392] = 6, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(4726), 1, - anon_sym_move, - STATE(389), 1, - sym_block, - STATE(3510), 1, - sym_label, - STATE(2063), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3323), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [64933] = 7, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1308), 1, - aux_sym_string_literal_token1, - ACTIONS(4728), 1, - sym_crate, - STATE(2179), 1, - sym_string_literal, - STATE(2064), 2, + ACTIONS(3385), 1, + anon_sym_DOT_DOT, + ACTIONS(3381), 2, + anon_sym_LBRACE, + anon_sym_LT2, + STATE(2107), 2, sym_line_comment, sym_block_comment, - ACTIONS(4702), 8, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [64963] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4443), 1, + ACTIONS(3387), 8, anon_sym_LPAREN, - ACTIONS(4445), 1, + anon_sym_EQ_GT, anon_sym_BANG, - ACTIONS(4447), 1, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4730), 1, - anon_sym_for, - STATE(1931), 1, - sym_type_arguments, - STATE(1945), 1, - sym_parameters, - STATE(2065), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3241), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [65001] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_if, + [66420] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3311), 1, + ACTIONS(3365), 1, anon_sym_DOT_DOT, - ACTIONS(3307), 2, + ACTIONS(3361), 2, anon_sym_LBRACE, anon_sym_LT2, - STATE(2066), 2, + STATE(2108), 2, sym_line_comment, sym_block_comment, - ACTIONS(3313), 8, + ACTIONS(3367), 8, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_BANG, @@ -163703,20 +167431,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_if, - [65029] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [66448] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3279), 1, + ACTIONS(3373), 1, anon_sym_DOT_DOT, - ACTIONS(3275), 2, + ACTIONS(3369), 2, anon_sym_LBRACE, anon_sym_LT2, - STATE(2067), 2, + STATE(2109), 2, sym_line_comment, sym_block_comment, - ACTIONS(3281), 8, + ACTIONS(3375), 8, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_BANG, @@ -163725,1449 +167453,1317 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_if, - [65057] = 7, - ACTIONS(101), 1, + [66476] = 11, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3033), 1, + anon_sym_POUND, + ACTIONS(4812), 1, + sym_identifier, + ACTIONS(4818), 1, + anon_sym_DOT_DOT, + ACTIONS(4820), 1, + sym_integer_literal, + ACTIONS(4834), 1, + anon_sym_RBRACE, + STATE(1514), 1, + sym_attribute_item, + STATE(2500), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2110), 2, + sym_line_comment, + sym_block_comment, + STATE(3330), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [66513] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1308), 1, - aux_sym_string_literal_token1, - ACTIONS(4732), 1, - sym_crate, - STATE(2179), 1, - sym_string_literal, - STATE(2068), 2, + STATE(2111), 2, sym_line_comment, sym_block_comment, - ACTIONS(4702), 8, + ACTIONS(4836), 10, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [65087] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_else, + anon_sym_in, + [66536] = 10, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4678), 1, + ACTIONS(4523), 1, + anon_sym_BANG, + ACTIONS(4533), 1, + anon_sym_LPAREN, + ACTIONS(4537), 1, + anon_sym_COLON, + ACTIONS(4541), 1, + anon_sym_DOT_DOT, + ACTIONS(4838), 1, anon_sym_COLON_COLON, - ACTIONS(4736), 1, + ACTIONS(4543), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2112), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4531), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_PIPE, + [66571] = 11, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3033), 1, + anon_sym_POUND, + ACTIONS(4812), 1, + sym_identifier, + ACTIONS(4818), 1, + anon_sym_DOT_DOT, + ACTIONS(4820), 1, + sym_integer_literal, + ACTIONS(4840), 1, + anon_sym_RBRACE, + STATE(1514), 1, + sym_attribute_item, + STATE(2500), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2113), 2, + sym_line_comment, + sym_block_comment, + STATE(3330), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [66608] = 11, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3033), 1, + anon_sym_POUND, + ACTIONS(4812), 1, + sym_identifier, + ACTIONS(4818), 1, + anon_sym_DOT_DOT, + ACTIONS(4820), 1, + sym_integer_literal, + ACTIONS(4842), 1, + anon_sym_RBRACE, + STATE(1514), 1, + sym_attribute_item, + STATE(2500), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2114), 2, + sym_line_comment, + sym_block_comment, + STATE(3330), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [66645] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2115), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4844), 10, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_COLON, - STATE(2069), 2, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_else, + anon_sym_in, + [66668] = 9, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4521), 1, + anon_sym_LPAREN, + ACTIONS(4527), 1, + anon_sym_LT2, + ACTIONS(4846), 1, + anon_sym_LBRACE, + STATE(1968), 1, + sym_type_arguments, + STATE(1987), 1, + sym_parameters, + STATE(2116), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3377), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_PLUS, + [66701] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2117), 2, sym_line_comment, sym_block_comment, - ACTIONS(4734), 9, + ACTIONS(4768), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_PIPE, anon_sym_EQ, - anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65115] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [66724] = 13, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, - anon_sym_LPAREN, - ACTIONS(4445), 1, - anon_sym_BANG, - ACTIONS(4447), 1, - anon_sym_COLON_COLON, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4738), 1, - anon_sym_for, - STATE(1931), 1, - sym_type_arguments, - STATE(1945), 1, - sym_parameters, - STATE(2070), 2, + ACTIONS(3033), 1, + anon_sym_POUND, + ACTIONS(4848), 1, + sym_identifier, + ACTIONS(4850), 1, + anon_sym_RBRACE, + ACTIONS(4852), 1, + anon_sym_COMMA, + ACTIONS(4854), 1, + sym_crate, + STATE(1514), 1, + sym_attribute_item, + STATE(2248), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3075), 1, + sym_field_declaration, + STATE(3698), 1, + sym_visibility_modifier, + STATE(2118), 2, sym_line_comment, sym_block_comment, - ACTIONS(3241), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [65153] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [66765] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1308), 1, - aux_sym_string_literal_token1, - ACTIONS(4740), 1, - sym_crate, - STATE(2179), 1, - sym_string_literal, - STATE(2071), 2, + ACTIONS(1581), 1, + anon_sym_LBRACE, + ACTIONS(3442), 1, + anon_sym_SQUOTE, + STATE(2158), 1, + sym_block, + STATE(3679), 1, + sym_label, + STATE(2119), 2, sym_line_comment, sym_block_comment, - ACTIONS(4702), 8, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(3401), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [65183] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [66796] = 13, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4443), 1, - anon_sym_LPAREN, - ACTIONS(4445), 1, - anon_sym_BANG, - ACTIONS(4447), 1, - anon_sym_COLON_COLON, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4742), 1, - anon_sym_for, - STATE(1931), 1, - sym_type_arguments, - STATE(1945), 1, - sym_parameters, - STATE(2072), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3241), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [65221] = 11, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, - anon_sym_LPAREN, - ACTIONS(4445), 1, - anon_sym_BANG, - ACTIONS(4447), 1, - anon_sym_COLON_COLON, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4744), 1, - anon_sym_for, - STATE(1931), 1, - sym_type_arguments, - STATE(1945), 1, - sym_parameters, - STATE(2073), 2, + ACTIONS(3033), 1, + anon_sym_POUND, + ACTIONS(4848), 1, + sym_identifier, + ACTIONS(4854), 1, + sym_crate, + ACTIONS(4856), 1, + anon_sym_RBRACE, + ACTIONS(4858), 1, + anon_sym_COMMA, + STATE(1514), 1, + sym_attribute_item, + STATE(2227), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2907), 1, + sym_field_declaration, + STATE(3698), 1, + sym_visibility_modifier, + STATE(2120), 2, sym_line_comment, sym_block_comment, - ACTIONS(3241), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [65259] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [66837] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, - anon_sym_LPAREN, - ACTIONS(4445), 1, - anon_sym_BANG, - ACTIONS(4447), 1, - anon_sym_COLON_COLON, - ACTIONS(4449), 1, + ACTIONS(3329), 1, anon_sym_LT2, - ACTIONS(4746), 1, - anon_sym_for, - STATE(1931), 1, + ACTIONS(3575), 1, + anon_sym_COLON_COLON, + ACTIONS(4860), 1, + anon_sym_BANG, + STATE(1226), 1, sym_type_arguments, - STATE(1945), 1, - sym_parameters, - STATE(2074), 2, + STATE(2121), 2, sym_line_comment, sym_block_comment, - ACTIONS(3241), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [65297] = 13, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(2955), 1, - anon_sym_POUND, - ACTIONS(2957), 1, - anon_sym_SQUOTE, - ACTIONS(4628), 1, + ACTIONS(3401), 6, + anon_sym_async, anon_sym_const, - ACTIONS(4748), 1, - sym_identifier, - ACTIONS(4750), 1, - sym_metavariable, - STATE(1065), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1476), 1, - sym_attribute_item, - STATE(2564), 1, - sym_lifetime, - STATE(2945), 1, - sym_constrained_type_parameter, - STATE(2075), 2, - sym_line_comment, - sym_block_comment, - STATE(3089), 2, - sym_const_parameter, - sym_optional_type_parameter, - [65339] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [66868] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2076), 2, + STATE(2122), 2, sym_line_comment, sym_block_comment, - ACTIONS(4752), 10, + ACTIONS(4862), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_COLON, anon_sym_PIPE, anon_sym_EQ, - anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65362] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [66891] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2077), 2, + STATE(2123), 2, sym_line_comment, sym_block_comment, - ACTIONS(4754), 10, + ACTIONS(4864), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_COLON, anon_sym_PIPE, anon_sym_EQ, - anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65385] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [66914] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2078), 2, + STATE(2124), 2, sym_line_comment, sym_block_comment, - ACTIONS(4756), 10, + ACTIONS(4866), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_COLON, anon_sym_PIPE, anon_sym_EQ, - anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65408] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [66937] = 13, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2079), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4453), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, + ACTIONS(3033), 1, + anon_sym_POUND, + ACTIONS(4854), 1, + sym_crate, + ACTIONS(4868), 1, + sym_identifier, + ACTIONS(4870), 1, anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_EQ, + ACTIONS(4872), 1, anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [65431] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + STATE(1514), 1, + sym_attribute_item, + STATE(2221), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2877), 1, + sym_enum_variant, + STATE(3629), 1, + sym_visibility_modifier, + STATE(2125), 2, + sym_line_comment, + sym_block_comment, + [66978] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2080), 2, + STATE(2126), 2, sym_line_comment, sym_block_comment, - ACTIONS(4664), 10, + ACTIONS(4874), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_COLON, anon_sym_PIPE, anon_sym_EQ, - anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65454] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [67001] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2081), 2, + STATE(2127), 2, sym_line_comment, sym_block_comment, - ACTIONS(4758), 10, + ACTIONS(4876), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_COLON, anon_sym_PIPE, anon_sym_EQ, - anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65477] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [67024] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2082), 2, + STATE(2128), 2, sym_line_comment, sym_block_comment, - ACTIONS(4760), 10, + ACTIONS(4878), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_COLON, anon_sym_PIPE, anon_sym_EQ, - anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65500] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [67047] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2083), 2, + STATE(2129), 2, sym_line_comment, sym_block_comment, - ACTIONS(4762), 10, + ACTIONS(4880), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_COLON, anon_sym_PIPE, anon_sym_EQ, - anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65523] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [67070] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2084), 2, + STATE(2130), 2, sym_line_comment, sym_block_comment, - ACTIONS(4764), 10, + ACTIONS(4882), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_COLON, anon_sym_PIPE, anon_sym_EQ, - anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65546] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [67093] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2085), 2, + STATE(2131), 2, sym_line_comment, sym_block_comment, - ACTIONS(4766), 10, + ACTIONS(4884), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_COLON, anon_sym_PIPE, anon_sym_EQ, - anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65569] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [67116] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2086), 2, + STATE(2132), 2, sym_line_comment, sym_block_comment, - ACTIONS(4768), 10, + ACTIONS(4886), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_COLON, anon_sym_PIPE, anon_sym_EQ, - anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65592] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [67139] = 4, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(2955), 1, - anon_sym_POUND, - ACTIONS(4680), 1, - sym_identifier, - ACTIONS(4684), 1, - anon_sym_DOT_DOT, - ACTIONS(4688), 1, - sym_integer_literal, - ACTIONS(4770), 1, - anon_sym_RBRACE, - STATE(1476), 1, - sym_attribute_item, - STATE(2395), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2087), 2, - sym_line_comment, - sym_block_comment, - STATE(3232), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [65629] = 4, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2088), 2, + STATE(2133), 2, sym_line_comment, sym_block_comment, - ACTIONS(4772), 10, + ACTIONS(4888), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_COLON, anon_sym_PIPE, anon_sym_EQ, - anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65652] = 13, - ACTIONS(67), 1, - anon_sym_pub, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(2955), 1, - anon_sym_POUND, - ACTIONS(4774), 1, - sym_identifier, - ACTIONS(4776), 1, - anon_sym_RBRACE, - ACTIONS(4778), 1, - anon_sym_COMMA, - ACTIONS(4780), 1, - sym_crate, - STATE(1476), 1, - sym_attribute_item, - STATE(2181), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2762), 1, - sym_enum_variant, - STATE(3603), 1, - sym_visibility_modifier, - STATE(2089), 2, - sym_line_comment, - sym_block_comment, - [65693] = 13, - ACTIONS(67), 1, - anon_sym_pub, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [67162] = 4, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(2955), 1, - anon_sym_POUND, - ACTIONS(4780), 1, - sym_crate, - ACTIONS(4782), 1, - sym_identifier, - ACTIONS(4784), 1, - anon_sym_RBRACE, - ACTIONS(4786), 1, - anon_sym_COMMA, - STATE(1476), 1, - sym_attribute_item, - STATE(2187), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2791), 1, - sym_field_declaration, - STATE(3560), 1, - sym_visibility_modifier, - STATE(2090), 2, - sym_line_comment, - sym_block_comment, - [65734] = 4, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2091), 2, + STATE(2134), 2, sym_line_comment, sym_block_comment, - ACTIONS(4690), 10, + ACTIONS(4890), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_COLON, anon_sym_PIPE, anon_sym_EQ, - anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65757] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [67185] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2092), 2, + STATE(2135), 2, sym_line_comment, sym_block_comment, - ACTIONS(4788), 10, + ACTIONS(4892), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_COLON, anon_sym_PIPE, anon_sym_EQ, - anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65780] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [67208] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2093), 2, + STATE(2136), 2, sym_line_comment, sym_block_comment, - ACTIONS(4790), 10, + ACTIONS(4894), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_COLON, anon_sym_PIPE, anon_sym_EQ, - anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65803] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [67231] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2094), 2, + STATE(2137), 2, sym_line_comment, sym_block_comment, - ACTIONS(4792), 10, + ACTIONS(4896), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_COLON, anon_sym_PIPE, anon_sym_EQ, - anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65826] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [67254] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2095), 2, + ACTIONS(4029), 1, + anon_sym_LT2, + ACTIONS(4181), 1, + anon_sym_COLON_COLON, + ACTIONS(4898), 1, + anon_sym_BANG, + STATE(1645), 1, + sym_type_arguments, + STATE(2138), 2, sym_line_comment, sym_block_comment, - ACTIONS(4794), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [65849] = 4, - ACTIONS(101), 1, + ACTIONS(3401), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [67285] = 8, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4527), 1, + anon_sym_LT2, + ACTIONS(4605), 1, + anon_sym_BANG, + ACTIONS(4640), 1, + anon_sym_COLON_COLON, + STATE(1966), 1, + sym_type_arguments, + STATE(2139), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3401), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [67316] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2096), 2, + STATE(2140), 2, sym_line_comment, sym_block_comment, - ACTIONS(4796), 10, + ACTIONS(4900), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_COLON, anon_sym_PIPE, anon_sym_EQ, - anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65872] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [67339] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2097), 2, + STATE(2141), 2, sym_line_comment, sym_block_comment, - ACTIONS(4798), 10, + ACTIONS(4782), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_COLON, anon_sym_PIPE, anon_sym_EQ, - anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65895] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [67362] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2098), 2, + STATE(2142), 2, sym_line_comment, sym_block_comment, - ACTIONS(4800), 10, + ACTIONS(4902), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_COLON, anon_sym_PIPE, anon_sym_EQ, - anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65918] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [67385] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2099), 2, + STATE(2143), 2, sym_line_comment, sym_block_comment, - ACTIONS(4802), 10, + ACTIONS(4904), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_COLON, anon_sym_PIPE, anon_sym_EQ, - anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65941] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [67408] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2100), 2, + STATE(2144), 2, sym_line_comment, sym_block_comment, - ACTIONS(1366), 10, + ACTIONS(4906), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_COLON, anon_sym_PIPE, anon_sym_EQ, - anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65964] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [67431] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2101), 2, + STATE(2145), 2, sym_line_comment, sym_block_comment, - ACTIONS(4804), 10, + ACTIONS(4908), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_COLON, anon_sym_PIPE, anon_sym_EQ, - anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65987] = 4, - ACTIONS(101), 1, + [67454] = 13, + ACTIONS(69), 1, + anon_sym_pub, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3033), 1, + anon_sym_POUND, + ACTIONS(4854), 1, + sym_crate, + ACTIONS(4868), 1, + sym_identifier, + ACTIONS(4910), 1, + anon_sym_RBRACE, + ACTIONS(4912), 1, + anon_sym_COMMA, + STATE(1514), 1, + sym_attribute_item, + STATE(2250), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3030), 1, + sym_enum_variant, + STATE(3629), 1, + sym_visibility_modifier, + STATE(2146), 2, + sym_line_comment, + sym_block_comment, + [67495] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2102), 2, + STATE(2147), 2, sym_line_comment, sym_block_comment, - ACTIONS(4806), 10, + ACTIONS(4914), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_COLON, anon_sym_PIPE, anon_sym_EQ, - anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66010] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [67518] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2103), 2, + STATE(2148), 2, sym_line_comment, sym_block_comment, - ACTIONS(4808), 10, + ACTIONS(4916), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_COLON, anon_sym_PIPE, anon_sym_EQ, - anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66033] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [67541] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2104), 2, + STATE(2149), 2, sym_line_comment, sym_block_comment, - ACTIONS(4810), 10, + ACTIONS(4918), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_COLON, anon_sym_PIPE, anon_sym_EQ, - anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66056] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [67564] = 4, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(2955), 1, - anon_sym_POUND, - ACTIONS(4680), 1, - sym_identifier, - ACTIONS(4684), 1, - anon_sym_DOT_DOT, - ACTIONS(4688), 1, - sym_integer_literal, - ACTIONS(4812), 1, - anon_sym_RBRACE, - STATE(1476), 1, - sym_attribute_item, - STATE(2395), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2105), 2, - sym_line_comment, - sym_block_comment, - STATE(3232), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [66093] = 4, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2106), 2, + STATE(2150), 2, sym_line_comment, sym_block_comment, - ACTIONS(4814), 10, + ACTIONS(4920), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_COLON, anon_sym_PIPE, anon_sym_EQ, - anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66116] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [67587] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2107), 2, + STATE(2151), 2, sym_line_comment, sym_block_comment, - ACTIONS(4816), 10, + ACTIONS(4922), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_COLON, anon_sym_PIPE, anon_sym_EQ, - anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66139] = 13, - ACTIONS(67), 1, - anon_sym_pub, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(2955), 1, - anon_sym_POUND, - ACTIONS(4774), 1, - sym_identifier, - ACTIONS(4780), 1, - sym_crate, - ACTIONS(4818), 1, - anon_sym_RBRACE, - ACTIONS(4820), 1, - anon_sym_COMMA, - STATE(1476), 1, - sym_attribute_item, - STATE(2188), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3012), 1, - sym_enum_variant, - STATE(3603), 1, - sym_visibility_modifier, - STATE(2108), 2, - sym_line_comment, - sym_block_comment, - [66180] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [67610] = 4, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(1564), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - STATE(2100), 1, - sym_block, - STATE(3582), 1, - sym_label, - STATE(2109), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3323), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [66211] = 4, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2110), 2, + STATE(2152), 2, sym_line_comment, sym_block_comment, - ACTIONS(4822), 10, + ACTIONS(4924), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_COLON, anon_sym_PIPE, anon_sym_EQ, - anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66234] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [67633] = 11, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, + ACTIONS(3033), 1, anon_sym_POUND, - ACTIONS(4680), 1, + ACTIONS(4812), 1, sym_identifier, - ACTIONS(4684), 1, + ACTIONS(4818), 1, anon_sym_DOT_DOT, - ACTIONS(4688), 1, + ACTIONS(4820), 1, sym_integer_literal, - ACTIONS(4824), 1, + ACTIONS(4926), 1, anon_sym_RBRACE, - STATE(1476), 1, + STATE(1514), 1, sym_attribute_item, - STATE(2395), 1, + STATE(2500), 1, aux_sym_enum_variant_list_repeat1, - STATE(2111), 2, + STATE(2153), 2, sym_line_comment, sym_block_comment, - STATE(3232), 3, + STATE(3330), 3, sym_shorthand_field_initializer, sym_field_initializer, sym_base_field_initializer, - [66271] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [67670] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2112), 2, + STATE(2154), 2, sym_line_comment, sym_block_comment, - ACTIONS(4826), 10, + ACTIONS(4928), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_COLON, anon_sym_PIPE, anon_sym_EQ, - anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66294] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4445), 1, - anon_sym_BANG, - ACTIONS(4455), 1, - anon_sym_LPAREN, - ACTIONS(4459), 1, - anon_sym_COLON, - ACTIONS(4463), 1, - anon_sym_DOT_DOT, - ACTIONS(4828), 1, - anon_sym_COLON_COLON, - ACTIONS(4465), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2113), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4453), 3, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COMMA, - [66329] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [67693] = 4, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4443), 1, - anon_sym_LPAREN, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4830), 1, - anon_sym_LBRACE, - STATE(1933), 1, - sym_type_arguments, - STATE(1947), 1, - sym_parameters, - STATE(2114), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3299), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_PLUS, - anon_sym_COMMA, - [66362] = 4, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2115), 2, + STATE(2155), 2, sym_line_comment, sym_block_comment, - ACTIONS(4832), 10, + ACTIONS(4930), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_COLON, anon_sym_PIPE, anon_sym_EQ, - anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66385] = 13, - ACTIONS(67), 1, - anon_sym_pub, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [67716] = 10, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(2955), 1, - anon_sym_POUND, - ACTIONS(4780), 1, - sym_crate, - ACTIONS(4782), 1, - sym_identifier, - ACTIONS(4834), 1, - anon_sym_RBRACE, - ACTIONS(4836), 1, - anon_sym_COMMA, - STATE(1476), 1, - sym_attribute_item, - STATE(2226), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2814), 1, - sym_field_declaration, - STATE(3560), 1, - sym_visibility_modifier, - STATE(2116), 2, - sym_line_comment, - sym_block_comment, - [66426] = 10, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, + ACTIONS(4527), 1, anon_sym_LT2, - ACTIONS(4838), 1, + ACTIONS(4932), 1, anon_sym_BANG, - ACTIONS(4840), 1, + ACTIONS(4934), 1, anon_sym_DOT_DOT, - ACTIONS(4844), 1, + ACTIONS(4938), 1, anon_sym_COLON_COLON, - STATE(1930), 1, + STATE(1966), 1, sym_type_arguments, - ACTIONS(4842), 2, + ACTIONS(4936), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2117), 2, + STATE(2156), 2, sym_line_comment, sym_block_comment, - ACTIONS(4519), 3, + ACTIONS(4601), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [66461] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3945), 1, - anon_sym_LT2, - ACTIONS(4095), 1, - anon_sym_COLON_COLON, - ACTIONS(4846), 1, - anon_sym_BANG, - STATE(1581), 1, - sym_type_arguments, - STATE(2118), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3323), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [66492] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [67751] = 10, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3251), 1, - anon_sym_LT2, - ACTIONS(3541), 1, - anon_sym_COLON_COLON, - ACTIONS(4848), 1, - anon_sym_BANG, - STATE(1048), 1, - sym_type_arguments, - STATE(2119), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3323), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [66523] = 10, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, + ACTIONS(4527), 1, anon_sym_LT2, - ACTIONS(4523), 1, + ACTIONS(4605), 1, anon_sym_BANG, - ACTIONS(4525), 1, + ACTIONS(4607), 1, anon_sym_DOT_DOT, - ACTIONS(4533), 1, + ACTIONS(4632), 1, anon_sym_COLON_COLON, - STATE(1930), 1, + STATE(1966), 1, sym_type_arguments, - ACTIONS(4527), 2, + ACTIONS(4609), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2120), 2, + STATE(2157), 2, sym_line_comment, sym_block_comment, - ACTIONS(4519), 3, + ACTIONS(4601), 3, anon_sym_RBRACK, - anon_sym_PIPE, anon_sym_COMMA, - [66558] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_PIPE, + [67786] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2121), 2, + STATE(2158), 2, sym_line_comment, sym_block_comment, - ACTIONS(4850), 10, + ACTIONS(1321), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_COLON, anon_sym_PIPE, anon_sym_EQ, - anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66581] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [67809] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2122), 2, + STATE(2159), 2, sym_line_comment, sym_block_comment, - ACTIONS(4852), 10, + ACTIONS(4940), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_COLON, anon_sym_PIPE, anon_sym_EQ, - anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66604] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(2955), 1, - anon_sym_POUND, - ACTIONS(4680), 1, - sym_identifier, - ACTIONS(4684), 1, - anon_sym_DOT_DOT, - ACTIONS(4688), 1, - sym_integer_literal, - ACTIONS(4854), 1, - anon_sym_RBRACE, - STATE(1476), 1, - sym_attribute_item, - STATE(2395), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2123), 2, - sym_line_comment, - sym_block_comment, - STATE(3232), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [66641] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [67832] = 4, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4523), 1, - anon_sym_BANG, - ACTIONS(4554), 1, - anon_sym_COLON_COLON, - STATE(1930), 1, - sym_type_arguments, - STATE(2124), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3323), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [66672] = 4, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2125), 2, + STATE(2160), 2, sym_line_comment, sym_block_comment, - ACTIONS(4856), 10, + ACTIONS(4531), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_COLON, anon_sym_PIPE, anon_sym_EQ, - anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66695] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [67855] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2126), 2, + STATE(2161), 2, sym_line_comment, sym_block_comment, - ACTIONS(4858), 10, + ACTIONS(4942), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_COLON, anon_sym_PIPE, anon_sym_EQ, - anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66718] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [67878] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2127), 2, + ACTIONS(4521), 1, + anon_sym_LPAREN, + ACTIONS(4527), 1, + anon_sym_LT2, + ACTIONS(4944), 1, + anon_sym_for, + STATE(1968), 1, + sym_type_arguments, + STATE(1987), 1, + sym_parameters, + STATE(2162), 2, sym_line_comment, sym_block_comment, - ACTIONS(4860), 10, + ACTIONS(3377), 4, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [66741] = 5, - ACTIONS(101), 1, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [67910] = 12, + ACTIONS(69), 1, + anon_sym_pub, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3033), 1, + anon_sym_POUND, + ACTIONS(4854), 1, + sym_crate, + ACTIONS(4868), 1, + sym_identifier, + ACTIONS(4946), 1, + anon_sym_RBRACE, + STATE(1514), 1, + sym_attribute_item, + STATE(2237), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3274), 1, + sym_enum_variant, + STATE(3629), 1, + sym_visibility_modifier, + STATE(2163), 2, + sym_line_comment, + sym_block_comment, + [67948] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3271), 1, - anon_sym_DOT_DOT, - STATE(2128), 2, + ACTIONS(4950), 1, + anon_sym_PLUS, + STATE(2164), 3, sym_line_comment, sym_block_comment, - ACTIONS(3273), 8, + aux_sym_trait_bounds_repeat1, + ACTIONS(4948), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_GT, + anon_sym_SQUOTE, + anon_sym_where, + [67972] = 9, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4684), 1, anon_sym_LPAREN, - anon_sym_EQ_GT, + ACTIONS(4688), 1, anon_sym_BANG, - anon_sym_PIPE, + ACTIONS(4692), 1, + anon_sym_DOT_DOT, + ACTIONS(4953), 1, + anon_sym_COLON_COLON, + ACTIONS(4694), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, + STATE(2165), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4531), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, anon_sym_if, - [66765] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [68004] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, - anon_sym_POUND, - ACTIONS(4680), 1, - sym_identifier, - ACTIONS(4684), 1, - anon_sym_DOT_DOT, - ACTIONS(4688), 1, - sym_integer_literal, - STATE(1476), 1, - sym_attribute_item, - STATE(2395), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2129), 2, + ACTIONS(4955), 1, + anon_sym_SEMI, + ACTIONS(4957), 1, + anon_sym_LBRACE, + STATE(1252), 1, + sym_declaration_list, + STATE(2166), 2, sym_line_comment, sym_block_comment, - STATE(3232), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [66799] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3401), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [68032] = 11, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4527), 1, + anon_sym_LT2, + ACTIONS(4601), 1, + anon_sym_PIPE, ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4607), 1, + anon_sym_COLON, + ACTIONS(4605), 1, anon_sym_BANG, - ACTIONS(4611), 1, + ACTIONS(4607), 1, anon_sym_DOT_DOT, - ACTIONS(4862), 1, + ACTIONS(4658), 1, anon_sym_COLON_COLON, - ACTIONS(4613), 2, + STATE(1966), 1, + sym_type_arguments, + ACTIONS(4609), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2130), 2, + STATE(2167), 2, sym_line_comment, sym_block_comment, - ACTIONS(4453), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [66831] = 9, - ACTIONS(101), 1, + [68068] = 12, + ACTIONS(69), 1, + anon_sym_pub, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3033), 1, + anon_sym_POUND, + ACTIONS(4848), 1, + sym_identifier, + ACTIONS(4854), 1, + sym_crate, + ACTIONS(4959), 1, + anon_sym_RBRACE, + STATE(1514), 1, + sym_attribute_item, + STATE(2254), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3224), 1, + sym_field_declaration, + STATE(3698), 1, + sym_visibility_modifier, + STATE(2168), 2, + sym_line_comment, + sym_block_comment, + [68106] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, + ACTIONS(4521), 1, anon_sym_LPAREN, - ACTIONS(4449), 1, + ACTIONS(4527), 1, anon_sym_LT2, - ACTIONS(4864), 1, + ACTIONS(4961), 1, anon_sym_for, - STATE(1933), 1, + STATE(1968), 1, sym_type_arguments, - STATE(1947), 1, + STATE(1987), 1, sym_parameters, - STATE(2131), 2, + STATE(2169), 2, sym_line_comment, sym_block_comment, - ACTIONS(3299), 4, + ACTIONS(3377), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [66863] = 12, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [68138] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4866), 1, - anon_sym_SEMI, - ACTIONS(4868), 1, + ACTIONS(4523), 1, + anon_sym_BANG, + ACTIONS(4533), 1, anon_sym_LPAREN, - ACTIONS(4870), 1, - anon_sym_LBRACE, - ACTIONS(4872), 1, - anon_sym_LT, - ACTIONS(4874), 1, - anon_sym_where, - STATE(697), 1, - sym_field_declaration_list, - STATE(2239), 1, - sym_type_parameters, - STATE(2875), 1, - sym_ordered_field_declaration_list, - STATE(3060), 1, - sym_where_clause, - STATE(2132), 2, + ACTIONS(4541), 1, + anon_sym_DOT_DOT, + ACTIONS(4963), 1, + anon_sym_COLON_COLON, + ACTIONS(4543), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2170), 2, sym_line_comment, sym_block_comment, - [66901] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4531), 3, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_PIPE, + [68170] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4876), 1, - anon_sym_SEMI, - ACTIONS(4878), 1, - anon_sym_LBRACE, - STATE(648), 1, - sym_declaration_list, - STATE(2133), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3323), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [66929] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3311), 1, + ACTIONS(3353), 1, anon_sym_DOT_DOT, - STATE(2134), 2, + STATE(2171), 2, sym_line_comment, sym_block_comment, - ACTIONS(3313), 8, + ACTIONS(3355), 8, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_BANG, @@ -165176,27266 +168772,28197 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_if, - [66953] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [68194] = 12, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3299), 1, - anon_sym_PLUS, - ACTIONS(4519), 1, - anon_sym_PIPE, - ACTIONS(4521), 1, - anon_sym_COLON, - ACTIONS(4525), 1, - anon_sym_DOT_DOT, - ACTIONS(4531), 1, - anon_sym_COLON_COLON, - ACTIONS(4527), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4880), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2135), 2, + ACTIONS(3033), 1, + anon_sym_POUND, + ACTIONS(4848), 1, + sym_identifier, + ACTIONS(4854), 1, + sym_crate, + ACTIONS(4965), 1, + anon_sym_RBRACE, + STATE(1514), 1, + sym_attribute_item, + STATE(2254), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3224), 1, + sym_field_declaration, + STATE(3698), 1, + sym_visibility_modifier, + STATE(2172), 2, sym_line_comment, sym_block_comment, - [66987] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [68232] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4519), 1, + ACTIONS(4601), 1, anon_sym_PIPE, - ACTIONS(4521), 1, + ACTIONS(4603), 1, anon_sym_COLON, - ACTIONS(4525), 1, + ACTIONS(4607), 1, anon_sym_DOT_DOT, - ACTIONS(4574), 1, + ACTIONS(4658), 1, anon_sym_COLON_COLON, - ACTIONS(4527), 2, + ACTIONS(4609), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2136), 2, + STATE(2173), 2, sym_line_comment, sym_block_comment, - ACTIONS(3299), 3, + ACTIONS(3377), 3, anon_sym_RPAREN, - anon_sym_PLUS, anon_sym_COMMA, - [67019] = 7, - ACTIONS(101), 1, + anon_sym_PLUS, + [68264] = 12, + ACTIONS(69), 1, + anon_sym_pub, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3033), 1, + anon_sym_POUND, + ACTIONS(4854), 1, + sym_crate, + ACTIONS(4868), 1, + sym_identifier, + ACTIONS(4967), 1, + anon_sym_RBRACE, + STATE(1514), 1, + sym_attribute_item, + STATE(2237), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3274), 1, + sym_enum_variant, + STATE(3629), 1, + sym_visibility_modifier, + STATE(2174), 2, + sym_line_comment, + sym_block_comment, + [68302] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3251), 1, + ACTIONS(4029), 1, anon_sym_LT2, - ACTIONS(4883), 1, + ACTIONS(4969), 1, anon_sym_COLON_COLON, - STATE(1048), 1, + STATE(1645), 1, sym_type_arguments, - STATE(2137), 2, + STATE(2175), 2, sym_line_comment, sym_block_comment, - ACTIONS(3323), 6, + ACTIONS(3401), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [67047] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [68330] = 9, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3279), 1, - anon_sym_DOT_DOT, - STATE(2138), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3281), 8, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_if, - [67071] = 12, - ACTIONS(67), 1, - anon_sym_pub, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, - anon_sym_POUND, - ACTIONS(4774), 1, - sym_identifier, - ACTIONS(4780), 1, - sym_crate, - ACTIONS(4885), 1, - anon_sym_RBRACE, - STATE(1476), 1, - sym_attribute_item, - STATE(2212), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3256), 1, - sym_enum_variant, - STATE(3603), 1, - sym_visibility_modifier, - STATE(2139), 2, + ACTIONS(4521), 1, + anon_sym_LPAREN, + ACTIONS(4527), 1, + anon_sym_LT2, + ACTIONS(4971), 1, + anon_sym_for, + STATE(1968), 1, + sym_type_arguments, + STATE(1987), 1, + sym_parameters, + STATE(2176), 2, sym_line_comment, sym_block_comment, - [67109] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3377), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [68362] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, + ACTIONS(4521), 1, anon_sym_LPAREN, - ACTIONS(4449), 1, + ACTIONS(4527), 1, anon_sym_LT2, - ACTIONS(4887), 1, + ACTIONS(4973), 1, anon_sym_for, - STATE(1933), 1, + STATE(1968), 1, sym_type_arguments, - STATE(1947), 1, + STATE(1987), 1, sym_parameters, - STATE(2140), 2, + STATE(2177), 2, sym_line_comment, sym_block_comment, - ACTIONS(3299), 4, + ACTIONS(3377), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [67141] = 12, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [68394] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4868), 1, + ACTIONS(4521), 1, anon_sym_LPAREN, - ACTIONS(4872), 1, - anon_sym_LT, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4889), 1, + ACTIONS(4527), 1, + anon_sym_LT2, + ACTIONS(4975), 1, + anon_sym_for, + STATE(1968), 1, + sym_type_arguments, + STATE(1987), 1, + sym_parameters, + STATE(2178), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3377), 4, anon_sym_SEMI, - ACTIONS(4891), 1, anon_sym_LBRACE, - STATE(1283), 1, - sym_field_declaration_list, - STATE(2255), 1, - sym_type_parameters, - STATE(2826), 1, - sym_ordered_field_declaration_list, - STATE(3136), 1, - sym_where_clause, - STATE(2141), 2, + anon_sym_PLUS, + anon_sym_where, + [68426] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3373), 1, + anon_sym_DOT_DOT, + STATE(2179), 2, sym_line_comment, sym_block_comment, - [67179] = 12, - ACTIONS(67), 1, - anon_sym_pub, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3375), 8, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_if, + [68450] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, - anon_sym_POUND, - ACTIONS(4774), 1, - sym_identifier, - ACTIONS(4780), 1, - sym_crate, - ACTIONS(4893), 1, - anon_sym_RBRACE, - STATE(1476), 1, - sym_attribute_item, - STATE(2212), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3256), 1, - sym_enum_variant, - STATE(3603), 1, - sym_visibility_modifier, - STATE(2142), 2, + ACTIONS(4979), 1, + anon_sym_PLUS, + STATE(2188), 1, + aux_sym_trait_bounds_repeat1, + STATE(2180), 2, sym_line_comment, sym_block_comment, - [67217] = 12, - ACTIONS(67), 1, - anon_sym_pub, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4977), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_GT, + anon_sym_SQUOTE, + anon_sym_where, + [68476] = 10, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, + ACTIONS(3033), 1, anon_sym_POUND, - ACTIONS(4774), 1, + ACTIONS(4812), 1, sym_identifier, - ACTIONS(4780), 1, - sym_crate, - ACTIONS(4895), 1, - anon_sym_RBRACE, - STATE(1476), 1, + ACTIONS(4818), 1, + anon_sym_DOT_DOT, + ACTIONS(4820), 1, + sym_integer_literal, + STATE(1514), 1, sym_attribute_item, - STATE(2212), 1, + STATE(2500), 1, aux_sym_enum_variant_list_repeat1, - STATE(3256), 1, - sym_enum_variant, - STATE(3603), 1, - sym_visibility_modifier, - STATE(2143), 2, + STATE(2181), 2, sym_line_comment, sym_block_comment, - [67255] = 12, - ACTIONS(67), 1, - anon_sym_pub, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + STATE(3330), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [68510] = 12, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, - anon_sym_POUND, - ACTIONS(4780), 1, - sym_crate, - ACTIONS(4782), 1, - sym_identifier, - ACTIONS(4897), 1, - anon_sym_RBRACE, - STATE(1476), 1, - sym_attribute_item, - STATE(2205), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3078), 1, - sym_field_declaration, - STATE(3560), 1, - sym_visibility_modifier, - STATE(2144), 2, + ACTIONS(4981), 1, + anon_sym_SEMI, + ACTIONS(4983), 1, + anon_sym_LPAREN, + ACTIONS(4985), 1, + anon_sym_LBRACE, + ACTIONS(4987), 1, + anon_sym_LT, + ACTIONS(4989), 1, + anon_sym_where, + STATE(526), 1, + sym_field_declaration_list, + STATE(2316), 1, + sym_type_parameters, + STATE(2822), 1, + sym_ordered_field_declaration_list, + STATE(3361), 1, + sym_where_clause, + STATE(2182), 2, sym_line_comment, sym_block_comment, - [67293] = 12, - ACTIONS(67), 1, + [68548] = 12, + ACTIONS(69), 1, anon_sym_pub, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, + ACTIONS(3033), 1, anon_sym_POUND, - ACTIONS(4780), 1, - sym_crate, - ACTIONS(4782), 1, + ACTIONS(4848), 1, sym_identifier, - ACTIONS(4899), 1, + ACTIONS(4854), 1, + sym_crate, + ACTIONS(4991), 1, anon_sym_RBRACE, - STATE(1476), 1, + STATE(1514), 1, sym_attribute_item, - STATE(2205), 1, + STATE(2254), 1, aux_sym_enum_variant_list_repeat1, - STATE(3078), 1, + STATE(3224), 1, sym_field_declaration, - STATE(3560), 1, + STATE(3698), 1, sym_visibility_modifier, - STATE(2145), 2, + STATE(2183), 2, sym_line_comment, sym_block_comment, - [67331] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [68586] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4903), 1, + ACTIONS(4993), 1, anon_sym_PLUS, - STATE(2163), 1, + STATE(2188), 1, aux_sym_trait_bounds_repeat1, - STATE(2146), 2, + STATE(2184), 2, sym_line_comment, sym_block_comment, - ACTIONS(4901), 7, + ACTIONS(4977), 7, anon_sym_SEMI, anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_EQ, anon_sym_GT, - anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_where, - [67357] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4443), 1, - anon_sym_LPAREN, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4905), 1, - anon_sym_for, - STATE(1933), 1, - sym_type_arguments, - STATE(1947), 1, - sym_parameters, - STATE(2147), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3299), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [67389] = 12, - ACTIONS(67), 1, + [68612] = 12, + ACTIONS(69), 1, anon_sym_pub, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, + ACTIONS(3033), 1, anon_sym_POUND, - ACTIONS(4780), 1, - sym_crate, - ACTIONS(4782), 1, + ACTIONS(4848), 1, sym_identifier, - ACTIONS(4907), 1, + ACTIONS(4854), 1, + sym_crate, + ACTIONS(4995), 1, anon_sym_RBRACE, - STATE(1476), 1, + STATE(1514), 1, sym_attribute_item, - STATE(2205), 1, + STATE(2254), 1, aux_sym_enum_variant_list_repeat1, - STATE(3078), 1, + STATE(3224), 1, sym_field_declaration, - STATE(3560), 1, + STATE(3698), 1, sym_visibility_modifier, - STATE(2148), 2, + STATE(2185), 2, sym_line_comment, sym_block_comment, - [67427] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [68650] = 12, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3295), 1, - anon_sym_DOT_DOT, - STATE(2149), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3297), 8, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_if, - [67451] = 11, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4519), 1, - anon_sym_PIPE, - ACTIONS(4521), 1, - anon_sym_COLON, - ACTIONS(4523), 1, - anon_sym_BANG, - ACTIONS(4525), 1, - anon_sym_DOT_DOT, - ACTIONS(4574), 1, - anon_sym_COLON_COLON, - STATE(1930), 1, - sym_type_arguments, - ACTIONS(4527), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2150), 2, + ACTIONS(3033), 1, + anon_sym_POUND, + ACTIONS(4854), 1, + sym_crate, + ACTIONS(4868), 1, + sym_identifier, + ACTIONS(4997), 1, + anon_sym_RBRACE, + STATE(1514), 1, + sym_attribute_item, + STATE(2237), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3274), 1, + sym_enum_variant, + STATE(3629), 1, + sym_visibility_modifier, + STATE(2186), 2, sym_line_comment, sym_block_comment, - [67487] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [68688] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, + ACTIONS(3329), 1, anon_sym_LT2, - ACTIONS(4909), 1, + ACTIONS(4999), 1, anon_sym_COLON_COLON, - STATE(1930), 1, + STATE(1226), 1, sym_type_arguments, - STATE(2151), 2, + STATE(2187), 2, sym_line_comment, sym_block_comment, - ACTIONS(3323), 6, + ACTIONS(3401), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [67515] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [68716] = 6, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4525), 1, - anon_sym_DOT_DOT, - ACTIONS(4533), 1, - anon_sym_COLON_COLON, - ACTIONS(4880), 1, - anon_sym_RBRACK, - ACTIONS(3299), 2, - anon_sym_SEMI, - anon_sym_PLUS, - ACTIONS(4519), 2, - anon_sym_PIPE, - anon_sym_COMMA, - ACTIONS(4527), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2152), 2, - sym_line_comment, - sym_block_comment, - [67547] = 6, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4911), 1, + ACTIONS(5003), 1, anon_sym_PLUS, - STATE(2163), 1, + STATE(2164), 1, aux_sym_trait_bounds_repeat1, - STATE(2153), 2, + STATE(2188), 2, sym_line_comment, sym_block_comment, - ACTIONS(4901), 7, + ACTIONS(5001), 7, anon_sym_SEMI, anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_EQ, anon_sym_GT, - anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_where, - [67573] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [68742] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4913), 1, + ACTIONS(4521), 1, + anon_sym_LPAREN, + ACTIONS(4527), 1, + anon_sym_LT2, + ACTIONS(5005), 1, + anon_sym_for, + STATE(1968), 1, + sym_type_arguments, + STATE(1987), 1, + sym_parameters, + STATE(2189), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3377), 4, anon_sym_SEMI, - ACTIONS(4915), 1, anon_sym_LBRACE, - STATE(1301), 1, + anon_sym_PLUS, + anon_sym_where, + [68774] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4957), 1, + anon_sym_LBRACE, + ACTIONS(5007), 1, + anon_sym_SEMI, + STATE(1146), 1, sym_declaration_list, - STATE(2154), 2, + STATE(2190), 2, sym_line_comment, sym_block_comment, - ACTIONS(3323), 6, + ACTIONS(3401), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [67601] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [68802] = 6, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4917), 1, - anon_sym_LPAREN, - ACTIONS(4922), 1, - anon_sym_LBRACK, - ACTIONS(4925), 1, - anon_sym_LBRACE, - STATE(3337), 1, - sym_token_tree_pattern, - STATE(3418), 1, - sym_macro_rule, - ACTIONS(4920), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - STATE(2155), 3, - sym_line_comment, - sym_block_comment, - aux_sym_macro_definition_repeat1, - [67633] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4930), 1, + ACTIONS(5003), 1, anon_sym_PLUS, - STATE(2156), 3, + STATE(2188), 1, + aux_sym_trait_bounds_repeat1, + STATE(2191), 2, sym_line_comment, sym_block_comment, - aux_sym_trait_bounds_repeat1, - ACTIONS(4928), 7, + ACTIONS(4977), 7, anon_sym_SEMI, anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_EQ, anon_sym_GT, - anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_where, - [67657] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [68828] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4445), 1, - anon_sym_BANG, - ACTIONS(4455), 1, - anon_sym_LPAREN, - ACTIONS(4463), 1, + ACTIONS(4607), 1, anon_sym_DOT_DOT, - ACTIONS(4933), 1, + ACTIONS(4632), 1, anon_sym_COLON_COLON, - ACTIONS(4465), 2, + ACTIONS(5009), 1, + anon_sym_RBRACK, + ACTIONS(3377), 2, + anon_sym_SEMI, + anon_sym_PLUS, + ACTIONS(4601), 2, + anon_sym_COMMA, + anon_sym_PIPE, + ACTIONS(4609), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2157), 2, + STATE(2192), 2, sym_line_comment, sym_block_comment, - ACTIONS(4453), 3, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_COMMA, - [67689] = 12, - ACTIONS(67), 1, - anon_sym_pub, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [68860] = 9, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(2955), 1, - anon_sym_POUND, - ACTIONS(4774), 1, - sym_identifier, - ACTIONS(4780), 1, - sym_crate, - ACTIONS(4935), 1, - anon_sym_RBRACE, - STATE(1476), 1, - sym_attribute_item, - STATE(2212), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3256), 1, - sym_enum_variant, - STATE(3603), 1, - sym_visibility_modifier, - STATE(2158), 2, - sym_line_comment, - sym_block_comment, - [67727] = 12, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4868), 1, + ACTIONS(5012), 1, anon_sym_LPAREN, - ACTIONS(4870), 1, + ACTIONS(5017), 1, + anon_sym_LBRACK, + ACTIONS(5020), 1, anon_sym_LBRACE, - ACTIONS(4872), 1, - anon_sym_LT, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4937), 1, - anon_sym_SEMI, - STATE(479), 1, - sym_field_declaration_list, - STATE(2260), 1, - sym_type_parameters, - STATE(3009), 1, - sym_ordered_field_declaration_list, - STATE(3128), 1, - sym_where_clause, - STATE(2159), 2, + STATE(3445), 1, + sym_macro_rule, + STATE(3508), 1, + sym_token_tree_pattern, + ACTIONS(5015), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + STATE(2193), 3, sym_line_comment, sym_block_comment, - [67765] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + aux_sym_macro_rules_repeat1, + [68892] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4878), 1, - anon_sym_LBRACE, - ACTIONS(4939), 1, - anon_sym_SEMI, - STATE(655), 1, - sym_declaration_list, - STATE(2160), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3323), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [67793] = 12, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4868), 1, - anon_sym_LPAREN, - ACTIONS(4872), 1, - anon_sym_LT, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4891), 1, - anon_sym_LBRACE, - ACTIONS(4941), 1, - anon_sym_SEMI, - STATE(1187), 1, - sym_field_declaration_list, - STATE(2251), 1, - sym_type_parameters, - STATE(2813), 1, - sym_ordered_field_declaration_list, - STATE(3290), 1, - sym_where_clause, - STATE(2161), 2, + ACTIONS(3365), 1, + anon_sym_DOT_DOT, + STATE(2194), 2, sym_line_comment, sym_block_comment, - [67831] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3945), 1, - anon_sym_LT2, - ACTIONS(4943), 1, + ACTIONS(3367), 8, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - STATE(1581), 1, - sym_type_arguments, - STATE(2162), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3323), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [67859] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4947), 1, - anon_sym_PLUS, - STATE(2156), 1, - aux_sym_trait_bounds_repeat1, - STATE(2163), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4945), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_where, - [67885] = 12, - ACTIONS(67), 1, + anon_sym_if, + [68916] = 12, + ACTIONS(69), 1, anon_sym_pub, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, + ACTIONS(3033), 1, anon_sym_POUND, - ACTIONS(4780), 1, + ACTIONS(4854), 1, sym_crate, - ACTIONS(4782), 1, + ACTIONS(4868), 1, sym_identifier, - ACTIONS(4949), 1, + ACTIONS(5023), 1, anon_sym_RBRACE, - STATE(1476), 1, + STATE(1514), 1, sym_attribute_item, - STATE(2205), 1, + STATE(2237), 1, aux_sym_enum_variant_list_repeat1, - STATE(3078), 1, - sym_field_declaration, - STATE(3560), 1, + STATE(3274), 1, + sym_enum_variant, + STATE(3629), 1, sym_visibility_modifier, - STATE(2164), 2, - sym_line_comment, - sym_block_comment, - [67923] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4443), 1, - anon_sym_LPAREN, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4951), 1, - anon_sym_for, - STATE(1933), 1, - sym_type_arguments, - STATE(1947), 1, - sym_parameters, - STATE(2165), 2, + STATE(2195), 2, sym_line_comment, sym_block_comment, - ACTIONS(3299), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [67955] = 12, - ACTIONS(67), 1, + [68954] = 12, + ACTIONS(69), 1, anon_sym_pub, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, + ACTIONS(3033), 1, anon_sym_POUND, - ACTIONS(4774), 1, + ACTIONS(4848), 1, sym_identifier, - ACTIONS(4780), 1, + ACTIONS(4854), 1, sym_crate, - ACTIONS(4953), 1, + ACTIONS(5025), 1, anon_sym_RBRACE, - STATE(1476), 1, + STATE(1514), 1, sym_attribute_item, - STATE(2212), 1, + STATE(2254), 1, aux_sym_enum_variant_list_repeat1, - STATE(3256), 1, - sym_enum_variant, - STATE(3603), 1, + STATE(3224), 1, + sym_field_declaration, + STATE(3698), 1, sym_visibility_modifier, - STATE(2166), 2, + STATE(2196), 2, sym_line_comment, sym_block_comment, - [67993] = 12, - ACTIONS(67), 1, + [68992] = 12, + ACTIONS(69), 1, anon_sym_pub, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, + ACTIONS(3033), 1, anon_sym_POUND, - ACTIONS(4780), 1, + ACTIONS(4854), 1, sym_crate, - ACTIONS(4782), 1, + ACTIONS(4868), 1, sym_identifier, - ACTIONS(4955), 1, + ACTIONS(5027), 1, anon_sym_RBRACE, - STATE(1476), 1, + STATE(1514), 1, sym_attribute_item, - STATE(2205), 1, + STATE(2237), 1, aux_sym_enum_variant_list_repeat1, - STATE(3078), 1, - sym_field_declaration, - STATE(3560), 1, + STATE(3274), 1, + sym_enum_variant, + STATE(3629), 1, sym_visibility_modifier, - STATE(2167), 2, + STATE(2197), 2, sym_line_comment, sym_block_comment, - [68031] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [69030] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, + ACTIONS(4521), 1, anon_sym_LPAREN, - ACTIONS(4449), 1, + ACTIONS(4527), 1, anon_sym_LT2, - ACTIONS(4957), 1, + ACTIONS(5029), 1, anon_sym_for, - STATE(1933), 1, + STATE(1968), 1, sym_type_arguments, - STATE(1947), 1, + STATE(1987), 1, sym_parameters, - STATE(2168), 2, + STATE(2198), 2, sym_line_comment, sym_block_comment, - ACTIONS(3299), 4, + ACTIONS(3377), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [68063] = 12, - ACTIONS(67), 1, - anon_sym_pub, - ACTIONS(101), 1, + [69062] = 12, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4983), 1, + anon_sym_LPAREN, + ACTIONS(4987), 1, + anon_sym_LT, + ACTIONS(4989), 1, + anon_sym_where, + ACTIONS(5031), 1, + anon_sym_SEMI, + ACTIONS(5033), 1, + anon_sym_LBRACE, + STATE(1160), 1, + sym_field_declaration_list, + STATE(2301), 1, + sym_type_parameters, + STATE(2792), 1, + sym_ordered_field_declaration_list, + STATE(3388), 1, + sym_where_clause, + STATE(2199), 2, + sym_line_comment, + sym_block_comment, + [69100] = 12, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4983), 1, + anon_sym_LPAREN, + ACTIONS(4987), 1, + anon_sym_LT, + ACTIONS(4989), 1, + anon_sym_where, + ACTIONS(5033), 1, + anon_sym_LBRACE, + ACTIONS(5035), 1, + anon_sym_SEMI, + STATE(1066), 1, + sym_field_declaration_list, + STATE(2334), 1, + sym_type_parameters, + STATE(2933), 1, + sym_ordered_field_declaration_list, + STATE(3197), 1, + sym_where_clause, + STATE(2200), 2, + sym_line_comment, + sym_block_comment, + [69138] = 12, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, + ACTIONS(3033), 1, anon_sym_POUND, - ACTIONS(4780), 1, + ACTIONS(4854), 1, sym_crate, - ACTIONS(4782), 1, + ACTIONS(4868), 1, sym_identifier, - ACTIONS(4959), 1, + ACTIONS(5037), 1, anon_sym_RBRACE, - STATE(1476), 1, + STATE(1514), 1, sym_attribute_item, - STATE(2205), 1, + STATE(2237), 1, aux_sym_enum_variant_list_repeat1, - STATE(3078), 1, - sym_field_declaration, - STATE(3560), 1, + STATE(3274), 1, + sym_enum_variant, + STATE(3629), 1, sym_visibility_modifier, - STATE(2169), 2, + STATE(2201), 2, sym_line_comment, sym_block_comment, - [68101] = 9, - ACTIONS(101), 1, + [69176] = 7, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4527), 1, + anon_sym_LT2, + ACTIONS(5039), 1, + anon_sym_COLON_COLON, + STATE(1966), 1, + sym_type_arguments, + STATE(2202), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3401), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [69204] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, + ACTIONS(4521), 1, anon_sym_LPAREN, - ACTIONS(4449), 1, + ACTIONS(4527), 1, anon_sym_LT2, - ACTIONS(4961), 1, + ACTIONS(5041), 1, anon_sym_for, - STATE(1933), 1, + STATE(1968), 1, sym_type_arguments, - STATE(1947), 1, + STATE(1987), 1, sym_parameters, - STATE(2170), 2, + STATE(2203), 2, sym_line_comment, sym_block_comment, - ACTIONS(3299), 4, + ACTIONS(3377), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [68133] = 12, - ACTIONS(67), 1, + [69236] = 12, + ACTIONS(69), 1, anon_sym_pub, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, + ACTIONS(3033), 1, anon_sym_POUND, - ACTIONS(4774), 1, + ACTIONS(4848), 1, sym_identifier, - ACTIONS(4780), 1, + ACTIONS(4854), 1, sym_crate, - ACTIONS(4963), 1, + ACTIONS(5043), 1, anon_sym_RBRACE, - STATE(1476), 1, + STATE(1514), 1, sym_attribute_item, - STATE(2212), 1, + STATE(2254), 1, aux_sym_enum_variant_list_repeat1, - STATE(3256), 1, - sym_enum_variant, - STATE(3603), 1, + STATE(3224), 1, + sym_field_declaration, + STATE(3698), 1, sym_visibility_modifier, - STATE(2171), 2, + STATE(2204), 2, sym_line_comment, sym_block_comment, - [68171] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [69274] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, - anon_sym_LPAREN, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4965), 1, - anon_sym_for, - STATE(1933), 1, - sym_type_arguments, - STATE(1947), 1, - sym_parameters, - STATE(2172), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3299), 4, + ACTIONS(5045), 1, anon_sym_SEMI, + ACTIONS(5047), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [68203] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4947), 1, - anon_sym_PLUS, - STATE(2163), 1, - aux_sym_trait_bounds_repeat1, - STATE(2173), 2, + STATE(550), 1, + sym_declaration_list, + STATE(2205), 2, sym_line_comment, sym_block_comment, - ACTIONS(4901), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_where, - [68229] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3401), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [69302] = 10, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, - anon_sym_LPAREN, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4967), 1, - anon_sym_for, - STATE(1933), 1, - sym_type_arguments, - STATE(1947), 1, - sym_parameters, - STATE(2174), 2, + ACTIONS(3377), 1, + anon_sym_PLUS, + ACTIONS(4601), 1, + anon_sym_PIPE, + ACTIONS(4603), 1, + anon_sym_COLON, + ACTIONS(4607), 1, + anon_sym_DOT_DOT, + ACTIONS(4615), 1, + anon_sym_COLON_COLON, + ACTIONS(4609), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(5009), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2206), 2, sym_line_comment, sym_block_comment, - ACTIONS(3299), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [68261] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [69336] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, + ACTIONS(5047), 1, anon_sym_LBRACE, - ACTIONS(4969), 1, + ACTIONS(5049), 1, anon_sym_SEMI, - STATE(1201), 1, + STATE(682), 1, sym_declaration_list, - STATE(2175), 2, + STATE(2207), 2, sym_line_comment, sym_block_comment, - ACTIONS(3323), 6, + ACTIONS(3401), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [68289] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [69364] = 12, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4878), 1, + ACTIONS(4983), 1, + anon_sym_LPAREN, + ACTIONS(4985), 1, anon_sym_LBRACE, - ACTIONS(4971), 1, - anon_sym_COLON, - ACTIONS(4973), 1, + ACTIONS(4987), 1, anon_sym_LT, - STATE(688), 1, - sym_declaration_list, - STATE(2327), 1, + ACTIONS(4989), 1, + anon_sym_where, + ACTIONS(5051), 1, + anon_sym_SEMI, + STATE(735), 1, + sym_field_declaration_list, + STATE(2297), 1, sym_type_parameters, - STATE(2544), 1, - sym_trait_bounds, - STATE(3257), 1, + STATE(3008), 1, + sym_ordered_field_declaration_list, + STATE(3193), 1, sym_where_clause, - STATE(2176), 2, + STATE(2208), 2, sym_line_comment, sym_block_comment, - [68324] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [69402] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2177), 2, + ACTIONS(3385), 1, + anon_sym_DOT_DOT, + STATE(2209), 2, sym_line_comment, sym_block_comment, - ACTIONS(4928), 8, + ACTIONS(3387), 8, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_if, + [69426] = 11, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3442), 1, + anon_sym_SQUOTE, + ACTIONS(4989), 1, + anon_sym_where, + ACTIONS(5053), 1, anon_sym_SEMI, + ACTIONS(5055), 1, anon_sym_LBRACE, + ACTIONS(5057), 1, anon_sym_PLUS, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, + STATE(1218), 1, + sym_block, + STATE(2488), 1, + sym_where_clause, + STATE(3686), 1, + sym_label, + STATE(2210), 2, + sym_line_comment, + sym_block_comment, + [69461] = 11, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3442), 1, anon_sym_SQUOTE, + ACTIONS(4989), 1, anon_sym_where, - [68345] = 4, - ACTIONS(101), 1, + ACTIONS(5055), 1, + anon_sym_LBRACE, + ACTIONS(5057), 1, + anon_sym_PLUS, + ACTIONS(5059), 1, + anon_sym_SEMI, + STATE(1325), 1, + sym_block, + STATE(2512), 1, + sym_where_clause, + STATE(3686), 1, + sym_label, + STATE(2211), 2, + sym_line_comment, + sym_block_comment, + [69496] = 11, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4957), 1, + anon_sym_LBRACE, + ACTIONS(4989), 1, + anon_sym_where, + ACTIONS(5061), 1, + anon_sym_COLON, + ACTIONS(5063), 1, + anon_sym_LT, + STATE(1179), 1, + sym_declaration_list, + STATE(2403), 1, + sym_type_parameters, + STATE(2569), 1, + sym_trait_bounds, + STATE(3158), 1, + sym_where_clause, + STATE(2212), 2, + sym_line_comment, + sym_block_comment, + [69531] = 11, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2178), 2, + ACTIONS(3033), 1, + anon_sym_POUND, + ACTIONS(4848), 1, + sym_identifier, + ACTIONS(4854), 1, + sym_crate, + STATE(1514), 1, + sym_attribute_item, + STATE(2254), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3224), 1, + sym_field_declaration, + STATE(3698), 1, + sym_visibility_modifier, + STATE(2213), 2, sym_line_comment, sym_block_comment, - ACTIONS(4928), 8, + [69566] = 11, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4989), 1, + anon_sym_where, + ACTIONS(5061), 1, + anon_sym_COLON, + ACTIONS(5063), 1, + anon_sym_LT, + ACTIONS(5065), 1, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, + ACTIONS(5067), 1, anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_where, - [68366] = 4, - ACTIONS(101), 1, + STATE(2410), 1, + sym_type_parameters, + STATE(2799), 1, + sym_trait_bounds, + STATE(3400), 1, + sym_where_clause, + STATE(2214), 2, + sym_line_comment, + sym_block_comment, + [69601] = 11, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4989), 1, + anon_sym_where, + ACTIONS(5047), 1, + anon_sym_LBRACE, + ACTIONS(5061), 1, + anon_sym_COLON, + ACTIONS(5063), 1, + anon_sym_LT, + STATE(543), 1, + sym_declaration_list, + STATE(2398), 1, + sym_type_parameters, + STATE(2782), 1, + sym_trait_bounds, + STATE(3392), 1, + sym_where_clause, + STATE(2215), 2, + sym_line_comment, + sym_block_comment, + [69636] = 11, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2179), 2, + ACTIONS(4957), 1, + anon_sym_LBRACE, + ACTIONS(4989), 1, + anon_sym_where, + ACTIONS(5061), 1, + anon_sym_COLON, + ACTIONS(5063), 1, + anon_sym_LT, + STATE(1159), 1, + sym_declaration_list, + STATE(2408), 1, + sym_type_parameters, + STATE(2772), 1, + sym_trait_bounds, + STATE(3386), 1, + sym_where_clause, + STATE(2216), 2, sym_line_comment, sym_block_comment, - ACTIONS(4975), 8, + [69671] = 11, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3442), 1, + anon_sym_SQUOTE, + ACTIONS(4989), 1, + anon_sym_where, + ACTIONS(5057), 1, + anon_sym_PLUS, + ACTIONS(5069), 1, anon_sym_SEMI, + ACTIONS(5071), 1, anon_sym_LBRACE, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [68387] = 11, - ACTIONS(101), 1, + STATE(690), 1, + sym_block, + STATE(2509), 1, + sym_where_clause, + STATE(3683), 1, + sym_label, + STATE(2217), 2, + sym_line_comment, + sym_block_comment, + [69706] = 11, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3442), 1, + anon_sym_SQUOTE, + ACTIONS(4989), 1, + anon_sym_where, + ACTIONS(5055), 1, + anon_sym_LBRACE, + ACTIONS(5073), 1, + anon_sym_SEMI, + ACTIONS(5075), 1, + anon_sym_DASH_GT, + STATE(1109), 1, + sym_block, + STATE(2510), 1, + sym_where_clause, + STATE(3686), 1, + sym_label, + STATE(2218), 2, + sym_line_comment, + sym_block_comment, + [69741] = 11, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, + ACTIONS(3442), 1, anon_sym_SQUOTE, - ACTIONS(4874), 1, + ACTIONS(4989), 1, anon_sym_where, - ACTIONS(4977), 1, + ACTIONS(5071), 1, + anon_sym_LBRACE, + ACTIONS(5077), 1, anon_sym_SEMI, - ACTIONS(4979), 1, + ACTIONS(5079), 1, + anon_sym_DASH_GT, + STATE(657), 1, + sym_block, + STATE(2521), 1, + sym_where_clause, + STATE(3683), 1, + sym_label, + STATE(2219), 2, + sym_line_comment, + sym_block_comment, + [69776] = 11, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3442), 1, + anon_sym_SQUOTE, + ACTIONS(4989), 1, + anon_sym_where, + ACTIONS(5071), 1, anon_sym_LBRACE, - ACTIONS(4981), 1, + ACTIONS(5081), 1, + anon_sym_SEMI, + ACTIONS(5083), 1, anon_sym_DASH_GT, - STATE(709), 1, + STATE(683), 1, sym_block, - STATE(2431), 1, + STATE(2456), 1, sym_where_clause, - STATE(3586), 1, + STATE(3683), 1, sym_label, - STATE(2180), 2, + STATE(2220), 2, sym_line_comment, sym_block_comment, - [68422] = 11, - ACTIONS(67), 1, + [69811] = 11, + ACTIONS(69), 1, anon_sym_pub, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, + ACTIONS(3033), 1, anon_sym_POUND, - ACTIONS(4774), 1, - sym_identifier, - ACTIONS(4780), 1, + ACTIONS(4854), 1, sym_crate, - STATE(1065), 1, + ACTIONS(4868), 1, + sym_identifier, + STATE(1237), 1, aux_sym_enum_variant_list_repeat1, - STATE(1476), 1, + STATE(1514), 1, sym_attribute_item, - STATE(2885), 1, + STATE(2988), 1, sym_enum_variant, - STATE(3603), 1, + STATE(3629), 1, sym_visibility_modifier, - STATE(2181), 2, + STATE(2221), 2, + sym_line_comment, + sym_block_comment, + [69846] = 11, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3442), 1, + anon_sym_SQUOTE, + ACTIONS(4989), 1, + anon_sym_where, + ACTIONS(5071), 1, + anon_sym_LBRACE, + ACTIONS(5085), 1, + anon_sym_SEMI, + ACTIONS(5087), 1, + anon_sym_DASH_GT, + STATE(675), 1, + sym_block, + STATE(2498), 1, + sym_where_clause, + STATE(3683), 1, + sym_label, + STATE(2222), 2, sym_line_comment, sym_block_comment, - [68457] = 11, - ACTIONS(101), 1, + [69881] = 11, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3442), 1, + anon_sym_SQUOTE, + ACTIONS(4989), 1, + anon_sym_where, + ACTIONS(5055), 1, + anon_sym_LBRACE, + ACTIONS(5057), 1, + anon_sym_PLUS, + ACTIONS(5089), 1, + anon_sym_SEMI, + STATE(1342), 1, + sym_block, + STATE(2494), 1, + sym_where_clause, + STATE(3686), 1, + sym_label, + STATE(2223), 2, + sym_line_comment, + sym_block_comment, + [69916] = 11, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, + ACTIONS(4957), 1, + anon_sym_LBRACE, + ACTIONS(4989), 1, anon_sym_where, - ACTIONS(4971), 1, + ACTIONS(5061), 1, anon_sym_COLON, - ACTIONS(4973), 1, + ACTIONS(5063), 1, anon_sym_LT, - ACTIONS(4983), 1, - anon_sym_SEMI, - ACTIONS(4985), 1, - anon_sym_EQ, - STATE(2383), 1, + STATE(1074), 1, + sym_declaration_list, + STATE(2434), 1, sym_type_parameters, - STATE(2976), 1, + STATE(2637), 1, sym_trait_bounds, - STATE(3375), 1, + STATE(3263), 1, sym_where_clause, - STATE(2182), 2, + STATE(2224), 2, sym_line_comment, sym_block_comment, - [68492] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [69951] = 11, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, + ACTIONS(3442), 1, anon_sym_SQUOTE, - ACTIONS(4874), 1, + ACTIONS(4989), 1, anon_sym_where, - ACTIONS(4979), 1, + ACTIONS(5071), 1, anon_sym_LBRACE, - ACTIONS(4987), 1, + ACTIONS(5091), 1, + anon_sym_SEMI, + ACTIONS(5093), 1, + anon_sym_DASH_GT, + STATE(645), 1, + sym_block, + STATE(2449), 1, + sym_where_clause, + STATE(3683), 1, + sym_label, + STATE(2225), 2, + sym_line_comment, + sym_block_comment, + [69986] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2226), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5095), 8, anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [70007] = 11, + ACTIONS(69), 1, + anon_sym_pub, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3033), 1, + anon_sym_POUND, + ACTIONS(4848), 1, + sym_identifier, + ACTIONS(4854), 1, + sym_crate, + STATE(1237), 1, + aux_sym_enum_variant_list_repeat1, + STATE(1514), 1, + sym_attribute_item, + STATE(3010), 1, + sym_field_declaration, + STATE(3698), 1, + sym_visibility_modifier, + STATE(2227), 2, + sym_line_comment, + sym_block_comment, + [70042] = 10, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1501), 1, + anon_sym_DOT_DOT, + ACTIONS(5097), 1, + sym_identifier, + ACTIONS(5099), 1, + anon_sym_RBRACE, + ACTIONS(5101), 1, + anon_sym_COMMA, + ACTIONS(5103), 1, + anon_sym_ref, + ACTIONS(5105), 1, + sym_mutable_specifier, + STATE(2228), 2, + sym_line_comment, + sym_block_comment, + STATE(2982), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [70075] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4589), 1, + anon_sym_trait, + ACTIONS(5107), 1, + anon_sym_impl, + STATE(2229), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3401), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [70100] = 11, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3442), 1, + anon_sym_SQUOTE, ACTIONS(4989), 1, - anon_sym_PLUS, - STATE(635), 1, + anon_sym_where, + ACTIONS(5055), 1, + anon_sym_LBRACE, + ACTIONS(5109), 1, + anon_sym_SEMI, + ACTIONS(5111), 1, + anon_sym_DASH_GT, + STATE(1064), 1, sym_block, - STATE(2419), 1, + STATE(2465), 1, sym_where_clause, - STATE(3586), 1, + STATE(3686), 1, sym_label, - STATE(2183), 2, + STATE(2230), 2, + sym_line_comment, + sym_block_comment, + [70135] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4800), 1, + anon_sym_COLON_COLON, + ACTIONS(4932), 1, + anon_sym_BANG, + STATE(2231), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3401), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [70160] = 11, + ACTIONS(69), 1, + anon_sym_pub, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3033), 1, + anon_sym_POUND, + ACTIONS(4854), 1, + sym_crate, + ACTIONS(4868), 1, + sym_identifier, + STATE(1514), 1, + sym_attribute_item, + STATE(2237), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3274), 1, + sym_enum_variant, + STATE(3629), 1, + sym_visibility_modifier, + STATE(2232), 2, sym_line_comment, sym_block_comment, - [68527] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [70195] = 11, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, + ACTIONS(3442), 1, anon_sym_SQUOTE, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4979), 1, - anon_sym_LBRACE, ACTIONS(4989), 1, + anon_sym_where, + ACTIONS(5057), 1, anon_sym_PLUS, - ACTIONS(4991), 1, + ACTIONS(5071), 1, + anon_sym_LBRACE, + ACTIONS(5113), 1, anon_sym_SEMI, - STATE(486), 1, + STATE(507), 1, sym_block, - STATE(2420), 1, + STATE(2463), 1, sym_where_clause, - STATE(3586), 1, + STATE(3683), 1, sym_label, - STATE(2184), 2, + STATE(2233), 2, sym_line_comment, sym_block_comment, - [68562] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [70230] = 11, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, + ACTIONS(3442), 1, anon_sym_SQUOTE, - ACTIONS(4874), 1, + ACTIONS(4989), 1, anon_sym_where, - ACTIONS(4979), 1, + ACTIONS(5055), 1, anon_sym_LBRACE, - ACTIONS(4989), 1, + ACTIONS(5057), 1, anon_sym_PLUS, - ACTIONS(4993), 1, + ACTIONS(5115), 1, anon_sym_SEMI, - STATE(624), 1, + STATE(1357), 1, sym_block, - STATE(2411), 1, + STATE(2486), 1, sym_where_clause, - STATE(3586), 1, + STATE(3686), 1, sym_label, - STATE(2185), 2, + STATE(2234), 2, sym_line_comment, sym_block_comment, - [68597] = 11, - ACTIONS(101), 1, + [70265] = 10, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1501), 1, + anon_sym_DOT_DOT, + ACTIONS(5097), 1, + sym_identifier, + ACTIONS(5103), 1, + anon_sym_ref, + ACTIONS(5105), 1, + sym_mutable_specifier, + ACTIONS(5117), 1, + anon_sym_RBRACE, + ACTIONS(5119), 1, + anon_sym_COMMA, + STATE(2235), 2, + sym_line_comment, + sym_block_comment, + STATE(2963), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [70298] = 11, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, + ACTIONS(3442), 1, anon_sym_SQUOTE, - ACTIONS(4874), 1, - anon_sym_where, ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(4995), 1, - anon_sym_SEMI, - ACTIONS(4997), 1, + anon_sym_where, + ACTIONS(5055), 1, anon_sym_LBRACE, - STATE(1156), 1, + ACTIONS(5121), 1, + anon_sym_SEMI, + ACTIONS(5123), 1, + anon_sym_DASH_GT, + STATE(1304), 1, sym_block, - STATE(2410), 1, + STATE(2541), 1, sym_where_clause, - STATE(3589), 1, + STATE(3686), 1, sym_label, - STATE(2186), 2, + STATE(2236), 2, sym_line_comment, sym_block_comment, - [68632] = 11, - ACTIONS(67), 1, + [70333] = 11, + ACTIONS(69), 1, anon_sym_pub, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(2955), 1, - anon_sym_POUND, - ACTIONS(4780), 1, - sym_crate, - ACTIONS(4782), 1, - sym_identifier, - STATE(1065), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1476), 1, - sym_attribute_item, - STATE(2917), 1, - sym_field_declaration, - STATE(3560), 1, - sym_visibility_modifier, - STATE(2187), 2, - sym_line_comment, - sym_block_comment, - [68667] = 11, - ACTIONS(67), 1, - anon_sym_pub, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, + ACTIONS(3033), 1, anon_sym_POUND, - ACTIONS(4774), 1, - sym_identifier, - ACTIONS(4780), 1, + ACTIONS(4854), 1, sym_crate, - STATE(1065), 1, + ACTIONS(4868), 1, + sym_identifier, + STATE(1237), 1, aux_sym_enum_variant_list_repeat1, - STATE(1476), 1, + STATE(1514), 1, sym_attribute_item, - STATE(2783), 1, + STATE(3147), 1, sym_enum_variant, - STATE(3603), 1, + STATE(3629), 1, sym_visibility_modifier, - STATE(2188), 2, + STATE(2237), 2, sym_line_comment, sym_block_comment, - [68702] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [70368] = 11, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4979), 1, - anon_sym_LBRACE, ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(4999), 1, + anon_sym_where, + ACTIONS(5061), 1, + anon_sym_COLON, + ACTIONS(5063), 1, + anon_sym_LT, + ACTIONS(5125), 1, anon_sym_SEMI, - STATE(542), 1, - sym_block, - STATE(2432), 1, + ACTIONS(5127), 1, + anon_sym_EQ, + STATE(2367), 1, + sym_type_parameters, + STATE(2827), 1, + sym_trait_bounds, + STATE(3443), 1, sym_where_clause, - STATE(3586), 1, - sym_label, - STATE(2189), 2, + STATE(2238), 2, sym_line_comment, sym_block_comment, - [68737] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [70403] = 11, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(4874), 1, - anon_sym_where, ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(4997), 1, + anon_sym_where, + ACTIONS(5047), 1, anon_sym_LBRACE, - ACTIONS(5001), 1, - anon_sym_SEMI, - STATE(1166), 1, - sym_block, - STATE(2412), 1, + ACTIONS(5061), 1, + anon_sym_COLON, + ACTIONS(5063), 1, + anon_sym_LT, + STATE(489), 1, + sym_declaration_list, + STATE(2370), 1, + sym_type_parameters, + STATE(2736), 1, + sym_trait_bounds, + STATE(3360), 1, sym_where_clause, - STATE(3589), 1, - sym_label, - STATE(2190), 2, + STATE(2239), 2, sym_line_comment, sym_block_comment, - [68772] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [70438] = 11, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, + ACTIONS(3442), 1, anon_sym_SQUOTE, - ACTIONS(4874), 1, + ACTIONS(4989), 1, anon_sym_where, - ACTIONS(4979), 1, + ACTIONS(5057), 1, + anon_sym_PLUS, + ACTIONS(5071), 1, anon_sym_LBRACE, - ACTIONS(5003), 1, + ACTIONS(5129), 1, anon_sym_SEMI, - ACTIONS(5005), 1, - anon_sym_DASH_GT, - STATE(743), 1, + STATE(752), 1, sym_block, - STATE(2490), 1, + STATE(2505), 1, sym_where_clause, - STATE(3586), 1, + STATE(3683), 1, sym_label, - STATE(2191), 2, + STATE(2240), 2, sym_line_comment, sym_block_comment, - [68807] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [70473] = 11, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, + ACTIONS(3442), 1, anon_sym_SQUOTE, - ACTIONS(4874), 1, - anon_sym_where, ACTIONS(4989), 1, + anon_sym_where, + ACTIONS(5057), 1, anon_sym_PLUS, - ACTIONS(4997), 1, + ACTIONS(5071), 1, anon_sym_LBRACE, - ACTIONS(5007), 1, + ACTIONS(5131), 1, anon_sym_SEMI, - STATE(1397), 1, + STATE(523), 1, sym_block, - STATE(2445), 1, + STATE(2476), 1, sym_where_clause, - STATE(3589), 1, + STATE(3683), 1, sym_label, - STATE(2192), 2, + STATE(2241), 2, sym_line_comment, sym_block_comment, - [68842] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [70508] = 11, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, + ACTIONS(3442), 1, anon_sym_SQUOTE, - ACTIONS(4874), 1, - anon_sym_where, ACTIONS(4989), 1, + anon_sym_where, + ACTIONS(5057), 1, anon_sym_PLUS, - ACTIONS(4997), 1, + ACTIONS(5071), 1, anon_sym_LBRACE, - ACTIONS(5009), 1, + ACTIONS(5133), 1, anon_sym_SEMI, - STATE(1176), 1, + STATE(536), 1, sym_block, - STATE(2413), 1, + STATE(2439), 1, sym_where_clause, - STATE(3589), 1, + STATE(3683), 1, sym_label, - STATE(2193), 2, + STATE(2242), 2, sym_line_comment, sym_block_comment, - [68877] = 11, - ACTIONS(101), 1, + [70543] = 7, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5138), 1, + anon_sym_fn, + ACTIONS(5140), 1, + anon_sym_extern, + STATE(2359), 1, + sym_extern_modifier, + STATE(2243), 3, + sym_line_comment, + sym_block_comment, + aux_sym_function_modifiers_repeat1, + ACTIONS(5135), 4, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_unsafe, + [70570] = 11, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, + ACTIONS(3442), 1, anon_sym_SQUOTE, - ACTIONS(4874), 1, + ACTIONS(4989), 1, anon_sym_where, - ACTIONS(4979), 1, + ACTIONS(5055), 1, anon_sym_LBRACE, - ACTIONS(5011), 1, + ACTIONS(5143), 1, anon_sym_SEMI, - ACTIONS(5013), 1, + ACTIONS(5145), 1, anon_sym_DASH_GT, - STATE(517), 1, + STATE(1148), 1, sym_block, - STATE(2492), 1, + STATE(2443), 1, sym_where_clause, - STATE(3586), 1, + STATE(3686), 1, sym_label, - STATE(2194), 2, + STATE(2244), 2, sym_line_comment, sym_block_comment, - [68912] = 11, - ACTIONS(101), 1, + [70605] = 6, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1413), 1, + aux_sym_string_literal_token1, + STATE(2226), 1, + sym_string_literal, + STATE(2245), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4750), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [70630] = 11, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, + ACTIONS(3442), 1, anon_sym_SQUOTE, - ACTIONS(4874), 1, + ACTIONS(4989), 1, anon_sym_where, - ACTIONS(4979), 1, + ACTIONS(5055), 1, anon_sym_LBRACE, - ACTIONS(4989), 1, + ACTIONS(5057), 1, anon_sym_PLUS, - ACTIONS(5015), 1, + ACTIONS(5147), 1, anon_sym_SEMI, - STATE(576), 1, + STATE(1285), 1, sym_block, - STATE(2457), 1, + STATE(2534), 1, sym_where_clause, - STATE(3586), 1, + STATE(3686), 1, sym_label, - STATE(2195), 2, + STATE(2246), 2, sym_line_comment, sym_block_comment, - [68947] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [70665] = 11, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(4874), 1, + ACTIONS(4989), 1, anon_sym_where, - ACTIONS(4979), 1, + ACTIONS(5047), 1, anon_sym_LBRACE, - ACTIONS(5017), 1, - anon_sym_SEMI, - ACTIONS(5019), 1, - anon_sym_DASH_GT, - STATE(662), 1, - sym_block, - STATE(2398), 1, + ACTIONS(5061), 1, + anon_sym_COLON, + ACTIONS(5063), 1, + anon_sym_LT, + STATE(764), 1, + sym_declaration_list, + STATE(2361), 1, + sym_type_parameters, + STATE(2563), 1, + sym_trait_bounds, + STATE(3144), 1, sym_where_clause, - STATE(3586), 1, - sym_label, - STATE(2196), 2, + STATE(2247), 2, + sym_line_comment, + sym_block_comment, + [70700] = 11, + ACTIONS(69), 1, + anon_sym_pub, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3033), 1, + anon_sym_POUND, + ACTIONS(4848), 1, + sym_identifier, + ACTIONS(4854), 1, + sym_crate, + STATE(1237), 1, + aux_sym_enum_variant_list_repeat1, + STATE(1514), 1, + sym_attribute_item, + STATE(2839), 1, + sym_field_declaration, + STATE(3698), 1, + sym_visibility_modifier, + STATE(2248), 2, + sym_line_comment, + sym_block_comment, + [70735] = 10, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4523), 1, + anon_sym_BANG, + ACTIONS(4531), 1, + anon_sym_PIPE, + ACTIONS(4533), 1, + anon_sym_LPAREN, + ACTIONS(4537), 1, + anon_sym_COLON, + ACTIONS(4541), 1, + anon_sym_DOT_DOT, + ACTIONS(5149), 1, + anon_sym_COLON_COLON, + ACTIONS(4543), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2249), 2, sym_line_comment, sym_block_comment, - [68982] = 11, - ACTIONS(101), 1, + [70768] = 11, + ACTIONS(69), 1, + anon_sym_pub, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3033), 1, + anon_sym_POUND, + ACTIONS(4854), 1, + sym_crate, + ACTIONS(4868), 1, + sym_identifier, + STATE(1237), 1, + aux_sym_enum_variant_list_repeat1, + STATE(1514), 1, + sym_attribute_item, + STATE(2889), 1, + sym_enum_variant, + STATE(3629), 1, + sym_visibility_modifier, + STATE(2250), 2, + sym_line_comment, + sym_block_comment, + [70803] = 11, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, + ACTIONS(3442), 1, anon_sym_SQUOTE, - ACTIONS(4874), 1, + ACTIONS(4989), 1, anon_sym_where, - ACTIONS(4997), 1, + ACTIONS(5071), 1, anon_sym_LBRACE, - ACTIONS(5021), 1, + ACTIONS(5151), 1, anon_sym_SEMI, - ACTIONS(5023), 1, + ACTIONS(5153), 1, anon_sym_DASH_GT, - STATE(1236), 1, + STATE(561), 1, sym_block, - STATE(2437), 1, + STATE(2473), 1, sym_where_clause, - STATE(3589), 1, + STATE(3683), 1, sym_label, - STATE(2197), 2, + STATE(2251), 2, sym_line_comment, sym_block_comment, - [69017] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [70838] = 11, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, + ACTIONS(3442), 1, + anon_sym_SQUOTE, + ACTIONS(4989), 1, anon_sym_where, - ACTIONS(4915), 1, + ACTIONS(5071), 1, anon_sym_LBRACE, - ACTIONS(4971), 1, - anon_sym_COLON, - ACTIONS(4973), 1, - anon_sym_LT, - STATE(1188), 1, - sym_declaration_list, - STATE(2293), 1, - sym_type_parameters, - STATE(2513), 1, - sym_trait_bounds, - STATE(3293), 1, + ACTIONS(5155), 1, + anon_sym_SEMI, + ACTIONS(5157), 1, + anon_sym_DASH_GT, + STATE(768), 1, + sym_block, + STATE(2525), 1, sym_where_clause, - STATE(2198), 2, + STATE(3683), 1, + sym_label, + STATE(2252), 2, sym_line_comment, sym_block_comment, - [69052] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [70873] = 11, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, + ACTIONS(3442), 1, + anon_sym_SQUOTE, + ACTIONS(4989), 1, anon_sym_where, - ACTIONS(4915), 1, + ACTIONS(5055), 1, anon_sym_LBRACE, - ACTIONS(4971), 1, - anon_sym_COLON, - ACTIONS(4973), 1, - anon_sym_LT, - STATE(1271), 1, - sym_declaration_list, - STATE(2310), 1, - sym_type_parameters, - STATE(2542), 1, - sym_trait_bounds, - STATE(3123), 1, + ACTIONS(5159), 1, + anon_sym_SEMI, + ACTIONS(5161), 1, + anon_sym_DASH_GT, + STATE(1321), 1, + sym_block, + STATE(2531), 1, sym_where_clause, - STATE(2199), 2, + STATE(3686), 1, + sym_label, + STATE(2253), 2, sym_line_comment, sym_block_comment, - [69087] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [70908] = 11, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4878), 1, - anon_sym_LBRACE, - ACTIONS(4971), 1, - anon_sym_COLON, - ACTIONS(4973), 1, - anon_sym_LT, - STATE(625), 1, - sym_declaration_list, - STATE(2313), 1, - sym_type_parameters, - STATE(2562), 1, - sym_trait_bounds, - STATE(3208), 1, - sym_where_clause, - STATE(2200), 2, + ACTIONS(3033), 1, + anon_sym_POUND, + ACTIONS(4848), 1, + sym_identifier, + ACTIONS(4854), 1, + sym_crate, + STATE(1237), 1, + aux_sym_enum_variant_list_repeat1, + STATE(1514), 1, + sym_attribute_item, + STATE(3143), 1, + sym_field_declaration, + STATE(3698), 1, + sym_visibility_modifier, + STATE(2254), 2, sym_line_comment, sym_block_comment, - [69122] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [70943] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4678), 1, - anon_sym_COLON_COLON, - ACTIONS(4838), 1, - anon_sym_BANG, - STATE(2201), 2, + ACTIONS(5163), 1, + anon_sym_fn, + ACTIONS(5165), 1, + anon_sym_extern, + STATE(2243), 1, + aux_sym_function_modifiers_repeat1, + STATE(2359), 1, + sym_extern_modifier, + STATE(2255), 2, sym_line_comment, sym_block_comment, - ACTIONS(3323), 6, + ACTIONS(4549), 4, anon_sym_async, anon_sym_const, anon_sym_default, - anon_sym_fn, anon_sym_unsafe, - anon_sym_extern, - [69147] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [70972] = 11, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, + ACTIONS(3442), 1, anon_sym_SQUOTE, - ACTIONS(4874), 1, + ACTIONS(4989), 1, anon_sym_where, - ACTIONS(4997), 1, + ACTIONS(5057), 1, + anon_sym_PLUS, + ACTIONS(5071), 1, anon_sym_LBRACE, - ACTIONS(5025), 1, + ACTIONS(5167), 1, anon_sym_SEMI, - ACTIONS(5027), 1, - anon_sym_DASH_GT, - STATE(1429), 1, + STATE(490), 1, sym_block, - STATE(2397), 1, + STATE(2451), 1, sym_where_clause, - STATE(3589), 1, + STATE(3683), 1, sym_label, - STATE(2202), 2, + STATE(2256), 2, sym_line_comment, sym_block_comment, - [69182] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [71007] = 11, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4507), 1, - anon_sym_trait, - ACTIONS(5029), 1, - anon_sym_impl, - STATE(2203), 2, + ACTIONS(3442), 1, + anon_sym_SQUOTE, + ACTIONS(4989), 1, + anon_sym_where, + ACTIONS(5055), 1, + anon_sym_LBRACE, + ACTIONS(5057), 1, + anon_sym_PLUS, + ACTIONS(5169), 1, + anon_sym_SEMI, + STATE(1082), 1, + sym_block, + STATE(2535), 1, + sym_where_clause, + STATE(3686), 1, + sym_label, + STATE(2257), 2, sym_line_comment, sym_block_comment, - ACTIONS(3323), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [69207] = 11, - ACTIONS(101), 1, + [71042] = 10, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1501), 1, + anon_sym_DOT_DOT, + ACTIONS(5097), 1, + sym_identifier, + ACTIONS(5103), 1, + anon_sym_ref, + ACTIONS(5105), 1, + sym_mutable_specifier, + ACTIONS(5171), 1, + anon_sym_RBRACE, + ACTIONS(5173), 1, + anon_sym_COMMA, + STATE(2258), 2, + sym_line_comment, + sym_block_comment, + STATE(2856), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [71075] = 11, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, + ACTIONS(3442), 1, anon_sym_SQUOTE, - ACTIONS(4874), 1, + ACTIONS(4989), 1, anon_sym_where, - ACTIONS(4997), 1, + ACTIONS(5055), 1, anon_sym_LBRACE, - ACTIONS(5031), 1, + ACTIONS(5175), 1, anon_sym_SEMI, - ACTIONS(5033), 1, + ACTIONS(5177), 1, anon_sym_DASH_GT, - STATE(1445), 1, + STATE(1189), 1, sym_block, - STATE(2399), 1, + STATE(2482), 1, sym_where_clause, - STATE(3589), 1, + STATE(3686), 1, sym_label, - STATE(2204), 2, + STATE(2259), 2, sym_line_comment, sym_block_comment, - [69242] = 11, - ACTIONS(67), 1, - anon_sym_pub, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [71110] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, - anon_sym_POUND, - ACTIONS(4780), 1, - sym_crate, - ACTIONS(4782), 1, - sym_identifier, - STATE(1065), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1476), 1, - sym_attribute_item, - STATE(3189), 1, - sym_field_declaration, - STATE(3560), 1, - sym_visibility_modifier, - STATE(2205), 2, + STATE(2260), 2, sym_line_comment, sym_block_comment, - [69277] = 8, - ACTIONS(101), 1, + ACTIONS(4948), 8, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_EQ, + anon_sym_GT, + anon_sym_SQUOTE, + anon_sym_where, + [71131] = 4, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2261), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4948), 8, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_EQ, + anon_sym_GT, + anon_sym_SQUOTE, + anon_sym_where, + [71152] = 10, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5035), 1, - anon_sym_fn, - ACTIONS(5037), 1, - anon_sym_extern, - STATE(2220), 1, - aux_sym_function_modifiers_repeat1, - STATE(2320), 1, - sym_extern_modifier, - STATE(2206), 2, + ACTIONS(1501), 1, + anon_sym_DOT_DOT, + ACTIONS(5097), 1, + sym_identifier, + ACTIONS(5103), 1, + anon_sym_ref, + ACTIONS(5105), 1, + sym_mutable_specifier, + ACTIONS(5179), 1, + anon_sym_RBRACE, + ACTIONS(5181), 1, + anon_sym_COMMA, + STATE(2262), 2, + sym_line_comment, + sym_block_comment, + STATE(2852), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [71185] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2263), 2, sym_line_comment, sym_block_comment, - ACTIONS(4469), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - [69306] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4948), 8, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_EQ, + anon_sym_GT, + anon_sym_SQUOTE, + anon_sym_where, + [71206] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2207), 2, + STATE(2264), 2, sym_line_comment, sym_block_comment, - ACTIONS(4928), 8, + ACTIONS(4948), 8, anon_sym_SEMI, anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_EQ, anon_sym_GT, - anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_where, - [69327] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [71227] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2208), 2, + STATE(2265), 2, sym_line_comment, sym_block_comment, - ACTIONS(4928), 8, + ACTIONS(4948), 8, anon_sym_SEMI, anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_EQ, anon_sym_GT, - anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_where, - [69348] = 11, - ACTIONS(67), 1, - anon_sym_pub, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [71248] = 10, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, - anon_sym_POUND, - ACTIONS(4780), 1, - sym_crate, - ACTIONS(4782), 1, - sym_identifier, - STATE(1476), 1, - sym_attribute_item, - STATE(2205), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3078), 1, - sym_field_declaration, - STATE(3560), 1, - sym_visibility_modifier, - STATE(2209), 2, + ACTIONS(5183), 1, + anon_sym_LPAREN, + ACTIONS(5185), 1, + anon_sym_LBRACK, + ACTIONS(5187), 1, + anon_sym_RBRACK, + ACTIONS(5189), 1, + anon_sym_LBRACE, + STATE(2193), 1, + aux_sym_macro_rules_repeat1, + STATE(3266), 1, + sym_macro_rule, + STATE(3508), 1, + sym_token_tree_pattern, + STATE(2266), 2, sym_line_comment, sym_block_comment, - [69383] = 11, - ACTIONS(67), 1, - anon_sym_pub, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [71280] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, - anon_sym_POUND, - ACTIONS(4774), 1, + ACTIONS(5191), 1, sym_identifier, - ACTIONS(4780), 1, - sym_crate, - STATE(1476), 1, - sym_attribute_item, - STATE(2212), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3256), 1, - sym_enum_variant, - STATE(3603), 1, - sym_visibility_modifier, - STATE(2210), 2, + STATE(2267), 2, sym_line_comment, sym_block_comment, - [69418] = 10, - ACTIONS(101), 1, + ACTIONS(4792), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [71302] = 8, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4983), 1, + anon_sym_LPAREN, + ACTIONS(5033), 1, + anon_sym_LBRACE, + ACTIONS(5195), 1, + anon_sym_EQ, + ACTIONS(5193), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(2268), 2, + sym_line_comment, + sym_block_comment, + STATE(2849), 2, + sym_field_declaration_list, + sym_ordered_field_declaration_list, + [71330] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1482), 1, + ACTIONS(1501), 1, anon_sym_DOT_DOT, - ACTIONS(5039), 1, + ACTIONS(5097), 1, sym_identifier, - ACTIONS(5041), 1, - anon_sym_RBRACE, - ACTIONS(5043), 1, - anon_sym_COMMA, - ACTIONS(5045), 1, + ACTIONS(5103), 1, anon_sym_ref, - ACTIONS(5047), 1, + ACTIONS(5105), 1, sym_mutable_specifier, - STATE(2211), 2, + ACTIONS(5197), 1, + anon_sym_RBRACE, + STATE(2269), 2, sym_line_comment, sym_block_comment, - STATE(2937), 2, + STATE(3324), 2, sym_field_pattern, sym_remaining_field_pattern, - [69451] = 11, - ACTIONS(67), 1, - anon_sym_pub, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [71360] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, - anon_sym_POUND, - ACTIONS(4774), 1, + ACTIONS(1501), 1, + anon_sym_DOT_DOT, + ACTIONS(5097), 1, sym_identifier, - ACTIONS(4780), 1, - sym_crate, - STATE(1065), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1476), 1, - sym_attribute_item, - STATE(3084), 1, - sym_enum_variant, - STATE(3603), 1, - sym_visibility_modifier, - STATE(2212), 2, + ACTIONS(5103), 1, + anon_sym_ref, + ACTIONS(5105), 1, + sym_mutable_specifier, + ACTIONS(5199), 1, + anon_sym_RBRACE, + STATE(2270), 2, sym_line_comment, sym_block_comment, - [69486] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + STATE(3324), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [71390] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1308), 1, - aux_sym_string_literal_token1, - STATE(2179), 1, - sym_string_literal, - STATE(2213), 2, + ACTIONS(5201), 1, + sym_identifier, + STATE(2271), 2, sym_line_comment, sym_block_comment, - ACTIONS(4702), 6, + ACTIONS(4792), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [69511] = 11, - ACTIONS(101), 1, + [71412] = 7, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4934), 1, + anon_sym_DOT_DOT, + ACTIONS(4938), 1, + anon_sym_COLON_COLON, + ACTIONS(4936), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2272), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4601), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [71438] = 10, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4878), 1, + ACTIONS(5183), 1, + anon_sym_LPAREN, + ACTIONS(5185), 1, + anon_sym_LBRACK, + ACTIONS(5189), 1, anon_sym_LBRACE, - ACTIONS(4971), 1, - anon_sym_COLON, - ACTIONS(4973), 1, - anon_sym_LT, - STATE(752), 1, - sym_declaration_list, - STATE(2388), 1, - sym_type_parameters, - STATE(2660), 1, - sym_trait_bounds, - STATE(3038), 1, - sym_where_clause, - STATE(2214), 2, + ACTIONS(5203), 1, + anon_sym_RBRACE, + STATE(2300), 1, + aux_sym_macro_definition_repeat1, + STATE(3231), 1, + sym_macro_rule, + STATE(3508), 1, + sym_token_tree_pattern, + STATE(2273), 2, sym_line_comment, sym_block_comment, - [69546] = 11, - ACTIONS(101), 1, + [71470] = 10, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4772), 1, + anon_sym_COLON_COLON, + ACTIONS(5205), 1, + anon_sym_LPAREN, + ACTIONS(5207), 1, + anon_sym_LBRACK, + ACTIONS(5209), 1, + anon_sym_RBRACK, + ACTIONS(5211), 1, + anon_sym_LBRACE, + ACTIONS(5213), 1, + anon_sym_EQ, + STATE(3594), 1, + sym_delim_token_tree, + STATE(2274), 2, + sym_line_comment, + sym_block_comment, + [71502] = 10, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4997), 1, + ACTIONS(5183), 1, + anon_sym_LPAREN, + ACTIONS(5185), 1, + anon_sym_LBRACK, + ACTIONS(5189), 1, anon_sym_LBRACE, - ACTIONS(5049), 1, - anon_sym_SEMI, - ACTIONS(5051), 1, - anon_sym_DASH_GT, - STATE(1316), 1, - sym_block, - STATE(2389), 1, - sym_where_clause, - STATE(3589), 1, - sym_label, - STATE(2215), 2, + ACTIONS(5215), 1, + anon_sym_RBRACE, + STATE(2300), 1, + aux_sym_macro_definition_repeat1, + STATE(3118), 1, + sym_macro_rule, + STATE(3508), 1, + sym_token_tree_pattern, + STATE(2275), 2, sym_line_comment, sym_block_comment, - [69581] = 10, - ACTIONS(101), 1, + [71534] = 10, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5183), 1, + anon_sym_LPAREN, + ACTIONS(5185), 1, + anon_sym_LBRACK, + ACTIONS(5189), 1, + anon_sym_LBRACE, + ACTIONS(5217), 1, + anon_sym_RBRACE, + STATE(2298), 1, + aux_sym_macro_definition_repeat1, + STATE(3374), 1, + sym_macro_rule, + STATE(3508), 1, + sym_token_tree_pattern, + STATE(2276), 2, + sym_line_comment, + sym_block_comment, + [71566] = 10, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4445), 1, - anon_sym_BANG, - ACTIONS(4453), 1, - anon_sym_PIPE, - ACTIONS(4455), 1, + ACTIONS(5183), 1, anon_sym_LPAREN, - ACTIONS(4459), 1, - anon_sym_COLON, - ACTIONS(4463), 1, - anon_sym_DOT_DOT, - ACTIONS(5053), 1, + ACTIONS(5185), 1, + anon_sym_LBRACK, + ACTIONS(5189), 1, + anon_sym_LBRACE, + ACTIONS(5219), 1, + anon_sym_RBRACE, + STATE(2300), 1, + aux_sym_macro_definition_repeat1, + STATE(3117), 1, + sym_macro_rule, + STATE(3508), 1, + sym_token_tree_pattern, + STATE(2277), 2, + sym_line_comment, + sym_block_comment, + [71598] = 10, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4626), 1, anon_sym_COLON_COLON, - ACTIONS(4465), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2216), 2, + ACTIONS(5205), 1, + anon_sym_LPAREN, + ACTIONS(5207), 1, + anon_sym_LBRACK, + ACTIONS(5209), 1, + anon_sym_RBRACK, + ACTIONS(5211), 1, + anon_sym_LBRACE, + ACTIONS(5213), 1, + anon_sym_EQ, + STATE(3594), 1, + sym_delim_token_tree, + STATE(2278), 2, sym_line_comment, sym_block_comment, - [69614] = 11, - ACTIONS(101), 1, + [71630] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5221), 1, + sym_identifier, + STATE(2279), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4792), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [71652] = 10, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4979), 1, + ACTIONS(4788), 1, + anon_sym_COLON_COLON, + ACTIONS(5205), 1, + anon_sym_LPAREN, + ACTIONS(5207), 1, + anon_sym_LBRACK, + ACTIONS(5209), 1, + anon_sym_RBRACK, + ACTIONS(5211), 1, anon_sym_LBRACE, - ACTIONS(5055), 1, - anon_sym_SEMI, - ACTIONS(5057), 1, - anon_sym_DASH_GT, - STATE(531), 1, - sym_block, - STATE(2459), 1, - sym_where_clause, - STATE(3586), 1, - sym_label, - STATE(2217), 2, + ACTIONS(5213), 1, + anon_sym_EQ, + STATE(3594), 1, + sym_delim_token_tree, + STATE(2280), 2, sym_line_comment, sym_block_comment, - [69649] = 11, - ACTIONS(101), 1, + [71684] = 10, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5183), 1, + anon_sym_LPAREN, + ACTIONS(5185), 1, + anon_sym_LBRACK, + ACTIONS(5189), 1, + anon_sym_LBRACE, + ACTIONS(5223), 1, + anon_sym_RBRACE, + STATE(2299), 1, + aux_sym_macro_definition_repeat1, + STATE(3376), 1, + sym_macro_rule, + STATE(3508), 1, + sym_token_tree_pattern, + STATE(2281), 2, + sym_line_comment, + sym_block_comment, + [71716] = 10, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(4997), 1, + ACTIONS(4800), 1, + anon_sym_COLON_COLON, + ACTIONS(5205), 1, + anon_sym_LPAREN, + ACTIONS(5207), 1, + anon_sym_LBRACK, + ACTIONS(5211), 1, anon_sym_LBRACE, - ACTIONS(5059), 1, - anon_sym_SEMI, - STATE(1455), 1, - sym_block, - STATE(2404), 1, - sym_where_clause, - STATE(3589), 1, - sym_label, - STATE(2218), 2, + ACTIONS(5225), 1, + anon_sym_RBRACK, + ACTIONS(5227), 1, + anon_sym_EQ, + STATE(3586), 1, + sym_delim_token_tree, + STATE(2282), 2, sym_line_comment, sym_block_comment, - [69684] = 11, - ACTIONS(101), 1, + [71748] = 10, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5183), 1, + anon_sym_LPAREN, + ACTIONS(5185), 1, + anon_sym_LBRACK, + ACTIONS(5189), 1, + anon_sym_LBRACE, + ACTIONS(5229), 1, + anon_sym_RBRACE, + STATE(2300), 1, + aux_sym_macro_definition_repeat1, + STATE(3229), 1, + sym_macro_rule, + STATE(3508), 1, + sym_token_tree_pattern, + STATE(2283), 2, + sym_line_comment, + sym_block_comment, + [71780] = 10, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4979), 1, + ACTIONS(5183), 1, + anon_sym_LPAREN, + ACTIONS(5185), 1, + anon_sym_LBRACK, + ACTIONS(5189), 1, anon_sym_LBRACE, - ACTIONS(5061), 1, - anon_sym_SEMI, - ACTIONS(5063), 1, - anon_sym_DASH_GT, - STATE(585), 1, - sym_block, - STATE(2465), 1, - sym_where_clause, - STATE(3586), 1, - sym_label, - STATE(2219), 2, + ACTIONS(5231), 1, + anon_sym_RBRACE, + STATE(2300), 1, + aux_sym_macro_definition_repeat1, + STATE(3232), 1, + sym_macro_rule, + STATE(3508), 1, + sym_token_tree_pattern, + STATE(2284), 2, sym_line_comment, sym_block_comment, - [69719] = 7, - ACTIONS(101), 1, + [71812] = 10, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5183), 1, + anon_sym_LPAREN, + ACTIONS(5185), 1, + anon_sym_LBRACK, + ACTIONS(5189), 1, + anon_sym_LBRACE, + ACTIONS(5233), 1, + anon_sym_RBRACE, + STATE(2300), 1, + aux_sym_macro_definition_repeat1, + STATE(3237), 1, + sym_macro_rule, + STATE(3508), 1, + sym_token_tree_pattern, + STATE(2285), 2, + sym_line_comment, + sym_block_comment, + [71844] = 10, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5068), 1, - anon_sym_fn, - ACTIONS(5070), 1, - anon_sym_extern, - STATE(2320), 1, - sym_extern_modifier, - STATE(2220), 3, + ACTIONS(5183), 1, + anon_sym_LPAREN, + ACTIONS(5185), 1, + anon_sym_LBRACK, + ACTIONS(5189), 1, + anon_sym_LBRACE, + ACTIONS(5235), 1, + anon_sym_RBRACE, + STATE(2193), 1, + aux_sym_macro_rules_repeat1, + STATE(3226), 1, + sym_macro_rule, + STATE(3508), 1, + sym_token_tree_pattern, + STATE(2286), 2, sym_line_comment, sym_block_comment, - aux_sym_function_modifiers_repeat1, - ACTIONS(5065), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - [69746] = 10, - ACTIONS(101), 1, + [71876] = 10, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5183), 1, + anon_sym_LPAREN, + ACTIONS(5185), 1, + anon_sym_LBRACK, + ACTIONS(5189), 1, + anon_sym_LBRACE, + ACTIONS(5237), 1, + anon_sym_RBRACK, + STATE(2193), 1, + aux_sym_macro_rules_repeat1, + STATE(3223), 1, + sym_macro_rule, + STATE(3508), 1, + sym_token_tree_pattern, + STATE(2287), 2, + sym_line_comment, + sym_block_comment, + [71908] = 10, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5183), 1, + anon_sym_LPAREN, + ACTIONS(5185), 1, + anon_sym_LBRACK, + ACTIONS(5189), 1, + anon_sym_LBRACE, + ACTIONS(5237), 1, + anon_sym_RPAREN, + STATE(2193), 1, + aux_sym_macro_rules_repeat1, + STATE(3222), 1, + sym_macro_rule, + STATE(3508), 1, + sym_token_tree_pattern, + STATE(2288), 2, + sym_line_comment, + sym_block_comment, + [71940] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1482), 1, + ACTIONS(4541), 1, anon_sym_DOT_DOT, - ACTIONS(5039), 1, - sym_identifier, - ACTIONS(5045), 1, - anon_sym_ref, - ACTIONS(5047), 1, - sym_mutable_specifier, - ACTIONS(5073), 1, - anon_sym_RBRACE, - ACTIONS(5075), 1, + ACTIONS(5241), 1, + anon_sym_COLON, + ACTIONS(5243), 1, + anon_sym_COLON_COLON, + ACTIONS(4543), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(5239), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(2221), 2, + STATE(2289), 2, + sym_line_comment, + sym_block_comment, + [71968] = 10, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5183), 1, + anon_sym_LPAREN, + ACTIONS(5185), 1, + anon_sym_LBRACK, + ACTIONS(5189), 1, + anon_sym_LBRACE, + ACTIONS(5245), 1, + anon_sym_RBRACE, + STATE(2193), 1, + aux_sym_macro_rules_repeat1, + STATE(3215), 1, + sym_macro_rule, + STATE(3508), 1, + sym_token_tree_pattern, + STATE(2290), 2, + sym_line_comment, + sym_block_comment, + [72000] = 10, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5183), 1, + anon_sym_LPAREN, + ACTIONS(5185), 1, + anon_sym_LBRACK, + ACTIONS(5189), 1, + anon_sym_LBRACE, + ACTIONS(5247), 1, + anon_sym_RBRACK, + STATE(2193), 1, + aux_sym_macro_rules_repeat1, + STATE(3214), 1, + sym_macro_rule, + STATE(3508), 1, + sym_token_tree_pattern, + STATE(2291), 2, + sym_line_comment, + sym_block_comment, + [72032] = 10, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5183), 1, + anon_sym_LPAREN, + ACTIONS(5185), 1, + anon_sym_LBRACK, + ACTIONS(5189), 1, + anon_sym_LBRACE, + ACTIONS(5247), 1, + anon_sym_RPAREN, + STATE(2193), 1, + aux_sym_macro_rules_repeat1, + STATE(3213), 1, + sym_macro_rule, + STATE(3508), 1, + sym_token_tree_pattern, + STATE(2292), 2, sym_line_comment, sym_block_comment, - STATE(3022), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [69779] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [72064] = 10, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1482), 1, - anon_sym_DOT_DOT, - ACTIONS(5039), 1, - sym_identifier, - ACTIONS(5045), 1, - anon_sym_ref, - ACTIONS(5047), 1, - sym_mutable_specifier, - ACTIONS(5077), 1, + ACTIONS(5183), 1, + anon_sym_LPAREN, + ACTIONS(5185), 1, + anon_sym_LBRACK, + ACTIONS(5189), 1, + anon_sym_LBRACE, + ACTIONS(5249), 1, anon_sym_RBRACE, - ACTIONS(5079), 1, - anon_sym_COMMA, - STATE(2222), 2, + STATE(2193), 1, + aux_sym_macro_rules_repeat1, + STATE(3238), 1, + sym_macro_rule, + STATE(3508), 1, + sym_token_tree_pattern, + STATE(2293), 2, sym_line_comment, sym_block_comment, - STATE(2738), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [69812] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [72096] = 10, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2223), 2, + ACTIONS(5183), 1, + anon_sym_LPAREN, + ACTIONS(5185), 1, + anon_sym_LBRACK, + ACTIONS(5189), 1, + anon_sym_LBRACE, + ACTIONS(5251), 1, + anon_sym_RBRACE, + STATE(2193), 1, + aux_sym_macro_rules_repeat1, + STATE(3242), 1, + sym_macro_rule, + STATE(3508), 1, + sym_token_tree_pattern, + STATE(2294), 2, sym_line_comment, sym_block_comment, - ACTIONS(4928), 8, - anon_sym_SEMI, + [72128] = 8, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4983), 1, + anon_sym_LPAREN, + ACTIONS(5033), 1, anon_sym_LBRACE, - anon_sym_PLUS, + ACTIONS(5255), 1, anon_sym_EQ, - anon_sym_GT, + ACTIONS(5253), 2, + anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_where, - [69833] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + STATE(2295), 2, + sym_line_comment, + sym_block_comment, + STATE(2893), 2, + sym_field_declaration_list, + sym_ordered_field_declaration_list, + [72156] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(4997), 1, - anon_sym_LBRACE, - ACTIONS(5081), 1, - anon_sym_SEMI, - STATE(1115), 1, - sym_block, - STATE(2408), 1, - sym_where_clause, - STATE(3589), 1, - sym_label, - STATE(2224), 2, + ACTIONS(4541), 1, + anon_sym_DOT_DOT, + ACTIONS(5259), 1, + anon_sym_COLON, + ACTIONS(5261), 1, + anon_sym_COLON_COLON, + ACTIONS(4543), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(5257), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2296), 2, sym_line_comment, sym_block_comment, - [69868] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [72184] = 10, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4979), 1, + ACTIONS(4983), 1, + anon_sym_LPAREN, + ACTIONS(4985), 1, anon_sym_LBRACE, ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5083), 1, + anon_sym_where, + ACTIONS(5263), 1, anon_sym_SEMI, - STATE(614), 1, - sym_block, - STATE(2474), 1, + STATE(551), 1, + sym_field_declaration_list, + STATE(2794), 1, + sym_ordered_field_declaration_list, + STATE(3390), 1, sym_where_clause, - STATE(3586), 1, - sym_label, - STATE(2225), 2, + STATE(2297), 2, sym_line_comment, sym_block_comment, - [69903] = 11, - ACTIONS(67), 1, - anon_sym_pub, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [72216] = 10, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, - anon_sym_POUND, - ACTIONS(4780), 1, - sym_crate, - ACTIONS(4782), 1, - sym_identifier, - STATE(1065), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1476), 1, - sym_attribute_item, - STATE(2994), 1, - sym_field_declaration, - STATE(3560), 1, - sym_visibility_modifier, - STATE(2226), 2, + ACTIONS(5183), 1, + anon_sym_LPAREN, + ACTIONS(5185), 1, + anon_sym_LBRACK, + ACTIONS(5189), 1, + anon_sym_LBRACE, + ACTIONS(5265), 1, + anon_sym_RBRACE, + STATE(2300), 1, + aux_sym_macro_definition_repeat1, + STATE(3191), 1, + sym_macro_rule, + STATE(3508), 1, + sym_token_tree_pattern, + STATE(2298), 2, sym_line_comment, sym_block_comment, - [69938] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [72248] = 10, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4997), 1, + ACTIONS(5183), 1, + anon_sym_LPAREN, + ACTIONS(5185), 1, + anon_sym_LBRACK, + ACTIONS(5189), 1, anon_sym_LBRACE, - ACTIONS(5085), 1, - anon_sym_SEMI, - ACTIONS(5087), 1, - anon_sym_DASH_GT, - STATE(1124), 1, - sym_block, - STATE(2409), 1, - sym_where_clause, - STATE(3589), 1, - sym_label, - STATE(2227), 2, + ACTIONS(5267), 1, + anon_sym_RBRACE, + STATE(2300), 1, + aux_sym_macro_definition_repeat1, + STATE(3190), 1, + sym_macro_rule, + STATE(3508), 1, + sym_token_tree_pattern, + STATE(2299), 2, sym_line_comment, sym_block_comment, - [69973] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [72280] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4997), 1, + ACTIONS(5269), 1, + anon_sym_LPAREN, + ACTIONS(5272), 1, + anon_sym_LBRACK, + ACTIONS(5275), 1, anon_sym_LBRACE, - ACTIONS(5089), 1, - anon_sym_SEMI, - ACTIONS(5091), 1, - anon_sym_DASH_GT, - STATE(1359), 1, - sym_block, - STATE(2486), 1, - sym_where_clause, - STATE(3589), 1, - sym_label, - STATE(2228), 2, + ACTIONS(5278), 1, + anon_sym_RBRACE, + STATE(3460), 1, + sym_macro_rule, + STATE(3508), 1, + sym_token_tree_pattern, + STATE(2300), 3, sym_line_comment, sym_block_comment, - [70008] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + aux_sym_macro_definition_repeat1, + [72310] = 10, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, + ACTIONS(4983), 1, + anon_sym_LPAREN, + ACTIONS(4989), 1, anon_sym_where, - ACTIONS(4915), 1, + ACTIONS(5033), 1, anon_sym_LBRACE, - ACTIONS(4971), 1, - anon_sym_COLON, - ACTIONS(4973), 1, - anon_sym_LT, - STATE(1372), 1, - sym_declaration_list, - STATE(2325), 1, - sym_type_parameters, - STATE(2561), 1, - sym_trait_bounds, - STATE(3234), 1, + ACTIONS(5280), 1, + anon_sym_SEMI, + STATE(1092), 1, + sym_field_declaration_list, + STATE(2909), 1, + sym_ordered_field_declaration_list, + STATE(3272), 1, sym_where_clause, - STATE(2229), 2, + STATE(2301), 2, sym_line_comment, sym_block_comment, - [70043] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [72342] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1482), 1, + ACTIONS(4541), 1, anon_sym_DOT_DOT, - ACTIONS(5039), 1, - sym_identifier, - ACTIONS(5045), 1, - anon_sym_ref, - ACTIONS(5047), 1, - sym_mutable_specifier, - ACTIONS(5093), 1, - anon_sym_RBRACE, - ACTIONS(5095), 1, - anon_sym_COMMA, - STATE(2230), 2, + ACTIONS(5282), 1, + anon_sym_COLON_COLON, + ACTIONS(4543), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2302), 2, sym_line_comment, sym_block_comment, - STATE(2870), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [70076] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3377), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS, + [72368] = 7, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4971), 1, - anon_sym_COLON, - ACTIONS(4973), 1, - anon_sym_LT, - ACTIONS(5097), 1, - anon_sym_SEMI, - ACTIONS(5099), 1, - anon_sym_EQ, - STATE(2294), 1, - sym_type_parameters, - STATE(2833), 1, - sym_trait_bounds, - STATE(3576), 1, - sym_where_clause, - STATE(2231), 2, - sym_line_comment, - sym_block_comment, - [70111] = 7, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4463), 1, + ACTIONS(4541), 1, anon_sym_DOT_DOT, - ACTIONS(5101), 1, + ACTIONS(5243), 1, anon_sym_COLON_COLON, - ACTIONS(4465), 2, + ACTIONS(4543), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2232), 2, + STATE(2303), 2, sym_line_comment, sym_block_comment, - ACTIONS(3299), 3, - anon_sym_SEMI, - anon_sym_RBRACK, + ACTIONS(3377), 3, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_PLUS, - [70137] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [72394] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4840), 1, + ACTIONS(4541), 1, anon_sym_DOT_DOT, - ACTIONS(4844), 1, + ACTIONS(5241), 1, + anon_sym_COLON, + ACTIONS(5282), 1, anon_sym_COLON_COLON, - ACTIONS(4842), 2, + ACTIONS(4543), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2233), 2, + ACTIONS(5239), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2304), 2, sym_line_comment, sym_block_comment, - ACTIONS(4519), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [70163] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [72422] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4243), 1, - anon_sym_LBRACE, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(5105), 1, - anon_sym_STAR, - STATE(2776), 1, - sym_use_list, - STATE(3195), 1, - sym_type_arguments, - ACTIONS(5103), 2, - sym_identifier, - sym_super, - STATE(2234), 2, + ACTIONS(5284), 1, + anon_sym_trait, + STATE(2305), 2, sym_line_comment, sym_block_comment, - [70193] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3401), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [72444] = 10, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1482), 1, - anon_sym_DOT_DOT, - ACTIONS(5039), 1, - sym_identifier, - ACTIONS(5045), 1, - anon_sym_ref, - ACTIONS(5047), 1, - sym_mutable_specifier, - ACTIONS(5107), 1, - anon_sym_RBRACE, - STATE(2235), 2, + ACTIONS(5183), 1, + anon_sym_LPAREN, + ACTIONS(5185), 1, + anon_sym_LBRACK, + ACTIONS(5189), 1, + anon_sym_LBRACE, + ACTIONS(5286), 1, + anon_sym_RBRACK, + STATE(2193), 1, + aux_sym_macro_rules_repeat1, + STATE(3262), 1, + sym_macro_rule, + STATE(3508), 1, + sym_token_tree_pattern, + STATE(2306), 2, sym_line_comment, sym_block_comment, - STATE(3197), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [70223] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [72476] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4243), 1, - anon_sym_LBRACE, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(5105), 1, - anon_sym_STAR, - STATE(2776), 1, - sym_use_list, - STATE(3217), 1, - sym_type_arguments, - ACTIONS(5103), 2, + ACTIONS(5288), 1, sym_identifier, - sym_super, - STATE(2236), 2, + STATE(2307), 2, sym_line_comment, sym_block_comment, - [70253] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4792), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [72498] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1482), 1, + ACTIONS(1501), 1, anon_sym_DOT_DOT, - ACTIONS(5039), 1, + ACTIONS(5097), 1, sym_identifier, - ACTIONS(5045), 1, + ACTIONS(5103), 1, anon_sym_ref, - ACTIONS(5047), 1, + ACTIONS(5105), 1, sym_mutable_specifier, - ACTIONS(5109), 1, + ACTIONS(5290), 1, anon_sym_RBRACE, - STATE(2237), 2, + STATE(2308), 2, sym_line_comment, sym_block_comment, - STATE(3197), 2, + STATE(3324), 2, sym_field_pattern, sym_remaining_field_pattern, - [70283] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [72528] = 10, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4868), 1, + ACTIONS(5183), 1, anon_sym_LPAREN, - ACTIONS(4891), 1, + ACTIONS(5185), 1, + anon_sym_LBRACK, + ACTIONS(5189), 1, anon_sym_LBRACE, - ACTIONS(5113), 1, - anon_sym_EQ, - ACTIONS(5111), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(2238), 2, + ACTIONS(5286), 1, + anon_sym_RPAREN, + STATE(2193), 1, + aux_sym_macro_rules_repeat1, + STATE(3264), 1, + sym_macro_rule, + STATE(3508), 1, + sym_token_tree_pattern, + STATE(2309), 2, sym_line_comment, sym_block_comment, - STATE(2769), 2, - sym_field_declaration_list, - sym_ordered_field_declaration_list, - [70311] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [72560] = 10, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4868), 1, + ACTIONS(5183), 1, anon_sym_LPAREN, - ACTIONS(4870), 1, + ACTIONS(5185), 1, + anon_sym_LBRACK, + ACTIONS(5187), 1, + anon_sym_RPAREN, + ACTIONS(5189), 1, anon_sym_LBRACE, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(5115), 1, - anon_sym_SEMI, - STATE(749), 1, - sym_field_declaration_list, - STATE(3002), 1, - sym_ordered_field_declaration_list, - STATE(3251), 1, - sym_where_clause, - STATE(2239), 2, + STATE(2193), 1, + aux_sym_macro_rules_repeat1, + STATE(3268), 1, + sym_macro_rule, + STATE(3508), 1, + sym_token_tree_pattern, + STATE(2310), 2, sym_line_comment, sym_block_comment, - [70343] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [72592] = 10, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(5117), 1, - sym_identifier, - STATE(2240), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4724), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [70365] = 10, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5119), 1, + ACTIONS(5183), 1, anon_sym_LPAREN, - ACTIONS(5121), 1, - anon_sym_RPAREN, - ACTIONS(5123), 1, + ACTIONS(5185), 1, anon_sym_LBRACK, - ACTIONS(5125), 1, + ACTIONS(5189), 1, anon_sym_LBRACE, - STATE(2254), 1, - aux_sym_macro_definition_repeat1, - STATE(3074), 1, + ACTIONS(5292), 1, + anon_sym_RPAREN, + STATE(2310), 1, + aux_sym_macro_rules_repeat1, + STATE(3317), 1, sym_macro_rule, - STATE(3337), 1, + STATE(3508), 1, sym_token_tree_pattern, - STATE(2241), 2, + STATE(2311), 2, sym_line_comment, sym_block_comment, - [70397] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [72624] = 10, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5119), 1, + ACTIONS(5183), 1, anon_sym_LPAREN, - ACTIONS(5121), 1, - anon_sym_RBRACK, - ACTIONS(5123), 1, + ACTIONS(5185), 1, anon_sym_LBRACK, - ACTIONS(5125), 1, + ACTIONS(5189), 1, anon_sym_LBRACE, - STATE(2256), 1, - aux_sym_macro_definition_repeat1, - STATE(3141), 1, + ACTIONS(5294), 1, + anon_sym_RPAREN, + STATE(2292), 1, + aux_sym_macro_rules_repeat1, + STATE(3288), 1, sym_macro_rule, - STATE(3337), 1, + STATE(3508), 1, sym_token_tree_pattern, - STATE(2242), 2, + STATE(2312), 2, sym_line_comment, sym_block_comment, - [70429] = 10, - ACTIONS(101), 1, + [72656] = 9, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4279), 1, + anon_sym_LBRACE, + ACTIONS(4527), 1, + anon_sym_LT2, + ACTIONS(5298), 1, + anon_sym_STAR, + STATE(3046), 1, + sym_use_list, + STATE(3219), 1, + sym_type_arguments, + ACTIONS(5296), 2, + sym_identifier, + sym_super, + STATE(2313), 2, + sym_line_comment, + sym_block_comment, + [72686] = 10, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5119), 1, + ACTIONS(5183), 1, anon_sym_LPAREN, - ACTIONS(5123), 1, + ACTIONS(5185), 1, anon_sym_LBRACK, - ACTIONS(5125), 1, + ACTIONS(5189), 1, anon_sym_LBRACE, - ACTIONS(5127), 1, - anon_sym_RBRACE, - STATE(2258), 1, - aux_sym_macro_definition_repeat1, - STATE(3150), 1, + ACTIONS(5292), 1, + anon_sym_RBRACK, + STATE(2266), 1, + aux_sym_macro_rules_repeat1, + STATE(3310), 1, sym_macro_rule, - STATE(3337), 1, + STATE(3508), 1, sym_token_tree_pattern, - STATE(2243), 2, + STATE(2314), 2, sym_line_comment, sym_block_comment, - [70461] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [72718] = 10, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5119), 1, + ACTIONS(5183), 1, anon_sym_LPAREN, - ACTIONS(5123), 1, + ACTIONS(5185), 1, anon_sym_LBRACK, - ACTIONS(5125), 1, + ACTIONS(5189), 1, anon_sym_LBRACE, - ACTIONS(5129), 1, + ACTIONS(5300), 1, anon_sym_RPAREN, - STATE(2259), 1, - aux_sym_macro_definition_repeat1, - STATE(3162), 1, + STATE(2309), 1, + aux_sym_macro_rules_repeat1, + STATE(3309), 1, sym_macro_rule, - STATE(3337), 1, + STATE(3508), 1, sym_token_tree_pattern, - STATE(2244), 2, + STATE(2315), 2, sym_line_comment, sym_block_comment, - [70493] = 10, - ACTIONS(101), 1, + [72750] = 10, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4983), 1, + anon_sym_LPAREN, + ACTIONS(4985), 1, + anon_sym_LBRACE, + ACTIONS(4989), 1, + anon_sym_where, + ACTIONS(5302), 1, + anon_sym_SEMI, + STATE(595), 1, + sym_field_declaration_list, + STATE(3074), 1, + sym_ordered_field_declaration_list, + STATE(3104), 1, + sym_where_clause, + STATE(2316), 2, + sym_line_comment, + sym_block_comment, + [72782] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5119), 1, + ACTIONS(4279), 1, + anon_sym_LBRACE, + ACTIONS(4527), 1, + anon_sym_LT2, + ACTIONS(5298), 1, + anon_sym_STAR, + STATE(3046), 1, + sym_use_list, + STATE(3228), 1, + sym_type_arguments, + ACTIONS(5296), 2, + sym_identifier, + sym_super, + STATE(2317), 2, + sym_line_comment, + sym_block_comment, + [72812] = 9, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1501), 1, + anon_sym_DOT_DOT, + ACTIONS(5097), 1, + sym_identifier, + ACTIONS(5103), 1, + anon_sym_ref, + ACTIONS(5105), 1, + sym_mutable_specifier, + ACTIONS(5304), 1, + anon_sym_RBRACE, + STATE(2318), 2, + sym_line_comment, + sym_block_comment, + STATE(3324), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [72842] = 10, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5183), 1, anon_sym_LPAREN, - ACTIONS(5123), 1, + ACTIONS(5185), 1, anon_sym_LBRACK, - ACTIONS(5125), 1, + ACTIONS(5189), 1, anon_sym_LBRACE, - ACTIONS(5129), 1, + ACTIONS(5294), 1, anon_sym_RBRACK, - STATE(2289), 1, - aux_sym_macro_definition_repeat1, - STATE(3169), 1, + STATE(2291), 1, + aux_sym_macro_rules_repeat1, + STATE(3286), 1, sym_macro_rule, - STATE(3337), 1, + STATE(3508), 1, sym_token_tree_pattern, - STATE(2245), 2, + STATE(2319), 2, sym_line_comment, sym_block_comment, - [70525] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [72874] = 10, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5119), 1, + ACTIONS(5183), 1, anon_sym_LPAREN, - ACTIONS(5123), 1, + ACTIONS(5185), 1, anon_sym_LBRACK, - ACTIONS(5125), 1, + ACTIONS(5189), 1, anon_sym_LBRACE, - ACTIONS(5131), 1, - anon_sym_RBRACE, - STATE(2263), 1, - aux_sym_macro_definition_repeat1, - STATE(3192), 1, + ACTIONS(5300), 1, + anon_sym_RBRACK, + STATE(2306), 1, + aux_sym_macro_rules_repeat1, + STATE(3303), 1, sym_macro_rule, - STATE(3337), 1, + STATE(3508), 1, sym_token_tree_pattern, - STATE(2246), 2, + STATE(2320), 2, sym_line_comment, sym_block_comment, - [70557] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [72906] = 10, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5119), 1, + ACTIONS(5183), 1, anon_sym_LPAREN, - ACTIONS(5123), 1, + ACTIONS(5185), 1, anon_sym_LBRACK, - ACTIONS(5125), 1, + ACTIONS(5189), 1, anon_sym_LBRACE, - ACTIONS(5133), 1, + ACTIONS(5306), 1, anon_sym_RBRACE, - STATE(2252), 1, - aux_sym_macro_definition_repeat1, - STATE(3047), 1, + STATE(2290), 1, + aux_sym_macro_rules_repeat1, + STATE(3284), 1, sym_macro_rule, - STATE(3337), 1, + STATE(3508), 1, sym_token_tree_pattern, - STATE(2247), 2, + STATE(2321), 2, sym_line_comment, sym_block_comment, - [70589] = 10, - ACTIONS(101), 1, + [72938] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5308), 1, + anon_sym_trait, + STATE(2322), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3401), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [72960] = 10, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5119), 1, + ACTIONS(5183), 1, anon_sym_LPAREN, - ACTIONS(5123), 1, + ACTIONS(5185), 1, anon_sym_LBRACK, - ACTIONS(5125), 1, + ACTIONS(5189), 1, anon_sym_LBRACE, - ACTIONS(5135), 1, - anon_sym_RBRACE, - STATE(2253), 1, - aux_sym_macro_definition_repeat1, - STATE(3053), 1, + ACTIONS(5310), 1, + anon_sym_RPAREN, + STATE(2288), 1, + aux_sym_macro_rules_repeat1, + STATE(3282), 1, sym_macro_rule, - STATE(3337), 1, + STATE(3508), 1, sym_token_tree_pattern, - STATE(2248), 2, + STATE(2323), 2, sym_line_comment, sym_block_comment, - [70621] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [72992] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1482), 1, + ACTIONS(1501), 1, anon_sym_DOT_DOT, - ACTIONS(5039), 1, + ACTIONS(5097), 1, sym_identifier, - ACTIONS(5045), 1, + ACTIONS(5103), 1, anon_sym_ref, - ACTIONS(5047), 1, + ACTIONS(5105), 1, sym_mutable_specifier, - ACTIONS(5137), 1, + ACTIONS(5312), 1, anon_sym_RBRACE, - STATE(2249), 2, + STATE(2324), 2, sym_line_comment, sym_block_comment, - STATE(3197), 2, + STATE(3324), 2, sym_field_pattern, sym_remaining_field_pattern, - [70651] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [73022] = 10, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1482), 1, - anon_sym_DOT_DOT, - ACTIONS(5039), 1, - sym_identifier, - ACTIONS(5045), 1, - anon_sym_ref, - ACTIONS(5047), 1, - sym_mutable_specifier, - ACTIONS(5139), 1, + ACTIONS(5183), 1, + anon_sym_LPAREN, + ACTIONS(5185), 1, + anon_sym_LBRACK, + ACTIONS(5189), 1, + anon_sym_LBRACE, + ACTIONS(5314), 1, anon_sym_RBRACE, - STATE(2250), 2, + STATE(2294), 1, + aux_sym_macro_rules_repeat1, + STATE(3356), 1, + sym_macro_rule, + STATE(3508), 1, + sym_token_tree_pattern, + STATE(2325), 2, sym_line_comment, sym_block_comment, - STATE(3197), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [70681] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [73054] = 10, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4868), 1, + ACTIONS(5183), 1, anon_sym_LPAREN, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4891), 1, + ACTIONS(5185), 1, + anon_sym_LBRACK, + ACTIONS(5189), 1, anon_sym_LBRACE, - ACTIONS(5141), 1, - anon_sym_SEMI, - STATE(1255), 1, - sym_field_declaration_list, - STATE(2793), 1, - sym_ordered_field_declaration_list, - STATE(3115), 1, - sym_where_clause, - STATE(2251), 2, + ACTIONS(5310), 1, + anon_sym_RBRACK, + STATE(2287), 1, + aux_sym_macro_rules_repeat1, + STATE(3281), 1, + sym_macro_rule, + STATE(3508), 1, + sym_token_tree_pattern, + STATE(2326), 2, sym_line_comment, sym_block_comment, - [70713] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [73086] = 10, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5119), 1, + ACTIONS(5183), 1, anon_sym_LPAREN, - ACTIONS(5123), 1, + ACTIONS(5185), 1, anon_sym_LBRACK, - ACTIONS(5125), 1, + ACTIONS(5189), 1, anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5316), 1, anon_sym_RBRACE, - STATE(2155), 1, - aux_sym_macro_definition_repeat1, - STATE(3151), 1, + STATE(2293), 1, + aux_sym_macro_rules_repeat1, + STATE(3352), 1, sym_macro_rule, - STATE(3337), 1, + STATE(3508), 1, sym_token_tree_pattern, - STATE(2252), 2, + STATE(2327), 2, sym_line_comment, sym_block_comment, - [70745] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [73118] = 10, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5119), 1, + ACTIONS(5183), 1, anon_sym_LPAREN, - ACTIONS(5123), 1, + ACTIONS(5185), 1, anon_sym_LBRACK, - ACTIONS(5125), 1, + ACTIONS(5189), 1, anon_sym_LBRACE, - ACTIONS(5145), 1, + ACTIONS(5318), 1, anon_sym_RBRACE, - STATE(2155), 1, + STATE(2277), 1, aux_sym_macro_definition_repeat1, - STATE(3155), 1, + STATE(3174), 1, sym_macro_rule, - STATE(3337), 1, + STATE(3508), 1, sym_token_tree_pattern, - STATE(2253), 2, + STATE(2328), 2, sym_line_comment, sym_block_comment, - [70777] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [73150] = 10, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5119), 1, + ACTIONS(5183), 1, anon_sym_LPAREN, - ACTIONS(5123), 1, + ACTIONS(5185), 1, anon_sym_LBRACK, - ACTIONS(5125), 1, + ACTIONS(5189), 1, anon_sym_LBRACE, - ACTIONS(5147), 1, - anon_sym_RPAREN, - STATE(2155), 1, - aux_sym_macro_definition_repeat1, - STATE(3224), 1, + ACTIONS(5320), 1, + anon_sym_RBRACE, + STATE(2286), 1, + aux_sym_macro_rules_repeat1, + STATE(3280), 1, sym_macro_rule, - STATE(3337), 1, + STATE(3508), 1, sym_token_tree_pattern, - STATE(2254), 2, + STATE(2329), 2, sym_line_comment, sym_block_comment, - [70809] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [73182] = 10, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4868), 1, + ACTIONS(5183), 1, anon_sym_LPAREN, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4891), 1, + ACTIONS(5185), 1, + anon_sym_LBRACK, + ACTIONS(5189), 1, anon_sym_LBRACE, - ACTIONS(5149), 1, - anon_sym_SEMI, - STATE(1368), 1, - sym_field_declaration_list, - STATE(2933), 1, - sym_ordered_field_declaration_list, - STATE(3231), 1, - sym_where_clause, - STATE(2255), 2, + ACTIONS(5322), 1, + anon_sym_RBRACE, + STATE(2285), 1, + aux_sym_macro_definition_repeat1, + STATE(3341), 1, + sym_macro_rule, + STATE(3508), 1, + sym_token_tree_pattern, + STATE(2330), 2, sym_line_comment, sym_block_comment, - [70841] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [73214] = 10, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5119), 1, + ACTIONS(5183), 1, anon_sym_LPAREN, - ACTIONS(5123), 1, + ACTIONS(5185), 1, anon_sym_LBRACK, - ACTIONS(5125), 1, + ACTIONS(5189), 1, anon_sym_LBRACE, - ACTIONS(5147), 1, - anon_sym_RBRACK, - STATE(2155), 1, + ACTIONS(5324), 1, + anon_sym_RBRACE, + STATE(2283), 1, aux_sym_macro_definition_repeat1, - STATE(3245), 1, + STATE(3250), 1, sym_macro_rule, - STATE(3337), 1, + STATE(3508), 1, sym_token_tree_pattern, - STATE(2256), 2, + STATE(2331), 2, sym_line_comment, sym_block_comment, - [70873] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [73246] = 10, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4463), 1, - anon_sym_DOT_DOT, - ACTIONS(5153), 1, - anon_sym_COLON, - ACTIONS(5155), 1, - anon_sym_COLON_COLON, - ACTIONS(4465), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(5151), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2257), 2, - sym_line_comment, - sym_block_comment, - [70901] = 10, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5119), 1, + ACTIONS(5183), 1, anon_sym_LPAREN, - ACTIONS(5123), 1, + ACTIONS(5185), 1, anon_sym_LBRACK, - ACTIONS(5125), 1, + ACTIONS(5189), 1, anon_sym_LBRACE, - ACTIONS(5157), 1, + ACTIONS(5326), 1, anon_sym_RBRACE, - STATE(2155), 1, + STATE(2273), 1, aux_sym_macro_definition_repeat1, STATE(3248), 1, sym_macro_rule, - STATE(3337), 1, + STATE(3508), 1, sym_token_tree_pattern, - STATE(2258), 2, + STATE(2332), 2, sym_line_comment, sym_block_comment, - [70933] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [73278] = 10, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5119), 1, + ACTIONS(5183), 1, anon_sym_LPAREN, - ACTIONS(5123), 1, + ACTIONS(5185), 1, anon_sym_LBRACK, - ACTIONS(5125), 1, + ACTIONS(5189), 1, anon_sym_LBRACE, - ACTIONS(5159), 1, - anon_sym_RPAREN, - STATE(2155), 1, + ACTIONS(5328), 1, + anon_sym_RBRACE, + STATE(2275), 1, aux_sym_macro_definition_repeat1, - STATE(3279), 1, + STATE(3170), 1, sym_macro_rule, - STATE(3337), 1, + STATE(3508), 1, sym_token_tree_pattern, - STATE(2259), 2, + STATE(2333), 2, sym_line_comment, sym_block_comment, - [70965] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [73310] = 10, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4868), 1, + ACTIONS(4983), 1, anon_sym_LPAREN, - ACTIONS(4870), 1, - anon_sym_LBRACE, - ACTIONS(4874), 1, + ACTIONS(4989), 1, anon_sym_where, - ACTIONS(5161), 1, + ACTIONS(5033), 1, + anon_sym_LBRACE, + ACTIONS(5330), 1, anon_sym_SEMI, - STATE(677), 1, + STATE(1192), 1, sym_field_declaration_list, - STATE(2862), 1, + STATE(3031), 1, sym_ordered_field_declaration_list, - STATE(3144), 1, + STATE(3164), 1, sym_where_clause, - STATE(2260), 2, + STATE(2334), 2, sym_line_comment, sym_block_comment, - [70997] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [73342] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1482), 1, + ACTIONS(1501), 1, anon_sym_DOT_DOT, - ACTIONS(5039), 1, + ACTIONS(5097), 1, sym_identifier, - ACTIONS(5045), 1, + ACTIONS(5103), 1, anon_sym_ref, - ACTIONS(5047), 1, + ACTIONS(5105), 1, sym_mutable_specifier, - ACTIONS(5163), 1, + ACTIONS(5332), 1, anon_sym_RBRACE, - STATE(2261), 2, + STATE(2335), 2, sym_line_comment, sym_block_comment, - STATE(3197), 2, + STATE(3324), 2, sym_field_pattern, sym_remaining_field_pattern, - [71027] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [73372] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1482), 1, + ACTIONS(1501), 1, anon_sym_DOT_DOT, - ACTIONS(5039), 1, + ACTIONS(5097), 1, sym_identifier, - ACTIONS(5045), 1, + ACTIONS(5103), 1, anon_sym_ref, - ACTIONS(5047), 1, + ACTIONS(5105), 1, sym_mutable_specifier, - ACTIONS(5165), 1, + ACTIONS(5334), 1, anon_sym_RBRACE, - STATE(2262), 2, + STATE(2336), 2, sym_line_comment, sym_block_comment, - STATE(3197), 2, + STATE(3324), 2, sym_field_pattern, sym_remaining_field_pattern, - [71057] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [73402] = 7, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(5119), 1, - anon_sym_LPAREN, - ACTIONS(5123), 1, - anon_sym_LBRACK, - ACTIONS(5125), 1, - anon_sym_LBRACE, - ACTIONS(5167), 1, - anon_sym_RBRACE, - STATE(2155), 1, - aux_sym_macro_definition_repeat1, - STATE(3288), 1, - sym_macro_rule, - STATE(3337), 1, - sym_token_tree_pattern, - STATE(2263), 2, - sym_line_comment, - sym_block_comment, - [71089] = 9, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1482), 1, + ACTIONS(4541), 1, anon_sym_DOT_DOT, - ACTIONS(5039), 1, - sym_identifier, - ACTIONS(5045), 1, - anon_sym_ref, - ACTIONS(5047), 1, - sym_mutable_specifier, - ACTIONS(5169), 1, - anon_sym_RBRACE, - STATE(2264), 2, + ACTIONS(5336), 1, + anon_sym_COLON_COLON, + ACTIONS(4543), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2337), 2, sym_line_comment, sym_block_comment, - STATE(3197), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [71119] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3377), 3, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS, + [73428] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1482), 1, + ACTIONS(1501), 1, anon_sym_DOT_DOT, - ACTIONS(5039), 1, + ACTIONS(5097), 1, sym_identifier, - ACTIONS(5045), 1, + ACTIONS(5103), 1, anon_sym_ref, - ACTIONS(5047), 1, + ACTIONS(5105), 1, sym_mutable_specifier, - ACTIONS(5171), 1, + ACTIONS(5338), 1, anon_sym_RBRACE, - STATE(2265), 2, + STATE(2338), 2, sym_line_comment, sym_block_comment, - STATE(3197), 2, + STATE(3324), 2, sym_field_pattern, sym_remaining_field_pattern, - [71149] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [73458] = 10, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(5173), 1, - sym_identifier, - STATE(2266), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4724), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [71171] = 10, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4678), 1, - anon_sym_COLON_COLON, - ACTIONS(5175), 1, + ACTIONS(5183), 1, anon_sym_LPAREN, - ACTIONS(5177), 1, + ACTIONS(5185), 1, anon_sym_LBRACK, - ACTIONS(5179), 1, - anon_sym_RBRACK, - ACTIONS(5181), 1, + ACTIONS(5189), 1, anon_sym_LBRACE, - ACTIONS(5183), 1, - anon_sym_EQ, - STATE(3490), 1, - sym_delim_token_tree, - STATE(2267), 2, + ACTIONS(5340), 1, + anon_sym_RBRACE, + STATE(2284), 1, + aux_sym_macro_definition_repeat1, + STATE(3097), 1, + sym_macro_rule, + STATE(3508), 1, + sym_token_tree_pattern, + STATE(2339), 2, sym_line_comment, sym_block_comment, - [71203] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [73490] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4694), 1, + ACTIONS(4541), 1, + anon_sym_DOT_DOT, + ACTIONS(5282), 1, anon_sym_COLON_COLON, - ACTIONS(5175), 1, - anon_sym_LPAREN, - ACTIONS(5177), 1, - anon_sym_LBRACK, - ACTIONS(5181), 1, - anon_sym_LBRACE, - ACTIONS(5185), 1, - anon_sym_RBRACK, - ACTIONS(5187), 1, - anon_sym_EQ, - STATE(3415), 1, - sym_delim_token_tree, - STATE(2268), 2, + ACTIONS(4543), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(5342), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2340), 2, sym_line_comment, sym_block_comment, - [71235] = 10, - ACTIONS(101), 1, + [73515] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4928), 2, + anon_sym_COLON, + anon_sym_PIPE, + STATE(2341), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3480), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH_GT, + [73536] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4576), 1, - anon_sym_COLON_COLON, - ACTIONS(5175), 1, - anon_sym_LPAREN, - ACTIONS(5177), 1, - anon_sym_LBRACK, - ACTIONS(5181), 1, + ACTIONS(4989), 1, + anon_sym_where, + ACTIONS(5047), 1, anon_sym_LBRACE, - ACTIONS(5185), 1, - anon_sym_RBRACK, - ACTIONS(5187), 1, - anon_sym_EQ, - STATE(3415), 1, - sym_delim_token_tree, - STATE(2269), 2, + ACTIONS(5057), 1, + anon_sym_PLUS, + ACTIONS(5344), 1, + anon_sym_SEMI, + STATE(641), 1, + sym_declaration_list, + STATE(2866), 1, + sym_where_clause, + STATE(2342), 2, sym_line_comment, sym_block_comment, - [71267] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [73565] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4868), 1, - anon_sym_LPAREN, - ACTIONS(4891), 1, + ACTIONS(4957), 1, anon_sym_LBRACE, - ACTIONS(5191), 1, - anon_sym_EQ, - ACTIONS(5189), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(2270), 2, + ACTIONS(4989), 1, + anon_sym_where, + ACTIONS(5057), 1, + anon_sym_PLUS, + ACTIONS(5346), 1, + anon_sym_SEMI, + STATE(1238), 1, + sym_declaration_list, + STATE(3080), 1, + sym_where_clause, + STATE(2343), 2, sym_line_comment, sym_block_comment, - STATE(2831), 2, - sym_field_declaration_list, - sym_ordered_field_declaration_list, - [71295] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [73594] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4668), 1, - anon_sym_COLON_COLON, - ACTIONS(5175), 1, - anon_sym_LPAREN, - ACTIONS(5177), 1, - anon_sym_LBRACK, - ACTIONS(5181), 1, + ACTIONS(4957), 1, anon_sym_LBRACE, - ACTIONS(5185), 1, - anon_sym_RBRACK, - ACTIONS(5187), 1, - anon_sym_EQ, - STATE(3415), 1, - sym_delim_token_tree, - STATE(2271), 2, + ACTIONS(4989), 1, + anon_sym_where, + ACTIONS(5057), 1, + anon_sym_PLUS, + ACTIONS(5348), 1, + anon_sym_SEMI, + STATE(1243), 1, + sym_declaration_list, + STATE(3081), 1, + sym_where_clause, + STATE(2344), 2, sym_line_comment, sym_block_comment, - [71327] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [73623] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5193), 1, - anon_sym_trait, - STATE(2272), 2, + ACTIONS(4668), 1, + anon_sym_EQ, + ACTIONS(5061), 1, + anon_sym_COLON, + ACTIONS(5350), 1, + anon_sym_COMMA, + ACTIONS(5352), 1, + anon_sym_GT, + STATE(2996), 1, + aux_sym_type_parameters_repeat1, + STATE(3063), 1, + sym_trait_bounds, + STATE(2345), 2, sym_line_comment, sym_block_comment, - ACTIONS(3323), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [71349] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [73652] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5119), 1, - anon_sym_LPAREN, - ACTIONS(5123), 1, - anon_sym_LBRACK, - ACTIONS(5125), 1, + ACTIONS(4957), 1, anon_sym_LBRACE, - ACTIONS(5195), 1, - anon_sym_RPAREN, - STATE(2277), 1, - aux_sym_macro_definition_repeat1, - STATE(3222), 1, - sym_macro_rule, - STATE(3337), 1, - sym_token_tree_pattern, - STATE(2273), 2, + ACTIONS(4989), 1, + anon_sym_where, + ACTIONS(5057), 1, + anon_sym_PLUS, + ACTIONS(5354), 1, + anon_sym_SEMI, + STATE(1368), 1, + sym_declaration_list, + STATE(3094), 1, + sym_where_clause, + STATE(2346), 2, sym_line_comment, sym_block_comment, - [71381] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [73681] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5119), 1, - anon_sym_LPAREN, - ACTIONS(5123), 1, - anon_sym_LBRACK, - ACTIONS(5125), 1, + ACTIONS(4989), 1, + anon_sym_where, + ACTIONS(5047), 1, anon_sym_LBRACE, - ACTIONS(5195), 1, - anon_sym_RBRACK, - STATE(2278), 1, - aux_sym_macro_definition_repeat1, - STATE(3223), 1, - sym_macro_rule, - STATE(3337), 1, - sym_token_tree_pattern, - STATE(2274), 2, + ACTIONS(5057), 1, + anon_sym_PLUS, + ACTIONS(5356), 1, + anon_sym_SEMI, + STATE(574), 1, + sym_declaration_list, + STATE(2826), 1, + sym_where_clause, + STATE(2347), 2, sym_line_comment, sym_block_comment, - [71413] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [73710] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5119), 1, - anon_sym_LPAREN, - ACTIONS(5123), 1, - anon_sym_LBRACK, - ACTIONS(5125), 1, + ACTIONS(4957), 1, anon_sym_LBRACE, - ACTIONS(5197), 1, - anon_sym_RPAREN, - STATE(2279), 1, - aux_sym_macro_definition_repeat1, - STATE(3225), 1, - sym_macro_rule, - STATE(3337), 1, - sym_token_tree_pattern, - STATE(2275), 2, + ACTIONS(4989), 1, + anon_sym_where, + ACTIONS(5057), 1, + anon_sym_PLUS, + ACTIONS(5358), 1, + anon_sym_SEMI, + STATE(1096), 1, + sym_declaration_list, + STATE(3064), 1, + sym_where_clause, + STATE(2348), 2, sym_line_comment, sym_block_comment, - [71445] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [73739] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5119), 1, - anon_sym_LPAREN, - ACTIONS(5123), 1, - anon_sym_LBRACK, - ACTIONS(5125), 1, + ACTIONS(4989), 1, + anon_sym_where, + ACTIONS(5047), 1, anon_sym_LBRACE, - ACTIONS(5197), 1, - anon_sym_RBRACK, - STATE(2280), 1, - aux_sym_macro_definition_repeat1, - STATE(3226), 1, - sym_macro_rule, - STATE(3337), 1, - sym_token_tree_pattern, - STATE(2276), 2, + ACTIONS(5057), 1, + anon_sym_PLUS, + ACTIONS(5360), 1, + anon_sym_SEMI, + STATE(767), 1, + sym_declaration_list, + STATE(3056), 1, + sym_where_clause, + STATE(2349), 2, sym_line_comment, sym_block_comment, - [71477] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [73768] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5119), 1, - anon_sym_LPAREN, - ACTIONS(5123), 1, - anon_sym_LBRACK, - ACTIONS(5125), 1, - anon_sym_LBRACE, - ACTIONS(5199), 1, - anon_sym_RPAREN, - STATE(2155), 1, - aux_sym_macro_definition_repeat1, - STATE(3241), 1, - sym_macro_rule, - STATE(3337), 1, - sym_token_tree_pattern, - STATE(2277), 2, + ACTIONS(4624), 1, + anon_sym_COLON_COLON, + ACTIONS(5029), 1, + anon_sym_for, + STATE(2350), 2, sym_line_comment, sym_block_comment, - [71509] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3377), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [73791] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5119), 1, - anon_sym_LPAREN, - ACTIONS(5123), 1, - anon_sym_LBRACK, - ACTIONS(5125), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(5199), 1, - anon_sym_RBRACK, - STATE(2155), 1, - aux_sym_macro_definition_repeat1, - STATE(3242), 1, - sym_macro_rule, - STATE(3337), 1, - sym_token_tree_pattern, - STATE(2278), 2, + ACTIONS(3442), 1, + anon_sym_SQUOTE, + ACTIONS(5362), 1, + anon_sym_if, + STATE(3635), 1, + sym_label, + STATE(1391), 2, + sym_if_expression, + sym_block, + STATE(2351), 2, sym_line_comment, sym_block_comment, - [71541] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [73818] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5119), 1, - anon_sym_LPAREN, - ACTIONS(5123), 1, - anon_sym_LBRACK, - ACTIONS(5125), 1, + ACTIONS(4957), 1, anon_sym_LBRACE, - ACTIONS(5201), 1, - anon_sym_RPAREN, - STATE(2155), 1, - aux_sym_macro_definition_repeat1, - STATE(3243), 1, - sym_macro_rule, - STATE(3337), 1, - sym_token_tree_pattern, - STATE(2279), 2, + ACTIONS(4989), 1, + anon_sym_where, + ACTIONS(5057), 1, + anon_sym_PLUS, + ACTIONS(5364), 1, + anon_sym_SEMI, + STATE(1371), 1, + sym_declaration_list, + STATE(3093), 1, + sym_where_clause, + STATE(2352), 2, sym_line_comment, sym_block_comment, - [71573] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [73847] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5119), 1, - anon_sym_LPAREN, - ACTIONS(5123), 1, - anon_sym_LBRACK, - ACTIONS(5125), 1, + ACTIONS(4957), 1, anon_sym_LBRACE, - ACTIONS(5201), 1, - anon_sym_RBRACK, - STATE(2155), 1, - aux_sym_macro_definition_repeat1, - STATE(3244), 1, - sym_macro_rule, - STATE(3337), 1, - sym_token_tree_pattern, - STATE(2280), 2, + ACTIONS(4989), 1, + anon_sym_where, + ACTIONS(5057), 1, + anon_sym_PLUS, + ACTIONS(5366), 1, + anon_sym_SEMI, + STATE(1276), 1, + sym_declaration_list, + STATE(3086), 1, + sym_where_clause, + STATE(2353), 2, sym_line_comment, sym_block_comment, - [71605] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [73876] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4463), 1, - anon_sym_DOT_DOT, - ACTIONS(5205), 1, - anon_sym_COLON, - ACTIONS(5207), 1, + ACTIONS(4624), 1, anon_sym_COLON_COLON, - ACTIONS(4465), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(5203), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2281), 2, + ACTIONS(4973), 1, + anon_sym_for, + STATE(2354), 2, sym_line_comment, sym_block_comment, - [71633] = 7, - ACTIONS(101), 1, + ACTIONS(3377), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [73899] = 9, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4989), 1, + anon_sym_where, + ACTIONS(5047), 1, + anon_sym_LBRACE, + ACTIONS(5057), 1, + anon_sym_PLUS, + ACTIONS(5368), 1, + anon_sym_SEMI, + STATE(646), 1, + sym_declaration_list, + STATE(2873), 1, + sym_where_clause, + STATE(2355), 2, + sym_line_comment, + sym_block_comment, + [73928] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4463), 1, + ACTIONS(4704), 1, anon_sym_DOT_DOT, - ACTIONS(5207), 1, - anon_sym_COLON_COLON, - ACTIONS(4465), 2, + STATE(2356), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4702), 5, + anon_sym_EQ_GT, + anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2282), 2, + anon_sym_if, + [73949] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2357), 2, sym_line_comment, sym_block_comment, - ACTIONS(3299), 3, + ACTIONS(5015), 6, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [71659] = 5, - ACTIONS(101), 1, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + [73968] = 9, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4989), 1, + anon_sym_where, + ACTIONS(5047), 1, + anon_sym_LBRACE, + ACTIONS(5057), 1, + anon_sym_PLUS, + ACTIONS(5370), 1, + anon_sym_SEMI, + STATE(726), 1, + sym_declaration_list, + STATE(2948), 1, + sym_where_clause, + STATE(2358), 2, + sym_line_comment, + sym_block_comment, + [73997] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5209), 1, - sym_identifier, - STATE(2283), 2, + STATE(2359), 2, sym_line_comment, sym_block_comment, - ACTIONS(4724), 6, + ACTIONS(3401), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [71681] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [74016] = 7, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4463), 1, - anon_sym_DOT_DOT, - ACTIONS(5205), 1, - anon_sym_COLON, - ACTIONS(5211), 1, - anon_sym_COLON_COLON, - ACTIONS(4465), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(5203), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2284), 2, - sym_line_comment, - sym_block_comment, - [71709] = 7, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4463), 1, + ACTIONS(4541), 1, anon_sym_DOT_DOT, - ACTIONS(5211), 1, + ACTIONS(5243), 1, anon_sym_COLON_COLON, - ACTIONS(4465), 2, + ACTIONS(4543), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2285), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3299), 3, + ACTIONS(5342), 2, anon_sym_RPAREN, - anon_sym_PLUS, anon_sym_COMMA, - [71735] = 10, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(5213), 1, - aux_sym_line_comment_token1, - ACTIONS(5215), 1, - aux_sym_line_comment_token3, - ACTIONS(5217), 1, - anon_sym_BANG2, - ACTIONS(5219), 1, - anon_sym_SLASH2, - STATE(3319), 1, - sym__inner_line_doc_comment_marker, - STATE(3333), 1, - sym__line_doc_comment_marker, - STATE(3341), 1, - sym__outer_line_doc_comment_marker, - STATE(2286), 2, + STATE(2360), 2, sym_line_comment, sym_block_comment, - [71767] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [74041] = 9, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(5221), 1, - anon_sym_trait, - STATE(2287), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3323), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [71789] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5223), 1, - sym_identifier, - STATE(2288), 2, + ACTIONS(4989), 1, + anon_sym_where, + ACTIONS(5047), 1, + anon_sym_LBRACE, + ACTIONS(5061), 1, + anon_sym_COLON, + STATE(567), 1, + sym_declaration_list, + STATE(2741), 1, + sym_trait_bounds, + STATE(3362), 1, + sym_where_clause, + STATE(2361), 2, sym_line_comment, sym_block_comment, - ACTIONS(4724), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [71811] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [74070] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5119), 1, - anon_sym_LPAREN, - ACTIONS(5123), 1, - anon_sym_LBRACK, - ACTIONS(5125), 1, + ACTIONS(4989), 1, + anon_sym_where, + ACTIONS(5047), 1, anon_sym_LBRACE, - ACTIONS(5159), 1, - anon_sym_RBRACK, - STATE(2155), 1, - aux_sym_macro_definition_repeat1, - STATE(3284), 1, - sym_macro_rule, - STATE(3337), 1, - sym_token_tree_pattern, - STATE(2289), 2, + ACTIONS(5057), 1, + anon_sym_PLUS, + ACTIONS(5372), 1, + anon_sym_SEMI, + STATE(539), 1, + sym_declaration_list, + STATE(2859), 1, + sym_where_clause, + STATE(2362), 2, sym_line_comment, sym_block_comment, - [71843] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [74099] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, + ACTIONS(4989), 1, anon_sym_where, - ACTIONS(4915), 1, + ACTIONS(5047), 1, anon_sym_LBRACE, - ACTIONS(4989), 1, + ACTIONS(5057), 1, anon_sym_PLUS, - ACTIONS(5225), 1, + ACTIONS(5374), 1, anon_sym_SEMI, - STATE(1401), 1, + STATE(609), 1, sym_declaration_list, - STATE(2969), 1, + STATE(2999), 1, sym_where_clause, - STATE(2290), 2, + STATE(2363), 2, sym_line_comment, sym_block_comment, - [71872] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [74128] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, + ACTIONS(4989), 1, anon_sym_where, - ACTIONS(4915), 1, + ACTIONS(5047), 1, anon_sym_LBRACE, - ACTIONS(4989), 1, + ACTIONS(5057), 1, anon_sym_PLUS, - ACTIONS(5227), 1, + ACTIONS(5376), 1, anon_sym_SEMI, - STATE(1242), 1, + STATE(592), 1, sym_declaration_list, - STATE(2781), 1, + STATE(2991), 1, sym_where_clause, - STATE(2291), 2, + STATE(2364), 2, sym_line_comment, sym_block_comment, - [71901] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [74157] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4760), 2, - anon_sym_COLON, - anon_sym_PIPE, - STATE(2292), 2, + ACTIONS(956), 1, + anon_sym_DOT_DOT, + STATE(2365), 2, sym_line_comment, sym_block_comment, - ACTIONS(3370), 4, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH_GT, - [71922] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(958), 5, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_if, + [74178] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4915), 1, - anon_sym_LBRACE, + ACTIONS(4624), 1, + anon_sym_COLON_COLON, ACTIONS(4971), 1, - anon_sym_COLON, - STATE(1259), 1, - sym_declaration_list, - STATE(2540), 1, - sym_trait_bounds, - STATE(3117), 1, - sym_where_clause, - STATE(2293), 2, + anon_sym_for, + STATE(2366), 2, sym_line_comment, sym_block_comment, - [71951] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3377), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [74201] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, + ACTIONS(4989), 1, anon_sym_where, - ACTIONS(4971), 1, + ACTIONS(5061), 1, anon_sym_COLON, - ACTIONS(5229), 1, + ACTIONS(5378), 1, anon_sym_SEMI, - ACTIONS(5231), 1, + ACTIONS(5380), 1, anon_sym_EQ, - STATE(2801), 1, + STATE(3066), 1, sym_trait_bounds, - STATE(3359), 1, + STATE(3664), 1, sym_where_clause, - STATE(2294), 2, + STATE(2367), 2, sym_line_comment, sym_block_comment, - [71980] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [74230] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, + ACTIONS(4989), 1, anon_sym_where, - ACTIONS(4915), 1, + ACTIONS(5047), 1, anon_sym_LBRACE, - ACTIONS(4989), 1, + ACTIONS(5057), 1, anon_sym_PLUS, - ACTIONS(5233), 1, + ACTIONS(5382), 1, anon_sym_SEMI, - STATE(1270), 1, + STATE(542), 1, sym_declaration_list, - STATE(2811), 1, + STATE(2860), 1, sym_where_clause, - STATE(2295), 2, + STATE(2368), 2, sym_line_comment, sym_block_comment, - [72009] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [74259] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4872), 1, - anon_sym_LT, - ACTIONS(4874), 1, + ACTIONS(4989), 1, anon_sym_where, - ACTIONS(5235), 1, + ACTIONS(5047), 1, anon_sym_LBRACE, - STATE(1279), 1, - sym_enum_variant_list, - STATE(2543), 1, - sym_type_parameters, - STATE(3129), 1, + ACTIONS(5057), 1, + anon_sym_PLUS, + ACTIONS(5384), 1, + anon_sym_SEMI, + STATE(731), 1, + sym_declaration_list, + STATE(2950), 1, sym_where_clause, - STATE(2296), 2, + STATE(2369), 2, sym_line_comment, sym_block_comment, - [72038] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [74288] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4872), 1, - anon_sym_LT, - ACTIONS(4874), 1, + ACTIONS(4989), 1, anon_sym_where, - ACTIONS(4891), 1, + ACTIONS(5047), 1, anon_sym_LBRACE, - STATE(1284), 1, - sym_field_declaration_list, - STATE(2545), 1, - sym_type_parameters, - STATE(3137), 1, + ACTIONS(5061), 1, + anon_sym_COLON, + STATE(585), 1, + sym_declaration_list, + STATE(2558), 1, + sym_trait_bounds, + STATE(3123), 1, sym_where_clause, - STATE(2297), 2, + STATE(2370), 2, sym_line_comment, sym_block_comment, - [72067] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [74317] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4584), 1, + ACTIONS(4668), 1, anon_sym_EQ, - ACTIONS(4971), 1, + ACTIONS(5061), 1, anon_sym_COLON, - ACTIONS(5237), 1, - anon_sym_GT, - ACTIONS(5239), 1, + ACTIONS(5386), 1, anon_sym_COMMA, - STATE(2746), 1, - sym_trait_bounds, - STATE(2869), 1, + ACTIONS(5388), 1, + anon_sym_GT, + STATE(2875), 1, aux_sym_type_parameters_repeat1, - STATE(2298), 2, + STATE(3063), 1, + sym_trait_bounds, + STATE(2371), 2, sym_line_comment, sym_block_comment, - [72096] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [74346] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4598), 1, - anon_sym_DOT_DOT, - STATE(2299), 2, + ACTIONS(4957), 1, + anon_sym_LBRACE, + ACTIONS(4989), 1, + anon_sym_where, + ACTIONS(5057), 1, + anon_sym_PLUS, + ACTIONS(5390), 1, + anon_sym_SEMI, + STATE(1267), 1, + sym_declaration_list, + STATE(3084), 1, + sym_where_clause, + STATE(2372), 2, sym_line_comment, sym_block_comment, - ACTIONS(4596), 5, - anon_sym_EQ_GT, + [74375] = 9, + ACTIONS(29), 1, anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_if, - [72117] = 9, - ACTIONS(101), 1, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5392), 1, + sym_identifier, + ACTIONS(5394), 1, + anon_sym_ref, + ACTIONS(5396), 1, + sym_mutable_specifier, + ACTIONS(5398), 1, + anon_sym_move, + STATE(223), 1, + sym_closure_parameters, + STATE(2373), 2, + sym_line_comment, + sym_block_comment, + [74404] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_COLON, - ACTIONS(5241), 1, + ACTIONS(4957), 1, + anon_sym_LBRACE, + ACTIONS(4989), 1, + anon_sym_where, + ACTIONS(5057), 1, anon_sym_PLUS, - ACTIONS(5243), 1, - anon_sym_GT, - ACTIONS(5245), 1, - anon_sym_COMMA, - STATE(2853), 1, - sym_trait_bounds, - STATE(2854), 1, - aux_sym_type_arguments_repeat1, - STATE(2300), 2, + ACTIONS(5400), 1, + anon_sym_SEMI, + STATE(1265), 1, + sym_declaration_list, + STATE(3083), 1, + sym_where_clause, + STATE(2374), 2, sym_line_comment, sym_block_comment, - [72146] = 9, - ACTIONS(101), 1, + [74433] = 6, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4624), 1, + anon_sym_COLON_COLON, + ACTIONS(5041), 1, + anon_sym_for, + STATE(2375), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3377), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [74456] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3051), 1, + ACTIONS(3480), 2, anon_sym_PLUS, - ACTIONS(4971), 1, + anon_sym_DASH_GT, + ACTIONS(4928), 2, anon_sym_COLON, - ACTIONS(5243), 1, - anon_sym_GT, - ACTIONS(5245), 1, + anon_sym_PIPE, + ACTIONS(5402), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(2853), 1, - sym_trait_bounds, - STATE(2854), 1, - aux_sym_type_arguments_repeat1, - STATE(2301), 2, + STATE(2376), 2, sym_line_comment, sym_block_comment, - [72175] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [74479] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5247), 1, - anon_sym_RBRACK, - ACTIONS(4760), 2, + ACTIONS(4836), 2, + anon_sym_COLON, anon_sym_PIPE, - anon_sym_COMMA, - STATE(2302), 2, + STATE(2377), 2, sym_line_comment, sym_block_comment, - ACTIONS(3370), 3, - anon_sym_SEMI, + ACTIONS(3561), 4, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH_GT, - [72198] = 9, - ACTIONS(101), 1, + [74500] = 8, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1501), 1, + anon_sym_DOT_DOT, + ACTIONS(5097), 1, + sym_identifier, + ACTIONS(5103), 1, + anon_sym_ref, + ACTIONS(5105), 1, + sym_mutable_specifier, + STATE(2378), 2, + sym_line_comment, + sym_block_comment, + STATE(3324), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [74527] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4584), 1, + ACTIONS(4668), 1, anon_sym_EQ, - ACTIONS(4971), 1, + ACTIONS(5061), 1, anon_sym_COLON, - ACTIONS(5250), 1, - anon_sym_GT, - ACTIONS(5252), 1, + ACTIONS(5405), 1, anon_sym_COMMA, - STATE(2746), 1, - sym_trait_bounds, - STATE(2772), 1, + ACTIONS(5407), 1, + anon_sym_GT, + STATE(2886), 1, aux_sym_type_parameters_repeat1, - STATE(2303), 2, + STATE(3063), 1, + sym_trait_bounds, + STATE(2379), 2, sym_line_comment, sym_block_comment, - [72227] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [74556] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4463), 1, + ACTIONS(4692), 1, anon_sym_DOT_DOT, - ACTIONS(5211), 1, - anon_sym_COLON_COLON, - ACTIONS(4465), 2, + ACTIONS(4694), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(5151), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2304), 2, + STATE(2380), 2, sym_line_comment, sym_block_comment, - [72252] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(338), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(5254), 1, + ACTIONS(4531), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, anon_sym_if, - STATE(3539), 1, - sym_label, - STATE(1321), 2, - sym_if_expression, - sym_block, - STATE(2305), 2, - sym_line_comment, - sym_block_comment, - [72279] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [74579] = 9, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4584), 1, - anon_sym_EQ, - ACTIONS(4971), 1, - anon_sym_COLON, - ACTIONS(5256), 1, - anon_sym_GT, - ACTIONS(5258), 1, - anon_sym_COMMA, - STATE(2746), 1, - sym_trait_bounds, - STATE(2890), 1, - aux_sym_type_parameters_repeat1, - STATE(2306), 2, - sym_line_comment, - sym_block_comment, - [72308] = 9, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, + ACTIONS(4989), 1, anon_sym_where, - ACTIONS(4915), 1, + ACTIONS(5047), 1, anon_sym_LBRACE, - ACTIONS(4989), 1, + ACTIONS(5057), 1, anon_sym_PLUS, - ACTIONS(5260), 1, + ACTIONS(5409), 1, anon_sym_SEMI, - STATE(1328), 1, + STATE(718), 1, sym_declaration_list, - STATE(2892), 1, + STATE(3089), 1, sym_where_clause, - STATE(2307), 2, + STATE(2381), 2, sym_line_comment, sym_block_comment, - [72337] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [74608] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4915), 1, - anon_sym_LBRACE, - ACTIONS(4989), 1, + ACTIONS(3129), 1, anon_sym_PLUS, - ACTIONS(5262), 1, - anon_sym_SEMI, - STATE(1332), 1, - sym_declaration_list, - STATE(2901), 1, - sym_where_clause, - STATE(2308), 2, + ACTIONS(5061), 1, + anon_sym_COLON, + ACTIONS(5411), 1, + anon_sym_COMMA, + ACTIONS(5413), 1, + anon_sym_GT, + STATE(2824), 1, + sym_trait_bounds, + STATE(3068), 1, + aux_sym_type_parameters_repeat1, + STATE(2382), 2, sym_line_comment, sym_block_comment, - [72366] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [74637] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4915), 1, - anon_sym_LBRACE, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5264), 1, - anon_sym_SEMI, - STATE(1351), 1, - sym_declaration_list, - STATE(2921), 1, - sym_where_clause, - STATE(2309), 2, + ACTIONS(4700), 1, + anon_sym_DOT_DOT, + STATE(2383), 2, sym_line_comment, sym_block_comment, - [72395] = 9, - ACTIONS(101), 1, + ACTIONS(4698), 5, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_if, + [74658] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(964), 1, + anon_sym_DOT_DOT, + STATE(2384), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(966), 5, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_if, + [74679] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, + ACTIONS(4987), 1, + anon_sym_LT, + ACTIONS(4989), 1, anon_sym_where, - ACTIONS(4915), 1, + ACTIONS(5415), 1, anon_sym_LBRACE, - ACTIONS(4971), 1, - anon_sym_COLON, - STATE(1357), 1, - sym_declaration_list, - STATE(2559), 1, - sym_trait_bounds, - STATE(3220), 1, + STATE(610), 1, + sym_enum_variant_list, + STATE(2779), 1, + sym_type_parameters, + STATE(3394), 1, sym_where_clause, - STATE(2310), 2, + STATE(2385), 2, sym_line_comment, sym_block_comment, - [72424] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [74708] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5266), 1, + ACTIONS(5417), 1, anon_sym_RBRACK, - ACTIONS(4816), 2, - anon_sym_PIPE, + ACTIONS(4836), 2, anon_sym_COMMA, - STATE(2311), 2, + anon_sym_PIPE, + STATE(2386), 2, sym_line_comment, sym_block_comment, - ACTIONS(3418), 3, + ACTIONS(3561), 3, anon_sym_SEMI, anon_sym_PLUS, anon_sym_DASH_GT, - [72447] = 9, - ACTIONS(101), 1, + [74731] = 9, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3129), 1, + anon_sym_PLUS, + ACTIONS(5061), 1, + anon_sym_COLON, + ACTIONS(5420), 1, + anon_sym_COMMA, + ACTIONS(5422), 1, + anon_sym_GT, + STATE(2953), 1, + aux_sym_type_arguments_repeat1, + STATE(2954), 1, + sym_trait_bounds, + STATE(2387), 2, + sym_line_comment, + sym_block_comment, + [74760] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4878), 1, + ACTIONS(4957), 1, anon_sym_LBRACE, ACTIONS(4989), 1, + anon_sym_where, + ACTIONS(5057), 1, anon_sym_PLUS, - ACTIONS(5269), 1, + ACTIONS(5424), 1, anon_sym_SEMI, - STATE(713), 1, + STATE(1098), 1, sym_declaration_list, - STATE(2876), 1, + STATE(3065), 1, sym_where_clause, - STATE(2312), 2, + STATE(2388), 2, sym_line_comment, sym_block_comment, - [72476] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [74789] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4878), 1, - anon_sym_LBRACE, - ACTIONS(4971), 1, + ACTIONS(4664), 1, + anon_sym_COMMA, + ACTIONS(4668), 1, + anon_sym_EQ, + ACTIONS(4670), 1, + anon_sym_GT, + ACTIONS(5061), 1, anon_sym_COLON, - STATE(680), 1, - sym_declaration_list, - STATE(2683), 1, + STATE(3063), 1, sym_trait_bounds, - STATE(3218), 1, - sym_where_clause, - STATE(2313), 2, + STATE(3067), 1, + aux_sym_type_parameters_repeat1, + STATE(2389), 2, sym_line_comment, sym_block_comment, - [72505] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [74818] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4878), 1, - anon_sym_LBRACE, - ACTIONS(4989), 1, + ACTIONS(5061), 1, + anon_sym_COLON, + ACTIONS(5420), 1, + anon_sym_COMMA, + ACTIONS(5422), 1, + anon_sym_GT, + ACTIONS(5426), 1, anon_sym_PLUS, - ACTIONS(5271), 1, - anon_sym_SEMI, - STATE(533), 1, - sym_declaration_list, - STATE(3003), 1, - sym_where_clause, - STATE(2314), 2, + STATE(2953), 1, + aux_sym_type_arguments_repeat1, + STATE(2954), 1, + sym_trait_bounds, + STATE(2390), 2, sym_line_comment, sym_block_comment, - [72534] = 5, - ACTIONS(101), 1, + [74847] = 6, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3561), 2, + anon_sym_PLUS, + anon_sym_DASH_GT, + ACTIONS(4836), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(5417), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2391), 2, + sym_line_comment, + sym_block_comment, + [74870] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4622), 1, + ACTIONS(922), 1, anon_sym_DOT_DOT, - STATE(2315), 2, + STATE(2392), 2, sym_line_comment, sym_block_comment, - ACTIONS(4620), 5, + ACTIONS(924), 5, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_if, - [72555] = 9, - ACTIONS(101), 1, + [74891] = 9, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5061), 1, + anon_sym_COLON, + ACTIONS(5428), 1, + anon_sym_COMMA, + ACTIONS(5430), 1, + anon_sym_GT, + STATE(2824), 1, + sym_trait_bounds, + STATE(2895), 1, + aux_sym_for_lifetimes_repeat1, + STATE(3068), 1, + aux_sym_type_parameters_repeat1, + STATE(2393), 2, + sym_line_comment, + sym_block_comment, + [74920] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, + ACTIONS(4987), 1, + anon_sym_LT, + ACTIONS(4989), 1, anon_sym_where, - ACTIONS(4878), 1, + ACTIONS(5415), 1, anon_sym_LBRACE, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5273), 1, - anon_sym_SEMI, - STATE(550), 1, - sym_declaration_list, - STATE(2838), 1, + STATE(748), 1, + sym_enum_variant_list, + STATE(2584), 1, + sym_type_parameters, + STATE(3175), 1, sym_where_clause, - STATE(2316), 2, + STATE(2394), 2, sym_line_comment, sym_block_comment, - [72584] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [74949] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, + ACTIONS(4989), 1, anon_sym_where, - ACTIONS(4878), 1, + ACTIONS(5047), 1, anon_sym_LBRACE, - ACTIONS(4989), 1, + ACTIONS(5057), 1, anon_sym_PLUS, - ACTIONS(5275), 1, + ACTIONS(5432), 1, anon_sym_SEMI, - STATE(687), 1, + STATE(565), 1, sym_declaration_list, - STATE(2767), 1, + STATE(2868), 1, sym_where_clause, - STATE(2317), 2, + STATE(2395), 2, sym_line_comment, sym_block_comment, - [72613] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [74978] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4878), 1, - anon_sym_LBRACE, - ACTIONS(4989), 1, + ACTIONS(5061), 1, + anon_sym_COLON, + ACTIONS(5426), 1, anon_sym_PLUS, - ACTIONS(5277), 1, - anon_sym_SEMI, - STATE(552), 1, - sym_declaration_list, - STATE(2840), 1, - sym_where_clause, - STATE(2318), 2, + ACTIONS(5434), 1, + anon_sym_COMMA, + ACTIONS(5436), 1, + anon_sym_GT, + STATE(2964), 1, + aux_sym_type_arguments_repeat1, + STATE(2965), 1, + sym_trait_bounds, + STATE(2396), 2, sym_line_comment, sym_block_comment, - [72642] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [75007] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4537), 1, - anon_sym_COLON_COLON, - ACTIONS(4887), 1, - anon_sym_for, - STATE(2319), 2, + ACTIONS(5402), 1, + anon_sym_RBRACK, + ACTIONS(4928), 2, + anon_sym_COMMA, + anon_sym_PIPE, + STATE(2397), 2, sym_line_comment, sym_block_comment, - ACTIONS(3299), 4, + ACTIONS(3480), 3, anon_sym_SEMI, - anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_where, - [72665] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_DASH_GT, + [75030] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2320), 2, + ACTIONS(4989), 1, + anon_sym_where, + ACTIONS(5047), 1, + anon_sym_LBRACE, + ACTIONS(5061), 1, + anon_sym_COLON, + STATE(672), 1, + sym_declaration_list, + STATE(2649), 1, + sym_trait_bounds, + STATE(3187), 1, + sym_where_clause, + STATE(2398), 2, sym_line_comment, sym_block_comment, - ACTIONS(3323), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [72684] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [75059] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, + ACTIONS(4989), 1, anon_sym_where, - ACTIONS(4915), 1, + ACTIONS(5047), 1, anon_sym_LBRACE, - ACTIONS(4989), 1, + ACTIONS(5057), 1, anon_sym_PLUS, - ACTIONS(5279), 1, + ACTIONS(5438), 1, anon_sym_SEMI, - STATE(1399), 1, + STATE(576), 1, sym_declaration_list, - STATE(2967), 1, + STATE(2869), 1, sym_where_clause, - STATE(2321), 2, + STATE(2399), 2, sym_line_comment, sym_block_comment, - [72713] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [75088] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4872), 1, + ACTIONS(4985), 1, + anon_sym_LBRACE, + ACTIONS(4987), 1, anon_sym_LT, - ACTIONS(4874), 1, + ACTIONS(4989), 1, anon_sym_where, - ACTIONS(5281), 1, - anon_sym_LBRACE, - STATE(503), 1, - sym_enum_variant_list, - STATE(2647), 1, + STATE(734), 1, + sym_field_declaration_list, + STATE(2602), 1, sym_type_parameters, - STATE(3154), 1, + STATE(3205), 1, sym_where_clause, - STATE(2322), 2, + STATE(2400), 2, sym_line_comment, sym_block_comment, - [72742] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [75117] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4915), 1, + ACTIONS(4957), 1, anon_sym_LBRACE, ACTIONS(4989), 1, + anon_sym_where, + ACTIONS(5057), 1, anon_sym_PLUS, - ACTIONS(5283), 1, + ACTIONS(5440), 1, anon_sym_SEMI, - STATE(1405), 1, + STATE(1103), 1, sym_declaration_list, - STATE(2980), 1, + STATE(2894), 1, sym_where_clause, - STATE(2323), 2, + STATE(2401), 2, sym_line_comment, sym_block_comment, - [72771] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [75146] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, + ACTIONS(4989), 1, anon_sym_where, - ACTIONS(4915), 1, + ACTIONS(5047), 1, anon_sym_LBRACE, - ACTIONS(4989), 1, + ACTIONS(5057), 1, anon_sym_PLUS, - ACTIONS(5285), 1, + ACTIONS(5442), 1, anon_sym_SEMI, - STATE(1407), 1, - sym_declaration_list, - STATE(2982), 1, - sym_where_clause, - STATE(2324), 2, - sym_line_comment, - sym_block_comment, - [72800] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4915), 1, - anon_sym_LBRACE, - ACTIONS(4971), 1, - anon_sym_COLON, - STATE(1442), 1, + STATE(738), 1, sym_declaration_list, - STATE(2571), 1, - sym_trait_bounds, - STATE(3275), 1, + STATE(2951), 1, sym_where_clause, - STATE(2325), 2, + STATE(2402), 2, sym_line_comment, sym_block_comment, - [72829] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [75175] = 9, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_COLON, - ACTIONS(5287), 1, - anon_sym_GT, - ACTIONS(5289), 1, - anon_sym_COMMA, - STATE(2786), 1, - aux_sym_type_parameters_repeat1, - STATE(2888), 1, - sym_trait_bounds, - STATE(2941), 1, - aux_sym_for_lifetimes_repeat1, - STATE(2326), 2, - sym_line_comment, - sym_block_comment, - [72858] = 9, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4878), 1, + ACTIONS(4957), 1, anon_sym_LBRACE, - ACTIONS(4971), 1, + ACTIONS(4989), 1, + anon_sym_where, + ACTIONS(5061), 1, anon_sym_COLON, - STATE(741), 1, + STATE(1185), 1, sym_declaration_list, - STATE(2577), 1, + STATE(2556), 1, sym_trait_bounds, - STATE(3276), 1, + STATE(3127), 1, sym_where_clause, - STATE(2327), 2, + STATE(2403), 2, sym_line_comment, sym_block_comment, - [72887] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [75204] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4878), 1, + ACTIONS(4957), 1, anon_sym_LBRACE, ACTIONS(4989), 1, + anon_sym_where, + ACTIONS(5057), 1, anon_sym_PLUS, - ACTIONS(5291), 1, + ACTIONS(5444), 1, anon_sym_SEMI, - STATE(736), 1, + STATE(1108), 1, sym_declaration_list, - STATE(2825), 1, + STATE(3069), 1, sym_where_clause, - STATE(2328), 2, + STATE(2404), 2, sym_line_comment, sym_block_comment, - [72916] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [75233] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4872), 1, - anon_sym_LT, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(5281), 1, - anon_sym_LBRACE, - STATE(693), 1, - sym_enum_variant_list, - STATE(2536), 1, - sym_type_parameters, - STATE(3255), 1, - sym_where_clause, - STATE(2329), 2, + ACTIONS(4541), 1, + anon_sym_DOT_DOT, + ACTIONS(5243), 1, + anon_sym_COLON_COLON, + ACTIONS(4543), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(5257), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2405), 2, sym_line_comment, sym_block_comment, - [72945] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [75258] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, + ACTIONS(4624), 1, + anon_sym_COLON_COLON, + ACTIONS(4961), 1, + anon_sym_for, + STATE(2406), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3377), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_where, - ACTIONS(4915), 1, + [75281] = 9, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4957), 1, anon_sym_LBRACE, ACTIONS(4989), 1, + anon_sym_where, + ACTIONS(5057), 1, anon_sym_PLUS, - ACTIONS(5293), 1, + ACTIONS(5446), 1, anon_sym_SEMI, - STATE(1467), 1, + STATE(1172), 1, sym_declaration_list, - STATE(3023), 1, + STATE(2787), 1, sym_where_clause, - STATE(2330), 2, + STATE(2407), 2, sym_line_comment, sym_block_comment, - [72974] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [75310] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4915), 1, + ACTIONS(4957), 1, anon_sym_LBRACE, ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5295), 1, - anon_sym_SEMI, - STATE(1469), 1, + anon_sym_where, + ACTIONS(5061), 1, + anon_sym_COLON, + STATE(1089), 1, sym_declaration_list, - STATE(3024), 1, + STATE(2647), 1, + sym_trait_bounds, + STATE(3269), 1, sym_where_clause, - STATE(2331), 2, + STATE(2408), 2, sym_line_comment, sym_block_comment, - [73003] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [75339] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4915), 1, + ACTIONS(4957), 1, anon_sym_LBRACE, ACTIONS(4989), 1, + anon_sym_where, + ACTIONS(5057), 1, anon_sym_PLUS, - ACTIONS(5297), 1, + ACTIONS(5448), 1, anon_sym_SEMI, - STATE(1104), 1, + STATE(1112), 1, sym_declaration_list, - STATE(2732), 1, + STATE(3070), 1, sym_where_clause, - STATE(2332), 2, + STATE(2409), 2, sym_line_comment, sym_block_comment, - [73032] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [75368] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4915), 1, - anon_sym_LBRACE, ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5299), 1, + anon_sym_where, + ACTIONS(5061), 1, + anon_sym_COLON, + ACTIONS(5450), 1, anon_sym_SEMI, - STATE(1106), 1, - sym_declaration_list, - STATE(2733), 1, + ACTIONS(5452), 1, + anon_sym_EQ, + STATE(2917), 1, + sym_trait_bounds, + STATE(3517), 1, sym_where_clause, - STATE(2333), 2, + STATE(2410), 2, sym_line_comment, sym_block_comment, - [73061] = 9, - ACTIONS(101), 1, + [75397] = 6, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4624), 1, + anon_sym_COLON_COLON, + ACTIONS(4944), 1, + anon_sym_for, + STATE(2411), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3377), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [75420] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, + ACTIONS(4989), 1, anon_sym_where, - ACTIONS(4915), 1, + ACTIONS(5047), 1, anon_sym_LBRACE, - ACTIONS(4989), 1, + ACTIONS(5057), 1, anon_sym_PLUS, - ACTIONS(5301), 1, + ACTIONS(5454), 1, anon_sym_SEMI, - STATE(1108), 1, + STATE(741), 1, sym_declaration_list, - STATE(2736), 1, + STATE(2955), 1, sym_where_clause, - STATE(2334), 2, + STATE(2412), 2, sym_line_comment, sym_block_comment, - [73090] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [75449] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4915), 1, + ACTIONS(4957), 1, anon_sym_LBRACE, ACTIONS(4989), 1, + anon_sym_where, + ACTIONS(5057), 1, anon_sym_PLUS, - ACTIONS(5303), 1, + ACTIONS(5456), 1, anon_sym_SEMI, - STATE(1110), 1, + STATE(1075), 1, sym_declaration_list, - STATE(2737), 1, + STATE(2920), 1, sym_where_clause, - STATE(2335), 2, - sym_line_comment, - sym_block_comment, - [73119] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3370), 2, - anon_sym_PLUS, - anon_sym_DASH_GT, - ACTIONS(4760), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(5247), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2336), 2, + STATE(2413), 2, sym_line_comment, sym_block_comment, - [73142] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [75478] = 9, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(1482), 1, - anon_sym_DOT_DOT, - ACTIONS(5039), 1, - sym_identifier, - ACTIONS(5045), 1, - anon_sym_ref, - ACTIONS(5047), 1, - sym_mutable_specifier, - STATE(2337), 2, - sym_line_comment, - sym_block_comment, - STATE(3197), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [73169] = 9, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, + ACTIONS(4987), 1, + anon_sym_LT, + ACTIONS(4989), 1, anon_sym_where, - ACTIONS(4915), 1, + ACTIONS(5458), 1, anon_sym_LBRACE, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5305), 1, - anon_sym_SEMI, - STATE(1148), 1, - sym_declaration_list, - STATE(2743), 1, + STATE(1177), 1, + sym_enum_variant_list, + STATE(2548), 1, + sym_type_parameters, + STATE(3396), 1, sym_where_clause, - STATE(2338), 2, + STATE(2414), 2, sym_line_comment, sym_block_comment, - [73198] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [75507] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, + ACTIONS(4989), 1, anon_sym_where, - ACTIONS(4915), 1, + ACTIONS(5047), 1, anon_sym_LBRACE, - ACTIONS(4989), 1, + ACTIONS(5057), 1, anon_sym_PLUS, - ACTIONS(5307), 1, + ACTIONS(5460), 1, anon_sym_SEMI, - STATE(1150), 1, + STATE(566), 1, sym_declaration_list, - STATE(2744), 1, + STATE(2800), 1, sym_where_clause, - STATE(2339), 2, + STATE(2415), 2, sym_line_comment, sym_block_comment, - [73227] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [75536] = 6, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(2340), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4920), 6, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - [73246] = 6, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4537), 1, + ACTIONS(4624), 1, anon_sym_COLON_COLON, - ACTIONS(4905), 1, + ACTIONS(4975), 1, anon_sym_for, - STATE(2341), 2, + STATE(2416), 2, sym_line_comment, sym_block_comment, - ACTIONS(3299), 4, + ACTIONS(3377), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [73269] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [75559] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4463), 1, + ACTIONS(926), 1, anon_sym_DOT_DOT, - ACTIONS(5211), 1, - anon_sym_COLON_COLON, - ACTIONS(4465), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(5309), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2342), 2, + STATE(2417), 2, sym_line_comment, sym_block_comment, - [73294] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(928), 5, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_if, + [75580] = 8, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4584), 1, - anon_sym_EQ, - ACTIONS(4586), 1, - anon_sym_GT, - ACTIONS(4588), 1, - anon_sym_COMMA, - ACTIONS(4971), 1, - anon_sym_COLON, - STATE(2746), 1, - sym_trait_bounds, - STATE(2907), 1, - aux_sym_type_parameters_repeat1, - STATE(2343), 2, - sym_line_comment, - sym_block_comment, - [73323] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4816), 2, - anon_sym_COLON, - anon_sym_PIPE, - STATE(2344), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3418), 4, - anon_sym_RPAREN, - anon_sym_PLUS, + ACTIONS(4628), 1, + anon_sym_COLON_COLON, + ACTIONS(5411), 1, anon_sym_COMMA, - anon_sym_DASH_GT, - [73344] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_COLON, - ACTIONS(5241), 1, - anon_sym_PLUS, - ACTIONS(5311), 1, + ACTIONS(5413), 1, anon_sym_GT, - ACTIONS(5313), 1, - anon_sym_COMMA, - STATE(2805), 1, - sym_trait_bounds, - STATE(2806), 1, - aux_sym_type_arguments_repeat1, - STATE(2345), 2, + STATE(3068), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(3377), 2, + anon_sym_PLUS, + anon_sym_as, + STATE(2418), 2, sym_line_comment, sym_block_comment, - [73373] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [75607] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3051), 1, + ACTIONS(3129), 1, anon_sym_PLUS, - ACTIONS(4971), 1, + ACTIONS(5061), 1, anon_sym_COLON, - ACTIONS(5311), 1, - anon_sym_GT, - ACTIONS(5313), 1, + ACTIONS(5462), 1, anon_sym_COMMA, - STATE(2805), 1, + ACTIONS(5464), 1, + anon_sym_GT, + STATE(2967), 1, sym_trait_bounds, - STATE(2806), 1, + STATE(2968), 1, aux_sym_type_arguments_repeat1, - STATE(2346), 2, - sym_line_comment, - sym_block_comment, - [73402] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4878), 1, - anon_sym_LBRACE, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5315), 1, - anon_sym_SEMI, - STATE(717), 1, - sym_declaration_list, - STATE(2916), 1, - sym_where_clause, - STATE(2347), 2, + STATE(2419), 2, sym_line_comment, sym_block_comment, - [73431] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [75636] = 9, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(1210), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(5317), 1, - anon_sym_if, - STATE(3590), 1, - sym_label, - STATE(457), 2, - sym_if_expression, - sym_block, - STATE(2348), 2, - sym_line_comment, - sym_block_comment, - [73458] = 9, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4870), 1, - anon_sym_LBRACE, - ACTIONS(4872), 1, + ACTIONS(4987), 1, anon_sym_LT, - ACTIONS(4874), 1, + ACTIONS(4989), 1, anon_sym_where, - STATE(699), 1, - sym_field_declaration_list, - STATE(2566), 1, + ACTIONS(5458), 1, + anon_sym_LBRACE, + STATE(1070), 1, + sym_enum_variant_list, + STATE(2627), 1, sym_type_parameters, - STATE(3097), 1, + STATE(3254), 1, sym_where_clause, - STATE(2349), 2, + STATE(2420), 2, sym_line_comment, sym_block_comment, - [73487] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [75665] = 9, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4878), 1, - anon_sym_LBRACE, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5319), 1, - anon_sym_SEMI, - STATE(488), 1, - sym_declaration_list, - STATE(2886), 1, - sym_where_clause, - STATE(2350), 2, - sym_line_comment, - sym_block_comment, - [73516] = 9, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4878), 1, + ACTIONS(4957), 1, anon_sym_LBRACE, ACTIONS(4989), 1, + anon_sym_where, + ACTIONS(5057), 1, anon_sym_PLUS, - ACTIONS(5321), 1, + ACTIONS(5466), 1, anon_sym_SEMI, - STATE(490), 1, + STATE(1364), 1, sym_declaration_list, - STATE(2910), 1, + STATE(2998), 1, sym_where_clause, - STATE(2351), 2, + STATE(2421), 2, sym_line_comment, sym_block_comment, - [73545] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [75694] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, + ACTIONS(5061), 1, anon_sym_COLON, - ACTIONS(5241), 1, + ACTIONS(5426), 1, anon_sym_PLUS, - ACTIONS(5323), 1, - anon_sym_GT, - ACTIONS(5325), 1, + ACTIONS(5462), 1, anon_sym_COMMA, - STATE(2984), 1, + ACTIONS(5464), 1, + anon_sym_GT, + STATE(2967), 1, sym_trait_bounds, - STATE(2991), 1, + STATE(2968), 1, aux_sym_type_arguments_repeat1, - STATE(2352), 2, + STATE(2422), 2, sym_line_comment, sym_block_comment, - [73574] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [75723] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3051), 1, - anon_sym_PLUS, - ACTIONS(4971), 1, - anon_sym_COLON, - ACTIONS(5323), 1, - anon_sym_GT, - ACTIONS(5325), 1, - anon_sym_COMMA, - STATE(2984), 1, - sym_trait_bounds, - STATE(2991), 1, - aux_sym_type_arguments_repeat1, - STATE(2353), 2, + ACTIONS(4987), 1, + anon_sym_LT, + ACTIONS(4989), 1, + anon_sym_where, + ACTIONS(5033), 1, + anon_sym_LBRACE, + STATE(1298), 1, + sym_field_declaration_list, + STATE(2626), 1, + sym_type_parameters, + STATE(3247), 1, + sym_where_clause, + STATE(2423), 2, sym_line_comment, sym_block_comment, - [73603] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [75752] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(400), 1, + ACTIONS(1273), 1, anon_sym_LBRACE, - ACTIONS(3344), 1, + ACTIONS(3442), 1, anon_sym_SQUOTE, - ACTIONS(5327), 1, + ACTIONS(5468), 1, anon_sym_if, - STATE(3591), 1, + STATE(3687), 1, sym_label, - STATE(1773), 2, + STATE(478), 2, sym_if_expression, sym_block, - STATE(2354), 2, + STATE(2424), 2, sym_line_comment, sym_block_comment, - [73630] = 9, - ACTIONS(101), 1, + [75779] = 6, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3534), 1, + anon_sym_COLON, + ACTIONS(5470), 1, + anon_sym_EQ, + STATE(2425), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3532), 4, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COLON_COLON, + [75802] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4878), 1, + ACTIONS(4957), 1, anon_sym_LBRACE, ACTIONS(4989), 1, + anon_sym_where, + ACTIONS(5057), 1, anon_sym_PLUS, - ACTIONS(5329), 1, + ACTIONS(5472), 1, anon_sym_SEMI, - STATE(494), 1, + STATE(1372), 1, sym_declaration_list, - STATE(3010), 1, + STATE(3001), 1, sym_where_clause, - STATE(2355), 2, + STATE(2426), 2, sym_line_comment, sym_block_comment, - [73659] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [75831] = 9, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3418), 2, - anon_sym_PLUS, - anon_sym_DASH_GT, - ACTIONS(4816), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(5266), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2356), 2, - sym_line_comment, - sym_block_comment, - [73682] = 9, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4878), 1, + ACTIONS(4985), 1, anon_sym_LBRACE, + ACTIONS(4987), 1, + anon_sym_LT, ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5331), 1, - anon_sym_SEMI, + anon_sym_where, STATE(496), 1, - sym_declaration_list, - STATE(2745), 1, + sym_field_declaration_list, + STATE(2735), 1, + sym_type_parameters, + STATE(3351), 1, sym_where_clause, - STATE(2357), 2, + STATE(2427), 2, sym_line_comment, sym_block_comment, - [73711] = 9, - ACTIONS(101), 1, + [75860] = 9, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3129), 1, + anon_sym_PLUS, + ACTIONS(5061), 1, + anon_sym_COLON, + ACTIONS(5434), 1, + anon_sym_COMMA, + ACTIONS(5436), 1, + anon_sym_GT, + STATE(2964), 1, + aux_sym_type_arguments_repeat1, + STATE(2965), 1, + sym_trait_bounds, + STATE(2428), 2, + sym_line_comment, + sym_block_comment, + [75889] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, + ACTIONS(4989), 1, anon_sym_where, - ACTIONS(4878), 1, + ACTIONS(5047), 1, anon_sym_LBRACE, - ACTIONS(4989), 1, + ACTIONS(5057), 1, anon_sym_PLUS, - ACTIONS(5333), 1, + ACTIONS(5474), 1, anon_sym_SEMI, - STATE(606), 1, + STATE(702), 1, sym_declaration_list, - STATE(2999), 1, + STATE(2986), 1, sym_where_clause, - STATE(2358), 2, + STATE(2429), 2, sym_line_comment, sym_block_comment, - [73740] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [75918] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, + ACTIONS(4989), 1, anon_sym_where, - ACTIONS(4878), 1, + ACTIONS(5047), 1, anon_sym_LBRACE, - ACTIONS(4989), 1, + ACTIONS(5057), 1, anon_sym_PLUS, - ACTIONS(5335), 1, + ACTIONS(5476), 1, anon_sym_SEMI, - STATE(608), 1, + STATE(705), 1, sym_declaration_list, - STATE(3005), 1, + STATE(2928), 1, sym_where_clause, - STATE(2359), 2, + STATE(2430), 2, sym_line_comment, sym_block_comment, - [73769] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [75947] = 7, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(967), 1, - anon_sym_DOT_DOT, - STATE(2360), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(969), 5, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_if, - [73790] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(753), 1, + ACTIONS(4541), 1, anon_sym_DOT_DOT, - STATE(2361), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(755), 5, - anon_sym_EQ_GT, - anon_sym_PIPE, + ACTIONS(5282), 1, + anon_sym_COLON_COLON, + ACTIONS(4543), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_if, - [73811] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(767), 1, - anon_sym_DOT_DOT, - STATE(2362), 2, + ACTIONS(5257), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2431), 2, sym_line_comment, sym_block_comment, - ACTIONS(769), 5, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_if, - [73832] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [75972] = 8, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(771), 1, - anon_sym_DOT_DOT, - STATE(2363), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(773), 5, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_if, - [73853] = 9, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4870), 1, - anon_sym_LBRACE, - ACTIONS(4872), 1, - anon_sym_LT, - ACTIONS(4874), 1, - anon_sym_where, - STATE(643), 1, - sym_field_declaration_list, - STATE(2514), 1, - sym_type_parameters, - STATE(3114), 1, - sym_where_clause, - STATE(2364), 2, + ACTIONS(3442), 1, + anon_sym_SQUOTE, + ACTIONS(5478), 1, + anon_sym_if, + STATE(3543), 1, + sym_label, + STATE(391), 2, + sym_if_expression, + sym_block, + STATE(2432), 2, sym_line_comment, sym_block_comment, - [73882] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [75999] = 9, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3459), 1, - anon_sym_COLON, - ACTIONS(5337), 1, - anon_sym_EQ, - STATE(2365), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3457), 4, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_COLON_COLON, - [73905] = 9, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4878), 1, + ACTIONS(4957), 1, anon_sym_LBRACE, ACTIONS(4989), 1, + anon_sym_where, + ACTIONS(5057), 1, anon_sym_PLUS, - ACTIONS(5339), 1, + ACTIONS(5480), 1, anon_sym_SEMI, - STATE(565), 1, + STATE(1232), 1, sym_declaration_list, - STATE(2905), 1, + STATE(3016), 1, sym_where_clause, - STATE(2366), 2, + STATE(2433), 2, sym_line_comment, sym_block_comment, - [73934] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [76028] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4878), 1, + ACTIONS(4957), 1, anon_sym_LBRACE, ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5341), 1, - anon_sym_SEMI, - STATE(567), 1, + anon_sym_where, + ACTIONS(5061), 1, + anon_sym_COLON, + STATE(1216), 1, sym_declaration_list, - STATE(2911), 1, + STATE(2587), 1, + sym_trait_bounds, + STATE(3181), 1, sym_where_clause, - STATE(2367), 2, + STATE(2434), 2, sym_line_comment, sym_block_comment, - [73963] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [76057] = 9, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4872), 1, + ACTIONS(4987), 1, anon_sym_LT, - ACTIONS(4874), 1, + ACTIONS(4989), 1, anon_sym_where, - ACTIONS(5235), 1, + ACTIONS(5033), 1, anon_sym_LBRACE, - STATE(1390), 1, - sym_enum_variant_list, - STATE(2511), 1, + STATE(1157), 1, + sym_field_declaration_list, + STATE(2765), 1, sym_type_parameters, - STATE(3269), 1, + STATE(3384), 1, sym_where_clause, - STATE(2368), 2, + STATE(2435), 2, sym_line_comment, sym_block_comment, - [73992] = 9, - ACTIONS(101), 1, + [76086] = 8, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(405), 1, + anon_sym_LBRACE, + ACTIONS(3442), 1, + anon_sym_SQUOTE, + ACTIONS(5482), 1, + anon_sym_if, + STATE(3688), 1, + sym_label, + STATE(1715), 2, + sym_if_expression, + sym_block, + STATE(2436), 2, + sym_line_comment, + sym_block_comment, + [76113] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, + ACTIONS(4624), 1, + anon_sym_COLON_COLON, + ACTIONS(5005), 1, + anon_sym_for, + STATE(2437), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3377), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_where, - ACTIONS(4915), 1, + [76136] = 9, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4957), 1, anon_sym_LBRACE, ACTIONS(4989), 1, + anon_sym_where, + ACTIONS(5057), 1, anon_sym_PLUS, - ACTIONS(5343), 1, + ACTIONS(5484), 1, anon_sym_SEMI, - STATE(1128), 1, + STATE(1273), 1, sym_declaration_list, - STATE(2787), 1, + STATE(3085), 1, sym_where_clause, - STATE(2369), 2, + STATE(2438), 2, sym_line_comment, sym_block_comment, - [74021] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [76165] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4878), 1, + ACTIONS(3442), 1, + anon_sym_SQUOTE, + ACTIONS(5071), 1, anon_sym_LBRACE, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5345), 1, + ACTIONS(5486), 1, anon_sym_SEMI, - STATE(569), 1, - sym_declaration_list, - STATE(2918), 1, - sym_where_clause, - STATE(2370), 2, + STATE(693), 1, + sym_block, + STATE(3683), 1, + sym_label, + STATE(2439), 2, + sym_line_comment, + sym_block_comment, + [76191] = 8, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3321), 1, + anon_sym_LPAREN, + ACTIONS(4527), 1, + anon_sym_LT2, + ACTIONS(4529), 1, + anon_sym_COLON_COLON, + STATE(1118), 1, + sym_parameters, + STATE(1967), 1, + sym_type_arguments, + STATE(2440), 2, + sym_line_comment, + sym_block_comment, + [76217] = 8, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4904), 1, + anon_sym_PIPE, + ACTIONS(5488), 1, + anon_sym_SEMI, + ACTIONS(5490), 1, + anon_sym_COLON, + ACTIONS(5492), 1, + anon_sym_EQ, + ACTIONS(5494), 1, + anon_sym_else, + STATE(2441), 2, sym_line_comment, sym_block_comment, - [74050] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [76243] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4535), 1, + ACTIONS(5498), 1, anon_sym_COLON_COLON, - ACTIONS(5347), 1, - anon_sym_GT, - ACTIONS(5349), 1, - anon_sym_COMMA, - STATE(2786), 1, - aux_sym_type_parameters_repeat1, - ACTIONS(3299), 2, - anon_sym_PLUS, + ACTIONS(5500), 1, anon_sym_as, - STATE(2371), 2, + STATE(2442), 2, sym_line_comment, sym_block_comment, - [74077] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5496), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [76265] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4463), 1, - anon_sym_DOT_DOT, - ACTIONS(5207), 1, - anon_sym_COLON_COLON, - ACTIONS(4465), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(5151), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2372), 2, + ACTIONS(3442), 1, + anon_sym_SQUOTE, + ACTIONS(5055), 1, + anon_sym_LBRACE, + ACTIONS(5502), 1, + anon_sym_SEMI, + STATE(1282), 1, + sym_block, + STATE(3686), 1, + sym_label, + STATE(2443), 2, sym_line_comment, sym_block_comment, - [74102] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [76291] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3051), 1, - anon_sym_PLUS, - ACTIONS(4971), 1, + ACTIONS(5061), 1, anon_sym_COLON, - ACTIONS(5347), 1, - anon_sym_GT, - ACTIONS(5349), 1, + ACTIONS(5434), 1, anon_sym_COMMA, - STATE(2786), 1, - aux_sym_type_parameters_repeat1, - STATE(2888), 1, + ACTIONS(5436), 1, + anon_sym_GT, + STATE(2964), 1, + aux_sym_type_arguments_repeat1, + STATE(2965), 1, sym_trait_bounds, - STATE(2373), 2, + STATE(2444), 2, sym_line_comment, sym_block_comment, - [74131] = 7, - ACTIONS(101), 1, + [76317] = 4, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2445), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5504), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [76335] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4463), 1, - anon_sym_DOT_DOT, - ACTIONS(5207), 1, - anon_sym_COLON_COLON, - ACTIONS(4465), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(5309), 2, + ACTIONS(1489), 1, anon_sym_RPAREN, + ACTIONS(5506), 1, anon_sym_COMMA, - STATE(2374), 2, + STATE(2833), 1, + aux_sym_parameters_repeat1, + ACTIONS(4531), 2, + anon_sym_COLON, + anon_sym_PIPE, + STATE(2446), 2, sym_line_comment, sym_block_comment, - [74156] = 9, - ACTIONS(101), 1, + [76359] = 6, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5500), 1, + anon_sym_as, + ACTIONS(5508), 1, + anon_sym_COLON_COLON, + STATE(2447), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5496), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [76381] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4872), 1, - anon_sym_LT, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4891), 1, + ACTIONS(405), 1, anon_sym_LBRACE, - STATE(1191), 1, - sym_field_declaration_list, - STATE(2515), 1, - sym_type_parameters, - STATE(3305), 1, - sym_where_clause, - STATE(2375), 2, + ACTIONS(3442), 1, + anon_sym_SQUOTE, + ACTIONS(5057), 1, + anon_sym_PLUS, + STATE(1709), 1, + sym_block, + STATE(3688), 1, + sym_label, + STATE(2448), 2, sym_line_comment, sym_block_comment, - [74185] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [76407] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4878), 1, + ACTIONS(3442), 1, + anon_sym_SQUOTE, + ACTIONS(5071), 1, anon_sym_LBRACE, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5351), 1, + ACTIONS(5510), 1, anon_sym_SEMI, - STATE(571), 1, - sym_declaration_list, - STATE(2925), 1, - sym_where_clause, - STATE(2376), 2, + STATE(749), 1, + sym_block, + STATE(3683), 1, + sym_label, + STATE(2449), 2, sym_line_comment, sym_block_comment, - [74214] = 8, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [76433] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3442), 1, anon_sym_SQUOTE, - ACTIONS(5353), 1, - anon_sym_if, - STATE(3510), 1, - sym_label, - STATE(377), 2, - sym_if_expression, + ACTIONS(5057), 1, + anon_sym_PLUS, + STATE(1457), 1, sym_block, - STATE(2377), 2, + STATE(3635), 1, + sym_label, + STATE(2450), 2, sym_line_comment, sym_block_comment, - [74241] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [76459] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4878), 1, + ACTIONS(3442), 1, + anon_sym_SQUOTE, + ACTIONS(5071), 1, anon_sym_LBRACE, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5355), 1, + ACTIONS(5512), 1, anon_sym_SEMI, - STATE(665), 1, - sym_declaration_list, - STATE(2735), 1, - sym_where_clause, - STATE(2378), 2, + STATE(518), 1, + sym_block, + STATE(3683), 1, + sym_label, + STATE(2451), 2, sym_line_comment, sym_block_comment, - [74270] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [76485] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4537), 1, + ACTIONS(5516), 1, anon_sym_COLON_COLON, - ACTIONS(4967), 1, - anon_sym_for, - STATE(2379), 2, + ACTIONS(5518), 1, + anon_sym_as, + STATE(2452), 2, sym_line_comment, sym_block_comment, - ACTIONS(3299), 4, + ACTIONS(5514), 3, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [74293] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_RBRACE, + anon_sym_COMMA, + [76507] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4537), 1, - anon_sym_COLON_COLON, - ACTIONS(4864), 1, - anon_sym_for, - STATE(2380), 2, + STATE(2453), 2, sym_line_comment, sym_block_comment, - ACTIONS(3299), 4, + ACTIONS(5520), 5, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_EQ, anon_sym_where, - [74316] = 9, - ACTIONS(27), 1, - anon_sym_PIPE, - ACTIONS(101), 1, + [76525] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5357), 1, - sym_identifier, - ACTIONS(5359), 1, - anon_sym_ref, - ACTIONS(5361), 1, - sym_mutable_specifier, - ACTIONS(5363), 1, - anon_sym_move, - STATE(228), 1, - sym_closure_parameters, - STATE(2381), 2, + ACTIONS(5522), 1, + aux_sym_line_comment_token1, + ACTIONS(5524), 1, + aux_sym_line_comment_token3, + ACTIONS(5526), 1, + sym__inner_line_doc_comment_marker, + ACTIONS(5528), 1, + sym__outer_line_doc_comment_marker, + STATE(3630), 1, + sym__line_doc_comment_marker, + STATE(2454), 2, sym_line_comment, sym_block_comment, - [74345] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [76551] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4537), 1, - anon_sym_COLON_COLON, - ACTIONS(4951), 1, - anon_sym_for, - STATE(2382), 2, + ACTIONS(5530), 1, + anon_sym_RPAREN, + ACTIONS(5532), 1, + anon_sym_COMMA, + STATE(2958), 1, + aux_sym_parameters_repeat1, + ACTIONS(4531), 2, + anon_sym_COLON, + anon_sym_PIPE, + STATE(2455), 2, sym_line_comment, sym_block_comment, - ACTIONS(3299), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [74368] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [76575] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4971), 1, - anon_sym_COLON, - ACTIONS(5365), 1, + ACTIONS(3442), 1, + anon_sym_SQUOTE, + ACTIONS(5071), 1, + anon_sym_LBRACE, + ACTIONS(5534), 1, anon_sym_SEMI, - ACTIONS(5367), 1, - anon_sym_EQ, - STATE(3031), 1, - sym_trait_bounds, - STATE(3505), 1, - sym_where_clause, - STATE(2383), 2, + STATE(505), 1, + sym_block, + STATE(3683), 1, + sym_label, + STATE(2456), 2, sym_line_comment, sym_block_comment, - [74397] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [76601] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4537), 1, - anon_sym_COLON_COLON, - ACTIONS(4957), 1, - anon_sym_for, - STATE(2384), 2, + STATE(2457), 2, sym_line_comment, sym_block_comment, - ACTIONS(3299), 4, + ACTIONS(5536), 5, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_EQ, anon_sym_where, - [74420] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [76619] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4537), 1, - anon_sym_COLON_COLON, - ACTIONS(4961), 1, - anon_sym_for, - STATE(2385), 2, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3442), 1, + anon_sym_SQUOTE, + ACTIONS(5057), 1, + anon_sym_PLUS, + STATE(1396), 1, + sym_block, + STATE(3635), 1, + sym_label, + STATE(2458), 2, sym_line_comment, sym_block_comment, - ACTIONS(3299), 4, - anon_sym_SEMI, + [76645] = 8, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(343), 1, anon_sym_LBRACE, + ACTIONS(3442), 1, + anon_sym_SQUOTE, + ACTIONS(5057), 1, anon_sym_PLUS, - anon_sym_where, - [74443] = 6, - ACTIONS(101), 1, + STATE(1407), 1, + sym_block, + STATE(3635), 1, + sym_label, + STATE(2459), 2, + sym_line_comment, + sym_block_comment, + [76671] = 6, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5538), 1, + anon_sym_RBRACK, + ACTIONS(3921), 2, + anon_sym_SEMI, + anon_sym_PLUS, + ACTIONS(4924), 2, + anon_sym_COMMA, + anon_sym_PIPE, + STATE(2460), 2, + sym_line_comment, + sym_block_comment, + [76693] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4537), 1, + ACTIONS(5500), 1, + anon_sym_as, + ACTIONS(5541), 1, anon_sym_COLON_COLON, - ACTIONS(4965), 1, - anon_sym_for, - STATE(2386), 2, + STATE(2461), 2, sym_line_comment, sym_block_comment, - ACTIONS(3299), 4, + ACTIONS(5496), 3, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [74466] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_RBRACE, + anon_sym_COMMA, + [76715] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4611), 1, - anon_sym_DOT_DOT, - ACTIONS(4613), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2387), 2, + ACTIONS(405), 1, + anon_sym_LBRACE, + ACTIONS(3442), 1, + anon_sym_SQUOTE, + ACTIONS(5057), 1, + anon_sym_PLUS, + STATE(1828), 1, + sym_block, + STATE(3688), 1, + sym_label, + STATE(2462), 2, sym_line_comment, sym_block_comment, - ACTIONS(4453), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [74489] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [76741] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4878), 1, + ACTIONS(3442), 1, + anon_sym_SQUOTE, + ACTIONS(5071), 1, anon_sym_LBRACE, - ACTIONS(4971), 1, - anon_sym_COLON, - STATE(529), 1, - sym_declaration_list, - STATE(2530), 1, - sym_trait_bounds, - STATE(3087), 1, - sym_where_clause, - STATE(2388), 2, + ACTIONS(5543), 1, + anon_sym_SEMI, + STATE(528), 1, + sym_block, + STATE(3683), 1, + sym_label, + STATE(2463), 2, sym_line_comment, sym_block_comment, - [74518] = 8, - ACTIONS(101), 1, + [76767] = 4, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2464), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3791), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_where, + [76785] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, + ACTIONS(3442), 1, anon_sym_SQUOTE, - ACTIONS(4997), 1, + ACTIONS(5055), 1, anon_sym_LBRACE, - ACTIONS(5369), 1, + ACTIONS(5545), 1, anon_sym_SEMI, - STATE(1395), 1, + STATE(1153), 1, sym_block, - STATE(3589), 1, + STATE(3686), 1, sym_label, - STATE(2389), 2, + STATE(2465), 2, sym_line_comment, sym_block_comment, - [74544] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [76811] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_GT, - ACTIONS(4971), 1, + ACTIONS(5061), 1, anon_sym_COLON, - ACTIONS(5371), 1, + ACTIONS(5462), 1, anon_sym_COMMA, - STATE(2873), 1, - aux_sym_type_parameters_repeat1, - STATE(2888), 1, + ACTIONS(5464), 1, + anon_sym_GT, + STATE(2967), 1, sym_trait_bounds, - STATE(2390), 2, + STATE(2968), 1, + aux_sym_type_arguments_repeat1, + STATE(2466), 2, sym_line_comment, sym_block_comment, - [74570] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [76837] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_COLON, - ACTIONS(5241), 1, - anon_sym_PLUS, - STATE(3250), 1, - sym_trait_bounds, - ACTIONS(5373), 2, - anon_sym_GT, + ACTIONS(4894), 1, + anon_sym_RPAREN, + ACTIONS(5547), 1, anon_sym_COMMA, - STATE(2391), 2, + ACTIONS(5549), 1, + anon_sym_COLON, + ACTIONS(5551), 1, + anon_sym_PIPE, + STATE(2793), 1, + aux_sym_closure_parameters_repeat1, + STATE(2467), 2, sym_line_comment, sym_block_comment, - [74594] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [76863] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4463), 1, + ACTIONS(4541), 1, anon_sym_DOT_DOT, - ACTIONS(5155), 1, - anon_sym_COLON_COLON, - ACTIONS(5205), 1, + ACTIONS(5241), 1, anon_sym_COLON, - ACTIONS(4465), 2, + ACTIONS(5261), 1, + anon_sym_COLON_COLON, + ACTIONS(4543), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2392), 2, + STATE(2468), 2, sym_line_comment, sym_block_comment, - [74618] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [76887] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4852), 1, - anon_sym_PIPE, - ACTIONS(5375), 1, - anon_sym_SEMI, - ACTIONS(5377), 1, + ACTIONS(4732), 1, + anon_sym_GT, + ACTIONS(5061), 1, anon_sym_COLON, - ACTIONS(5379), 1, - anon_sym_EQ, - ACTIONS(5381), 1, - anon_sym_else, - STATE(2393), 2, + ACTIONS(5553), 1, + anon_sym_COMMA, + STATE(2824), 1, + sym_trait_bounds, + STATE(2874), 1, + aux_sym_type_parameters_repeat1, + STATE(2469), 2, sym_line_comment, sym_block_comment, - [74644] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [76913] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, + ACTIONS(405), 1, anon_sym_LBRACE, - ACTIONS(3344), 1, + ACTIONS(3442), 1, anon_sym_SQUOTE, - ACTIONS(4989), 1, + ACTIONS(5057), 1, anon_sym_PLUS, - STATE(1304), 1, + STATE(1861), 1, sym_block, - STATE(3539), 1, + STATE(3688), 1, sym_label, - STATE(2394), 2, + STATE(2470), 2, sym_line_comment, sym_block_comment, - [74670] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [76939] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, - anon_sym_POUND, - ACTIONS(5383), 1, - sym_identifier, - ACTIONS(5385), 1, - sym_integer_literal, - STATE(1065), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1476), 1, - sym_attribute_item, - STATE(2395), 2, + STATE(2471), 2, sym_line_comment, sym_block_comment, - [74696] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5555), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [76957] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3051), 1, - anon_sym_PLUS, - ACTIONS(4971), 1, - anon_sym_COLON, - STATE(3250), 1, - sym_trait_bounds, - ACTIONS(5373), 2, - anon_sym_GT, - anon_sym_COMMA, - STATE(2396), 2, + STATE(2472), 2, sym_line_comment, sym_block_comment, - [74720] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5557), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [76975] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, + ACTIONS(3442), 1, anon_sym_SQUOTE, - ACTIONS(4997), 1, + ACTIONS(5071), 1, anon_sym_LBRACE, - ACTIONS(5387), 1, + ACTIONS(5559), 1, anon_sym_SEMI, - STATE(1113), 1, + STATE(648), 1, sym_block, - STATE(3589), 1, + STATE(3683), 1, sym_label, - STATE(2397), 2, + STATE(2473), 2, sym_line_comment, sym_block_comment, - [74746] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [77001] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(4979), 1, - anon_sym_LBRACE, - ACTIONS(5389), 1, - anon_sym_SEMI, - STATE(711), 1, - sym_block, - STATE(3586), 1, - sym_label, - STATE(2398), 2, + STATE(2474), 2, sym_line_comment, sym_block_comment, - [74772] = 8, - ACTIONS(101), 1, + ACTIONS(3817), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_where, + [77019] = 4, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2475), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5561), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [77037] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, + ACTIONS(3442), 1, anon_sym_SQUOTE, - ACTIONS(4997), 1, + ACTIONS(5071), 1, anon_sym_LBRACE, - ACTIONS(5391), 1, + ACTIONS(5563), 1, anon_sym_SEMI, - STATE(1126), 1, + STATE(533), 1, sym_block, - STATE(3589), 1, + STATE(3683), 1, sym_label, - STATE(2399), 2, + STATE(2476), 2, sym_line_comment, sym_block_comment, - [74798] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [77063] = 7, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4243), 1, - anon_sym_LBRACE, - ACTIONS(5105), 1, - anon_sym_STAR, - STATE(2776), 1, - sym_use_list, - ACTIONS(5103), 2, - sym_identifier, - sym_super, - STATE(2400), 2, - sym_line_comment, - sym_block_comment, - [74822] = 8, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_COLON, - ACTIONS(5347), 1, - anon_sym_GT, - ACTIONS(5349), 1, + ACTIONS(5565), 1, + anon_sym_RPAREN, + ACTIONS(5567), 1, anon_sym_COMMA, - STATE(2786), 1, - aux_sym_type_parameters_repeat1, - STATE(2888), 1, - sym_trait_bounds, - STATE(2401), 2, + STATE(2981), 1, + aux_sym_parameters_repeat1, + ACTIONS(4531), 2, + anon_sym_COLON, + anon_sym_PIPE, + STATE(2477), 2, sym_line_comment, sym_block_comment, - [74848] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [77087] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(4989), 1, - anon_sym_PLUS, - STATE(1384), 1, - sym_block, - STATE(3539), 1, - sym_label, - STATE(2402), 2, + STATE(2478), 2, sym_line_comment, sym_block_comment, - [74874] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5569), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [77105] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2403), 2, + STATE(2479), 2, sym_line_comment, sym_block_comment, - ACTIONS(5393), 5, + ACTIONS(5571), 5, anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_EQ, anon_sym_COMMA, + anon_sym_EQ, anon_sym_where, - [74892] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [77123] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(4997), 1, - anon_sym_LBRACE, - ACTIONS(5395), 1, + ACTIONS(5573), 1, anon_sym_SEMI, - STATE(1133), 1, - sym_block, - STATE(3589), 1, - sym_label, - STATE(2404), 2, + ACTIONS(5575), 1, + anon_sym_COLON, + ACTIONS(5577), 1, + anon_sym_PIPE, + ACTIONS(5579), 1, + anon_sym_EQ, + ACTIONS(5581), 1, + anon_sym_else, + STATE(2480), 2, sym_line_comment, sym_block_comment, - [74918] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [77149] = 8, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4443), 1, - anon_sym_LPAREN, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4451), 1, - anon_sym_COLON_COLON, - STATE(1931), 1, - sym_type_arguments, - STATE(1962), 1, - sym_parameters, - STATE(2405), 2, - sym_line_comment, - sym_block_comment, - [74944] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5399), 1, - anon_sym_COMMA, - ACTIONS(5397), 3, + ACTIONS(4904), 1, + anon_sym_PIPE, + ACTIONS(5583), 1, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_SQUOTE, - STATE(2406), 3, - sym_line_comment, - sym_block_comment, - aux_sym_where_clause_repeat1, - [74964] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3621), 1, - anon_sym_PLUS, - ACTIONS(4756), 2, + ACTIONS(5585), 1, anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(5402), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2407), 2, + ACTIONS(5587), 1, + anon_sym_EQ, + ACTIONS(5589), 1, + anon_sym_else, + STATE(2481), 2, sym_line_comment, sym_block_comment, - [74986] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [77175] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, + ACTIONS(3442), 1, anon_sym_SQUOTE, - ACTIONS(4997), 1, + ACTIONS(5055), 1, anon_sym_LBRACE, - ACTIONS(5405), 1, + ACTIONS(5591), 1, anon_sym_SEMI, - STATE(1158), 1, + STATE(1306), 1, sym_block, - STATE(3589), 1, + STATE(3686), 1, sym_label, - STATE(2408), 2, + STATE(2482), 2, sym_line_comment, sym_block_comment, - [75012] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [77201] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(4997), 1, - anon_sym_LBRACE, - ACTIONS(5407), 1, - anon_sym_SEMI, - STATE(1164), 1, - sym_block, - STATE(3589), 1, - sym_label, - STATE(2409), 2, + STATE(2483), 2, sym_line_comment, sym_block_comment, - [75038] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3697), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_where, + [77219] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(4997), 1, - anon_sym_LBRACE, - ACTIONS(5409), 1, - anon_sym_SEMI, - STATE(1174), 1, - sym_block, - STATE(3589), 1, - sym_label, - STATE(2410), 2, + STATE(2484), 2, sym_line_comment, sym_block_comment, - [75064] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3683), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_where, + [77237] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(4979), 1, - anon_sym_LBRACE, - ACTIONS(5411), 1, - anon_sym_SEMI, - STATE(637), 1, - sym_block, - STATE(3586), 1, - sym_label, - STATE(2411), 2, + ACTIONS(4668), 1, + anon_sym_EQ, + ACTIONS(5061), 1, + anon_sym_COLON, + STATE(3063), 1, + sym_trait_bounds, + ACTIONS(5593), 2, + anon_sym_COMMA, + anon_sym_GT, + STATE(2485), 2, sym_line_comment, sym_block_comment, - [75090] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [77261] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, + ACTIONS(3442), 1, anon_sym_SQUOTE, - ACTIONS(4997), 1, + ACTIONS(5055), 1, anon_sym_LBRACE, - ACTIONS(5413), 1, + ACTIONS(5595), 1, anon_sym_SEMI, - STATE(1178), 1, + STATE(1327), 1, sym_block, - STATE(3589), 1, + STATE(3686), 1, sym_label, - STATE(2412), 2, + STATE(2486), 2, sym_line_comment, sym_block_comment, - [75116] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [77287] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(4997), 1, - anon_sym_LBRACE, - ACTIONS(5415), 1, - anon_sym_SEMI, - STATE(1182), 1, - sym_block, - STATE(3589), 1, - sym_label, - STATE(2413), 2, + ACTIONS(4531), 2, + anon_sym_COLON, + anon_sym_PIPE, + STATE(2487), 2, sym_line_comment, sym_block_comment, - [75142] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3377), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS, + [77307] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(400), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, + ACTIONS(3442), 1, anon_sym_SQUOTE, - ACTIONS(4989), 1, - anon_sym_PLUS, - STATE(1678), 1, + ACTIONS(5055), 1, + anon_sym_LBRACE, + ACTIONS(5597), 1, + anon_sym_SEMI, + STATE(1319), 1, sym_block, - STATE(3591), 1, + STATE(3686), 1, sym_label, - STATE(2414), 2, + STATE(2488), 2, sym_line_comment, sym_block_comment, - [75168] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [77333] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(400), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(5417), 1, - anon_sym_move, - STATE(1742), 1, - sym_block, - STATE(3591), 1, - sym_label, - STATE(2415), 2, + STATE(2489), 2, sym_line_comment, sym_block_comment, - [75194] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(982), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COMMA, + [77351] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2416), 2, + STATE(2490), 2, sym_line_comment, sym_block_comment, - ACTIONS(3699), 5, + ACTIONS(3675), 5, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COLON, anon_sym_EQ, anon_sym_where, - [75212] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [77369] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2417), 2, + STATE(2491), 2, sym_line_comment, sym_block_comment, - ACTIONS(3703), 5, + ACTIONS(5599), 5, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_where, - [75230] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COMMA, + [77387] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2418), 2, + STATE(2492), 2, sym_line_comment, sym_block_comment, - ACTIONS(3711), 5, + ACTIONS(5601), 5, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, + anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_EQ, anon_sym_where, - [75248] = 8, - ACTIONS(101), 1, + [77405] = 8, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5061), 1, + anon_sym_COLON, + ACTIONS(5420), 1, + anon_sym_COMMA, + ACTIONS(5422), 1, + anon_sym_GT, + STATE(2953), 1, + aux_sym_type_arguments_repeat1, + STATE(2954), 1, + sym_trait_bounds, + STATE(2493), 2, + sym_line_comment, + sym_block_comment, + [77431] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, + ACTIONS(3442), 1, anon_sym_SQUOTE, - ACTIONS(4979), 1, + ACTIONS(5055), 1, anon_sym_LBRACE, - ACTIONS(5419), 1, + ACTIONS(5603), 1, anon_sym_SEMI, - STATE(642), 1, + STATE(1323), 1, sym_block, - STATE(3586), 1, + STATE(3686), 1, sym_label, - STATE(2419), 2, + STATE(2494), 2, sym_line_comment, sym_block_comment, - [75274] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [77457] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(4979), 1, - anon_sym_LBRACE, - ACTIONS(5421), 1, + ACTIONS(5607), 1, + anon_sym_COMMA, + ACTIONS(5605), 3, anon_sym_SEMI, - STATE(544), 1, - sym_block, - STATE(3586), 1, - sym_label, - STATE(2420), 2, + anon_sym_LBRACE, + anon_sym_SQUOTE, + STATE(2495), 3, sym_line_comment, sym_block_comment, - [75300] = 5, - ACTIONS(101), 1, + aux_sym_where_clause_repeat1, + [77477] = 4, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2496), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5610), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [77495] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4756), 2, + ACTIONS(5061), 1, anon_sym_COLON, - anon_sym_PIPE, - STATE(2421), 2, + ACTIONS(5411), 1, + anon_sym_COMMA, + ACTIONS(5413), 1, + anon_sym_GT, + STATE(2824), 1, + sym_trait_bounds, + STATE(3068), 1, + aux_sym_type_parameters_repeat1, + STATE(2497), 2, sym_line_comment, sym_block_comment, - ACTIONS(3621), 3, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [75320] = 8, - ACTIONS(101), 1, + [77521] = 8, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3442), 1, + anon_sym_SQUOTE, + ACTIONS(5071), 1, + anon_sym_LBRACE, + ACTIONS(5612), 1, + anon_sym_SEMI, + STATE(659), 1, + sym_block, + STATE(3683), 1, + sym_label, + STATE(2498), 2, + sym_line_comment, + sym_block_comment, + [77547] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3939), 1, + ACTIONS(4521), 1, anon_sym_LPAREN, - ACTIONS(4449), 1, + ACTIONS(4527), 1, anon_sym_LT2, - ACTIONS(4451), 1, + ACTIONS(4529), 1, anon_sym_COLON_COLON, - STATE(1623), 1, - sym_parameters, - STATE(1931), 1, + STATE(1967), 1, sym_type_arguments, - STATE(2422), 2, + STATE(1995), 1, + sym_parameters, + STATE(2499), 2, sym_line_comment, sym_block_comment, - [75346] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [77573] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4451), 1, - anon_sym_COLON_COLON, - ACTIONS(4582), 1, - anon_sym_COLON, - STATE(1931), 1, - sym_type_arguments, - STATE(2606), 1, - sym_trait_bounds, - STATE(2423), 2, + ACTIONS(3033), 1, + anon_sym_POUND, + ACTIONS(5614), 1, + sym_identifier, + ACTIONS(5616), 1, + sym_integer_literal, + STATE(1237), 1, + aux_sym_enum_variant_list_repeat1, + STATE(1514), 1, + sym_attribute_item, + STATE(2500), 2, sym_line_comment, sym_block_comment, - [75372] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [77599] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5423), 1, - anon_sym_RBRACK, - ACTIONS(3299), 2, + STATE(2501), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(900), 5, anon_sym_SEMI, - anon_sym_PLUS, - ACTIONS(4453), 2, - anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(2424), 2, + [77617] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4279), 1, + anon_sym_LBRACE, + ACTIONS(5298), 1, + anon_sym_STAR, + STATE(3046), 1, + sym_use_list, + ACTIONS(5296), 2, + sym_identifier, + sym_super, + STATE(2502), 2, sym_line_comment, sym_block_comment, - [75394] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [77641] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_COLON, - ACTIONS(5311), 1, - anon_sym_GT, - ACTIONS(5313), 1, - anon_sym_COMMA, - STATE(2805), 1, - sym_trait_bounds, - STATE(2806), 1, - aux_sym_type_arguments_repeat1, - STATE(2425), 2, + ACTIONS(4279), 1, + anon_sym_LBRACE, + ACTIONS(5620), 1, + anon_sym_STAR, + STATE(3049), 1, + sym_use_list, + ACTIONS(5618), 2, + sym_identifier, + sym_super, + STATE(2503), 2, sym_line_comment, sym_block_comment, - [75420] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [77665] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, + ACTIONS(4527), 1, + anon_sym_LT2, + ACTIONS(4529), 1, + anon_sym_COLON_COLON, + ACTIONS(4666), 1, anon_sym_COLON, - ACTIONS(5243), 1, - anon_sym_GT, - ACTIONS(5245), 1, - anon_sym_COMMA, - STATE(2853), 1, + STATE(1967), 1, + sym_type_arguments, + STATE(2680), 1, sym_trait_bounds, - STATE(2854), 1, - aux_sym_type_arguments_repeat1, - STATE(2426), 2, + STATE(2504), 2, sym_line_comment, sym_block_comment, - [75446] = 7, - ACTIONS(101), 1, + [77691] = 8, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3442), 1, + anon_sym_SQUOTE, + ACTIONS(5071), 1, + anon_sym_LBRACE, + ACTIONS(5622), 1, + anon_sym_SEMI, + STATE(493), 1, + sym_block, + STATE(3683), 1, + sym_label, + STATE(2505), 2, + sym_line_comment, + sym_block_comment, + [77717] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5426), 1, - anon_sym_RPAREN, - ACTIONS(5428), 1, - anon_sym_COMMA, - STATE(2809), 1, - aux_sym_parameters_repeat1, - ACTIONS(4453), 2, + ACTIONS(5061), 1, anon_sym_COLON, - anon_sym_PIPE, - STATE(2427), 2, + ACTIONS(5624), 1, + anon_sym_COMMA, + ACTIONS(5626), 1, + anon_sym_GT, + STATE(2824), 1, + sym_trait_bounds, + STATE(2888), 1, + aux_sym_type_parameters_repeat1, + STATE(2506), 2, sym_line_comment, sym_block_comment, - [75470] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [77743] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5430), 1, + ACTIONS(5630), 1, anon_sym_COMMA, - STATE(2406), 1, + STATE(2527), 1, aux_sym_where_clause_repeat1, - STATE(2428), 2, + STATE(2507), 2, sym_line_comment, sym_block_comment, - ACTIONS(3477), 3, + ACTIONS(5628), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_SQUOTE, - [75492] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [77765] = 8, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4826), 1, - anon_sym_RPAREN, - ACTIONS(5432), 1, - anon_sym_COLON, - ACTIONS(5434), 1, - anon_sym_PIPE, - ACTIONS(5436), 1, - anon_sym_COMMA, - STATE(3001), 1, - aux_sym_closure_parameters_repeat1, - STATE(2429), 2, - sym_line_comment, - sym_block_comment, - [75518] = 7, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5438), 1, - anon_sym_RPAREN, - ACTIONS(5440), 1, - anon_sym_COMMA, - STATE(2872), 1, - aux_sym_parameters_repeat1, - ACTIONS(4453), 2, - anon_sym_COLON, - anon_sym_PIPE, - STATE(2430), 2, + ACTIONS(405), 1, + anon_sym_LBRACE, + ACTIONS(3442), 1, + anon_sym_SQUOTE, + ACTIONS(5632), 1, + anon_sym_move, + STATE(1672), 1, + sym_block, + STATE(3688), 1, + sym_label, + STATE(2508), 2, sym_line_comment, sym_block_comment, - [75542] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [77791] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, + ACTIONS(3442), 1, anon_sym_SQUOTE, - ACTIONS(4979), 1, + ACTIONS(5071), 1, anon_sym_LBRACE, - ACTIONS(5442), 1, + ACTIONS(5634), 1, anon_sym_SEMI, - STATE(484), 1, + STATE(757), 1, sym_block, - STATE(3586), 1, + STATE(3683), 1, sym_label, - STATE(2431), 2, + STATE(2509), 2, sym_line_comment, sym_block_comment, - [75568] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [77817] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, + ACTIONS(3442), 1, anon_sym_SQUOTE, - ACTIONS(4979), 1, + ACTIONS(5055), 1, anon_sym_LBRACE, - ACTIONS(5444), 1, + ACTIONS(5636), 1, anon_sym_SEMI, - STATE(591), 1, + STATE(1339), 1, sym_block, - STATE(3586), 1, + STATE(3686), 1, sym_label, - STATE(2432), 2, - sym_line_comment, - sym_block_comment, - [75594] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(1464), 1, - anon_sym_RPAREN, - ACTIONS(5446), 1, - anon_sym_COMMA, - STATE(2817), 1, - aux_sym_parameters_repeat1, - ACTIONS(4453), 2, - anon_sym_COLON, - anon_sym_PIPE, - STATE(2433), 2, + STATE(2510), 2, sym_line_comment, sym_block_comment, - [75618] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [77843] = 4, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(5448), 1, - anon_sym_SEMI, - ACTIONS(5450), 1, - anon_sym_COLON, - ACTIONS(5452), 1, - anon_sym_PIPE, - ACTIONS(5454), 1, - anon_sym_EQ, - ACTIONS(5456), 1, - anon_sym_else, - STATE(2434), 2, - sym_line_comment, - sym_block_comment, - [75644] = 4, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2435), 2, + STATE(2511), 2, sym_line_comment, sym_block_comment, - ACTIONS(5458), 5, + ACTIONS(5638), 5, anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_EQ, anon_sym_COMMA, + anon_sym_EQ, anon_sym_where, - [75662] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [77861] = 8, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_COLON, - ACTIONS(5460), 1, - anon_sym_GT, - ACTIONS(5462), 1, - anon_sym_COMMA, - STATE(2773), 1, - aux_sym_type_parameters_repeat1, - STATE(2888), 1, - sym_trait_bounds, - STATE(2436), 2, - sym_line_comment, - sym_block_comment, - [75688] = 8, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, + ACTIONS(3442), 1, anon_sym_SQUOTE, - ACTIONS(4997), 1, + ACTIONS(5055), 1, anon_sym_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5640), 1, anon_sym_SEMI, - STATE(1318), 1, + STATE(1312), 1, sym_block, - STATE(3589), 1, + STATE(3686), 1, sym_label, - STATE(2437), 2, + STATE(2512), 2, + sym_line_comment, + sym_block_comment, + [77887] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4668), 1, + anon_sym_EQ, + ACTIONS(5061), 1, + anon_sym_COLON, + STATE(3063), 1, + sym_trait_bounds, + ACTIONS(5642), 2, + anon_sym_COMMA, + anon_sym_GT, + STATE(2513), 2, sym_line_comment, sym_block_comment, - [75714] = 6, - ACTIONS(101), 1, + [77911] = 7, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1471), 1, + anon_sym_RPAREN, + ACTIONS(5644), 1, + anon_sym_COMMA, + STATE(3058), 1, + aux_sym_parameters_repeat1, + ACTIONS(4531), 2, + anon_sym_COLON, + anon_sym_PIPE, + STATE(2514), 2, + sym_line_comment, + sym_block_comment, + [77935] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5468), 1, + ACTIONS(5577), 1, + anon_sym_PIPE, + ACTIONS(5646), 1, + anon_sym_RPAREN, + ACTIONS(5648), 1, anon_sym_COMMA, - STATE(2428), 1, - aux_sym_where_clause_repeat1, - STATE(2438), 2, + ACTIONS(5650), 1, + anon_sym_COLON, + STATE(2947), 1, + aux_sym_slice_pattern_repeat1, + STATE(2515), 2, sym_line_comment, sym_block_comment, - ACTIONS(5466), 3, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_SQUOTE, - [75736] = 4, - ACTIONS(101), 1, + [77961] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4924), 2, + anon_sym_COLON, + anon_sym_PIPE, + STATE(2516), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3921), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS, + [77981] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2439), 2, + ACTIONS(1485), 1, + anon_sym_RPAREN, + ACTIONS(5652), 1, + anon_sym_COMMA, + STATE(2939), 1, + aux_sym_parameters_repeat1, + ACTIONS(4531), 2, + anon_sym_COLON, + anon_sym_PIPE, + STATE(2517), 2, sym_line_comment, sym_block_comment, - ACTIONS(5470), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [75754] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [78005] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4584), 1, - anon_sym_EQ, - ACTIONS(4971), 1, + ACTIONS(5061), 1, anon_sym_COLON, - STATE(2746), 1, + ACTIONS(5426), 1, + anon_sym_PLUS, + STATE(3180), 1, sym_trait_bounds, - ACTIONS(5472), 2, - anon_sym_GT, + ACTIONS(5654), 2, anon_sym_COMMA, - STATE(2440), 2, + anon_sym_GT, + STATE(2518), 2, sym_line_comment, sym_block_comment, - [75778] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [78029] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, + ACTIONS(3921), 1, + anon_sym_PLUS, + ACTIONS(4924), 2, anon_sym_COLON, - ACTIONS(5323), 1, - anon_sym_GT, - ACTIONS(5325), 1, + anon_sym_PIPE, + ACTIONS(5538), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(2984), 1, - sym_trait_bounds, - STATE(2991), 1, - aux_sym_type_arguments_repeat1, - STATE(2441), 2, + STATE(2519), 2, sym_line_comment, sym_block_comment, - [75804] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [78051] = 7, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(2442), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5474), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [75822] = 4, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2443), 2, + ACTIONS(4541), 1, + anon_sym_DOT_DOT, + ACTIONS(5259), 1, + anon_sym_COLON, + ACTIONS(5261), 1, + anon_sym_COLON_COLON, + ACTIONS(4543), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2520), 2, sym_line_comment, sym_block_comment, - ACTIONS(5476), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [75840] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [78075] = 8, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(2444), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5478), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [75858] = 8, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, + ACTIONS(3442), 1, anon_sym_SQUOTE, - ACTIONS(4997), 1, + ACTIONS(5071), 1, anon_sym_LBRACE, - ACTIONS(5480), 1, + ACTIONS(5656), 1, anon_sym_SEMI, - STATE(1458), 1, + STATE(534), 1, sym_block, - STATE(3589), 1, + STATE(3683), 1, sym_label, - STATE(2445), 2, + STATE(2521), 2, sym_line_comment, sym_block_comment, - [75884] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [78101] = 7, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(2446), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5482), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [75902] = 8, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4654), 1, - anon_sym_GT, - ACTIONS(4971), 1, + ACTIONS(3129), 1, + anon_sym_PLUS, + ACTIONS(5061), 1, anon_sym_COLON, - ACTIONS(5484), 1, - anon_sym_COMMA, - STATE(2888), 1, + STATE(3180), 1, sym_trait_bounds, - STATE(2891), 1, - aux_sym_type_parameters_repeat1, - STATE(2447), 2, + ACTIONS(5654), 2, + anon_sym_COMMA, + anon_sym_GT, + STATE(2522), 2, sym_line_comment, sym_block_comment, - [75928] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [78125] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2448), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3643), 5, + ACTIONS(5577), 1, + anon_sym_PIPE, + ACTIONS(5658), 1, anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(5660), 1, anon_sym_COLON, + ACTIONS(5662), 1, anon_sym_EQ, - anon_sym_where, - [75946] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(2449), 2, + ACTIONS(5664), 1, + anon_sym_else, + STATE(2523), 2, sym_line_comment, sym_block_comment, - ACTIONS(3647), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_where, - [75964] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [78151] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(400), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(3344), 1, + ACTIONS(3442), 1, anon_sym_SQUOTE, - ACTIONS(4989), 1, - anon_sym_PLUS, - STATE(1683), 1, + ACTIONS(5666), 1, + anon_sym_move, + STATE(1446), 1, sym_block, - STATE(3591), 1, + STATE(3635), 1, sym_label, - STATE(2450), 2, + STATE(2524), 2, sym_line_comment, sym_block_comment, - [75990] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [78177] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1210), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, + ACTIONS(3442), 1, anon_sym_SQUOTE, - ACTIONS(5486), 1, - anon_sym_move, - STATE(463), 1, + ACTIONS(5071), 1, + anon_sym_LBRACE, + ACTIONS(5668), 1, + anon_sym_SEMI, + STATE(653), 1, sym_block, - STATE(3590), 1, + STATE(3683), 1, sym_label, - STATE(2451), 2, + STATE(2525), 2, sym_line_comment, sym_block_comment, - [76016] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [78203] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2452), 2, + STATE(2526), 2, sym_line_comment, sym_block_comment, - ACTIONS(3813), 5, + ACTIONS(3927), 5, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COLON, anon_sym_EQ, anon_sym_where, - [76034] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [78221] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2453), 2, + ACTIONS(5670), 1, + anon_sym_COMMA, + STATE(2495), 1, + aux_sym_where_clause_repeat1, + STATE(2527), 2, sym_line_comment, sym_block_comment, - ACTIONS(3817), 5, + ACTIONS(3416), 3, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_where, - [76052] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_SQUOTE, + [78243] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2454), 2, + ACTIONS(5672), 1, + anon_sym_RBRACK, + ACTIONS(3377), 2, + anon_sym_SEMI, + anon_sym_PLUS, + ACTIONS(4531), 2, + anon_sym_COMMA, + anon_sym_PIPE, + STATE(2528), 2, sym_line_comment, sym_block_comment, - ACTIONS(3821), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_where, - [76070] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [78265] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2455), 2, + STATE(2529), 2, sym_line_comment, sym_block_comment, - ACTIONS(3683), 5, + ACTIONS(3931), 5, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COLON, anon_sym_EQ, anon_sym_where, - [76088] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [78283] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2456), 2, + STATE(2530), 2, sym_line_comment, sym_block_comment, - ACTIONS(3687), 5, + ACTIONS(3631), 5, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COLON, anon_sym_EQ, anon_sym_where, - [76106] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [78301] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, + ACTIONS(3442), 1, anon_sym_SQUOTE, - ACTIONS(4979), 1, + ACTIONS(5055), 1, anon_sym_LBRACE, - ACTIONS(5488), 1, + ACTIONS(5675), 1, anon_sym_SEMI, - STATE(616), 1, + STATE(1079), 1, sym_block, - STATE(3586), 1, + STATE(3686), 1, sym_label, - STATE(2457), 2, + STATE(2531), 2, sym_line_comment, sym_block_comment, - [76132] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [78327] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5492), 1, - anon_sym_COLON_COLON, - ACTIONS(5494), 1, - anon_sym_as, - STATE(2458), 2, + STATE(2532), 2, sym_line_comment, sym_block_comment, - ACTIONS(5490), 3, + ACTIONS(5677), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [76154] = 8, - ACTIONS(101), 1, + anon_sym_EQ, + anon_sym_where, + [78345] = 8, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1273), 1, + anon_sym_LBRACE, + ACTIONS(3442), 1, + anon_sym_SQUOTE, + ACTIONS(5679), 1, + anon_sym_move, + STATE(460), 1, + sym_block, + STATE(3687), 1, + sym_label, + STATE(2533), 2, + sym_line_comment, + sym_block_comment, + [78371] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, + ACTIONS(3442), 1, anon_sym_SQUOTE, - ACTIONS(4979), 1, + ACTIONS(5055), 1, anon_sym_LBRACE, - ACTIONS(5496), 1, + ACTIONS(5681), 1, anon_sym_SEMI, - STATE(587), 1, + STATE(1353), 1, sym_block, - STATE(3586), 1, + STATE(3686), 1, sym_label, - STATE(2459), 2, + STATE(2534), 2, sym_line_comment, sym_block_comment, - [76180] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [78397] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4584), 1, - anon_sym_EQ, - ACTIONS(4971), 1, - anon_sym_COLON, - STATE(2746), 1, - sym_trait_bounds, - ACTIONS(5498), 2, - anon_sym_GT, - anon_sym_COMMA, - STATE(2460), 2, + ACTIONS(3442), 1, + anon_sym_SQUOTE, + ACTIONS(5055), 1, + anon_sym_LBRACE, + ACTIONS(5683), 1, + anon_sym_SEMI, + STATE(1221), 1, + sym_block, + STATE(3686), 1, + sym_label, + STATE(2535), 2, sym_line_comment, sym_block_comment, - [76204] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [78423] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2461), 2, + STATE(2536), 2, sym_line_comment, sym_block_comment, - ACTIONS(5500), 5, + ACTIONS(5685), 5, anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_EQ, anon_sym_COMMA, + anon_sym_EQ, anon_sym_where, - [76222] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [78441] = 4, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(5504), 1, - anon_sym_COLON_COLON, - ACTIONS(5506), 1, - anon_sym_as, - STATE(2462), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5502), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [76244] = 4, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2463), 2, + STATE(2537), 2, sym_line_comment, sym_block_comment, - ACTIONS(3215), 5, + ACTIONS(3293), 5, + anon_sym_COMMA, anon_sym_COLON, anon_sym_PLUS, anon_sym_GT, - anon_sym_COMMA, anon_sym_as, - [76262] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [78459] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5452), 1, - anon_sym_PIPE, - ACTIONS(5508), 1, - anon_sym_RPAREN, - ACTIONS(5510), 1, - anon_sym_COLON, - ACTIONS(5512), 1, - anon_sym_COMMA, - STATE(2839), 1, - aux_sym_slice_pattern_repeat1, - STATE(2464), 2, + STATE(2538), 2, sym_line_comment, sym_block_comment, - [76288] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5687), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_where, + [78477] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(4979), 1, - anon_sym_LBRACE, - ACTIONS(5514), 1, - anon_sym_SEMI, - STATE(622), 1, - sym_block, - STATE(3586), 1, - sym_label, - STATE(2465), 2, + ACTIONS(4726), 1, + anon_sym_GT, + ACTIONS(5061), 1, + anon_sym_COLON, + ACTIONS(5689), 1, + anon_sym_COMMA, + STATE(2824), 1, + sym_trait_bounds, + STATE(2997), 1, + aux_sym_type_parameters_repeat1, + STATE(2539), 2, sym_line_comment, sym_block_comment, - [76314] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [78503] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5452), 1, - anon_sym_PIPE, - ACTIONS(5516), 1, - anon_sym_SEMI, - ACTIONS(5518), 1, - anon_sym_COLON, - ACTIONS(5520), 1, - anon_sym_EQ, - ACTIONS(5522), 1, - anon_sym_else, - STATE(2466), 2, + ACTIONS(4023), 1, + anon_sym_LPAREN, + ACTIONS(4527), 1, + anon_sym_LT2, + ACTIONS(4529), 1, + anon_sym_COLON_COLON, + STATE(1620), 1, + sym_parameters, + STATE(1967), 1, + sym_type_arguments, + STATE(2540), 2, sym_line_comment, sym_block_comment, - [76340] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [78529] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, + ACTIONS(3442), 1, anon_sym_SQUOTE, - ACTIONS(4989), 1, - anon_sym_PLUS, - STATE(1193), 1, + ACTIONS(5055), 1, + anon_sym_LBRACE, + ACTIONS(5691), 1, + anon_sym_SEMI, + STATE(1344), 1, sym_block, - STATE(3539), 1, + STATE(3686), 1, sym_label, - STATE(2467), 2, + STATE(2541), 2, sym_line_comment, sym_block_comment, - [76366] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [78555] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1470), 1, - anon_sym_RPAREN, - ACTIONS(5524), 1, - anon_sym_COMMA, - STATE(2846), 1, - aux_sym_parameters_repeat1, - ACTIONS(4453), 2, + ACTIONS(3377), 1, + anon_sym_PLUS, + ACTIONS(4531), 2, anon_sym_COLON, anon_sym_PIPE, - STATE(2468), 2, + ACTIONS(5672), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2542), 2, sym_line_comment, sym_block_comment, - [76390] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [78577] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4463), 1, - anon_sym_DOT_DOT, - ACTIONS(5153), 1, - anon_sym_COLON, - ACTIONS(5155), 1, - anon_sym_COLON_COLON, - ACTIONS(4465), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2469), 2, + STATE(2543), 2, sym_line_comment, sym_block_comment, - [76414] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3755), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_where, + [78595] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2470), 2, + STATE(2544), 2, sym_line_comment, sym_block_comment, - ACTIONS(5526), 5, + ACTIONS(3671), 5, anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, + anon_sym_COLON, anon_sym_EQ, - anon_sym_COMMA, anon_sym_where, - [76432] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [78613] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5528), 1, + ACTIONS(5693), 1, anon_sym_RPAREN, - ACTIONS(5530), 1, + ACTIONS(5696), 1, anon_sym_COMMA, - STATE(2822), 1, + STATE(2929), 1, aux_sym_parameters_repeat1, - ACTIONS(4453), 2, + ACTIONS(4531), 2, anon_sym_COLON, anon_sym_PIPE, - STATE(2471), 2, + STATE(2545), 2, sym_line_comment, sym_block_comment, - [76456] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [78637] = 8, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2472), 2, + ACTIONS(5699), 1, + anon_sym_STAR_SLASH, + ACTIONS(5701), 1, + sym__outer_block_doc_comment_marker, + ACTIONS(5703), 1, + sym__inner_block_doc_comment_marker, + ACTIONS(5705), 1, + sym__block_comment_content, + STATE(3176), 1, + sym__block_doc_comment_marker, + STATE(2546), 2, sym_line_comment, sym_block_comment, - ACTIONS(5532), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [76474] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [78663] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1466), 1, + ACTIONS(5707), 1, anon_sym_RPAREN, - ACTIONS(5534), 1, + ACTIONS(5709), 1, anon_sym_COMMA, - STATE(2961), 1, + STATE(2929), 1, aux_sym_parameters_repeat1, - ACTIONS(4453), 2, + ACTIONS(4531), 2, anon_sym_COLON, anon_sym_PIPE, - STATE(2473), 2, + STATE(2547), 2, sym_line_comment, sym_block_comment, - [76498] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [78687] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(4979), 1, + ACTIONS(4989), 1, + anon_sym_where, + ACTIONS(5458), 1, anon_sym_LBRACE, - ACTIONS(5536), 1, - anon_sym_SEMI, - STATE(633), 1, - sym_block, - STATE(3586), 1, - sym_label, - STATE(2474), 2, + STATE(1113), 1, + sym_enum_variant_list, + STATE(3307), 1, + sym_where_clause, + STATE(2548), 2, sym_line_comment, sym_block_comment, - [76524] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [78710] = 7, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(5402), 1, - anon_sym_RBRACK, - ACTIONS(3621), 2, - anon_sym_SEMI, - anon_sym_PLUS, - ACTIONS(4756), 2, - anon_sym_PIPE, - anon_sym_COMMA, - STATE(2475), 2, - sym_line_comment, - sym_block_comment, - [76546] = 6, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5506), 1, - anon_sym_as, - ACTIONS(5538), 1, - anon_sym_COLON_COLON, - STATE(2476), 2, + ACTIONS(4527), 1, + anon_sym_LT2, + ACTIONS(5711), 1, + sym_identifier, + ACTIONS(5713), 1, + sym_super, + STATE(3228), 1, + sym_type_arguments, + STATE(2549), 2, sym_line_comment, sym_block_comment, - ACTIONS(5502), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [76568] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [78733] = 7, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(2477), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5540), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [76586] = 4, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2478), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5542), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, + ACTIONS(4732), 1, + anon_sym_GT, + ACTIONS(5553), 1, anon_sym_COMMA, - anon_sym_where, - [76604] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(2479), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5544), 5, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(5715), 1, anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [76622] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4453), 2, - anon_sym_COLON, - anon_sym_PIPE, - STATE(2480), 2, + STATE(2874), 1, + aux_sym_type_parameters_repeat1, + STATE(2550), 2, sym_line_comment, sym_block_comment, - ACTIONS(3299), 3, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [76642] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [78756] = 7, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4243), 1, - anon_sym_LBRACE, - ACTIONS(5548), 1, - anon_sym_STAR, - STATE(3000), 1, - sym_use_list, - ACTIONS(5546), 2, - sym_identifier, - sym_super, - STATE(2481), 2, - sym_line_comment, - sym_block_comment, - [76666] = 7, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5550), 1, - anon_sym_RPAREN, - ACTIONS(5553), 1, - anon_sym_COMMA, - STATE(2822), 1, - aux_sym_parameters_repeat1, - ACTIONS(4453), 2, - anon_sym_COLON, - anon_sym_PIPE, - STATE(2482), 2, + ACTIONS(4527), 1, + anon_sym_LT2, + ACTIONS(5717), 1, + anon_sym_COLON_COLON, + ACTIONS(5719), 1, + anon_sym_for, + STATE(1967), 1, + sym_type_arguments, + STATE(2551), 2, sym_line_comment, sym_block_comment, - [76690] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [78779] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5556), 1, - anon_sym_STAR_SLASH, - ACTIONS(5558), 1, - sym__outer_block_doc_comment_marker, - ACTIONS(5560), 1, - sym__inner_block_doc_comment_marker, - ACTIONS(5562), 1, - sym__block_comment_content, - STATE(3265), 1, - sym__block_doc_comment_marker, - STATE(2483), 2, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3442), 1, + anon_sym_SQUOTE, + STATE(3482), 1, + sym_block, + STATE(3635), 1, + sym_label, + STATE(2552), 2, sym_line_comment, sym_block_comment, - [76716] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [78802] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(400), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, + ACTIONS(3442), 1, anon_sym_SQUOTE, - ACTIONS(4989), 1, - anon_sym_PLUS, - STATE(1689), 1, + STATE(316), 1, sym_block, - STATE(3591), 1, + STATE(3543), 1, sym_label, - STATE(2484), 2, + STATE(2553), 2, sym_line_comment, sym_block_comment, - [76742] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [78825] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4852), 1, - anon_sym_PIPE, - ACTIONS(5564), 1, + ACTIONS(5057), 1, + anon_sym_PLUS, + ACTIONS(5721), 1, anon_sym_SEMI, - ACTIONS(5566), 1, - anon_sym_COLON, - ACTIONS(5568), 1, + ACTIONS(5723), 1, anon_sym_EQ, - ACTIONS(5570), 1, + ACTIONS(5725), 1, anon_sym_else, - STATE(2485), 2, + STATE(2554), 2, sym_line_comment, sym_block_comment, - [76768] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [78848] = 7, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(4997), 1, - anon_sym_LBRACE, - ACTIONS(5572), 1, - anon_sym_SEMI, - STATE(1431), 1, - sym_block, - STATE(3589), 1, - sym_label, - STATE(2486), 2, - sym_line_comment, - sym_block_comment, - [76794] = 6, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3299), 1, + ACTIONS(5057), 1, anon_sym_PLUS, - ACTIONS(4453), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(5423), 2, + ACTIONS(5727), 1, anon_sym_RPAREN, + ACTIONS(5729), 1, anon_sym_COMMA, - STATE(2487), 2, + STATE(2844), 1, + aux_sym_ordered_field_declaration_list_repeat1, + STATE(2555), 2, sym_line_comment, sym_block_comment, - [76816] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [78871] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5506), 1, - anon_sym_as, - ACTIONS(5574), 1, - anon_sym_COLON_COLON, - STATE(2488), 2, + ACTIONS(4957), 1, + anon_sym_LBRACE, + ACTIONS(4989), 1, + anon_sym_where, + STATE(1301), 1, + sym_declaration_list, + STATE(3122), 1, + sym_where_clause, + STATE(2556), 2, sym_line_comment, sym_block_comment, - ACTIONS(5502), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [76838] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [78894] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(5576), 1, - anon_sym_move, - STATE(1454), 1, - sym_block, - STATE(3539), 1, - sym_label, - STATE(2489), 2, + ACTIONS(4989), 1, + anon_sym_where, + ACTIONS(5057), 1, + anon_sym_PLUS, + ACTIONS(5731), 1, + anon_sym_SEMI, + STATE(3675), 1, + sym_where_clause, + STATE(2557), 2, sym_line_comment, sym_block_comment, - [76864] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [78917] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(4979), 1, + ACTIONS(4989), 1, + anon_sym_where, + ACTIONS(5047), 1, anon_sym_LBRACE, - ACTIONS(5578), 1, - anon_sym_SEMI, - STATE(519), 1, - sym_block, - STATE(3586), 1, - sym_label, - STATE(2490), 2, + STATE(598), 1, + sym_declaration_list, + STATE(3345), 1, + sym_where_clause, + STATE(2558), 2, sym_line_comment, sym_block_comment, - [76890] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [78940] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3243), 1, - anon_sym_LPAREN, - ACTIONS(4449), 1, + ACTIONS(4527), 1, anon_sym_LT2, - ACTIONS(4451), 1, + ACTIONS(5717), 1, anon_sym_COLON_COLON, - STATE(1049), 1, - sym_parameters, - STATE(1931), 1, + ACTIONS(5733), 1, + anon_sym_for, + STATE(1967), 1, sym_type_arguments, - STATE(2491), 2, + STATE(2559), 2, sym_line_comment, sym_block_comment, - [76916] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [78963] = 4, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(4979), 1, - anon_sym_LBRACE, - ACTIONS(5580), 1, - anon_sym_SEMI, - STATE(574), 1, - sym_block, - STATE(3586), 1, - sym_label, - STATE(2492), 2, - sym_line_comment, - sym_block_comment, - [76942] = 4, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2493), 2, + STATE(2560), 2, sym_line_comment, sym_block_comment, - ACTIONS(5582), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [76960] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4363), 4, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, + anon_sym_SQUOTE, + [78980] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4463), 1, - anon_sym_DOT_DOT, - ACTIONS(5155), 1, - anon_sym_COLON_COLON, - ACTIONS(4465), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2494), 2, + ACTIONS(1273), 1, + anon_sym_LBRACE, + ACTIONS(3442), 1, + anon_sym_SQUOTE, + STATE(471), 1, + sym_block, + STATE(3687), 1, + sym_label, + STATE(2561), 2, sym_line_comment, sym_block_comment, - [76981] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [79003] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, + ACTIONS(1273), 1, anon_sym_LBRACE, - ACTIONS(3344), 1, + ACTIONS(3442), 1, anon_sym_SQUOTE, - STATE(1195), 1, + STATE(465), 1, sym_block, - STATE(3539), 1, + STATE(3687), 1, sym_label, - STATE(2495), 2, + STATE(2562), 2, sym_line_comment, sym_block_comment, - [77004] = 6, - ACTIONS(101), 1, + [79026] = 7, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4989), 1, + anon_sym_where, + ACTIONS(5047), 1, + anon_sym_LBRACE, + STATE(569), 1, + sym_declaration_list, + STATE(3359), 1, + sym_where_clause, + STATE(2563), 2, + sym_line_comment, + sym_block_comment, + [79049] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5584), 1, + ACTIONS(5735), 1, anon_sym_DQUOTE, - STATE(2510), 1, + STATE(2579), 1, aux_sym_string_literal_repeat1, - ACTIONS(5586), 2, + ACTIONS(5737), 2, sym_string_content, sym_escape_sequence, - STATE(2496), 2, + STATE(2564), 2, sym_line_comment, sym_block_comment, - [77025] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [79070] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5175), 1, - anon_sym_LPAREN, - ACTIONS(5177), 1, - anon_sym_LBRACK, - ACTIONS(5181), 1, + ACTIONS(3442), 1, + anon_sym_SQUOTE, + ACTIONS(5055), 1, anon_sym_LBRACE, - STATE(1196), 1, - sym_delim_token_tree, - STATE(2497), 2, + STATE(2956), 1, + sym_block, + STATE(3686), 1, + sym_label, + STATE(2565), 2, sym_line_comment, sym_block_comment, - [77048] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [79093] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3251), 1, - anon_sym_LT2, - ACTIONS(5103), 1, - sym_super, - ACTIONS(5588), 1, - sym_identifier, - STATE(1565), 1, - sym_type_arguments, - STATE(2498), 2, + ACTIONS(4989), 1, + anon_sym_where, + ACTIONS(5057), 1, + anon_sym_PLUS, + ACTIONS(5739), 1, + anon_sym_SEMI, + STATE(3449), 1, + sym_where_clause, + STATE(2566), 2, sym_line_comment, sym_block_comment, - [77071] = 7, - ACTIONS(101), 1, + [79116] = 7, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(405), 1, + anon_sym_LBRACE, + ACTIONS(3442), 1, + anon_sym_SQUOTE, + STATE(1766), 1, + sym_block, + STATE(3688), 1, + sym_label, + STATE(2567), 2, + sym_line_comment, + sym_block_comment, + [79139] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3251), 1, + ACTIONS(4527), 1, anon_sym_LT2, - ACTIONS(5103), 1, - sym_super, - ACTIONS(5588), 1, - sym_identifier, - STATE(1570), 1, + ACTIONS(5061), 1, + anon_sym_COLON, + STATE(1968), 1, sym_type_arguments, - STATE(2499), 2, + STATE(2678), 1, + sym_trait_bounds, + STATE(2568), 2, sym_line_comment, sym_block_comment, - [77094] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [79162] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5452), 1, - anon_sym_PIPE, - ACTIONS(5590), 1, - anon_sym_RPAREN, - ACTIONS(5592), 1, - anon_sym_COMMA, - STATE(2989), 1, - aux_sym_tuple_pattern_repeat1, - STATE(2500), 2, + ACTIONS(4957), 1, + anon_sym_LBRACE, + ACTIONS(4989), 1, + anon_sym_where, + STATE(1183), 1, + sym_declaration_list, + STATE(3126), 1, + sym_where_clause, + STATE(2569), 2, sym_line_comment, sym_block_comment, - [77117] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [79185] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5452), 1, - anon_sym_PIPE, - ACTIONS(5594), 1, - anon_sym_RBRACK, - ACTIONS(5596), 1, - anon_sym_COMMA, - STATE(3007), 1, - aux_sym_slice_pattern_repeat1, - STATE(2501), 2, + ACTIONS(4989), 1, + anon_sym_where, + ACTIONS(5057), 1, + anon_sym_PLUS, + ACTIONS(5741), 1, + anon_sym_SEMI, + STATE(3680), 1, + sym_where_clause, + STATE(2570), 2, sym_line_comment, sym_block_comment, - [77140] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [79208] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, + ACTIONS(4029), 1, anon_sym_LT2, - ACTIONS(5598), 1, + ACTIONS(4181), 1, anon_sym_COLON_COLON, - ACTIONS(5600), 1, - anon_sym_for, - STATE(1931), 1, + ACTIONS(4898), 1, + anon_sym_BANG, + STATE(1645), 1, sym_type_arguments, - STATE(2502), 2, + STATE(2571), 2, sym_line_comment, sym_block_comment, - [77163] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [79231] = 7, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(5602), 1, - sym_identifier, - ACTIONS(5604), 1, - sym_super, - STATE(3195), 1, - sym_type_arguments, - STATE(2503), 2, - sym_line_comment, - sym_block_comment, - [77186] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, + ACTIONS(1273), 1, + anon_sym_LBRACE, + ACTIONS(3442), 1, anon_sym_SQUOTE, - STATE(399), 1, + STATE(468), 1, sym_block, - STATE(3510), 1, + STATE(3687), 1, sym_label, - STATE(2504), 2, + STATE(2572), 2, sym_line_comment, sym_block_comment, - [77209] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [79254] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, + ACTIONS(4527), 1, anon_sym_LT2, - ACTIONS(5602), 1, + STATE(3219), 1, + sym_type_arguments, + ACTIONS(5296), 2, sym_identifier, - ACTIONS(5604), 1, sym_super, - STATE(3217), 1, - sym_type_arguments, - STATE(2505), 2, + STATE(2573), 2, sym_line_comment, sym_block_comment, - [77232] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [79275] = 6, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5606), 1, - anon_sym_RPAREN, - ACTIONS(5608), 1, - anon_sym_COMMA, - STATE(2742), 1, - aux_sym_tuple_type_repeat1, - STATE(2506), 2, - sym_line_comment, - sym_block_comment, - [77255] = 7, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, + ACTIONS(4527), 1, anon_sym_LT2, - ACTIONS(4971), 1, - anon_sym_COLON, - STATE(1933), 1, + STATE(3228), 1, sym_type_arguments, - STATE(2604), 1, - sym_trait_bounds, - STATE(2507), 2, + ACTIONS(5296), 2, + sym_identifier, + sym_super, + STATE(2574), 2, sym_line_comment, sym_block_comment, - [77278] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [79296] = 7, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4453), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(5610), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2508), 2, - sym_line_comment, - sym_block_comment, - [77297] = 7, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3243), 1, - anon_sym_LPAREN, - ACTIONS(4449), 1, + ACTIONS(4527), 1, anon_sym_LT2, - STATE(1067), 1, - sym_parameters, - STATE(1933), 1, + ACTIONS(5717), 1, + anon_sym_COLON_COLON, + ACTIONS(5743), 1, + anon_sym_for, + STATE(1967), 1, sym_type_arguments, - STATE(2509), 2, + STATE(2575), 2, sym_line_comment, sym_block_comment, - [77320] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [79319] = 7, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(5612), 1, - anon_sym_DQUOTE, - ACTIONS(5614), 2, - sym_string_content, - sym_escape_sequence, - STATE(2510), 3, - sym_line_comment, - sym_block_comment, - aux_sym_string_literal_repeat1, - [77339] = 7, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(5235), 1, + ACTIONS(5745), 1, + anon_sym_LPAREN, + ACTIONS(5747), 1, + anon_sym_LBRACK, + ACTIONS(5749), 1, anon_sym_LBRACE, - STATE(1234), 1, - sym_enum_variant_list, - STATE(3090), 1, - sym_where_clause, - STATE(2511), 2, + STATE(1988), 1, + sym_delim_token_tree, + STATE(2576), 2, sym_line_comment, sym_block_comment, - [77362] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [79342] = 7, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(5460), 1, - anon_sym_GT, - ACTIONS(5462), 1, - anon_sym_COMMA, - ACTIONS(5617), 1, - anon_sym_EQ, - STATE(2773), 1, - aux_sym_type_parameters_repeat1, - STATE(2512), 2, - sym_line_comment, - sym_block_comment, - [77385] = 7, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4915), 1, + ACTIONS(1273), 1, anon_sym_LBRACE, - STATE(1258), 1, - sym_declaration_list, - STATE(3116), 1, - sym_where_clause, - STATE(2513), 2, + ACTIONS(3442), 1, + anon_sym_SQUOTE, + STATE(452), 1, + sym_block, + STATE(3687), 1, + sym_label, + STATE(2577), 2, sym_line_comment, sym_block_comment, - [77408] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [79365] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4870), 1, + ACTIONS(1273), 1, anon_sym_LBRACE, - ACTIONS(4874), 1, - anon_sym_where, - STATE(685), 1, - sym_field_declaration_list, - STATE(3190), 1, - sym_where_clause, - STATE(2514), 2, + ACTIONS(3442), 1, + anon_sym_SQUOTE, + STATE(459), 1, + sym_block, + STATE(3687), 1, + sym_label, + STATE(2578), 2, sym_line_comment, sym_block_comment, - [77431] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [79388] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4891), 1, - anon_sym_LBRACE, - STATE(1268), 1, - sym_field_declaration_list, - STATE(3119), 1, - sym_where_clause, - STATE(2515), 2, + ACTIONS(5751), 1, + anon_sym_DQUOTE, + STATE(2732), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5737), 2, + sym_string_content, + sym_escape_sequence, + STATE(2579), 2, sym_line_comment, sym_block_comment, - [77454] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [79409] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5619), 1, - anon_sym_COLON, - STATE(2516), 2, + ACTIONS(5753), 1, + anon_sym_COLON_COLON, + STATE(2580), 2, sym_line_comment, sym_block_comment, - ACTIONS(4852), 3, - anon_sym_RPAREN, + ACTIONS(4782), 3, + anon_sym_EQ_GT, anon_sym_PIPE, - anon_sym_COMMA, - [77473] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_if, + [79428] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, - anon_sym_LPAREN, - ACTIONS(4872), 1, - anon_sym_LT, - STATE(2196), 1, - sym_parameters, - STATE(3163), 1, - sym_type_parameters, - STATE(2517), 2, + ACTIONS(5755), 1, + anon_sym_COLON_COLON, + STATE(2581), 2, sym_line_comment, sym_block_comment, - [77496] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4782), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [79447] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - STATE(393), 1, - sym_block, - STATE(3510), 1, - sym_label, - STATE(2518), 2, + ACTIONS(5757), 1, + anon_sym_COLON_COLON, + STATE(2582), 2, sym_line_comment, sym_block_comment, - [77519] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4782), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [79466] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - STATE(1287), 1, - sym_block, - STATE(3539), 1, - sym_label, - STATE(2519), 2, + ACTIONS(5759), 1, + anon_sym_COLON_COLON, + STATE(2583), 2, sym_line_comment, sym_block_comment, - [77542] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4802), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [79485] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5621), 1, - anon_sym_DQUOTE, - STATE(2510), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5586), 2, - sym_string_content, - sym_escape_sequence, - STATE(2520), 2, + ACTIONS(4989), 1, + anon_sym_where, + ACTIONS(5415), 1, + anon_sym_LBRACE, + STATE(555), 1, + sym_enum_variant_list, + STATE(3383), 1, + sym_where_clause, + STATE(2584), 2, sym_line_comment, sym_block_comment, - [77563] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [79508] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5623), 1, + ACTIONS(5745), 1, anon_sym_LPAREN, - ACTIONS(5625), 1, + ACTIONS(5747), 1, anon_sym_LBRACK, - ACTIONS(5627), 1, + ACTIONS(5749), 1, anon_sym_LBRACE, - STATE(372), 1, + STATE(2002), 1, sym_delim_token_tree, - STATE(2521), 2, + STATE(2585), 2, sym_line_comment, sym_block_comment, - [77586] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [79531] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3251), 1, + ACTIONS(4029), 1, anon_sym_LT2, - ACTIONS(5103), 1, - sym_super, - ACTIONS(5629), 1, + ACTIONS(5761), 1, sym_identifier, - STATE(1419), 1, + ACTIONS(5763), 1, + sym_super, + STATE(1596), 1, sym_type_arguments, - STATE(2522), 2, + STATE(2586), 2, sym_line_comment, sym_block_comment, - [77609] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [79554] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, + ACTIONS(4957), 1, + anon_sym_LBRACE, ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5631), 1, - anon_sym_SEMI, - STATE(3400), 1, + anon_sym_where, + STATE(1140), 1, + sym_declaration_list, + STATE(3112), 1, sym_where_clause, - STATE(2523), 2, + STATE(2587), 2, sym_line_comment, sym_block_comment, - [77632] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [79577] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5452), 1, - anon_sym_PIPE, - ACTIONS(5633), 1, - anon_sym_RPAREN, - ACTIONS(5635), 1, - anon_sym_COMMA, - STATE(2857), 1, - aux_sym_slice_pattern_repeat1, - STATE(2524), 2, + ACTIONS(4029), 1, + anon_sym_LT2, + ACTIONS(5761), 1, + sym_identifier, + ACTIONS(5763), 1, + sym_super, + STATE(1589), 1, + sym_type_arguments, + STATE(2588), 2, sym_line_comment, sym_block_comment, - [77655] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [79600] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5452), 1, + ACTIONS(5753), 1, + anon_sym_COLON_COLON, + STATE(2589), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4768), 3, + anon_sym_EQ_GT, anon_sym_PIPE, - ACTIONS(5637), 1, - anon_sym_RPAREN, - ACTIONS(5639), 1, - anon_sym_COMMA, - STATE(2864), 1, - aux_sym_slice_pattern_repeat1, - STATE(2525), 2, + anon_sym_if, + [79619] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5755), 1, + anon_sym_COLON_COLON, + STATE(2590), 2, sym_line_comment, sym_block_comment, - [77678] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4768), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [79638] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5438), 1, - anon_sym_RPAREN, - ACTIONS(5440), 1, - anon_sym_COMMA, - STATE(2872), 1, - aux_sym_parameters_repeat1, - STATE(2526), 2, + ACTIONS(5757), 1, + anon_sym_COLON_COLON, + STATE(2591), 2, sym_line_comment, sym_block_comment, - [77701] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4768), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [79657] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - STATE(3217), 1, - sym_type_arguments, - ACTIONS(5604), 2, - sym_identifier, - sym_super, - STATE(2527), 2, + ACTIONS(5759), 1, + anon_sym_COLON_COLON, + STATE(2592), 2, sym_line_comment, sym_block_comment, - [77722] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4796), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [79676] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, + ACTIONS(4527), 1, anon_sym_LT2, - STATE(3195), 1, + STATE(3219), 1, sym_type_arguments, - ACTIONS(5641), 2, + ACTIONS(5765), 2, sym_identifier, sym_super, - STATE(2528), 2, + STATE(2593), 2, sym_line_comment, sym_block_comment, - [77743] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [79697] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, + ACTIONS(4527), 1, anon_sym_LT2, - STATE(3217), 1, - sym_type_arguments, - ACTIONS(5641), 2, - sym_identifier, + ACTIONS(5296), 1, sym_super, - STATE(2529), 2, + ACTIONS(5767), 1, + sym_identifier, + STATE(3228), 1, + sym_type_arguments, + STATE(2594), 2, sym_line_comment, sym_block_comment, - [77764] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [79720] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, + ACTIONS(4989), 1, anon_sym_where, - ACTIONS(4878), 1, - anon_sym_LBRACE, - STATE(582), 1, - sym_declaration_list, - STATE(3230), 1, + ACTIONS(5057), 1, + anon_sym_PLUS, + ACTIONS(5769), 1, + anon_sym_SEMI, + STATE(3582), 1, sym_where_clause, - STATE(2530), 2, + STATE(2595), 2, sym_line_comment, sym_block_comment, - [77787] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [79743] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_GT, - ACTIONS(5371), 1, - anon_sym_COMMA, - ACTIONS(5617), 1, - anon_sym_EQ, - STATE(2873), 1, - aux_sym_type_parameters_repeat1, - STATE(2531), 2, - sym_line_comment, - sym_block_comment, - [77810] = 7, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5432), 1, - anon_sym_COLON, - ACTIONS(5434), 1, - anon_sym_PIPE, - ACTIONS(5436), 1, - anon_sym_COMMA, - STATE(3001), 1, - aux_sym_closure_parameters_repeat1, - STATE(2532), 2, + ACTIONS(3442), 1, + anon_sym_SQUOTE, + STATE(387), 1, + sym_block, + STATE(3543), 1, + sym_label, + STATE(2596), 2, sym_line_comment, sym_block_comment, - [77833] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [79766] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2533), 2, + ACTIONS(4527), 1, + anon_sym_LT2, + ACTIONS(5296), 1, + sym_super, + ACTIONS(5767), 1, + sym_identifier, + STATE(3219), 1, + sym_type_arguments, + STATE(2597), 2, sym_line_comment, sym_block_comment, - ACTIONS(5643), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - [77850] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [79789] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4654), 1, - anon_sym_GT, - ACTIONS(5484), 1, + ACTIONS(5057), 1, + anon_sym_PLUS, + ACTIONS(5771), 1, + anon_sym_RPAREN, + ACTIONS(5773), 1, anon_sym_COMMA, - ACTIONS(5617), 1, - anon_sym_EQ, - STATE(2891), 1, - aux_sym_type_parameters_repeat1, - STATE(2534), 2, + STATE(2989), 1, + aux_sym_tuple_type_repeat1, + STATE(2598), 2, sym_line_comment, sym_block_comment, - [77873] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [79812] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, + ACTIONS(4527), 1, anon_sym_LT2, - STATE(3195), 1, + STATE(3228), 1, sym_type_arguments, - ACTIONS(5103), 2, + ACTIONS(5765), 2, sym_identifier, sym_super, - STATE(2535), 2, + STATE(2599), 2, sym_line_comment, sym_block_comment, - [77894] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [79833] = 7, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(5281), 1, - anon_sym_LBRACE, - STATE(745), 1, - sym_enum_variant_list, - STATE(3159), 1, - sym_where_clause, - STATE(2536), 2, - sym_line_comment, - sym_block_comment, - [77917] = 6, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, + ACTIONS(4023), 1, + anon_sym_LPAREN, + ACTIONS(4527), 1, anon_sym_LT2, - STATE(3217), 1, + STATE(1621), 1, + sym_parameters, + STATE(1968), 1, sym_type_arguments, - ACTIONS(5103), 2, - sym_identifier, - sym_super, - STATE(2537), 2, + STATE(2600), 2, sym_line_comment, sym_block_comment, - [77938] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [79856] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, + ACTIONS(5057), 1, anon_sym_PLUS, - ACTIONS(5645), 1, + ACTIONS(5775), 1, anon_sym_SEMI, - ACTIONS(5647), 1, + ACTIONS(5777), 1, anon_sym_EQ, - ACTIONS(5649), 1, + ACTIONS(5779), 1, anon_sym_else, - STATE(2538), 2, + STATE(2601), 2, sym_line_comment, sym_block_comment, - [77961] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [79879] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(5604), 1, - sym_super, - ACTIONS(5651), 1, - sym_identifier, - STATE(3195), 1, - sym_type_arguments, - STATE(2539), 2, + ACTIONS(4985), 1, + anon_sym_LBRACE, + ACTIONS(4989), 1, + anon_sym_where, + STATE(544), 1, + sym_field_declaration_list, + STATE(3391), 1, + sym_where_clause, + STATE(2602), 2, sym_line_comment, sym_block_comment, - [77984] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [79902] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4915), 1, + ACTIONS(1273), 1, anon_sym_LBRACE, - STATE(1344), 1, - sym_declaration_list, - STATE(3215), 1, - sym_where_clause, - STATE(2540), 2, + ACTIONS(3442), 1, + anon_sym_SQUOTE, + STATE(475), 1, + sym_block, + STATE(3687), 1, + sym_label, + STATE(2603), 2, sym_line_comment, sym_block_comment, - [78007] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [79925] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5653), 1, - anon_sym_SEMI, - STATE(3381), 1, - sym_where_clause, - STATE(2541), 2, + ACTIONS(4521), 1, + anon_sym_LPAREN, + ACTIONS(4987), 1, + anon_sym_LT, + STATE(2222), 1, + sym_parameters, + STATE(3098), 1, + sym_type_parameters, + STATE(2604), 2, sym_line_comment, sym_block_comment, - [78030] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [79948] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4915), 1, - anon_sym_LBRACE, - STATE(1356), 1, - sym_declaration_list, - STATE(3219), 1, - sym_where_clause, - STATE(2542), 2, + ACTIONS(4527), 1, + anon_sym_LT2, + ACTIONS(5717), 1, + anon_sym_COLON_COLON, + ACTIONS(5781), 1, + anon_sym_for, + STATE(1967), 1, + sym_type_arguments, + STATE(2605), 2, sym_line_comment, sym_block_comment, - [78053] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [79971] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(5235), 1, - anon_sym_LBRACE, - STATE(1361), 1, - sym_enum_variant_list, - STATE(3229), 1, - sym_where_clause, - STATE(2543), 2, + ACTIONS(5057), 1, + anon_sym_PLUS, + ACTIONS(5707), 1, + anon_sym_RPAREN, + ACTIONS(5709), 1, + anon_sym_COMMA, + STATE(2929), 1, + aux_sym_parameters_repeat1, + STATE(2606), 2, sym_line_comment, sym_block_comment, - [78076] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [79994] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4878), 1, - anon_sym_LBRACE, - STATE(740), 1, - sym_declaration_list, - STATE(3099), 1, - sym_where_clause, - STATE(2544), 2, + ACTIONS(3442), 1, + anon_sym_SQUOTE, + STATE(331), 1, + sym_block, + STATE(3543), 1, + sym_label, + STATE(2607), 2, sym_line_comment, sym_block_comment, - [78099] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [80017] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4891), 1, + ACTIONS(5783), 1, + anon_sym_LPAREN, + ACTIONS(5785), 1, + anon_sym_LBRACK, + ACTIONS(5787), 1, anon_sym_LBRACE, - STATE(1371), 1, - sym_field_declaration_list, - STATE(3233), 1, - sym_where_clause, - STATE(2545), 2, + STATE(2491), 1, + sym_token_tree, + STATE(2608), 2, sym_line_comment, sym_block_comment, - [78122] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [80040] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2546), 2, + ACTIONS(1471), 1, + anon_sym_RPAREN, + ACTIONS(5057), 1, + anon_sym_PLUS, + ACTIONS(5644), 1, + anon_sym_COMMA, + STATE(3058), 1, + aux_sym_parameters_repeat1, + STATE(2609), 2, sym_line_comment, sym_block_comment, - ACTIONS(5397), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SQUOTE, - [78139] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [80063] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - STATE(1376), 1, - sym_block, - STATE(3539), 1, - sym_label, - STATE(2547), 2, + ACTIONS(5057), 1, + anon_sym_PLUS, + ACTIONS(5530), 1, + anon_sym_RPAREN, + ACTIONS(5532), 1, + anon_sym_COMMA, + STATE(2958), 1, + aux_sym_parameters_repeat1, + STATE(2610), 2, sym_line_comment, sym_block_comment, - [78162] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [80086] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3442), 1, anon_sym_SQUOTE, - STATE(244), 1, - sym_block, - STATE(3510), 1, + STATE(3635), 1, sym_label, - STATE(2548), 2, + STATE(3665), 1, + sym_block, + STATE(2611), 2, sym_line_comment, sym_block_comment, - [78185] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [80109] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5655), 1, - anon_sym_COLON, - STATE(2549), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4852), 3, - anon_sym_RPAREN, + ACTIONS(5577), 1, anon_sym_PIPE, + ACTIONS(5789), 1, + anon_sym_RPAREN, + ACTIONS(5791), 1, anon_sym_COMMA, - [78204] = 5, + STATE(2935), 1, + aux_sym_slice_pattern_repeat1, + STATE(2612), 2, + sym_line_comment, + sym_block_comment, + [80132] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5657), 1, + ACTIONS(5793), 1, aux_sym_token_repetition_pattern_token1, - STATE(2550), 2, + STATE(2613), 2, sym_line_comment, sym_block_comment, - ACTIONS(5659), 3, + ACTIONS(5795), 3, anon_sym_PLUS, anon_sym_STAR, anon_sym_QMARK, - [78223] = 5, - ACTIONS(101), 1, + [80151] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5057), 1, + anon_sym_PLUS, + STATE(2614), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5797), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_PIPE, + [80170] = 4, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2615), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5278), 4, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + [80187] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5661), 1, - anon_sym_in, - STATE(2551), 2, + ACTIONS(4527), 1, + anon_sym_LT2, + ACTIONS(5717), 1, + anon_sym_COLON_COLON, + ACTIONS(5799), 1, + anon_sym_for, + STATE(1967), 1, + sym_type_arguments, + STATE(2616), 2, sym_line_comment, sym_block_comment, - ACTIONS(5663), 3, - sym_self, - sym_super, - sym_crate, - [78242] = 4, - ACTIONS(101), 1, + [80210] = 7, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1273), 1, + anon_sym_LBRACE, + ACTIONS(3442), 1, + anon_sym_SQUOTE, + STATE(480), 1, + sym_block, + STATE(3687), 1, + sym_label, + STATE(2617), 2, + sym_line_comment, + sym_block_comment, + [80233] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2552), 2, + ACTIONS(5577), 1, + anon_sym_PIPE, + STATE(2618), 2, sym_line_comment, sym_block_comment, - ACTIONS(759), 4, - anon_sym_SEMI, + ACTIONS(5801), 3, anon_sym_RPAREN, anon_sym_RBRACK, - anon_sym_RBRACE, - [78259] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_COMMA, + [80252] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, - anon_sym_LPAREN, - ACTIONS(4872), 1, - anon_sym_LT, - STATE(2191), 1, - sym_parameters, - STATE(3228), 1, - sym_type_parameters, - STATE(2553), 2, + ACTIONS(5803), 1, + anon_sym_COMMA, + ACTIONS(5801), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + STATE(2619), 3, sym_line_comment, sym_block_comment, - [78282] = 7, - ACTIONS(101), 1, + aux_sym_slice_pattern_repeat1, + [80271] = 4, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2620), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3293), 4, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_GT, + [80288] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1466), 1, + ACTIONS(1485), 1, anon_sym_RPAREN, - ACTIONS(4989), 1, + ACTIONS(5057), 1, anon_sym_PLUS, - ACTIONS(5534), 1, + ACTIONS(5652), 1, anon_sym_COMMA, - STATE(2961), 1, + STATE(2939), 1, aux_sym_parameters_repeat1, - STATE(2554), 2, + STATE(2621), 2, sym_line_comment, sym_block_comment, - [78305] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [80311] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1470), 1, + ACTIONS(5577), 1, + anon_sym_PIPE, + ACTIONS(5646), 1, anon_sym_RPAREN, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5524), 1, + ACTIONS(5648), 1, anon_sym_COMMA, - STATE(2846), 1, - aux_sym_parameters_repeat1, - STATE(2555), 2, + STATE(2947), 1, + aux_sym_slice_pattern_repeat1, + STATE(2622), 2, sym_line_comment, sym_block_comment, - [78328] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [80334] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(5598), 1, - anon_sym_COLON_COLON, - ACTIONS(5665), 1, - anon_sym_for, - STATE(1931), 1, - sym_type_arguments, - STATE(2556), 2, + ACTIONS(5057), 1, + anon_sym_PLUS, + STATE(2623), 2, sym_line_comment, sym_block_comment, - [78351] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5806), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_PIPE, + [80353] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5667), 1, - anon_sym_SEMI, - ACTIONS(5669), 1, - anon_sym_EQ, - ACTIONS(5671), 1, - anon_sym_else, - STATE(2557), 2, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3442), 1, + anon_sym_SQUOTE, + STATE(1477), 1, + sym_block, + STATE(3635), 1, + sym_label, + STATE(2624), 2, sym_line_comment, sym_block_comment, - [78374] = 7, - ACTIONS(101), 1, + [80376] = 6, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5808), 1, + anon_sym_DQUOTE, + STATE(2725), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5737), 2, + sym_string_content, + sym_escape_sequence, + STATE(2625), 2, + sym_line_comment, + sym_block_comment, + [80397] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5673), 1, - anon_sym_SEMI, - STATE(3479), 1, + anon_sym_where, + ACTIONS(5033), 1, + anon_sym_LBRACE, + STATE(1180), 1, + sym_field_declaration_list, + STATE(3161), 1, sym_where_clause, - STATE(2558), 2, + STATE(2626), 2, sym_line_comment, sym_block_comment, - [78397] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [80420] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, + ACTIONS(4989), 1, anon_sym_where, - ACTIONS(4915), 1, + ACTIONS(5458), 1, anon_sym_LBRACE, - STATE(1426), 1, - sym_declaration_list, - STATE(3271), 1, + STATE(1205), 1, + sym_enum_variant_list, + STATE(3167), 1, sym_where_clause, - STATE(2559), 2, + STATE(2627), 2, sym_line_comment, sym_block_comment, - [78420] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [80443] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5675), 1, - anon_sym_SEMI, - STATE(3500), 1, - sym_where_clause, - STATE(2560), 2, + ACTIONS(405), 1, + anon_sym_LBRACE, + ACTIONS(3442), 1, + anon_sym_SQUOTE, + STATE(1760), 1, + sym_block, + STATE(3688), 1, + sym_label, + STATE(2628), 2, sym_line_comment, sym_block_comment, - [78443] = 7, - ACTIONS(101), 1, + [80466] = 7, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3442), 1, + anon_sym_SQUOTE, + STATE(3635), 1, + sym_label, + STATE(3663), 1, + sym_block, + STATE(2629), 2, + sym_line_comment, + sym_block_comment, + [80489] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4915), 1, + ACTIONS(405), 1, anon_sym_LBRACE, - STATE(1441), 1, - sym_declaration_list, - STATE(3274), 1, - sym_where_clause, - STATE(2561), 2, + ACTIONS(3442), 1, + anon_sym_SQUOTE, + STATE(1794), 1, + sym_block, + STATE(3688), 1, + sym_label, + STATE(2630), 2, + sym_line_comment, + sym_block_comment, + [80512] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4527), 1, + anon_sym_LT2, + ACTIONS(4810), 1, + anon_sym_for, + ACTIONS(5717), 1, + anon_sym_COLON_COLON, + STATE(1967), 1, + sym_type_arguments, + STATE(2631), 2, sym_line_comment, sym_block_comment, - [78466] = 7, - ACTIONS(101), 1, + [80535] = 6, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5810), 1, + anon_sym_DQUOTE, + STATE(2653), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5737), 2, + sym_string_content, + sym_escape_sequence, + STATE(2632), 2, + sym_line_comment, + sym_block_comment, + [80556] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4878), 1, - anon_sym_LBRACE, - STATE(679), 1, - sym_declaration_list, - STATE(3210), 1, - sym_where_clause, - STATE(2562), 2, + ACTIONS(1273), 1, + anon_sym_LBRACE, + ACTIONS(3442), 1, + anon_sym_SQUOTE, + STATE(483), 1, + sym_block, + STATE(3687), 1, + sym_label, + STATE(2633), 2, sym_line_comment, sym_block_comment, - [78489] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [80579] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5677), 1, - anon_sym_DQUOTE, - STATE(2520), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5586), 2, - sym_string_content, - sym_escape_sequence, - STATE(2563), 2, + ACTIONS(5812), 1, + anon_sym_COLON, + STATE(2634), 2, sym_line_comment, sym_block_comment, - [78510] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4904), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_PIPE, + [80598] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, + ACTIONS(5061), 1, anon_sym_COLON, - STATE(2888), 1, + STATE(2824), 1, sym_trait_bounds, - ACTIONS(5679), 2, - anon_sym_GT, + ACTIONS(5814), 2, anon_sym_COMMA, - STATE(2564), 2, + anon_sym_GT, + STATE(2635), 2, sym_line_comment, sym_block_comment, - [78531] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [80619] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5241), 1, + ACTIONS(1489), 1, + anon_sym_RPAREN, + ACTIONS(5057), 1, anon_sym_PLUS, - STATE(2565), 2, + ACTIONS(5506), 1, + anon_sym_COMMA, + STATE(2833), 1, + aux_sym_parameters_repeat1, + STATE(2636), 2, sym_line_comment, sym_block_comment, - ACTIONS(5681), 3, - anon_sym_COLON, - anon_sym_GT, - anon_sym_COMMA, - [78550] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [80642] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4870), 1, + ACTIONS(4957), 1, anon_sym_LBRACE, - ACTIONS(4874), 1, + ACTIONS(4989), 1, anon_sym_where, - STATE(751), 1, - sym_field_declaration_list, - STATE(3286), 1, + STATE(1220), 1, + sym_declaration_list, + STATE(3183), 1, sym_where_clause, - STATE(2566), 2, + STATE(2637), 2, sym_line_comment, sym_block_comment, - [78573] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [80665] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, + ACTIONS(405), 1, + anon_sym_LBRACE, + ACTIONS(3442), 1, anon_sym_SQUOTE, - STATE(382), 1, + STATE(1810), 1, sym_block, - STATE(3510), 1, + STATE(3688), 1, sym_label, - STATE(2567), 2, + STATE(2638), 2, sym_line_comment, sym_block_comment, - [78596] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [80688] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, - anon_sym_LPAREN, - ACTIONS(4872), 1, - anon_sym_LT, - STATE(2217), 1, - sym_parameters, - STATE(3083), 1, - sym_type_parameters, - STATE(2568), 2, + ACTIONS(5817), 1, + anon_sym_LBRACE, + ACTIONS(5819), 1, + anon_sym_for, + ACTIONS(5821), 1, + anon_sym_loop, + ACTIONS(5823), 1, + anon_sym_while, + STATE(2639), 2, sym_line_comment, sym_block_comment, - [78619] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [80711] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5241), 1, - anon_sym_PLUS, - STATE(2569), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5683), 3, + ACTIONS(4531), 2, anon_sym_COLON, - anon_sym_GT, + anon_sym_PIPE, + ACTIONS(5825), 2, + anon_sym_RPAREN, anon_sym_COMMA, - [78638] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5685), 1, - anon_sym_SEMI, - STATE(3598), 1, - sym_where_clause, - STATE(2570), 2, + STATE(2640), 2, sym_line_comment, sym_block_comment, - [78661] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [80730] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4915), 1, + ACTIONS(5827), 1, + anon_sym_LPAREN, + ACTIONS(5829), 1, + anon_sym_LBRACK, + ACTIONS(5831), 1, anon_sym_LBRACE, - STATE(1121), 1, - sym_declaration_list, - STATE(3035), 1, - sym_where_clause, - STATE(2571), 2, + STATE(1037), 1, + sym_delim_token_tree, + STATE(2641), 2, sym_line_comment, sym_block_comment, - [78684] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [80753] = 7, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(5604), 1, - sym_super, - ACTIONS(5651), 1, - sym_identifier, - STATE(3217), 1, - sym_type_arguments, - STATE(2572), 2, - sym_line_comment, - sym_block_comment, - [78707] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, + ACTIONS(405), 1, + anon_sym_LBRACE, + ACTIONS(3442), 1, anon_sym_SQUOTE, - STATE(383), 1, + STATE(1603), 1, sym_block, - STATE(3510), 1, + STATE(3688), 1, sym_label, - STATE(2573), 2, + STATE(2642), 2, sym_line_comment, sym_block_comment, - [78730] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [80776] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, ACTIONS(4989), 1, + anon_sym_where, + ACTIONS(5057), 1, anon_sym_PLUS, - ACTIONS(5687), 1, + ACTIONS(5833), 1, anon_sym_SEMI, - STATE(3413), 1, + STATE(3595), 1, sym_where_clause, - STATE(2574), 2, + STATE(2643), 2, sym_line_comment, sym_block_comment, - [78753] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [80799] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, + ACTIONS(5426), 1, + anon_sym_PLUS, + STATE(2644), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5835), 3, + anon_sym_COMMA, anon_sym_COLON, - STATE(3250), 1, - sym_trait_bounds, - ACTIONS(5373), 2, anon_sym_GT, - anon_sym_COMMA, - STATE(2575), 2, + [80818] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5837), 1, + aux_sym_token_repetition_pattern_token1, + STATE(2645), 2, sym_line_comment, sym_block_comment, - [78774] = 7, - ACTIONS(101), 1, + ACTIONS(5839), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [80837] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5689), 1, - anon_sym_RPAREN, - ACTIONS(5691), 1, - anon_sym_COMMA, - STATE(2946), 1, - aux_sym_tuple_type_repeat1, - STATE(2576), 2, + ACTIONS(5841), 1, + aux_sym_token_repetition_pattern_token1, + STATE(2646), 2, sym_line_comment, sym_block_comment, - [78797] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5843), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [80856] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4878), 1, + ACTIONS(4957), 1, anon_sym_LBRACE, - STATE(514), 1, + ACTIONS(4989), 1, + anon_sym_where, + STATE(1264), 1, sym_declaration_list, - STATE(3221), 1, + STATE(3189), 1, sym_where_clause, - STATE(2577), 2, + STATE(2647), 2, sym_line_comment, sym_block_comment, - [78820] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [80879] = 6, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4443), 1, - anon_sym_LPAREN, - ACTIONS(4449), 1, - anon_sym_LT2, - STATE(1933), 1, - sym_type_arguments, - STATE(1948), 1, - sym_parameters, - STATE(2578), 2, - sym_line_comment, - sym_block_comment, - [78843] = 7, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5693), 1, - anon_sym_RPAREN, - ACTIONS(5695), 1, - anon_sym_COMMA, - STATE(2975), 1, - aux_sym_ordered_field_declaration_list_repeat1, - STATE(2579), 2, + ACTIONS(4541), 1, + anon_sym_DOT_DOT, + ACTIONS(5336), 1, + anon_sym_COLON_COLON, + ACTIONS(4543), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2648), 2, sym_line_comment, sym_block_comment, - [78866] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [80900] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5697), 1, - anon_sym_LPAREN, - ACTIONS(5699), 1, - anon_sym_LBRACK, - ACTIONS(5701), 1, + ACTIONS(4989), 1, + anon_sym_where, + ACTIONS(5047), 1, anon_sym_LBRACE, - STATE(2533), 1, - sym_token_tree, - STATE(2580), 2, + STATE(771), 1, + sym_declaration_list, + STATE(3136), 1, + sym_where_clause, + STATE(2649), 2, sym_line_comment, sym_block_comment, - [78889] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [80923] = 7, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4453), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(5703), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2581), 2, - sym_line_comment, - sym_block_comment, - [78908] = 7, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1210), 1, + ACTIONS(405), 1, anon_sym_LBRACE, - ACTIONS(3344), 1, + ACTIONS(3442), 1, anon_sym_SQUOTE, - STATE(473), 1, + STATE(1748), 1, sym_block, - STATE(3590), 1, + STATE(3688), 1, sym_label, - STATE(2582), 2, + STATE(2650), 2, sym_line_comment, sym_block_comment, - [78931] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [80946] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1210), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(3344), 1, + ACTIONS(3442), 1, anon_sym_SQUOTE, - STATE(466), 1, + STATE(1448), 1, sym_block, - STATE(3590), 1, + STATE(3635), 1, sym_label, - STATE(2583), 2, + STATE(2651), 2, sym_line_comment, sym_block_comment, - [78954] = 6, - ACTIONS(101), 1, + [80969] = 7, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4989), 1, + anon_sym_where, + ACTIONS(5057), 1, + anon_sym_PLUS, + ACTIONS(5845), 1, + anon_sym_SEMI, + STATE(3659), 1, + sym_where_clause, + STATE(2652), 2, + sym_line_comment, + sym_block_comment, + [80992] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5705), 1, + ACTIONS(5847), 1, anon_sym_DQUOTE, - STATE(2595), 1, + STATE(2732), 1, aux_sym_string_literal_repeat1, - ACTIONS(5586), 2, + ACTIONS(5737), 2, sym_string_content, sym_escape_sequence, - STATE(2584), 2, + STATE(2653), 2, sym_line_comment, sym_block_comment, - [78975] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [81013] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - ACTIONS(4997), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - STATE(2841), 1, + ACTIONS(3442), 1, + anon_sym_SQUOTE, + STATE(1452), 1, sym_block, - STATE(3589), 1, + STATE(3635), 1, sym_label, - STATE(2585), 2, + STATE(2654), 2, sym_line_comment, sym_block_comment, - [78998] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [81036] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(400), 1, + ACTIONS(5827), 1, + anon_sym_LPAREN, + ACTIONS(5829), 1, + anon_sym_LBRACK, + ACTIONS(5831), 1, anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - STATE(1744), 1, - sym_block, - STATE(3591), 1, - sym_label, - STATE(2586), 2, + STATE(1032), 1, + sym_delim_token_tree, + STATE(2655), 2, sym_line_comment, sym_block_comment, - [79021] = 5, - ACTIONS(3), 1, + [81059] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5707), 1, - aux_sym_token_repetition_pattern_token1, - STATE(2587), 2, + ACTIONS(5849), 1, + anon_sym_COMMA, + ACTIONS(4151), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + STATE(2656), 3, sym_line_comment, sym_block_comment, - ACTIONS(5709), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [79040] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + aux_sym_arguments_repeat1, + [81078] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, + ACTIONS(4527), 1, anon_sym_LT2, - STATE(3195), 1, - sym_type_arguments, - ACTIONS(5604), 2, - sym_identifier, + ACTIONS(5296), 1, sym_super, - STATE(2588), 2, + ACTIONS(5852), 1, + sym_identifier, + STATE(3228), 1, + sym_type_arguments, + STATE(2657), 2, sym_line_comment, sym_block_comment, - [79061] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [81101] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5711), 1, - anon_sym_COMMA, - ACTIONS(4091), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - STATE(2589), 3, + ACTIONS(4527), 1, + anon_sym_LT2, + ACTIONS(5296), 1, + sym_super, + ACTIONS(5852), 1, + sym_identifier, + STATE(3219), 1, + sym_type_arguments, + STATE(2658), 2, sym_line_comment, sym_block_comment, - aux_sym_arguments_repeat1, - [79080] = 7, - ACTIONS(101), 1, + [81124] = 7, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5854), 1, + anon_sym_LBRACE, + ACTIONS(5856), 1, + anon_sym_for, + ACTIONS(5858), 1, + anon_sym_loop, + ACTIONS(5860), 1, + anon_sym_while, + STATE(2659), 2, + sym_line_comment, + sym_block_comment, + [81147] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3945), 1, - anon_sym_LT2, - ACTIONS(4095), 1, + ACTIONS(4541), 1, + anon_sym_DOT_DOT, + ACTIONS(5261), 1, anon_sym_COLON_COLON, - ACTIONS(4846), 1, - anon_sym_BANG, - STATE(1581), 1, - sym_type_arguments, - STATE(2590), 2, + ACTIONS(4543), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2660), 2, sym_line_comment, sym_block_comment, - [79103] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [81168] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1210), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(3344), 1, + ACTIONS(3442), 1, anon_sym_SQUOTE, - STATE(454), 1, + STATE(1451), 1, sym_block, - STATE(3590), 1, + STATE(3635), 1, sym_label, - STATE(2591), 2, + STATE(2661), 2, sym_line_comment, sym_block_comment, - [79126] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [81191] = 7, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(5714), 1, - anon_sym_LPAREN, - ACTIONS(5716), 1, - anon_sym_LBRACK, - ACTIONS(5718), 1, - anon_sym_LBRACE, - STATE(1957), 1, - sym_delim_token_tree, - STATE(2592), 2, - sym_line_comment, - sym_block_comment, - [79149] = 7, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1210), 1, + ACTIONS(405), 1, anon_sym_LBRACE, - ACTIONS(3344), 1, + ACTIONS(3442), 1, anon_sym_SQUOTE, - STATE(446), 1, + STATE(1703), 1, sym_block, - STATE(3590), 1, + STATE(3688), 1, sym_label, - STATE(2593), 2, + STATE(2662), 2, sym_line_comment, sym_block_comment, - [79172] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [81214] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1210), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(3344), 1, + ACTIONS(3442), 1, anon_sym_SQUOTE, - STATE(467), 1, + STATE(1454), 1, sym_block, - STATE(3590), 1, + STATE(3635), 1, sym_label, - STATE(2594), 2, + STATE(2663), 2, sym_line_comment, sym_block_comment, - [79195] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [81237] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5720), 1, + ACTIONS(5862), 1, anon_sym_DQUOTE, - STATE(2510), 1, + STATE(2717), 1, aux_sym_string_literal_repeat1, - ACTIONS(5586), 2, + ACTIONS(5737), 2, sym_string_content, sym_escape_sequence, - STATE(2595), 2, + STATE(2664), 2, sym_line_comment, sym_block_comment, - [79216] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [81258] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5714), 1, - anon_sym_LPAREN, - ACTIONS(5716), 1, - anon_sym_LBRACK, - ACTIONS(5718), 1, - anon_sym_LBRACE, - STATE(1959), 1, - sym_delim_token_tree, - STATE(2596), 2, + ACTIONS(5547), 1, + anon_sym_COMMA, + ACTIONS(5549), 1, + anon_sym_COLON, + ACTIONS(5551), 1, + anon_sym_PIPE, + STATE(2793), 1, + aux_sym_closure_parameters_repeat1, + STATE(2665), 2, sym_line_comment, sym_block_comment, - [79239] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [81281] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3945), 1, - anon_sym_LT2, - ACTIONS(5722), 1, - sym_identifier, - ACTIONS(5724), 1, - sym_super, - STATE(1568), 1, - sym_type_arguments, - STATE(2597), 2, + ACTIONS(3442), 1, + anon_sym_SQUOTE, + STATE(312), 1, + sym_block, + STATE(3543), 1, + sym_label, + STATE(2666), 2, sym_line_comment, sym_block_comment, - [79262] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [81304] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3945), 1, - anon_sym_LT2, - ACTIONS(5722), 1, - sym_identifier, - ACTIONS(5724), 1, - sym_super, - STATE(1552), 1, - sym_type_arguments, - STATE(2598), 2, + ACTIONS(4541), 1, + anon_sym_DOT_DOT, + ACTIONS(5282), 1, + anon_sym_COLON_COLON, + ACTIONS(4543), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2667), 2, sym_line_comment, sym_block_comment, - [79285] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [81325] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, + ACTIONS(4527), 1, anon_sym_LT2, - ACTIONS(5103), 1, - sym_super, - ACTIONS(5602), 1, - sym_identifier, - STATE(3195), 1, + ACTIONS(4605), 1, + anon_sym_BANG, + ACTIONS(4640), 1, + anon_sym_COLON_COLON, + STATE(1966), 1, sym_type_arguments, - STATE(2599), 2, + STATE(2668), 2, sym_line_comment, sym_block_comment, - [79308] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [81348] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(5103), 1, - sym_super, - ACTIONS(5602), 1, - sym_identifier, - STATE(3217), 1, - sym_type_arguments, - STATE(2600), 2, + ACTIONS(405), 1, + anon_sym_LBRACE, + ACTIONS(3442), 1, + anon_sym_SQUOTE, + STATE(1719), 1, + sym_block, + STATE(3688), 1, + sym_label, + STATE(2669), 2, sym_line_comment, sym_block_comment, - [79331] = 7, - ACTIONS(101), 1, + [81371] = 7, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1581), 1, + anon_sym_LBRACE, + ACTIONS(3442), 1, + anon_sym_SQUOTE, + STATE(2158), 1, + sym_block, + STATE(3679), 1, + sym_label, + STATE(2670), 2, + sym_line_comment, + sym_block_comment, + [81394] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5726), 1, - anon_sym_RPAREN, - ACTIONS(5728), 1, - anon_sym_COMMA, - STATE(2795), 1, - aux_sym_tuple_type_repeat1, - STATE(2601), 2, + ACTIONS(5864), 1, + anon_sym_DQUOTE, + STATE(2690), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5737), 2, + sym_string_content, + sym_escape_sequence, + STATE(2671), 2, sym_line_comment, sym_block_comment, - [79354] = 7, - ACTIONS(101), 1, + [81415] = 7, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1273), 1, + anon_sym_LBRACE, + ACTIONS(3442), 1, + anon_sym_SQUOTE, + STATE(464), 1, + sym_block, + STATE(3687), 1, + sym_label, + STATE(2672), 2, + sym_line_comment, + sym_block_comment, + [81438] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, + ACTIONS(405), 1, anon_sym_LBRACE, - ACTIONS(3344), 1, + ACTIONS(3442), 1, anon_sym_SQUOTE, - STATE(3373), 1, + STATE(1730), 1, sym_block, - STATE(3539), 1, + STATE(3688), 1, sym_label, - STATE(2602), 2, + STATE(2673), 2, + sym_line_comment, + sym_block_comment, + [81461] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3442), 1, + anon_sym_SQUOTE, + STATE(3635), 1, + sym_label, + STATE(3667), 1, + sym_block, + STATE(2674), 2, + sym_line_comment, + sym_block_comment, + [81484] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5057), 1, + anon_sym_PLUS, + ACTIONS(5866), 1, + anon_sym_SEMI, + ACTIONS(5868), 1, + anon_sym_EQ, + ACTIONS(5870), 1, + anon_sym_else, + STATE(2675), 2, + sym_line_comment, + sym_block_comment, + [81507] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4726), 1, + anon_sym_GT, + ACTIONS(5689), 1, + anon_sym_COMMA, + ACTIONS(5715), 1, + anon_sym_EQ, + STATE(2997), 1, + aux_sym_type_parameters_repeat1, + STATE(2676), 2, sym_line_comment, sym_block_comment, - [79377] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [81530] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3939), 1, - anon_sym_LPAREN, - ACTIONS(4449), 1, - anon_sym_LT2, - STATE(1626), 1, - sym_parameters, - STATE(1933), 1, - sym_type_arguments, - STATE(2603), 2, + ACTIONS(5057), 1, + anon_sym_PLUS, + ACTIONS(5872), 1, + anon_sym_RPAREN, + ACTIONS(5874), 1, + anon_sym_COMMA, + STATE(2937), 1, + aux_sym_ordered_field_declaration_list_repeat1, + STATE(2677), 2, sym_line_comment, sym_block_comment, - [79400] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [81553] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2604), 2, + STATE(2678), 2, sym_line_comment, sym_block_comment, - ACTIONS(5730), 4, + ACTIONS(5876), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SQUOTE, - [79417] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [81570] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_COLON, - STATE(2888), 1, - sym_trait_bounds, - ACTIONS(5732), 2, - anon_sym_GT, - anon_sym_COMMA, - STATE(2605), 2, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3442), 1, + anon_sym_SQUOTE, + STATE(3635), 1, + sym_label, + STATE(3673), 1, + sym_block, + STATE(2679), 2, sym_line_comment, sym_block_comment, - [79438] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [81593] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2606), 2, + STATE(2680), 2, sym_line_comment, sym_block_comment, - ACTIONS(5735), 4, + ACTIONS(5878), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SQUOTE, - [79455] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [81610] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1210), 1, + ACTIONS(5061), 1, + anon_sym_COLON, + STATE(2824), 1, + sym_trait_bounds, + ACTIONS(5880), 2, + anon_sym_COMMA, + anon_sym_GT, + STATE(2681), 2, + sym_line_comment, + sym_block_comment, + [81631] = 7, + ACTIONS(19), 1, anon_sym_LBRACE, - ACTIONS(3344), 1, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3442), 1, anon_sym_SQUOTE, - STATE(474), 1, + STATE(395), 1, sym_block, - STATE(3590), 1, + STATE(3543), 1, sym_label, - STATE(2607), 2, + STATE(2682), 2, sym_line_comment, sym_block_comment, - [79478] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [81654] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(3344), 1, + ACTIONS(3442), 1, anon_sym_SQUOTE, - STATE(3388), 1, + STATE(3485), 1, sym_block, - STATE(3539), 1, + STATE(3635), 1, sym_label, - STATE(2608), 2, + STATE(2683), 2, sym_line_comment, sym_block_comment, - [79501] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(101), 1, + [81677] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4692), 1, + anon_sym_DOT_DOT, + ACTIONS(5882), 1, + anon_sym_COLON_COLON, + ACTIONS(4694), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2684), 2, + sym_line_comment, + sym_block_comment, + [81698] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5426), 1, + anon_sym_PLUS, + STATE(2685), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5884), 3, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_GT, + [81717] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3442), 1, anon_sym_SQUOTE, - STATE(392), 1, + STATE(3483), 1, sym_block, - STATE(3510), 1, + STATE(3635), 1, sym_label, - STATE(2609), 2, + STATE(2686), 2, sym_line_comment, sym_block_comment, - [79524] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [81740] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5426), 1, - anon_sym_RPAREN, - ACTIONS(5428), 1, - anon_sym_COMMA, - STATE(2809), 1, - aux_sym_parameters_repeat1, - STATE(2610), 2, + ACTIONS(5886), 1, + anon_sym_LPAREN, + ACTIONS(5888), 1, + anon_sym_LBRACK, + ACTIONS(5890), 1, + anon_sym_LBRACE, + STATE(381), 1, + sym_delim_token_tree, + STATE(2687), 2, sym_line_comment, sym_block_comment, - [79547] = 7, - ACTIONS(101), 1, + [81763] = 7, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4521), 1, + anon_sym_LPAREN, + ACTIONS(4987), 1, + anon_sym_LT, + STATE(2252), 1, + sym_parameters, + STATE(3389), 1, + sym_type_parameters, + STATE(2688), 2, + sym_line_comment, + sym_block_comment, + [81786] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5737), 1, + ACTIONS(5892), 1, + anon_sym_LPAREN, + ACTIONS(5894), 1, + anon_sym_LBRACK, + ACTIONS(5896), 1, anon_sym_LBRACE, - ACTIONS(5739), 1, - anon_sym_for, - ACTIONS(5741), 1, - anon_sym_loop, - ACTIONS(5743), 1, - anon_sym_while, - STATE(2611), 2, + STATE(1825), 1, + sym_delim_token_tree, + STATE(2689), 2, sym_line_comment, sym_block_comment, - [79570] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [81809] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1210), 1, + ACTIONS(5898), 1, + anon_sym_DQUOTE, + STATE(2732), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5737), 2, + sym_string_content, + sym_escape_sequence, + STATE(2690), 2, + sym_line_comment, + sym_block_comment, + [81830] = 7, + ACTIONS(19), 1, anon_sym_LBRACE, - ACTIONS(3344), 1, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3442), 1, anon_sym_SQUOTE, - STATE(468), 1, + STATE(224), 1, sym_block, - STATE(3590), 1, + STATE(3543), 1, sym_label, - STATE(2612), 2, + STATE(2691), 2, sym_line_comment, sym_block_comment, - [79593] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [81853] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, + ACTIONS(4527), 1, anon_sym_LT2, - ACTIONS(4523), 1, - anon_sym_BANG, - ACTIONS(4554), 1, - anon_sym_COLON_COLON, - STATE(1930), 1, + STATE(3219), 1, sym_type_arguments, - STATE(2613), 2, + ACTIONS(5713), 2, + sym_identifier, + sym_super, + STATE(2692), 2, sym_line_comment, sym_block_comment, - [79616] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [81874] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1464), 1, - anon_sym_RPAREN, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5446), 1, - anon_sym_COMMA, - STATE(2817), 1, - aux_sym_parameters_repeat1, - STATE(2614), 2, + ACTIONS(3329), 1, + anon_sym_LT2, + ACTIONS(3575), 1, + anon_sym_COLON_COLON, + ACTIONS(4860), 1, + anon_sym_BANG, + STATE(1226), 1, + sym_type_arguments, + STATE(2693), 2, sym_line_comment, sym_block_comment, - [79639] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [81897] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(400), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(3344), 1, + ACTIONS(3442), 1, anon_sym_SQUOTE, - STATE(1743), 1, - sym_block, - STATE(3591), 1, + STATE(3635), 1, sym_label, - STATE(2615), 2, + STATE(3649), 1, + sym_block, + STATE(2694), 2, sym_line_comment, sym_block_comment, - [79662] = 7, - ACTIONS(101), 1, + [81920] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5900), 1, + anon_sym_in, + STATE(2695), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5902), 3, + sym_self, + sym_super, + sym_crate, + [81939] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(400), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(3344), 1, + ACTIONS(3442), 1, anon_sym_SQUOTE, - STATE(1745), 1, - sym_block, - STATE(3591), 1, + STATE(3635), 1, sym_label, - STATE(2616), 2, + STATE(3648), 1, + sym_block, + STATE(2696), 2, sym_line_comment, sym_block_comment, - [79685] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [81962] = 7, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(5745), 1, - anon_sym_DQUOTE, - STATE(2623), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5586), 2, - sym_string_content, - sym_escape_sequence, - STATE(2617), 2, - sym_line_comment, - sym_block_comment, - [79706] = 7, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1210), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(3344), 1, + ACTIONS(3442), 1, anon_sym_SQUOTE, - STATE(462), 1, + STATE(1483), 1, sym_block, - STATE(3590), 1, + STATE(3635), 1, sym_label, - STATE(2618), 2, + STATE(2697), 2, sym_line_comment, sym_block_comment, - [79729] = 7, - ACTIONS(101), 1, + [81985] = 6, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4527), 1, + anon_sym_LT2, + STATE(3228), 1, + sym_type_arguments, + ACTIONS(5713), 2, + sym_identifier, + sym_super, + STATE(2698), 2, + sym_line_comment, + sym_block_comment, + [82006] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(400), 1, + ACTIONS(5205), 1, + anon_sym_LPAREN, + ACTIONS(5207), 1, + anon_sym_LBRACK, + ACTIONS(5211), 1, anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - STATE(1841), 1, - sym_block, - STATE(3591), 1, - sym_label, - STATE(2619), 2, + STATE(1482), 1, + sym_delim_token_tree, + STATE(2699), 2, sym_line_comment, sym_block_comment, - [79752] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [82029] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5747), 1, + ACTIONS(5892), 1, anon_sym_LPAREN, - ACTIONS(5749), 1, + ACTIONS(5894), 1, anon_sym_LBRACK, - ACTIONS(5751), 1, + ACTIONS(5896), 1, anon_sym_LBRACE, - STATE(1025), 1, + STATE(1710), 1, sym_delim_token_tree, - STATE(2620), 2, + STATE(2700), 2, sym_line_comment, sym_block_comment, - [79775] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [82052] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(400), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(3344), 1, + ACTIONS(3442), 1, anon_sym_SQUOTE, - STATE(1554), 1, + STATE(3481), 1, sym_block, - STATE(3591), 1, + STATE(3635), 1, sym_label, - STATE(2621), 2, + STATE(2701), 2, sym_line_comment, sym_block_comment, - [79798] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [82075] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, - STATE(2622), 2, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3442), 1, + anon_sym_SQUOTE, + STATE(3635), 1, + sym_label, + STATE(3670), 1, + sym_block, + STATE(2702), 2, sym_line_comment, sym_block_comment, - ACTIONS(5753), 3, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COMMA, - [79817] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [82098] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5755), 1, - anon_sym_DQUOTE, - STATE(2510), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5586), 2, - sym_string_content, - sym_escape_sequence, - STATE(2623), 2, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3442), 1, + anon_sym_SQUOTE, + STATE(1174), 1, + sym_block, + STATE(3635), 1, + sym_label, + STATE(2703), 2, sym_line_comment, sym_block_comment, - [79838] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [82121] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5747), 1, - anon_sym_LPAREN, - ACTIONS(5749), 1, - anon_sym_LBRACK, - ACTIONS(5751), 1, - anon_sym_LBRACE, - STATE(1026), 1, - sym_delim_token_tree, - STATE(2624), 2, + ACTIONS(5061), 1, + anon_sym_COLON, + STATE(2824), 1, + sym_trait_bounds, + ACTIONS(5904), 2, + anon_sym_COMMA, + anon_sym_GT, + STATE(2704), 2, sym_line_comment, sym_block_comment, - [79861] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [82142] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3251), 1, + ACTIONS(4527), 1, anon_sym_LT2, - ACTIONS(5103), 1, + ACTIONS(5765), 1, sym_super, - ACTIONS(5629), 1, + ACTIONS(5906), 1, sym_identifier, - STATE(1377), 1, + STATE(3228), 1, sym_type_arguments, - STATE(2625), 2, + STATE(2705), 2, sym_line_comment, sym_block_comment, - [79884] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [82165] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(5103), 1, - sym_super, - ACTIONS(5651), 1, - sym_identifier, - STATE(3195), 1, - sym_type_arguments, - STATE(2626), 2, + ACTIONS(5057), 1, + anon_sym_PLUS, + ACTIONS(5908), 1, + anon_sym_SEMI, + ACTIONS(5910), 1, + anon_sym_EQ, + ACTIONS(5912), 1, + anon_sym_else, + STATE(2706), 2, sym_line_comment, sym_block_comment, - [79907] = 7, - ACTIONS(101), 1, + [82188] = 7, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5057), 1, + anon_sym_PLUS, + ACTIONS(5565), 1, + anon_sym_RPAREN, + ACTIONS(5567), 1, + anon_sym_COMMA, + STATE(2981), 1, + aux_sym_parameters_repeat1, + STATE(2707), 2, + sym_line_comment, + sym_block_comment, + [82211] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, + ACTIONS(4527), 1, anon_sym_LT2, - ACTIONS(5103), 1, + ACTIONS(5765), 1, sym_super, - ACTIONS(5651), 1, + ACTIONS(5906), 1, sym_identifier, - STATE(3217), 1, + STATE(3219), 1, sym_type_arguments, - STATE(2627), 2, + STATE(2708), 2, sym_line_comment, sym_block_comment, - [79930] = 7, - ACTIONS(101), 1, + [82234] = 6, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4279), 1, + anon_sym_LBRACE, + STATE(2834), 1, + sym_use_list, + ACTIONS(5914), 2, + sym_identifier, + sym_super, + STATE(2709), 2, + sym_line_comment, + sym_block_comment, + [82255] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(400), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(3344), 1, + ACTIONS(3442), 1, anon_sym_SQUOTE, - STATE(1769), 1, + STATE(3532), 1, sym_block, - STATE(3591), 1, + STATE(3635), 1, sym_label, - STATE(2628), 2, + STATE(2710), 2, sym_line_comment, sym_block_comment, - [79953] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [82278] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(400), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(3344), 1, + ACTIONS(3442), 1, anon_sym_SQUOTE, - STATE(1775), 1, + STATE(3534), 1, sym_block, - STATE(3591), 1, + STATE(3635), 1, sym_label, - STATE(2629), 2, + STATE(2711), 2, sym_line_comment, sym_block_comment, - [79976] = 6, - ACTIONS(101), 1, + [82301] = 4, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2712), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5605), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SQUOTE, + [82318] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5757), 1, - anon_sym_DQUOTE, - STATE(2634), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5586), 2, - sym_string_content, - sym_escape_sequence, - STATE(2630), 2, + ACTIONS(5577), 1, + anon_sym_PIPE, + ACTIONS(5916), 1, + anon_sym_RPAREN, + ACTIONS(5918), 1, + anon_sym_COMMA, + STATE(2974), 1, + aux_sym_slice_pattern_repeat1, + STATE(2713), 2, sym_line_comment, sym_block_comment, - [79997] = 7, - ACTIONS(101), 1, + [82341] = 7, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5577), 1, + anon_sym_PIPE, + ACTIONS(5920), 1, + anon_sym_RPAREN, + ACTIONS(5922), 1, + anon_sym_COMMA, + STATE(2970), 1, + aux_sym_slice_pattern_repeat1, + STATE(2714), 2, + sym_line_comment, + sym_block_comment, + [82364] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(400), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(3344), 1, + ACTIONS(3442), 1, anon_sym_SQUOTE, - STATE(1780), 1, + STATE(1464), 1, sym_block, - STATE(3591), 1, + STATE(3635), 1, sym_label, - STATE(2631), 2, + STATE(2715), 2, sym_line_comment, sym_block_comment, - [80020] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [82387] = 7, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_COLON, - STATE(2888), 1, - sym_trait_bounds, - ACTIONS(5759), 2, - anon_sym_GT, - anon_sym_COMMA, - STATE(2632), 2, - sym_line_comment, - sym_block_comment, - [80041] = 7, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5761), 1, + ACTIONS(4521), 1, anon_sym_LPAREN, - ACTIONS(5763), 1, - anon_sym_LBRACK, - ACTIONS(5765), 1, - anon_sym_LBRACE, - STATE(1785), 1, - sym_delim_token_tree, - STATE(2633), 2, + ACTIONS(4987), 1, + anon_sym_LT, + STATE(2251), 1, + sym_parameters, + STATE(3151), 1, + sym_type_parameters, + STATE(2716), 2, sym_line_comment, sym_block_comment, - [80064] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [82410] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5767), 1, + ACTIONS(5924), 1, anon_sym_DQUOTE, - STATE(2510), 1, + STATE(2732), 1, aux_sym_string_literal_repeat1, - ACTIONS(5586), 2, + ACTIONS(5737), 2, sym_string_content, sym_escape_sequence, - STATE(2634), 2, + STATE(2717), 2, sym_line_comment, sym_block_comment, - [80085] = 7, - ACTIONS(101), 1, + [82431] = 7, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5057), 1, + anon_sym_PLUS, + ACTIONS(5926), 1, + anon_sym_RPAREN, + ACTIONS(5928), 1, + anon_sym_COMMA, + STATE(2882), 1, + aux_sym_ordered_field_declaration_list_repeat1, + STATE(2718), 2, + sym_line_comment, + sym_block_comment, + [82454] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5761), 1, + ACTIONS(5205), 1, anon_sym_LPAREN, - ACTIONS(5763), 1, + ACTIONS(5207), 1, anon_sym_LBRACK, - ACTIONS(5765), 1, + ACTIONS(5211), 1, anon_sym_LBRACE, - STATE(1789), 1, + STATE(1463), 1, sym_delim_token_tree, - STATE(2635), 2, + STATE(2719), 2, sym_line_comment, sym_block_comment, - [80108] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [82477] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, + ACTIONS(3329), 1, anon_sym_LT2, - ACTIONS(5604), 1, + ACTIONS(5296), 1, sym_super, - ACTIONS(5769), 1, + ACTIONS(5930), 1, sym_identifier, - STATE(3195), 1, + STATE(1599), 1, sym_type_arguments, - STATE(2636), 2, + STATE(2720), 2, sym_line_comment, sym_block_comment, - [80131] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [82500] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(5604), 1, - sym_super, - ACTIONS(5769), 1, - sym_identifier, - STATE(3217), 1, - sym_type_arguments, - STATE(2637), 2, + ACTIONS(4521), 1, + anon_sym_LPAREN, + ACTIONS(4987), 1, + anon_sym_LT, + STATE(2259), 1, + sym_parameters, + STATE(3241), 1, + sym_type_parameters, + STATE(2721), 2, sym_line_comment, sym_block_comment, - [80154] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [82523] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, + ACTIONS(3442), 1, anon_sym_SQUOTE, - STATE(3456), 1, + STATE(287), 1, sym_block, - STATE(3539), 1, + STATE(3543), 1, sym_label, - STATE(2638), 2, + STATE(2722), 2, sym_line_comment, sym_block_comment, - [80177] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [82546] = 6, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(5452), 1, - anon_sym_PIPE, - ACTIONS(5508), 1, - anon_sym_RPAREN, - ACTIONS(5512), 1, - anon_sym_COMMA, - STATE(2839), 1, - aux_sym_slice_pattern_repeat1, - STATE(2639), 2, - sym_line_comment, - sym_block_comment, - [80200] = 7, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5452), 1, - anon_sym_PIPE, - ACTIONS(5771), 1, - anon_sym_RPAREN, - ACTIONS(5773), 1, - anon_sym_COMMA, - STATE(2810), 1, - aux_sym_tuple_pattern_repeat1, - STATE(2640), 2, + ACTIONS(5932), 1, + anon_sym_DQUOTE, + STATE(2724), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5737), 2, + sym_string_content, + sym_escape_sequence, + STATE(2723), 2, sym_line_comment, sym_block_comment, - [80223] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [82567] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5775), 1, + ACTIONS(5934), 1, anon_sym_DQUOTE, - STATE(2642), 1, + STATE(2732), 1, aux_sym_string_literal_repeat1, - ACTIONS(5586), 2, + ACTIONS(5737), 2, sym_string_content, sym_escape_sequence, - STATE(2641), 2, + STATE(2724), 2, sym_line_comment, sym_block_comment, - [80244] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [82588] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5777), 1, + ACTIONS(5936), 1, anon_sym_DQUOTE, - STATE(2510), 1, + STATE(2732), 1, aux_sym_string_literal_repeat1, - ACTIONS(5586), 2, + ACTIONS(5737), 2, sym_string_content, sym_escape_sequence, - STATE(2642), 2, + STATE(2725), 2, sym_line_comment, sym_block_comment, - [80265] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [82609] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, + ACTIONS(4527), 1, anon_sym_LT2, - ACTIONS(5604), 1, + ACTIONS(5765), 1, sym_super, - ACTIONS(5779), 1, + ACTIONS(5938), 1, sym_identifier, - STATE(3195), 1, + STATE(3228), 1, sym_type_arguments, - STATE(2643), 2, + STATE(2726), 2, sym_line_comment, sym_block_comment, - [80288] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [82632] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, + ACTIONS(4527), 1, anon_sym_LT2, - ACTIONS(5604), 1, + ACTIONS(5765), 1, sym_super, - ACTIONS(5779), 1, + ACTIONS(5938), 1, sym_identifier, - STATE(3217), 1, + STATE(3219), 1, sym_type_arguments, - STATE(2644), 2, - sym_line_comment, - sym_block_comment, - [80311] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(338), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - STATE(3365), 1, - sym_block, - STATE(3539), 1, - sym_label, - STATE(2645), 2, + STATE(2727), 2, sym_line_comment, sym_block_comment, - [80334] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [82655] = 7, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5781), 1, - anon_sym_SEMI, - ACTIONS(5783), 1, - anon_sym_EQ, - ACTIONS(5785), 1, - anon_sym_else, - STATE(2646), 2, - sym_line_comment, - sym_block_comment, - [80357] = 7, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(5281), 1, + ACTIONS(5886), 1, + anon_sym_LPAREN, + ACTIONS(5888), 1, + anon_sym_LBRACK, + ACTIONS(5890), 1, anon_sym_LBRACE, - STATE(660), 1, - sym_enum_variant_list, - STATE(3046), 1, - sym_where_clause, - STATE(2647), 2, + STATE(328), 1, + sym_delim_token_tree, + STATE(2728), 2, sym_line_comment, sym_block_comment, - [80380] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [82678] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, + ACTIONS(3329), 1, anon_sym_LT2, - ACTIONS(5641), 1, + ACTIONS(5296), 1, sym_super, - ACTIONS(5787), 1, + ACTIONS(5930), 1, sym_identifier, - STATE(3195), 1, + STATE(1590), 1, sym_type_arguments, - STATE(2648), 2, + STATE(2729), 2, sym_line_comment, sym_block_comment, - [80403] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [82701] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, + ACTIONS(3329), 1, anon_sym_LT2, - ACTIONS(5641), 1, + ACTIONS(5296), 1, sym_super, - ACTIONS(5787), 1, + ACTIONS(5940), 1, sym_identifier, - STATE(3217), 1, + STATE(1449), 1, sym_type_arguments, - STATE(2649), 2, + STATE(2730), 2, sym_line_comment, sym_block_comment, - [80426] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [82724] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(5103), 1, - sym_super, - ACTIONS(5769), 1, - sym_identifier, - STATE(3195), 1, - sym_type_arguments, - STATE(2650), 2, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3442), 1, + anon_sym_SQUOTE, + STATE(3583), 1, + sym_block, + STATE(3635), 1, + sym_label, + STATE(2731), 2, sym_line_comment, sym_block_comment, - [80449] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [82747] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(5103), 1, - sym_super, - ACTIONS(5769), 1, - sym_identifier, - STATE(3217), 1, - sym_type_arguments, - STATE(2651), 2, + ACTIONS(5942), 1, + anon_sym_DQUOTE, + ACTIONS(5944), 2, + sym_string_content, + sym_escape_sequence, + STATE(2732), 3, sym_line_comment, sym_block_comment, - [80472] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + aux_sym_string_literal_repeat1, + [82766] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(5604), 1, - sym_super, - ACTIONS(5789), 1, - sym_identifier, - STATE(3195), 1, - sym_type_arguments, - STATE(2652), 2, + ACTIONS(4989), 1, + anon_sym_where, + ACTIONS(5057), 1, + anon_sym_PLUS, + ACTIONS(5947), 1, + anon_sym_SEMI, + STATE(3566), 1, + sym_where_clause, + STATE(2733), 2, sym_line_comment, sym_block_comment, - [80495] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [82789] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, + ACTIONS(4527), 1, anon_sym_LT2, - ACTIONS(5604), 1, - sym_super, - ACTIONS(5789), 1, - sym_identifier, - STATE(3217), 1, + ACTIONS(5717), 1, + anon_sym_COLON_COLON, + ACTIONS(5949), 1, + anon_sym_for, + STATE(1967), 1, sym_type_arguments, - STATE(2653), 2, + STATE(2734), 2, sym_line_comment, sym_block_comment, - [80518] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [82812] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(5604), 1, - sym_super, - ACTIONS(5791), 1, - sym_identifier, - STATE(3195), 1, - sym_type_arguments, - STATE(2654), 2, + ACTIONS(4985), 1, + anon_sym_LBRACE, + ACTIONS(4989), 1, + anon_sym_where, + STATE(497), 1, + sym_field_declaration_list, + STATE(3133), 1, + sym_where_clause, + STATE(2735), 2, sym_line_comment, sym_block_comment, - [80541] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [82835] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(5604), 1, - sym_super, - ACTIONS(5791), 1, - sym_identifier, - STATE(3217), 1, - sym_type_arguments, - STATE(2655), 2, + ACTIONS(4989), 1, + anon_sym_where, + ACTIONS(5047), 1, + anon_sym_LBRACE, + STATE(586), 1, + sym_declaration_list, + STATE(3128), 1, + sym_where_clause, + STATE(2736), 2, sym_line_comment, sym_block_comment, - [80564] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [82858] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, + ACTIONS(3329), 1, anon_sym_LT2, - ACTIONS(5604), 1, + ACTIONS(5296), 1, sym_super, - ACTIONS(5793), 1, + ACTIONS(5940), 1, sym_identifier, - STATE(3195), 1, + STATE(1486), 1, sym_type_arguments, - STATE(2656), 2, + STATE(2737), 2, sym_line_comment, sym_block_comment, - [80587] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [82881] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, + ACTIONS(4527), 1, anon_sym_LT2, - ACTIONS(5604), 1, - sym_super, - ACTIONS(5793), 1, + ACTIONS(5711), 1, sym_identifier, - STATE(3217), 1, + ACTIONS(5713), 1, + sym_super, + STATE(3219), 1, sym_type_arguments, - STATE(2657), 2, + STATE(2738), 2, sym_line_comment, sym_block_comment, - [80610] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [82904] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(5103), 1, - sym_super, - ACTIONS(5793), 1, - sym_identifier, - STATE(3195), 1, - sym_type_arguments, - STATE(2658), 2, + ACTIONS(5951), 1, + anon_sym_LBRACE, + ACTIONS(5953), 1, + anon_sym_for, + ACTIONS(5955), 1, + anon_sym_loop, + ACTIONS(5957), 1, + anon_sym_while, + STATE(2739), 2, sym_line_comment, sym_block_comment, - [80633] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [82927] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(5103), 1, - sym_super, - ACTIONS(5793), 1, - sym_identifier, - STATE(3217), 1, - sym_type_arguments, - STATE(2659), 2, + ACTIONS(4531), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(5959), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2740), 2, sym_line_comment, sym_block_comment, - [80656] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [82946] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, + ACTIONS(4989), 1, anon_sym_where, - ACTIONS(4878), 1, + ACTIONS(5047), 1, anon_sym_LBRACE, - STATE(528), 1, + STATE(634), 1, sym_declaration_list, - STATE(3080), 1, + STATE(3227), 1, sym_where_clause, - STATE(2660), 2, - sym_line_comment, - sym_block_comment, - [80679] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(5795), 1, - aux_sym_token_repetition_pattern_token1, - STATE(2661), 2, + STATE(2741), 2, sym_line_comment, sym_block_comment, - ACTIONS(5797), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [80698] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [82969] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2662), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4129), 4, + ACTIONS(343), 1, anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, + ACTIONS(3442), 1, anon_sym_SQUOTE, - [80715] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4463), 1, - anon_sym_DOT_DOT, - ACTIONS(5211), 1, - anon_sym_COLON_COLON, - ACTIONS(4465), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2663), 2, + STATE(1484), 1, + sym_block, + STATE(3635), 1, + sym_label, + STATE(2742), 2, sym_line_comment, sym_block_comment, - [80736] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [82992] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, - STATE(2664), 2, + ACTIONS(4527), 1, + anon_sym_LT2, + ACTIONS(5296), 1, + sym_super, + ACTIONS(5906), 1, + sym_identifier, + STATE(3228), 1, + sym_type_arguments, + STATE(2743), 2, sym_line_comment, sym_block_comment, - ACTIONS(5799), 3, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COMMA, - [80755] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [83015] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, + ACTIONS(4521), 1, anon_sym_LPAREN, - ACTIONS(4872), 1, + ACTIONS(4987), 1, anon_sym_LT, - STATE(2197), 1, + STATE(2230), 1, sym_parameters, - STATE(3214), 1, + STATE(3279), 1, sym_type_parameters, - STATE(2665), 2, + STATE(2744), 2, sym_line_comment, sym_block_comment, - [80778] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [83038] = 7, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(5801), 1, - anon_sym_COLON_COLON, - STATE(2666), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4734), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [80797] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5803), 1, - anon_sym_in, - STATE(2667), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5805), 3, - sym_self, + ACTIONS(4527), 1, + anon_sym_LT2, + ACTIONS(5296), 1, sym_super, - sym_crate, - [80816] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5807), 1, - anon_sym_SEMI, - ACTIONS(5809), 1, - anon_sym_EQ, - ACTIONS(5811), 1, - anon_sym_else, - STATE(2668), 2, + ACTIONS(5906), 1, + sym_identifier, + STATE(3219), 1, + sym_type_arguments, + STATE(2745), 2, sym_line_comment, sym_block_comment, - [80839] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [83061] = 7, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(5813), 1, - anon_sym_LBRACE, - ACTIONS(5815), 1, - anon_sym_for, - ACTIONS(5817), 1, - anon_sym_loop, - ACTIONS(5819), 1, - anon_sym_while, - STATE(2669), 2, - sym_line_comment, - sym_block_comment, - [80862] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5821), 1, - anon_sym_COLON_COLON, - STATE(2670), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4664), 3, - anon_sym_EQ_GT, + ACTIONS(5577), 1, anon_sym_PIPE, - anon_sym_if, - [80881] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5823), 1, + ACTIONS(5961), 1, anon_sym_RPAREN, - ACTIONS(5825), 1, + ACTIONS(5963), 1, anon_sym_COMMA, - STATE(2893), 1, - aux_sym_ordered_field_declaration_list_repeat1, - STATE(2671), 2, + STATE(2843), 1, + aux_sym_tuple_pattern_repeat1, + STATE(2746), 2, sym_line_comment, sym_block_comment, - [80904] = 7, - ACTIONS(101), 1, + [83084] = 7, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4527), 1, + anon_sym_LT2, + ACTIONS(5765), 1, + sym_super, + ACTIONS(5965), 1, + sym_identifier, + STATE(3228), 1, + sym_type_arguments, + STATE(2747), 2, + sym_line_comment, + sym_block_comment, + [83107] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5452), 1, + ACTIONS(5577), 1, anon_sym_PIPE, - ACTIONS(5827), 1, + ACTIONS(5967), 1, anon_sym_RBRACK, - ACTIONS(5829), 1, + ACTIONS(5969), 1, anon_sym_COMMA, - STATE(2818), 1, + STATE(2845), 1, aux_sym_slice_pattern_repeat1, - STATE(2672), 2, + STATE(2748), 2, sym_line_comment, sym_block_comment, - [80927] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [83130] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(3344), 1, + ACTIONS(3442), 1, anon_sym_SQUOTE, - STATE(3488), 1, + STATE(3489), 1, sym_block, - STATE(3539), 1, + STATE(3635), 1, sym_label, - STATE(2673), 2, + STATE(2749), 2, sym_line_comment, sym_block_comment, - [80950] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [83153] = 7, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(5452), 1, - anon_sym_PIPE, - ACTIONS(5831), 1, - anon_sym_RPAREN, - ACTIONS(5833), 1, - anon_sym_COMMA, - STATE(2752), 1, - aux_sym_slice_pattern_repeat1, - STATE(2674), 2, - sym_line_comment, - sym_block_comment, - [80973] = 7, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - STATE(3539), 1, - sym_label, - STATE(3567), 1, - sym_block, - STATE(2675), 2, + ACTIONS(4527), 1, + anon_sym_LT2, + ACTIONS(5765), 1, + sym_super, + ACTIONS(5965), 1, + sym_identifier, + STATE(3219), 1, + sym_type_arguments, + STATE(2750), 2, sym_line_comment, sym_block_comment, - [80996] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [83176] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - STATE(3503), 1, - sym_block, - STATE(3539), 1, - sym_label, - STATE(2676), 2, + ACTIONS(4527), 1, + anon_sym_LT2, + ACTIONS(5765), 1, + sym_super, + ACTIONS(5971), 1, + sym_identifier, + STATE(3228), 1, + sym_type_arguments, + STATE(2751), 2, sym_line_comment, sym_block_comment, - [81019] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [83199] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, + ACTIONS(4527), 1, anon_sym_LT2, - ACTIONS(4670), 1, - anon_sym_for, - ACTIONS(5598), 1, - anon_sym_COLON_COLON, - STATE(1931), 1, + ACTIONS(5765), 1, + sym_super, + ACTIONS(5767), 1, + sym_identifier, + STATE(3228), 1, sym_type_arguments, - STATE(2677), 2, + STATE(2752), 2, sym_line_comment, sym_block_comment, - [81042] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [83222] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, - anon_sym_LPAREN, - ACTIONS(4872), 1, - anon_sym_LT, - STATE(2228), 1, - sym_parameters, - STATE(3237), 1, - sym_type_parameters, - STATE(2678), 2, + ACTIONS(5577), 1, + anon_sym_PIPE, + ACTIONS(5973), 1, + anon_sym_RPAREN, + ACTIONS(5975), 1, + anon_sym_COMMA, + STATE(2934), 1, + aux_sym_tuple_pattern_repeat1, + STATE(2753), 2, sym_line_comment, sym_block_comment, - [81065] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [83245] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5452), 1, + ACTIONS(5577), 1, anon_sym_PIPE, - STATE(2679), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5835), 3, - anon_sym_RPAREN, + ACTIONS(5977), 1, anon_sym_RBRACK, + ACTIONS(5979), 1, anon_sym_COMMA, - [81084] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + STATE(2936), 1, + aux_sym_slice_pattern_repeat1, + STATE(2754), 2, + sym_line_comment, + sym_block_comment, + [83268] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5837), 1, - anon_sym_COMMA, - ACTIONS(5835), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - STATE(2680), 3, + ACTIONS(4527), 1, + anon_sym_LT2, + ACTIONS(5765), 1, + sym_super, + ACTIONS(5971), 1, + sym_identifier, + STATE(3219), 1, + sym_type_arguments, + STATE(2755), 2, sym_line_comment, sym_block_comment, - aux_sym_slice_pattern_repeat1, - [81103] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [83291] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2681), 2, + ACTIONS(5981), 1, + anon_sym_COLON, + STATE(2756), 2, sym_line_comment, sym_block_comment, - ACTIONS(3215), 4, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_GT, + ACTIONS(4904), 3, + anon_sym_RPAREN, anon_sym_COMMA, - [81120] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_PIPE, + [83310] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5840), 1, - anon_sym_COLON_COLON, - STATE(2682), 2, + ACTIONS(4527), 1, + anon_sym_LT2, + ACTIONS(5765), 1, + sym_super, + ACTIONS(5767), 1, + sym_identifier, + STATE(3219), 1, + sym_type_arguments, + STATE(2757), 2, sym_line_comment, sym_block_comment, - ACTIONS(4664), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [81139] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [83333] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4878), 1, - anon_sym_LBRACE, - STATE(729), 1, - sym_declaration_list, - STATE(3282), 1, - sym_where_clause, - STATE(2683), 2, + ACTIONS(4527), 1, + anon_sym_LT2, + ACTIONS(5765), 1, + sym_super, + ACTIONS(5983), 1, + sym_identifier, + STATE(3228), 1, + sym_type_arguments, + STATE(2758), 2, sym_line_comment, sym_block_comment, - [81162] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [83356] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - STATE(1269), 1, - sym_block, - STATE(3539), 1, - sym_label, - STATE(2684), 2, + ACTIONS(5057), 1, + anon_sym_PLUS, + ACTIONS(5985), 1, + anon_sym_RPAREN, + ACTIONS(5987), 1, + anon_sym_COMMA, + STATE(2858), 1, + aux_sym_tuple_type_repeat1, + STATE(2759), 2, sym_line_comment, sym_block_comment, - [81185] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [83379] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5842), 1, - anon_sym_SEMI, - STATE(3542), 1, - sym_where_clause, - STATE(2685), 2, + ACTIONS(4527), 1, + anon_sym_LT2, + ACTIONS(5765), 1, + sym_super, + ACTIONS(5983), 1, + sym_identifier, + STATE(3219), 1, + sym_type_arguments, + STATE(2760), 2, sym_line_comment, sym_block_comment, - [81208] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [83402] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - STATE(3362), 1, - sym_block, - STATE(3539), 1, - sym_label, - STATE(2686), 2, + ACTIONS(4527), 1, + anon_sym_LT2, + ACTIONS(5296), 1, + sym_super, + ACTIONS(5983), 1, + sym_identifier, + STATE(3228), 1, + sym_type_arguments, + STATE(2761), 2, sym_line_comment, sym_block_comment, - [81231] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [83425] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - STATE(1218), 1, - sym_block, - STATE(3539), 1, - sym_label, - STATE(2687), 2, + ACTIONS(4527), 1, + anon_sym_LT2, + ACTIONS(5296), 1, + sym_super, + ACTIONS(5983), 1, + sym_identifier, + STATE(3219), 1, + sym_type_arguments, + STATE(2762), 2, sym_line_comment, sym_block_comment, - [81254] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [83448] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5844), 1, - anon_sym_DQUOTE, - STATE(2496), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5586), 2, - sym_string_content, - sym_escape_sequence, - STATE(2688), 2, + ACTIONS(5061), 1, + anon_sym_COLON, + STATE(3180), 1, + sym_trait_bounds, + ACTIONS(5654), 2, + anon_sym_COMMA, + anon_sym_GT, + STATE(2763), 2, sym_line_comment, sym_block_comment, - [81275] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [83469] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, - anon_sym_LPAREN, - ACTIONS(4872), 1, - anon_sym_LT, - STATE(2204), 1, - sym_parameters, - STATE(3253), 1, - sym_type_parameters, - STATE(2689), 2, + ACTIONS(4527), 1, + anon_sym_LT2, + ACTIONS(5765), 1, + sym_super, + ACTIONS(5852), 1, + sym_identifier, + STATE(3228), 1, + sym_type_arguments, + STATE(2764), 2, sym_line_comment, sym_block_comment, - [81298] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [83492] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, + ACTIONS(4989), 1, + anon_sym_where, + ACTIONS(5033), 1, anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - STATE(1091), 1, - sym_block, - STATE(3539), 1, - sym_label, - STATE(2690), 2, + STATE(1078), 1, + sym_field_declaration_list, + STATE(3265), 1, + sym_where_clause, + STATE(2765), 2, + sym_line_comment, + sym_block_comment, + [83515] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4527), 1, + anon_sym_LT2, + ACTIONS(5765), 1, + sym_super, + ACTIONS(5852), 1, + sym_identifier, + STATE(3219), 1, + sym_type_arguments, + STATE(2766), 2, sym_line_comment, sym_block_comment, - [81321] = 5, + [83538] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5846), 1, + ACTIONS(5989), 1, aux_sym_token_repetition_pattern_token1, - STATE(2691), 2, + STATE(2767), 2, sym_line_comment, sym_block_comment, - ACTIONS(5848), 3, + ACTIONS(5991), 3, anon_sym_PLUS, anon_sym_STAR, anon_sym_QMARK, - [81340] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(2692), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(777), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - [81357] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [83557] = 7, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(5347), 1, - anon_sym_GT, - ACTIONS(5349), 1, - anon_sym_COMMA, - ACTIONS(5617), 1, - anon_sym_EQ, - STATE(2786), 1, - aux_sym_type_parameters_repeat1, - STATE(2693), 2, - sym_line_comment, - sym_block_comment, - [81380] = 7, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(3344), 1, + ACTIONS(3442), 1, anon_sym_SQUOTE, - STATE(3463), 1, - sym_block, - STATE(3539), 1, + STATE(3635), 1, sym_label, - STATE(2694), 2, + STATE(3692), 1, + sym_block, + STATE(2768), 2, sym_line_comment, sym_block_comment, - [81403] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [83580] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - STATE(3466), 1, - sym_block, - STATE(3539), 1, - sym_label, - STATE(2695), 2, + ACTIONS(5057), 1, + anon_sym_PLUS, + ACTIONS(5993), 1, + anon_sym_RPAREN, + ACTIONS(5995), 1, + anon_sym_COMMA, + STATE(2983), 1, + aux_sym_tuple_type_repeat1, + STATE(2769), 2, sym_line_comment, sym_block_comment, - [81426] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [83603] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5850), 1, - anon_sym_COLON_COLON, - STATE(2696), 2, + ACTIONS(5411), 1, + anon_sym_COMMA, + ACTIONS(5413), 1, + anon_sym_GT, + ACTIONS(5715), 1, + anon_sym_EQ, + STATE(3068), 1, + aux_sym_type_parameters_repeat1, + STATE(2770), 2, sym_line_comment, sym_block_comment, - ACTIONS(4664), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [81445] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [83626] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1564), 1, + ACTIONS(5997), 1, anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - STATE(2100), 1, - sym_block, - STATE(3582), 1, - sym_label, - STATE(2697), 2, + ACTIONS(5999), 1, + anon_sym_for, + ACTIONS(6001), 1, + anon_sym_loop, + ACTIONS(6003), 1, + anon_sym_while, + STATE(2771), 2, sym_line_comment, sym_block_comment, - [81468] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [83649] = 7, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5852), 1, - anon_sym_RPAREN, - ACTIONS(5854), 1, - anon_sym_COMMA, - STATE(2906), 1, - aux_sym_ordered_field_declaration_list_repeat1, - STATE(2698), 2, - sym_line_comment, - sym_block_comment, - [81491] = 7, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1210), 1, + ACTIONS(4957), 1, anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - STATE(465), 1, - sym_block, - STATE(3590), 1, - sym_label, - STATE(2699), 2, + ACTIONS(4989), 1, + anon_sym_where, + STATE(1090), 1, + sym_declaration_list, + STATE(3270), 1, + sym_where_clause, + STATE(2772), 2, sym_line_comment, sym_block_comment, - [81514] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [83672] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - STATE(3539), 1, - sym_label, - STATE(3570), 1, - sym_block, - STATE(2700), 2, + ACTIONS(3321), 1, + anon_sym_LPAREN, + ACTIONS(4527), 1, + anon_sym_LT2, + STATE(1117), 1, + sym_parameters, + STATE(1968), 1, + sym_type_arguments, + STATE(2773), 2, sym_line_comment, sym_block_comment, - [81537] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [83695] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - STATE(3539), 1, - sym_label, - STATE(3571), 1, - sym_block, - STATE(2701), 2, + ACTIONS(6005), 1, + anon_sym_in, + STATE(2774), 2, sym_line_comment, sym_block_comment, - [81560] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6007), 3, + sym_self, + sym_super, + sym_crate, + [83714] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - STATE(3471), 1, - sym_block, - STATE(3539), 1, - sym_label, - STATE(2702), 2, + ACTIONS(4527), 1, + anon_sym_LT2, + ACTIONS(4760), 1, + anon_sym_for, + ACTIONS(5717), 1, + anon_sym_COLON_COLON, + STATE(1967), 1, + sym_type_arguments, + STATE(2775), 2, sym_line_comment, sym_block_comment, - [81583] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [83737] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - STATE(1206), 1, - sym_block, - STATE(3539), 1, - sym_label, - STATE(2703), 2, + ACTIONS(4521), 1, + anon_sym_LPAREN, + ACTIONS(4987), 1, + anon_sym_LT, + STATE(2218), 1, + sym_parameters, + STATE(3329), 1, + sym_type_parameters, + STATE(2776), 2, sym_line_comment, sym_block_comment, - [81606] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [83760] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - STATE(3539), 1, - sym_label, - STATE(3548), 1, - sym_block, - STATE(2704), 2, + ACTIONS(4521), 1, + anon_sym_LPAREN, + ACTIONS(4527), 1, + anon_sym_LT2, + STATE(1968), 1, + sym_type_arguments, + STATE(2000), 1, + sym_parameters, + STATE(2777), 2, sym_line_comment, sym_block_comment, - [81629] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [83783] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(4989), 1, + anon_sym_where, + ACTIONS(5057), 1, anon_sym_PLUS, - ACTIONS(5528), 1, - anon_sym_RPAREN, - ACTIONS(5530), 1, - anon_sym_COMMA, - STATE(2822), 1, - aux_sym_parameters_repeat1, - STATE(2705), 2, + ACTIONS(6009), 1, + anon_sym_SEMI, + STATE(3591), 1, + sym_where_clause, + STATE(2778), 2, sym_line_comment, sym_block_comment, - [81652] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [83806] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, + ACTIONS(4989), 1, + anon_sym_where, + ACTIONS(5415), 1, anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - STATE(3506), 1, - sym_block, - STATE(3539), 1, - sym_label, - STATE(2706), 2, + STATE(762), 1, + sym_enum_variant_list, + STATE(3146), 1, + sym_where_clause, + STATE(2779), 2, sym_line_comment, sym_block_comment, - [81675] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [83829] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4611), 1, + ACTIONS(4541), 1, anon_sym_DOT_DOT, - ACTIONS(5856), 1, + ACTIONS(5243), 1, anon_sym_COLON_COLON, - ACTIONS(4613), 2, + ACTIONS(4543), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2707), 2, + STATE(2780), 2, sym_line_comment, sym_block_comment, - [81696] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [83850] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4463), 1, - anon_sym_DOT_DOT, - ACTIONS(5207), 1, - anon_sym_COLON_COLON, - ACTIONS(4465), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2708), 2, + ACTIONS(5624), 1, + anon_sym_COMMA, + ACTIONS(5626), 1, + anon_sym_GT, + ACTIONS(5715), 1, + anon_sym_EQ, + STATE(2888), 1, + aux_sym_type_parameters_repeat1, + STATE(2781), 2, sym_line_comment, sym_block_comment, - [81717] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [83873] = 7, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5858), 1, + ACTIONS(4989), 1, + anon_sym_where, + ACTIONS(5047), 1, anon_sym_LBRACE, - ACTIONS(5860), 1, - anon_sym_for, - ACTIONS(5862), 1, - anon_sym_loop, - ACTIONS(5864), 1, - anon_sym_while, - STATE(2709), 2, + STATE(671), 1, + sym_declaration_list, + STATE(3188), 1, + sym_where_clause, + STATE(2782), 2, sym_line_comment, sym_block_comment, - [81740] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [83896] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3251), 1, - anon_sym_LT2, - ACTIONS(3541), 1, - anon_sym_COLON_COLON, - ACTIONS(4848), 1, - anon_sym_BANG, - STATE(1048), 1, - sym_type_arguments, - STATE(2710), 2, + ACTIONS(6011), 1, + anon_sym_LPAREN, + ACTIONS(6013), 1, + anon_sym_LBRACE, + STATE(3302), 1, + sym_macro_def_args, + STATE(2783), 2, sym_line_comment, sym_block_comment, - [81763] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [83916] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4243), 1, - anon_sym_LBRACE, - STATE(2889), 1, - sym_use_list, - ACTIONS(5866), 2, - sym_identifier, - sym_super, - STATE(2711), 2, + ACTIONS(5624), 1, + anon_sym_COMMA, + ACTIONS(5626), 1, + anon_sym_GT, + STATE(2888), 1, + aux_sym_type_parameters_repeat1, + STATE(2784), 2, sym_line_comment, sym_block_comment, - [81784] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [83936] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - STATE(381), 1, - sym_block, - STATE(3510), 1, - sym_label, - STATE(2712), 2, + ACTIONS(6011), 1, + anon_sym_LPAREN, + ACTIONS(6015), 1, + anon_sym_LBRACE, + STATE(3318), 1, + sym_macro_def_args, + STATE(2785), 2, sym_line_comment, sym_block_comment, - [81807] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [83956] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4463), 1, - anon_sym_DOT_DOT, - ACTIONS(5101), 1, - anon_sym_COLON_COLON, - ACTIONS(4465), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2713), 2, + ACTIONS(4527), 1, + anon_sym_LT2, + ACTIONS(6017), 1, + anon_sym_LBRACE, + STATE(1968), 1, + sym_type_arguments, + STATE(2786), 2, sym_line_comment, sym_block_comment, - [81828] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [83976] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5868), 1, + ACTIONS(4957), 1, anon_sym_LBRACE, - ACTIONS(5870), 1, - anon_sym_for, - ACTIONS(5872), 1, - anon_sym_loop, - ACTIONS(5874), 1, - anon_sym_while, - STATE(2714), 2, + ACTIONS(6019), 1, + anon_sym_SEMI, + STATE(1101), 1, + sym_declaration_list, + STATE(2787), 2, sym_line_comment, sym_block_comment, - [81851] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [83996] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, + ACTIONS(6021), 1, + anon_sym_LPAREN, + ACTIONS(6023), 1, + anon_sym_LBRACK, + ACTIONS(6025), 1, anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - STATE(1381), 1, - sym_block, - STATE(3539), 1, - sym_label, - STATE(2715), 2, + STATE(2788), 2, sym_line_comment, sym_block_comment, - [81874] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [84016] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5801), 1, - anon_sym_COLON_COLON, - STATE(2716), 2, + ACTIONS(1014), 1, + anon_sym_RPAREN, + ACTIONS(6027), 1, + anon_sym_COMMA, + STATE(2656), 1, + aux_sym_arguments_repeat1, + STATE(2789), 2, sym_line_comment, sym_block_comment, - ACTIONS(4674), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [81893] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [84036] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5175), 1, + ACTIONS(6029), 1, anon_sym_LPAREN, - ACTIONS(5177), 1, + ACTIONS(6031), 1, anon_sym_LBRACK, - ACTIONS(5181), 1, + ACTIONS(6033), 1, anon_sym_LBRACE, - STATE(1387), 1, - sym_delim_token_tree, - STATE(2717), 2, + STATE(2790), 2, sym_line_comment, sym_block_comment, - [81916] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [84056] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5821), 1, + ACTIONS(3403), 1, + anon_sym_LBRACE, + ACTIONS(6035), 1, anon_sym_COLON_COLON, - STATE(2718), 2, + STATE(1473), 1, + sym_field_initializer_list, + STATE(2791), 2, sym_line_comment, sym_block_comment, - ACTIONS(4690), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [81935] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [84076] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5876), 1, + anon_sym_where, + ACTIONS(6037), 1, anon_sym_SEMI, - STATE(3441), 1, + STATE(3515), 1, sym_where_clause, - STATE(2719), 2, + STATE(2792), 2, sym_line_comment, sym_block_comment, - [81958] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [84096] = 6, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4744), 1, - anon_sym_for, - ACTIONS(5598), 1, - anon_sym_COLON_COLON, - STATE(1931), 1, - sym_type_arguments, - STATE(2720), 2, - sym_line_comment, - sym_block_comment, - [81981] = 7, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - STATE(3384), 1, - sym_block, - STATE(3539), 1, - sym_label, - STATE(2721), 2, + ACTIONS(5547), 1, + anon_sym_COMMA, + ACTIONS(6039), 1, + anon_sym_PIPE, + STATE(2977), 1, + aux_sym_closure_parameters_repeat1, + STATE(2793), 2, sym_line_comment, sym_block_comment, - [82004] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [84116] = 6, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(338), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - STATE(1050), 1, - sym_block, - STATE(3539), 1, - sym_label, - STATE(2722), 2, - sym_line_comment, - sym_block_comment, - [82027] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5840), 1, - anon_sym_COLON_COLON, - STATE(2723), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4690), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [82046] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4989), 1, + anon_sym_where, + ACTIONS(6041), 1, + anon_sym_SEMI, + STATE(3590), 1, + sym_where_clause, + STATE(2794), 2, + sym_line_comment, + sym_block_comment, + [84136] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, + ACTIONS(4527), 1, anon_sym_LT2, - ACTIONS(5598), 1, - anon_sym_COLON_COLON, - ACTIONS(5878), 1, + ACTIONS(4973), 1, anon_sym_for, - STATE(1931), 1, + STATE(1968), 1, sym_type_arguments, - STATE(2724), 2, + STATE(2795), 2, sym_line_comment, sym_block_comment, - [82069] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [84156] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, + ACTIONS(4527), 1, anon_sym_LT2, - ACTIONS(5598), 1, + ACTIONS(5039), 1, anon_sym_COLON_COLON, - ACTIONS(5880), 1, - anon_sym_for, - STATE(1931), 1, + STATE(1966), 1, sym_type_arguments, - STATE(2725), 2, + STATE(2796), 2, sym_line_comment, sym_block_comment, - [82092] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [84176] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5850), 1, - anon_sym_COLON_COLON, - STATE(2726), 2, + ACTIONS(5411), 1, + anon_sym_COMMA, + ACTIONS(5413), 1, + anon_sym_GT, + STATE(3068), 1, + aux_sym_type_parameters_repeat1, + STATE(2797), 2, sym_line_comment, sym_block_comment, - ACTIONS(4690), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [82111] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [84196] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5623), 1, - anon_sym_LPAREN, - ACTIONS(5625), 1, - anon_sym_LBRACK, - ACTIONS(5627), 1, - anon_sym_LBRACE, - STATE(397), 1, - sym_delim_token_tree, - STATE(2727), 2, + ACTIONS(5057), 1, + anon_sym_PLUS, + ACTIONS(6043), 1, + anon_sym_SEMI, + ACTIONS(6045), 1, + anon_sym_RBRACK, + STATE(2798), 2, sym_line_comment, sym_block_comment, - [82134] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [84216] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(5598), 1, - anon_sym_COLON_COLON, - ACTIONS(5882), 1, - anon_sym_for, - STATE(1931), 1, - sym_type_arguments, - STATE(2728), 2, + ACTIONS(4989), 1, + anon_sym_where, + ACTIONS(6047), 1, + anon_sym_SEMI, + STATE(3516), 1, + sym_where_clause, + STATE(2799), 2, sym_line_comment, sym_block_comment, - [82157] = 7, - ACTIONS(101), 1, + [84236] = 6, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5047), 1, + anon_sym_LBRACE, + ACTIONS(6049), 1, + anon_sym_SEMI, + STATE(695), 1, + sym_declaration_list, + STATE(2800), 2, + sym_line_comment, + sym_block_comment, + [84256] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, + ACTIONS(4527), 1, anon_sym_LT2, - ACTIONS(5598), 1, + ACTIONS(6051), 1, anon_sym_COLON_COLON, - ACTIONS(5884), 1, - anon_sym_for, - STATE(1931), 1, + STATE(1966), 1, sym_type_arguments, - STATE(2729), 2, + STATE(2801), 2, sym_line_comment, sym_block_comment, - [82180] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [84276] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(400), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_SQUOTE, - STATE(1752), 1, - sym_block, - STATE(3591), 1, - sym_label, - STATE(2730), 2, + ACTIONS(6053), 1, + sym_identifier, + ACTIONS(6055), 1, + anon_sym_await, + ACTIONS(6057), 1, + sym_integer_literal, + STATE(2802), 2, sym_line_comment, sym_block_comment, - [82203] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [84296] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2731), 2, + ACTIONS(1603), 1, + anon_sym_GT, + ACTIONS(6059), 1, + anon_sym_COMMA, + STATE(2805), 1, + aux_sym_type_arguments_repeat1, + STATE(2803), 2, sym_line_comment, sym_block_comment, - ACTIONS(5886), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [82219] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [84316] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, - anon_sym_LBRACE, - ACTIONS(5888), 1, + ACTIONS(5057), 1, + anon_sym_PLUS, + ACTIONS(6061), 1, anon_sym_SEMI, - STATE(1144), 1, - sym_declaration_list, - STATE(2732), 2, + ACTIONS(6063), 1, + anon_sym_EQ, + STATE(2804), 2, sym_line_comment, sym_block_comment, - [82239] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [84336] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, - anon_sym_LBRACE, - ACTIONS(5890), 1, - anon_sym_SEMI, - STATE(1146), 1, - sym_declaration_list, - STATE(2733), 2, + ACTIONS(5654), 1, + anon_sym_GT, + ACTIONS(6065), 1, + anon_sym_COMMA, + STATE(2805), 3, sym_line_comment, sym_block_comment, - [82259] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + aux_sym_type_arguments_repeat1, + [84354] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, + ACTIONS(5057), 1, anon_sym_PLUS, - ACTIONS(5892), 1, + ACTIONS(6068), 1, anon_sym_SEMI, - ACTIONS(5894), 1, + ACTIONS(6070), 1, anon_sym_RBRACK, - STATE(2734), 2, + STATE(2806), 2, sym_line_comment, sym_block_comment, - [82279] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [84374] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4878), 1, - anon_sym_LBRACE, - ACTIONS(5896), 1, - anon_sym_SEMI, - STATE(715), 1, - sym_declaration_list, - STATE(2735), 2, + ACTIONS(6074), 1, + anon_sym_COLON, + ACTIONS(6072), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(2807), 2, sym_line_comment, sym_block_comment, - [82299] = 6, - ACTIONS(101), 1, + [84392] = 6, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(6076), 1, + anon_sym_RBRACE, + ACTIONS(6078), 1, + anon_sym_COMMA, + STATE(2925), 1, + aux_sym_field_initializer_list_repeat1, + STATE(2808), 2, + sym_line_comment, + sym_block_comment, + [84412] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, - anon_sym_LBRACE, - ACTIONS(5898), 1, - anon_sym_SEMI, - STATE(1152), 1, - sym_declaration_list, - STATE(2736), 2, + ACTIONS(5577), 1, + anon_sym_PIPE, + ACTIONS(6080), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(2809), 2, sym_line_comment, sym_block_comment, - [82319] = 6, - ACTIONS(101), 1, + [84430] = 6, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5973), 1, + anon_sym_RPAREN, + ACTIONS(5975), 1, + anon_sym_COMMA, + STATE(2934), 1, + aux_sym_tuple_pattern_repeat1, + STATE(2810), 2, + sym_line_comment, + sym_block_comment, + [84450] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, + ACTIONS(4957), 1, anon_sym_LBRACE, - ACTIONS(5900), 1, + ACTIONS(6082), 1, anon_sym_SEMI, - STATE(1154), 1, + STATE(1068), 1, sym_declaration_list, - STATE(2737), 2, + STATE(2811), 2, sym_line_comment, sym_block_comment, - [82339] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [84470] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5902), 1, + ACTIONS(6084), 1, anon_sym_RBRACE, - ACTIONS(5904), 1, + ACTIONS(6086), 1, anon_sym_COMMA, - STATE(2866), 1, - aux_sym_struct_pattern_repeat1, - STATE(2738), 2, + STATE(2812), 3, sym_line_comment, sym_block_comment, - [82359] = 6, - ACTIONS(101), 1, + aux_sym_field_initializer_list_repeat1, + [84488] = 6, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4991), 1, + anon_sym_RBRACE, + ACTIONS(6089), 1, + anon_sym_COMMA, + STATE(2898), 1, + aux_sym_field_declaration_list_repeat1, + STATE(2813), 2, + sym_line_comment, + sym_block_comment, + [84508] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5906), 1, - anon_sym_SEMI, - ACTIONS(5908), 1, - anon_sym_EQ, - STATE(2739), 2, + ACTIONS(6091), 1, + anon_sym_RBRACE, + ACTIONS(6093), 1, + anon_sym_COMMA, + STATE(2814), 3, sym_line_comment, sym_block_comment, - [82379] = 4, - ACTIONS(101), 1, + aux_sym_struct_pattern_repeat1, + [84526] = 6, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1006), 1, + anon_sym_RBRACK, + ACTIONS(4137), 1, + anon_sym_COMMA, + STATE(2656), 1, + aux_sym_arguments_repeat1, + STATE(2815), 2, + sym_line_comment, + sym_block_comment, + [84546] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2740), 2, + ACTIONS(5961), 1, + anon_sym_RPAREN, + ACTIONS(5963), 1, + anon_sym_COMMA, + STATE(2843), 1, + aux_sym_tuple_pattern_repeat1, + STATE(2816), 2, sym_line_comment, sym_block_comment, - ACTIONS(5910), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [82395] = 6, - ACTIONS(101), 1, + [84566] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(6096), 1, + anon_sym_RBRACE, + ACTIONS(6098), 1, + anon_sym_COMMA, + STATE(2817), 3, + sym_line_comment, + sym_block_comment, + aux_sym_use_list_repeat1, + [84584] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5912), 1, + ACTIONS(6011), 1, anon_sym_LPAREN, - ACTIONS(5914), 1, - anon_sym_LBRACK, - ACTIONS(5916), 1, + ACTIONS(6101), 1, anon_sym_LBRACE, - STATE(2741), 2, + STATE(3257), 1, + sym_macro_def_args, + STATE(2818), 2, sym_line_comment, sym_block_comment, - [82415] = 6, - ACTIONS(101), 1, + [84604] = 4, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2819), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6103), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [84620] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3169), 1, + ACTIONS(4628), 1, + anon_sym_COLON_COLON, + ACTIONS(5342), 2, anon_sym_RPAREN, - ACTIONS(5918), 1, anon_sym_COMMA, - STATE(2880), 1, - aux_sym_tuple_type_repeat1, - STATE(2742), 2, + STATE(2820), 2, sym_line_comment, sym_block_comment, - [82435] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [84638] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, + ACTIONS(6011), 1, + anon_sym_LPAREN, + ACTIONS(6105), 1, anon_sym_LBRACE, - ACTIONS(5920), 1, - anon_sym_SEMI, - STATE(1170), 1, - sym_declaration_list, - STATE(2743), 2, + STATE(3255), 1, + sym_macro_def_args, + STATE(2821), 2, sym_line_comment, sym_block_comment, - [82455] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [84658] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, - anon_sym_LBRACE, - ACTIONS(5922), 1, + ACTIONS(4989), 1, + anon_sym_where, + ACTIONS(6107), 1, anon_sym_SEMI, - STATE(1172), 1, - sym_declaration_list, - STATE(2744), 2, + STATE(3701), 1, + sym_where_clause, + STATE(2822), 2, sym_line_comment, sym_block_comment, - [82475] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [84678] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4878), 1, - anon_sym_LBRACE, - ACTIONS(5924), 1, - anon_sym_SEMI, - STATE(556), 1, - sym_declaration_list, - STATE(2745), 2, + ACTIONS(5057), 1, + anon_sym_PLUS, + ACTIONS(5959), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2823), 2, sym_line_comment, sym_block_comment, - [82495] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [84696] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2746), 2, + STATE(2824), 2, sym_line_comment, sym_block_comment, - ACTIONS(5926), 3, + ACTIONS(6109), 3, + anon_sym_COMMA, anon_sym_EQ, anon_sym_GT, - anon_sym_COMMA, - [82511] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [84712] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1592), 1, - anon_sym_GT, - ACTIONS(5928), 1, + ACTIONS(1052), 1, + anon_sym_RBRACK, + ACTIONS(4129), 1, anon_sym_COMMA, - STATE(2749), 1, - aux_sym_type_arguments_repeat1, - STATE(2747), 2, + STATE(2656), 1, + aux_sym_arguments_repeat1, + STATE(2825), 2, sym_line_comment, sym_block_comment, - [82531] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [84732] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5932), 1, - anon_sym_COLON, - ACTIONS(5930), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(2748), 2, + ACTIONS(5047), 1, + anon_sym_LBRACE, + ACTIONS(6111), 1, + anon_sym_SEMI, + STATE(629), 1, + sym_declaration_list, + STATE(2826), 2, sym_line_comment, sym_block_comment, - [82549] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [84752] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5373), 1, - anon_sym_GT, - ACTIONS(5934), 1, - anon_sym_COMMA, - STATE(2749), 3, + ACTIONS(4989), 1, + anon_sym_where, + ACTIONS(6113), 1, + anon_sym_SEMI, + STATE(3666), 1, + sym_where_clause, + STATE(2827), 2, sym_line_comment, sym_block_comment, - aux_sym_type_arguments_repeat1, - [82567] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [84772] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4535), 1, - anon_sym_COLON_COLON, - ACTIONS(5937), 2, + ACTIONS(5959), 1, anon_sym_RPAREN, + ACTIONS(6115), 1, anon_sym_COMMA, - STATE(2750), 2, + STATE(2828), 3, sym_line_comment, sym_block_comment, - [82585] = 6, - ACTIONS(101), 1, + aux_sym_parameters_repeat1, + [84790] = 6, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4527), 1, + anon_sym_LT2, + ACTIONS(6118), 1, + anon_sym_for, + STATE(1968), 1, + sym_type_arguments, + STATE(2829), 2, + sym_line_comment, + sym_block_comment, + [84810] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5438), 1, - anon_sym_RPAREN, - ACTIONS(5440), 1, + STATE(2830), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6120), 3, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(2872), 1, - aux_sym_parameters_repeat1, - STATE(2751), 2, + [84826] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(6122), 1, + sym_identifier, + ACTIONS(6124), 1, + anon_sym_ref, + ACTIONS(6126), 1, + sym_mutable_specifier, + STATE(2831), 2, sym_line_comment, sym_block_comment, - [82605] = 6, - ACTIONS(101), 1, + [84846] = 6, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(6128), 1, + anon_sym_RBRACE, + ACTIONS(6130), 1, + anon_sym_COMMA, + STATE(3052), 1, + aux_sym_use_list_repeat1, + STATE(2832), 2, + sym_line_comment, + sym_block_comment, + [84866] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3039), 1, + ACTIONS(1483), 1, anon_sym_RPAREN, - ACTIONS(5939), 1, + ACTIONS(6132), 1, anon_sym_COMMA, - STATE(2680), 1, - aux_sym_slice_pattern_repeat1, - STATE(2752), 2, + STATE(2828), 1, + aux_sym_parameters_repeat1, + STATE(2833), 2, sym_line_comment, sym_block_comment, - [82625] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [84886] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(5941), 1, - anon_sym_COLON_COLON, - STATE(1930), 1, - sym_type_arguments, - STATE(2753), 2, + STATE(2834), 2, sym_line_comment, sym_block_comment, - [82645] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6134), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [84902] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4535), 1, - anon_sym_COLON_COLON, - ACTIONS(5309), 2, - anon_sym_RPAREN, + ACTIONS(1016), 1, + anon_sym_RBRACK, + ACTIONS(4149), 1, anon_sym_COMMA, - STATE(2754), 2, + STATE(2656), 1, + aux_sym_arguments_repeat1, + STATE(2835), 2, sym_line_comment, sym_block_comment, - [82663] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [84922] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4878), 1, - anon_sym_LBRACE, - ACTIONS(5943), 1, - anon_sym_SEMI, - STATE(695), 1, - sym_declaration_list, - STATE(2755), 2, + ACTIONS(6136), 1, + sym_identifier, + ACTIONS(6138), 2, + anon_sym_default, + anon_sym_union, + STATE(2836), 2, sym_line_comment, sym_block_comment, - [82683] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [84940] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2756), 2, + ACTIONS(6140), 1, + sym_identifier, + ACTIONS(6142), 1, + anon_sym_await, + ACTIONS(6144), 1, + sym_integer_literal, + STATE(2837), 2, sym_line_comment, sym_block_comment, - ACTIONS(4806), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [82699] = 6, - ACTIONS(27), 1, - anon_sym_PIPE, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [84960] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5945), 1, - anon_sym_move, - STATE(217), 1, - sym_closure_parameters, - STATE(2757), 2, + ACTIONS(3047), 1, + anon_sym_SQUOTE, + ACTIONS(6146), 1, + anon_sym_GT, + STATE(3287), 1, + sym_lifetime, + STATE(2838), 2, sym_line_comment, sym_block_comment, - [82719] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [84980] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5947), 1, - anon_sym_SEMI, - ACTIONS(5949), 1, - anon_sym_EQ, - STATE(2758), 2, + ACTIONS(4991), 1, + anon_sym_RBRACE, + ACTIONS(6089), 1, + anon_sym_COMMA, + STATE(2900), 1, + aux_sym_field_declaration_list_repeat1, + STATE(2839), 2, sym_line_comment, sym_block_comment, - [82739] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [85000] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2759), 2, + STATE(2840), 2, sym_line_comment, sym_block_comment, - ACTIONS(5951), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [82755] = 5, - ACTIONS(101), 1, + ACTIONS(6148), 3, + sym_string_content, + anon_sym_DQUOTE, + sym_escape_sequence, + [85016] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(6150), 1, + anon_sym_COMMA, + ACTIONS(6153), 1, + anon_sym_GT, + STATE(2841), 3, + sym_line_comment, + sym_block_comment, + aux_sym_for_lifetimes_repeat1, + [85034] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5703), 2, + ACTIONS(6155), 1, anon_sym_RPAREN, + ACTIONS(6157), 1, anon_sym_COMMA, - STATE(2760), 2, + STATE(2842), 3, sym_line_comment, sym_block_comment, - [82773] = 4, - ACTIONS(101), 1, + aux_sym_tuple_type_repeat1, + [85052] = 6, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3029), 1, + anon_sym_RPAREN, + ACTIONS(6160), 1, + anon_sym_COMMA, + STATE(2960), 1, + aux_sym_tuple_pattern_repeat1, + STATE(2843), 2, + sym_line_comment, + sym_block_comment, + [85072] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2761), 2, + ACTIONS(6162), 1, + anon_sym_RPAREN, + ACTIONS(6164), 1, + anon_sym_COMMA, + STATE(2887), 1, + aux_sym_ordered_field_declaration_list_repeat1, + STATE(2844), 2, sym_line_comment, sym_block_comment, - ACTIONS(4808), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [82789] = 6, - ACTIONS(101), 1, + [85092] = 6, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3095), 1, + anon_sym_RBRACK, + ACTIONS(6166), 1, + anon_sym_COMMA, + STATE(2619), 1, + aux_sym_slice_pattern_repeat1, + STATE(2845), 2, + sym_line_comment, + sym_block_comment, + [85112] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5953), 1, + ACTIONS(6168), 1, anon_sym_RBRACE, - ACTIONS(5955), 1, + ACTIONS(6170), 1, anon_sym_COMMA, - STATE(2884), 1, - aux_sym_enum_variant_list_repeat2, - STATE(2762), 2, + STATE(2846), 3, sym_line_comment, sym_block_comment, - [82809] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + aux_sym_enum_variant_list_repeat2, + [85130] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, + ACTIONS(5057), 1, anon_sym_PLUS, - ACTIONS(5610), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2763), 2, + ACTIONS(6173), 1, + anon_sym_SEMI, + ACTIONS(6175), 1, + anon_sym_EQ, + STATE(2847), 2, sym_line_comment, sym_block_comment, - [82827] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [85150] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5139), 1, + ACTIONS(6177), 1, anon_sym_RBRACE, - ACTIONS(5957), 1, + ACTIONS(6179), 1, anon_sym_COMMA, - STATE(2844), 1, - aux_sym_struct_pattern_repeat1, - STATE(2764), 2, + STATE(2942), 1, + aux_sym_field_initializer_list_repeat1, + STATE(2848), 2, sym_line_comment, sym_block_comment, - [82847] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [85170] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5961), 1, - anon_sym_COLON, - ACTIONS(5959), 2, + ACTIONS(6183), 1, + anon_sym_EQ, + ACTIONS(6181), 2, anon_sym_RBRACE, anon_sym_COMMA, - STATE(2765), 2, + STATE(2849), 2, sym_line_comment, sym_block_comment, - [82865] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [85188] = 4, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(2766), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4766), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [82881] = 6, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4878), 1, - anon_sym_LBRACE, - ACTIONS(5963), 1, - anon_sym_SEMI, - STATE(738), 1, - sym_declaration_list, - STATE(2767), 2, + STATE(2850), 2, sym_line_comment, sym_block_comment, - [82901] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5496), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [85204] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5967), 1, + ACTIONS(6187), 1, anon_sym_COLON, - ACTIONS(5965), 2, + ACTIONS(6185), 2, anon_sym_RBRACE, anon_sym_COMMA, - STATE(2768), 2, + STATE(2851), 2, sym_line_comment, sym_block_comment, - [82919] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [85222] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5971), 1, - anon_sym_EQ, - ACTIONS(5969), 2, + ACTIONS(6189), 1, anon_sym_RBRACE, + ACTIONS(6191), 1, anon_sym_COMMA, - STATE(2769), 2, + STATE(2972), 1, + aux_sym_struct_pattern_repeat1, + STATE(2852), 2, sym_line_comment, sym_block_comment, - [82937] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [85242] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5973), 1, - anon_sym_RBRACE, - ACTIONS(5975), 1, - anon_sym_COMMA, - STATE(2936), 1, - aux_sym_field_initializer_list_repeat1, - STATE(2770), 2, + ACTIONS(4800), 1, + anon_sym_COLON_COLON, + ACTIONS(4932), 1, + anon_sym_BANG, + ACTIONS(6193), 1, + sym_identifier, + STATE(2853), 2, sym_line_comment, sym_block_comment, - [82957] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [85262] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4935), 1, + ACTIONS(4946), 1, anon_sym_RBRACE, - ACTIONS(5977), 1, + ACTIONS(6195), 1, anon_sym_COMMA, - STATE(2804), 1, + STATE(2846), 1, aux_sym_enum_variant_list_repeat2, - STATE(2771), 2, + STATE(2854), 2, sym_line_comment, sym_block_comment, - [82977] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [85282] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4652), 1, - anon_sym_GT, - ACTIONS(5979), 1, - anon_sym_COMMA, - STATE(2860), 1, - aux_sym_type_parameters_repeat1, - STATE(2772), 2, + ACTIONS(6011), 1, + anon_sym_LPAREN, + ACTIONS(6197), 1, + anon_sym_LBRACE, + STATE(3168), 1, + sym_macro_def_args, + STATE(2855), 2, sym_line_comment, sym_block_comment, - [82997] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [85302] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4654), 1, - anon_sym_GT, - ACTIONS(5484), 1, + ACTIONS(6199), 1, + anon_sym_RBRACE, + ACTIONS(6201), 1, anon_sym_COMMA, - STATE(2860), 1, - aux_sym_type_parameters_repeat1, - STATE(2773), 2, + STATE(2976), 1, + aux_sym_struct_pattern_repeat1, + STATE(2856), 2, sym_line_comment, sym_block_comment, - [83017] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [85322] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1003), 1, - anon_sym_RBRACK, - ACTIONS(4009), 1, - anon_sym_COMMA, - STATE(2589), 1, - aux_sym_arguments_repeat1, - STATE(2774), 2, + ACTIONS(6011), 1, + anon_sym_LPAREN, + ACTIONS(6203), 1, + anon_sym_LBRACE, + STATE(3172), 1, + sym_macro_def_args, + STATE(2857), 2, sym_line_comment, sym_block_comment, - [83037] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [85342] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4654), 1, - anon_sym_GT, - ACTIONS(5484), 1, + ACTIONS(3253), 1, + anon_sym_RPAREN, + ACTIONS(6205), 1, anon_sym_COMMA, - STATE(2891), 1, - aux_sym_type_parameters_repeat1, - STATE(2775), 2, + STATE(2842), 1, + aux_sym_tuple_type_repeat1, + STATE(2858), 2, sym_line_comment, sym_block_comment, - [83057] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [85362] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2776), 2, + ACTIONS(5047), 1, + anon_sym_LBRACE, + ACTIONS(6207), 1, + anon_sym_SEMI, + STATE(696), 1, + sym_declaration_list, + STATE(2859), 2, sym_line_comment, sym_block_comment, - ACTIONS(5981), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [83073] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [85382] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1035), 1, - anon_sym_RBRACK, - ACTIONS(4061), 1, - anon_sym_COMMA, - STATE(2589), 1, - aux_sym_arguments_repeat1, - STATE(2777), 2, + ACTIONS(5047), 1, + anon_sym_LBRACE, + ACTIONS(6209), 1, + anon_sym_SEMI, + STATE(700), 1, + sym_declaration_list, + STATE(2860), 2, sym_line_comment, sym_block_comment, - [83093] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [85402] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5460), 1, - anon_sym_GT, - ACTIONS(5462), 1, - anon_sym_COMMA, - STATE(2773), 1, - aux_sym_type_parameters_repeat1, - STATE(2778), 2, + ACTIONS(5047), 1, + anon_sym_LBRACE, + ACTIONS(6211), 1, + anon_sym_SEMI, + STATE(746), 1, + sym_declaration_list, + STATE(2861), 2, sym_line_comment, sym_block_comment, - [83113] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [85422] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2779), 2, + ACTIONS(5057), 1, + anon_sym_PLUS, + ACTIONS(6213), 2, + anon_sym_COMMA, + anon_sym_GT, + STATE(2862), 2, sym_line_comment, sym_block_comment, - ACTIONS(5983), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [83129] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [85440] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(5985), 1, - anon_sym_SEMI, - ACTIONS(5987), 1, - anon_sym_RBRACK, - STATE(2780), 2, + ACTIONS(5565), 1, + anon_sym_RPAREN, + ACTIONS(5567), 1, + anon_sym_COMMA, + STATE(2981), 1, + aux_sym_parameters_repeat1, + STATE(2863), 2, sym_line_comment, sym_block_comment, - [83149] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [85460] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, + ACTIONS(4957), 1, anon_sym_LBRACE, - ACTIONS(5989), 1, + ACTIONS(6215), 1, anon_sym_SEMI, - STATE(1330), 1, + STATE(1164), 1, sym_declaration_list, - STATE(2781), 2, + STATE(2864), 2, sym_line_comment, sym_block_comment, - [83169] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [85480] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5991), 1, - sym_identifier, - ACTIONS(5993), 1, - anon_sym_ref, - ACTIONS(5995), 1, - sym_mutable_specifier, - STATE(2782), 2, + STATE(2865), 2, sym_line_comment, sym_block_comment, - [83189] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4935), 1, + ACTIONS(6217), 3, + anon_sym_SEMI, anon_sym_RBRACE, - ACTIONS(5977), 1, anon_sym_COMMA, - STATE(2832), 1, - aux_sym_enum_variant_list_repeat2, - STATE(2783), 2, + [85496] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5047), 1, + anon_sym_LBRACE, + ACTIONS(6219), 1, + anon_sym_SEMI, + STATE(579), 1, + sym_declaration_list, + STATE(2866), 2, sym_line_comment, sym_block_comment, - [83209] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [85516] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3251), 1, - anon_sym_LT2, - ACTIONS(4883), 1, - anon_sym_COLON_COLON, - STATE(1048), 1, - sym_type_arguments, - STATE(2784), 2, + ACTIONS(5715), 1, + anon_sym_EQ, + ACTIONS(5904), 2, + anon_sym_COMMA, + anon_sym_GT, + STATE(2867), 2, sym_line_comment, sym_block_comment, - [83229] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [85534] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2785), 2, + ACTIONS(5047), 1, + anon_sym_LBRACE, + ACTIONS(6221), 1, + anon_sym_SEMI, + STATE(707), 1, + sym_declaration_list, + STATE(2868), 2, sym_line_comment, sym_block_comment, - ACTIONS(4796), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [83245] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [85554] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_GT, - ACTIONS(5371), 1, - anon_sym_COMMA, - STATE(2860), 1, - aux_sym_type_parameters_repeat1, - STATE(2786), 2, + ACTIONS(5047), 1, + anon_sym_LBRACE, + ACTIONS(6223), 1, + anon_sym_SEMI, + STATE(711), 1, + sym_declaration_list, + STATE(2869), 2, sym_line_comment, sym_block_comment, - [83265] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [85574] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, + ACTIONS(5047), 1, anon_sym_LBRACE, - ACTIONS(5997), 1, + ACTIONS(6225), 1, anon_sym_SEMI, - STATE(1246), 1, + STATE(545), 1, sym_declaration_list, - STATE(2787), 2, + STATE(2870), 2, sym_line_comment, sym_block_comment, - [83285] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [85594] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(983), 1, - anon_sym_RBRACK, - ACTIONS(4071), 1, - anon_sym_COMMA, - STATE(2589), 1, - aux_sym_arguments_repeat1, - STATE(2788), 2, + ACTIONS(6229), 1, + anon_sym_AMP_AMP, + ACTIONS(6227), 2, + anon_sym_LBRACE, + anon_sym_SQUOTE, + STATE(2871), 2, sym_line_comment, sym_block_comment, - [83305] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [85612] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, + ACTIONS(5057), 1, anon_sym_PLUS, - ACTIONS(5999), 1, + ACTIONS(6231), 1, anon_sym_SEMI, - ACTIONS(6001), 1, + ACTIONS(6233), 1, anon_sym_EQ, - STATE(2789), 2, + STATE(2872), 2, sym_line_comment, sym_block_comment, - [83325] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [85632] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1029), 1, - anon_sym_RPAREN, - ACTIONS(6003), 1, - anon_sym_COMMA, - STATE(2589), 1, - aux_sym_arguments_repeat1, - STATE(2790), 2, + ACTIONS(5047), 1, + anon_sym_LBRACE, + ACTIONS(6235), 1, + anon_sym_SEMI, + STATE(563), 1, + sym_declaration_list, + STATE(2873), 2, sym_line_comment, sym_block_comment, - [83345] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [85652] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6005), 1, - anon_sym_RBRACE, - ACTIONS(6007), 1, + ACTIONS(4724), 1, + anon_sym_GT, + ACTIONS(6237), 1, anon_sym_COMMA, - STATE(2914), 1, - aux_sym_field_declaration_list_repeat1, - STATE(2791), 2, + STATE(2879), 1, + aux_sym_type_parameters_repeat1, + STATE(2874), 2, sym_line_comment, sym_block_comment, - [83365] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [85672] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4872), 1, - anon_sym_LT, - ACTIONS(6009), 1, - anon_sym_EQ, - STATE(3472), 1, - sym_type_parameters, - STATE(2792), 2, + ACTIONS(4734), 1, + anon_sym_GT, + ACTIONS(6239), 1, + anon_sym_COMMA, + STATE(2879), 1, + aux_sym_type_parameters_repeat1, + STATE(2875), 2, sym_line_comment, sym_block_comment, - [83385] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [85692] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(6011), 1, - anon_sym_SEMI, - STATE(3377), 1, - sym_where_clause, - STATE(2793), 2, + ACTIONS(6229), 1, + anon_sym_AMP_AMP, + ACTIONS(4317), 2, + anon_sym_LBRACE, + anon_sym_SQUOTE, + STATE(2876), 2, sym_line_comment, sym_block_comment, - [83405] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [85710] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2794), 2, + ACTIONS(6241), 1, + anon_sym_RBRACE, + ACTIONS(6243), 1, + anon_sym_COMMA, + STATE(2987), 1, + aux_sym_enum_variant_list_repeat2, + STATE(2877), 2, sym_line_comment, sym_block_comment, - ACTIONS(4810), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [83421] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [85730] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3181), 1, - anon_sym_RPAREN, - ACTIONS(6013), 1, + ACTIONS(5057), 1, + anon_sym_PLUS, + ACTIONS(6245), 2, anon_sym_COMMA, - STATE(2880), 1, - aux_sym_tuple_type_repeat1, - STATE(2795), 2, + anon_sym_GT, + STATE(2878), 2, sym_line_comment, sym_block_comment, - [83441] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [85748] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5610), 1, - anon_sym_RPAREN, - ACTIONS(6015), 1, + ACTIONS(5880), 1, + anon_sym_GT, + ACTIONS(6247), 1, anon_sym_COMMA, - STATE(2796), 3, + STATE(2879), 3, sym_line_comment, sym_block_comment, - aux_sym_parameters_repeat1, - [83459] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + aux_sym_type_parameters_repeat1, + [85766] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2797), 2, + ACTIONS(4987), 1, + anon_sym_LT, + ACTIONS(6250), 1, + anon_sym_EQ, + STATE(3552), 1, + sym_type_parameters, + STATE(2880), 2, sym_line_comment, sym_block_comment, - ACTIONS(4816), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [83475] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [85786] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5426), 1, - anon_sym_RPAREN, - ACTIONS(5428), 1, + ACTIONS(5057), 1, + anon_sym_PLUS, + ACTIONS(6252), 2, anon_sym_COMMA, - STATE(2809), 1, - aux_sym_parameters_repeat1, - STATE(2798), 2, + anon_sym_GT, + STATE(2881), 2, sym_line_comment, sym_block_comment, - [83495] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [85804] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(6018), 2, + ACTIONS(6254), 1, anon_sym_RPAREN, + ACTIONS(6256), 1, anon_sym_COMMA, - STATE(2799), 2, + STATE(2887), 1, + aux_sym_ordered_field_declaration_list_repeat1, + STATE(2882), 2, sym_line_comment, sym_block_comment, - [83513] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [85824] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2800), 2, + ACTIONS(5715), 1, + anon_sym_EQ, + ACTIONS(5880), 2, + anon_sym_COMMA, + anon_sym_GT, + STATE(2883), 2, sym_line_comment, sym_block_comment, - ACTIONS(4856), 3, - anon_sym_EQ_GT, + [85842] = 6, + ACTIONS(29), 1, anon_sym_PIPE, - anon_sym_if, - [83529] = 6, - ACTIONS(101), 1, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(6258), 1, + anon_sym_move, + STATE(228), 1, + sym_closure_parameters, + STATE(2884), 2, + sym_line_comment, + sym_block_comment, + [85862] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(6020), 1, + ACTIONS(5057), 1, + anon_sym_PLUS, + ACTIONS(6260), 1, anon_sym_SEMI, - STATE(3383), 1, - sym_where_clause, - STATE(2801), 2, + ACTIONS(6262), 1, + anon_sym_EQ, + STATE(2885), 2, sym_line_comment, sym_block_comment, - [83549] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [85882] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2802), 2, + ACTIONS(4728), 1, + anon_sym_GT, + ACTIONS(6264), 1, + anon_sym_COMMA, + STATE(2879), 1, + aux_sym_type_parameters_repeat1, + STATE(2886), 2, sym_line_comment, sym_block_comment, - ACTIONS(4792), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [83565] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [85902] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2803), 2, + ACTIONS(6266), 1, + anon_sym_RPAREN, + ACTIONS(6268), 1, + anon_sym_COMMA, + STATE(2887), 3, sym_line_comment, sym_block_comment, - ACTIONS(4850), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [83581] = 5, - ACTIONS(101), 1, + aux_sym_ordered_field_declaration_list_repeat1, + [85920] = 6, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4726), 1, + anon_sym_GT, + ACTIONS(5689), 1, + anon_sym_COMMA, + STATE(2879), 1, + aux_sym_type_parameters_repeat1, + STATE(2888), 2, + sym_line_comment, + sym_block_comment, + [85940] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6022), 1, + ACTIONS(5027), 1, anon_sym_RBRACE, - ACTIONS(6024), 1, + ACTIONS(6271), 1, anon_sym_COMMA, - STATE(2804), 3, + STATE(2854), 1, + aux_sym_enum_variant_list_repeat2, + STATE(2889), 2, sym_line_comment, sym_block_comment, - aux_sym_enum_variant_list_repeat2, - [83599] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [85960] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1588), 1, + ACTIONS(4726), 1, anon_sym_GT, - ACTIONS(6027), 1, + ACTIONS(5689), 1, anon_sym_COMMA, - STATE(2815), 1, - aux_sym_type_arguments_repeat1, - STATE(2805), 2, + STATE(2997), 1, + aux_sym_type_parameters_repeat1, + STATE(2890), 2, sym_line_comment, sym_block_comment, - [83619] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [85980] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1588), 1, - anon_sym_GT, - ACTIONS(6027), 1, + ACTIONS(5057), 1, + anon_sym_PLUS, + ACTIONS(6273), 2, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(2749), 1, - aux_sym_type_arguments_repeat1, - STATE(2806), 2, + STATE(2891), 2, sym_line_comment, sym_block_comment, - [83639] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [85998] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5452), 1, - anon_sym_PIPE, - ACTIONS(6029), 2, + ACTIONS(5027), 1, anon_sym_RBRACE, + ACTIONS(6271), 1, anon_sym_COMMA, - STATE(2807), 2, + STATE(2846), 1, + aux_sym_enum_variant_list_repeat2, + STATE(2892), 2, sym_line_comment, sym_block_comment, - [83657] = 6, - ACTIONS(101), 1, + [86018] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(6277), 1, + anon_sym_EQ, + ACTIONS(6275), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(2893), 2, + sym_line_comment, + sym_block_comment, + [86036] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3325), 1, + ACTIONS(4957), 1, anon_sym_LBRACE, - ACTIONS(6031), 1, - anon_sym_COLON_COLON, - STATE(1208), 1, - sym_field_initializer_list, - STATE(2808), 2, + ACTIONS(6279), 1, + anon_sym_SEMI, + STATE(1376), 1, + sym_declaration_list, + STATE(2894), 2, sym_line_comment, sym_block_comment, - [83677] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [86056] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1464), 1, - anon_sym_RPAREN, - ACTIONS(5446), 1, + ACTIONS(6281), 1, anon_sym_COMMA, - STATE(2796), 1, - aux_sym_parameters_repeat1, - STATE(2809), 2, + ACTIONS(6283), 1, + anon_sym_GT, + STATE(2841), 1, + aux_sym_for_lifetimes_repeat1, + STATE(2895), 2, sym_line_comment, sym_block_comment, - [83697] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [86076] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2947), 1, - anon_sym_RPAREN, - ACTIONS(6033), 1, - anon_sym_COMMA, - STATE(2938), 1, - aux_sym_tuple_pattern_repeat1, - STATE(2810), 2, + ACTIONS(5426), 1, + anon_sym_PLUS, + ACTIONS(6285), 1, + anon_sym_GT, + ACTIONS(6287), 1, + anon_sym_as, + STATE(2896), 2, sym_line_comment, sym_block_comment, - [83717] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [86096] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, - anon_sym_LBRACE, - ACTIONS(6035), 1, - anon_sym_SEMI, - STATE(1354), 1, - sym_declaration_list, - STATE(2811), 2, + ACTIONS(3047), 1, + anon_sym_SQUOTE, + ACTIONS(6283), 1, + anon_sym_GT, + STATE(3287), 1, + sym_lifetime, + STATE(2897), 2, sym_line_comment, sym_block_comment, - [83737] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [86116] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1464), 1, - anon_sym_RPAREN, - ACTIONS(5446), 1, + ACTIONS(6289), 1, + anon_sym_RBRACE, + ACTIONS(6291), 1, anon_sym_COMMA, - STATE(2817), 1, - aux_sym_parameters_repeat1, - STATE(2812), 2, + STATE(2898), 3, sym_line_comment, sym_block_comment, - [83757] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + aux_sym_field_declaration_list_repeat1, + [86134] = 6, + ACTIONS(29), 1, + anon_sym_PIPE, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(6037), 1, - anon_sym_SEMI, - STATE(3320), 1, - sym_where_clause, - STATE(2813), 2, + ACTIONS(6294), 1, + anon_sym_move, + STATE(243), 1, + sym_closure_parameters, + STATE(2899), 2, sym_line_comment, sym_block_comment, - [83777] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [86154] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6039), 1, + ACTIONS(4965), 1, anon_sym_RBRACE, - ACTIONS(6041), 1, + ACTIONS(6296), 1, anon_sym_COMMA, - STATE(2992), 1, + STATE(2898), 1, aux_sym_field_declaration_list_repeat1, - STATE(2814), 2, + STATE(2900), 2, sym_line_comment, sym_block_comment, - [83797] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [86174] = 6, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(1594), 1, - anon_sym_GT, - ACTIONS(6043), 1, - anon_sym_COMMA, - STATE(2749), 1, - aux_sym_type_arguments_repeat1, - STATE(2815), 2, - sym_line_comment, - sym_block_comment, - [83817] = 6, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4582), 1, - anon_sym_COLON, - ACTIONS(4909), 1, + ACTIONS(4047), 1, + anon_sym_LBRACE, + ACTIONS(6298), 1, anon_sym_COLON_COLON, - STATE(2604), 1, - sym_trait_bounds, - STATE(2816), 2, + STATE(1798), 1, + sym_field_initializer_list, + STATE(2901), 2, sym_line_comment, sym_block_comment, - [83837] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [86194] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1468), 1, - anon_sym_RPAREN, - ACTIONS(6045), 1, - anon_sym_COMMA, - STATE(2796), 1, - aux_sym_parameters_repeat1, - STATE(2817), 2, + ACTIONS(4527), 1, + anon_sym_LT2, + ACTIONS(4846), 1, + anon_sym_LBRACE, + STATE(1968), 1, + sym_type_arguments, + STATE(2902), 2, sym_line_comment, sym_block_comment, - [83857] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [86214] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3015), 1, - anon_sym_RBRACK, - ACTIONS(6047), 1, - anon_sym_COMMA, - STATE(2680), 1, - aux_sym_slice_pattern_repeat1, - STATE(2818), 2, + ACTIONS(4029), 1, + anon_sym_LT2, + ACTIONS(4969), 1, + anon_sym_COLON_COLON, + STATE(1645), 1, + sym_type_arguments, + STATE(2903), 2, sym_line_comment, sym_block_comment, - [83877] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [86234] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5241), 1, + ACTIONS(5057), 1, anon_sym_PLUS, - ACTIONS(6049), 1, - anon_sym_GT, - ACTIONS(6051), 1, - anon_sym_as, - STATE(2819), 2, + ACTIONS(6300), 1, + anon_sym_SEMI, + ACTIONS(6302), 1, + anon_sym_EQ, + STATE(2904), 2, sym_line_comment, sym_block_comment, - [83897] = 4, - ACTIONS(101), 1, + [86254] = 6, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5547), 1, + anon_sym_COMMA, + ACTIONS(6304), 1, + anon_sym_PIPE, + STATE(2793), 1, + aux_sym_closure_parameters_repeat1, + STATE(2905), 2, + sym_line_comment, + sym_block_comment, + [86274] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2820), 2, + STATE(2906), 2, sym_line_comment, sym_block_comment, - ACTIONS(6053), 3, + ACTIONS(6306), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [83913] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [86290] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4854), 1, + ACTIONS(6308), 1, anon_sym_RBRACE, - ACTIONS(6055), 1, + ACTIONS(6310), 1, anon_sym_COMMA, - STATE(3026), 1, - aux_sym_field_initializer_list_repeat1, - STATE(2821), 2, + STATE(3009), 1, + aux_sym_field_declaration_list_repeat1, + STATE(2907), 2, sym_line_comment, sym_block_comment, - [83933] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [86310] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1470), 1, - anon_sym_RPAREN, - ACTIONS(5524), 1, - anon_sym_COMMA, - STATE(2796), 1, - aux_sym_parameters_repeat1, - STATE(2822), 2, + ACTIONS(6011), 1, + anon_sym_LPAREN, + ACTIONS(6312), 1, + anon_sym_LBRACE, + STATE(3321), 1, + sym_macro_def_args, + STATE(2908), 2, sym_line_comment, sym_block_comment, - [83953] = 5, - ACTIONS(101), 1, + [86330] = 6, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4989), 1, + anon_sym_where, + ACTIONS(6314), 1, + anon_sym_SEMI, + STATE(3588), 1, + sym_where_clause, + STATE(2909), 2, + sym_line_comment, + sym_block_comment, + [86350] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6057), 1, - anon_sym_AMP_AMP, - ACTIONS(4181), 2, + ACTIONS(6011), 1, + anon_sym_LPAREN, + ACTIONS(6316), 1, anon_sym_LBRACE, - anon_sym_SQUOTE, - STATE(2823), 2, + STATE(3320), 1, + sym_macro_def_args, + STATE(2910), 2, sym_line_comment, sym_block_comment, - [83971] = 6, - ACTIONS(27), 1, + [86370] = 6, + ACTIONS(29), 1, anon_sym_PIPE, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6059), 1, + ACTIONS(6318), 1, anon_sym_move, - STATE(231), 1, + STATE(223), 1, sym_closure_parameters, - STATE(2824), 2, + STATE(2911), 2, sym_line_comment, sym_block_comment, - [83991] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [86390] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4878), 1, + ACTIONS(6320), 1, + anon_sym_LPAREN, + ACTIONS(6322), 1, + anon_sym_LBRACK, + ACTIONS(6324), 1, anon_sym_LBRACE, - ACTIONS(6061), 1, - anon_sym_SEMI, - STATE(511), 1, - sym_declaration_list, - STATE(2825), 2, + STATE(2912), 2, sym_line_comment, sym_block_comment, - [84011] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [86410] = 4, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(6063), 1, - anon_sym_SEMI, - STATE(3404), 1, - sym_where_clause, - STATE(2826), 2, - sym_line_comment, - sym_block_comment, - [84031] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6067), 1, - anon_sym_COLON, - ACTIONS(6065), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(2827), 2, + STATE(2913), 2, sym_line_comment, sym_block_comment, - [84049] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6326), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [86426] = 6, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(5590), 1, - anon_sym_RPAREN, - ACTIONS(5592), 1, - anon_sym_COMMA, - STATE(2989), 1, - aux_sym_tuple_pattern_repeat1, - STATE(2828), 2, - sym_line_comment, - sym_block_comment, - [84069] = 6, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(6069), 1, - anon_sym_SEMI, - ACTIONS(6071), 1, - anon_sym_EQ, - STATE(2829), 2, + ACTIONS(6328), 1, + anon_sym_LPAREN, + ACTIONS(6330), 1, + anon_sym_LBRACK, + ACTIONS(6332), 1, + anon_sym_LBRACE, + STATE(2914), 2, sym_line_comment, sym_block_comment, - [84089] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [86446] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1009), 1, - anon_sym_RPAREN, - ACTIONS(4073), 1, + ACTIONS(1008), 1, + anon_sym_RBRACK, + ACTIONS(4163), 1, anon_sym_COMMA, - STATE(2589), 1, + STATE(2656), 1, aux_sym_arguments_repeat1, - STATE(2830), 2, + STATE(2915), 2, sym_line_comment, sym_block_comment, - [84109] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [86466] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(6075), 1, - anon_sym_EQ, - ACTIONS(6073), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(2831), 2, - sym_line_comment, - sym_block_comment, - [84127] = 6, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4895), 1, + ACTIONS(5577), 1, + anon_sym_PIPE, + ACTIONS(6334), 2, anon_sym_RBRACE, - ACTIONS(6077), 1, anon_sym_COMMA, - STATE(2804), 1, - aux_sym_enum_variant_list_repeat2, - STATE(2832), 2, + STATE(2916), 2, sym_line_comment, sym_block_comment, - [84147] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [86484] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, + ACTIONS(4989), 1, anon_sym_where, - ACTIONS(6079), 1, + ACTIONS(6336), 1, anon_sym_SEMI, - STATE(3357), 1, + STATE(3597), 1, sym_where_clause, - STATE(2833), 2, - sym_line_comment, - sym_block_comment, - [84167] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(6081), 1, - sym_identifier, - ACTIONS(6083), 1, - anon_sym_await, - ACTIONS(6085), 1, - sym_integer_literal, - STATE(2834), 2, + STATE(2917), 2, sym_line_comment, sym_block_comment, - [84187] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [86504] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(6087), 1, - anon_sym_LPAREN, - ACTIONS(6089), 1, - anon_sym_LBRACK, - ACTIONS(6091), 1, - anon_sym_LBRACE, - STATE(2835), 2, - sym_line_comment, - sym_block_comment, - [84207] = 6, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3945), 1, - anon_sym_LT2, - ACTIONS(4943), 1, + ACTIONS(4628), 1, anon_sym_COLON_COLON, - STATE(1581), 1, - sym_type_arguments, - STATE(2836), 2, + ACTIONS(6338), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2918), 2, sym_line_comment, sym_block_comment, - [84227] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [86522] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, + ACTIONS(5057), 1, anon_sym_PLUS, - ACTIONS(6093), 2, - anon_sym_GT, + ACTIONS(5825), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(2837), 2, + STATE(2919), 2, sym_line_comment, sym_block_comment, - [84245] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [86540] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4878), 1, + ACTIONS(4957), 1, anon_sym_LBRACE, - ACTIONS(6095), 1, + ACTIONS(6340), 1, anon_sym_SEMI, - STATE(593), 1, + STATE(1230), 1, sym_declaration_list, - STATE(2838), 2, + STATE(2920), 2, sym_line_comment, sym_block_comment, - [84265] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [86560] = 6, + ACTIONS(29), 1, + anon_sym_PIPE, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3037), 1, - anon_sym_RPAREN, - ACTIONS(6097), 1, - anon_sym_COMMA, - STATE(2680), 1, - aux_sym_slice_pattern_repeat1, - STATE(2839), 2, + ACTIONS(6342), 1, + anon_sym_move, + STATE(230), 1, + sym_closure_parameters, + STATE(2921), 2, sym_line_comment, sym_block_comment, - [84285] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [86580] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4878), 1, - anon_sym_LBRACE, - ACTIONS(6099), 1, - anon_sym_SEMI, - STATE(595), 1, - sym_declaration_list, - STATE(2840), 2, + ACTIONS(6344), 1, + sym_identifier, + ACTIONS(6346), 2, + anon_sym_default, + anon_sym_union, + STATE(2922), 2, sym_line_comment, sym_block_comment, - [84305] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [86598] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2841), 2, + ACTIONS(6348), 1, + sym_identifier, + ACTIONS(6350), 2, + anon_sym_default, + anon_sym_union, + STATE(2923), 2, sym_line_comment, sym_block_comment, - ACTIONS(1366), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [84321] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [86616] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2842), 2, + ACTIONS(1489), 1, + anon_sym_RPAREN, + ACTIONS(5506), 1, + anon_sym_COMMA, + STATE(2833), 1, + aux_sym_parameters_repeat1, + STATE(2924), 2, sym_line_comment, sym_block_comment, - ACTIONS(6101), 3, - anon_sym_SEMI, + [86636] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4834), 1, anon_sym_RBRACE, + ACTIONS(6352), 1, anon_sym_COMMA, - [84337] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + STATE(2812), 1, + aux_sym_field_initializer_list_repeat1, + STATE(2925), 2, + sym_line_comment, + sym_block_comment, + [86656] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2843), 2, + ACTIONS(6354), 1, + sym_identifier, + ACTIONS(6356), 2, + anon_sym_default, + anon_sym_union, + STATE(2926), 2, sym_line_comment, sym_block_comment, - ACTIONS(6103), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [84353] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [86674] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6105), 1, - anon_sym_RBRACE, - ACTIONS(6107), 1, + ACTIONS(5057), 1, + anon_sym_PLUS, + ACTIONS(6358), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(2844), 3, + STATE(2927), 2, sym_line_comment, sym_block_comment, - aux_sym_struct_pattern_repeat1, - [84371] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [86692] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2845), 2, + ACTIONS(5047), 1, + anon_sym_LBRACE, + ACTIONS(6360), 1, + anon_sym_SEMI, + STATE(727), 1, + sym_declaration_list, + STATE(2928), 2, sym_line_comment, sym_block_comment, - ACTIONS(4858), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [84387] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [86712] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1458), 1, + ACTIONS(1489), 1, anon_sym_RPAREN, - ACTIONS(6110), 1, + ACTIONS(5506), 1, anon_sym_COMMA, - STATE(2796), 1, + STATE(2828), 1, aux_sym_parameters_repeat1, - STATE(2846), 2, + STATE(2929), 2, sym_line_comment, sym_block_comment, - [84407] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [86732] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5617), 1, - anon_sym_EQ, - ACTIONS(5759), 2, - anon_sym_GT, - anon_sym_COMMA, - STATE(2847), 2, + ACTIONS(4527), 1, + anon_sym_LT2, + ACTIONS(4961), 1, + anon_sym_for, + STATE(1968), 1, + sym_type_arguments, + STATE(2930), 2, sym_line_comment, sym_block_comment, - [84425] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [86752] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2848), 2, + ACTIONS(3403), 1, + anon_sym_LBRACE, + ACTIONS(6362), 1, + anon_sym_COLON_COLON, + STATE(1473), 1, + sym_field_initializer_list, + STATE(2931), 2, sym_line_comment, sym_block_comment, - ACTIONS(6112), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [84441] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [86772] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1011), 1, - anon_sym_RBRACK, - ACTIONS(6114), 1, + ACTIONS(5057), 1, + anon_sym_PLUS, + ACTIONS(6364), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(2589), 1, - aux_sym_arguments_repeat1, - STATE(2849), 2, + STATE(2932), 2, sym_line_comment, sym_block_comment, - [84461] = 6, - ACTIONS(27), 1, - anon_sym_PIPE, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [86790] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6116), 1, - anon_sym_move, - STATE(239), 1, - sym_closure_parameters, - STATE(2850), 2, + ACTIONS(4989), 1, + anon_sym_where, + ACTIONS(6366), 1, + anon_sym_SEMI, + STATE(3627), 1, + sym_where_clause, + STATE(2933), 2, sym_line_comment, sym_block_comment, - [84481] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [86810] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6118), 1, - anon_sym_RBRACE, - ACTIONS(6120), 1, + ACTIONS(3027), 1, + anon_sym_RPAREN, + ACTIONS(6368), 1, anon_sym_COMMA, - STATE(2821), 1, - aux_sym_field_initializer_list_repeat1, - STATE(2851), 2, + STATE(2960), 1, + aux_sym_tuple_pattern_repeat1, + STATE(2934), 2, sym_line_comment, sym_block_comment, - [84501] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [86830] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6122), 1, - anon_sym_RBRACE, - ACTIONS(6124), 1, + ACTIONS(3111), 1, + anon_sym_RPAREN, + ACTIONS(6370), 1, anon_sym_COMMA, - STATE(2900), 1, - aux_sym_use_list_repeat1, - STATE(2852), 2, + STATE(2619), 1, + aux_sym_slice_pattern_repeat1, + STATE(2935), 2, sym_line_comment, sym_block_comment, - [84521] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [86850] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1600), 1, - anon_sym_GT, - ACTIONS(6126), 1, + ACTIONS(3085), 1, + anon_sym_RBRACK, + ACTIONS(6372), 1, anon_sym_COMMA, - STATE(2951), 1, - aux_sym_type_arguments_repeat1, - STATE(2853), 2, + STATE(2619), 1, + aux_sym_slice_pattern_repeat1, + STATE(2936), 2, sym_line_comment, sym_block_comment, - [84541] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [86870] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1600), 1, - anon_sym_GT, - ACTIONS(6126), 1, + ACTIONS(6374), 1, + anon_sym_RPAREN, + ACTIONS(6376), 1, anon_sym_COMMA, - STATE(2749), 1, - aux_sym_type_arguments_repeat1, - STATE(2854), 2, + STATE(2887), 1, + aux_sym_ordered_field_declaration_list_repeat1, + STATE(2937), 2, sym_line_comment, sym_block_comment, - [84561] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [86890] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5771), 1, + ACTIONS(5057), 1, + anon_sym_PLUS, + ACTIONS(6155), 2, anon_sym_RPAREN, - ACTIONS(5773), 1, anon_sym_COMMA, - STATE(2810), 1, - aux_sym_tuple_pattern_repeat1, - STATE(2855), 2, + STATE(2938), 2, sym_line_comment, sym_block_comment, - [84581] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [86908] = 6, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4878), 1, - anon_sym_LBRACE, - ACTIONS(6128), 1, - anon_sym_SEMI, - STATE(540), 1, - sym_declaration_list, - STATE(2856), 2, - sym_line_comment, - sym_block_comment, - [84601] = 6, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3027), 1, + ACTIONS(1477), 1, anon_sym_RPAREN, - ACTIONS(6130), 1, + ACTIONS(6378), 1, anon_sym_COMMA, - STATE(2680), 1, - aux_sym_slice_pattern_repeat1, - STATE(2857), 2, + STATE(2828), 1, + aux_sym_parameters_repeat1, + STATE(2939), 2, sym_line_comment, sym_block_comment, - [84621] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [86928] = 6, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(2858), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(6132), 3, - sym_string_content, - anon_sym_DQUOTE, - sym_escape_sequence, - [84637] = 6, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5163), 1, + ACTIONS(5332), 1, anon_sym_RBRACE, - ACTIONS(6134), 1, + ACTIONS(6380), 1, anon_sym_COMMA, - STATE(2844), 1, + STATE(2814), 1, aux_sym_struct_pattern_repeat1, - STATE(2859), 2, + STATE(2940), 2, sym_line_comment, sym_block_comment, - [84657] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [86948] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5759), 1, - anon_sym_GT, - ACTIONS(6136), 1, + ACTIONS(1032), 1, + anon_sym_RPAREN, + ACTIONS(4191), 1, anon_sym_COMMA, - STATE(2860), 3, + STATE(2656), 1, + aux_sym_arguments_repeat1, + STATE(2941), 2, sym_line_comment, sym_block_comment, - aux_sym_type_parameters_repeat1, - [84675] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [86968] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2861), 2, + ACTIONS(4926), 1, + anon_sym_RBRACE, + ACTIONS(6382), 1, + anon_sym_COMMA, + STATE(2812), 1, + aux_sym_field_initializer_list_repeat1, + STATE(2942), 2, sym_line_comment, sym_block_comment, - ACTIONS(937), 3, - anon_sym_COLON, - anon_sym_GT, - anon_sym_COMMA, - [84691] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [86988] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(6139), 1, - anon_sym_SEMI, - STATE(3491), 1, - sym_where_clause, - STATE(2862), 2, + ACTIONS(5312), 1, + anon_sym_RBRACE, + ACTIONS(6384), 1, + anon_sym_COMMA, + STATE(2814), 1, + aux_sym_struct_pattern_repeat1, + STATE(2943), 2, sym_line_comment, sym_block_comment, - [84711] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [87008] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(6141), 2, - anon_sym_GT, + ACTIONS(6388), 1, + anon_sym_COLON, + ACTIONS(6386), 2, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(2863), 2, + STATE(2944), 2, sym_line_comment, sym_block_comment, - [84729] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [87026] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3029), 1, - anon_sym_RPAREN, - ACTIONS(6143), 1, + ACTIONS(5057), 1, + anon_sym_PLUS, + ACTIONS(6390), 2, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(2680), 1, - aux_sym_slice_pattern_repeat1, - STATE(2864), 2, + STATE(2945), 2, sym_line_comment, sym_block_comment, - [84749] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [87044] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(6145), 1, - anon_sym_for, - STATE(1933), 1, - sym_type_arguments, - STATE(2865), 2, + ACTIONS(6392), 1, + sym_identifier, + ACTIONS(6394), 1, + anon_sym_ref, + ACTIONS(6396), 1, + sym_mutable_specifier, + STATE(2946), 2, sym_line_comment, sym_block_comment, - [84769] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [87064] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5165), 1, - anon_sym_RBRACE, - ACTIONS(6147), 1, + ACTIONS(3109), 1, + anon_sym_RPAREN, + ACTIONS(6398), 1, anon_sym_COMMA, - STATE(2844), 1, - aux_sym_struct_pattern_repeat1, - STATE(2866), 2, + STATE(2619), 1, + aux_sym_slice_pattern_repeat1, + STATE(2947), 2, sym_line_comment, sym_block_comment, - [84789] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [87084] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, + ACTIONS(5047), 1, anon_sym_LBRACE, - ACTIONS(6149), 1, + ACTIONS(6400), 1, anon_sym_SEMI, - STATE(1281), 1, + STATE(637), 1, sym_declaration_list, - STATE(2867), 2, + STATE(2948), 2, sym_line_comment, sym_block_comment, - [84809] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [87104] = 6, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(6153), 1, - anon_sym_COLON, - ACTIONS(6151), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(2868), 2, - sym_line_comment, - sym_block_comment, - [84827] = 6, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4656), 1, + ACTIONS(1613), 1, anon_sym_GT, - ACTIONS(6155), 1, + ACTIONS(6402), 1, anon_sym_COMMA, - STATE(2860), 1, - aux_sym_type_parameters_repeat1, - STATE(2869), 2, + STATE(2805), 1, + aux_sym_type_arguments_repeat1, + STATE(2949), 2, sym_line_comment, sym_block_comment, - [84847] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [87124] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6157), 1, - anon_sym_RBRACE, - ACTIONS(6159), 1, - anon_sym_COMMA, - STATE(2950), 1, - aux_sym_struct_pattern_repeat1, - STATE(2870), 2, + ACTIONS(5047), 1, + anon_sym_LBRACE, + ACTIONS(6404), 1, + anon_sym_SEMI, + STATE(620), 1, + sym_declaration_list, + STATE(2950), 2, sym_line_comment, sym_block_comment, - [84867] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [87144] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2871), 2, + ACTIONS(5047), 1, + anon_sym_LBRACE, + ACTIONS(6406), 1, + anon_sym_SEMI, + STATE(587), 1, + sym_declaration_list, + STATE(2951), 2, sym_line_comment, sym_block_comment, - ACTIONS(4754), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [84883] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [87164] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1466), 1, + ACTIONS(1485), 1, anon_sym_RPAREN, - ACTIONS(5534), 1, + ACTIONS(5652), 1, anon_sym_COMMA, - STATE(2796), 1, + STATE(2939), 1, aux_sym_parameters_repeat1, - STATE(2872), 2, + STATE(2952), 2, sym_line_comment, sym_block_comment, - [84903] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [87184] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4650), 1, + ACTIONS(1611), 1, anon_sym_GT, - ACTIONS(6161), 1, + ACTIONS(6408), 1, anon_sym_COMMA, - STATE(2860), 1, - aux_sym_type_parameters_repeat1, - STATE(2873), 2, + STATE(2805), 1, + aux_sym_type_arguments_repeat1, + STATE(2953), 2, sym_line_comment, sym_block_comment, - [84923] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [87204] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(6163), 2, - anon_sym_RPAREN, + ACTIONS(1611), 1, + anon_sym_GT, + ACTIONS(6408), 1, anon_sym_COMMA, - STATE(2874), 2, + STATE(2803), 1, + aux_sym_type_arguments_repeat1, + STATE(2954), 2, sym_line_comment, sym_block_comment, - [84941] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [87224] = 6, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(6165), 1, - anon_sym_SEMI, - STATE(3329), 1, - sym_where_clause, - STATE(2875), 2, - sym_line_comment, - sym_block_comment, - [84961] = 6, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4878), 1, + ACTIONS(5047), 1, anon_sym_LBRACE, - ACTIONS(6167), 1, + ACTIONS(6410), 1, anon_sym_SEMI, - STATE(492), 1, + STATE(538), 1, sym_declaration_list, - STATE(2876), 2, + STATE(2955), 2, sym_line_comment, sym_block_comment, - [84981] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [87244] = 4, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(2877), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4453), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [84997] = 4, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2878), 2, + STATE(2956), 2, sym_line_comment, sym_block_comment, - ACTIONS(4852), 3, + ACTIONS(1321), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [85013] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [87260] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1466), 1, - anon_sym_RPAREN, - ACTIONS(5534), 1, + ACTIONS(990), 1, + anon_sym_RBRACK, + ACTIONS(6412), 1, anon_sym_COMMA, - STATE(2961), 1, - aux_sym_parameters_repeat1, - STATE(2879), 2, + STATE(2656), 1, + aux_sym_arguments_repeat1, + STATE(2957), 2, sym_line_comment, sym_block_comment, - [85033] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [87280] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6018), 1, + ACTIONS(1485), 1, anon_sym_RPAREN, - ACTIONS(6169), 1, + ACTIONS(5652), 1, anon_sym_COMMA, - STATE(2880), 3, + STATE(2828), 1, + aux_sym_parameters_repeat1, + STATE(2958), 2, sym_line_comment, sym_block_comment, - aux_sym_tuple_type_repeat1, - [85051] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [87300] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4909), 1, - anon_sym_COLON_COLON, - STATE(1930), 1, - sym_type_arguments, - STATE(2881), 2, + ACTIONS(5057), 1, + anon_sym_PLUS, + ACTIONS(6414), 1, + anon_sym_SEMI, + ACTIONS(6416), 1, + anon_sym_EQ, + STATE(2959), 2, sym_line_comment, sym_block_comment, - [85071] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [87320] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2882), 2, + ACTIONS(6418), 1, + anon_sym_RPAREN, + ACTIONS(6420), 1, + anon_sym_COMMA, + STATE(2960), 3, sym_line_comment, sym_block_comment, - ACTIONS(4800), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [85087] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + aux_sym_tuple_pattern_repeat1, + [87338] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1470), 1, + ACTIONS(5577), 1, + anon_sym_PIPE, + ACTIONS(6418), 2, anon_sym_RPAREN, - ACTIONS(5524), 1, anon_sym_COMMA, - STATE(2846), 1, - aux_sym_parameters_repeat1, - STATE(2883), 2, + STATE(2961), 2, sym_line_comment, sym_block_comment, - [85107] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [87356] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4953), 1, + ACTIONS(6425), 1, + anon_sym_COLON, + ACTIONS(6423), 2, anon_sym_RBRACE, - ACTIONS(6172), 1, anon_sym_COMMA, - STATE(2804), 1, - aux_sym_enum_variant_list_repeat2, - STATE(2884), 2, + STATE(2962), 2, sym_line_comment, sym_block_comment, - [85127] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [87374] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4953), 1, + ACTIONS(6427), 1, anon_sym_RBRACE, - ACTIONS(6172), 1, + ACTIONS(6429), 1, anon_sym_COMMA, - STATE(2963), 1, - aux_sym_enum_variant_list_repeat2, - STATE(2885), 2, + STATE(2943), 1, + aux_sym_struct_pattern_repeat1, + STATE(2963), 2, sym_line_comment, sym_block_comment, - [85147] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [87394] = 6, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4878), 1, - anon_sym_LBRACE, - ACTIONS(6174), 1, - anon_sym_SEMI, - STATE(546), 1, - sym_declaration_list, - STATE(2886), 2, - sym_line_comment, - sym_block_comment, - [85167] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6057), 1, - anon_sym_AMP_AMP, - ACTIONS(6176), 2, - anon_sym_LBRACE, - anon_sym_SQUOTE, - STATE(2887), 2, + ACTIONS(1607), 1, + anon_sym_GT, + ACTIONS(6431), 1, + anon_sym_COMMA, + STATE(2805), 1, + aux_sym_type_arguments_repeat1, + STATE(2964), 2, sym_line_comment, sym_block_comment, - [85185] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [87414] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2888), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(6178), 3, - anon_sym_EQ, + ACTIONS(1607), 1, anon_sym_GT, + ACTIONS(6431), 1, anon_sym_COMMA, - [85201] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + STATE(2949), 1, + aux_sym_type_arguments_repeat1, + STATE(2965), 2, + sym_line_comment, + sym_block_comment, + [87434] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2889), 2, + ACTIONS(4987), 1, + anon_sym_LT, + ACTIONS(6433), 1, + anon_sym_EQ, + STATE(3669), 1, + sym_type_parameters, + STATE(2966), 2, sym_line_comment, sym_block_comment, - ACTIONS(6180), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [85217] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [87454] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4660), 1, + ACTIONS(1587), 1, anon_sym_GT, - ACTIONS(6182), 1, + ACTIONS(6435), 1, anon_sym_COMMA, - STATE(2860), 1, - aux_sym_type_parameters_repeat1, - STATE(2890), 2, + STATE(3050), 1, + aux_sym_type_arguments_repeat1, + STATE(2967), 2, sym_line_comment, sym_block_comment, - [85237] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [87474] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4632), 1, + ACTIONS(1587), 1, anon_sym_GT, - ACTIONS(6184), 1, + ACTIONS(6435), 1, anon_sym_COMMA, - STATE(2860), 1, - aux_sym_type_parameters_repeat1, - STATE(2891), 2, + STATE(2805), 1, + aux_sym_type_arguments_repeat1, + STATE(2968), 2, sym_line_comment, sym_block_comment, - [85257] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [87494] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, - anon_sym_LBRACE, - ACTIONS(6186), 1, - anon_sym_SEMI, - STATE(1403), 1, - sym_declaration_list, - STATE(2892), 2, + STATE(2969), 2, sym_line_comment, sym_block_comment, - [85277] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6437), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [87510] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6188), 1, + ACTIONS(3091), 1, anon_sym_RPAREN, - ACTIONS(6190), 1, + ACTIONS(6439), 1, anon_sym_COMMA, - STATE(2922), 1, - aux_sym_ordered_field_declaration_list_repeat1, - STATE(2893), 2, + STATE(2619), 1, + aux_sym_slice_pattern_repeat1, + STATE(2970), 2, sym_line_comment, sym_block_comment, - [85297] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [87530] = 4, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(2894), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4814), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [85313] = 4, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2895), 2, + STATE(2971), 2, sym_line_comment, sym_block_comment, - ACTIONS(4690), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [85329] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6441), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [87546] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(6192), 2, + ACTIONS(5290), 1, anon_sym_RBRACE, + ACTIONS(6443), 1, anon_sym_COMMA, - STATE(2896), 2, + STATE(2814), 1, + aux_sym_struct_pattern_repeat1, + STATE(2972), 2, sym_line_comment, sym_block_comment, - [85347] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [87566] = 6, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(2897), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4832), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [85363] = 6, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1015), 1, + ACTIONS(1048), 1, anon_sym_RBRACK, - ACTIONS(6194), 1, + ACTIONS(6445), 1, anon_sym_COMMA, - STATE(2589), 1, + STATE(2656), 1, aux_sym_arguments_repeat1, - STATE(2898), 2, + STATE(2973), 2, sym_line_comment, sym_block_comment, - [85383] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [87586] = 6, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(2899), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4772), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [85399] = 6, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4375), 1, - anon_sym_RBRACE, - ACTIONS(6196), 1, + ACTIONS(3089), 1, + anon_sym_RPAREN, + ACTIONS(6447), 1, anon_sym_COMMA, - STATE(2920), 1, - aux_sym_use_list_repeat1, - STATE(2900), 2, + STATE(2619), 1, + aux_sym_slice_pattern_repeat1, + STATE(2974), 2, sym_line_comment, sym_block_comment, - [85419] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [87606] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4915), 1, - anon_sym_LBRACE, - ACTIONS(6198), 1, - anon_sym_SEMI, - STATE(1409), 1, - sym_declaration_list, - STATE(2901), 2, - sym_line_comment, - sym_block_comment, - [85439] = 6, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3325), 1, - anon_sym_LBRACE, - ACTIONS(6200), 1, - anon_sym_COLON_COLON, - STATE(1208), 1, - sym_field_initializer_list, - STATE(2902), 2, + ACTIONS(5549), 1, + anon_sym_COLON, + ACTIONS(6449), 2, + anon_sym_COMMA, + anon_sym_PIPE, + STATE(2975), 2, sym_line_comment, sym_block_comment, - [85459] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [87624] = 6, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(6202), 1, - anon_sym_LPAREN, - ACTIONS(6204), 1, - anon_sym_LBRACK, - ACTIONS(6206), 1, - anon_sym_LBRACE, - STATE(2903), 2, - sym_line_comment, - sym_block_comment, - [85479] = 6, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6208), 1, - anon_sym_LPAREN, - ACTIONS(6210), 1, - anon_sym_LBRACK, - ACTIONS(6212), 1, - anon_sym_LBRACE, - STATE(2904), 2, + ACTIONS(5304), 1, + anon_sym_RBRACE, + ACTIONS(6451), 1, + anon_sym_COMMA, + STATE(2814), 1, + aux_sym_struct_pattern_repeat1, + STATE(2976), 2, sym_line_comment, sym_block_comment, - [85499] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [87644] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4878), 1, - anon_sym_LBRACE, - ACTIONS(6214), 1, - anon_sym_SEMI, - STATE(602), 1, - sym_declaration_list, - STATE(2905), 2, - sym_line_comment, - sym_block_comment, - [85519] = 6, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6216), 1, - anon_sym_RPAREN, - ACTIONS(6218), 1, + ACTIONS(6449), 1, + anon_sym_PIPE, + ACTIONS(6453), 1, anon_sym_COMMA, - STATE(2922), 1, - aux_sym_ordered_field_declaration_list_repeat1, - STATE(2906), 2, + STATE(2977), 3, sym_line_comment, sym_block_comment, - [85539] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + aux_sym_closure_parameters_repeat1, + [87662] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4634), 1, - anon_sym_GT, - ACTIONS(6220), 1, + ACTIONS(5577), 1, + anon_sym_PIPE, + ACTIONS(6456), 2, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(2860), 1, - aux_sym_type_parameters_repeat1, - STATE(2907), 2, + STATE(2978), 2, sym_line_comment, sym_block_comment, - [85559] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [87680] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, + ACTIONS(4527), 1, anon_sym_LT2, - ACTIONS(6222), 1, - anon_sym_LBRACE, - STATE(1933), 1, + ACTIONS(6458), 1, + anon_sym_for, + STATE(1968), 1, sym_type_arguments, - STATE(2908), 2, + STATE(2979), 2, sym_line_comment, sym_block_comment, - [85579] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [87700] = 6, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(6224), 1, - anon_sym_SEMI, - ACTIONS(6226), 1, - anon_sym_EQ, - STATE(2909), 2, - sym_line_comment, - sym_block_comment, - [85599] = 6, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4878), 1, - anon_sym_LBRACE, - ACTIONS(6228), 1, - anon_sym_SEMI, - STATE(548), 1, - sym_declaration_list, - STATE(2910), 2, + ACTIONS(5530), 1, + anon_sym_RPAREN, + ACTIONS(5532), 1, + anon_sym_COMMA, + STATE(2958), 1, + aux_sym_parameters_repeat1, + STATE(2980), 2, sym_line_comment, sym_block_comment, - [85619] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [87720] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4878), 1, - anon_sym_LBRACE, - ACTIONS(6230), 1, - anon_sym_SEMI, - STATE(604), 1, - sym_declaration_list, - STATE(2911), 2, + ACTIONS(1471), 1, + anon_sym_RPAREN, + ACTIONS(5644), 1, + anon_sym_COMMA, + STATE(2828), 1, + aux_sym_parameters_repeat1, + STATE(2981), 2, sym_line_comment, sym_block_comment, - [85639] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [87740] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2912), 2, + ACTIONS(6460), 1, + anon_sym_RBRACE, + ACTIONS(6462), 1, + anon_sym_COMMA, + STATE(2940), 1, + aux_sym_struct_pattern_repeat1, + STATE(2982), 2, sym_line_comment, sym_block_comment, - ACTIONS(4790), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [85655] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [87760] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(6232), 2, + ACTIONS(3219), 1, anon_sym_RPAREN, + ACTIONS(6464), 1, anon_sym_COMMA, - STATE(2913), 2, + STATE(2842), 1, + aux_sym_tuple_type_repeat1, + STATE(2983), 2, sym_line_comment, sym_block_comment, - [85673] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [87780] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4907), 1, - anon_sym_RBRACE, - ACTIONS(6234), 1, + ACTIONS(1471), 1, + anon_sym_RPAREN, + ACTIONS(5644), 1, anon_sym_COMMA, - STATE(2931), 1, - aux_sym_field_declaration_list_repeat1, - STATE(2914), 2, + STATE(3058), 1, + aux_sym_parameters_repeat1, + STATE(2984), 2, sym_line_comment, sym_block_comment, - [85693] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [87800] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5432), 1, - anon_sym_COLON, - ACTIONS(6236), 2, - anon_sym_PIPE, + ACTIONS(5057), 1, + anon_sym_PLUS, + ACTIONS(6466), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(2915), 2, + STATE(2985), 2, sym_line_comment, sym_block_comment, - [85711] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [87818] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4878), 1, + ACTIONS(5047), 1, anon_sym_LBRACE, - ACTIONS(6238), 1, + ACTIONS(6468), 1, anon_sym_SEMI, - STATE(498), 1, + STATE(736), 1, sym_declaration_list, - STATE(2916), 2, + STATE(2986), 2, sym_line_comment, sym_block_comment, - [85731] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [87838] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4907), 1, + ACTIONS(4997), 1, anon_sym_RBRACE, - ACTIONS(6234), 1, + ACTIONS(6470), 1, anon_sym_COMMA, - STATE(2993), 1, - aux_sym_field_declaration_list_repeat1, - STATE(2917), 2, + STATE(2846), 1, + aux_sym_enum_variant_list_repeat2, + STATE(2987), 2, sym_line_comment, sym_block_comment, - [85751] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [87858] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4878), 1, - anon_sym_LBRACE, - ACTIONS(6240), 1, - anon_sym_SEMI, - STATE(610), 1, - sym_declaration_list, - STATE(2918), 2, + ACTIONS(4997), 1, + anon_sym_RBRACE, + ACTIONS(6470), 1, + anon_sym_COMMA, + STATE(3061), 1, + aux_sym_enum_variant_list_repeat2, + STATE(2988), 2, sym_line_comment, sym_block_comment, - [85771] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [87878] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6242), 1, - anon_sym_EQ_GT, - ACTIONS(6244), 1, - anon_sym_PIPE, - ACTIONS(6246), 1, - anon_sym_if, - STATE(2919), 2, + ACTIONS(3217), 1, + anon_sym_RPAREN, + ACTIONS(6472), 1, + anon_sym_COMMA, + STATE(2842), 1, + aux_sym_tuple_type_repeat1, + STATE(2989), 2, sym_line_comment, sym_block_comment, - [85791] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [87898] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6248), 1, - anon_sym_RBRACE, - ACTIONS(6250), 1, + ACTIONS(5707), 1, + anon_sym_RPAREN, + ACTIONS(5709), 1, anon_sym_COMMA, - STATE(2920), 3, + STATE(2929), 1, + aux_sym_parameters_repeat1, + STATE(2990), 2, sym_line_comment, sym_block_comment, - aux_sym_use_list_repeat1, - [85809] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [87918] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, + ACTIONS(5047), 1, anon_sym_LBRACE, - ACTIONS(6253), 1, + ACTIONS(6474), 1, anon_sym_SEMI, - STATE(1423), 1, + STATE(515), 1, sym_declaration_list, - STATE(2921), 2, + STATE(2991), 2, sym_line_comment, sym_block_comment, - [85829] = 5, - ACTIONS(101), 1, + [87938] = 4, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2992), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6476), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [87954] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6255), 1, + ACTIONS(1050), 1, anon_sym_RPAREN, - ACTIONS(6257), 1, + ACTIONS(4161), 1, anon_sym_COMMA, - STATE(2922), 3, + STATE(2656), 1, + aux_sym_arguments_repeat1, + STATE(2993), 2, sym_line_comment, sym_block_comment, - aux_sym_ordered_field_declaration_list_repeat1, - [85847] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [87974] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2923), 2, + STATE(2994), 2, sym_line_comment, sym_block_comment, - ACTIONS(4798), 3, + ACTIONS(4531), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [85863] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [87990] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6236), 1, + STATE(2995), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4890), 3, + anon_sym_EQ_GT, anon_sym_PIPE, - ACTIONS(6260), 1, + anon_sym_if, + [88006] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4720), 1, + anon_sym_GT, + ACTIONS(6478), 1, anon_sym_COMMA, - STATE(2924), 3, + STATE(2879), 1, + aux_sym_type_parameters_repeat1, + STATE(2996), 2, sym_line_comment, sym_block_comment, - aux_sym_closure_parameters_repeat1, - [85881] = 6, - ACTIONS(101), 1, + [88026] = 6, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4718), 1, + anon_sym_GT, + ACTIONS(6480), 1, + anon_sym_COMMA, + STATE(2879), 1, + aux_sym_type_parameters_repeat1, + STATE(2997), 2, + sym_line_comment, + sym_block_comment, + [88046] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4878), 1, + ACTIONS(4957), 1, anon_sym_LBRACE, - ACTIONS(6263), 1, + ACTIONS(6482), 1, anon_sym_SEMI, - STATE(612), 1, + STATE(1106), 1, sym_declaration_list, - STATE(2925), 2, + STATE(2998), 2, sym_line_comment, sym_block_comment, - [85901] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [88066] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2926), 2, + ACTIONS(5047), 1, + anon_sym_LBRACE, + ACTIONS(6484), 1, + anon_sym_SEMI, + STATE(512), 1, + sym_declaration_list, + STATE(2999), 2, sym_line_comment, sym_block_comment, - ACTIONS(4826), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [85917] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [88086] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, + ACTIONS(3129), 1, anon_sym_PLUS, - ACTIONS(6265), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(2927), 2, + ACTIONS(6486), 1, + sym_mutable_specifier, + ACTIONS(6488), 1, + sym_self, + STATE(3000), 2, sym_line_comment, sym_block_comment, - [85935] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [88106] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5452), 1, - anon_sym_PIPE, - ACTIONS(6267), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2928), 2, + ACTIONS(4957), 1, + anon_sym_LBRACE, + ACTIONS(6490), 1, + anon_sym_SEMI, + STATE(1119), 1, + sym_declaration_list, + STATE(3001), 2, sym_line_comment, sym_block_comment, - [85953] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [88126] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2969), 1, - anon_sym_SQUOTE, - ACTIONS(6269), 1, - anon_sym_GT, - STATE(3196), 1, - sym_lifetime, - STATE(2929), 2, + STATE(3002), 2, sym_line_comment, sym_block_comment, - [85973] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4902), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [88142] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(6271), 2, - anon_sym_GT, + ACTIONS(6492), 1, anon_sym_COMMA, - STATE(2930), 2, + ACTIONS(6494), 1, + anon_sym_GT, + STATE(2895), 1, + aux_sym_for_lifetimes_repeat1, + STATE(3003), 2, sym_line_comment, sym_block_comment, - [85991] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [88162] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6273), 1, - anon_sym_RBRACE, - ACTIONS(6275), 1, - anon_sym_COMMA, - STATE(2931), 3, + ACTIONS(4527), 1, + anon_sym_LT2, + ACTIONS(6496), 1, + anon_sym_for, + STATE(1968), 1, + sym_type_arguments, + STATE(3004), 2, sym_line_comment, sym_block_comment, - aux_sym_field_declaration_list_repeat1, - [86009] = 6, - ACTIONS(101), 1, + [88182] = 6, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3329), 1, + anon_sym_LT2, + ACTIONS(4999), 1, + anon_sym_COLON_COLON, + STATE(1226), 1, + sym_type_arguments, + STATE(3005), 2, + sym_line_comment, + sym_block_comment, + [88202] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, + ACTIONS(5057), 1, anon_sym_PLUS, - ACTIONS(6278), 1, + ACTIONS(6498), 1, anon_sym_SEMI, - ACTIONS(6280), 1, + ACTIONS(6500), 1, anon_sym_EQ, - STATE(2932), 2, + STATE(3006), 2, sym_line_comment, sym_block_comment, - [86029] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [88222] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(6282), 1, - anon_sym_SEMI, - STATE(3499), 1, - sym_where_clause, - STATE(2933), 2, + STATE(3007), 2, sym_line_comment, sym_block_comment, - [86049] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4896), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [88238] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(6284), 1, + anon_sym_where, + ACTIONS(6502), 1, anon_sym_SEMI, - ACTIONS(6286), 1, - anon_sym_EQ, - STATE(2934), 2, + STATE(3403), 1, + sym_where_clause, + STATE(3008), 2, sym_line_comment, sym_block_comment, - [86069] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [88258] = 6, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(6288), 1, - sym_identifier, - ACTIONS(6290), 1, - anon_sym_await, - ACTIONS(6292), 1, - sym_integer_literal, - STATE(2935), 2, - sym_line_comment, - sym_block_comment, - [86089] = 6, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4812), 1, + ACTIONS(5025), 1, anon_sym_RBRACE, - ACTIONS(6294), 1, + ACTIONS(6504), 1, anon_sym_COMMA, - STATE(3026), 1, - aux_sym_field_initializer_list_repeat1, - STATE(2936), 2, + STATE(2898), 1, + aux_sym_field_declaration_list_repeat1, + STATE(3009), 2, sym_line_comment, sym_block_comment, - [86109] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [88278] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6296), 1, + ACTIONS(5025), 1, anon_sym_RBRACE, - ACTIONS(6298), 1, + ACTIONS(6504), 1, anon_sym_COMMA, - STATE(2764), 1, - aux_sym_struct_pattern_repeat1, - STATE(2937), 2, + STATE(3073), 1, + aux_sym_field_declaration_list_repeat1, + STATE(3010), 2, sym_line_comment, sym_block_comment, - [86129] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [88298] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6267), 1, - anon_sym_RPAREN, - ACTIONS(6300), 1, - anon_sym_COMMA, - STATE(2938), 3, + ACTIONS(5057), 1, + anon_sym_PLUS, + ACTIONS(6506), 1, + anon_sym_SEMI, + ACTIONS(6508), 1, + anon_sym_RBRACK, + STATE(3011), 2, sym_line_comment, sym_block_comment, - aux_sym_tuple_pattern_repeat1, - [86147] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [88318] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2969), 1, - anon_sym_SQUOTE, - ACTIONS(6303), 1, - anon_sym_GT, - STATE(3196), 1, - sym_lifetime, - STATE(2939), 2, + STATE(3012), 2, sym_line_comment, sym_block_comment, - [86167] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4894), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [88334] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2940), 2, + STATE(3013), 2, sym_line_comment, sym_block_comment, - ACTIONS(6305), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [86183] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4892), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [88350] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6269), 1, - anon_sym_GT, - ACTIONS(6307), 1, - anon_sym_COMMA, - STATE(2948), 1, - aux_sym_for_lifetimes_repeat1, - STATE(2941), 2, + STATE(3014), 2, sym_line_comment, sym_block_comment, - [86203] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4904), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [88366] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4887), 1, - anon_sym_for, - STATE(1933), 1, - sym_type_arguments, - STATE(2942), 2, + STATE(3015), 2, sym_line_comment, sym_block_comment, - [86223] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4924), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [88382] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4955), 1, - anon_sym_RBRACE, - ACTIONS(6309), 1, - anon_sym_COMMA, - STATE(2931), 1, - aux_sym_field_declaration_list_repeat1, - STATE(2943), 2, + ACTIONS(4957), 1, + anon_sym_LBRACE, + ACTIONS(6510), 1, + anon_sym_SEMI, + STATE(1135), 1, + sym_declaration_list, + STATE(3016), 2, sym_line_comment, sym_block_comment, - [86243] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [88402] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1013), 1, - anon_sym_RPAREN, - ACTIONS(6311), 1, - anon_sym_COMMA, - STATE(2589), 1, - aux_sym_arguments_repeat1, - STATE(2944), 2, + STATE(3017), 2, sym_line_comment, sym_block_comment, - [86263] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4884), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [88418] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5617), 1, - anon_sym_EQ, - ACTIONS(5679), 2, - anon_sym_GT, - anon_sym_COMMA, - STATE(2945), 2, + STATE(3018), 2, sym_line_comment, sym_block_comment, - [86281] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4768), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [88434] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3137), 1, - anon_sym_RPAREN, - ACTIONS(6313), 1, - anon_sym_COMMA, - STATE(2880), 1, - aux_sym_tuple_type_repeat1, - STATE(2946), 2, + STATE(3019), 2, sym_line_comment, sym_block_comment, - [86301] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4906), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [88450] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(6315), 1, - anon_sym_SEMI, - ACTIONS(6317), 1, - anon_sym_EQ, - STATE(2947), 2, + STATE(3020), 2, sym_line_comment, sym_block_comment, - [86321] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4928), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [88466] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6319), 1, - anon_sym_GT, - ACTIONS(6321), 1, - anon_sym_COMMA, - STATE(2948), 3, + STATE(3021), 2, sym_line_comment, sym_block_comment, - aux_sym_for_lifetimes_repeat1, - [86339] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4916), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [88482] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2949), 2, + STATE(3022), 2, sym_line_comment, sym_block_comment, - ACTIONS(4804), 3, + ACTIONS(4886), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [86355] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [88498] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5137), 1, - anon_sym_RBRACE, - ACTIONS(6324), 1, - anon_sym_COMMA, - STATE(2844), 1, - aux_sym_struct_pattern_repeat1, - STATE(2950), 2, + STATE(3023), 2, sym_line_comment, sym_block_comment, - [86375] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4782), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [88514] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1586), 1, - anon_sym_GT, - ACTIONS(6326), 1, - anon_sym_COMMA, - STATE(2749), 1, - aux_sym_type_arguments_repeat1, - STATE(2951), 2, + STATE(3024), 2, sym_line_comment, sym_block_comment, - [86395] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4874), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [88530] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, + ACTIONS(5057), 1, anon_sym_PLUS, - ACTIONS(6328), 1, + ACTIONS(6512), 1, anon_sym_SEMI, - ACTIONS(6330), 1, + ACTIONS(6514), 1, anon_sym_EQ, - STATE(2952), 2, + STATE(3025), 2, sym_line_comment, sym_block_comment, - [86415] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [88550] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2953), 2, + STATE(3026), 2, sym_line_comment, sym_block_comment, - ACTIONS(4756), 3, + ACTIONS(4844), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [86431] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [88566] = 4, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(2954), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(6332), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [86447] = 6, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6334), 1, - sym_identifier, - ACTIONS(6336), 1, - anon_sym_ref, - ACTIONS(6338), 1, - sym_mutable_specifier, - STATE(2955), 2, + STATE(3027), 2, sym_line_comment, sym_block_comment, - [86467] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4888), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [88582] = 6, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3969), 1, - anon_sym_LBRACE, - ACTIONS(6340), 1, - anon_sym_COLON_COLON, - STATE(1651), 1, - sym_field_initializer_list, - STATE(2956), 2, - sym_line_comment, - sym_block_comment, - [86487] = 6, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4678), 1, - anon_sym_COLON_COLON, - ACTIONS(4838), 1, - anon_sym_BANG, - ACTIONS(6342), 1, - sym_identifier, - STATE(2957), 2, + ACTIONS(5057), 1, + anon_sym_PLUS, + ACTIONS(6516), 1, + anon_sym_SEMI, + ACTIONS(6518), 1, + anon_sym_EQ, + STATE(3028), 2, sym_line_comment, sym_block_comment, - [86507] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [88602] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2958), 2, + STATE(3029), 2, sym_line_comment, sym_block_comment, - ACTIONS(4762), 3, + ACTIONS(4908), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [86523] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [88618] = 6, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(5347), 1, - anon_sym_GT, - ACTIONS(5349), 1, - anon_sym_COMMA, - STATE(2786), 1, - aux_sym_type_parameters_repeat1, - STATE(2959), 2, - sym_line_comment, - sym_block_comment, - [86543] = 6, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1007), 1, - anon_sym_RBRACK, - ACTIONS(4069), 1, + ACTIONS(6520), 1, + anon_sym_RBRACE, + ACTIONS(6522), 1, anon_sym_COMMA, - STATE(2589), 1, - aux_sym_arguments_repeat1, - STATE(2960), 2, + STATE(2892), 1, + aux_sym_enum_variant_list_repeat2, + STATE(3030), 2, sym_line_comment, sym_block_comment, - [86563] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [88638] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1454), 1, - anon_sym_RPAREN, - ACTIONS(6344), 1, - anon_sym_COMMA, - STATE(2796), 1, - aux_sym_parameters_repeat1, - STATE(2961), 2, + ACTIONS(4989), 1, + anon_sym_where, + ACTIONS(6524), 1, + anon_sym_SEMI, + STATE(3681), 1, + sym_where_clause, + STATE(3031), 2, sym_line_comment, sym_block_comment, - [86583] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [88658] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2962), 2, + STATE(3032), 2, sym_line_comment, sym_block_comment, - ACTIONS(4764), 3, + ACTIONS(4866), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [86599] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [88674] = 4, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4885), 1, - anon_sym_RBRACE, - ACTIONS(6346), 1, - anon_sym_COMMA, - STATE(2804), 1, - aux_sym_enum_variant_list_repeat2, - STATE(2963), 2, - sym_line_comment, - sym_block_comment, - [86619] = 4, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2964), 2, + STATE(3033), 2, sym_line_comment, sym_block_comment, - ACTIONS(4788), 3, + ACTIONS(4836), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [86635] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [88690] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5452), 1, - anon_sym_PIPE, - ACTIONS(6348), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(2965), 2, + ACTIONS(4666), 1, + anon_sym_COLON, + ACTIONS(5039), 1, + anon_sym_COLON_COLON, + STATE(2678), 1, + sym_trait_bounds, + STATE(3034), 2, sym_line_comment, sym_block_comment, - [86653] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [88710] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2966), 2, + ACTIONS(4624), 1, + anon_sym_COLON_COLON, + ACTIONS(4666), 1, + anon_sym_COLON, + STATE(2678), 1, + sym_trait_bounds, + STATE(3035), 2, sym_line_comment, sym_block_comment, - ACTIONS(5502), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [86669] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [88730] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, - anon_sym_LBRACE, - ACTIONS(6350), 1, - anon_sym_SEMI, - STATE(1461), 1, - sym_declaration_list, - STATE(2967), 2, + STATE(3036), 2, sym_line_comment, sym_block_comment, - [86689] = 6, - ACTIONS(27), 1, + ACTIONS(4880), 3, + anon_sym_EQ_GT, anon_sym_PIPE, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + anon_sym_if, + [88746] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6352), 1, - anon_sym_move, - STATE(224), 1, - sym_closure_parameters, - STATE(2968), 2, + STATE(3037), 2, sym_line_comment, sym_block_comment, - [86709] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4900), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [88762] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, - anon_sym_LBRACE, - ACTIONS(6354), 1, - anon_sym_SEMI, - STATE(1465), 1, - sym_declaration_list, - STATE(2969), 2, + ACTIONS(6528), 1, + anon_sym_COLON, + ACTIONS(6526), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(3038), 2, sym_line_comment, sym_block_comment, - [86729] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [88780] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4830), 1, - anon_sym_LBRACE, - STATE(1933), 1, - sym_type_arguments, - STATE(2970), 2, + STATE(3039), 2, sym_line_comment, sym_block_comment, - [86749] = 4, - ACTIONS(101), 1, + ACTIONS(4922), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [88796] = 6, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1018), 1, + anon_sym_RPAREN, + ACTIONS(6530), 1, + anon_sym_COMMA, + STATE(2656), 1, + aux_sym_arguments_repeat1, + STATE(3040), 2, + sym_line_comment, + sym_block_comment, + [88816] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2971), 2, + STATE(3041), 2, sym_line_comment, sym_block_comment, - ACTIONS(4664), 3, + ACTIONS(4882), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [86765] = 6, - ACTIONS(27), 1, + [88832] = 6, + ACTIONS(29), 1, anon_sym_PIPE, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6356), 1, + ACTIONS(6532), 1, anon_sym_move, - STATE(228), 1, + STATE(221), 1, sym_closure_parameters, - STATE(2972), 2, + STATE(3042), 2, sym_line_comment, sym_block_comment, - [86785] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [88852] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2973), 2, + STATE(3043), 2, sym_line_comment, sym_block_comment, - ACTIONS(4794), 3, + ACTIONS(4914), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [86801] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [88868] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2974), 2, + STATE(3044), 2, sym_line_comment, sym_block_comment, - ACTIONS(4802), 3, + ACTIONS(4918), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [86817] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [88884] = 4, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(6358), 1, - anon_sym_RPAREN, - ACTIONS(6360), 1, - anon_sym_COMMA, - STATE(2922), 1, - aux_sym_ordered_field_declaration_list_repeat1, - STATE(2975), 2, - sym_line_comment, - sym_block_comment, - [86837] = 6, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(6362), 1, - anon_sym_SEMI, - STATE(3467), 1, - sym_where_clause, - STATE(2976), 2, + STATE(3045), 2, sym_line_comment, sym_block_comment, - [86857] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6534), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [88900] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2977), 2, + STATE(3046), 2, sym_line_comment, sym_block_comment, - ACTIONS(6364), 3, + ACTIONS(6536), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [86873] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [88916] = 4, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(2978), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4758), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [86889] = 6, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(6366), 1, - anon_sym_for, - STATE(1933), 1, - sym_type_arguments, - STATE(2979), 2, + STATE(3047), 2, sym_line_comment, sym_block_comment, - [86909] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4915), 1, - anon_sym_LBRACE, - ACTIONS(6368), 1, + ACTIONS(6538), 3, anon_sym_SEMI, - STATE(1093), 1, - sym_declaration_list, - STATE(2980), 2, - sym_line_comment, - sym_block_comment, - [86929] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(5528), 1, - anon_sym_RPAREN, - ACTIONS(5530), 1, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(2822), 1, - aux_sym_parameters_repeat1, - STATE(2981), 2, - sym_line_comment, - sym_block_comment, - [86949] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [88932] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, - anon_sym_LBRACE, - ACTIONS(6370), 1, - anon_sym_SEMI, - STATE(1095), 1, - sym_declaration_list, - STATE(2982), 2, + STATE(3048), 2, sym_line_comment, sym_block_comment, - [86969] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6540), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [88948] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2983), 2, + STATE(3049), 2, sym_line_comment, sym_block_comment, - ACTIONS(4860), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [86985] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6542), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [88964] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1598), 1, + ACTIONS(1609), 1, anon_sym_GT, - ACTIONS(6372), 1, + ACTIONS(6544), 1, anon_sym_COMMA, - STATE(2747), 1, + STATE(2805), 1, aux_sym_type_arguments_repeat1, - STATE(2984), 2, + STATE(3050), 2, sym_line_comment, sym_block_comment, - [87005] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [88984] = 4, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3051), 1, - anon_sym_PLUS, - ACTIONS(6374), 1, - sym_mutable_specifier, - ACTIONS(6376), 1, - sym_self, - STATE(2985), 2, - sym_line_comment, - sym_block_comment, - [87025] = 6, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(6378), 1, - anon_sym_SEMI, - ACTIONS(6380), 1, - anon_sym_EQ, - STATE(2986), 2, + STATE(3051), 2, sym_line_comment, sym_block_comment, - [87045] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6546), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [89000] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(6382), 2, - anon_sym_RPAREN, + ACTIONS(4449), 1, + anon_sym_RBRACE, + ACTIONS(6548), 1, anon_sym_COMMA, - STATE(2987), 2, + STATE(2817), 1, + aux_sym_use_list_repeat1, + STATE(3052), 2, sym_line_comment, sym_block_comment, - [87063] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [89020] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2988), 2, + STATE(3053), 2, sym_line_comment, sym_block_comment, - ACTIONS(6384), 3, + ACTIONS(6550), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [87079] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [89036] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2945), 1, - anon_sym_RPAREN, - ACTIONS(6386), 1, - anon_sym_COMMA, - STATE(2938), 1, - aux_sym_tuple_pattern_repeat1, - STATE(2989), 2, + STATE(3054), 2, sym_line_comment, sym_block_comment, - [87099] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4942), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [89052] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2990), 2, + STATE(3055), 2, sym_line_comment, sym_block_comment, - ACTIONS(4760), 3, + ACTIONS(4940), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [87115] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [89068] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1598), 1, - anon_sym_GT, - ACTIONS(6372), 1, - anon_sym_COMMA, - STATE(2749), 1, - aux_sym_type_arguments_repeat1, - STATE(2991), 2, + ACTIONS(5047), 1, + anon_sym_LBRACE, + ACTIONS(6552), 1, + anon_sym_SEMI, + STATE(571), 1, + sym_declaration_list, + STATE(3056), 2, sym_line_comment, sym_block_comment, - [87135] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [89088] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4959), 1, - anon_sym_RBRACE, - ACTIONS(6388), 1, - anon_sym_COMMA, - STATE(2931), 1, - aux_sym_field_declaration_list_repeat1, - STATE(2992), 2, + STATE(3057), 2, sym_line_comment, sym_block_comment, - [87155] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4930), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [89104] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4949), 1, - anon_sym_RBRACE, - ACTIONS(6390), 1, + ACTIONS(1487), 1, + anon_sym_RPAREN, + ACTIONS(6554), 1, anon_sym_COMMA, - STATE(2931), 1, - aux_sym_field_declaration_list_repeat1, - STATE(2993), 2, + STATE(2828), 1, + aux_sym_parameters_repeat1, + STATE(3058), 2, sym_line_comment, sym_block_comment, - [87175] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [89124] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4959), 1, - anon_sym_RBRACE, - ACTIONS(6388), 1, - anon_sym_COMMA, - STATE(2943), 1, - aux_sym_field_declaration_list_repeat1, - STATE(2994), 2, + ACTIONS(4527), 1, + anon_sym_LT2, + ACTIONS(6556), 1, + anon_sym_for, + STATE(1968), 1, + sym_type_arguments, + STATE(3059), 2, sym_line_comment, sym_block_comment, - [87195] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [89144] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2995), 2, + STATE(3060), 2, sym_line_comment, sym_block_comment, - ACTIONS(4752), 3, + ACTIONS(4920), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [87211] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [89160] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6392), 1, - anon_sym_GT, - ACTIONS(6394), 1, + ACTIONS(5037), 1, + anon_sym_RBRACE, + ACTIONS(6558), 1, anon_sym_COMMA, - STATE(2941), 1, - aux_sym_for_lifetimes_repeat1, - STATE(2996), 2, + STATE(2846), 1, + aux_sym_enum_variant_list_repeat2, + STATE(3061), 2, sym_line_comment, sym_block_comment, - [87231] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [89180] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(6396), 1, - anon_sym_SEMI, - ACTIONS(6398), 1, - anon_sym_RBRACK, - STATE(2997), 2, + ACTIONS(4527), 1, + anon_sym_LT2, + ACTIONS(6560), 1, + anon_sym_for, + STATE(1968), 1, + sym_type_arguments, + STATE(3062), 2, sym_line_comment, sym_block_comment, - [87251] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [89200] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2998), 2, + STATE(3063), 2, sym_line_comment, sym_block_comment, - ACTIONS(4768), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [87267] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6562), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_GT, + [89216] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4878), 1, + ACTIONS(4957), 1, anon_sym_LBRACE, - ACTIONS(6400), 1, + ACTIONS(6564), 1, anon_sym_SEMI, - STATE(629), 1, + STATE(1224), 1, sym_declaration_list, - STATE(2999), 2, + STATE(3064), 2, sym_line_comment, sym_block_comment, - [87287] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [89236] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3000), 2, + ACTIONS(4957), 1, + anon_sym_LBRACE, + ACTIONS(6566), 1, + anon_sym_SEMI, + STATE(1233), 1, + sym_declaration_list, + STATE(3065), 2, sym_line_comment, sym_block_comment, - ACTIONS(6402), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [87303] = 6, - ACTIONS(101), 1, + [89256] = 6, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4989), 1, + anon_sym_where, + ACTIONS(6568), 1, + anon_sym_SEMI, + STATE(3444), 1, + sym_where_clause, + STATE(3066), 2, + sym_line_comment, + sym_block_comment, + [89276] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5436), 1, + ACTIONS(4742), 1, + anon_sym_GT, + ACTIONS(6570), 1, anon_sym_COMMA, - ACTIONS(6404), 1, - anon_sym_PIPE, - STATE(2924), 1, - aux_sym_closure_parameters_repeat1, - STATE(3001), 2, + STATE(2879), 1, + aux_sym_type_parameters_repeat1, + STATE(3067), 2, sym_line_comment, sym_block_comment, - [87323] = 6, - ACTIONS(101), 1, + [89296] = 6, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4732), 1, + anon_sym_GT, + ACTIONS(5553), 1, + anon_sym_COMMA, + STATE(2879), 1, + aux_sym_type_parameters_repeat1, + STATE(3068), 2, + sym_line_comment, + sym_block_comment, + [89316] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(6406), 1, + ACTIONS(4957), 1, + anon_sym_LBRACE, + ACTIONS(6572), 1, anon_sym_SEMI, - STATE(3371), 1, - sym_where_clause, - STATE(3002), 2, + STATE(1246), 1, + sym_declaration_list, + STATE(3069), 2, sym_line_comment, sym_block_comment, - [87343] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [89336] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4878), 1, + ACTIONS(4957), 1, anon_sym_LBRACE, - ACTIONS(6408), 1, + ACTIONS(6574), 1, anon_sym_SEMI, - STATE(667), 1, + STATE(1251), 1, sym_declaration_list, - STATE(3003), 2, + STATE(3070), 2, sym_line_comment, sym_block_comment, - [87363] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [89356] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1005), 1, - anon_sym_RPAREN, - ACTIONS(4067), 1, - anon_sym_COMMA, - STATE(2589), 1, - aux_sym_arguments_repeat1, - STATE(3004), 2, + STATE(3071), 2, sym_line_comment, sym_block_comment, - [87383] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4864), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [89372] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4878), 1, - anon_sym_LBRACE, - ACTIONS(6410), 1, + ACTIONS(5057), 1, + anon_sym_PLUS, + ACTIONS(6576), 1, anon_sym_SEMI, - STATE(753), 1, - sym_declaration_list, - STATE(3005), 2, + ACTIONS(6578), 1, + anon_sym_EQ, + STATE(3072), 2, sym_line_comment, sym_block_comment, - [87403] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [89392] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6412), 1, - sym_identifier, - ACTIONS(6414), 2, - anon_sym_default, - anon_sym_union, - STATE(3006), 2, + ACTIONS(5043), 1, + anon_sym_RBRACE, + ACTIONS(6580), 1, + anon_sym_COMMA, + STATE(2898), 1, + aux_sym_field_declaration_list_repeat1, + STATE(3073), 2, sym_line_comment, sym_block_comment, - [87421] = 6, - ACTIONS(101), 1, + [89412] = 6, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4989), 1, + anon_sym_where, + ACTIONS(6582), 1, + anon_sym_SEMI, + STATE(3434), 1, + sym_where_clause, + STATE(3074), 2, + sym_line_comment, + sym_block_comment, + [89432] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3021), 1, - anon_sym_RBRACK, - ACTIONS(6416), 1, + ACTIONS(6584), 1, + anon_sym_RBRACE, + ACTIONS(6586), 1, anon_sym_COMMA, - STATE(2680), 1, - aux_sym_slice_pattern_repeat1, - STATE(3007), 2, + STATE(2813), 1, + aux_sym_field_declaration_list_repeat1, + STATE(3075), 2, sym_line_comment, sym_block_comment, - [87441] = 5, - ACTIONS(101), 1, + [89452] = 4, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(3076), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4862), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [89468] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6418), 1, - sym_identifier, - ACTIONS(6420), 2, - anon_sym_default, - anon_sym_union, - STATE(3008), 2, + STATE(3077), 2, sym_line_comment, sym_block_comment, - [87459] = 6, - ACTIONS(101), 1, + ACTIONS(4878), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [89484] = 4, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(3078), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4876), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [89500] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(6422), 1, + ACTIONS(5057), 1, + anon_sym_PLUS, + ACTIONS(6588), 1, anon_sym_SEMI, - STATE(3327), 1, - sym_where_clause, - STATE(3009), 2, + ACTIONS(6590), 1, + anon_sym_EQ, + STATE(3079), 2, sym_line_comment, sym_block_comment, - [87479] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [89520] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4878), 1, + ACTIONS(4957), 1, anon_sym_LBRACE, - ACTIONS(6424), 1, + ACTIONS(6592), 1, anon_sym_SEMI, - STATE(554), 1, + STATE(1334), 1, sym_declaration_list, - STATE(3010), 2, + STATE(3080), 2, sym_line_comment, sym_block_comment, - [87499] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [89540] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_GT, - ACTIONS(5371), 1, - anon_sym_COMMA, - STATE(2873), 1, - aux_sym_type_parameters_repeat1, - STATE(3011), 2, + ACTIONS(4957), 1, + anon_sym_LBRACE, + ACTIONS(6594), 1, + anon_sym_SEMI, + STATE(1356), 1, + sym_declaration_list, + STATE(3081), 2, sym_line_comment, sym_block_comment, - [87519] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [89560] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6426), 1, - anon_sym_RBRACE, - ACTIONS(6428), 1, - anon_sym_COMMA, - STATE(2771), 1, - aux_sym_enum_variant_list_repeat2, - STATE(3012), 2, + ACTIONS(6596), 1, + anon_sym_EQ_GT, + ACTIONS(6598), 1, + anon_sym_PIPE, + ACTIONS(6600), 1, + anon_sym_if, + STATE(3082), 2, sym_line_comment, sym_block_comment, - [87539] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [89580] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4961), 1, - anon_sym_for, - STATE(1933), 1, - sym_type_arguments, - STATE(3013), 2, + ACTIONS(4957), 1, + anon_sym_LBRACE, + ACTIONS(6602), 1, + anon_sym_SEMI, + STATE(1378), 1, + sym_declaration_list, + STATE(3083), 2, sym_line_comment, sym_block_comment, - [87559] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [89600] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5452), 1, - anon_sym_PIPE, - ACTIONS(6430), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(3014), 2, + ACTIONS(4957), 1, + anon_sym_LBRACE, + ACTIONS(6604), 1, + anon_sym_SEMI, + STATE(1375), 1, + sym_declaration_list, + STATE(3084), 2, sym_line_comment, sym_block_comment, - [87577] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [89620] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(6432), 1, + ACTIONS(4957), 1, + anon_sym_LBRACE, + ACTIONS(6606), 1, anon_sym_SEMI, - ACTIONS(6434), 1, - anon_sym_EQ, - STATE(3015), 2, + STATE(1366), 1, + sym_declaration_list, + STATE(3085), 2, sym_line_comment, sym_block_comment, - [87597] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [89640] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3016), 2, + ACTIONS(4957), 1, + anon_sym_LBRACE, + ACTIONS(6608), 1, + anon_sym_SEMI, + STATE(1360), 1, + sym_declaration_list, + STATE(3086), 2, sym_line_comment, sym_block_comment, - ACTIONS(6436), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [87613] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [89660] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4872), 1, - anon_sym_LT, - ACTIONS(6438), 1, - anon_sym_EQ, - STATE(3572), 1, - sym_type_parameters, - STATE(3017), 2, + ACTIONS(6610), 1, + sym_identifier, + ACTIONS(6612), 1, + anon_sym_ref, + ACTIONS(6614), 1, + sym_mutable_specifier, + STATE(3087), 2, sym_line_comment, sym_block_comment, - [87633] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [89680] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(6440), 1, - anon_sym_SEMI, - ACTIONS(6442), 1, - anon_sym_EQ, - STATE(3018), 2, + STATE(3088), 2, sym_line_comment, sym_block_comment, - [87653] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + ACTIONS(962), 3, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_GT, + [89696] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(6444), 1, - anon_sym_for, - STATE(1933), 1, - sym_type_arguments, - STATE(3019), 2, + ACTIONS(5047), 1, + anon_sym_LBRACE, + ACTIONS(6616), 1, + anon_sym_SEMI, + STATE(487), 1, + sym_declaration_list, + STATE(3089), 2, sym_line_comment, sym_block_comment, - [87673] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [89716] = 6, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4537), 1, - anon_sym_COLON_COLON, - ACTIONS(4582), 1, - anon_sym_COLON, - STATE(2604), 1, - sym_trait_bounds, - STATE(3020), 2, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5057), 1, + anon_sym_PLUS, + ACTIONS(6618), 1, + anon_sym_SEMI, + ACTIONS(6620), 1, + anon_sym_EQ, + STATE(3090), 2, sym_line_comment, sym_block_comment, - [87693] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [89736] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, + ACTIONS(4527), 1, anon_sym_LT2, - ACTIONS(6446), 1, + ACTIONS(6622), 1, anon_sym_for, - STATE(1933), 1, + STATE(1968), 1, sym_type_arguments, - STATE(3021), 2, + STATE(3091), 2, sym_line_comment, sym_block_comment, - [87713] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [89756] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6448), 1, - anon_sym_RBRACE, - ACTIONS(6450), 1, - anon_sym_COMMA, - STATE(2859), 1, - aux_sym_struct_pattern_repeat1, - STATE(3022), 2, + ACTIONS(6624), 1, + sym_identifier, + ACTIONS(6626), 2, + anon_sym_default, + anon_sym_union, + STATE(3092), 2, sym_line_comment, sym_block_comment, - [87733] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [89774] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, + ACTIONS(4957), 1, anon_sym_LBRACE, - ACTIONS(6452), 1, + ACTIONS(6628), 1, anon_sym_SEMI, - STATE(1135), 1, + STATE(1335), 1, sym_declaration_list, - STATE(3023), 2, + STATE(3093), 2, sym_line_comment, sym_block_comment, - [87753] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [89794] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, + ACTIONS(4957), 1, anon_sym_LBRACE, - ACTIONS(6454), 1, + ACTIONS(6630), 1, anon_sym_SEMI, - STATE(1137), 1, + STATE(1331), 1, sym_declaration_list, - STATE(3024), 2, + STATE(3094), 2, sym_line_comment, sym_block_comment, - [87773] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [89814] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(6456), 1, - anon_sym_for, - STATE(1933), 1, - sym_type_arguments, - STATE(3025), 2, + ACTIONS(6632), 1, + sym_identifier, + ACTIONS(6634), 2, + anon_sym_default, + anon_sym_union, + STATE(3095), 2, sym_line_comment, sym_block_comment, - [87793] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [89832] = 6, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6458), 1, - anon_sym_RBRACE, - ACTIONS(6460), 1, + ACTIONS(4732), 1, + anon_sym_GT, + ACTIONS(5553), 1, anon_sym_COMMA, - STATE(3026), 3, + STATE(2874), 1, + aux_sym_type_parameters_repeat1, + STATE(3096), 2, sym_line_comment, sym_block_comment, - aux_sym_field_initializer_list_repeat1, - [87811] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [89852] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5436), 1, + ACTIONS(5231), 1, + anon_sym_RBRACE, + ACTIONS(6636), 1, anon_sym_COMMA, - ACTIONS(6463), 1, - anon_sym_PIPE, - STATE(3001), 1, - aux_sym_closure_parameters_repeat1, - STATE(3027), 2, + STATE(3097), 2, sym_line_comment, sym_block_comment, - [87831] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [89869] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(6465), 1, - sym_identifier, - ACTIONS(6467), 1, - anon_sym_ref, - ACTIONS(6469), 1, - sym_mutable_specifier, - STATE(3028), 2, - sym_line_comment, - sym_block_comment, - [87851] = 6, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(6471), 1, - anon_sym_for, - STATE(1933), 1, - sym_type_arguments, - STATE(3029), 2, + ACTIONS(4521), 1, + anon_sym_LPAREN, + STATE(2220), 1, + sym_parameters, + STATE(3098), 2, sym_line_comment, sym_block_comment, - [87871] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [89886] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, - anon_sym_LBRACE, - ACTIONS(6473), 1, - anon_sym_SEMI, - STATE(1184), 1, - sym_declaration_list, - STATE(3030), 2, + ACTIONS(3735), 1, + anon_sym_COLON, + ACTIONS(5426), 1, + anon_sym_PLUS, + STATE(3099), 2, sym_line_comment, sym_block_comment, - [87891] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [89903] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_where, - ACTIONS(6475), 1, - anon_sym_SEMI, - STATE(3556), 1, - sym_where_clause, - STATE(3031), 2, + ACTIONS(3937), 1, + anon_sym_COLON, + ACTIONS(5426), 1, + anon_sym_PLUS, + STATE(3100), 2, sym_line_comment, sym_block_comment, - [87911] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [89920] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3032), 2, + ACTIONS(6638), 1, + anon_sym_RPAREN, + ACTIONS(6640), 1, + anon_sym_COLON_COLON, + STATE(3101), 2, sym_line_comment, sym_block_comment, - ACTIONS(4822), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [87927] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [89937] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6477), 2, - anon_sym_const, - sym_mutable_specifier, - STATE(3033), 2, + ACTIONS(6638), 1, + anon_sym_RPAREN, + ACTIONS(6642), 1, + anon_sym_COLON_COLON, + STATE(3102), 2, sym_line_comment, sym_block_comment, - [87942] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [89954] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6479), 1, - anon_sym_SEMI, - ACTIONS(6481), 1, - anon_sym_as, - STATE(3034), 2, + ACTIONS(6638), 1, + anon_sym_RPAREN, + ACTIONS(6644), 1, + anon_sym_COLON_COLON, + STATE(3103), 2, sym_line_comment, sym_block_comment, - [87959] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [89971] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, + ACTIONS(4985), 1, anon_sym_LBRACE, - STATE(1162), 1, - sym_declaration_list, - STATE(3035), 2, + STATE(602), 1, + sym_field_declaration_list, + STATE(3104), 2, sym_line_comment, sym_block_comment, - [87976] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [89988] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6483), 2, + ACTIONS(5914), 1, + sym_super, + ACTIONS(6646), 1, sym_identifier, - sym_metavariable, - STATE(3036), 2, + STATE(3105), 2, sym_line_comment, sym_block_comment, - [87991] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [90005] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5546), 1, - sym_super, - ACTIONS(6485), 1, - sym_identifier, - STATE(3037), 2, + ACTIONS(6648), 1, + anon_sym_RPAREN, + ACTIONS(6650), 1, + anon_sym_COLON_COLON, + STATE(3106), 2, sym_line_comment, sym_block_comment, - [88008] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [90022] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4878), 1, - anon_sym_LBRACE, - STATE(527), 1, - sym_declaration_list, - STATE(3038), 2, + ACTIONS(6652), 1, + anon_sym_LBRACK, + ACTIONS(6654), 1, + anon_sym_BANG, + STATE(3107), 2, sym_line_comment, sym_block_comment, - [88025] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [90039] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6487), 2, + ACTIONS(6656), 1, sym_identifier, - sym_super, - STATE(3039), 2, + ACTIONS(6658), 1, + sym_mutable_specifier, + STATE(3108), 2, sym_line_comment, sym_block_comment, - [88040] = 5, - ACTIONS(101), 1, + [90056] = 4, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(6660), 2, + sym_identifier, + sym_metavariable, + STATE(3109), 2, + sym_line_comment, + sym_block_comment, + [90071] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5546), 1, + ACTIONS(5618), 1, sym_super, - ACTIONS(6489), 1, + ACTIONS(6662), 1, sym_identifier, - STATE(3040), 2, + STATE(3110), 2, sym_line_comment, sym_block_comment, - [88057] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [90088] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6491), 2, - sym__block_comment_content, - anon_sym_STAR_SLASH, - STATE(3041), 2, + ACTIONS(3769), 1, + anon_sym_COLON, + ACTIONS(5426), 1, + anon_sym_PLUS, + STATE(3111), 2, sym_line_comment, sym_block_comment, - [88072] = 5, - ACTIONS(101), 1, + [90105] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4957), 1, + anon_sym_LBRACE, + STATE(1277), 1, + sym_declaration_list, + STATE(3112), 2, + sym_line_comment, + sym_block_comment, + [90122] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6493), 1, + ACTIONS(6610), 1, sym_identifier, - ACTIONS(6495), 1, - sym_super, - STATE(3042), 2, + ACTIONS(6614), 1, + sym_mutable_specifier, + STATE(3113), 2, sym_line_comment, sym_block_comment, - [88089] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [90139] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4537), 1, - anon_sym_COLON_COLON, - ACTIONS(6145), 1, - anon_sym_for, - STATE(3043), 2, + ACTIONS(5577), 1, + anon_sym_PIPE, + ACTIONS(6664), 1, + anon_sym_in, + STATE(3114), 2, sym_line_comment, sym_block_comment, - [88106] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [90156] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(217), 1, - sym_closure_parameters, - STATE(3044), 2, + ACTIONS(5577), 1, + anon_sym_PIPE, + ACTIONS(6666), 1, + anon_sym_in, + STATE(3115), 2, sym_line_comment, sym_block_comment, - [88123] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [90173] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6497), 1, - anon_sym_SEMI, - ACTIONS(6499), 1, - anon_sym_as, - STATE(3045), 2, + ACTIONS(5577), 1, + anon_sym_PIPE, + ACTIONS(6668), 1, + anon_sym_in, + STATE(3116), 2, sym_line_comment, sym_block_comment, - [88140] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [90190] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5281), 1, - anon_sym_LBRACE, - STATE(707), 1, - sym_enum_variant_list, - STATE(3046), 2, + ACTIONS(6636), 1, + anon_sym_COMMA, + ACTIONS(6670), 1, + anon_sym_RBRACE, + STATE(3117), 2, sym_line_comment, sym_block_comment, - [88157] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [90207] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5143), 1, + ACTIONS(6636), 1, + anon_sym_COMMA, + ACTIONS(6672), 1, anon_sym_RBRACE, - ACTIONS(6501), 1, - anon_sym_SEMI, - STATE(3047), 2, + STATE(3118), 2, sym_line_comment, sym_block_comment, - [88174] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [90224] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3579), 1, - anon_sym_COLON, - ACTIONS(5241), 1, - anon_sym_PLUS, - STATE(3048), 2, + ACTIONS(5577), 1, + anon_sym_PIPE, + ACTIONS(6674), 1, + anon_sym_in, + STATE(3119), 2, sym_line_comment, sym_block_comment, - [88191] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [90241] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5703), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(3049), 2, + ACTIONS(6676), 1, + anon_sym_LBRACK, + ACTIONS(6678), 1, + anon_sym_BANG, + STATE(3120), 2, sym_line_comment, sym_block_comment, - [88206] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [90258] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6503), 1, + ACTIONS(5618), 2, sym_identifier, - ACTIONS(6505), 1, sym_super, - STATE(3050), 2, + STATE(3121), 2, sym_line_comment, sym_block_comment, - [88223] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [90273] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5866), 1, - sym_super, - ACTIONS(6507), 1, - sym_identifier, - STATE(3051), 2, + ACTIONS(4957), 1, + anon_sym_LBRACE, + STATE(1348), 1, + sym_declaration_list, + STATE(3122), 2, sym_line_comment, sym_block_comment, - [88240] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [90290] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(228), 1, - sym_closure_parameters, - STATE(3052), 2, + ACTIONS(5047), 1, + anon_sym_LBRACE, + STATE(600), 1, + sym_declaration_list, + STATE(3123), 2, sym_line_comment, sym_block_comment, - [88257] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [90307] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5145), 1, - anon_sym_RBRACE, - ACTIONS(6501), 1, - anon_sym_SEMI, - STATE(3053), 2, + ACTIONS(4624), 1, + anon_sym_COLON_COLON, + ACTIONS(6622), 1, + anon_sym_for, + STATE(3124), 2, sym_line_comment, sym_block_comment, - [88274] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [90324] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3939), 1, - anon_sym_LPAREN, - STATE(1594), 1, - sym_parameters, - STATE(3054), 2, + ACTIONS(4624), 1, + anon_sym_COLON_COLON, + ACTIONS(6560), 1, + anon_sym_for, + STATE(3125), 2, sym_line_comment, sym_block_comment, - [88291] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [90341] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6509), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(3055), 2, + ACTIONS(4957), 1, + anon_sym_LBRACE, + STATE(1293), 1, + sym_declaration_list, + STATE(3126), 2, sym_line_comment, sym_block_comment, - [88306] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [90358] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6511), 1, - anon_sym_LT, - STATE(1084), 1, - sym_type_parameters, - STATE(3056), 2, + ACTIONS(4957), 1, + anon_sym_LBRACE, + STATE(1294), 1, + sym_declaration_list, + STATE(3127), 2, sym_line_comment, sym_block_comment, - [88323] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [90375] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(225), 1, - sym_closure_parameters, - STATE(3057), 2, + ACTIONS(5047), 1, + anon_sym_LBRACE, + STATE(601), 1, + sym_declaration_list, + STATE(3128), 2, sym_line_comment, sym_block_comment, - [88340] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [90392] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5991), 1, + ACTIONS(5914), 2, sym_identifier, - ACTIONS(5995), 1, - sym_mutable_specifier, - STATE(3058), 2, + sym_super, + STATE(3129), 2, sym_line_comment, sym_block_comment, - [88357] = 5, - ACTIONS(101), 1, + [90407] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5577), 1, + anon_sym_PIPE, + ACTIONS(6680), 1, + anon_sym_in, + STATE(3130), 2, + sym_line_comment, + sym_block_comment, + [90424] = 5, + ACTIONS(29), 1, + anon_sym_PIPE, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3587), 1, - anon_sym_COLON, - ACTIONS(5241), 1, - anon_sym_PLUS, - STATE(3059), 2, + STATE(223), 1, + sym_closure_parameters, + STATE(3131), 2, sym_line_comment, sym_block_comment, - [88374] = 5, - ACTIONS(101), 1, + [90441] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5618), 1, + sym_super, + ACTIONS(6682), 1, + sym_identifier, + STATE(3132), 2, + sym_line_comment, + sym_block_comment, + [90458] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4870), 1, + ACTIONS(4985), 1, anon_sym_LBRACE, - STATE(747), 1, + STATE(577), 1, sym_field_declaration_list, - STATE(3060), 2, + STATE(3133), 2, sym_line_comment, sym_block_comment, - [88391] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [90475] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3591), 1, - anon_sym_COLON, - ACTIONS(5241), 1, - anon_sym_PLUS, - STATE(3061), 2, + ACTIONS(4624), 1, + anon_sym_COLON_COLON, + ACTIONS(6496), 1, + anon_sym_for, + STATE(3134), 2, sym_line_comment, sym_block_comment, - [88408] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [90492] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5722), 1, - sym_identifier, - ACTIONS(5724), 1, + ACTIONS(5618), 1, sym_super, - STATE(3062), 2, + ACTIONS(6684), 1, + sym_identifier, + STATE(3135), 2, sym_line_comment, sym_block_comment, - [88425] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [90509] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5641), 2, - sym_identifier, - sym_super, - STATE(3063), 2, + ACTIONS(5047), 1, + anon_sym_LBRACE, + STATE(503), 1, + sym_declaration_list, + STATE(3136), 2, sym_line_comment, sym_block_comment, - [88440] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [90526] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6513), 1, - sym_identifier, - ACTIONS(6515), 1, - sym_super, - STATE(3064), 2, + ACTIONS(4521), 1, + anon_sym_LPAREN, + STATE(1990), 1, + sym_parameters, + STATE(3137), 2, sym_line_comment, sym_block_comment, - [88457] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [90543] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6267), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(3065), 2, + ACTIONS(4624), 1, + anon_sym_COLON_COLON, + ACTIONS(6458), 1, + anon_sym_for, + STATE(3138), 2, sym_line_comment, sym_block_comment, - [88472] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [90560] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6489), 1, + ACTIONS(6686), 1, sym_identifier, - ACTIONS(6517), 1, + ACTIONS(6688), 1, sym_super, - STATE(3066), 2, + STATE(3139), 2, sym_line_comment, sym_block_comment, - [88489] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [90577] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5103), 1, - sym_super, - ACTIONS(5602), 1, + ACTIONS(6690), 2, sym_identifier, - STATE(3067), 2, + sym_metavariable, + STATE(3140), 2, sym_line_comment, sym_block_comment, - [88506] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [90592] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6519), 1, - sym_identifier, - ACTIONS(6521), 1, - sym_super, - STATE(3068), 2, + ACTIONS(4624), 1, + anon_sym_COLON_COLON, + ACTIONS(6556), 1, + anon_sym_for, + STATE(3141), 2, sym_line_comment, sym_block_comment, - [88523] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [90609] = 5, + ACTIONS(29), 1, + anon_sym_PIPE, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3637), 1, - anon_sym_COLON, - ACTIONS(5241), 1, - anon_sym_PLUS, - STATE(3069), 2, + STATE(221), 1, + sym_closure_parameters, + STATE(3142), 2, sym_line_comment, sym_block_comment, - [88540] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [90626] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6511), 1, - anon_sym_LT, - STATE(865), 1, - sym_type_parameters, - STATE(3070), 2, + ACTIONS(6692), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(3143), 2, sym_line_comment, sym_block_comment, - [88557] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [90641] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3939), 1, - anon_sym_LPAREN, - STATE(1622), 1, - sym_parameters, - STATE(3071), 2, + ACTIONS(5047), 1, + anon_sym_LBRACE, + STATE(570), 1, + sym_declaration_list, + STATE(3144), 2, sym_line_comment, sym_block_comment, - [88574] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [90658] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5604), 1, - sym_super, - ACTIONS(5651), 1, - sym_identifier, - STATE(3072), 2, + ACTIONS(4624), 1, + anon_sym_COLON_COLON, + ACTIONS(4961), 1, + anon_sym_for, + STATE(3145), 2, sym_line_comment, sym_block_comment, - [88591] = 4, - ACTIONS(101), 1, + [90675] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5415), 1, + anon_sym_LBRACE, + STATE(660), 1, + sym_enum_variant_list, + STATE(3146), 2, + sym_line_comment, + sym_block_comment, + [90692] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6248), 2, + ACTIONS(6694), 2, anon_sym_RBRACE, anon_sym_COMMA, - STATE(3073), 2, + STATE(3147), 2, sym_line_comment, sym_block_comment, - [88606] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [90707] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5147), 1, - anon_sym_RPAREN, - ACTIONS(6501), 1, - anon_sym_SEMI, - STATE(3074), 2, + ACTIONS(3403), 1, + anon_sym_LBRACE, + STATE(1473), 1, + sym_field_initializer_list, + STATE(3148), 2, sym_line_comment, sym_block_comment, - [88623] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [90724] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2969), 1, + ACTIONS(3047), 1, anon_sym_SQUOTE, - STATE(3196), 1, + STATE(3287), 1, sym_lifetime, - STATE(3075), 2, + STATE(3149), 2, sym_line_comment, sym_block_comment, - [88640] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [90741] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6523), 2, - sym__block_comment_content, - anon_sym_STAR_SLASH, - STATE(3076), 2, + ACTIONS(6696), 2, + sym_identifier, + sym_metavariable, + STATE(3150), 2, sym_line_comment, sym_block_comment, - [88655] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [90756] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6525), 2, - sym_identifier, - sym_super, - STATE(3077), 2, + ACTIONS(4521), 1, + anon_sym_LPAREN, + STATE(2225), 1, + sym_parameters, + STATE(3151), 2, sym_line_comment, sym_block_comment, - [88670] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [90773] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6273), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(3078), 2, + ACTIONS(6698), 1, + sym_identifier, + ACTIONS(6700), 1, + sym_super, + STATE(3152), 2, sym_line_comment, sym_block_comment, - [88685] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [90790] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5866), 1, + ACTIONS(5914), 1, sym_super, - ACTIONS(6527), 1, + ACTIONS(6702), 1, sym_identifier, - STATE(3079), 2, + STATE(3153), 2, sym_line_comment, sym_block_comment, - [88702] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [90807] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4878), 1, - anon_sym_LBRACE, - STATE(580), 1, - sym_declaration_list, - STATE(3080), 2, + ACTIONS(5061), 1, + anon_sym_COLON, + STATE(2678), 1, + sym_trait_bounds, + STATE(3154), 2, sym_line_comment, sym_block_comment, - [88719] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [90824] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3243), 1, - anon_sym_LPAREN, - STATE(1085), 1, - sym_parameters, - STATE(3081), 2, + ACTIONS(6704), 2, + anon_sym_const, + sym_mutable_specifier, + STATE(3155), 2, sym_line_comment, sym_block_comment, - [88736] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [90839] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6529), 2, - sym_identifier, - sym_super, - STATE(3082), 2, + ACTIONS(4987), 1, + anon_sym_LT, + STATE(901), 1, + sym_type_parameters, + STATE(3156), 2, sym_line_comment, sym_block_comment, - [88751] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [90856] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, - anon_sym_LPAREN, - STATE(2219), 1, - sym_parameters, - STATE(3083), 2, + ACTIONS(5577), 1, + anon_sym_PIPE, + ACTIONS(6706), 1, + anon_sym_in, + STATE(3157), 2, sym_line_comment, sym_block_comment, - [88768] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [90873] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6531), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(3084), 2, + ACTIONS(4957), 1, + anon_sym_LBRACE, + STATE(1182), 1, + sym_declaration_list, + STATE(3158), 2, sym_line_comment, sym_block_comment, - [88783] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [90890] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3939), 1, + ACTIONS(4023), 1, anon_sym_LPAREN, - STATE(1598), 1, + STATE(1635), 1, sym_parameters, - STATE(3085), 2, + STATE(3159), 2, sym_line_comment, sym_block_comment, - [88800] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [90907] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6487), 1, - sym_super, - ACTIONS(6533), 1, + ACTIONS(6708), 2, sym_identifier, - STATE(3086), 2, + sym_metavariable, + STATE(3160), 2, sym_line_comment, sym_block_comment, - [88817] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [90922] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4878), 1, + ACTIONS(5033), 1, anon_sym_LBRACE, - STATE(581), 1, - sym_declaration_list, - STATE(3087), 2, + STATE(1181), 1, + sym_field_declaration_list, + STATE(3161), 2, sym_line_comment, sym_block_comment, - [88834] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [90939] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5610), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(3088), 2, + ACTIONS(6710), 1, + anon_sym_LBRACK, + ACTIONS(6712), 1, + anon_sym_BANG, + STATE(3162), 2, sym_line_comment, sym_block_comment, - [88849] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [90956] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5679), 2, - anon_sym_GT, + ACTIONS(6714), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(3089), 2, + STATE(3163), 2, sym_line_comment, sym_block_comment, - [88864] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [90971] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5235), 1, + ACTIONS(5033), 1, anon_sym_LBRACE, - STATE(1314), 1, - sym_enum_variant_list, - STATE(3090), 2, + STATE(1175), 1, + sym_field_declaration_list, + STATE(3164), 2, sym_line_comment, sym_block_comment, - [88881] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [90988] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6535), 1, + ACTIONS(5825), 2, anon_sym_RPAREN, - ACTIONS(6537), 1, - anon_sym_COLON_COLON, - STATE(3091), 2, + anon_sym_COMMA, + STATE(3165), 2, sym_line_comment, sym_block_comment, - [88898] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91003] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5866), 1, - sym_super, - ACTIONS(6539), 1, - sym_identifier, - STATE(3092), 2, + ACTIONS(6716), 2, + sym__block_comment_content, + anon_sym_STAR_SLASH, + STATE(3166), 2, sym_line_comment, sym_block_comment, - [88915] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91018] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6535), 1, - anon_sym_RPAREN, - ACTIONS(6541), 1, - anon_sym_COLON_COLON, - STATE(3093), 2, + ACTIONS(5458), 1, + anon_sym_LBRACE, + STATE(1166), 1, + sym_enum_variant_list, + STATE(3167), 2, sym_line_comment, sym_block_comment, - [88932] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91035] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(224), 1, - sym_closure_parameters, - STATE(3094), 2, + ACTIONS(6718), 1, + anon_sym_LBRACE, + STATE(560), 1, + sym_macro_def_body, + STATE(3168), 2, sym_line_comment, sym_block_comment, - [88949] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91052] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4537), 1, + ACTIONS(6720), 1, + anon_sym_LPAREN, + ACTIONS(6722), 1, anon_sym_COLON_COLON, - ACTIONS(6366), 1, - anon_sym_for, - STATE(3095), 2, + STATE(3169), 2, sym_line_comment, sym_block_comment, - [88966] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91069] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(5546), 1, - sym_super, - ACTIONS(6543), 1, - sym_identifier, - STATE(3096), 2, - sym_line_comment, - sym_block_comment, - [88983] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4870), 1, - anon_sym_LBRACE, - STATE(750), 1, - sym_field_declaration_list, - STATE(3097), 2, + ACTIONS(5215), 1, + anon_sym_RBRACE, + ACTIONS(6636), 1, + anon_sym_COMMA, + STATE(3170), 2, sym_line_comment, sym_block_comment, - [89000] = 5, - ACTIONS(27), 1, + [91086] = 5, + ACTIONS(29), 1, anon_sym_PIPE, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(231), 1, + STATE(227), 1, sym_closure_parameters, - STATE(3098), 2, + STATE(3171), 2, sym_line_comment, sym_block_comment, - [89017] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91103] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4878), 1, + ACTIONS(6718), 1, anon_sym_LBRACE, - STATE(512), 1, - sym_declaration_list, - STATE(3099), 2, + STATE(558), 1, + sym_macro_def_body, + STATE(3172), 2, sym_line_comment, sym_block_comment, - [89034] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91120] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3969), 1, - anon_sym_LBRACE, - STATE(1651), 1, - sym_field_initializer_list, - STATE(3100), 2, + ACTIONS(6724), 2, + sym__block_comment_content, + anon_sym_STAR_SLASH, + STATE(3173), 2, sym_line_comment, sym_block_comment, - [89051] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91135] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, - anon_sym_LPAREN, - STATE(1960), 1, - sym_parameters, - STATE(3101), 2, + ACTIONS(5219), 1, + anon_sym_RBRACE, + ACTIONS(6636), 1, + anon_sym_COMMA, + STATE(3174), 2, sym_line_comment, sym_block_comment, - [89068] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91152] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5866), 1, - sym_super, - ACTIONS(6533), 1, - sym_identifier, - STATE(3102), 2, + ACTIONS(5415), 1, + anon_sym_LBRACE, + STATE(557), 1, + sym_enum_variant_list, + STATE(3175), 2, sym_line_comment, sym_block_comment, - [89085] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91169] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6545), 1, - anon_sym_RPAREN, - ACTIONS(6547), 1, - anon_sym_COLON_COLON, - STATE(3103), 2, + ACTIONS(6726), 1, + anon_sym_STAR_SLASH, + ACTIONS(6728), 1, + sym__block_comment_content, + STATE(3176), 2, sym_line_comment, sym_block_comment, - [89102] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91186] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6537), 1, - anon_sym_COLON_COLON, - ACTIONS(6549), 1, - anon_sym_RPAREN, - STATE(3104), 2, + ACTIONS(5761), 1, + sym_identifier, + ACTIONS(5763), 1, + sym_super, + STATE(3177), 2, sym_line_comment, sym_block_comment, - [89119] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91203] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(232), 1, - sym_closure_parameters, - STATE(3105), 2, + ACTIONS(5713), 2, + sym_identifier, + sym_super, + STATE(3178), 2, sym_line_comment, sym_block_comment, - [89136] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91218] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6541), 1, - anon_sym_COLON_COLON, - ACTIONS(6549), 1, - anon_sym_RPAREN, - STATE(3106), 2, + ACTIONS(6730), 1, + sym_identifier, + ACTIONS(6732), 1, + sym_super, + STATE(3179), 2, sym_line_comment, sym_block_comment, - [89153] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91235] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6549), 1, - anon_sym_RPAREN, - ACTIONS(6551), 1, - anon_sym_COLON_COLON, - STATE(3107), 2, + ACTIONS(6734), 2, + anon_sym_COMMA, + anon_sym_GT, + STATE(3180), 2, sym_line_comment, sym_block_comment, - [89170] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91250] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4607), 1, - anon_sym_BANG, - ACTIONS(4694), 1, - anon_sym_COLON_COLON, - STATE(3108), 2, + ACTIONS(4957), 1, + anon_sym_LBRACE, + STATE(1139), 1, + sym_declaration_list, + STATE(3181), 2, sym_line_comment, sym_block_comment, - [89187] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91267] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5724), 2, + ACTIONS(6684), 1, sym_identifier, + ACTIONS(6736), 1, sym_super, - STATE(3109), 2, + STATE(3182), 2, sym_line_comment, sym_block_comment, - [89202] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91284] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(6517), 1, - sym_super, - ACTIONS(6553), 1, - sym_identifier, - STATE(3110), 2, - sym_line_comment, - sym_block_comment, - [89219] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5103), 1, - sym_super, - ACTIONS(5651), 1, - sym_identifier, - STATE(3111), 2, + ACTIONS(4957), 1, + anon_sym_LBRACE, + STATE(1136), 1, + sym_declaration_list, + STATE(3183), 2, sym_line_comment, sym_block_comment, - [89236] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91301] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6521), 1, + ACTIONS(5296), 1, sym_super, - ACTIONS(6555), 1, + ACTIONS(5767), 1, sym_identifier, - STATE(3112), 2, + STATE(3184), 2, sym_line_comment, sym_block_comment, - [89253] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91318] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6557), 1, + ACTIONS(6720), 1, anon_sym_LPAREN, - ACTIONS(6559), 1, + ACTIONS(6738), 1, anon_sym_COLON_COLON, - STATE(3113), 2, + STATE(3185), 2, sym_line_comment, sym_block_comment, - [89270] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91335] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4870), 1, - anon_sym_LBRACE, - STATE(684), 1, - sym_field_declaration_list, - STATE(3114), 2, + ACTIONS(6740), 1, + sym_identifier, + ACTIONS(6742), 1, + sym_super, + STATE(3186), 2, sym_line_comment, sym_block_comment, - [89287] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91352] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4891), 1, + ACTIONS(5047), 1, anon_sym_LBRACE, - STATE(1341), 1, - sym_field_declaration_list, - STATE(3115), 2, + STATE(770), 1, + sym_declaration_list, + STATE(3187), 2, sym_line_comment, sym_block_comment, - [89304] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91369] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, + ACTIONS(5047), 1, anon_sym_LBRACE, - STATE(1342), 1, + STATE(766), 1, sym_declaration_list, - STATE(3116), 2, + STATE(3188), 2, sym_line_comment, sym_block_comment, - [89321] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91386] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, + ACTIONS(4957), 1, anon_sym_LBRACE, - STATE(1343), 1, + STATE(1128), 1, sym_declaration_list, - STATE(3117), 2, + STATE(3189), 2, sym_line_comment, sym_block_comment, - [89338] = 5, - ACTIONS(101), 1, + [91403] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(6636), 1, + anon_sym_COMMA, + ACTIONS(6744), 1, + anon_sym_RBRACE, + STATE(3190), 2, + sym_line_comment, + sym_block_comment, + [91420] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6561), 1, - anon_sym_SEMI, - ACTIONS(6563), 1, - anon_sym_as, - STATE(3118), 2, + ACTIONS(6636), 1, + anon_sym_COMMA, + ACTIONS(6746), 1, + anon_sym_RBRACE, + STATE(3191), 2, sym_line_comment, sym_block_comment, - [89355] = 5, - ACTIONS(101), 1, + [91437] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3739), 1, + anon_sym_COLON, + ACTIONS(5426), 1, + anon_sym_PLUS, + STATE(3192), 2, + sym_line_comment, + sym_block_comment, + [91454] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4891), 1, + ACTIONS(4985), 1, anon_sym_LBRACE, - STATE(1349), 1, + STATE(553), 1, sym_field_declaration_list, - STATE(3119), 2, + STATE(3193), 2, sym_line_comment, sym_block_comment, - [89372] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91471] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5759), 2, - anon_sym_GT, - anon_sym_COMMA, - STATE(3120), 2, + ACTIONS(6748), 1, + anon_sym_LT, + STATE(1020), 1, + sym_type_parameters, + STATE(3194), 2, sym_line_comment, sym_block_comment, - [89387] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91488] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6565), 1, - anon_sym_LBRACK, - ACTIONS(6567), 1, - anon_sym_BANG, - STATE(3121), 2, + ACTIONS(4023), 1, + anon_sym_LPAREN, + STATE(1610), 1, + sym_parameters, + STATE(3195), 2, sym_line_comment, sym_block_comment, - [89404] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91505] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(239), 1, - sym_closure_parameters, - STATE(3122), 2, + ACTIONS(6736), 2, + sym_identifier, + sym_super, + STATE(3196), 2, sym_line_comment, sym_block_comment, - [89421] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91520] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, + ACTIONS(5033), 1, anon_sym_LBRACE, - STATE(1355), 1, - sym_declaration_list, - STATE(3123), 2, + STATE(1200), 1, + sym_field_declaration_list, + STATE(3197), 2, sym_line_comment, sym_block_comment, - [89438] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91537] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5546), 1, + ACTIONS(5618), 1, sym_super, - ACTIONS(6569), 1, + ACTIONS(6750), 1, sym_identifier, - STATE(3124), 2, + STATE(3198), 2, sym_line_comment, sym_block_comment, - [89455] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91554] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6487), 1, - sym_super, - ACTIONS(6571), 1, - sym_identifier, - STATE(3125), 2, + ACTIONS(6752), 2, + sym_float_literal, + sym_integer_literal, + STATE(3199), 2, sym_line_comment, sym_block_comment, - [89472] = 5, - ACTIONS(101), 1, + [91569] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5057), 1, + anon_sym_PLUS, + ACTIONS(6754), 1, + anon_sym_GT, + STATE(3200), 2, + sym_line_comment, + sym_block_comment, + [91586] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5546), 1, - sym_super, - ACTIONS(6573), 1, + ACTIONS(6756), 1, sym_identifier, - STATE(3126), 2, + ACTIONS(6758), 1, + sym_super, + STATE(3201), 2, sym_line_comment, sym_block_comment, - [89489] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, - ACTIONS(101), 1, + [91603] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5577), 1, + anon_sym_PIPE, + ACTIONS(5650), 1, + anon_sym_COLON, + STATE(3202), 2, + sym_line_comment, + sym_block_comment, + [91620] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(241), 1, - sym_closure_parameters, - STATE(3127), 2, + ACTIONS(6760), 2, + sym_identifier, + sym_super, + STATE(3203), 2, sym_line_comment, sym_block_comment, - [89506] = 5, - ACTIONS(101), 1, + [91635] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5914), 1, + sym_super, + ACTIONS(6762), 1, + sym_identifier, + STATE(3204), 2, + sym_line_comment, + sym_block_comment, + [91652] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4870), 1, + ACTIONS(4985), 1, anon_sym_LBRACE, - STATE(675), 1, + STATE(546), 1, sym_field_declaration_list, - STATE(3128), 2, + STATE(3205), 2, sym_line_comment, sym_block_comment, - [89523] = 5, - ACTIONS(101), 1, + [91669] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(6764), 1, + anon_sym_SEMI, + ACTIONS(6766), 1, + anon_sym_as, + STATE(3206), 2, + sym_line_comment, + sym_block_comment, + [91686] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5235), 1, - anon_sym_LBRACE, - STATE(1360), 1, - sym_enum_variant_list, - STATE(3129), 2, + ACTIONS(5577), 1, + anon_sym_PIPE, + ACTIONS(6768), 1, + anon_sym_in, + STATE(3207), 2, sym_line_comment, sym_block_comment, - [89540] = 5, - ACTIONS(101), 1, + [91703] = 4, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(6770), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(3208), 2, + sym_line_comment, + sym_block_comment, + [91718] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6529), 1, - sym_super, - ACTIONS(6575), 1, - sym_identifier, - STATE(3130), 2, + ACTIONS(6748), 1, + anon_sym_LT, + STATE(1337), 1, + sym_type_parameters, + STATE(3209), 2, sym_line_comment, sym_block_comment, - [89557] = 4, - ACTIONS(101), 1, + [91735] = 5, + ACTIONS(29), 1, + anon_sym_PIPE, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(243), 1, + sym_closure_parameters, + STATE(3210), 2, + sym_line_comment, + sym_block_comment, + [91752] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6577), 2, - sym_float_literal, - sym_integer_literal, - STATE(3131), 2, + ACTIONS(6772), 1, + anon_sym_BANG, + ACTIONS(6774), 1, + anon_sym_COLON_COLON, + STATE(3211), 2, sym_line_comment, sym_block_comment, - [89572] = 5, - ACTIONS(101), 1, + [91769] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(6720), 1, + anon_sym_LPAREN, + ACTIONS(6776), 1, + anon_sym_COLON_COLON, + STATE(3212), 2, + sym_line_comment, + sym_block_comment, + [91786] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5604), 1, - sym_super, - ACTIONS(5769), 1, - sym_identifier, - STATE(3132), 2, + ACTIONS(6778), 1, + anon_sym_SEMI, + ACTIONS(6780), 1, + anon_sym_RPAREN, + STATE(3213), 2, sym_line_comment, sym_block_comment, - [89589] = 5, - ACTIONS(101), 1, + [91803] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(6778), 1, + anon_sym_SEMI, + ACTIONS(6780), 1, + anon_sym_RBRACK, + STATE(3214), 2, + sym_line_comment, + sym_block_comment, + [91820] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6579), 1, - sym_identifier, - ACTIONS(6581), 1, - sym_super, - STATE(3133), 2, + ACTIONS(6778), 1, + anon_sym_SEMI, + ACTIONS(6782), 1, + anon_sym_RBRACE, + STATE(3215), 2, sym_line_comment, sym_block_comment, - [89606] = 5, - ACTIONS(101), 1, + [91837] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4047), 1, + anon_sym_LBRACE, + STATE(1798), 1, + sym_field_initializer_list, + STATE(3216), 2, + sym_line_comment, + sym_block_comment, + [91854] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6487), 1, - sym_super, - ACTIONS(6507), 1, - sym_identifier, - STATE(3134), 2, + ACTIONS(4023), 1, + anon_sym_LPAREN, + STATE(1657), 1, + sym_parameters, + STATE(3217), 2, sym_line_comment, sym_block_comment, - [89623] = 4, - ACTIONS(101), 1, + [91871] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(6784), 1, + anon_sym_LPAREN, + ACTIONS(6786), 1, + anon_sym_COLON_COLON, + STATE(3218), 2, + sym_line_comment, + sym_block_comment, + [91888] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5866), 2, - sym_identifier, - sym_super, - STATE(3135), 2, + ACTIONS(3903), 2, + anon_sym_LPAREN, + anon_sym_COLON_COLON, + STATE(3219), 2, sym_line_comment, sym_block_comment, - [89638] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91903] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4891), 1, - anon_sym_LBRACE, - STATE(1363), 1, - sym_field_declaration_list, - STATE(3136), 2, + ACTIONS(6788), 2, + anon_sym_const, + sym_mutable_specifier, + STATE(3220), 2, sym_line_comment, sym_block_comment, - [89655] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91918] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4891), 1, - anon_sym_LBRACE, - STATE(1370), 1, - sym_field_declaration_list, - STATE(3137), 2, + ACTIONS(4521), 1, + anon_sym_LPAREN, + STATE(1981), 1, + sym_parameters, + STATE(3221), 2, sym_line_comment, sym_block_comment, - [89672] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91935] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6583), 2, + ACTIONS(6778), 1, + anon_sym_SEMI, + ACTIONS(6790), 1, anon_sym_RPAREN, - anon_sym_COMMA, - STATE(3138), 2, + STATE(3222), 2, sym_line_comment, sym_block_comment, - [89687] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91952] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6585), 1, + ACTIONS(6778), 1, anon_sym_SEMI, - ACTIONS(6587), 1, - anon_sym_as, - STATE(3139), 2, + ACTIONS(6790), 1, + anon_sym_RBRACK, + STATE(3223), 2, sym_line_comment, sym_block_comment, - [89704] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [91969] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6589), 1, - sym_identifier, - ACTIONS(6591), 1, - sym_mutable_specifier, - STATE(3140), 2, + ACTIONS(6289), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(3224), 2, sym_line_comment, sym_block_comment, - [89721] = 5, - ACTIONS(101), 1, + [91984] = 4, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(6449), 2, + anon_sym_COMMA, + anon_sym_PIPE, + STATE(3225), 2, + sym_line_comment, + sym_block_comment, + [91999] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5147), 1, - anon_sym_RBRACK, - ACTIONS(6501), 1, + ACTIONS(6778), 1, anon_sym_SEMI, - STATE(3141), 2, + ACTIONS(6792), 1, + anon_sym_RBRACE, + STATE(3226), 2, sym_line_comment, sym_block_comment, - [89738] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92016] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6487), 1, - sym_super, - ACTIONS(6593), 1, - sym_identifier, - STATE(3142), 2, + ACTIONS(5047), 1, + anon_sym_LBRACE, + STATE(742), 1, + sym_declaration_list, + STATE(3227), 2, sym_line_comment, sym_block_comment, - [89755] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92033] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6595), 2, - anon_sym_const, - sym_mutable_specifier, - STATE(3143), 2, + ACTIONS(3807), 2, + anon_sym_LPAREN, + anon_sym_COLON_COLON, + STATE(3228), 2, sym_line_comment, sym_block_comment, - [89770] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92048] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4870), 1, - anon_sym_LBRACE, - STATE(726), 1, - sym_field_declaration_list, - STATE(3144), 2, + ACTIONS(6636), 1, + anon_sym_COMMA, + ACTIONS(6794), 1, + anon_sym_RBRACE, + STATE(3229), 2, sym_line_comment, sym_block_comment, - [89787] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92065] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6517), 1, - sym_super, - ACTIONS(6597), 1, - sym_identifier, - STATE(3145), 2, + ACTIONS(6796), 2, + sym_float_literal, + sym_integer_literal, + STATE(3230), 2, sym_line_comment, sym_block_comment, - [89804] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92080] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5604), 1, - sym_super, - ACTIONS(5779), 1, - sym_identifier, - STATE(3146), 2, + ACTIONS(6636), 1, + anon_sym_COMMA, + ACTIONS(6798), 1, + anon_sym_RBRACE, + STATE(3231), 2, sym_line_comment, sym_block_comment, - [89821] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92097] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6581), 1, - sym_super, - ACTIONS(6599), 1, - sym_identifier, - STATE(3147), 2, + ACTIONS(6636), 1, + anon_sym_COMMA, + ACTIONS(6800), 1, + anon_sym_RBRACE, + STATE(3232), 2, sym_line_comment, sym_block_comment, - [89838] = 4, - ACTIONS(101), 1, + [92114] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4523), 1, + anon_sym_BANG, + ACTIONS(6802), 1, + anon_sym_COLON_COLON, + STATE(3233), 2, + sym_line_comment, + sym_block_comment, + [92131] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5309), 2, + ACTIONS(6418), 2, anon_sym_RPAREN, anon_sym_COMMA, - STATE(3148), 2, + STATE(3234), 2, sym_line_comment, sym_block_comment, - [89853] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92146] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3243), 1, - anon_sym_LPAREN, - STATE(1060), 1, - sym_parameters, - STATE(3149), 2, + ACTIONS(6804), 1, + sym_identifier, + ACTIONS(6806), 1, + sym_mutable_specifier, + STATE(3235), 2, sym_line_comment, sym_block_comment, - [89870] = 5, - ACTIONS(101), 1, + [92163] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(6702), 1, + sym_identifier, + ACTIONS(6758), 1, + sym_super, + STATE(3236), 2, + sym_line_comment, + sym_block_comment, + [92180] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5157), 1, + ACTIONS(6636), 1, + anon_sym_COMMA, + ACTIONS(6808), 1, anon_sym_RBRACE, - ACTIONS(6501), 1, - anon_sym_SEMI, - STATE(3150), 2, + STATE(3237), 2, sym_line_comment, sym_block_comment, - [89887] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92197] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6501), 1, + ACTIONS(6778), 1, anon_sym_SEMI, - ACTIONS(6601), 1, + ACTIONS(6810), 1, anon_sym_RBRACE, - STATE(3151), 2, + STATE(3238), 2, sym_line_comment, sym_block_comment, - [89904] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92214] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3251), 1, - anon_sym_LT2, - STATE(1183), 1, - sym_type_arguments, - STATE(3152), 2, + ACTIONS(6812), 2, + anon_sym_const, + sym_mutable_specifier, + STATE(3239), 2, sym_line_comment, sym_block_comment, - [89921] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92229] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4445), 1, - anon_sym_BANG, - ACTIONS(6603), 1, - anon_sym_COLON_COLON, - STATE(3153), 2, + ACTIONS(5577), 1, + anon_sym_PIPE, + ACTIONS(6814), 1, + anon_sym_in, + STATE(3240), 2, sym_line_comment, sym_block_comment, - [89938] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92246] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5281), 1, - anon_sym_LBRACE, - STATE(659), 1, - sym_enum_variant_list, - STATE(3154), 2, + ACTIONS(4521), 1, + anon_sym_LPAREN, + STATE(2236), 1, + sym_parameters, + STATE(3241), 2, sym_line_comment, sym_block_comment, - [89955] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92263] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6501), 1, + ACTIONS(6778), 1, anon_sym_SEMI, - ACTIONS(6605), 1, + ACTIONS(6816), 1, anon_sym_RBRACE, - STATE(3155), 2, + STATE(3242), 2, sym_line_comment, sym_block_comment, - [89972] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92280] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4607), 1, - anon_sym_BANG, - ACTIONS(4668), 1, - anon_sym_COLON_COLON, - STATE(3156), 2, + ACTIONS(3321), 1, + anon_sym_LPAREN, + STATE(1202), 1, + sym_parameters, + STATE(3243), 2, sym_line_comment, sym_block_comment, - [89989] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92297] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6607), 1, - sym_identifier, - ACTIONS(6609), 1, - sym_super, - STATE(3157), 2, + ACTIONS(4317), 1, + anon_sym_EQ_GT, + ACTIONS(6818), 1, + anon_sym_AMP_AMP, + STATE(3244), 2, sym_line_comment, sym_block_comment, - [90006] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92314] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6517), 1, - sym_super, - ACTIONS(6611), 1, + ACTIONS(6122), 1, sym_identifier, - STATE(3158), 2, + ACTIONS(6126), 1, + sym_mutable_specifier, + STATE(3245), 2, sym_line_comment, sym_block_comment, - [90023] = 5, - ACTIONS(101), 1, + [92331] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(6820), 1, + anon_sym_SEMI, + ACTIONS(6822), 1, + anon_sym_as, + STATE(3246), 2, + sym_line_comment, + sym_block_comment, + [92348] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5281), 1, + ACTIONS(5033), 1, anon_sym_LBRACE, - STATE(521), 1, - sym_enum_variant_list, - STATE(3159), 2, + STATE(1191), 1, + sym_field_declaration_list, + STATE(3247), 2, sym_line_comment, sym_block_comment, - [90040] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92365] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5641), 1, - sym_super, - ACTIONS(5787), 1, - sym_identifier, - STATE(3160), 2, + ACTIONS(5203), 1, + anon_sym_RBRACE, + ACTIONS(6636), 1, + anon_sym_COMMA, + STATE(3248), 2, sym_line_comment, sym_block_comment, - [90057] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92382] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6525), 1, + ACTIONS(5618), 1, sym_super, - ACTIONS(6613), 1, + ACTIONS(6824), 1, sym_identifier, - STATE(3161), 2, + STATE(3249), 2, sym_line_comment, sym_block_comment, - [90074] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92399] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5159), 1, - anon_sym_RPAREN, - ACTIONS(6501), 1, - anon_sym_SEMI, - STATE(3162), 2, + ACTIONS(5229), 1, + anon_sym_RBRACE, + ACTIONS(6636), 1, + anon_sym_COMMA, + STATE(3250), 2, sym_line_comment, sym_block_comment, - [90091] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92416] = 5, + ACTIONS(29), 1, + anon_sym_PIPE, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, - anon_sym_LPAREN, - STATE(2180), 1, - sym_parameters, - STATE(3163), 2, + STATE(239), 1, + sym_closure_parameters, + STATE(3251), 2, sym_line_comment, sym_block_comment, - [90108] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92433] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5866), 1, - sym_super, - ACTIONS(6571), 1, - sym_identifier, - STATE(3164), 2, + ACTIONS(6227), 1, + anon_sym_EQ_GT, + ACTIONS(6818), 1, + anon_sym_AMP_AMP, + STATE(3252), 2, sym_line_comment, sym_block_comment, - [90125] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92450] = 5, + ACTIONS(29), 1, + anon_sym_PIPE, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6517), 1, - sym_super, - ACTIONS(6543), 1, - sym_identifier, - STATE(3165), 2, + STATE(230), 1, + sym_closure_parameters, + STATE(3253), 2, sym_line_comment, sym_block_comment, - [90142] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92467] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3731), 1, - anon_sym_COLON, - ACTIONS(5241), 1, - anon_sym_PLUS, - STATE(3166), 2, + ACTIONS(5458), 1, + anon_sym_LBRACE, + STATE(1206), 1, + sym_enum_variant_list, + STATE(3254), 2, sym_line_comment, sym_block_comment, - [90159] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92484] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5103), 1, - sym_super, - ACTIONS(5769), 1, - sym_identifier, - STATE(3167), 2, + ACTIONS(6826), 1, + anon_sym_LBRACE, + STATE(1210), 1, + sym_macro_def_body, + STATE(3255), 2, sym_line_comment, sym_block_comment, - [90176] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92501] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6521), 1, - sym_super, - ACTIONS(6579), 1, - sym_identifier, - STATE(3168), 2, + ACTIONS(5904), 2, + anon_sym_COMMA, + anon_sym_GT, + STATE(3256), 2, sym_line_comment, sym_block_comment, - [90193] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92516] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5159), 1, - anon_sym_RBRACK, - ACTIONS(6501), 1, - anon_sym_SEMI, - STATE(3169), 2, + ACTIONS(6826), 1, + anon_sym_LBRACE, + STATE(1211), 1, + sym_macro_def_body, + STATE(3257), 2, sym_line_comment, sym_block_comment, - [90210] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92533] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6487), 1, - sym_super, - ACTIONS(6615), 1, - sym_identifier, - STATE(3170), 2, + ACTIONS(6828), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(3258), 2, sym_line_comment, sym_block_comment, - [90227] = 5, - ACTIONS(27), 1, + [92548] = 5, + ACTIONS(29), 1, anon_sym_PIPE, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(236), 1, + STATE(238), 1, sym_closure_parameters, - STATE(3171), 2, + STATE(3259), 2, sym_line_comment, sym_block_comment, - [90244] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92565] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5604), 1, + ACTIONS(5296), 1, sym_super, - ACTIONS(5789), 1, + ACTIONS(5930), 1, sym_identifier, - STATE(3172), 2, + STATE(3260), 2, sym_line_comment, sym_block_comment, - [90261] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92582] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6581), 1, + ACTIONS(5914), 1, sym_super, - ACTIONS(6617), 1, + ACTIONS(6756), 1, sym_identifier, - STATE(3173), 2, + STATE(3261), 2, sym_line_comment, sym_block_comment, - [90278] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92599] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6555), 1, - sym_identifier, - ACTIONS(6581), 1, - sym_super, - STATE(3174), 2, + ACTIONS(6778), 1, + anon_sym_SEMI, + ACTIONS(6830), 1, + anon_sym_RBRACK, + STATE(3262), 2, sym_line_comment, sym_block_comment, - [90295] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92616] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6487), 1, - sym_super, - ACTIONS(6619), 1, - sym_identifier, - STATE(3175), 2, + ACTIONS(4957), 1, + anon_sym_LBRACE, + STATE(1223), 1, + sym_declaration_list, + STATE(3263), 2, sym_line_comment, sym_block_comment, - [90312] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92633] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6521), 2, - sym_identifier, - sym_super, - STATE(3176), 2, + ACTIONS(6778), 1, + anon_sym_SEMI, + ACTIONS(6830), 1, + anon_sym_RPAREN, + STATE(3264), 2, sym_line_comment, sym_block_comment, - [90327] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92650] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5604), 1, - sym_super, - ACTIONS(5791), 1, - sym_identifier, - STATE(3177), 2, + ACTIONS(5033), 1, + anon_sym_LBRACE, + STATE(1245), 1, + sym_field_declaration_list, + STATE(3265), 2, sym_line_comment, sym_block_comment, - [90344] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92667] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6581), 1, - sym_super, - ACTIONS(6621), 1, - sym_identifier, - STATE(3178), 2, + ACTIONS(6778), 1, + anon_sym_SEMI, + ACTIONS(6832), 1, + anon_sym_RBRACK, + STATE(3266), 2, sym_line_comment, sym_block_comment, - [90361] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92684] = 5, + ACTIONS(29), 1, + anon_sym_PIPE, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4181), 1, - anon_sym_EQ_GT, - ACTIONS(6623), 1, - anon_sym_AMP_AMP, - STATE(3179), 2, + STATE(240), 1, + sym_closure_parameters, + STATE(3267), 2, sym_line_comment, sym_block_comment, - [90378] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92701] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6487), 1, - sym_super, - ACTIONS(6625), 1, - sym_identifier, - STATE(3180), 2, + ACTIONS(6778), 1, + anon_sym_SEMI, + ACTIONS(6832), 1, + anon_sym_RPAREN, + STATE(3268), 2, sym_line_comment, sym_block_comment, - [90395] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92718] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6176), 1, - anon_sym_EQ_GT, - ACTIONS(6623), 1, - anon_sym_AMP_AMP, - STATE(3181), 2, + ACTIONS(4957), 1, + anon_sym_LBRACE, + STATE(1275), 1, + sym_declaration_list, + STATE(3269), 2, sym_line_comment, sym_block_comment, - [90412] = 5, - ACTIONS(101), 1, + [92735] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4957), 1, + anon_sym_LBRACE, + STATE(1295), 1, + sym_declaration_list, + STATE(3270), 2, + sym_line_comment, + sym_block_comment, + [92752] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5604), 1, - sym_super, - ACTIONS(5793), 1, + ACTIONS(5763), 2, sym_identifier, - STATE(3182), 2, + sym_super, + STATE(3271), 2, sym_line_comment, sym_block_comment, - [90429] = 5, - ACTIONS(101), 1, + [92767] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5033), 1, + anon_sym_LBRACE, + STATE(1296), 1, + sym_field_declaration_list, + STATE(3272), 2, + sym_line_comment, + sym_block_comment, + [92784] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6581), 1, + ACTIONS(6736), 1, sym_super, - ACTIONS(6627), 1, + ACTIONS(6834), 1, sym_identifier, - STATE(3183), 2, + STATE(3273), 2, sym_line_comment, sym_block_comment, - [90446] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92801] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6629), 2, - anon_sym_RPAREN, + ACTIONS(6168), 2, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(3184), 2, + STATE(3274), 2, sym_line_comment, sym_block_comment, - [90461] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92816] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6581), 2, - sym_identifier, + ACTIONS(5296), 1, sym_super, - STATE(3185), 2, + ACTIONS(5852), 1, + sym_identifier, + STATE(3275), 2, sym_line_comment, sym_block_comment, - [90476] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92833] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5103), 1, + ACTIONS(6742), 1, sym_super, - ACTIONS(5793), 1, + ACTIONS(6836), 1, sym_identifier, - STATE(3186), 2, + STATE(3276), 2, sym_line_comment, sym_block_comment, - [90493] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92850] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6521), 1, - sym_super, - ACTIONS(6627), 1, + ACTIONS(5765), 2, sym_identifier, - STATE(3187), 2, + sym_super, + STATE(3277), 2, sym_line_comment, sym_block_comment, - [90510] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92865] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5452), 1, - anon_sym_PIPE, - ACTIONS(6631), 1, - anon_sym_in, - STATE(3188), 2, + ACTIONS(5257), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(3278), 2, sym_line_comment, sym_block_comment, - [90527] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92880] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6633), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(3189), 2, + ACTIONS(4521), 1, + anon_sym_LPAREN, + STATE(2244), 1, + sym_parameters, + STATE(3279), 2, sym_line_comment, sym_block_comment, - [90542] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92897] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4870), 1, - anon_sym_LBRACE, - STATE(734), 1, - sym_field_declaration_list, - STATE(3190), 2, + ACTIONS(5235), 1, + anon_sym_RBRACE, + ACTIONS(6778), 1, + anon_sym_SEMI, + STATE(3280), 2, sym_line_comment, sym_block_comment, - [90559] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92914] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5103), 1, - sym_super, - ACTIONS(5629), 1, - sym_identifier, - STATE(3191), 2, + ACTIONS(5237), 1, + anon_sym_RBRACK, + ACTIONS(6778), 1, + anon_sym_SEMI, + STATE(3281), 2, sym_line_comment, sym_block_comment, - [90576] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92931] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5167), 1, - anon_sym_RBRACE, - ACTIONS(6501), 1, + ACTIONS(5237), 1, + anon_sym_RPAREN, + ACTIONS(6778), 1, anon_sym_SEMI, - STATE(3192), 2, + STATE(3282), 2, sym_line_comment, sym_block_comment, - [90593] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92948] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(235), 1, - sym_closure_parameters, - STATE(3193), 2, + ACTIONS(6742), 1, + sym_super, + ACTIONS(6838), 1, + sym_identifier, + STATE(3283), 2, sym_line_comment, sym_block_comment, - [90610] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92965] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_COLON, - STATE(2604), 1, - sym_trait_bounds, - STATE(3194), 2, + ACTIONS(5245), 1, + anon_sym_RBRACE, + ACTIONS(6778), 1, + anon_sym_SEMI, + STATE(3284), 2, sym_line_comment, sym_block_comment, - [90627] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92982] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3863), 2, - anon_sym_LPAREN, + ACTIONS(6640), 1, anon_sym_COLON_COLON, - STATE(3195), 2, + ACTIONS(6840), 1, + anon_sym_RPAREN, + STATE(3285), 2, sym_line_comment, sym_block_comment, - [90642] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [92999] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6319), 2, - anon_sym_GT, - anon_sym_COMMA, - STATE(3196), 2, + ACTIONS(5247), 1, + anon_sym_RBRACK, + ACTIONS(6778), 1, + anon_sym_SEMI, + STATE(3286), 2, sym_line_comment, sym_block_comment, - [90657] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93016] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6105), 2, - anon_sym_RBRACE, + ACTIONS(6153), 2, anon_sym_COMMA, - STATE(3197), 2, + anon_sym_GT, + STATE(3287), 2, sym_line_comment, sym_block_comment, - [90672] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93031] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6557), 1, - anon_sym_LPAREN, - ACTIONS(6635), 1, - anon_sym_COLON_COLON, - STATE(3198), 2, + ACTIONS(5247), 1, + anon_sym_RPAREN, + ACTIONS(6778), 1, + anon_sym_SEMI, + STATE(3288), 2, sym_line_comment, sym_block_comment, - [90689] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93048] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6637), 2, - sym_identifier, - sym_metavariable, - STATE(3199), 2, + ACTIONS(4029), 1, + anon_sym_LT2, + STATE(1745), 1, + sym_type_arguments, + STATE(3289), 2, sym_line_comment, sym_block_comment, - [90704] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93065] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6639), 2, - anon_sym_const, - sym_mutable_specifier, - STATE(3200), 2, + ACTIONS(6842), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(3290), 2, sym_line_comment, sym_block_comment, - [90719] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93080] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6236), 2, - anon_sym_PIPE, + ACTIONS(5342), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(3201), 2, + STATE(3291), 2, sym_line_comment, sym_block_comment, - [90734] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93095] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6641), 1, - anon_sym_BANG, - ACTIONS(6643), 1, + ACTIONS(6642), 1, anon_sym_COLON_COLON, - STATE(3202), 2, + ACTIONS(6840), 1, + anon_sym_RPAREN, + STATE(3292), 2, sym_line_comment, sym_block_comment, - [90751] = 4, - ACTIONS(101), 1, + [93112] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5296), 1, + sym_super, + ACTIONS(5940), 1, + sym_identifier, + STATE(3293), 2, + sym_line_comment, + sym_block_comment, + [93129] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5151), 2, + ACTIONS(6644), 1, + anon_sym_COLON_COLON, + ACTIONS(6840), 1, anon_sym_RPAREN, - anon_sym_COMMA, - STATE(3203), 2, + STATE(3294), 2, sym_line_comment, sym_block_comment, - [90766] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93146] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5103), 1, - sym_super, - ACTIONS(5588), 1, + ACTIONS(6844), 2, sym_identifier, - STATE(3204), 2, + sym_metavariable, + STATE(3295), 2, sym_line_comment, sym_block_comment, - [90783] = 4, - ACTIONS(101), 1, + [93161] = 4, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(6846), 2, + sym_identifier, + sym_metavariable, + STATE(3296), 2, + sym_line_comment, + sym_block_comment, + [93176] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5604), 2, + ACTIONS(5296), 2, sym_identifier, sym_super, - STATE(3205), 2, + STATE(3297), 2, sym_line_comment, sym_block_comment, - [90798] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93191] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6521), 1, + ACTIONS(6742), 1, sym_super, - ACTIONS(6645), 1, + ACTIONS(6848), 1, sym_identifier, - STATE(3206), 2, + STATE(3298), 2, sym_line_comment, sym_block_comment, - [90815] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93208] = 5, + ACTIONS(29), 1, + anon_sym_PIPE, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, - anon_sym_LPAREN, - STATE(1963), 1, - sym_parameters, - STATE(3207), 2, + STATE(228), 1, + sym_closure_parameters, + STATE(3299), 2, sym_line_comment, sym_block_comment, - [90832] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93225] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4878), 1, - anon_sym_LBRACE, - STATE(678), 1, - sym_declaration_list, - STATE(3208), 2, + ACTIONS(6650), 1, + anon_sym_COLON_COLON, + ACTIONS(6850), 1, + anon_sym_RPAREN, + STATE(3300), 2, sym_line_comment, sym_block_comment, - [90849] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93242] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6535), 1, + ACTIONS(5959), 2, anon_sym_RPAREN, - ACTIONS(6551), 1, - anon_sym_COLON_COLON, - STATE(3209), 2, + anon_sym_COMMA, + STATE(3301), 2, sym_line_comment, sym_block_comment, - [90866] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93257] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4878), 1, + ACTIONS(6826), 1, anon_sym_LBRACE, - STATE(727), 1, - sym_declaration_list, - STATE(3210), 2, + STATE(1138), 1, + sym_macro_def_body, + STATE(3302), 2, sym_line_comment, sym_block_comment, - [90883] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93274] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(6511), 1, - anon_sym_LT, - STATE(1074), 1, - sym_type_parameters, - STATE(3211), 2, - sym_line_comment, - sym_block_comment, - [90900] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5452), 1, - anon_sym_PIPE, - ACTIONS(6647), 1, - anon_sym_EQ, - STATE(3212), 2, + ACTIONS(5286), 1, + anon_sym_RBRACK, + ACTIONS(6778), 1, + anon_sym_SEMI, + STATE(3303), 2, sym_line_comment, sym_block_comment, - [90917] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93291] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3945), 1, + ACTIONS(3329), 1, anon_sym_LT2, - STATE(1668), 1, + STATE(1481), 1, sym_type_arguments, - STATE(3213), 2, + STATE(3304), 2, sym_line_comment, sym_block_comment, - [90934] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93308] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, - anon_sym_LPAREN, - STATE(2215), 1, - sym_parameters, - STATE(3214), 2, + ACTIONS(5880), 2, + anon_sym_COMMA, + anon_sym_GT, + STATE(3305), 2, sym_line_comment, sym_block_comment, - [90951] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93323] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, - anon_sym_LBRACE, - STATE(1416), 1, - sym_declaration_list, - STATE(3215), 2, + ACTIONS(6758), 1, + sym_super, + ACTIONS(6852), 1, + sym_identifier, + STATE(3306), 2, sym_line_comment, sym_block_comment, - [90968] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93340] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3325), 1, + ACTIONS(5458), 1, anon_sym_LBRACE, - STATE(1208), 1, - sym_field_initializer_list, - STATE(3216), 2, + STATE(1311), 1, + sym_enum_variant_list, + STATE(3307), 2, sym_line_comment, sym_block_comment, - [90985] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93357] = 5, + ACTIONS(29), 1, + anon_sym_PIPE, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3827), 2, - anon_sym_LPAREN, - anon_sym_COLON_COLON, - STATE(3217), 2, + STATE(245), 1, + sym_closure_parameters, + STATE(3308), 2, sym_line_comment, sym_block_comment, - [91000] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93374] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4878), 1, - anon_sym_LBRACE, - STATE(728), 1, - sym_declaration_list, - STATE(3218), 2, + ACTIONS(5286), 1, + anon_sym_RPAREN, + ACTIONS(6778), 1, + anon_sym_SEMI, + STATE(3309), 2, sym_line_comment, sym_block_comment, - [91017] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93391] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, - anon_sym_LBRACE, - STATE(1424), 1, - sym_declaration_list, - STATE(3219), 2, + ACTIONS(5187), 1, + anon_sym_RBRACK, + ACTIONS(6778), 1, + anon_sym_SEMI, + STATE(3310), 2, sym_line_comment, sym_block_comment, - [91034] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93408] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, - anon_sym_LBRACE, - STATE(1425), 1, - sym_declaration_list, - STATE(3220), 2, + ACTIONS(6854), 1, + sym_identifier, + ACTIONS(6856), 1, + sym_mutable_specifier, + STATE(3311), 2, sym_line_comment, sym_block_comment, - [91051] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93425] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4878), 1, - anon_sym_LBRACE, - STATE(572), 1, - sym_declaration_list, - STATE(3221), 2, + ACTIONS(6858), 1, + sym_identifier, + ACTIONS(6860), 1, + sym_super, + STATE(3312), 2, sym_line_comment, sym_block_comment, - [91068] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93442] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5199), 1, - anon_sym_RPAREN, - ACTIONS(6501), 1, - anon_sym_SEMI, - STATE(3222), 2, + ACTIONS(6860), 2, + sym_identifier, + sym_super, + STATE(3313), 2, sym_line_comment, sym_block_comment, - [91085] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93457] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5199), 1, - anon_sym_RBRACK, - ACTIONS(6501), 1, - anon_sym_SEMI, - STATE(3223), 2, + ACTIONS(5765), 1, + sym_super, + ACTIONS(5906), 1, + sym_identifier, + STATE(3314), 2, sym_line_comment, sym_block_comment, - [91102] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93474] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6501), 1, - anon_sym_SEMI, - ACTIONS(6649), 1, - anon_sym_RPAREN, - STATE(3224), 2, + ACTIONS(6862), 1, + sym_identifier, + ACTIONS(6864), 1, + sym_super, + STATE(3315), 2, sym_line_comment, sym_block_comment, - [91119] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93491] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5201), 1, - anon_sym_RPAREN, - ACTIONS(6501), 1, - anon_sym_SEMI, - STATE(3225), 2, + ACTIONS(3321), 1, + anon_sym_LPAREN, + STATE(1281), 1, + sym_parameters, + STATE(3316), 2, sym_line_comment, sym_block_comment, - [91136] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93508] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5201), 1, - anon_sym_RBRACK, - ACTIONS(6501), 1, + ACTIONS(5187), 1, + anon_sym_RPAREN, + ACTIONS(6778), 1, anon_sym_SEMI, - STATE(3226), 2, + STATE(3317), 2, sym_line_comment, sym_block_comment, - [91153] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93525] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4537), 1, - anon_sym_COLON_COLON, - ACTIONS(4887), 1, - anon_sym_for, - STATE(3227), 2, + ACTIONS(6826), 1, + anon_sym_LBRACE, + STATE(1137), 1, + sym_macro_def_body, + STATE(3318), 2, sym_line_comment, sym_block_comment, - [91170] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93542] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, - anon_sym_LPAREN, - STATE(2194), 1, - sym_parameters, - STATE(3228), 2, + ACTIONS(6682), 1, + sym_identifier, + ACTIONS(6736), 1, + sym_super, + STATE(3319), 2, sym_line_comment, sym_block_comment, - [91187] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93559] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5235), 1, + ACTIONS(6718), 1, anon_sym_LBRACE, - STATE(1433), 1, - sym_enum_variant_list, - STATE(3229), 2, + STATE(624), 1, + sym_macro_def_body, + STATE(3320), 2, sym_line_comment, sym_block_comment, - [91204] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93576] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4878), 1, + ACTIONS(6718), 1, anon_sym_LBRACE, - STATE(620), 1, - sym_declaration_list, - STATE(3230), 2, + STATE(628), 1, + sym_macro_def_body, + STATE(3321), 2, sym_line_comment, sym_block_comment, - [91221] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93593] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4891), 1, - anon_sym_LBRACE, - STATE(1436), 1, - sym_field_declaration_list, - STATE(3231), 2, + ACTIONS(4688), 1, + anon_sym_BANG, + ACTIONS(4772), 1, + anon_sym_COLON_COLON, + STATE(3322), 2, sym_line_comment, sym_block_comment, - [91238] = 4, - ACTIONS(101), 1, + [93610] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4688), 1, + anon_sym_BANG, + ACTIONS(4788), 1, + anon_sym_COLON_COLON, + STATE(3323), 2, + sym_line_comment, + sym_block_comment, + [93627] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6458), 2, + ACTIONS(6091), 2, anon_sym_RBRACE, anon_sym_COMMA, - STATE(3232), 2, + STATE(3324), 2, sym_line_comment, sym_block_comment, - [91253] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93642] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4891), 1, - anon_sym_LBRACE, - STATE(1438), 1, - sym_field_declaration_list, - STATE(3233), 2, + ACTIONS(6866), 1, + anon_sym_SEMI, + ACTIONS(6868), 1, + anon_sym_as, + STATE(3325), 2, sym_line_comment, sym_block_comment, - [91270] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93659] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, - anon_sym_LBRACE, - STATE(1440), 1, - sym_declaration_list, - STATE(3234), 2, + ACTIONS(5765), 1, + sym_super, + ACTIONS(5767), 1, + sym_identifier, + STATE(3326), 2, sym_line_comment, sym_block_comment, - [91287] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93676] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5103), 2, + ACTIONS(6740), 1, sym_identifier, + ACTIONS(6864), 1, sym_super, - STATE(3235), 2, + STATE(3327), 2, sym_line_comment, sym_block_comment, - [91302] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93693] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6521), 1, - sym_super, - ACTIONS(6651), 1, + ACTIONS(6662), 1, sym_identifier, - STATE(3236), 2, + ACTIONS(6736), 1, + sym_super, + STATE(3328), 2, sym_line_comment, sym_block_comment, - [91319] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93710] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, + ACTIONS(4521), 1, anon_sym_LPAREN, - STATE(2202), 1, + STATE(2253), 1, sym_parameters, - STATE(3237), 2, + STATE(3329), 2, sym_line_comment, sym_block_comment, - [91336] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93727] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6653), 2, - sym_identifier, - sym_metavariable, - STATE(3238), 2, + ACTIONS(6084), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(3330), 2, sym_line_comment, sym_block_comment, - [91351] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93742] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6517), 1, - sym_super, - ACTIONS(6573), 1, - sym_identifier, - STATE(3239), 2, + ACTIONS(4521), 1, + anon_sym_LPAREN, + STATE(1984), 1, + sym_parameters, + STATE(3331), 2, sym_line_comment, sym_block_comment, - [91368] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93759] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6511), 1, - anon_sym_LT, - STATE(859), 1, - sym_type_parameters, - STATE(3240), 2, + ACTIONS(5765), 1, + sym_super, + ACTIONS(5852), 1, + sym_identifier, + STATE(3332), 2, sym_line_comment, sym_block_comment, - [91385] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93776] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6501), 1, - anon_sym_SEMI, - ACTIONS(6655), 1, - anon_sym_RPAREN, - STATE(3241), 2, + ACTIONS(6758), 1, + sym_super, + ACTIONS(6870), 1, + sym_identifier, + STATE(3333), 2, sym_line_comment, sym_block_comment, - [91402] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93793] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6501), 1, - anon_sym_SEMI, - ACTIONS(6655), 1, - anon_sym_RBRACK, - STATE(3242), 2, + ACTIONS(6748), 1, + anon_sym_LT, + STATE(1124), 1, + sym_type_parameters, + STATE(3334), 2, sym_line_comment, sym_block_comment, - [91419] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93810] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6501), 1, - anon_sym_SEMI, - ACTIONS(6657), 1, - anon_sym_RPAREN, - STATE(3243), 2, + ACTIONS(5618), 1, + sym_super, + ACTIONS(6872), 1, + sym_identifier, + STATE(3335), 2, sym_line_comment, sym_block_comment, - [91436] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93827] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6501), 1, - anon_sym_SEMI, - ACTIONS(6657), 1, - anon_sym_RBRACK, - STATE(3244), 2, + ACTIONS(6736), 1, + sym_super, + ACTIONS(6874), 1, + sym_identifier, + STATE(3336), 2, sym_line_comment, sym_block_comment, - [91453] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93844] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6501), 1, - anon_sym_SEMI, - ACTIONS(6649), 1, - anon_sym_RBRACK, - STATE(3245), 2, + ACTIONS(3839), 1, + anon_sym_COLON, + ACTIONS(5426), 1, + anon_sym_PLUS, + STATE(3337), 2, sym_line_comment, sym_block_comment, - [91470] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93861] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6659), 1, + ACTIONS(5765), 1, + sym_super, + ACTIONS(5938), 1, sym_identifier, - ACTIONS(6661), 1, - sym_mutable_specifier, - STATE(3246), 2, + STATE(3338), 2, sym_line_comment, sym_block_comment, - [91487] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93878] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5602), 1, - sym_identifier, - ACTIONS(5604), 1, + ACTIONS(6864), 1, sym_super, - STATE(3247), 2, + ACTIONS(6876), 1, + sym_identifier, + STATE(3339), 2, sym_line_comment, sym_block_comment, - [91504] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93895] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(6501), 1, - anon_sym_SEMI, - ACTIONS(6663), 1, - anon_sym_RBRACE, - STATE(3248), 2, - sym_line_comment, - sym_block_comment, - [91521] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6519), 1, + ACTIONS(6836), 1, sym_identifier, - ACTIONS(6581), 1, + ACTIONS(6864), 1, sym_super, - STATE(3249), 2, + STATE(3340), 2, sym_line_comment, sym_block_comment, - [91538] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93912] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6665), 2, - anon_sym_GT, + ACTIONS(5233), 1, + anon_sym_RBRACE, + ACTIONS(6636), 1, anon_sym_COMMA, - STATE(3250), 2, + STATE(3341), 2, sym_line_comment, sym_block_comment, - [91553] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93929] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4870), 1, - anon_sym_LBRACE, - STATE(524), 1, - sym_field_declaration_list, - STATE(3251), 2, - sym_line_comment, - sym_block_comment, - [91570] = 4, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6667), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(3252), 2, + ACTIONS(6878), 1, + anon_sym_SEMI, + ACTIONS(6880), 1, + anon_sym_as, + STATE(3342), 2, sym_line_comment, sym_block_comment, - [91585] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93946] = 4, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4443), 1, - anon_sym_LPAREN, - STATE(2227), 1, - sym_parameters, - STATE(3253), 2, - sym_line_comment, - sym_block_comment, - [91602] = 4, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6669), 2, - anon_sym_const, - sym_mutable_specifier, - STATE(3254), 2, + ACTIONS(6742), 2, + sym_identifier, + sym_super, + STATE(3343), 2, sym_line_comment, sym_block_comment, - [91617] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93961] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(5281), 1, - anon_sym_LBRACE, - STATE(744), 1, - sym_enum_variant_list, - STATE(3255), 2, - sym_line_comment, - sym_block_comment, - [91634] = 4, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6022), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(3256), 2, + ACTIONS(6748), 1, + anon_sym_LT, + STATE(950), 1, + sym_type_parameters, + STATE(3344), 2, sym_line_comment, sym_block_comment, - [91649] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93978] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4878), 1, + ACTIONS(5047), 1, anon_sym_LBRACE, - STATE(739), 1, + STATE(615), 1, sym_declaration_list, - STATE(3257), 2, + STATE(3345), 2, sym_line_comment, sym_block_comment, - [91666] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [93995] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(6511), 1, - anon_sym_LT, - STATE(897), 1, - sym_type_parameters, - STATE(3258), 2, - sym_line_comment, - sym_block_comment, - [91683] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3243), 1, + ACTIONS(3321), 1, anon_sym_LPAREN, - STATE(1083), 1, + STATE(1122), 1, sym_parameters, - STATE(3259), 2, + STATE(3346), 2, sym_line_comment, sym_block_comment, - [91700] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94012] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5546), 2, - sym_identifier, - sym_super, - STATE(3260), 2, + ACTIONS(3047), 1, + anon_sym_SQUOTE, + STATE(3003), 1, + sym_lifetime, + STATE(3347), 2, sym_line_comment, sym_block_comment, - [91715] = 4, - ACTIONS(101), 1, + [94029] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(6748), 1, + anon_sym_LT, + STATE(1198), 1, + sym_type_parameters, + STATE(3348), 2, + sym_line_comment, + sym_block_comment, + [94046] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6609), 2, + ACTIONS(6882), 2, sym_identifier, sym_super, - STATE(3261), 2, + STATE(3349), 2, sym_line_comment, sym_block_comment, - [91730] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94061] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6671), 1, - anon_sym_LPAREN, - ACTIONS(6673), 1, + ACTIONS(4624), 1, anon_sym_COLON_COLON, - STATE(3262), 2, + ACTIONS(6118), 1, + anon_sym_for, + STATE(3350), 2, sym_line_comment, sym_block_comment, - [91747] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94078] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(6675), 2, - sym_float_literal, - sym_integer_literal, - STATE(3263), 2, - sym_line_comment, - sym_block_comment, - [91762] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6677), 1, - anon_sym_BANG, - ACTIONS(6679), 1, - anon_sym_COLON_COLON, - STATE(3264), 2, + ACTIONS(4985), 1, + anon_sym_LBRACE, + STATE(498), 1, + sym_field_declaration_list, + STATE(3351), 2, sym_line_comment, sym_block_comment, - [91779] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94095] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6681), 1, - anon_sym_STAR_SLASH, - ACTIONS(6683), 1, - sym__block_comment_content, - STATE(3265), 2, + ACTIONS(5249), 1, + anon_sym_RBRACE, + ACTIONS(6778), 1, + anon_sym_SEMI, + STATE(3352), 2, sym_line_comment, sym_block_comment, - [91796] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94112] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6511), 1, + ACTIONS(6748), 1, anon_sym_LT, - STATE(1068), 1, + STATE(966), 1, sym_type_parameters, - STATE(3266), 2, + STATE(3353), 2, sym_line_comment, sym_block_comment, - [91813] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94129] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5452), 1, - anon_sym_PIPE, - ACTIONS(6685), 1, - anon_sym_in, - STATE(3267), 2, + ACTIONS(6882), 1, + sym_super, + ACTIONS(6884), 1, + sym_identifier, + STATE(3354), 2, sym_line_comment, sym_block_comment, - [91830] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94146] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5452), 1, - anon_sym_PIPE, - ACTIONS(5510), 1, - anon_sym_COLON, - STATE(3268), 2, + ACTIONS(6736), 1, + sym_super, + ACTIONS(6886), 1, + sym_identifier, + STATE(3355), 2, sym_line_comment, sym_block_comment, - [91847] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94163] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5235), 1, - anon_sym_LBRACE, - STATE(1233), 1, - sym_enum_variant_list, - STATE(3269), 2, + ACTIONS(5251), 1, + anon_sym_RBRACE, + ACTIONS(6778), 1, + anon_sym_SEMI, + STATE(3356), 2, sym_line_comment, sym_block_comment, - [91864] = 5, - ACTIONS(101), 1, + [94180] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5711), 1, + sym_identifier, + ACTIONS(5713), 1, + sym_super, + STATE(3357), 2, + sym_line_comment, + sym_block_comment, + [94197] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6517), 1, + ACTIONS(6760), 1, sym_super, - ACTIONS(6687), 1, + ACTIONS(6888), 1, sym_identifier, - STATE(3270), 2, + STATE(3358), 2, sym_line_comment, sym_block_comment, - [91881] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94214] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, + ACTIONS(5047), 1, anon_sym_LBRACE, - STATE(1111), 1, + STATE(631), 1, sym_declaration_list, - STATE(3271), 2, + STATE(3359), 2, sym_line_comment, sym_block_comment, - [91898] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94231] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5452), 1, - anon_sym_PIPE, - ACTIONS(6689), 1, - anon_sym_EQ, - STATE(3272), 2, + ACTIONS(5047), 1, + anon_sym_LBRACE, + STATE(594), 1, + sym_declaration_list, + STATE(3360), 2, sym_line_comment, sym_block_comment, - [91915] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94248] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6557), 1, - anon_sym_LPAREN, - ACTIONS(6691), 1, - anon_sym_COLON_COLON, - STATE(3273), 2, + ACTIONS(4985), 1, + anon_sym_LBRACE, + STATE(607), 1, + sym_field_declaration_list, + STATE(3361), 2, sym_line_comment, sym_block_comment, - [91932] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94265] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, + ACTIONS(5047), 1, anon_sym_LBRACE, - STATE(1119), 1, + STATE(632), 1, sym_declaration_list, - STATE(3274), 2, + STATE(3362), 2, sym_line_comment, sym_block_comment, - [91949] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94282] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, - anon_sym_LBRACE, - STATE(1120), 1, - sym_declaration_list, - STATE(3275), 2, + ACTIONS(5914), 1, + sym_super, + ACTIONS(6852), 1, + sym_identifier, + STATE(3363), 2, sym_line_comment, sym_block_comment, - [91966] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94299] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4878), 1, - anon_sym_LBRACE, - STATE(513), 1, - sym_declaration_list, - STATE(3276), 2, + ACTIONS(6736), 1, + sym_super, + ACTIONS(6824), 1, + sym_identifier, + STATE(3364), 2, sym_line_comment, sym_block_comment, - [91983] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94316] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_PLUS, - ACTIONS(6693), 1, - anon_sym_GT, - STATE(3277), 2, + ACTIONS(5296), 1, + sym_super, + ACTIONS(5906), 1, + sym_identifier, + STATE(3365), 2, sym_line_comment, sym_block_comment, - [92000] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94333] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6557), 1, - anon_sym_LPAREN, - ACTIONS(6695), 1, - anon_sym_COLON_COLON, - STATE(3278), 2, + ACTIONS(6742), 1, + sym_super, + ACTIONS(6862), 1, + sym_identifier, + STATE(3366), 2, sym_line_comment, sym_block_comment, - [92017] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94350] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6501), 1, - anon_sym_SEMI, - ACTIONS(6697), 1, - anon_sym_RPAREN, - STATE(3279), 2, + ACTIONS(6096), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(3367), 2, sym_line_comment, sym_block_comment, - [92034] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94365] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6699), 1, - anon_sym_LBRACK, - ACTIONS(6701), 1, - anon_sym_BANG, - STATE(3280), 2, + ACTIONS(6758), 1, + sym_super, + ACTIONS(6890), 1, + sym_identifier, + STATE(3368), 2, sym_line_comment, sym_block_comment, - [92051] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94382] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6703), 2, + ACTIONS(5765), 1, + sym_super, + ACTIONS(5965), 1, sym_identifier, - sym_metavariable, - STATE(3281), 2, + STATE(3369), 2, sym_line_comment, sym_block_comment, - [92066] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94399] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4878), 1, - anon_sym_LBRACE, - STATE(506), 1, - sym_declaration_list, - STATE(3282), 2, + ACTIONS(6864), 1, + sym_super, + ACTIONS(6892), 1, + sym_identifier, + STATE(3370), 2, sym_line_comment, sym_block_comment, - [92083] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94416] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5452), 1, - anon_sym_PIPE, - ACTIONS(6705), 1, - anon_sym_in, - STATE(3283), 2, + ACTIONS(6758), 1, + sym_super, + ACTIONS(6894), 1, + sym_identifier, + STATE(3371), 2, sym_line_comment, sym_block_comment, - [92100] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94433] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6501), 1, - anon_sym_SEMI, - ACTIONS(6697), 1, - anon_sym_RBRACK, - STATE(3284), 2, + ACTIONS(5765), 1, + sym_super, + ACTIONS(5971), 1, + sym_identifier, + STATE(3372), 2, sym_line_comment, sym_block_comment, - [92117] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94450] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6707), 2, + ACTIONS(6864), 1, + sym_super, + ACTIONS(6896), 1, sym_identifier, - sym_metavariable, - STATE(3285), 2, + STATE(3373), 2, sym_line_comment, sym_block_comment, - [92132] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94467] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4870), 1, - anon_sym_LBRACE, - STATE(526), 1, - sym_field_declaration_list, - STATE(3286), 2, + ACTIONS(5265), 1, + anon_sym_RBRACE, + ACTIONS(6636), 1, + anon_sym_COMMA, + STATE(3374), 2, sym_line_comment, sym_block_comment, - [92149] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94484] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4537), 1, - anon_sym_COLON_COLON, - ACTIONS(4961), 1, - anon_sym_for, - STATE(3287), 2, + ACTIONS(6758), 1, + sym_super, + ACTIONS(6898), 1, + sym_identifier, + STATE(3375), 2, sym_line_comment, sym_block_comment, - [92166] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94501] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6501), 1, - anon_sym_SEMI, - ACTIONS(6709), 1, + ACTIONS(5267), 1, anon_sym_RBRACE, - STATE(3288), 2, + ACTIONS(6636), 1, + anon_sym_COMMA, + STATE(3376), 2, sym_line_comment, sym_block_comment, - [92183] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94518] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5546), 1, + ACTIONS(5765), 1, sym_super, - ACTIONS(6687), 1, + ACTIONS(5983), 1, sym_identifier, - STATE(3289), 2, + STATE(3377), 2, sym_line_comment, sym_block_comment, - [92200] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94535] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4891), 1, - anon_sym_LBRACE, - STATE(1253), 1, - sym_field_declaration_list, - STATE(3290), 2, + ACTIONS(6864), 1, + sym_super, + ACTIONS(6900), 1, + sym_identifier, + STATE(3378), 2, sym_line_comment, sym_block_comment, - [92217] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94552] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6711), 2, + ACTIONS(5914), 1, + sym_super, + ACTIONS(6898), 1, sym_identifier, - sym_metavariable, - STATE(3291), 2, + STATE(3379), 2, sym_line_comment, sym_block_comment, - [92232] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94569] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4537), 1, - anon_sym_COLON_COLON, - ACTIONS(6444), 1, - anon_sym_for, - STATE(3292), 2, + ACTIONS(5296), 1, + sym_super, + ACTIONS(5983), 1, + sym_identifier, + STATE(3380), 2, sym_line_comment, sym_block_comment, - [92249] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94586] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, - anon_sym_LBRACE, - STATE(1256), 1, - sym_declaration_list, - STATE(3293), 2, + ACTIONS(6742), 1, + sym_super, + ACTIONS(6900), 1, + sym_identifier, + STATE(3381), 2, sym_line_comment, sym_block_comment, - [92266] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94603] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4537), 1, - anon_sym_COLON_COLON, - ACTIONS(6446), 1, - anon_sym_for, - STATE(3294), 2, + ACTIONS(6864), 2, + sym_identifier, + sym_super, + STATE(3382), 2, sym_line_comment, sym_block_comment, - [92283] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94618] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4872), 1, - anon_sym_LT, - STATE(912), 1, - sym_type_parameters, - STATE(3295), 2, + ACTIONS(5415), 1, + anon_sym_LBRACE, + STATE(655), 1, + sym_enum_variant_list, + STATE(3383), 2, sym_line_comment, sym_block_comment, - [92300] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94635] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5452), 1, - anon_sym_PIPE, - ACTIONS(6713), 1, - anon_sym_in, - STATE(3296), 2, + ACTIONS(5033), 1, + anon_sym_LBRACE, + STATE(1083), 1, + sym_field_declaration_list, + STATE(3384), 2, sym_line_comment, sym_block_comment, - [92317] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94652] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4537), 1, + ACTIONS(4624), 1, anon_sym_COLON_COLON, - ACTIONS(6456), 1, + ACTIONS(4973), 1, anon_sym_for, - STATE(3297), 2, + STATE(3385), 2, sym_line_comment, sym_block_comment, - [92334] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94669] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(6715), 1, - anon_sym_LBRACK, - ACTIONS(6717), 1, - anon_sym_BANG, - STATE(3298), 2, - sym_line_comment, - sym_block_comment, - [92351] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5452), 1, - anon_sym_PIPE, - ACTIONS(6719), 1, - anon_sym_in, - STATE(3299), 2, + ACTIONS(4957), 1, + anon_sym_LBRACE, + STATE(1091), 1, + sym_declaration_list, + STATE(3386), 2, sym_line_comment, sym_block_comment, - [92368] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94686] = 5, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(5452), 1, - anon_sym_PIPE, - ACTIONS(6721), 1, - anon_sym_in, - STATE(3300), 2, - sym_line_comment, - sym_block_comment, - [92385] = 5, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5452), 1, + ACTIONS(5577), 1, anon_sym_PIPE, - ACTIONS(6723), 1, - anon_sym_in, - STATE(3301), 2, + ACTIONS(6902), 1, + anon_sym_EQ, + STATE(3387), 2, sym_line_comment, sym_block_comment, - [92402] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94703] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5452), 1, - anon_sym_PIPE, - ACTIONS(6725), 1, - anon_sym_in, - STATE(3302), 2, + ACTIONS(5033), 1, + anon_sym_LBRACE, + STATE(1094), 1, + sym_field_declaration_list, + STATE(3388), 2, sym_line_comment, sym_block_comment, - [92419] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94720] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, + ACTIONS(4521), 1, anon_sym_LPAREN, - STATE(1941), 1, + STATE(2219), 1, sym_parameters, - STATE(3303), 2, + STATE(3389), 2, sym_line_comment, sym_block_comment, - [92436] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94737] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6465), 1, - sym_identifier, - ACTIONS(6469), 1, - sym_mutable_specifier, - STATE(3304), 2, + ACTIONS(4985), 1, + anon_sym_LBRACE, + STATE(665), 1, + sym_field_declaration_list, + STATE(3390), 2, sym_line_comment, sym_block_comment, - [92453] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94754] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4891), 1, + ACTIONS(4985), 1, anon_sym_LBRACE, - STATE(1267), 1, + STATE(669), 1, sym_field_declaration_list, - STATE(3305), 2, + STATE(3391), 2, sym_line_comment, sym_block_comment, - [92470] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94771] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4537), 1, - anon_sym_COLON_COLON, - ACTIONS(6471), 1, - anon_sym_for, - STATE(3306), 2, + ACTIONS(5047), 1, + anon_sym_LBRACE, + STATE(670), 1, + sym_declaration_list, + STATE(3392), 2, sym_line_comment, sym_block_comment, - [92487] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94788] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2969), 1, - anon_sym_SQUOTE, - STATE(2996), 1, - sym_lifetime, - STATE(3307), 2, + ACTIONS(5577), 1, + anon_sym_PIPE, + ACTIONS(6904), 1, + anon_sym_EQ, + STATE(3393), 2, sym_line_comment, sym_block_comment, - [92504] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94805] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6727), 1, - sym_identifier, - ACTIONS(6729), 1, - sym_mutable_specifier, - STATE(3308), 2, + ACTIONS(5415), 1, + anon_sym_LBRACE, + STATE(761), 1, + sym_enum_variant_list, + STATE(3394), 2, sym_line_comment, sym_block_comment, - [92521] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94822] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6547), 1, + ACTIONS(6720), 1, + anon_sym_LPAREN, + ACTIONS(6906), 1, anon_sym_COLON_COLON, - ACTIONS(6731), 1, - anon_sym_RPAREN, - STATE(3309), 2, + STATE(3395), 2, sym_line_comment, sym_block_comment, - [92538] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94839] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6517), 2, - sym_identifier, - sym_super, - STATE(3310), 2, + ACTIONS(5458), 1, + anon_sym_LBRACE, + STATE(1114), 1, + sym_enum_variant_list, + STATE(3396), 2, sym_line_comment, sym_block_comment, - [92553] = 5, - ACTIONS(101), 1, + [94856] = 4, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(6908), 2, + anon_sym_const, + sym_mutable_specifier, + STATE(3397), 2, + sym_line_comment, + sym_block_comment, + [94871] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5866), 1, - sym_super, - ACTIONS(6625), 1, + ACTIONS(6758), 2, sym_identifier, - STATE(3311), 2, + sym_super, + STATE(3398), 2, sym_line_comment, sym_block_comment, - [92570] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94886] = 5, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4883), 1, + ACTIONS(6910), 1, + anon_sym_BANG, + ACTIONS(6912), 1, anon_sym_COLON_COLON, - STATE(3312), 2, + STATE(3399), 2, sym_line_comment, sym_block_comment, - [92584] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94903] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(953), 1, - anon_sym_EQ_GT, - STATE(3313), 2, + ACTIONS(6914), 1, + anon_sym_SEMI, + STATE(3400), 2, sym_line_comment, sym_block_comment, - [92598] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94917] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6733), 1, - sym_identifier, - STATE(3314), 2, + ACTIONS(914), 1, + anon_sym_RBRACK, + STATE(3401), 2, sym_line_comment, sym_block_comment, - [92612] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94931] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6735), 1, - sym_identifier, - STATE(3315), 2, + ACTIONS(6916), 1, + anon_sym_RPAREN, + STATE(3402), 2, sym_line_comment, sym_block_comment, - [92626] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94945] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6737), 1, - sym_identifier, - STATE(3316), 2, + ACTIONS(6918), 1, + anon_sym_SEMI, + STATE(3403), 2, sym_line_comment, sym_block_comment, - [92640] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94959] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6739), 1, - sym_identifier, - STATE(3317), 2, + ACTIONS(6076), 1, + anon_sym_RBRACE, + STATE(3404), 2, sym_line_comment, sym_block_comment, - [92654] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94973] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6741), 1, + ACTIONS(6920), 1, anon_sym_COLON, - STATE(3318), 2, + STATE(3405), 2, sym_line_comment, sym_block_comment, - [92668] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [94987] = 4, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(6743), 1, - sym__line_doc_content, - STATE(3319), 2, - sym_line_comment, - sym_block_comment, - [92682] = 4, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6745), 1, - anon_sym_SEMI, - STATE(3320), 2, + ACTIONS(4113), 1, + anon_sym_COLON_COLON, + STATE(3406), 2, sym_line_comment, sym_block_comment, - [92696] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95001] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6747), 1, - anon_sym_RBRACK, - STATE(3321), 2, + ACTIONS(6051), 1, + anon_sym_COLON_COLON, + STATE(3407), 2, sym_line_comment, sym_block_comment, - [92710] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95015] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4057), 1, + ACTIONS(4626), 1, anon_sym_COLON_COLON, - STATE(3322), 2, + STATE(3408), 2, sym_line_comment, sym_block_comment, - [92724] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95029] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6749), 1, - anon_sym_LPAREN, - STATE(3323), 2, + ACTIONS(5251), 1, + anon_sym_SEMI, + STATE(3409), 2, sym_line_comment, sym_block_comment, - [92738] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95043] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4576), 1, - anon_sym_COLON_COLON, - STATE(3324), 2, + ACTIONS(4153), 1, + anon_sym_RPAREN, + STATE(3410), 2, sym_line_comment, sym_block_comment, - [92752] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95057] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(961), 1, - anon_sym_EQ_GT, - STATE(3325), 2, + ACTIONS(5249), 1, + anon_sym_SEMI, + STATE(3411), 2, sym_line_comment, sym_block_comment, - [92766] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95071] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6751), 1, - anon_sym_RBRACK, - STATE(3326), 2, + ACTIONS(6922), 1, + anon_sym_RPAREN, + STATE(3412), 2, sym_line_comment, sym_block_comment, - [92780] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95085] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6753), 1, - anon_sym_SEMI, - STATE(3327), 2, + ACTIONS(6924), 1, + sym_raw_string_literal_content, + STATE(3413), 2, sym_line_comment, sym_block_comment, - [92794] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95099] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6755), 1, - anon_sym_SEMI, - STATE(3328), 2, + ACTIONS(6926), 1, + sym_identifier, + STATE(3414), 2, sym_line_comment, sym_block_comment, - [92808] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95113] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6757), 1, - anon_sym_SEMI, - STATE(3329), 2, + ACTIONS(6928), 1, + sym_identifier, + STATE(3415), 2, sym_line_comment, sym_block_comment, - [92822] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95127] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6759), 1, - anon_sym_fn, - STATE(3330), 2, + ACTIONS(6930), 1, + anon_sym_RPAREN, + STATE(3416), 2, sym_line_comment, sym_block_comment, - [92836] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95141] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6761), 1, - anon_sym_COLON, - STATE(3331), 2, + ACTIONS(6932), 1, + sym_identifier, + STATE(3417), 2, sym_line_comment, sym_block_comment, - [92850] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95155] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4535), 1, + ACTIONS(4628), 1, anon_sym_COLON_COLON, - STATE(3332), 2, + STATE(3418), 2, sym_line_comment, sym_block_comment, - [92864] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95169] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6763), 1, - sym__line_doc_content, - STATE(3333), 2, + ACTIONS(6934), 1, + anon_sym_SEMI, + STATE(3419), 2, sym_line_comment, sym_block_comment, - [92878] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95183] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5827), 1, - anon_sym_RBRACK, - STATE(3334), 2, + ACTIONS(5951), 1, + anon_sym_LBRACE, + STATE(3420), 2, sym_line_comment, sym_block_comment, - [92892] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95197] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6765), 1, - sym_identifier, - STATE(3335), 2, + ACTIONS(6936), 1, + anon_sym_SEMI, + STATE(3421), 2, sym_line_comment, sym_block_comment, - [92906] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95211] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6767), 1, + ACTIONS(6938), 1, anon_sym_RBRACK, - STATE(3336), 2, + STATE(3422), 2, sym_line_comment, sym_block_comment, - [92920] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95225] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6769), 1, - anon_sym_EQ_GT, - STATE(3337), 2, + ACTIONS(6940), 1, + anon_sym_COLON, + STATE(3423), 2, sym_line_comment, sym_block_comment, - [92934] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95239] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6771), 1, + ACTIONS(6942), 1, anon_sym_fn, - STATE(3338), 2, + STATE(3424), 2, sym_line_comment, sym_block_comment, - [92948] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95253] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5771), 1, - anon_sym_RPAREN, - STATE(3339), 2, + ACTIONS(6944), 1, + sym_identifier, + STATE(3425), 2, sym_line_comment, sym_block_comment, - [92962] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95267] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6773), 1, + ACTIONS(6946), 1, anon_sym_COLON_COLON, - STATE(3340), 2, + STATE(3426), 2, sym_line_comment, sym_block_comment, - [92976] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95281] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6775), 1, - sym__line_doc_content, - STATE(3341), 2, + ACTIONS(6948), 1, + sym_identifier, + STATE(3427), 2, sym_line_comment, sym_block_comment, - [92990] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95295] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6777), 1, + ACTIONS(6950), 1, sym_identifier, - STATE(3342), 2, + STATE(3428), 2, sym_line_comment, sym_block_comment, - [93004] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95309] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5973), 1, - anon_sym_RBRACE, - STATE(3343), 2, + ACTIONS(978), 1, + anon_sym_EQ_GT, + STATE(3429), 2, sym_line_comment, sym_block_comment, - [93018] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95323] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6779), 1, - sym_self, - STATE(3344), 2, + ACTIONS(6952), 1, + anon_sym_fn, + STATE(3430), 2, sym_line_comment, sym_block_comment, - [93032] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95337] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6781), 1, - anon_sym_EQ_GT, - STATE(3345), 2, + ACTIONS(6954), 1, + anon_sym_COLON_COLON, + STATE(3431), 2, sym_line_comment, sym_block_comment, - [93046] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95351] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6783), 1, - anon_sym_COLON_COLON, - STATE(3346), 2, + ACTIONS(6956), 1, + anon_sym_SEMI, + STATE(3432), 2, sym_line_comment, sym_block_comment, - [93060] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95365] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(955), 1, + ACTIONS(6958), 1, anon_sym_RBRACK, - STATE(3347), 2, + STATE(3433), 2, sym_line_comment, sym_block_comment, - [93074] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95379] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6785), 1, + ACTIONS(6960), 1, anon_sym_SEMI, - STATE(3348), 2, + STATE(3434), 2, sym_line_comment, sym_block_comment, - [93088] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95393] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6787), 1, + ACTIONS(6962), 1, sym_identifier, - STATE(3349), 2, + STATE(3435), 2, sym_line_comment, sym_block_comment, - [93102] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95407] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6789), 1, + ACTIONS(6964), 1, anon_sym_COLON_COLON, - STATE(3350), 2, + STATE(3436), 2, sym_line_comment, sym_block_comment, - [93116] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95421] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6791), 1, + ACTIONS(6966), 1, sym_identifier, - STATE(3351), 2, + STATE(3437), 2, sym_line_comment, sym_block_comment, - [93130] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95435] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6793), 1, + ACTIONS(6968), 1, sym_identifier, - STATE(3352), 2, + STATE(3438), 2, sym_line_comment, sym_block_comment, - [93144] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95449] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6795), 1, + ACTIONS(6970), 1, sym_identifier, - STATE(3353), 2, + STATE(3439), 2, sym_line_comment, sym_block_comment, - [93158] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95463] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6797), 1, + ACTIONS(6972), 1, sym_identifier, - STATE(3354), 2, + STATE(3440), 2, sym_line_comment, sym_block_comment, - [93172] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95477] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6799), 1, + ACTIONS(6974), 1, sym_identifier, - STATE(3355), 2, + STATE(3441), 2, sym_line_comment, sym_block_comment, - [93186] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95491] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6801), 1, - sym_identifier, - STATE(3356), 2, + ACTIONS(6976), 1, + anon_sym_COLON_COLON, + STATE(3442), 2, sym_line_comment, sym_block_comment, - [93200] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95505] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6803), 1, + ACTIONS(6978), 1, anon_sym_SEMI, - STATE(3357), 2, + STATE(3443), 2, sym_line_comment, sym_block_comment, - [93214] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95519] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6805), 1, - anon_sym_RBRACE, - STATE(3358), 2, + ACTIONS(6980), 1, + anon_sym_SEMI, + STATE(3444), 2, sym_line_comment, sym_block_comment, - [93228] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95533] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6807), 1, + ACTIONS(6778), 1, anon_sym_SEMI, - STATE(3359), 2, + STATE(3445), 2, sym_line_comment, sym_block_comment, - [93242] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95547] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6809), 1, - sym_identifier, - STATE(3360), 2, + ACTIONS(5039), 1, + anon_sym_COLON_COLON, + STATE(3446), 2, sym_line_comment, sym_block_comment, - [93256] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95561] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5438), 1, - anon_sym_RPAREN, - STATE(3361), 2, + ACTIONS(6128), 1, + anon_sym_RBRACE, + STATE(3447), 2, sym_line_comment, sym_block_comment, - [93270] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95575] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6811), 1, + ACTIONS(6982), 1, anon_sym_SEMI, - STATE(3362), 2, + STATE(3448), 2, sym_line_comment, sym_block_comment, - [93284] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95589] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6813), 1, - anon_sym_RBRACE, - STATE(3363), 2, + ACTIONS(6984), 1, + anon_sym_SEMI, + STATE(3449), 2, sym_line_comment, sym_block_comment, - [93298] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95603] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6815), 1, - anon_sym_RBRACE, - STATE(3364), 2, + ACTIONS(6986), 1, + sym_identifier, + STATE(3450), 2, sym_line_comment, sym_block_comment, - [93312] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95617] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6817), 1, - anon_sym_SEMI, - STATE(3365), 2, + ACTIONS(6988), 1, + sym_identifier, + STATE(3451), 2, sym_line_comment, sym_block_comment, - [93326] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95631] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6819), 1, - anon_sym_COLON, - STATE(3366), 2, + ACTIONS(6990), 1, + sym_identifier, + STATE(3452), 2, sym_line_comment, sym_block_comment, - [93340] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95645] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6821), 1, - sym_identifier, - STATE(3367), 2, + ACTIONS(6992), 1, + anon_sym_LBRACE, + STATE(3453), 2, sym_line_comment, sym_block_comment, - [93354] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95659] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3065), 1, - anon_sym_PLUS, - STATE(3368), 2, + ACTIONS(4999), 1, + anon_sym_COLON_COLON, + STATE(3454), 2, sym_line_comment, sym_block_comment, - [93368] = 4, - ACTIONS(101), 1, + [95673] = 4, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(6177), 1, + anon_sym_RBRACE, + STATE(3455), 2, + sym_line_comment, + sym_block_comment, + [95687] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6823), 1, + ACTIONS(6994), 1, anon_sym_COLON_COLON, - STATE(3369), 2, + STATE(3456), 2, sym_line_comment, sym_block_comment, - [93382] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95701] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6825), 1, + ACTIONS(6996), 1, anon_sym_fn, - STATE(3370), 2, + STATE(3457), 2, sym_line_comment, sym_block_comment, - [93396] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95715] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6827), 1, - anon_sym_SEMI, - STATE(3371), 2, + ACTIONS(6998), 1, + anon_sym_COLON, + STATE(3458), 2, sym_line_comment, sym_block_comment, - [93410] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95729] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5813), 1, + ACTIONS(5997), 1, anon_sym_LBRACE, - STATE(3372), 2, + STATE(3459), 2, sym_line_comment, sym_block_comment, - [93424] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95743] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6829), 1, - anon_sym_SEMI, - STATE(3373), 2, + ACTIONS(6636), 1, + anon_sym_COMMA, + STATE(3460), 2, sym_line_comment, sym_block_comment, - [93438] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95757] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6831), 1, - anon_sym_COLON_COLON, - STATE(3374), 2, + ACTIONS(7000), 1, + anon_sym_COLON, + STATE(3461), 2, sym_line_comment, sym_block_comment, - [93452] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95771] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6833), 1, - anon_sym_SEMI, - STATE(3375), 2, + ACTIONS(7002), 1, + sym__raw_string_literal_end, + STATE(3462), 2, sym_line_comment, sym_block_comment, - [93466] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95785] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6835), 1, - sym_raw_string_literal_content, - STATE(3376), 2, + ACTIONS(7004), 1, + anon_sym_EQ_GT, + STATE(3463), 2, sym_line_comment, sym_block_comment, - [93480] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95799] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6837), 1, - anon_sym_SEMI, - STATE(3377), 2, + ACTIONS(5920), 1, + anon_sym_RPAREN, + STATE(3464), 2, sym_line_comment, sym_block_comment, - [93494] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95813] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5831), 1, - anon_sym_RPAREN, - STATE(3378), 2, + ACTIONS(5977), 1, + anon_sym_RBRACK, + STATE(3465), 2, sym_line_comment, sym_block_comment, - [93508] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95827] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6839), 1, - anon_sym_RPAREN, - STATE(3379), 2, + ACTIONS(7006), 1, + sym_identifier, + STATE(3466), 2, sym_line_comment, sym_block_comment, - [93522] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95841] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6841), 1, - sym__raw_string_literal_end, - STATE(3380), 2, + ACTIONS(6189), 1, + anon_sym_RBRACE, + STATE(3467), 2, sym_line_comment, sym_block_comment, - [93536] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95855] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6843), 1, - anon_sym_SEMI, - STATE(3381), 2, + ACTIONS(5973), 1, + anon_sym_RPAREN, + STATE(3468), 2, sym_line_comment, sym_block_comment, - [93550] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95869] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6663), 1, - anon_sym_SEMI, - STATE(3382), 2, + ACTIONS(4800), 1, + anon_sym_COLON_COLON, + STATE(3469), 2, sym_line_comment, sym_block_comment, - [93564] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95883] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6845), 1, - anon_sym_SEMI, - STATE(3383), 2, + ACTIONS(6199), 1, + anon_sym_RBRACE, + STATE(3470), 2, sym_line_comment, sym_block_comment, - [93578] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95897] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6847), 1, - anon_sym_SEMI, - STATE(3384), 2, + ACTIONS(7008), 1, + anon_sym_RBRACE, + STATE(3471), 2, sym_line_comment, sym_block_comment, - [93592] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95911] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6849), 1, - anon_sym_COLON_COLON, - STATE(3385), 2, + ACTIONS(1006), 1, + anon_sym_RBRACK, + STATE(3472), 2, sym_line_comment, sym_block_comment, - [93606] = 4, - ACTIONS(101), 1, + [95925] = 4, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5565), 1, + anon_sym_RPAREN, + STATE(3473), 2, + sym_line_comment, + sym_block_comment, + [95939] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6851), 1, + ACTIONS(7010), 1, anon_sym_COLON, - STATE(3386), 2, + STATE(3474), 2, sym_line_comment, sym_block_comment, - [93620] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95953] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6853), 1, - sym_identifier, - STATE(3387), 2, + ACTIONS(5967), 1, + anon_sym_RBRACK, + STATE(3475), 2, sym_line_comment, sym_block_comment, - [93634] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95967] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6855), 1, - anon_sym_SEMI, - STATE(3388), 2, + ACTIONS(5961), 1, + anon_sym_RPAREN, + STATE(3476), 2, sym_line_comment, sym_block_comment, - [93648] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95981] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6857), 1, - sym_identifier, - STATE(3389), 2, + ACTIONS(7012), 1, + anon_sym_COLON, + STATE(3477), 2, sym_line_comment, sym_block_comment, - [93662] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [95995] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6859), 1, + ACTIONS(7014), 1, sym_identifier, - STATE(3390), 2, + STATE(3478), 2, sym_line_comment, sym_block_comment, - [93676] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96009] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6296), 1, - anon_sym_RBRACE, - STATE(3391), 2, + ACTIONS(7016), 1, + sym_identifier, + STATE(3479), 2, sym_line_comment, sym_block_comment, - [93690] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96023] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6861), 1, - anon_sym_RBRACK, - STATE(3392), 2, + ACTIONS(7018), 1, + anon_sym_STAR_SLASH, + STATE(3480), 2, sym_line_comment, sym_block_comment, - [93704] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96037] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5157), 1, + ACTIONS(7020), 1, anon_sym_SEMI, - STATE(3393), 2, + STATE(3481), 2, sym_line_comment, sym_block_comment, - [93718] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96051] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6863), 1, + ACTIONS(7022), 1, anon_sym_SEMI, - STATE(3394), 2, + STATE(3482), 2, sym_line_comment, sym_block_comment, - [93732] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96065] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6865), 1, - sym_identifier, - STATE(3395), 2, + ACTIONS(7024), 1, + anon_sym_SEMI, + STATE(3483), 2, sym_line_comment, sym_block_comment, - [93746] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96079] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6867), 1, - anon_sym_STAR_SLASH, - STATE(3396), 2, + ACTIONS(7026), 1, + anon_sym_RBRACK, + STATE(3484), 2, sym_line_comment, sym_block_comment, - [93760] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96093] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5426), 1, - anon_sym_RPAREN, - STATE(3397), 2, + ACTIONS(7028), 1, + anon_sym_SEMI, + STATE(3485), 2, sym_line_comment, sym_block_comment, - [93774] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96107] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1003), 1, + ACTIONS(7030), 1, anon_sym_RBRACK, - STATE(3398), 2, + STATE(3486), 2, sym_line_comment, sym_block_comment, - [93788] = 4, - ACTIONS(101), 1, + [96121] = 4, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(6241), 1, + anon_sym_RBRACE, + STATE(3487), 2, + sym_line_comment, + sym_block_comment, + [96135] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6869), 1, + ACTIONS(7032), 1, sym_identifier, - STATE(3399), 2, + STATE(3488), 2, sym_line_comment, sym_block_comment, - [93802] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96149] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6871), 1, + ACTIONS(7034), 1, anon_sym_SEMI, - STATE(3400), 2, + STATE(3489), 2, sym_line_comment, sym_block_comment, - [93816] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96163] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6873), 1, - anon_sym_RBRACK, - STATE(3401), 2, + ACTIONS(7036), 1, + anon_sym_RBRACE, + STATE(3490), 2, sym_line_comment, sym_block_comment, - [93830] = 4, - ACTIONS(3), 1, + [96177] = 4, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6875), 1, - aux_sym_line_comment_token2, - STATE(3402), 2, + ACTIONS(4624), 1, + anon_sym_COLON_COLON, + STATE(3491), 2, sym_line_comment, sym_block_comment, - [93844] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96191] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4537), 1, - anon_sym_COLON_COLON, - STATE(3403), 2, + ACTIONS(7038), 1, + sym__raw_string_literal_end, + STATE(3492), 2, sym_line_comment, sym_block_comment, - [93858] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96205] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6877), 1, + ACTIONS(7040), 1, anon_sym_SEMI, - STATE(3404), 2, + STATE(3493), 2, sym_line_comment, sym_block_comment, - [93872] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96219] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6879), 1, - anon_sym_RBRACE, - STATE(3405), 2, + ACTIONS(7042), 1, + anon_sym_fn, + STATE(3494), 2, sym_line_comment, sym_block_comment, - [93886] = 4, - ACTIONS(101), 1, + [96233] = 4, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(7044), 1, + sym_identifier, + STATE(3495), 2, + sym_line_comment, + sym_block_comment, + [96247] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5590), 1, - anon_sym_RPAREN, - STATE(3406), 2, + ACTIONS(7046), 1, + sym_identifier, + STATE(3496), 2, sym_line_comment, sym_block_comment, - [93900] = 4, - ACTIONS(101), 1, + [96261] = 4, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(7048), 1, + sym_identifier, + STATE(3497), 2, + sym_line_comment, + sym_block_comment, + [96275] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6881), 1, - anon_sym_fn, - STATE(3407), 2, + ACTIONS(1052), 1, + anon_sym_RBRACK, + STATE(3498), 2, sym_line_comment, sym_block_comment, - [93914] = 4, - ACTIONS(101), 1, + [96289] = 4, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(7050), 1, + sym_identifier, + STATE(3499), 2, + sym_line_comment, + sym_block_comment, + [96303] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6883), 1, - anon_sym_RBRACK, - STATE(3408), 2, + ACTIONS(7052), 1, + sym_identifier, + STATE(3500), 2, sym_line_comment, sym_block_comment, - [93928] = 4, - ACTIONS(101), 1, + [96317] = 4, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(7054), 1, + anon_sym_RPAREN, + STATE(3501), 2, + sym_line_comment, + sym_block_comment, + [96331] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6885), 1, + ACTIONS(7056), 1, sym_identifier, - STATE(3409), 2, + STATE(3502), 2, sym_line_comment, sym_block_comment, - [93942] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96345] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6887), 1, - anon_sym_EQ_GT, - STATE(3410), 2, + ACTIONS(7058), 1, + anon_sym_RBRACE, + STATE(3503), 2, sym_line_comment, sym_block_comment, - [93956] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96359] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6889), 1, - anon_sym_RBRACK, - STATE(3411), 2, + ACTIONS(4165), 1, + anon_sym_RPAREN, + STATE(3504), 2, sym_line_comment, sym_block_comment, - [93970] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96373] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6891), 1, - anon_sym_COLON, - STATE(3412), 2, + ACTIONS(7060), 1, + anon_sym_RBRACE, + STATE(3505), 2, sym_line_comment, sym_block_comment, - [93984] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96387] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6893), 1, - anon_sym_SEMI, - STATE(3413), 2, + ACTIONS(7062), 1, + sym_identifier, + STATE(3506), 2, sym_line_comment, sym_block_comment, - [93998] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96401] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6895), 1, + ACTIONS(5245), 1, anon_sym_SEMI, - STATE(3414), 2, + STATE(3507), 2, sym_line_comment, sym_block_comment, - [94012] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96415] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6897), 1, - anon_sym_RBRACK, - STATE(3415), 2, + ACTIONS(7064), 1, + anon_sym_EQ_GT, + STATE(3508), 2, sym_line_comment, sym_block_comment, - [94026] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96429] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5594), 1, - anon_sym_RBRACK, - STATE(3416), 2, + ACTIONS(7066), 1, + sym_identifier, + STATE(3509), 2, sym_line_comment, sym_block_comment, - [94040] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96443] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5508), 1, - anon_sym_RPAREN, - STATE(3417), 2, + ACTIONS(7068), 1, + sym_identifier, + STATE(3510), 2, sym_line_comment, sym_block_comment, - [94054] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96457] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6501), 1, + ACTIONS(5235), 1, anon_sym_SEMI, - STATE(3418), 2, + STATE(3511), 2, sym_line_comment, sym_block_comment, - [94068] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96471] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6899), 1, - anon_sym_STAR_SLASH, - STATE(3419), 2, + ACTIONS(7070), 1, + anon_sym_RBRACK, + STATE(3512), 2, sym_line_comment, sym_block_comment, - [94082] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96485] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6901), 1, - sym_identifier, - STATE(3420), 2, + ACTIONS(7072), 1, + anon_sym_COLON_COLON, + STATE(3513), 2, sym_line_comment, sym_block_comment, - [94096] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96499] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6118), 1, + ACTIONS(6308), 1, anon_sym_RBRACE, - STATE(3421), 2, + STATE(3514), 2, sym_line_comment, sym_block_comment, - [94110] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96513] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6157), 1, - anon_sym_RBRACE, - STATE(3422), 2, + ACTIONS(7074), 1, + anon_sym_SEMI, + STATE(3515), 2, sym_line_comment, sym_block_comment, - [94124] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96527] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6903), 1, - anon_sym_EQ_GT, - STATE(3423), 2, + ACTIONS(7076), 1, + anon_sym_SEMI, + STATE(3516), 2, sym_line_comment, sym_block_comment, - [94138] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96541] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6905), 1, + ACTIONS(7078), 1, anon_sym_SEMI, - STATE(3424), 2, + STATE(3517), 2, sym_line_comment, sym_block_comment, - [94152] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96555] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6907), 1, - anon_sym_SEMI, - STATE(3425), 2, + ACTIONS(7080), 1, + sym_self, + STATE(3518), 2, sym_line_comment, sym_block_comment, - [94166] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96569] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6909), 1, - anon_sym_RBRACE, - STATE(3426), 2, + ACTIONS(7082), 1, + sym_identifier, + STATE(3519), 2, sym_line_comment, sym_block_comment, - [94180] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96583] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6911), 1, - anon_sym_fn, - STATE(3427), 2, + ACTIONS(7084), 1, + anon_sym_SEMI, + STATE(3520), 2, sym_line_comment, sym_block_comment, - [94194] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96597] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6039), 1, - anon_sym_RBRACE, - STATE(3428), 2, + ACTIONS(7086), 1, + anon_sym_SEMI, + STATE(3521), 2, sym_line_comment, sym_block_comment, - [94208] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96611] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6913), 1, - sym__raw_string_literal_end, - STATE(3429), 2, + ACTIONS(7088), 1, + anon_sym_LBRACE, + STATE(3522), 2, sym_line_comment, sym_block_comment, - [94222] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96625] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6915), 1, - anon_sym_COLON_COLON, - STATE(3430), 2, + ACTIONS(7090), 1, + sym_identifier, + STATE(3523), 2, sym_line_comment, sym_block_comment, - [94236] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96639] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6715), 1, - anon_sym_LBRACK, - STATE(3431), 2, + ACTIONS(7092), 1, + anon_sym_COLON, + STATE(3524), 2, sym_line_comment, sym_block_comment, - [94250] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96653] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6917), 1, - anon_sym_SEMI, - STATE(3432), 2, + ACTIONS(7094), 1, + anon_sym_LPAREN, + STATE(3525), 2, sym_line_comment, sym_block_comment, - [94264] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96667] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6919), 1, - anon_sym_SEMI, - STATE(3433), 2, + ACTIONS(7096), 1, + sym__raw_string_literal_end, + STATE(3526), 2, sym_line_comment, sym_block_comment, - [94278] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96681] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6921), 1, - sym_identifier, - STATE(3434), 2, + ACTIONS(5916), 1, + anon_sym_RPAREN, + STATE(3527), 2, sym_line_comment, sym_block_comment, - [94292] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96695] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6923), 1, - anon_sym_COLON, - STATE(3435), 2, + ACTIONS(7098), 1, + sym_identifier, + STATE(3528), 2, sym_line_comment, sym_block_comment, - [94306] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96709] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6925), 1, + ACTIONS(7100), 1, sym_identifier, - STATE(3436), 2, + STATE(3529), 2, sym_line_comment, sym_block_comment, - [94320] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96723] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5953), 1, - anon_sym_RBRACE, - STATE(3437), 2, + ACTIONS(7102), 1, + sym_identifier, + STATE(3530), 2, sym_line_comment, sym_block_comment, - [94334] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96737] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5737), 1, - anon_sym_LBRACE, - STATE(3438), 2, + ACTIONS(3177), 1, + anon_sym_PLUS, + STATE(3531), 2, sym_line_comment, sym_block_comment, - [94348] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96751] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6927), 1, - anon_sym_LT, - STATE(3439), 2, + ACTIONS(7104), 1, + anon_sym_SEMI, + STATE(3532), 2, sym_line_comment, sym_block_comment, - [94362] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96765] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4909), 1, - anon_sym_COLON_COLON, - STATE(3440), 2, + ACTIONS(7106), 1, + anon_sym_RPAREN, + STATE(3533), 2, sym_line_comment, sym_block_comment, - [94376] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96779] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6929), 1, + ACTIONS(7108), 1, anon_sym_SEMI, - STATE(3441), 2, + STATE(3534), 2, sym_line_comment, sym_block_comment, - [94390] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96793] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5528), 1, - anon_sym_RPAREN, - STATE(3442), 2, + ACTIONS(7110), 1, + sym_identifier, + STATE(3535), 2, sym_line_comment, sym_block_comment, - [94404] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96807] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6931), 1, + ACTIONS(6816), 1, anon_sym_SEMI, - STATE(3443), 2, + STATE(3536), 2, sym_line_comment, sym_block_comment, - [94418] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96821] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6933), 1, - sym_identifier, - STATE(3444), 2, + ACTIONS(5646), 1, + anon_sym_RPAREN, + STATE(3537), 2, sym_line_comment, sym_block_comment, - [94432] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96835] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6935), 1, + ACTIONS(7112), 1, sym_identifier, - STATE(3445), 2, + STATE(3538), 2, sym_line_comment, sym_block_comment, - [94446] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96849] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6122), 1, - anon_sym_RBRACE, - STATE(3446), 2, + ACTIONS(7114), 1, + anon_sym_EQ_GT, + STATE(3539), 2, sym_line_comment, sym_block_comment, - [94460] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96863] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6937), 1, - anon_sym_RPAREN, - STATE(3447), 2, + ACTIONS(7116), 1, + anon_sym_EQ_GT, + STATE(3540), 2, sym_line_comment, sym_block_comment, - [94474] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96877] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6939), 1, - sym_identifier, - STATE(3448), 2, + ACTIONS(6810), 1, + anon_sym_SEMI, + STATE(3541), 2, sym_line_comment, sym_block_comment, - [94488] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96891] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6941), 1, - sym_identifier, - STATE(3449), 2, + ACTIONS(7118), 1, + anon_sym_COLON, + STATE(3542), 2, sym_line_comment, sym_block_comment, - [94502] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96905] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1035), 1, - anon_sym_RBRACK, - STATE(3450), 2, + ACTIONS(7120), 1, + anon_sym_COLON, + STATE(3543), 2, sym_line_comment, sym_block_comment, - [94516] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96919] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6943), 1, - sym__raw_string_literal_end, - STATE(3451), 2, + ACTIONS(7122), 1, + anon_sym_RBRACE, + STATE(3544), 2, sym_line_comment, sym_block_comment, - [94530] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96933] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4475), 1, - anon_sym_fn, - STATE(3452), 2, + ACTIONS(7124), 1, + anon_sym_LBRACK, + STATE(3545), 2, sym_line_comment, sym_block_comment, - [94544] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96947] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6945), 1, - sym_identifier, - STATE(3453), 2, + ACTIONS(6427), 1, + anon_sym_RBRACE, + STATE(3546), 2, sym_line_comment, sym_block_comment, - [94558] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96961] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5941), 1, + ACTIONS(7126), 1, anon_sym_COLON_COLON, - STATE(3454), 2, + STATE(3547), 2, sym_line_comment, sym_block_comment, - [94572] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96975] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3889), 1, - anon_sym_COLON_COLON, - STATE(3455), 2, + ACTIONS(3129), 1, + anon_sym_PLUS, + STATE(3548), 2, sym_line_comment, sym_block_comment, - [94586] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [96989] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6947), 1, - anon_sym_SEMI, - STATE(3456), 2, + ACTIONS(7128), 1, + sym_identifier, + STATE(3549), 2, sym_line_comment, sym_block_comment, - [94600] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97003] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6949), 1, - anon_sym_LBRACK, - STATE(3457), 2, + ACTIONS(6285), 1, + anon_sym_GT, + STATE(3550), 2, sym_line_comment, sym_block_comment, - [94614] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97017] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6951), 1, - sym_identifier, - STATE(3458), 2, + ACTIONS(7130), 1, + anon_sym_LPAREN, + STATE(3551), 2, sym_line_comment, sym_block_comment, - [94628] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97031] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6953), 1, - sym_identifier, - STATE(3459), 2, + ACTIONS(7132), 1, + anon_sym_EQ, + STATE(3552), 2, sym_line_comment, sym_block_comment, - [94642] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97045] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6955), 1, - sym_identifier, - STATE(3460), 2, + ACTIONS(7134), 1, + anon_sym_fn, + STATE(3553), 2, sym_line_comment, sym_block_comment, - [94656] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97059] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6957), 1, + ACTIONS(7136), 1, sym_raw_string_literal_content, - STATE(3461), 2, + STATE(3554), 2, sym_line_comment, sym_block_comment, - [94670] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97073] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6601), 1, - anon_sym_SEMI, - STATE(3462), 2, + ACTIONS(7138), 1, + sym_identifier, + STATE(3555), 2, sym_line_comment, sym_block_comment, - [94684] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97087] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6959), 1, - anon_sym_SEMI, - STATE(3463), 2, + ACTIONS(7140), 1, + anon_sym_LT, + STATE(3556), 2, sym_line_comment, sym_block_comment, - [94698] = 4, - ACTIONS(101), 1, + [97101] = 4, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(7142), 1, + anon_sym_RBRACE, + STATE(3557), 2, + sym_line_comment, + sym_block_comment, + [97115] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4123), 1, + ACTIONS(4187), 1, anon_sym_COLON_COLON, - STATE(3464), 2, + STATE(3558), 2, sym_line_comment, sym_block_comment, - [94712] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97129] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5840), 1, + ACTIONS(5755), 1, anon_sym_COLON_COLON, - STATE(3465), 2, + STATE(3559), 2, sym_line_comment, sym_block_comment, - [94726] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97143] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6961), 1, - anon_sym_SEMI, - STATE(3466), 2, + ACTIONS(7144), 1, + sym_identifier, + STATE(3560), 2, sym_line_comment, sym_block_comment, - [94740] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97157] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6963), 1, - anon_sym_SEMI, - STATE(3467), 2, + ACTIONS(5789), 1, + anon_sym_RPAREN, + STATE(3561), 2, sym_line_comment, sym_block_comment, - [94754] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97171] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6965), 1, - anon_sym_RBRACK, - STATE(3468), 2, + ACTIONS(7146), 1, + sym__raw_string_literal_end, + STATE(3562), 2, sym_line_comment, sym_block_comment, - [94768] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97185] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6967), 1, + ACTIONS(7148), 1, anon_sym_COLON_COLON, - STATE(3469), 2, + STATE(3563), 2, sym_line_comment, sym_block_comment, - [94782] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97199] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6969), 1, - sym_identifier, - STATE(3470), 2, + ACTIONS(6792), 1, + anon_sym_SEMI, + STATE(3564), 2, sym_line_comment, sym_block_comment, - [94796] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97213] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6971), 1, - anon_sym_SEMI, - STATE(3471), 2, + ACTIONS(7150), 1, + anon_sym_RBRACK, + STATE(3565), 2, sym_line_comment, sym_block_comment, - [94810] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97227] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6973), 1, - anon_sym_EQ, - STATE(3472), 2, + ACTIONS(7152), 1, + anon_sym_SEMI, + STATE(3566), 2, sym_line_comment, sym_block_comment, - [94824] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97241] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6975), 1, + ACTIONS(7154), 1, anon_sym_fn, - STATE(3473), 2, + STATE(3567), 2, sym_line_comment, sym_block_comment, - [94838] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97255] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6977), 1, - anon_sym_LPAREN, - STATE(3474), 2, + ACTIONS(6460), 1, + anon_sym_RBRACE, + STATE(3568), 2, sym_line_comment, sym_block_comment, - [94852] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97269] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6979), 1, + ACTIONS(7156), 1, anon_sym_COLON_COLON, - STATE(3475), 2, + STATE(3569), 2, sym_line_comment, sym_block_comment, - [94866] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97283] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5143), 1, - anon_sym_SEMI, - STATE(3476), 2, + ACTIONS(5530), 1, + anon_sym_RPAREN, + STATE(3570), 2, sym_line_comment, sym_block_comment, - [94880] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97297] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6981), 1, - anon_sym_RBRACE, - STATE(3477), 2, + ACTIONS(6782), 1, + anon_sym_SEMI, + STATE(3571), 2, sym_line_comment, sym_block_comment, - [94894] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97311] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6983), 1, + ACTIONS(7158), 1, anon_sym_COLON_COLON, - STATE(3478), 2, + STATE(3572), 2, sym_line_comment, sym_block_comment, - [94908] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97325] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6985), 1, - anon_sym_SEMI, - STATE(3479), 2, + ACTIONS(7160), 1, + sym_identifier, + STATE(3573), 2, sym_line_comment, sym_block_comment, - [94922] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97339] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6987), 1, - anon_sym_COLON, - STATE(3480), 2, + ACTIONS(5261), 1, + anon_sym_COLON_COLON, + STATE(3574), 2, sym_line_comment, sym_block_comment, - [94936] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97353] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4943), 1, + ACTIONS(4969), 1, anon_sym_COLON_COLON, - STATE(3481), 2, + STATE(3575), 2, sym_line_comment, sym_block_comment, - [94950] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97367] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6605), 1, - anon_sym_SEMI, - STATE(3482), 2, + ACTIONS(944), 1, + anon_sym_EQ_GT, + STATE(3576), 2, sym_line_comment, sym_block_comment, - [94964] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97381] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6989), 1, + ACTIONS(7162), 1, anon_sym_COLON_COLON, - STATE(3483), 2, + STATE(3577), 2, sym_line_comment, sym_block_comment, - [94978] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97395] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6991), 1, + ACTIONS(7164), 1, anon_sym_fn, - STATE(3484), 2, + STATE(3578), 2, sym_line_comment, sym_block_comment, - [94992] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97409] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6993), 1, - anon_sym_COLON, - STATE(3485), 2, + ACTIONS(5707), 1, + anon_sym_RPAREN, + STATE(3579), 2, sym_line_comment, sym_block_comment, - [95006] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97423] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6995), 1, + ACTIONS(7166), 1, anon_sym_LBRACE, - STATE(3486), 2, + STATE(3580), 2, sym_line_comment, sym_block_comment, - [95020] = 4, - ACTIONS(101), 1, + [97437] = 4, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(7168), 1, + sym_raw_string_literal_content, + STATE(3581), 2, + sym_line_comment, + sym_block_comment, + [97451] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6997), 1, + ACTIONS(7170), 1, anon_sym_SEMI, - STATE(3487), 2, + STATE(3582), 2, sym_line_comment, sym_block_comment, - [95034] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97465] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6999), 1, + ACTIONS(7172), 1, anon_sym_SEMI, - STATE(3488), 2, + STATE(3583), 2, sym_line_comment, sym_block_comment, - [95048] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97479] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7001), 1, - sym__line_doc_content, - STATE(3489), 2, + ACTIONS(7174), 1, + sym_identifier, + STATE(3584), 2, sym_line_comment, sym_block_comment, - [95062] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97493] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7003), 1, + ACTIONS(7176), 1, anon_sym_RBRACK, - STATE(3490), 2, + STATE(3585), 2, sym_line_comment, sym_block_comment, - [95076] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97507] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7005), 1, - anon_sym_SEMI, - STATE(3491), 2, + ACTIONS(7178), 1, + anon_sym_RBRACK, + STATE(3586), 2, sym_line_comment, sym_block_comment, - [95090] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97521] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5167), 1, - anon_sym_SEMI, - STATE(3492), 2, + ACTIONS(952), 1, + anon_sym_RBRACK, + STATE(3587), 2, sym_line_comment, sym_block_comment, - [95104] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97535] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7007), 1, - sym_identifier, - STATE(3493), 2, + ACTIONS(7180), 1, + anon_sym_SEMI, + STATE(3588), 2, sym_line_comment, sym_block_comment, - [95118] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97549] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7009), 1, + ACTIONS(7182), 1, sym_raw_string_literal_content, - STATE(3494), 2, + STATE(3589), 2, sym_line_comment, sym_block_comment, - [95132] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97563] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6541), 1, - anon_sym_COLON_COLON, - STATE(3495), 2, + ACTIONS(7184), 1, + anon_sym_SEMI, + STATE(3590), 2, sym_line_comment, sym_block_comment, - [95146] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97577] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7011), 1, - anon_sym_RPAREN, - STATE(3496), 2, + ACTIONS(7186), 1, + anon_sym_SEMI, + STATE(3591), 2, sym_line_comment, sym_block_comment, - [95160] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97591] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7013), 1, - sym_identifier, - STATE(3497), 2, + ACTIONS(6676), 1, + anon_sym_LBRACK, + STATE(3592), 2, sym_line_comment, sym_block_comment, - [95174] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97605] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7015), 1, + ACTIONS(7188), 1, anon_sym_COLON_COLON, - STATE(3498), 2, + STATE(3593), 2, sym_line_comment, sym_block_comment, - [95188] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97619] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7017), 1, - anon_sym_SEMI, - STATE(3499), 2, + ACTIONS(7190), 1, + anon_sym_RBRACK, + STATE(3594), 2, sym_line_comment, sym_block_comment, - [95202] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97633] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7019), 1, + ACTIONS(7192), 1, anon_sym_SEMI, - STATE(3500), 2, + STATE(3595), 2, sym_line_comment, sym_block_comment, - [95216] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97647] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7021), 1, + ACTIONS(7194), 1, anon_sym_COLON_COLON, - STATE(3501), 2, + STATE(3596), 2, sym_line_comment, sym_block_comment, - [95230] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97661] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7023), 1, - sym__line_doc_content, - STATE(3502), 2, + ACTIONS(7196), 1, + anon_sym_SEMI, + STATE(3597), 2, sym_line_comment, sym_block_comment, - [95244] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97675] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7025), 1, + ACTIONS(7198), 1, anon_sym_SEMI, - STATE(3503), 2, + STATE(3598), 2, sym_line_comment, sym_block_comment, - [95258] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97689] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7027), 1, + ACTIONS(7200), 1, anon_sym_COLON_COLON, - STATE(3504), 2, + STATE(3599), 2, sym_line_comment, sym_block_comment, - [95272] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97703] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7029), 1, - anon_sym_SEMI, - STATE(3505), 2, + ACTIONS(7202), 1, + sym__raw_string_literal_end, + STATE(3600), 2, sym_line_comment, sym_block_comment, - [95286] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97717] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7031), 1, - anon_sym_SEMI, - STATE(3506), 2, + ACTIONS(7204), 1, + sym_identifier, + STATE(3601), 2, sym_line_comment, sym_block_comment, - [95300] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97731] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7033), 1, + ACTIONS(7206), 1, anon_sym_COLON_COLON, - STATE(3507), 2, + STATE(3602), 2, sym_line_comment, sym_block_comment, - [95314] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97745] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7035), 1, + ACTIONS(7208), 1, anon_sym_LBRACE, - STATE(3508), 2, + STATE(3603), 2, sym_line_comment, sym_block_comment, - [95328] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97759] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7037), 1, - sym_identifier, - STATE(3509), 2, + ACTIONS(7210), 1, + anon_sym_SEMI, + STATE(3604), 2, sym_line_comment, sym_block_comment, - [95342] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97773] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7039), 1, - anon_sym_COLON, - STATE(3510), 2, + ACTIONS(7212), 1, + sym_identifier, + STATE(3605), 2, sym_line_comment, sym_block_comment, - [95356] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97787] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3101), 1, - anon_sym_PLUS, - STATE(3511), 2, + ACTIONS(7214), 1, + anon_sym_STAR_SLASH, + STATE(3606), 2, sym_line_comment, sym_block_comment, - [95370] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97801] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7041), 1, - ts_builtin_sym_end, - STATE(3512), 2, + ACTIONS(7216), 1, + sym_identifier, + STATE(3607), 2, sym_line_comment, sym_block_comment, - [95384] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97815] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7043), 1, + ACTIONS(7218), 1, sym_raw_string_literal_content, - STATE(3513), 2, + STATE(3608), 2, sym_line_comment, sym_block_comment, - [95398] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97829] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3473), 1, + ACTIONS(3567), 1, anon_sym_COLON_COLON, - STATE(3514), 2, + STATE(3609), 2, sym_line_comment, sym_block_comment, - [95412] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97843] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6049), 1, - anon_sym_GT, - STATE(3515), 2, + ACTIONS(7220), 1, + anon_sym_RBRACK, + STATE(3610), 2, sym_line_comment, sym_block_comment, - [95426] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97857] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7045), 1, + ACTIONS(7222), 1, anon_sym_COLON_COLON, - STATE(3516), 2, + STATE(3611), 2, sym_line_comment, sym_block_comment, - [95440] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97871] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7047), 1, - anon_sym_SEMI, - STATE(3517), 2, + ACTIONS(6520), 1, + anon_sym_RBRACE, + STATE(3612), 2, sym_line_comment, sym_block_comment, - [95454] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97885] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7049), 1, + ACTIONS(7224), 1, anon_sym_LBRACE, - STATE(3518), 2, + STATE(3613), 2, sym_line_comment, sym_block_comment, - [95468] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97899] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7051), 1, + ACTIONS(7226), 1, sym_raw_string_literal_content, - STATE(3519), 2, + STATE(3614), 2, sym_line_comment, sym_block_comment, - [95482] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97913] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5211), 1, + ACTIONS(5243), 1, anon_sym_COLON_COLON, - STATE(3520), 2, + STATE(3615), 2, sym_line_comment, sym_block_comment, - [95496] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97927] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7053), 1, + ACTIONS(7228), 1, anon_sym_COLON_COLON, - STATE(3521), 2, + STATE(3616), 2, sym_line_comment, sym_block_comment, - [95510] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97941] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5858), 1, + ACTIONS(5854), 1, anon_sym_LBRACE, - STATE(3522), 2, + STATE(3617), 2, sym_line_comment, sym_block_comment, - [95524] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97955] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5856), 1, + ACTIONS(5882), 1, anon_sym_COLON_COLON, - STATE(3523), 2, + STATE(3618), 2, sym_line_comment, sym_block_comment, - [95538] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97969] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7055), 1, + ACTIONS(7230), 1, anon_sym_COLON_COLON, - STATE(3524), 2, + STATE(3619), 2, sym_line_comment, sym_block_comment, - [95552] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97983] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5868), 1, + ACTIONS(5817), 1, anon_sym_LBRACE, - STATE(3525), 2, + STATE(3620), 2, sym_line_comment, sym_block_comment, - [95566] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [97997] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7057), 1, + ACTIONS(7232), 1, anon_sym_COLON_COLON, - STATE(3526), 2, + STATE(3621), 2, sym_line_comment, sym_block_comment, - [95580] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [98011] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5207), 1, + ACTIONS(5282), 1, anon_sym_COLON_COLON, - STATE(3527), 2, + STATE(3622), 2, sym_line_comment, sym_block_comment, - [95594] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [98025] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5101), 1, + ACTIONS(5336), 1, anon_sym_COLON_COLON, - STATE(3528), 2, + STATE(3623), 2, sym_line_comment, sym_block_comment, - [95608] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [98039] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4081), 1, + ACTIONS(4141), 1, anon_sym_COLON_COLON, - STATE(3529), 2, + STATE(3624), 2, sym_line_comment, sym_block_comment, - [95622] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [98053] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7059), 1, + ACTIONS(7234), 1, anon_sym_COLON_COLON, - STATE(3530), 2, + STATE(3625), 2, sym_line_comment, sym_block_comment, - [95636] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [98067] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7061), 1, + ACTIONS(4057), 1, sym_identifier, - STATE(3531), 2, + STATE(3626), 2, sym_line_comment, sym_block_comment, - [95650] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [98081] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4678), 1, - anon_sym_COLON_COLON, - STATE(3532), 2, + ACTIONS(7236), 1, + anon_sym_SEMI, + STATE(3627), 2, sym_line_comment, sym_block_comment, - [95664] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [98095] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3051), 1, + ACTIONS(3141), 1, anon_sym_PLUS, - STATE(3533), 2, + STATE(3628), 2, sym_line_comment, sym_block_comment, - [95678] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [98109] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7063), 1, + ACTIONS(7238), 1, sym_identifier, - STATE(3534), 2, + STATE(3629), 2, sym_line_comment, sym_block_comment, - [95692] = 4, - ACTIONS(101), 1, + [98123] = 4, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(7240), 1, + sym__line_doc_content, + STATE(3630), 2, + sym_line_comment, + sym_block_comment, + [98137] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7065), 1, + ACTIONS(7242), 1, anon_sym_COLON, - STATE(3535), 2, + STATE(3631), 2, sym_line_comment, sym_block_comment, - [95706] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [98151] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7067), 1, + ACTIONS(7244), 1, anon_sym_LBRACK, - STATE(3536), 2, + STATE(3632), 2, sym_line_comment, sym_block_comment, - [95720] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [98165] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7069), 1, - sym_identifier, - STATE(3537), 2, + ACTIONS(7246), 1, + sym__line_doc_content, + STATE(3633), 2, sym_line_comment, sym_block_comment, - [95734] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [98179] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7071), 1, + ACTIONS(7248), 1, anon_sym_LBRACK, - STATE(3538), 2, + STATE(3634), 2, sym_line_comment, sym_block_comment, - [95748] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [98193] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7073), 1, + ACTIONS(7250), 1, anon_sym_COLON, - STATE(3539), 2, + STATE(3635), 2, sym_line_comment, sym_block_comment, - [95762] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [98207] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7075), 1, + ACTIONS(7252), 1, anon_sym_COLON, - STATE(3540), 2, + STATE(3636), 2, sym_line_comment, sym_block_comment, - [95776] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [98221] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4115), 1, - anon_sym_RPAREN, - STATE(3541), 2, + ACTIONS(7254), 1, + sym_identifier, + STATE(3637), 2, sym_line_comment, sym_block_comment, - [95790] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [98235] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7077), 1, - anon_sym_SEMI, - STATE(3542), 2, + ACTIONS(7256), 1, + sym__line_doc_content, + STATE(3638), 2, sym_line_comment, sym_block_comment, - [95804] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [98249] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5633), 1, - anon_sym_RPAREN, - STATE(3543), 2, + ACTIONS(7258), 1, + sym_identifier, + STATE(3639), 2, sym_line_comment, sym_block_comment, - [95818] = 4, - ACTIONS(101), 1, + [98263] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7079), 1, - anon_sym_COLON, - STATE(3544), 2, + ACTIONS(7260), 1, + aux_sym_line_comment_token2, + STATE(3640), 2, sym_line_comment, sym_block_comment, - [95832] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [98277] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7081), 1, + ACTIONS(7262), 1, anon_sym_COLON, - STATE(3545), 2, + STATE(3641), 2, sym_line_comment, sym_block_comment, - [95846] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [98291] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7083), 1, - anon_sym_RBRACE, - STATE(3546), 2, + ACTIONS(7264), 1, + sym_identifier, + STATE(3642), 2, sym_line_comment, sym_block_comment, - [95860] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [98305] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7085), 1, - sym_identifier, - STATE(3547), 2, + ACTIONS(7266), 1, + anon_sym_COLON, + STATE(3643), 2, sym_line_comment, sym_block_comment, - [95874] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [98319] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7087), 1, - anon_sym_SEMI, - STATE(3548), 2, + ACTIONS(7268), 1, + anon_sym_COLON, + STATE(3644), 2, sym_line_comment, sym_block_comment, - [95888] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [98333] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7089), 1, - sym_identifier, - STATE(3549), 2, + ACTIONS(7270), 1, + anon_sym_SEMI, + STATE(3645), 2, sym_line_comment, sym_block_comment, - [95902] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [98347] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7091), 1, - sym__raw_string_literal_end, - STATE(3550), 2, + ACTIONS(7272), 1, + anon_sym_SEMI, + STATE(3646), 2, sym_line_comment, sym_block_comment, - [95916] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [98361] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7093), 1, + ACTIONS(7274), 1, sym_identifier, - STATE(3551), 2, + STATE(3647), 2, sym_line_comment, sym_block_comment, - [95930] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [98375] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7095), 1, - anon_sym_RPAREN, - STATE(3552), 2, + ACTIONS(7276), 1, + anon_sym_SEMI, + STATE(3648), 2, sym_line_comment, sym_block_comment, - [95944] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [98389] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7097), 1, - sym__raw_string_literal_end, - STATE(3553), 2, + ACTIONS(7278), 1, + anon_sym_SEMI, + STATE(3649), 2, sym_line_comment, sym_block_comment, - [95958] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [98403] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7099), 1, - anon_sym_COLON, - STATE(3554), 2, + ACTIONS(6642), 1, + anon_sym_COLON_COLON, + STATE(3650), 2, sym_line_comment, sym_block_comment, - [95972] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [98417] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7101), 1, - anon_sym_COLON, - STATE(3555), 2, + ACTIONS(4555), 1, + anon_sym_fn, + STATE(3651), 2, sym_line_comment, sym_block_comment, - [95986] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [98431] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7103), 1, - anon_sym_SEMI, - STATE(3556), 2, + ACTIONS(7280), 1, + anon_sym_COLON, + STATE(3652), 2, sym_line_comment, sym_block_comment, - [96000] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [98445] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7105), 1, - sym_identifier, - STATE(3557), 2, + ACTIONS(7282), 1, + ts_builtin_sym_end, + STATE(3653), 2, sym_line_comment, sym_block_comment, - [96014] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [98459] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7107), 1, - sym_identifier, - STATE(3558), 2, + ACTIONS(3967), 1, + anon_sym_COLON_COLON, + STATE(3654), 2, sym_line_comment, sym_block_comment, - [96028] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [98473] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7109), 1, - anon_sym_COLON, - STATE(3559), 2, + ACTIONS(7284), 1, + anon_sym_EQ_GT, + STATE(3655), 2, sym_line_comment, sym_block_comment, - [96042] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [98487] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7111), 1, - sym_identifier, - STATE(3560), 2, + ACTIONS(7286), 1, + anon_sym_COLON, + STATE(3656), 2, sym_line_comment, sym_block_comment, - [96056] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [98501] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7113), 1, + ACTIONS(7288), 1, sym__raw_string_literal_end, - STATE(3561), 2, + STATE(3657), 2, sym_line_comment, sym_block_comment, - [96070] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [98515] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7115), 1, - sym_identifier, - STATE(3562), 2, + ACTIONS(7290), 1, + anon_sym_RPAREN, + STATE(3658), 2, sym_line_comment, sym_block_comment, - [96084] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [98529] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4119), 1, - anon_sym_RPAREN, - STATE(3563), 2, + ACTIONS(7292), 1, + anon_sym_SEMI, + STATE(3659), 2, sym_line_comment, sym_block_comment, - [96098] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [98543] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7117), 1, + ACTIONS(7294), 1, sym_identifier, - STATE(3564), 2, + STATE(3660), 2, sym_line_comment, sym_block_comment, - [96112] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [98557] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7119), 1, - anon_sym_COLON, - STATE(3565), 2, + ACTIONS(7296), 1, + anon_sym_RBRACE, + STATE(3661), 2, sym_line_comment, sym_block_comment, - [96126] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [98571] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7121), 1, - sym_identifier, - STATE(3566), 2, + ACTIONS(7298), 1, + anon_sym_COLON, + STATE(3662), 2, sym_line_comment, sym_block_comment, - [96140] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [98585] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7123), 1, + ACTIONS(7300), 1, anon_sym_SEMI, - STATE(3567), 2, + STATE(3663), 2, sym_line_comment, sym_block_comment, - [96154] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [98599] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7125), 1, - anon_sym_RBRACE, - STATE(3568), 2, + ACTIONS(7302), 1, + anon_sym_SEMI, + STATE(3664), 2, sym_line_comment, sym_block_comment, - [96168] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [98613] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7127), 1, - sym_identifier, - STATE(3569), 2, + ACTIONS(7304), 1, + anon_sym_SEMI, + STATE(3665), 2, sym_line_comment, sym_block_comment, - [96182] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [98627] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7129), 1, + ACTIONS(7306), 1, anon_sym_SEMI, - STATE(3570), 2, + STATE(3666), 2, sym_line_comment, sym_block_comment, - [96196] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [98641] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7131), 1, + ACTIONS(7308), 1, anon_sym_SEMI, - STATE(3571), 2, + STATE(3667), 2, sym_line_comment, sym_block_comment, - [96210] = 4, - ACTIONS(101), 1, + [98655] = 4, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(7310), 1, + sym_identifier, + STATE(3668), 2, + sym_line_comment, + sym_block_comment, + [98669] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7133), 1, + ACTIONS(7312), 1, anon_sym_EQ, - STATE(3572), 2, + STATE(3669), 2, sym_line_comment, sym_block_comment, - [96224] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [98683] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6448), 1, - anon_sym_RBRACE, - STATE(3573), 2, + ACTIONS(7314), 1, + anon_sym_SEMI, + STATE(3670), 2, sym_line_comment, sym_block_comment, - [96238] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [98697] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7135), 1, - anon_sym_RPAREN, - STATE(3574), 2, + ACTIONS(6584), 1, + anon_sym_RBRACE, + STATE(3671), 2, sym_line_comment, sym_block_comment, - [96252] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [98711] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5145), 1, + ACTIONS(7316), 1, anon_sym_SEMI, - STATE(3575), 2, + STATE(3672), 2, sym_line_comment, sym_block_comment, - [96266] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [98725] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7137), 1, + ACTIONS(7318), 1, anon_sym_SEMI, - STATE(3576), 2, + STATE(3673), 2, sym_line_comment, sym_block_comment, - [96280] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [98739] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7139), 1, + ACTIONS(7320), 1, anon_sym_COLON, - STATE(3577), 2, + STATE(3674), 2, sym_line_comment, sym_block_comment, - [96294] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [98753] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5637), 1, - anon_sym_RPAREN, - STATE(3578), 2, + ACTIONS(7322), 1, + anon_sym_SEMI, + STATE(3675), 2, sym_line_comment, sym_block_comment, - [96308] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [98767] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7141), 1, + ACTIONS(7324), 1, anon_sym_COLON, - STATE(3579), 2, + STATE(3676), 2, sym_line_comment, sym_block_comment, - [96322] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [98781] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7143), 1, + ACTIONS(7326), 1, anon_sym_LBRACK, - STATE(3580), 2, + STATE(3677), 2, sym_line_comment, sym_block_comment, - [96336] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [98795] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7145), 1, + ACTIONS(7328), 1, anon_sym_LBRACK, - STATE(3581), 2, + STATE(3678), 2, sym_line_comment, sym_block_comment, - [96350] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [98809] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7147), 1, + ACTIONS(7330), 1, anon_sym_COLON, - STATE(3582), 2, + STATE(3679), 2, sym_line_comment, sym_block_comment, - [96364] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [98823] = 4, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(6426), 1, - anon_sym_RBRACE, - STATE(3583), 2, - sym_line_comment, - sym_block_comment, - [96378] = 4, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5902), 1, - anon_sym_RBRACE, - STATE(3584), 2, + ACTIONS(7332), 1, + anon_sym_SEMI, + STATE(3680), 2, sym_line_comment, sym_block_comment, - [96392] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [98837] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7149), 1, - anon_sym_COLON, - STATE(3585), 2, + ACTIONS(7334), 1, + anon_sym_SEMI, + STATE(3681), 2, sym_line_comment, sym_block_comment, - [96406] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [98851] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7151), 1, + ACTIONS(7336), 1, anon_sym_COLON, - STATE(3586), 2, + STATE(3682), 2, sym_line_comment, sym_block_comment, - [96420] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [98865] = 4, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(7153), 1, - sym_identifier, - STATE(3587), 2, - sym_line_comment, - sym_block_comment, - [96434] = 4, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7155), 1, + ACTIONS(7338), 1, anon_sym_COLON, - STATE(3588), 2, + STATE(3683), 2, sym_line_comment, sym_block_comment, - [96448] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [98879] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7157), 1, + ACTIONS(7340), 1, anon_sym_COLON, - STATE(3589), 2, + STATE(3684), 2, sym_line_comment, sym_block_comment, - [96462] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [98893] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7159), 1, + ACTIONS(7342), 1, anon_sym_COLON, - STATE(3590), 2, + STATE(3685), 2, sym_line_comment, sym_block_comment, - [96476] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [98907] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7161), 1, + ACTIONS(7344), 1, anon_sym_COLON, - STATE(3591), 2, + STATE(3686), 2, sym_line_comment, sym_block_comment, - [96490] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [98921] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7163), 1, + ACTIONS(7346), 1, anon_sym_COLON, - STATE(3592), 2, + STATE(3687), 2, sym_line_comment, sym_block_comment, - [96504] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [98935] = 4, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4499), 1, - anon_sym_fn, - STATE(3593), 2, - sym_line_comment, - sym_block_comment, - [96518] = 4, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7165), 1, - anon_sym_EQ_GT, - STATE(3594), 2, + ACTIONS(7348), 1, + anon_sym_COLON, + STATE(3688), 2, sym_line_comment, sym_block_comment, - [96532] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [98949] = 4, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3979), 1, - sym_identifier, - STATE(3595), 2, - sym_line_comment, - sym_block_comment, - [96546] = 4, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7167), 1, + ACTIONS(7350), 1, sym_identifier, - STATE(3596), 2, + STATE(3689), 2, sym_line_comment, sym_block_comment, - [96560] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [98963] = 4, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(7169), 1, - anon_sym_SEMI, - STATE(3597), 2, - sym_line_comment, - sym_block_comment, - [96574] = 4, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7171), 1, - anon_sym_SEMI, - STATE(3598), 2, + ACTIONS(4581), 1, + anon_sym_fn, + STATE(3690), 2, sym_line_comment, sym_block_comment, - [96588] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [98977] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7173), 1, + ACTIONS(7352), 1, sym_identifier, - STATE(3599), 2, + STATE(3691), 2, sym_line_comment, sym_block_comment, - [96602] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [98991] = 4, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(7175), 1, - anon_sym_fn, - STATE(3600), 2, - sym_line_comment, - sym_block_comment, - [96616] = 4, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7177), 1, - sym_raw_string_literal_content, - STATE(3601), 2, + ACTIONS(7354), 1, + anon_sym_SEMI, + STATE(3692), 2, sym_line_comment, sym_block_comment, - [96630] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [99005] = 4, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(7179), 1, - sym_identifier, - STATE(3602), 2, - sym_line_comment, - sym_block_comment, - [96644] = 4, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7181), 1, + ACTIONS(7356), 1, sym_identifier, - STATE(3603), 2, + STATE(3693), 2, sym_line_comment, sym_block_comment, - [96658] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [99019] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7183), 1, + ACTIONS(7358), 1, sym_identifier, - STATE(3604), 2, + STATE(3694), 2, sym_line_comment, sym_block_comment, - [96672] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [99033] = 4, ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(7185), 1, - anon_sym_EQ_GT, - STATE(3605), 2, - sym_line_comment, - sym_block_comment, - [96686] = 4, - ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6005), 1, + ACTIONS(7360), 1, anon_sym_RBRACE, - STATE(3606), 2, + STATE(3695), 2, sym_line_comment, sym_block_comment, - [96700] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [99047] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7187), 1, + ACTIONS(7362), 1, sym_identifier, - STATE(3607), 2, + STATE(3696), 2, sym_line_comment, sym_block_comment, - [96714] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [99061] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7189), 1, - anon_sym_RPAREN, - STATE(3608), 2, + ACTIONS(7364), 1, + anon_sym_fn, + STATE(3697), 2, sym_line_comment, sym_block_comment, - [96728] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [99075] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5155), 1, - anon_sym_COLON_COLON, - STATE(3609), 2, + ACTIONS(7366), 1, + sym_identifier, + STATE(3698), 2, sym_line_comment, sym_block_comment, - [96742] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [99089] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(915), 1, - anon_sym_RBRACK, - STATE(3610), 2, + ACTIONS(7368), 1, + sym_identifier, + STATE(3699), 2, sym_line_comment, sym_block_comment, - [96756] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [99103] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7191), 1, - sym_identifier, - STATE(3611), 2, + ACTIONS(7370), 1, + anon_sym_EQ_GT, + STATE(3700), 2, sym_line_comment, sym_block_comment, - [96770] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, + [99117] = 4, ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6709), 1, + ACTIONS(7372), 1, anon_sym_SEMI, - STATE(3612), 2, + STATE(3701), 2, sym_line_comment, sym_block_comment, - [96784] = 1, - ACTIONS(7193), 1, + [99131] = 1, + ACTIONS(7374), 1, ts_builtin_sym_end, - [96788] = 1, - ACTIONS(7195), 1, + [99135] = 1, + ACTIONS(7376), 1, ts_builtin_sym_end, - [96792] = 1, - ACTIONS(7197), 1, + [99139] = 1, + ACTIONS(7378), 1, ts_builtin_sym_end, - [96796] = 1, - ACTIONS(7199), 1, + [99143] = 1, + ACTIONS(7380), 1, ts_builtin_sym_end, - [96800] = 1, - ACTIONS(7201), 1, + [99147] = 1, + ACTIONS(7382), 1, ts_builtin_sym_end, - [96804] = 1, - ACTIONS(7203), 1, + [99151] = 1, + ACTIONS(7384), 1, ts_builtin_sym_end, - [96808] = 1, - ACTIONS(7205), 1, + [99155] = 1, + ACTIONS(7386), 1, ts_builtin_sym_end, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(1004)] = 0, - [SMALL_STATE(1005)] = 75, - [SMALL_STATE(1006)] = 150, - [SMALL_STATE(1007)] = 224, - [SMALL_STATE(1008)] = 294, - [SMALL_STATE(1009)] = 363, - [SMALL_STATE(1010)] = 462, - [SMALL_STATE(1011)] = 561, - [SMALL_STATE(1012)] = 638, - [SMALL_STATE(1013)] = 712, - [SMALL_STATE(1014)] = 786, - [SMALL_STATE(1015)] = 860, - [SMALL_STATE(1016)] = 923, - [SMALL_STATE(1017)] = 990, - [SMALL_STATE(1018)] = 1057, - [SMALL_STATE(1019)] = 1120, - [SMALL_STATE(1020)] = 1183, - [SMALL_STATE(1021)] = 1246, - [SMALL_STATE(1022)] = 1317, - [SMALL_STATE(1023)] = 1388, - [SMALL_STATE(1024)] = 1451, - [SMALL_STATE(1025)] = 1518, - [SMALL_STATE(1026)] = 1581, - [SMALL_STATE(1027)] = 1644, - [SMALL_STATE(1028)] = 1707, - [SMALL_STATE(1029)] = 1778, - [SMALL_STATE(1030)] = 1849, - [SMALL_STATE(1031)] = 1912, - [SMALL_STATE(1032)] = 1979, - [SMALL_STATE(1033)] = 2047, - [SMALL_STATE(1034)] = 2109, - [SMALL_STATE(1035)] = 2171, - [SMALL_STATE(1036)] = 2233, - [SMALL_STATE(1037)] = 2295, - [SMALL_STATE(1038)] = 2357, - [SMALL_STATE(1039)] = 2419, - [SMALL_STATE(1040)] = 2481, - [SMALL_STATE(1041)] = 2551, - [SMALL_STATE(1042)] = 2617, - [SMALL_STATE(1043)] = 2679, - [SMALL_STATE(1044)] = 2741, - [SMALL_STATE(1045)] = 2802, - [SMALL_STATE(1046)] = 2867, - [SMALL_STATE(1047)] = 2930, - [SMALL_STATE(1048)] = 2991, - [SMALL_STATE(1049)] = 3052, - [SMALL_STATE(1050)] = 3115, - [SMALL_STATE(1051)] = 3180, - [SMALL_STATE(1052)] = 3243, - [SMALL_STATE(1053)] = 3304, - [SMALL_STATE(1054)] = 3365, - [SMALL_STATE(1055)] = 3470, - [SMALL_STATE(1056)] = 3535, - [SMALL_STATE(1057)] = 3598, - [SMALL_STATE(1058)] = 3659, - [SMALL_STATE(1059)] = 3720, - [SMALL_STATE(1060)] = 3781, - [SMALL_STATE(1061)] = 3844, - [SMALL_STATE(1062)] = 3905, - [SMALL_STATE(1063)] = 4010, - [SMALL_STATE(1064)] = 4071, - [SMALL_STATE(1065)] = 4132, - [SMALL_STATE(1066)] = 4197, - [SMALL_STATE(1067)] = 4258, - [SMALL_STATE(1068)] = 4321, - [SMALL_STATE(1069)] = 4426, - [SMALL_STATE(1070)] = 4489, - [SMALL_STATE(1071)] = 4552, - [SMALL_STATE(1072)] = 4613, - [SMALL_STATE(1073)] = 4674, - [SMALL_STATE(1074)] = 4737, - [SMALL_STATE(1075)] = 4842, - [SMALL_STATE(1076)] = 4903, - [SMALL_STATE(1077)] = 4966, - [SMALL_STATE(1078)] = 5065, - [SMALL_STATE(1079)] = 5128, - [SMALL_STATE(1080)] = 5233, - [SMALL_STATE(1081)] = 5294, - [SMALL_STATE(1082)] = 5355, - [SMALL_STATE(1083)] = 5454, - [SMALL_STATE(1084)] = 5517, - [SMALL_STATE(1085)] = 5622, - [SMALL_STATE(1086)] = 5685, - [SMALL_STATE(1087)] = 5748, - [SMALL_STATE(1088)] = 5811, - [SMALL_STATE(1089)] = 5874, - [SMALL_STATE(1090)] = 5937, - [SMALL_STATE(1091)] = 6000, - [SMALL_STATE(1092)] = 6060, - [SMALL_STATE(1093)] = 6120, - [SMALL_STATE(1094)] = 6180, - [SMALL_STATE(1095)] = 6240, - [SMALL_STATE(1096)] = 6300, - [SMALL_STATE(1097)] = 6360, - [SMALL_STATE(1098)] = 6420, - [SMALL_STATE(1099)] = 6480, - [SMALL_STATE(1100)] = 6540, - [SMALL_STATE(1101)] = 6600, - [SMALL_STATE(1102)] = 6660, - [SMALL_STATE(1103)] = 6720, - [SMALL_STATE(1104)] = 6780, - [SMALL_STATE(1105)] = 6840, - [SMALL_STATE(1106)] = 6900, - [SMALL_STATE(1107)] = 6960, - [SMALL_STATE(1108)] = 7020, - [SMALL_STATE(1109)] = 7080, - [SMALL_STATE(1110)] = 7140, - [SMALL_STATE(1111)] = 7200, - [SMALL_STATE(1112)] = 7260, - [SMALL_STATE(1113)] = 7320, - [SMALL_STATE(1114)] = 7380, - [SMALL_STATE(1115)] = 7440, - [SMALL_STATE(1116)] = 7500, - [SMALL_STATE(1117)] = 7560, - [SMALL_STATE(1118)] = 7620, - [SMALL_STATE(1119)] = 7680, - [SMALL_STATE(1120)] = 7740, - [SMALL_STATE(1121)] = 7800, - [SMALL_STATE(1122)] = 7860, - [SMALL_STATE(1123)] = 7920, - [SMALL_STATE(1124)] = 7980, - [SMALL_STATE(1125)] = 8040, - [SMALL_STATE(1126)] = 8100, - [SMALL_STATE(1127)] = 8160, - [SMALL_STATE(1128)] = 8220, - [SMALL_STATE(1129)] = 8280, - [SMALL_STATE(1130)] = 8340, - [SMALL_STATE(1131)] = 8400, - [SMALL_STATE(1132)] = 8460, - [SMALL_STATE(1133)] = 8520, - [SMALL_STATE(1134)] = 8580, - [SMALL_STATE(1135)] = 8640, - [SMALL_STATE(1136)] = 8700, - [SMALL_STATE(1137)] = 8760, - [SMALL_STATE(1138)] = 8820, - [SMALL_STATE(1139)] = 8880, - [SMALL_STATE(1140)] = 8940, - [SMALL_STATE(1141)] = 9000, - [SMALL_STATE(1142)] = 9060, - [SMALL_STATE(1143)] = 9120, - [SMALL_STATE(1144)] = 9180, - [SMALL_STATE(1145)] = 9240, - [SMALL_STATE(1146)] = 9300, - [SMALL_STATE(1147)] = 9360, - [SMALL_STATE(1148)] = 9420, - [SMALL_STATE(1149)] = 9480, - [SMALL_STATE(1150)] = 9540, - [SMALL_STATE(1151)] = 9600, - [SMALL_STATE(1152)] = 9660, - [SMALL_STATE(1153)] = 9720, - [SMALL_STATE(1154)] = 9780, - [SMALL_STATE(1155)] = 9840, - [SMALL_STATE(1156)] = 9900, - [SMALL_STATE(1157)] = 9960, - [SMALL_STATE(1158)] = 10020, - [SMALL_STATE(1159)] = 10080, - [SMALL_STATE(1160)] = 10140, - [SMALL_STATE(1161)] = 10200, - [SMALL_STATE(1162)] = 10260, - [SMALL_STATE(1163)] = 10320, - [SMALL_STATE(1164)] = 10380, - [SMALL_STATE(1165)] = 10440, - [SMALL_STATE(1166)] = 10500, - [SMALL_STATE(1167)] = 10560, - [SMALL_STATE(1168)] = 10620, - [SMALL_STATE(1169)] = 10680, - [SMALL_STATE(1170)] = 10740, - [SMALL_STATE(1171)] = 10800, - [SMALL_STATE(1172)] = 10860, - [SMALL_STATE(1173)] = 10920, - [SMALL_STATE(1174)] = 10980, - [SMALL_STATE(1175)] = 11040, - [SMALL_STATE(1176)] = 11100, - [SMALL_STATE(1177)] = 11160, - [SMALL_STATE(1178)] = 11220, - [SMALL_STATE(1179)] = 11280, - [SMALL_STATE(1180)] = 11340, - [SMALL_STATE(1181)] = 11400, - [SMALL_STATE(1182)] = 11460, - [SMALL_STATE(1183)] = 11520, - [SMALL_STATE(1184)] = 11580, - [SMALL_STATE(1185)] = 11640, - [SMALL_STATE(1186)] = 11700, - [SMALL_STATE(1187)] = 11760, - [SMALL_STATE(1188)] = 11820, - [SMALL_STATE(1189)] = 11880, - [SMALL_STATE(1190)] = 11940, - [SMALL_STATE(1191)] = 12000, - [SMALL_STATE(1192)] = 12060, - [SMALL_STATE(1193)] = 12120, - [SMALL_STATE(1194)] = 12180, - [SMALL_STATE(1195)] = 12240, - [SMALL_STATE(1196)] = 12300, - [SMALL_STATE(1197)] = 12360, - [SMALL_STATE(1198)] = 12420, - [SMALL_STATE(1199)] = 12480, - [SMALL_STATE(1200)] = 12540, - [SMALL_STATE(1201)] = 12600, - [SMALL_STATE(1202)] = 12660, - [SMALL_STATE(1203)] = 12720, - [SMALL_STATE(1204)] = 12780, - [SMALL_STATE(1205)] = 12840, - [SMALL_STATE(1206)] = 12900, - [SMALL_STATE(1207)] = 12960, - [SMALL_STATE(1208)] = 13020, - [SMALL_STATE(1209)] = 13080, - [SMALL_STATE(1210)] = 13140, - [SMALL_STATE(1211)] = 13200, - [SMALL_STATE(1212)] = 13260, - [SMALL_STATE(1213)] = 13320, - [SMALL_STATE(1214)] = 13380, - [SMALL_STATE(1215)] = 13440, - [SMALL_STATE(1216)] = 13500, - [SMALL_STATE(1217)] = 13592, - [SMALL_STATE(1218)] = 13652, - [SMALL_STATE(1219)] = 13712, - [SMALL_STATE(1220)] = 13772, - [SMALL_STATE(1221)] = 13832, - [SMALL_STATE(1222)] = 13892, - [SMALL_STATE(1223)] = 13952, - [SMALL_STATE(1224)] = 14012, - [SMALL_STATE(1225)] = 14072, - [SMALL_STATE(1226)] = 14132, - [SMALL_STATE(1227)] = 14192, - [SMALL_STATE(1228)] = 14252, - [SMALL_STATE(1229)] = 14312, - [SMALL_STATE(1230)] = 14372, - [SMALL_STATE(1231)] = 14432, - [SMALL_STATE(1232)] = 14492, - [SMALL_STATE(1233)] = 14552, - [SMALL_STATE(1234)] = 14612, - [SMALL_STATE(1235)] = 14672, - [SMALL_STATE(1236)] = 14732, - [SMALL_STATE(1237)] = 14792, - [SMALL_STATE(1238)] = 14852, - [SMALL_STATE(1239)] = 14916, - [SMALL_STATE(1240)] = 14976, - [SMALL_STATE(1241)] = 15036, - [SMALL_STATE(1242)] = 15096, - [SMALL_STATE(1243)] = 15156, - [SMALL_STATE(1244)] = 15218, - [SMALL_STATE(1245)] = 15278, - [SMALL_STATE(1246)] = 15338, - [SMALL_STATE(1247)] = 15398, - [SMALL_STATE(1248)] = 15458, - [SMALL_STATE(1249)] = 15518, - [SMALL_STATE(1250)] = 15578, - [SMALL_STATE(1251)] = 15638, - [SMALL_STATE(1252)] = 15706, - [SMALL_STATE(1253)] = 15766, - [SMALL_STATE(1254)] = 15826, - [SMALL_STATE(1255)] = 15886, - [SMALL_STATE(1256)] = 15946, - [SMALL_STATE(1257)] = 16006, - [SMALL_STATE(1258)] = 16066, - [SMALL_STATE(1259)] = 16126, - [SMALL_STATE(1260)] = 16186, - [SMALL_STATE(1261)] = 16246, - [SMALL_STATE(1262)] = 16306, - [SMALL_STATE(1263)] = 16366, - [SMALL_STATE(1264)] = 16426, - [SMALL_STATE(1265)] = 16486, - [SMALL_STATE(1266)] = 16546, - [SMALL_STATE(1267)] = 16606, - [SMALL_STATE(1268)] = 16666, - [SMALL_STATE(1269)] = 16726, - [SMALL_STATE(1270)] = 16786, - [SMALL_STATE(1271)] = 16846, - [SMALL_STATE(1272)] = 16906, - [SMALL_STATE(1273)] = 16966, - [SMALL_STATE(1274)] = 17026, - [SMALL_STATE(1275)] = 17086, - [SMALL_STATE(1276)] = 17146, - [SMALL_STATE(1277)] = 17206, - [SMALL_STATE(1278)] = 17266, - [SMALL_STATE(1279)] = 17326, - [SMALL_STATE(1280)] = 17386, - [SMALL_STATE(1281)] = 17446, - [SMALL_STATE(1282)] = 17506, - [SMALL_STATE(1283)] = 17566, - [SMALL_STATE(1284)] = 17626, - [SMALL_STATE(1285)] = 17686, - [SMALL_STATE(1286)] = 17746, - [SMALL_STATE(1287)] = 17806, - [SMALL_STATE(1288)] = 17866, - [SMALL_STATE(1289)] = 17928, - [SMALL_STATE(1290)] = 17988, - [SMALL_STATE(1291)] = 18048, - [SMALL_STATE(1292)] = 18108, - [SMALL_STATE(1293)] = 18168, - [SMALL_STATE(1294)] = 18228, - [SMALL_STATE(1295)] = 18288, - [SMALL_STATE(1296)] = 18348, - [SMALL_STATE(1297)] = 18408, - [SMALL_STATE(1298)] = 18468, - [SMALL_STATE(1299)] = 18528, - [SMALL_STATE(1300)] = 18588, - [SMALL_STATE(1301)] = 18648, - [SMALL_STATE(1302)] = 18708, - [SMALL_STATE(1303)] = 18768, - [SMALL_STATE(1304)] = 18860, - [SMALL_STATE(1305)] = 18920, - [SMALL_STATE(1306)] = 18980, - [SMALL_STATE(1307)] = 19040, - [SMALL_STATE(1308)] = 19100, - [SMALL_STATE(1309)] = 19160, - [SMALL_STATE(1310)] = 19220, - [SMALL_STATE(1311)] = 19280, - [SMALL_STATE(1312)] = 19340, - [SMALL_STATE(1313)] = 19400, - [SMALL_STATE(1314)] = 19460, - [SMALL_STATE(1315)] = 19520, - [SMALL_STATE(1316)] = 19580, - [SMALL_STATE(1317)] = 19640, - [SMALL_STATE(1318)] = 19700, - [SMALL_STATE(1319)] = 19760, - [SMALL_STATE(1320)] = 19820, - [SMALL_STATE(1321)] = 19880, - [SMALL_STATE(1322)] = 19940, - [SMALL_STATE(1323)] = 20000, - [SMALL_STATE(1324)] = 20066, - [SMALL_STATE(1325)] = 20126, - [SMALL_STATE(1326)] = 20186, - [SMALL_STATE(1327)] = 20246, - [SMALL_STATE(1328)] = 20306, - [SMALL_STATE(1329)] = 20366, - [SMALL_STATE(1330)] = 20426, - [SMALL_STATE(1331)] = 20486, - [SMALL_STATE(1332)] = 20546, - [SMALL_STATE(1333)] = 20606, - [SMALL_STATE(1334)] = 20666, - [SMALL_STATE(1335)] = 20726, - [SMALL_STATE(1336)] = 20786, - [SMALL_STATE(1337)] = 20846, - [SMALL_STATE(1338)] = 20912, - [SMALL_STATE(1339)] = 20972, - [SMALL_STATE(1340)] = 21032, - [SMALL_STATE(1341)] = 21092, - [SMALL_STATE(1342)] = 21152, - [SMALL_STATE(1343)] = 21212, - [SMALL_STATE(1344)] = 21272, - [SMALL_STATE(1345)] = 21332, - [SMALL_STATE(1346)] = 21392, - [SMALL_STATE(1347)] = 21452, - [SMALL_STATE(1348)] = 21512, - [SMALL_STATE(1349)] = 21572, - [SMALL_STATE(1350)] = 21632, - [SMALL_STATE(1351)] = 21692, - [SMALL_STATE(1352)] = 21752, - [SMALL_STATE(1353)] = 21812, - [SMALL_STATE(1354)] = 21878, - [SMALL_STATE(1355)] = 21938, - [SMALL_STATE(1356)] = 21998, - [SMALL_STATE(1357)] = 22058, - [SMALL_STATE(1358)] = 22118, - [SMALL_STATE(1359)] = 22178, - [SMALL_STATE(1360)] = 22238, - [SMALL_STATE(1361)] = 22298, - [SMALL_STATE(1362)] = 22358, - [SMALL_STATE(1363)] = 22418, - [SMALL_STATE(1364)] = 22478, - [SMALL_STATE(1365)] = 22538, - [SMALL_STATE(1366)] = 22598, - [SMALL_STATE(1367)] = 22658, - [SMALL_STATE(1368)] = 22718, - [SMALL_STATE(1369)] = 22778, - [SMALL_STATE(1370)] = 22838, - [SMALL_STATE(1371)] = 22898, - [SMALL_STATE(1372)] = 22958, - [SMALL_STATE(1373)] = 23018, - [SMALL_STATE(1374)] = 23078, - [SMALL_STATE(1375)] = 23138, - [SMALL_STATE(1376)] = 23198, - [SMALL_STATE(1377)] = 23258, - [SMALL_STATE(1378)] = 23320, - [SMALL_STATE(1379)] = 23380, - [SMALL_STATE(1380)] = 23440, - [SMALL_STATE(1381)] = 23500, - [SMALL_STATE(1382)] = 23560, - [SMALL_STATE(1383)] = 23620, - [SMALL_STATE(1384)] = 23680, - [SMALL_STATE(1385)] = 23740, - [SMALL_STATE(1386)] = 23800, - [SMALL_STATE(1387)] = 23860, - [SMALL_STATE(1388)] = 23920, - [SMALL_STATE(1389)] = 23980, - [SMALL_STATE(1390)] = 24040, - [SMALL_STATE(1391)] = 24100, - [SMALL_STATE(1392)] = 24160, - [SMALL_STATE(1393)] = 24220, - [SMALL_STATE(1394)] = 24284, - [SMALL_STATE(1395)] = 24344, - [SMALL_STATE(1396)] = 24404, - [SMALL_STATE(1397)] = 24464, - [SMALL_STATE(1398)] = 24524, - [SMALL_STATE(1399)] = 24584, - [SMALL_STATE(1400)] = 24644, - [SMALL_STATE(1401)] = 24704, - [SMALL_STATE(1402)] = 24764, - [SMALL_STATE(1403)] = 24824, - [SMALL_STATE(1404)] = 24884, - [SMALL_STATE(1405)] = 24944, - [SMALL_STATE(1406)] = 25004, - [SMALL_STATE(1407)] = 25064, - [SMALL_STATE(1408)] = 25124, - [SMALL_STATE(1409)] = 25184, - [SMALL_STATE(1410)] = 25244, - [SMALL_STATE(1411)] = 25304, - [SMALL_STATE(1412)] = 25364, - [SMALL_STATE(1413)] = 25424, - [SMALL_STATE(1414)] = 25484, - [SMALL_STATE(1415)] = 25544, - [SMALL_STATE(1416)] = 25604, - [SMALL_STATE(1417)] = 25664, - [SMALL_STATE(1418)] = 25724, - [SMALL_STATE(1419)] = 25784, - [SMALL_STATE(1420)] = 25846, - [SMALL_STATE(1421)] = 25906, - [SMALL_STATE(1422)] = 25966, - [SMALL_STATE(1423)] = 26026, - [SMALL_STATE(1424)] = 26086, - [SMALL_STATE(1425)] = 26146, - [SMALL_STATE(1426)] = 26206, - [SMALL_STATE(1427)] = 26266, - [SMALL_STATE(1428)] = 26326, - [SMALL_STATE(1429)] = 26386, - [SMALL_STATE(1430)] = 26446, - [SMALL_STATE(1431)] = 26506, - [SMALL_STATE(1432)] = 26566, - [SMALL_STATE(1433)] = 26626, - [SMALL_STATE(1434)] = 26686, - [SMALL_STATE(1435)] = 26746, - [SMALL_STATE(1436)] = 26806, - [SMALL_STATE(1437)] = 26866, - [SMALL_STATE(1438)] = 26926, - [SMALL_STATE(1439)] = 26986, - [SMALL_STATE(1440)] = 27046, - [SMALL_STATE(1441)] = 27106, - [SMALL_STATE(1442)] = 27166, - [SMALL_STATE(1443)] = 27226, - [SMALL_STATE(1444)] = 27286, - [SMALL_STATE(1445)] = 27346, - [SMALL_STATE(1446)] = 27406, - [SMALL_STATE(1447)] = 27466, - [SMALL_STATE(1448)] = 27526, - [SMALL_STATE(1449)] = 27586, - [SMALL_STATE(1450)] = 27646, - [SMALL_STATE(1451)] = 27706, - [SMALL_STATE(1452)] = 27766, - [SMALL_STATE(1453)] = 27826, - [SMALL_STATE(1454)] = 27886, - [SMALL_STATE(1455)] = 27946, - [SMALL_STATE(1456)] = 28006, - [SMALL_STATE(1457)] = 28066, - [SMALL_STATE(1458)] = 28126, - [SMALL_STATE(1459)] = 28186, - [SMALL_STATE(1460)] = 28246, - [SMALL_STATE(1461)] = 28306, - [SMALL_STATE(1462)] = 28366, - [SMALL_STATE(1463)] = 28426, - [SMALL_STATE(1464)] = 28486, - [SMALL_STATE(1465)] = 28546, - [SMALL_STATE(1466)] = 28606, - [SMALL_STATE(1467)] = 28666, - [SMALL_STATE(1468)] = 28726, - [SMALL_STATE(1469)] = 28786, - [SMALL_STATE(1470)] = 28846, - [SMALL_STATE(1471)] = 28906, - [SMALL_STATE(1472)] = 28965, - [SMALL_STATE(1473)] = 29024, - [SMALL_STATE(1474)] = 29083, - [SMALL_STATE(1475)] = 29142, - [SMALL_STATE(1476)] = 29203, - [SMALL_STATE(1477)] = 29262, - [SMALL_STATE(1478)] = 29321, - [SMALL_STATE(1479)] = 29382, - [SMALL_STATE(1480)] = 29441, - [SMALL_STATE(1481)] = 29536, - [SMALL_STATE(1482)] = 29631, - [SMALL_STATE(1483)] = 29717, - [SMALL_STATE(1484)] = 29807, - [SMALL_STATE(1485)] = 29873, - [SMALL_STATE(1486)] = 29947, - [SMALL_STATE(1487)] = 30019, - [SMALL_STATE(1488)] = 30111, - [SMALL_STATE(1489)] = 30187, - [SMALL_STATE(1490)] = 30277, - [SMALL_STATE(1491)] = 30359, - [SMALL_STATE(1492)] = 30457, - [SMALL_STATE(1493)] = 30527, - [SMALL_STATE(1494)] = 30613, - [SMALL_STATE(1495)] = 30703, - [SMALL_STATE(1496)] = 30771, - [SMALL_STATE(1497)] = 30863, - [SMALL_STATE(1498)] = 30941, - [SMALL_STATE(1499)] = 31039, - [SMALL_STATE(1500)] = 31129, - [SMALL_STATE(1501)] = 31213, - [SMALL_STATE(1502)] = 31283, - [SMALL_STATE(1503)] = 31373, - [SMALL_STATE(1504)] = 31463, - [SMALL_STATE(1505)] = 31561, - [SMALL_STATE(1506)] = 31653, - [SMALL_STATE(1507)] = 31720, - [SMALL_STATE(1508)] = 31785, - [SMALL_STATE(1509)] = 31852, - [SMALL_STATE(1510)] = 31915, - [SMALL_STATE(1511)] = 32000, - [SMALL_STATE(1512)] = 32063, - [SMALL_STATE(1513)] = 32148, - [SMALL_STATE(1514)] = 32215, - [SMALL_STATE(1515)] = 32300, - [SMALL_STATE(1516)] = 32385, - [SMALL_STATE(1517)] = 32441, - [SMALL_STATE(1518)] = 32499, - [SMALL_STATE(1519)] = 32557, - [SMALL_STATE(1520)] = 32617, - [SMALL_STATE(1521)] = 32681, - [SMALL_STATE(1522)] = 32737, - [SMALL_STATE(1523)] = 32795, - [SMALL_STATE(1524)] = 32851, - [SMALL_STATE(1525)] = 32909, - [SMALL_STATE(1526)] = 32965, - [SMALL_STATE(1527)] = 33029, - [SMALL_STATE(1528)] = 33089, - [SMALL_STATE(1529)] = 33145, - [SMALL_STATE(1530)] = 33205, - [SMALL_STATE(1531)] = 33269, - [SMALL_STATE(1532)] = 33327, - [SMALL_STATE(1533)] = 33391, - [SMALL_STATE(1534)] = 33451, - [SMALL_STATE(1535)] = 33511, - [SMALL_STATE(1536)] = 33571, - [SMALL_STATE(1537)] = 33627, - [SMALL_STATE(1538)] = 33687, - [SMALL_STATE(1539)] = 33745, - [SMALL_STATE(1540)] = 33801, - [SMALL_STATE(1541)] = 33857, - [SMALL_STATE(1542)] = 33913, - [SMALL_STATE(1543)] = 33970, - [SMALL_STATE(1544)] = 34065, - [SMALL_STATE(1545)] = 34124, - [SMALL_STATE(1546)] = 34179, - [SMALL_STATE(1547)] = 34238, - [SMALL_STATE(1548)] = 34293, - [SMALL_STATE(1549)] = 34352, - [SMALL_STATE(1550)] = 34447, - [SMALL_STATE(1551)] = 34502, - [SMALL_STATE(1552)] = 34597, - [SMALL_STATE(1553)] = 34654, - [SMALL_STATE(1554)] = 34711, - [SMALL_STATE(1555)] = 34770, - [SMALL_STATE(1556)] = 34865, - [SMALL_STATE(1557)] = 34920, - [SMALL_STATE(1558)] = 34975, - [SMALL_STATE(1559)] = 35032, - [SMALL_STATE(1560)] = 35087, - [SMALL_STATE(1561)] = 35182, - [SMALL_STATE(1562)] = 35237, - [SMALL_STATE(1563)] = 35332, - [SMALL_STATE(1564)] = 35427, - [SMALL_STATE(1565)] = 35482, - [SMALL_STATE(1566)] = 35539, - [SMALL_STATE(1567)] = 35634, - [SMALL_STATE(1568)] = 35729, - [SMALL_STATE(1569)] = 35786, - [SMALL_STATE(1570)] = 35881, - [SMALL_STATE(1571)] = 35938, - [SMALL_STATE(1572)] = 36033, - [SMALL_STATE(1573)] = 36128, - [SMALL_STATE(1574)] = 36216, - [SMALL_STATE(1575)] = 36308, - [SMALL_STATE(1576)] = 36394, - [SMALL_STATE(1577)] = 36486, - [SMALL_STATE(1578)] = 36572, - [SMALL_STATE(1579)] = 36664, - [SMALL_STATE(1580)] = 36746, - [SMALL_STATE(1581)] = 36814, - [SMALL_STATE(1582)] = 36868, - [SMALL_STATE(1583)] = 36922, - [SMALL_STATE(1584)] = 36976, - [SMALL_STATE(1585)] = 37030, - [SMALL_STATE(1586)] = 37118, - [SMALL_STATE(1587)] = 37172, - [SMALL_STATE(1588)] = 37226, - [SMALL_STATE(1589)] = 37298, - [SMALL_STATE(1590)] = 37390, - [SMALL_STATE(1591)] = 37468, - [SMALL_STATE(1592)] = 37524, - [SMALL_STATE(1593)] = 37612, - [SMALL_STATE(1594)] = 37692, - [SMALL_STATE(1595)] = 37748, - [SMALL_STATE(1596)] = 37802, - [SMALL_STATE(1597)] = 37858, - [SMALL_STATE(1598)] = 37914, - [SMALL_STATE(1599)] = 37970, - [SMALL_STATE(1600)] = 38024, - [SMALL_STATE(1601)] = 38080, - [SMALL_STATE(1602)] = 38166, - [SMALL_STATE(1603)] = 38222, - [SMALL_STATE(1604)] = 38276, - [SMALL_STATE(1605)] = 38334, - [SMALL_STATE(1606)] = 38388, - [SMALL_STATE(1607)] = 38454, - [SMALL_STATE(1608)] = 38542, - [SMALL_STATE(1609)] = 38598, - [SMALL_STATE(1610)] = 38652, - [SMALL_STATE(1611)] = 38740, - [SMALL_STATE(1612)] = 38794, - [SMALL_STATE(1613)] = 38850, - [SMALL_STATE(1614)] = 38938, - [SMALL_STATE(1615)] = 38994, - [SMALL_STATE(1616)] = 39080, - [SMALL_STATE(1617)] = 39166, - [SMALL_STATE(1618)] = 39220, - [SMALL_STATE(1619)] = 39308, - [SMALL_STATE(1620)] = 39382, - [SMALL_STATE(1621)] = 39438, - [SMALL_STATE(1622)] = 39492, - [SMALL_STATE(1623)] = 39548, - [SMALL_STATE(1624)] = 39604, - [SMALL_STATE(1625)] = 39658, - [SMALL_STATE(1626)] = 39744, - [SMALL_STATE(1627)] = 39800, - [SMALL_STATE(1628)] = 39882, - [SMALL_STATE(1629)] = 39974, - [SMALL_STATE(1630)] = 40038, - [SMALL_STATE(1631)] = 40108, - [SMALL_STATE(1632)] = 40162, - [SMALL_STATE(1633)] = 40254, - [SMALL_STATE(1634)] = 40310, - [SMALL_STATE(1635)] = 40398, - [SMALL_STATE(1636)] = 40454, - [SMALL_STATE(1637)] = 40543, - [SMALL_STATE(1638)] = 40596, - [SMALL_STATE(1639)] = 40681, - [SMALL_STATE(1640)] = 40734, - [SMALL_STATE(1641)] = 40787, - [SMALL_STATE(1642)] = 40840, - [SMALL_STATE(1643)] = 40893, - [SMALL_STATE(1644)] = 40952, - [SMALL_STATE(1645)] = 41011, - [SMALL_STATE(1646)] = 41092, - [SMALL_STATE(1647)] = 41177, - [SMALL_STATE(1648)] = 41230, - [SMALL_STATE(1649)] = 41315, - [SMALL_STATE(1650)] = 41400, - [SMALL_STATE(1651)] = 41453, - [SMALL_STATE(1652)] = 41506, - [SMALL_STATE(1653)] = 41559, - [SMALL_STATE(1654)] = 41612, - [SMALL_STATE(1655)] = 41701, - [SMALL_STATE(1656)] = 41754, - [SMALL_STATE(1657)] = 41807, - [SMALL_STATE(1658)] = 41860, - [SMALL_STATE(1659)] = 41913, - [SMALL_STATE(1660)] = 41972, - [SMALL_STATE(1661)] = 42061, - [SMALL_STATE(1662)] = 42114, - [SMALL_STATE(1663)] = 42167, - [SMALL_STATE(1664)] = 42220, - [SMALL_STATE(1665)] = 42273, - [SMALL_STATE(1666)] = 42334, - [SMALL_STATE(1667)] = 42387, - [SMALL_STATE(1668)] = 42440, - [SMALL_STATE(1669)] = 42493, - [SMALL_STATE(1670)] = 42546, - [SMALL_STATE(1671)] = 42599, - [SMALL_STATE(1672)] = 42686, - [SMALL_STATE(1673)] = 42739, - [SMALL_STATE(1674)] = 42792, - [SMALL_STATE(1675)] = 42881, - [SMALL_STATE(1676)] = 42934, - [SMALL_STATE(1677)] = 42987, - [SMALL_STATE(1678)] = 43040, - [SMALL_STATE(1679)] = 43093, - [SMALL_STATE(1680)] = 43146, - [SMALL_STATE(1681)] = 43199, - [SMALL_STATE(1682)] = 43252, - [SMALL_STATE(1683)] = 43341, - [SMALL_STATE(1684)] = 43394, - [SMALL_STATE(1685)] = 43447, - [SMALL_STATE(1686)] = 43500, - [SMALL_STATE(1687)] = 43553, - [SMALL_STATE(1688)] = 43606, - [SMALL_STATE(1689)] = 43659, - [SMALL_STATE(1690)] = 43712, - [SMALL_STATE(1691)] = 43797, - [SMALL_STATE(1692)] = 43850, - [SMALL_STATE(1693)] = 43903, - [SMALL_STATE(1694)] = 43956, - [SMALL_STATE(1695)] = 44009, - [SMALL_STATE(1696)] = 44098, - [SMALL_STATE(1697)] = 44151, - [SMALL_STATE(1698)] = 44238, - [SMALL_STATE(1699)] = 44325, - [SMALL_STATE(1700)] = 44412, - [SMALL_STATE(1701)] = 44465, - [SMALL_STATE(1702)] = 44518, - [SMALL_STATE(1703)] = 44607, - [SMALL_STATE(1704)] = 44694, - [SMALL_STATE(1705)] = 44783, - [SMALL_STATE(1706)] = 44836, - [SMALL_STATE(1707)] = 44889, - [SMALL_STATE(1708)] = 44942, - [SMALL_STATE(1709)] = 44995, - [SMALL_STATE(1710)] = 45048, - [SMALL_STATE(1711)] = 45133, - [SMALL_STATE(1712)] = 45220, - [SMALL_STATE(1713)] = 45283, - [SMALL_STATE(1714)] = 45352, - [SMALL_STATE(1715)] = 45419, - [SMALL_STATE(1716)] = 45490, - [SMALL_STATE(1717)] = 45567, - [SMALL_STATE(1718)] = 45646, - [SMALL_STATE(1719)] = 45711, - [SMALL_STATE(1720)] = 45796, - [SMALL_STATE(1721)] = 45881, - [SMALL_STATE(1722)] = 45954, - [SMALL_STATE(1723)] = 46035, - [SMALL_STATE(1724)] = 46088, - [SMALL_STATE(1725)] = 46141, - [SMALL_STATE(1726)] = 46194, - [SMALL_STATE(1727)] = 46247, - [SMALL_STATE(1728)] = 46334, - [SMALL_STATE(1729)] = 46387, - [SMALL_STATE(1730)] = 46440, - [SMALL_STATE(1731)] = 46493, - [SMALL_STATE(1732)] = 46546, - [SMALL_STATE(1733)] = 46599, - [SMALL_STATE(1734)] = 46686, - [SMALL_STATE(1735)] = 46739, - [SMALL_STATE(1736)] = 46792, - [SMALL_STATE(1737)] = 46845, - [SMALL_STATE(1738)] = 46898, - [SMALL_STATE(1739)] = 46951, - [SMALL_STATE(1740)] = 47004, - [SMALL_STATE(1741)] = 47093, - [SMALL_STATE(1742)] = 47146, - [SMALL_STATE(1743)] = 47199, - [SMALL_STATE(1744)] = 47252, - [SMALL_STATE(1745)] = 47305, - [SMALL_STATE(1746)] = 47358, - [SMALL_STATE(1747)] = 47445, - [SMALL_STATE(1748)] = 47498, - [SMALL_STATE(1749)] = 47587, - [SMALL_STATE(1750)] = 47672, - [SMALL_STATE(1751)] = 47725, - [SMALL_STATE(1752)] = 47812, - [SMALL_STATE(1753)] = 47865, - [SMALL_STATE(1754)] = 47928, - [SMALL_STATE(1755)] = 47997, - [SMALL_STATE(1756)] = 48064, - [SMALL_STATE(1757)] = 48135, - [SMALL_STATE(1758)] = 48212, - [SMALL_STATE(1759)] = 48291, - [SMALL_STATE(1760)] = 48356, - [SMALL_STATE(1761)] = 48441, - [SMALL_STATE(1762)] = 48526, - [SMALL_STATE(1763)] = 48599, - [SMALL_STATE(1764)] = 48680, - [SMALL_STATE(1765)] = 48733, - [SMALL_STATE(1766)] = 48786, - [SMALL_STATE(1767)] = 48839, - [SMALL_STATE(1768)] = 48892, - [SMALL_STATE(1769)] = 48979, - [SMALL_STATE(1770)] = 49032, - [SMALL_STATE(1771)] = 49085, - [SMALL_STATE(1772)] = 49138, - [SMALL_STATE(1773)] = 49191, - [SMALL_STATE(1774)] = 49244, - [SMALL_STATE(1775)] = 49297, - [SMALL_STATE(1776)] = 49350, - [SMALL_STATE(1777)] = 49403, - [SMALL_STATE(1778)] = 49456, - [SMALL_STATE(1779)] = 49509, - [SMALL_STATE(1780)] = 49562, - [SMALL_STATE(1781)] = 49615, - [SMALL_STATE(1782)] = 49668, - [SMALL_STATE(1783)] = 49757, - [SMALL_STATE(1784)] = 49844, - [SMALL_STATE(1785)] = 49897, - [SMALL_STATE(1786)] = 49950, - [SMALL_STATE(1787)] = 50039, - [SMALL_STATE(1788)] = 50126, - [SMALL_STATE(1789)] = 50179, - [SMALL_STATE(1790)] = 50232, - [SMALL_STATE(1791)] = 50319, - [SMALL_STATE(1792)] = 50372, - [SMALL_STATE(1793)] = 50425, - [SMALL_STATE(1794)] = 50514, - [SMALL_STATE(1795)] = 50603, - [SMALL_STATE(1796)] = 50682, - [SMALL_STATE(1797)] = 50771, - [SMALL_STATE(1798)] = 50860, - [SMALL_STATE(1799)] = 50947, - [SMALL_STATE(1800)] = 51034, - [SMALL_STATE(1801)] = 51123, - [SMALL_STATE(1802)] = 51212, - [SMALL_STATE(1803)] = 51301, - [SMALL_STATE(1804)] = 51390, - [SMALL_STATE(1805)] = 51479, - [SMALL_STATE(1806)] = 51568, - [SMALL_STATE(1807)] = 51657, - [SMALL_STATE(1808)] = 51746, - [SMALL_STATE(1809)] = 51835, - [SMALL_STATE(1810)] = 51924, - [SMALL_STATE(1811)] = 52013, - [SMALL_STATE(1812)] = 52094, - [SMALL_STATE(1813)] = 52179, - [SMALL_STATE(1814)] = 52268, - [SMALL_STATE(1815)] = 52353, - [SMALL_STATE(1816)] = 52438, - [SMALL_STATE(1817)] = 52527, - [SMALL_STATE(1818)] = 52614, - [SMALL_STATE(1819)] = 52701, - [SMALL_STATE(1820)] = 52790, - [SMALL_STATE(1821)] = 52879, - [SMALL_STATE(1822)] = 52968, - [SMALL_STATE(1823)] = 53057, - [SMALL_STATE(1824)] = 53146, - [SMALL_STATE(1825)] = 53235, - [SMALL_STATE(1826)] = 53324, - [SMALL_STATE(1827)] = 53413, - [SMALL_STATE(1828)] = 53502, - [SMALL_STATE(1829)] = 53591, - [SMALL_STATE(1830)] = 53680, - [SMALL_STATE(1831)] = 53769, - [SMALL_STATE(1832)] = 53858, - [SMALL_STATE(1833)] = 53947, - [SMALL_STATE(1834)] = 54036, - [SMALL_STATE(1835)] = 54125, - [SMALL_STATE(1836)] = 54214, - [SMALL_STATE(1837)] = 54303, - [SMALL_STATE(1838)] = 54392, - [SMALL_STATE(1839)] = 54481, - [SMALL_STATE(1840)] = 54568, - [SMALL_STATE(1841)] = 54657, - [SMALL_STATE(1842)] = 54710, - [SMALL_STATE(1843)] = 54796, - [SMALL_STATE(1844)] = 54882, - [SMALL_STATE(1845)] = 54968, - [SMALL_STATE(1846)] = 55054, - [SMALL_STATE(1847)] = 55130, - [SMALL_STATE(1848)] = 55214, - [SMALL_STATE(1849)] = 55300, - [SMALL_STATE(1850)] = 55386, - [SMALL_STATE(1851)] = 55472, - [SMALL_STATE(1852)] = 55558, - [SMALL_STATE(1853)] = 55644, - [SMALL_STATE(1854)] = 55730, - [SMALL_STATE(1855)] = 55816, - [SMALL_STATE(1856)] = 55902, - [SMALL_STATE(1857)] = 55988, - [SMALL_STATE(1858)] = 56074, - [SMALL_STATE(1859)] = 56160, - [SMALL_STATE(1860)] = 56246, - [SMALL_STATE(1861)] = 56332, - [SMALL_STATE(1862)] = 56418, - [SMALL_STATE(1863)] = 56504, - [SMALL_STATE(1864)] = 56590, - [SMALL_STATE(1865)] = 56676, - [SMALL_STATE(1866)] = 56760, - [SMALL_STATE(1867)] = 56846, - [SMALL_STATE(1868)] = 56932, - [SMALL_STATE(1869)] = 57018, - [SMALL_STATE(1870)] = 57104, - [SMALL_STATE(1871)] = 57190, - [SMALL_STATE(1872)] = 57276, - [SMALL_STATE(1873)] = 57362, - [SMALL_STATE(1874)] = 57448, - [SMALL_STATE(1875)] = 57524, - [SMALL_STATE(1876)] = 57610, - [SMALL_STATE(1877)] = 57683, - [SMALL_STATE(1878)] = 57756, - [SMALL_STATE(1879)] = 57829, - [SMALL_STATE(1880)] = 57902, - [SMALL_STATE(1881)] = 57975, - [SMALL_STATE(1882)] = 58049, - [SMALL_STATE(1883)] = 58123, - [SMALL_STATE(1884)] = 58197, - [SMALL_STATE(1885)] = 58271, - [SMALL_STATE(1886)] = 58345, - [SMALL_STATE(1887)] = 58419, - [SMALL_STATE(1888)] = 58493, - [SMALL_STATE(1889)] = 58567, - [SMALL_STATE(1890)] = 58613, - [SMALL_STATE(1891)] = 58659, - [SMALL_STATE(1892)] = 58705, - [SMALL_STATE(1893)] = 58766, - [SMALL_STATE(1894)] = 58827, - [SMALL_STATE(1895)] = 58888, - [SMALL_STATE(1896)] = 58949, - [SMALL_STATE(1897)] = 59010, - [SMALL_STATE(1898)] = 59071, - [SMALL_STATE(1899)] = 59132, - [SMALL_STATE(1900)] = 59193, - [SMALL_STATE(1901)] = 59251, - [SMALL_STATE(1902)] = 59309, - [SMALL_STATE(1903)] = 59345, - [SMALL_STATE(1904)] = 59393, - [SMALL_STATE(1905)] = 59429, - [SMALL_STATE(1906)] = 59474, - [SMALL_STATE(1907)] = 59511, - [SMALL_STATE(1908)] = 59556, - [SMALL_STATE(1909)] = 59593, - [SMALL_STATE(1910)] = 59630, - [SMALL_STATE(1911)] = 59683, - [SMALL_STATE(1912)] = 59728, - [SMALL_STATE(1913)] = 59765, - [SMALL_STATE(1914)] = 59801, - [SMALL_STATE(1915)] = 59841, - [SMALL_STATE(1916)] = 59877, - [SMALL_STATE(1917)] = 59917, - [SMALL_STATE(1918)] = 59957, - [SMALL_STATE(1919)] = 59993, - [SMALL_STATE(1920)] = 60029, - [SMALL_STATE(1921)] = 60069, - [SMALL_STATE(1922)] = 60102, - [SMALL_STATE(1923)] = 60135, - [SMALL_STATE(1924)] = 60168, - [SMALL_STATE(1925)] = 60201, - [SMALL_STATE(1926)] = 60234, - [SMALL_STATE(1927)] = 60265, - [SMALL_STATE(1928)] = 60298, - [SMALL_STATE(1929)] = 60331, - [SMALL_STATE(1930)] = 60364, - [SMALL_STATE(1931)] = 60396, - [SMALL_STATE(1932)] = 60428, - [SMALL_STATE(1933)] = 60488, - [SMALL_STATE(1934)] = 60520, - [SMALL_STATE(1935)] = 60580, - [SMALL_STATE(1936)] = 60624, - [SMALL_STATE(1937)] = 60670, - [SMALL_STATE(1938)] = 60713, - [SMALL_STATE(1939)] = 60746, - [SMALL_STATE(1940)] = 60775, - [SMALL_STATE(1941)] = 60808, - [SMALL_STATE(1942)] = 60839, - [SMALL_STATE(1943)] = 60894, - [SMALL_STATE(1944)] = 60923, - [SMALL_STATE(1945)] = 60956, - [SMALL_STATE(1946)] = 60987, - [SMALL_STATE(1947)] = 61016, - [SMALL_STATE(1948)] = 61047, - [SMALL_STATE(1949)] = 61078, - [SMALL_STATE(1950)] = 61111, - [SMALL_STATE(1951)] = 61140, - [SMALL_STATE(1952)] = 61173, - [SMALL_STATE(1953)] = 61206, - [SMALL_STATE(1954)] = 61235, - [SMALL_STATE(1955)] = 61264, - [SMALL_STATE(1956)] = 61317, - [SMALL_STATE(1957)] = 61346, - [SMALL_STATE(1958)] = 61375, - [SMALL_STATE(1959)] = 61428, - [SMALL_STATE(1960)] = 61457, - [SMALL_STATE(1961)] = 61488, - [SMALL_STATE(1962)] = 61529, - [SMALL_STATE(1963)] = 61560, - [SMALL_STATE(1964)] = 61591, - [SMALL_STATE(1965)] = 61622, - [SMALL_STATE(1966)] = 61650, - [SMALL_STATE(1967)] = 61678, - [SMALL_STATE(1968)] = 61706, - [SMALL_STATE(1969)] = 61734, - [SMALL_STATE(1970)] = 61762, - [SMALL_STATE(1971)] = 61790, - [SMALL_STATE(1972)] = 61818, - [SMALL_STATE(1973)] = 61846, - [SMALL_STATE(1974)] = 61874, - [SMALL_STATE(1975)] = 61902, - [SMALL_STATE(1976)] = 61930, - [SMALL_STATE(1977)] = 61958, - [SMALL_STATE(1978)] = 61986, - [SMALL_STATE(1979)] = 62014, - [SMALL_STATE(1980)] = 62042, - [SMALL_STATE(1981)] = 62070, - [SMALL_STATE(1982)] = 62114, - [SMALL_STATE(1983)] = 62144, - [SMALL_STATE(1984)] = 62172, - [SMALL_STATE(1985)] = 62200, - [SMALL_STATE(1986)] = 62228, - [SMALL_STATE(1987)] = 62256, - [SMALL_STATE(1988)] = 62286, - [SMALL_STATE(1989)] = 62314, - [SMALL_STATE(1990)] = 62342, - [SMALL_STATE(1991)] = 62370, - [SMALL_STATE(1992)] = 62398, - [SMALL_STATE(1993)] = 62426, - [SMALL_STATE(1994)] = 62454, - [SMALL_STATE(1995)] = 62482, - [SMALL_STATE(1996)] = 62510, - [SMALL_STATE(1997)] = 62538, - [SMALL_STATE(1998)] = 62567, - [SMALL_STATE(1999)] = 62598, - [SMALL_STATE(2000)] = 62633, - [SMALL_STATE(2001)] = 62684, - [SMALL_STATE(2002)] = 62713, - [SMALL_STATE(2003)] = 62745, - [SMALL_STATE(2004)] = 62777, - [SMALL_STATE(2005)] = 62805, - [SMALL_STATE(2006)] = 62835, - [SMALL_STATE(2007)] = 62867, - [SMALL_STATE(2008)] = 62911, - [SMALL_STATE(2009)] = 62943, - [SMALL_STATE(2010)] = 62975, - [SMALL_STATE(2011)] = 63007, - [SMALL_STATE(2012)] = 63035, - [SMALL_STATE(2013)] = 63067, - [SMALL_STATE(2014)] = 63099, - [SMALL_STATE(2015)] = 63131, - [SMALL_STATE(2016)] = 63163, - [SMALL_STATE(2017)] = 63195, - [SMALL_STATE(2018)] = 63227, - [SMALL_STATE(2019)] = 63272, - [SMALL_STATE(2020)] = 63317, - [SMALL_STATE(2021)] = 63362, - [SMALL_STATE(2022)] = 63407, - [SMALL_STATE(2023)] = 63452, - [SMALL_STATE(2024)] = 63497, - [SMALL_STATE(2025)] = 63542, - [SMALL_STATE(2026)] = 63587, - [SMALL_STATE(2027)] = 63624, - [SMALL_STATE(2028)] = 63669, - [SMALL_STATE(2029)] = 63714, - [SMALL_STATE(2030)] = 63759, - [SMALL_STATE(2031)] = 63804, - [SMALL_STATE(2032)] = 63849, - [SMALL_STATE(2033)] = 63894, - [SMALL_STATE(2034)] = 63939, - [SMALL_STATE(2035)] = 63977, - [SMALL_STATE(2036)] = 64005, - [SMALL_STATE(2037)] = 64033, - [SMALL_STATE(2038)] = 64071, - [SMALL_STATE(2039)] = 64111, - [SMALL_STATE(2040)] = 64135, - [SMALL_STATE(2041)] = 64163, - [SMALL_STATE(2042)] = 64191, - [SMALL_STATE(2043)] = 64231, - [SMALL_STATE(2044)] = 64259, - [SMALL_STATE(2045)] = 64297, - [SMALL_STATE(2046)] = 64325, - [SMALL_STATE(2047)] = 64353, - [SMALL_STATE(2048)] = 64377, - [SMALL_STATE(2049)] = 64405, - [SMALL_STATE(2050)] = 64445, - [SMALL_STATE(2051)] = 64475, - [SMALL_STATE(2052)] = 64517, - [SMALL_STATE(2053)] = 64559, - [SMALL_STATE(2054)] = 64583, - [SMALL_STATE(2055)] = 64611, - [SMALL_STATE(2056)] = 64653, - [SMALL_STATE(2057)] = 64677, - [SMALL_STATE(2058)] = 64719, - [SMALL_STATE(2059)] = 64757, - [SMALL_STATE(2060)] = 64781, - [SMALL_STATE(2061)] = 64823, - [SMALL_STATE(2062)] = 64857, - [SMALL_STATE(2063)] = 64899, - [SMALL_STATE(2064)] = 64933, - [SMALL_STATE(2065)] = 64963, - [SMALL_STATE(2066)] = 65001, - [SMALL_STATE(2067)] = 65029, - [SMALL_STATE(2068)] = 65057, - [SMALL_STATE(2069)] = 65087, - [SMALL_STATE(2070)] = 65115, - [SMALL_STATE(2071)] = 65153, - [SMALL_STATE(2072)] = 65183, - [SMALL_STATE(2073)] = 65221, - [SMALL_STATE(2074)] = 65259, - [SMALL_STATE(2075)] = 65297, - [SMALL_STATE(2076)] = 65339, - [SMALL_STATE(2077)] = 65362, - [SMALL_STATE(2078)] = 65385, - [SMALL_STATE(2079)] = 65408, - [SMALL_STATE(2080)] = 65431, - [SMALL_STATE(2081)] = 65454, - [SMALL_STATE(2082)] = 65477, - [SMALL_STATE(2083)] = 65500, - [SMALL_STATE(2084)] = 65523, - [SMALL_STATE(2085)] = 65546, - [SMALL_STATE(2086)] = 65569, - [SMALL_STATE(2087)] = 65592, - [SMALL_STATE(2088)] = 65629, - [SMALL_STATE(2089)] = 65652, - [SMALL_STATE(2090)] = 65693, - [SMALL_STATE(2091)] = 65734, - [SMALL_STATE(2092)] = 65757, - [SMALL_STATE(2093)] = 65780, - [SMALL_STATE(2094)] = 65803, - [SMALL_STATE(2095)] = 65826, - [SMALL_STATE(2096)] = 65849, - [SMALL_STATE(2097)] = 65872, - [SMALL_STATE(2098)] = 65895, - [SMALL_STATE(2099)] = 65918, - [SMALL_STATE(2100)] = 65941, - [SMALL_STATE(2101)] = 65964, - [SMALL_STATE(2102)] = 65987, - [SMALL_STATE(2103)] = 66010, - [SMALL_STATE(2104)] = 66033, - [SMALL_STATE(2105)] = 66056, - [SMALL_STATE(2106)] = 66093, - [SMALL_STATE(2107)] = 66116, - [SMALL_STATE(2108)] = 66139, - [SMALL_STATE(2109)] = 66180, - [SMALL_STATE(2110)] = 66211, - [SMALL_STATE(2111)] = 66234, - [SMALL_STATE(2112)] = 66271, - [SMALL_STATE(2113)] = 66294, - [SMALL_STATE(2114)] = 66329, - [SMALL_STATE(2115)] = 66362, - [SMALL_STATE(2116)] = 66385, - [SMALL_STATE(2117)] = 66426, - [SMALL_STATE(2118)] = 66461, - [SMALL_STATE(2119)] = 66492, - [SMALL_STATE(2120)] = 66523, - [SMALL_STATE(2121)] = 66558, - [SMALL_STATE(2122)] = 66581, - [SMALL_STATE(2123)] = 66604, - [SMALL_STATE(2124)] = 66641, - [SMALL_STATE(2125)] = 66672, - [SMALL_STATE(2126)] = 66695, - [SMALL_STATE(2127)] = 66718, - [SMALL_STATE(2128)] = 66741, - [SMALL_STATE(2129)] = 66765, - [SMALL_STATE(2130)] = 66799, - [SMALL_STATE(2131)] = 66831, - [SMALL_STATE(2132)] = 66863, - [SMALL_STATE(2133)] = 66901, - [SMALL_STATE(2134)] = 66929, - [SMALL_STATE(2135)] = 66953, - [SMALL_STATE(2136)] = 66987, - [SMALL_STATE(2137)] = 67019, - [SMALL_STATE(2138)] = 67047, - [SMALL_STATE(2139)] = 67071, - [SMALL_STATE(2140)] = 67109, - [SMALL_STATE(2141)] = 67141, - [SMALL_STATE(2142)] = 67179, - [SMALL_STATE(2143)] = 67217, - [SMALL_STATE(2144)] = 67255, - [SMALL_STATE(2145)] = 67293, - [SMALL_STATE(2146)] = 67331, - [SMALL_STATE(2147)] = 67357, - [SMALL_STATE(2148)] = 67389, - [SMALL_STATE(2149)] = 67427, - [SMALL_STATE(2150)] = 67451, - [SMALL_STATE(2151)] = 67487, - [SMALL_STATE(2152)] = 67515, - [SMALL_STATE(2153)] = 67547, - [SMALL_STATE(2154)] = 67573, - [SMALL_STATE(2155)] = 67601, - [SMALL_STATE(2156)] = 67633, - [SMALL_STATE(2157)] = 67657, - [SMALL_STATE(2158)] = 67689, - [SMALL_STATE(2159)] = 67727, - [SMALL_STATE(2160)] = 67765, - [SMALL_STATE(2161)] = 67793, - [SMALL_STATE(2162)] = 67831, - [SMALL_STATE(2163)] = 67859, - [SMALL_STATE(2164)] = 67885, - [SMALL_STATE(2165)] = 67923, - [SMALL_STATE(2166)] = 67955, - [SMALL_STATE(2167)] = 67993, - [SMALL_STATE(2168)] = 68031, - [SMALL_STATE(2169)] = 68063, - [SMALL_STATE(2170)] = 68101, - [SMALL_STATE(2171)] = 68133, - [SMALL_STATE(2172)] = 68171, - [SMALL_STATE(2173)] = 68203, - [SMALL_STATE(2174)] = 68229, - [SMALL_STATE(2175)] = 68261, - [SMALL_STATE(2176)] = 68289, - [SMALL_STATE(2177)] = 68324, - [SMALL_STATE(2178)] = 68345, - [SMALL_STATE(2179)] = 68366, - [SMALL_STATE(2180)] = 68387, - [SMALL_STATE(2181)] = 68422, - [SMALL_STATE(2182)] = 68457, - [SMALL_STATE(2183)] = 68492, - [SMALL_STATE(2184)] = 68527, - [SMALL_STATE(2185)] = 68562, - [SMALL_STATE(2186)] = 68597, - [SMALL_STATE(2187)] = 68632, - [SMALL_STATE(2188)] = 68667, - [SMALL_STATE(2189)] = 68702, - [SMALL_STATE(2190)] = 68737, - [SMALL_STATE(2191)] = 68772, - [SMALL_STATE(2192)] = 68807, - [SMALL_STATE(2193)] = 68842, - [SMALL_STATE(2194)] = 68877, - [SMALL_STATE(2195)] = 68912, - [SMALL_STATE(2196)] = 68947, - [SMALL_STATE(2197)] = 68982, - [SMALL_STATE(2198)] = 69017, - [SMALL_STATE(2199)] = 69052, - [SMALL_STATE(2200)] = 69087, - [SMALL_STATE(2201)] = 69122, - [SMALL_STATE(2202)] = 69147, - [SMALL_STATE(2203)] = 69182, - [SMALL_STATE(2204)] = 69207, - [SMALL_STATE(2205)] = 69242, - [SMALL_STATE(2206)] = 69277, - [SMALL_STATE(2207)] = 69306, - [SMALL_STATE(2208)] = 69327, - [SMALL_STATE(2209)] = 69348, - [SMALL_STATE(2210)] = 69383, - [SMALL_STATE(2211)] = 69418, - [SMALL_STATE(2212)] = 69451, - [SMALL_STATE(2213)] = 69486, - [SMALL_STATE(2214)] = 69511, - [SMALL_STATE(2215)] = 69546, - [SMALL_STATE(2216)] = 69581, - [SMALL_STATE(2217)] = 69614, - [SMALL_STATE(2218)] = 69649, - [SMALL_STATE(2219)] = 69684, - [SMALL_STATE(2220)] = 69719, - [SMALL_STATE(2221)] = 69746, - [SMALL_STATE(2222)] = 69779, - [SMALL_STATE(2223)] = 69812, - [SMALL_STATE(2224)] = 69833, - [SMALL_STATE(2225)] = 69868, - [SMALL_STATE(2226)] = 69903, - [SMALL_STATE(2227)] = 69938, - [SMALL_STATE(2228)] = 69973, - [SMALL_STATE(2229)] = 70008, - [SMALL_STATE(2230)] = 70043, - [SMALL_STATE(2231)] = 70076, - [SMALL_STATE(2232)] = 70111, - [SMALL_STATE(2233)] = 70137, - [SMALL_STATE(2234)] = 70163, - [SMALL_STATE(2235)] = 70193, - [SMALL_STATE(2236)] = 70223, - [SMALL_STATE(2237)] = 70253, - [SMALL_STATE(2238)] = 70283, - [SMALL_STATE(2239)] = 70311, - [SMALL_STATE(2240)] = 70343, - [SMALL_STATE(2241)] = 70365, - [SMALL_STATE(2242)] = 70397, - [SMALL_STATE(2243)] = 70429, - [SMALL_STATE(2244)] = 70461, - [SMALL_STATE(2245)] = 70493, - [SMALL_STATE(2246)] = 70525, - [SMALL_STATE(2247)] = 70557, - [SMALL_STATE(2248)] = 70589, - [SMALL_STATE(2249)] = 70621, - [SMALL_STATE(2250)] = 70651, - [SMALL_STATE(2251)] = 70681, - [SMALL_STATE(2252)] = 70713, - [SMALL_STATE(2253)] = 70745, - [SMALL_STATE(2254)] = 70777, - [SMALL_STATE(2255)] = 70809, - [SMALL_STATE(2256)] = 70841, - [SMALL_STATE(2257)] = 70873, - [SMALL_STATE(2258)] = 70901, - [SMALL_STATE(2259)] = 70933, - [SMALL_STATE(2260)] = 70965, - [SMALL_STATE(2261)] = 70997, - [SMALL_STATE(2262)] = 71027, - [SMALL_STATE(2263)] = 71057, - [SMALL_STATE(2264)] = 71089, - [SMALL_STATE(2265)] = 71119, - [SMALL_STATE(2266)] = 71149, - [SMALL_STATE(2267)] = 71171, - [SMALL_STATE(2268)] = 71203, - [SMALL_STATE(2269)] = 71235, - [SMALL_STATE(2270)] = 71267, - [SMALL_STATE(2271)] = 71295, - [SMALL_STATE(2272)] = 71327, - [SMALL_STATE(2273)] = 71349, - [SMALL_STATE(2274)] = 71381, - [SMALL_STATE(2275)] = 71413, - [SMALL_STATE(2276)] = 71445, - [SMALL_STATE(2277)] = 71477, - [SMALL_STATE(2278)] = 71509, - [SMALL_STATE(2279)] = 71541, - [SMALL_STATE(2280)] = 71573, - [SMALL_STATE(2281)] = 71605, - [SMALL_STATE(2282)] = 71633, - [SMALL_STATE(2283)] = 71659, - [SMALL_STATE(2284)] = 71681, - [SMALL_STATE(2285)] = 71709, - [SMALL_STATE(2286)] = 71735, - [SMALL_STATE(2287)] = 71767, - [SMALL_STATE(2288)] = 71789, - [SMALL_STATE(2289)] = 71811, - [SMALL_STATE(2290)] = 71843, - [SMALL_STATE(2291)] = 71872, - [SMALL_STATE(2292)] = 71901, - [SMALL_STATE(2293)] = 71922, - [SMALL_STATE(2294)] = 71951, - [SMALL_STATE(2295)] = 71980, - [SMALL_STATE(2296)] = 72009, - [SMALL_STATE(2297)] = 72038, - [SMALL_STATE(2298)] = 72067, - [SMALL_STATE(2299)] = 72096, - [SMALL_STATE(2300)] = 72117, - [SMALL_STATE(2301)] = 72146, - [SMALL_STATE(2302)] = 72175, - [SMALL_STATE(2303)] = 72198, - [SMALL_STATE(2304)] = 72227, - [SMALL_STATE(2305)] = 72252, - [SMALL_STATE(2306)] = 72279, - [SMALL_STATE(2307)] = 72308, - [SMALL_STATE(2308)] = 72337, - [SMALL_STATE(2309)] = 72366, - [SMALL_STATE(2310)] = 72395, - [SMALL_STATE(2311)] = 72424, - [SMALL_STATE(2312)] = 72447, - [SMALL_STATE(2313)] = 72476, - [SMALL_STATE(2314)] = 72505, - [SMALL_STATE(2315)] = 72534, - [SMALL_STATE(2316)] = 72555, - [SMALL_STATE(2317)] = 72584, - [SMALL_STATE(2318)] = 72613, - [SMALL_STATE(2319)] = 72642, - [SMALL_STATE(2320)] = 72665, - [SMALL_STATE(2321)] = 72684, - [SMALL_STATE(2322)] = 72713, - [SMALL_STATE(2323)] = 72742, - [SMALL_STATE(2324)] = 72771, - [SMALL_STATE(2325)] = 72800, - [SMALL_STATE(2326)] = 72829, - [SMALL_STATE(2327)] = 72858, - [SMALL_STATE(2328)] = 72887, - [SMALL_STATE(2329)] = 72916, - [SMALL_STATE(2330)] = 72945, - [SMALL_STATE(2331)] = 72974, - [SMALL_STATE(2332)] = 73003, - [SMALL_STATE(2333)] = 73032, - [SMALL_STATE(2334)] = 73061, - [SMALL_STATE(2335)] = 73090, - [SMALL_STATE(2336)] = 73119, - [SMALL_STATE(2337)] = 73142, - [SMALL_STATE(2338)] = 73169, - [SMALL_STATE(2339)] = 73198, - [SMALL_STATE(2340)] = 73227, - [SMALL_STATE(2341)] = 73246, - [SMALL_STATE(2342)] = 73269, - [SMALL_STATE(2343)] = 73294, - [SMALL_STATE(2344)] = 73323, - [SMALL_STATE(2345)] = 73344, - [SMALL_STATE(2346)] = 73373, - [SMALL_STATE(2347)] = 73402, - [SMALL_STATE(2348)] = 73431, - [SMALL_STATE(2349)] = 73458, - [SMALL_STATE(2350)] = 73487, - [SMALL_STATE(2351)] = 73516, - [SMALL_STATE(2352)] = 73545, - [SMALL_STATE(2353)] = 73574, - [SMALL_STATE(2354)] = 73603, - [SMALL_STATE(2355)] = 73630, - [SMALL_STATE(2356)] = 73659, - [SMALL_STATE(2357)] = 73682, - [SMALL_STATE(2358)] = 73711, - [SMALL_STATE(2359)] = 73740, - [SMALL_STATE(2360)] = 73769, - [SMALL_STATE(2361)] = 73790, - [SMALL_STATE(2362)] = 73811, - [SMALL_STATE(2363)] = 73832, - [SMALL_STATE(2364)] = 73853, - [SMALL_STATE(2365)] = 73882, - [SMALL_STATE(2366)] = 73905, - [SMALL_STATE(2367)] = 73934, - [SMALL_STATE(2368)] = 73963, - [SMALL_STATE(2369)] = 73992, - [SMALL_STATE(2370)] = 74021, - [SMALL_STATE(2371)] = 74050, - [SMALL_STATE(2372)] = 74077, - [SMALL_STATE(2373)] = 74102, - [SMALL_STATE(2374)] = 74131, - [SMALL_STATE(2375)] = 74156, - [SMALL_STATE(2376)] = 74185, - [SMALL_STATE(2377)] = 74214, - [SMALL_STATE(2378)] = 74241, - [SMALL_STATE(2379)] = 74270, - [SMALL_STATE(2380)] = 74293, - [SMALL_STATE(2381)] = 74316, - [SMALL_STATE(2382)] = 74345, - [SMALL_STATE(2383)] = 74368, - [SMALL_STATE(2384)] = 74397, - [SMALL_STATE(2385)] = 74420, - [SMALL_STATE(2386)] = 74443, - [SMALL_STATE(2387)] = 74466, - [SMALL_STATE(2388)] = 74489, - [SMALL_STATE(2389)] = 74518, - [SMALL_STATE(2390)] = 74544, - [SMALL_STATE(2391)] = 74570, - [SMALL_STATE(2392)] = 74594, - [SMALL_STATE(2393)] = 74618, - [SMALL_STATE(2394)] = 74644, - [SMALL_STATE(2395)] = 74670, - [SMALL_STATE(2396)] = 74696, - [SMALL_STATE(2397)] = 74720, - [SMALL_STATE(2398)] = 74746, - [SMALL_STATE(2399)] = 74772, - [SMALL_STATE(2400)] = 74798, - [SMALL_STATE(2401)] = 74822, - [SMALL_STATE(2402)] = 74848, - [SMALL_STATE(2403)] = 74874, - [SMALL_STATE(2404)] = 74892, - [SMALL_STATE(2405)] = 74918, - [SMALL_STATE(2406)] = 74944, - [SMALL_STATE(2407)] = 74964, - [SMALL_STATE(2408)] = 74986, - [SMALL_STATE(2409)] = 75012, - [SMALL_STATE(2410)] = 75038, - [SMALL_STATE(2411)] = 75064, - [SMALL_STATE(2412)] = 75090, - [SMALL_STATE(2413)] = 75116, - [SMALL_STATE(2414)] = 75142, - [SMALL_STATE(2415)] = 75168, - [SMALL_STATE(2416)] = 75194, - [SMALL_STATE(2417)] = 75212, - [SMALL_STATE(2418)] = 75230, - [SMALL_STATE(2419)] = 75248, - [SMALL_STATE(2420)] = 75274, - [SMALL_STATE(2421)] = 75300, - [SMALL_STATE(2422)] = 75320, - [SMALL_STATE(2423)] = 75346, - [SMALL_STATE(2424)] = 75372, - [SMALL_STATE(2425)] = 75394, - [SMALL_STATE(2426)] = 75420, - [SMALL_STATE(2427)] = 75446, - [SMALL_STATE(2428)] = 75470, - [SMALL_STATE(2429)] = 75492, - [SMALL_STATE(2430)] = 75518, - [SMALL_STATE(2431)] = 75542, - [SMALL_STATE(2432)] = 75568, - [SMALL_STATE(2433)] = 75594, - [SMALL_STATE(2434)] = 75618, - [SMALL_STATE(2435)] = 75644, - [SMALL_STATE(2436)] = 75662, - [SMALL_STATE(2437)] = 75688, - [SMALL_STATE(2438)] = 75714, - [SMALL_STATE(2439)] = 75736, - [SMALL_STATE(2440)] = 75754, - [SMALL_STATE(2441)] = 75778, - [SMALL_STATE(2442)] = 75804, - [SMALL_STATE(2443)] = 75822, - [SMALL_STATE(2444)] = 75840, - [SMALL_STATE(2445)] = 75858, - [SMALL_STATE(2446)] = 75884, - [SMALL_STATE(2447)] = 75902, - [SMALL_STATE(2448)] = 75928, - [SMALL_STATE(2449)] = 75946, - [SMALL_STATE(2450)] = 75964, - [SMALL_STATE(2451)] = 75990, - [SMALL_STATE(2452)] = 76016, - [SMALL_STATE(2453)] = 76034, - [SMALL_STATE(2454)] = 76052, - [SMALL_STATE(2455)] = 76070, - [SMALL_STATE(2456)] = 76088, - [SMALL_STATE(2457)] = 76106, - [SMALL_STATE(2458)] = 76132, - [SMALL_STATE(2459)] = 76154, - [SMALL_STATE(2460)] = 76180, - [SMALL_STATE(2461)] = 76204, - [SMALL_STATE(2462)] = 76222, - [SMALL_STATE(2463)] = 76244, - [SMALL_STATE(2464)] = 76262, - [SMALL_STATE(2465)] = 76288, - [SMALL_STATE(2466)] = 76314, - [SMALL_STATE(2467)] = 76340, - [SMALL_STATE(2468)] = 76366, - [SMALL_STATE(2469)] = 76390, - [SMALL_STATE(2470)] = 76414, - [SMALL_STATE(2471)] = 76432, - [SMALL_STATE(2472)] = 76456, - [SMALL_STATE(2473)] = 76474, - [SMALL_STATE(2474)] = 76498, - [SMALL_STATE(2475)] = 76524, - [SMALL_STATE(2476)] = 76546, - [SMALL_STATE(2477)] = 76568, - [SMALL_STATE(2478)] = 76586, - [SMALL_STATE(2479)] = 76604, - [SMALL_STATE(2480)] = 76622, - [SMALL_STATE(2481)] = 76642, - [SMALL_STATE(2482)] = 76666, - [SMALL_STATE(2483)] = 76690, - [SMALL_STATE(2484)] = 76716, - [SMALL_STATE(2485)] = 76742, - [SMALL_STATE(2486)] = 76768, - [SMALL_STATE(2487)] = 76794, - [SMALL_STATE(2488)] = 76816, - [SMALL_STATE(2489)] = 76838, - [SMALL_STATE(2490)] = 76864, - [SMALL_STATE(2491)] = 76890, - [SMALL_STATE(2492)] = 76916, - [SMALL_STATE(2493)] = 76942, - [SMALL_STATE(2494)] = 76960, - [SMALL_STATE(2495)] = 76981, - [SMALL_STATE(2496)] = 77004, - [SMALL_STATE(2497)] = 77025, - [SMALL_STATE(2498)] = 77048, - [SMALL_STATE(2499)] = 77071, - [SMALL_STATE(2500)] = 77094, - [SMALL_STATE(2501)] = 77117, - [SMALL_STATE(2502)] = 77140, - [SMALL_STATE(2503)] = 77163, - [SMALL_STATE(2504)] = 77186, - [SMALL_STATE(2505)] = 77209, - [SMALL_STATE(2506)] = 77232, - [SMALL_STATE(2507)] = 77255, - [SMALL_STATE(2508)] = 77278, - [SMALL_STATE(2509)] = 77297, - [SMALL_STATE(2510)] = 77320, - [SMALL_STATE(2511)] = 77339, - [SMALL_STATE(2512)] = 77362, - [SMALL_STATE(2513)] = 77385, - [SMALL_STATE(2514)] = 77408, - [SMALL_STATE(2515)] = 77431, - [SMALL_STATE(2516)] = 77454, - [SMALL_STATE(2517)] = 77473, - [SMALL_STATE(2518)] = 77496, - [SMALL_STATE(2519)] = 77519, - [SMALL_STATE(2520)] = 77542, - [SMALL_STATE(2521)] = 77563, - [SMALL_STATE(2522)] = 77586, - [SMALL_STATE(2523)] = 77609, - [SMALL_STATE(2524)] = 77632, - [SMALL_STATE(2525)] = 77655, - [SMALL_STATE(2526)] = 77678, - [SMALL_STATE(2527)] = 77701, - [SMALL_STATE(2528)] = 77722, - [SMALL_STATE(2529)] = 77743, - [SMALL_STATE(2530)] = 77764, - [SMALL_STATE(2531)] = 77787, - [SMALL_STATE(2532)] = 77810, - [SMALL_STATE(2533)] = 77833, - [SMALL_STATE(2534)] = 77850, - [SMALL_STATE(2535)] = 77873, - [SMALL_STATE(2536)] = 77894, - [SMALL_STATE(2537)] = 77917, - [SMALL_STATE(2538)] = 77938, - [SMALL_STATE(2539)] = 77961, - [SMALL_STATE(2540)] = 77984, - [SMALL_STATE(2541)] = 78007, - [SMALL_STATE(2542)] = 78030, - [SMALL_STATE(2543)] = 78053, - [SMALL_STATE(2544)] = 78076, - [SMALL_STATE(2545)] = 78099, - [SMALL_STATE(2546)] = 78122, - [SMALL_STATE(2547)] = 78139, - [SMALL_STATE(2548)] = 78162, - [SMALL_STATE(2549)] = 78185, - [SMALL_STATE(2550)] = 78204, - [SMALL_STATE(2551)] = 78223, - [SMALL_STATE(2552)] = 78242, - [SMALL_STATE(2553)] = 78259, - [SMALL_STATE(2554)] = 78282, - [SMALL_STATE(2555)] = 78305, - [SMALL_STATE(2556)] = 78328, - [SMALL_STATE(2557)] = 78351, - [SMALL_STATE(2558)] = 78374, - [SMALL_STATE(2559)] = 78397, - [SMALL_STATE(2560)] = 78420, - [SMALL_STATE(2561)] = 78443, - [SMALL_STATE(2562)] = 78466, - [SMALL_STATE(2563)] = 78489, - [SMALL_STATE(2564)] = 78510, - [SMALL_STATE(2565)] = 78531, - [SMALL_STATE(2566)] = 78550, - [SMALL_STATE(2567)] = 78573, - [SMALL_STATE(2568)] = 78596, - [SMALL_STATE(2569)] = 78619, - [SMALL_STATE(2570)] = 78638, - [SMALL_STATE(2571)] = 78661, - [SMALL_STATE(2572)] = 78684, - [SMALL_STATE(2573)] = 78707, - [SMALL_STATE(2574)] = 78730, - [SMALL_STATE(2575)] = 78753, - [SMALL_STATE(2576)] = 78774, - [SMALL_STATE(2577)] = 78797, - [SMALL_STATE(2578)] = 78820, - [SMALL_STATE(2579)] = 78843, - [SMALL_STATE(2580)] = 78866, - [SMALL_STATE(2581)] = 78889, - [SMALL_STATE(2582)] = 78908, - [SMALL_STATE(2583)] = 78931, - [SMALL_STATE(2584)] = 78954, - [SMALL_STATE(2585)] = 78975, - [SMALL_STATE(2586)] = 78998, - [SMALL_STATE(2587)] = 79021, - [SMALL_STATE(2588)] = 79040, - [SMALL_STATE(2589)] = 79061, - [SMALL_STATE(2590)] = 79080, - [SMALL_STATE(2591)] = 79103, - [SMALL_STATE(2592)] = 79126, - [SMALL_STATE(2593)] = 79149, - [SMALL_STATE(2594)] = 79172, - [SMALL_STATE(2595)] = 79195, - [SMALL_STATE(2596)] = 79216, - [SMALL_STATE(2597)] = 79239, - [SMALL_STATE(2598)] = 79262, - [SMALL_STATE(2599)] = 79285, - [SMALL_STATE(2600)] = 79308, - [SMALL_STATE(2601)] = 79331, - [SMALL_STATE(2602)] = 79354, - [SMALL_STATE(2603)] = 79377, - [SMALL_STATE(2604)] = 79400, - [SMALL_STATE(2605)] = 79417, - [SMALL_STATE(2606)] = 79438, - [SMALL_STATE(2607)] = 79455, - [SMALL_STATE(2608)] = 79478, - [SMALL_STATE(2609)] = 79501, - [SMALL_STATE(2610)] = 79524, - [SMALL_STATE(2611)] = 79547, - [SMALL_STATE(2612)] = 79570, - [SMALL_STATE(2613)] = 79593, - [SMALL_STATE(2614)] = 79616, - [SMALL_STATE(2615)] = 79639, - [SMALL_STATE(2616)] = 79662, - [SMALL_STATE(2617)] = 79685, - [SMALL_STATE(2618)] = 79706, - [SMALL_STATE(2619)] = 79729, - [SMALL_STATE(2620)] = 79752, - [SMALL_STATE(2621)] = 79775, - [SMALL_STATE(2622)] = 79798, - [SMALL_STATE(2623)] = 79817, - [SMALL_STATE(2624)] = 79838, - [SMALL_STATE(2625)] = 79861, - [SMALL_STATE(2626)] = 79884, - [SMALL_STATE(2627)] = 79907, - [SMALL_STATE(2628)] = 79930, - [SMALL_STATE(2629)] = 79953, - [SMALL_STATE(2630)] = 79976, - [SMALL_STATE(2631)] = 79997, - [SMALL_STATE(2632)] = 80020, - [SMALL_STATE(2633)] = 80041, - [SMALL_STATE(2634)] = 80064, - [SMALL_STATE(2635)] = 80085, - [SMALL_STATE(2636)] = 80108, - [SMALL_STATE(2637)] = 80131, - [SMALL_STATE(2638)] = 80154, - [SMALL_STATE(2639)] = 80177, - [SMALL_STATE(2640)] = 80200, - [SMALL_STATE(2641)] = 80223, - [SMALL_STATE(2642)] = 80244, - [SMALL_STATE(2643)] = 80265, - [SMALL_STATE(2644)] = 80288, - [SMALL_STATE(2645)] = 80311, - [SMALL_STATE(2646)] = 80334, - [SMALL_STATE(2647)] = 80357, - [SMALL_STATE(2648)] = 80380, - [SMALL_STATE(2649)] = 80403, - [SMALL_STATE(2650)] = 80426, - [SMALL_STATE(2651)] = 80449, - [SMALL_STATE(2652)] = 80472, - [SMALL_STATE(2653)] = 80495, - [SMALL_STATE(2654)] = 80518, - [SMALL_STATE(2655)] = 80541, - [SMALL_STATE(2656)] = 80564, - [SMALL_STATE(2657)] = 80587, - [SMALL_STATE(2658)] = 80610, - [SMALL_STATE(2659)] = 80633, - [SMALL_STATE(2660)] = 80656, - [SMALL_STATE(2661)] = 80679, - [SMALL_STATE(2662)] = 80698, - [SMALL_STATE(2663)] = 80715, - [SMALL_STATE(2664)] = 80736, - [SMALL_STATE(2665)] = 80755, - [SMALL_STATE(2666)] = 80778, - [SMALL_STATE(2667)] = 80797, - [SMALL_STATE(2668)] = 80816, - [SMALL_STATE(2669)] = 80839, - [SMALL_STATE(2670)] = 80862, - [SMALL_STATE(2671)] = 80881, - [SMALL_STATE(2672)] = 80904, - [SMALL_STATE(2673)] = 80927, - [SMALL_STATE(2674)] = 80950, - [SMALL_STATE(2675)] = 80973, - [SMALL_STATE(2676)] = 80996, - [SMALL_STATE(2677)] = 81019, - [SMALL_STATE(2678)] = 81042, - [SMALL_STATE(2679)] = 81065, - [SMALL_STATE(2680)] = 81084, - [SMALL_STATE(2681)] = 81103, - [SMALL_STATE(2682)] = 81120, - [SMALL_STATE(2683)] = 81139, - [SMALL_STATE(2684)] = 81162, - [SMALL_STATE(2685)] = 81185, - [SMALL_STATE(2686)] = 81208, - [SMALL_STATE(2687)] = 81231, - [SMALL_STATE(2688)] = 81254, - [SMALL_STATE(2689)] = 81275, - [SMALL_STATE(2690)] = 81298, - [SMALL_STATE(2691)] = 81321, - [SMALL_STATE(2692)] = 81340, - [SMALL_STATE(2693)] = 81357, - [SMALL_STATE(2694)] = 81380, - [SMALL_STATE(2695)] = 81403, - [SMALL_STATE(2696)] = 81426, - [SMALL_STATE(2697)] = 81445, - [SMALL_STATE(2698)] = 81468, - [SMALL_STATE(2699)] = 81491, - [SMALL_STATE(2700)] = 81514, - [SMALL_STATE(2701)] = 81537, - [SMALL_STATE(2702)] = 81560, - [SMALL_STATE(2703)] = 81583, - [SMALL_STATE(2704)] = 81606, - [SMALL_STATE(2705)] = 81629, - [SMALL_STATE(2706)] = 81652, - [SMALL_STATE(2707)] = 81675, - [SMALL_STATE(2708)] = 81696, - [SMALL_STATE(2709)] = 81717, - [SMALL_STATE(2710)] = 81740, - [SMALL_STATE(2711)] = 81763, - [SMALL_STATE(2712)] = 81784, - [SMALL_STATE(2713)] = 81807, - [SMALL_STATE(2714)] = 81828, - [SMALL_STATE(2715)] = 81851, - [SMALL_STATE(2716)] = 81874, - [SMALL_STATE(2717)] = 81893, - [SMALL_STATE(2718)] = 81916, - [SMALL_STATE(2719)] = 81935, - [SMALL_STATE(2720)] = 81958, - [SMALL_STATE(2721)] = 81981, - [SMALL_STATE(2722)] = 82004, - [SMALL_STATE(2723)] = 82027, - [SMALL_STATE(2724)] = 82046, - [SMALL_STATE(2725)] = 82069, - [SMALL_STATE(2726)] = 82092, - [SMALL_STATE(2727)] = 82111, - [SMALL_STATE(2728)] = 82134, - [SMALL_STATE(2729)] = 82157, - [SMALL_STATE(2730)] = 82180, - [SMALL_STATE(2731)] = 82203, - [SMALL_STATE(2732)] = 82219, - [SMALL_STATE(2733)] = 82239, - [SMALL_STATE(2734)] = 82259, - [SMALL_STATE(2735)] = 82279, - [SMALL_STATE(2736)] = 82299, - [SMALL_STATE(2737)] = 82319, - [SMALL_STATE(2738)] = 82339, - [SMALL_STATE(2739)] = 82359, - [SMALL_STATE(2740)] = 82379, - [SMALL_STATE(2741)] = 82395, - [SMALL_STATE(2742)] = 82415, - [SMALL_STATE(2743)] = 82435, - [SMALL_STATE(2744)] = 82455, - [SMALL_STATE(2745)] = 82475, - [SMALL_STATE(2746)] = 82495, - [SMALL_STATE(2747)] = 82511, - [SMALL_STATE(2748)] = 82531, - [SMALL_STATE(2749)] = 82549, - [SMALL_STATE(2750)] = 82567, - [SMALL_STATE(2751)] = 82585, - [SMALL_STATE(2752)] = 82605, - [SMALL_STATE(2753)] = 82625, - [SMALL_STATE(2754)] = 82645, - [SMALL_STATE(2755)] = 82663, - [SMALL_STATE(2756)] = 82683, - [SMALL_STATE(2757)] = 82699, - [SMALL_STATE(2758)] = 82719, - [SMALL_STATE(2759)] = 82739, - [SMALL_STATE(2760)] = 82755, - [SMALL_STATE(2761)] = 82773, - [SMALL_STATE(2762)] = 82789, - [SMALL_STATE(2763)] = 82809, - [SMALL_STATE(2764)] = 82827, - [SMALL_STATE(2765)] = 82847, - [SMALL_STATE(2766)] = 82865, - [SMALL_STATE(2767)] = 82881, - [SMALL_STATE(2768)] = 82901, - [SMALL_STATE(2769)] = 82919, - [SMALL_STATE(2770)] = 82937, - [SMALL_STATE(2771)] = 82957, - [SMALL_STATE(2772)] = 82977, - [SMALL_STATE(2773)] = 82997, - [SMALL_STATE(2774)] = 83017, - [SMALL_STATE(2775)] = 83037, - [SMALL_STATE(2776)] = 83057, - [SMALL_STATE(2777)] = 83073, - [SMALL_STATE(2778)] = 83093, - [SMALL_STATE(2779)] = 83113, - [SMALL_STATE(2780)] = 83129, - [SMALL_STATE(2781)] = 83149, - [SMALL_STATE(2782)] = 83169, - [SMALL_STATE(2783)] = 83189, - [SMALL_STATE(2784)] = 83209, - [SMALL_STATE(2785)] = 83229, - [SMALL_STATE(2786)] = 83245, - [SMALL_STATE(2787)] = 83265, - [SMALL_STATE(2788)] = 83285, - [SMALL_STATE(2789)] = 83305, - [SMALL_STATE(2790)] = 83325, - [SMALL_STATE(2791)] = 83345, - [SMALL_STATE(2792)] = 83365, - [SMALL_STATE(2793)] = 83385, - [SMALL_STATE(2794)] = 83405, - [SMALL_STATE(2795)] = 83421, - [SMALL_STATE(2796)] = 83441, - [SMALL_STATE(2797)] = 83459, - [SMALL_STATE(2798)] = 83475, - [SMALL_STATE(2799)] = 83495, - [SMALL_STATE(2800)] = 83513, - [SMALL_STATE(2801)] = 83529, - [SMALL_STATE(2802)] = 83549, - [SMALL_STATE(2803)] = 83565, - [SMALL_STATE(2804)] = 83581, - [SMALL_STATE(2805)] = 83599, - [SMALL_STATE(2806)] = 83619, - [SMALL_STATE(2807)] = 83639, - [SMALL_STATE(2808)] = 83657, - [SMALL_STATE(2809)] = 83677, - [SMALL_STATE(2810)] = 83697, - [SMALL_STATE(2811)] = 83717, - [SMALL_STATE(2812)] = 83737, - [SMALL_STATE(2813)] = 83757, - [SMALL_STATE(2814)] = 83777, - [SMALL_STATE(2815)] = 83797, - [SMALL_STATE(2816)] = 83817, - [SMALL_STATE(2817)] = 83837, - [SMALL_STATE(2818)] = 83857, - [SMALL_STATE(2819)] = 83877, - [SMALL_STATE(2820)] = 83897, - [SMALL_STATE(2821)] = 83913, - [SMALL_STATE(2822)] = 83933, - [SMALL_STATE(2823)] = 83953, - [SMALL_STATE(2824)] = 83971, - [SMALL_STATE(2825)] = 83991, - [SMALL_STATE(2826)] = 84011, - [SMALL_STATE(2827)] = 84031, - [SMALL_STATE(2828)] = 84049, - [SMALL_STATE(2829)] = 84069, - [SMALL_STATE(2830)] = 84089, - [SMALL_STATE(2831)] = 84109, - [SMALL_STATE(2832)] = 84127, - [SMALL_STATE(2833)] = 84147, - [SMALL_STATE(2834)] = 84167, - [SMALL_STATE(2835)] = 84187, - [SMALL_STATE(2836)] = 84207, - [SMALL_STATE(2837)] = 84227, - [SMALL_STATE(2838)] = 84245, - [SMALL_STATE(2839)] = 84265, - [SMALL_STATE(2840)] = 84285, - [SMALL_STATE(2841)] = 84305, - [SMALL_STATE(2842)] = 84321, - [SMALL_STATE(2843)] = 84337, - [SMALL_STATE(2844)] = 84353, - [SMALL_STATE(2845)] = 84371, - [SMALL_STATE(2846)] = 84387, - [SMALL_STATE(2847)] = 84407, - [SMALL_STATE(2848)] = 84425, - [SMALL_STATE(2849)] = 84441, - [SMALL_STATE(2850)] = 84461, - [SMALL_STATE(2851)] = 84481, - [SMALL_STATE(2852)] = 84501, - [SMALL_STATE(2853)] = 84521, - [SMALL_STATE(2854)] = 84541, - [SMALL_STATE(2855)] = 84561, - [SMALL_STATE(2856)] = 84581, - [SMALL_STATE(2857)] = 84601, - [SMALL_STATE(2858)] = 84621, - [SMALL_STATE(2859)] = 84637, - [SMALL_STATE(2860)] = 84657, - [SMALL_STATE(2861)] = 84675, - [SMALL_STATE(2862)] = 84691, - [SMALL_STATE(2863)] = 84711, - [SMALL_STATE(2864)] = 84729, - [SMALL_STATE(2865)] = 84749, - [SMALL_STATE(2866)] = 84769, - [SMALL_STATE(2867)] = 84789, - [SMALL_STATE(2868)] = 84809, - [SMALL_STATE(2869)] = 84827, - [SMALL_STATE(2870)] = 84847, - [SMALL_STATE(2871)] = 84867, - [SMALL_STATE(2872)] = 84883, - [SMALL_STATE(2873)] = 84903, - [SMALL_STATE(2874)] = 84923, - [SMALL_STATE(2875)] = 84941, - [SMALL_STATE(2876)] = 84961, - [SMALL_STATE(2877)] = 84981, - [SMALL_STATE(2878)] = 84997, - [SMALL_STATE(2879)] = 85013, - [SMALL_STATE(2880)] = 85033, - [SMALL_STATE(2881)] = 85051, - [SMALL_STATE(2882)] = 85071, - [SMALL_STATE(2883)] = 85087, - [SMALL_STATE(2884)] = 85107, - [SMALL_STATE(2885)] = 85127, - [SMALL_STATE(2886)] = 85147, - [SMALL_STATE(2887)] = 85167, - [SMALL_STATE(2888)] = 85185, - [SMALL_STATE(2889)] = 85201, - [SMALL_STATE(2890)] = 85217, - [SMALL_STATE(2891)] = 85237, - [SMALL_STATE(2892)] = 85257, - [SMALL_STATE(2893)] = 85277, - [SMALL_STATE(2894)] = 85297, - [SMALL_STATE(2895)] = 85313, - [SMALL_STATE(2896)] = 85329, - [SMALL_STATE(2897)] = 85347, - [SMALL_STATE(2898)] = 85363, - [SMALL_STATE(2899)] = 85383, - [SMALL_STATE(2900)] = 85399, - [SMALL_STATE(2901)] = 85419, - [SMALL_STATE(2902)] = 85439, - [SMALL_STATE(2903)] = 85459, - [SMALL_STATE(2904)] = 85479, - [SMALL_STATE(2905)] = 85499, - [SMALL_STATE(2906)] = 85519, - [SMALL_STATE(2907)] = 85539, - [SMALL_STATE(2908)] = 85559, - [SMALL_STATE(2909)] = 85579, - [SMALL_STATE(2910)] = 85599, - [SMALL_STATE(2911)] = 85619, - [SMALL_STATE(2912)] = 85639, - [SMALL_STATE(2913)] = 85655, - [SMALL_STATE(2914)] = 85673, - [SMALL_STATE(2915)] = 85693, - [SMALL_STATE(2916)] = 85711, - [SMALL_STATE(2917)] = 85731, - [SMALL_STATE(2918)] = 85751, - [SMALL_STATE(2919)] = 85771, - [SMALL_STATE(2920)] = 85791, - [SMALL_STATE(2921)] = 85809, - [SMALL_STATE(2922)] = 85829, - [SMALL_STATE(2923)] = 85847, - [SMALL_STATE(2924)] = 85863, - [SMALL_STATE(2925)] = 85881, - [SMALL_STATE(2926)] = 85901, - [SMALL_STATE(2927)] = 85917, - [SMALL_STATE(2928)] = 85935, - [SMALL_STATE(2929)] = 85953, - [SMALL_STATE(2930)] = 85973, - [SMALL_STATE(2931)] = 85991, - [SMALL_STATE(2932)] = 86009, - [SMALL_STATE(2933)] = 86029, - [SMALL_STATE(2934)] = 86049, - [SMALL_STATE(2935)] = 86069, - [SMALL_STATE(2936)] = 86089, - [SMALL_STATE(2937)] = 86109, - [SMALL_STATE(2938)] = 86129, - [SMALL_STATE(2939)] = 86147, - [SMALL_STATE(2940)] = 86167, - [SMALL_STATE(2941)] = 86183, - [SMALL_STATE(2942)] = 86203, - [SMALL_STATE(2943)] = 86223, - [SMALL_STATE(2944)] = 86243, - [SMALL_STATE(2945)] = 86263, - [SMALL_STATE(2946)] = 86281, - [SMALL_STATE(2947)] = 86301, - [SMALL_STATE(2948)] = 86321, - [SMALL_STATE(2949)] = 86339, - [SMALL_STATE(2950)] = 86355, - [SMALL_STATE(2951)] = 86375, - [SMALL_STATE(2952)] = 86395, - [SMALL_STATE(2953)] = 86415, - [SMALL_STATE(2954)] = 86431, - [SMALL_STATE(2955)] = 86447, - [SMALL_STATE(2956)] = 86467, - [SMALL_STATE(2957)] = 86487, - [SMALL_STATE(2958)] = 86507, - [SMALL_STATE(2959)] = 86523, - [SMALL_STATE(2960)] = 86543, - [SMALL_STATE(2961)] = 86563, - [SMALL_STATE(2962)] = 86583, - [SMALL_STATE(2963)] = 86599, - [SMALL_STATE(2964)] = 86619, - [SMALL_STATE(2965)] = 86635, - [SMALL_STATE(2966)] = 86653, - [SMALL_STATE(2967)] = 86669, - [SMALL_STATE(2968)] = 86689, - [SMALL_STATE(2969)] = 86709, - [SMALL_STATE(2970)] = 86729, - [SMALL_STATE(2971)] = 86749, - [SMALL_STATE(2972)] = 86765, - [SMALL_STATE(2973)] = 86785, - [SMALL_STATE(2974)] = 86801, - [SMALL_STATE(2975)] = 86817, - [SMALL_STATE(2976)] = 86837, - [SMALL_STATE(2977)] = 86857, - [SMALL_STATE(2978)] = 86873, - [SMALL_STATE(2979)] = 86889, - [SMALL_STATE(2980)] = 86909, - [SMALL_STATE(2981)] = 86929, - [SMALL_STATE(2982)] = 86949, - [SMALL_STATE(2983)] = 86969, - [SMALL_STATE(2984)] = 86985, - [SMALL_STATE(2985)] = 87005, - [SMALL_STATE(2986)] = 87025, - [SMALL_STATE(2987)] = 87045, - [SMALL_STATE(2988)] = 87063, - [SMALL_STATE(2989)] = 87079, - [SMALL_STATE(2990)] = 87099, - [SMALL_STATE(2991)] = 87115, - [SMALL_STATE(2992)] = 87135, - [SMALL_STATE(2993)] = 87155, - [SMALL_STATE(2994)] = 87175, - [SMALL_STATE(2995)] = 87195, - [SMALL_STATE(2996)] = 87211, - [SMALL_STATE(2997)] = 87231, - [SMALL_STATE(2998)] = 87251, - [SMALL_STATE(2999)] = 87267, - [SMALL_STATE(3000)] = 87287, - [SMALL_STATE(3001)] = 87303, - [SMALL_STATE(3002)] = 87323, - [SMALL_STATE(3003)] = 87343, - [SMALL_STATE(3004)] = 87363, - [SMALL_STATE(3005)] = 87383, - [SMALL_STATE(3006)] = 87403, - [SMALL_STATE(3007)] = 87421, - [SMALL_STATE(3008)] = 87441, - [SMALL_STATE(3009)] = 87459, - [SMALL_STATE(3010)] = 87479, - [SMALL_STATE(3011)] = 87499, - [SMALL_STATE(3012)] = 87519, - [SMALL_STATE(3013)] = 87539, - [SMALL_STATE(3014)] = 87559, - [SMALL_STATE(3015)] = 87577, - [SMALL_STATE(3016)] = 87597, - [SMALL_STATE(3017)] = 87613, - [SMALL_STATE(3018)] = 87633, - [SMALL_STATE(3019)] = 87653, - [SMALL_STATE(3020)] = 87673, - [SMALL_STATE(3021)] = 87693, - [SMALL_STATE(3022)] = 87713, - [SMALL_STATE(3023)] = 87733, - [SMALL_STATE(3024)] = 87753, - [SMALL_STATE(3025)] = 87773, - [SMALL_STATE(3026)] = 87793, - [SMALL_STATE(3027)] = 87811, - [SMALL_STATE(3028)] = 87831, - [SMALL_STATE(3029)] = 87851, - [SMALL_STATE(3030)] = 87871, - [SMALL_STATE(3031)] = 87891, - [SMALL_STATE(3032)] = 87911, - [SMALL_STATE(3033)] = 87927, - [SMALL_STATE(3034)] = 87942, - [SMALL_STATE(3035)] = 87959, - [SMALL_STATE(3036)] = 87976, - [SMALL_STATE(3037)] = 87991, - [SMALL_STATE(3038)] = 88008, - [SMALL_STATE(3039)] = 88025, - [SMALL_STATE(3040)] = 88040, - [SMALL_STATE(3041)] = 88057, - [SMALL_STATE(3042)] = 88072, - [SMALL_STATE(3043)] = 88089, - [SMALL_STATE(3044)] = 88106, - [SMALL_STATE(3045)] = 88123, - [SMALL_STATE(3046)] = 88140, - [SMALL_STATE(3047)] = 88157, - [SMALL_STATE(3048)] = 88174, - [SMALL_STATE(3049)] = 88191, - [SMALL_STATE(3050)] = 88206, - [SMALL_STATE(3051)] = 88223, - [SMALL_STATE(3052)] = 88240, - [SMALL_STATE(3053)] = 88257, - [SMALL_STATE(3054)] = 88274, - [SMALL_STATE(3055)] = 88291, - [SMALL_STATE(3056)] = 88306, - [SMALL_STATE(3057)] = 88323, - [SMALL_STATE(3058)] = 88340, - [SMALL_STATE(3059)] = 88357, - [SMALL_STATE(3060)] = 88374, - [SMALL_STATE(3061)] = 88391, - [SMALL_STATE(3062)] = 88408, - [SMALL_STATE(3063)] = 88425, - [SMALL_STATE(3064)] = 88440, - [SMALL_STATE(3065)] = 88457, - [SMALL_STATE(3066)] = 88472, - [SMALL_STATE(3067)] = 88489, - [SMALL_STATE(3068)] = 88506, - [SMALL_STATE(3069)] = 88523, - [SMALL_STATE(3070)] = 88540, - [SMALL_STATE(3071)] = 88557, - [SMALL_STATE(3072)] = 88574, - [SMALL_STATE(3073)] = 88591, - [SMALL_STATE(3074)] = 88606, - [SMALL_STATE(3075)] = 88623, - [SMALL_STATE(3076)] = 88640, - [SMALL_STATE(3077)] = 88655, - [SMALL_STATE(3078)] = 88670, - [SMALL_STATE(3079)] = 88685, - [SMALL_STATE(3080)] = 88702, - [SMALL_STATE(3081)] = 88719, - [SMALL_STATE(3082)] = 88736, - [SMALL_STATE(3083)] = 88751, - [SMALL_STATE(3084)] = 88768, - [SMALL_STATE(3085)] = 88783, - [SMALL_STATE(3086)] = 88800, - [SMALL_STATE(3087)] = 88817, - [SMALL_STATE(3088)] = 88834, - [SMALL_STATE(3089)] = 88849, - [SMALL_STATE(3090)] = 88864, - [SMALL_STATE(3091)] = 88881, - [SMALL_STATE(3092)] = 88898, - [SMALL_STATE(3093)] = 88915, - [SMALL_STATE(3094)] = 88932, - [SMALL_STATE(3095)] = 88949, - [SMALL_STATE(3096)] = 88966, - [SMALL_STATE(3097)] = 88983, - [SMALL_STATE(3098)] = 89000, - [SMALL_STATE(3099)] = 89017, - [SMALL_STATE(3100)] = 89034, - [SMALL_STATE(3101)] = 89051, - [SMALL_STATE(3102)] = 89068, - [SMALL_STATE(3103)] = 89085, - [SMALL_STATE(3104)] = 89102, - [SMALL_STATE(3105)] = 89119, - [SMALL_STATE(3106)] = 89136, - [SMALL_STATE(3107)] = 89153, - [SMALL_STATE(3108)] = 89170, - [SMALL_STATE(3109)] = 89187, - [SMALL_STATE(3110)] = 89202, - [SMALL_STATE(3111)] = 89219, - [SMALL_STATE(3112)] = 89236, - [SMALL_STATE(3113)] = 89253, - [SMALL_STATE(3114)] = 89270, - [SMALL_STATE(3115)] = 89287, - [SMALL_STATE(3116)] = 89304, - [SMALL_STATE(3117)] = 89321, - [SMALL_STATE(3118)] = 89338, - [SMALL_STATE(3119)] = 89355, - [SMALL_STATE(3120)] = 89372, - [SMALL_STATE(3121)] = 89387, - [SMALL_STATE(3122)] = 89404, - [SMALL_STATE(3123)] = 89421, - [SMALL_STATE(3124)] = 89438, - [SMALL_STATE(3125)] = 89455, - [SMALL_STATE(3126)] = 89472, - [SMALL_STATE(3127)] = 89489, - [SMALL_STATE(3128)] = 89506, - [SMALL_STATE(3129)] = 89523, - [SMALL_STATE(3130)] = 89540, - [SMALL_STATE(3131)] = 89557, - [SMALL_STATE(3132)] = 89572, - [SMALL_STATE(3133)] = 89589, - [SMALL_STATE(3134)] = 89606, - [SMALL_STATE(3135)] = 89623, - [SMALL_STATE(3136)] = 89638, - [SMALL_STATE(3137)] = 89655, - [SMALL_STATE(3138)] = 89672, - [SMALL_STATE(3139)] = 89687, - [SMALL_STATE(3140)] = 89704, - [SMALL_STATE(3141)] = 89721, - [SMALL_STATE(3142)] = 89738, - [SMALL_STATE(3143)] = 89755, - [SMALL_STATE(3144)] = 89770, - [SMALL_STATE(3145)] = 89787, - [SMALL_STATE(3146)] = 89804, - [SMALL_STATE(3147)] = 89821, - [SMALL_STATE(3148)] = 89838, - [SMALL_STATE(3149)] = 89853, - [SMALL_STATE(3150)] = 89870, - [SMALL_STATE(3151)] = 89887, - [SMALL_STATE(3152)] = 89904, - [SMALL_STATE(3153)] = 89921, - [SMALL_STATE(3154)] = 89938, - [SMALL_STATE(3155)] = 89955, - [SMALL_STATE(3156)] = 89972, - [SMALL_STATE(3157)] = 89989, - [SMALL_STATE(3158)] = 90006, - [SMALL_STATE(3159)] = 90023, - [SMALL_STATE(3160)] = 90040, - [SMALL_STATE(3161)] = 90057, - [SMALL_STATE(3162)] = 90074, - [SMALL_STATE(3163)] = 90091, - [SMALL_STATE(3164)] = 90108, - [SMALL_STATE(3165)] = 90125, - [SMALL_STATE(3166)] = 90142, - [SMALL_STATE(3167)] = 90159, - [SMALL_STATE(3168)] = 90176, - [SMALL_STATE(3169)] = 90193, - [SMALL_STATE(3170)] = 90210, - [SMALL_STATE(3171)] = 90227, - [SMALL_STATE(3172)] = 90244, - [SMALL_STATE(3173)] = 90261, - [SMALL_STATE(3174)] = 90278, - [SMALL_STATE(3175)] = 90295, - [SMALL_STATE(3176)] = 90312, - [SMALL_STATE(3177)] = 90327, - [SMALL_STATE(3178)] = 90344, - [SMALL_STATE(3179)] = 90361, - [SMALL_STATE(3180)] = 90378, - [SMALL_STATE(3181)] = 90395, - [SMALL_STATE(3182)] = 90412, - [SMALL_STATE(3183)] = 90429, - [SMALL_STATE(3184)] = 90446, - [SMALL_STATE(3185)] = 90461, - [SMALL_STATE(3186)] = 90476, - [SMALL_STATE(3187)] = 90493, - [SMALL_STATE(3188)] = 90510, - [SMALL_STATE(3189)] = 90527, - [SMALL_STATE(3190)] = 90542, - [SMALL_STATE(3191)] = 90559, - [SMALL_STATE(3192)] = 90576, - [SMALL_STATE(3193)] = 90593, - [SMALL_STATE(3194)] = 90610, - [SMALL_STATE(3195)] = 90627, - [SMALL_STATE(3196)] = 90642, - [SMALL_STATE(3197)] = 90657, - [SMALL_STATE(3198)] = 90672, - [SMALL_STATE(3199)] = 90689, - [SMALL_STATE(3200)] = 90704, - [SMALL_STATE(3201)] = 90719, - [SMALL_STATE(3202)] = 90734, - [SMALL_STATE(3203)] = 90751, - [SMALL_STATE(3204)] = 90766, - [SMALL_STATE(3205)] = 90783, - [SMALL_STATE(3206)] = 90798, - [SMALL_STATE(3207)] = 90815, - [SMALL_STATE(3208)] = 90832, - [SMALL_STATE(3209)] = 90849, - [SMALL_STATE(3210)] = 90866, - [SMALL_STATE(3211)] = 90883, - [SMALL_STATE(3212)] = 90900, - [SMALL_STATE(3213)] = 90917, - [SMALL_STATE(3214)] = 90934, - [SMALL_STATE(3215)] = 90951, - [SMALL_STATE(3216)] = 90968, - [SMALL_STATE(3217)] = 90985, - [SMALL_STATE(3218)] = 91000, - [SMALL_STATE(3219)] = 91017, - [SMALL_STATE(3220)] = 91034, - [SMALL_STATE(3221)] = 91051, - [SMALL_STATE(3222)] = 91068, - [SMALL_STATE(3223)] = 91085, - [SMALL_STATE(3224)] = 91102, - [SMALL_STATE(3225)] = 91119, - [SMALL_STATE(3226)] = 91136, - [SMALL_STATE(3227)] = 91153, - [SMALL_STATE(3228)] = 91170, - [SMALL_STATE(3229)] = 91187, - [SMALL_STATE(3230)] = 91204, - [SMALL_STATE(3231)] = 91221, - [SMALL_STATE(3232)] = 91238, - [SMALL_STATE(3233)] = 91253, - [SMALL_STATE(3234)] = 91270, - [SMALL_STATE(3235)] = 91287, - [SMALL_STATE(3236)] = 91302, - [SMALL_STATE(3237)] = 91319, - [SMALL_STATE(3238)] = 91336, - [SMALL_STATE(3239)] = 91351, - [SMALL_STATE(3240)] = 91368, - [SMALL_STATE(3241)] = 91385, - [SMALL_STATE(3242)] = 91402, - [SMALL_STATE(3243)] = 91419, - [SMALL_STATE(3244)] = 91436, - [SMALL_STATE(3245)] = 91453, - [SMALL_STATE(3246)] = 91470, - [SMALL_STATE(3247)] = 91487, - [SMALL_STATE(3248)] = 91504, - [SMALL_STATE(3249)] = 91521, - [SMALL_STATE(3250)] = 91538, - [SMALL_STATE(3251)] = 91553, - [SMALL_STATE(3252)] = 91570, - [SMALL_STATE(3253)] = 91585, - [SMALL_STATE(3254)] = 91602, - [SMALL_STATE(3255)] = 91617, - [SMALL_STATE(3256)] = 91634, - [SMALL_STATE(3257)] = 91649, - [SMALL_STATE(3258)] = 91666, - [SMALL_STATE(3259)] = 91683, - [SMALL_STATE(3260)] = 91700, - [SMALL_STATE(3261)] = 91715, - [SMALL_STATE(3262)] = 91730, - [SMALL_STATE(3263)] = 91747, - [SMALL_STATE(3264)] = 91762, - [SMALL_STATE(3265)] = 91779, - [SMALL_STATE(3266)] = 91796, - [SMALL_STATE(3267)] = 91813, - [SMALL_STATE(3268)] = 91830, - [SMALL_STATE(3269)] = 91847, - [SMALL_STATE(3270)] = 91864, - [SMALL_STATE(3271)] = 91881, - [SMALL_STATE(3272)] = 91898, - [SMALL_STATE(3273)] = 91915, - [SMALL_STATE(3274)] = 91932, - [SMALL_STATE(3275)] = 91949, - [SMALL_STATE(3276)] = 91966, - [SMALL_STATE(3277)] = 91983, - [SMALL_STATE(3278)] = 92000, - [SMALL_STATE(3279)] = 92017, - [SMALL_STATE(3280)] = 92034, - [SMALL_STATE(3281)] = 92051, - [SMALL_STATE(3282)] = 92066, - [SMALL_STATE(3283)] = 92083, - [SMALL_STATE(3284)] = 92100, - [SMALL_STATE(3285)] = 92117, - [SMALL_STATE(3286)] = 92132, - [SMALL_STATE(3287)] = 92149, - [SMALL_STATE(3288)] = 92166, - [SMALL_STATE(3289)] = 92183, - [SMALL_STATE(3290)] = 92200, - [SMALL_STATE(3291)] = 92217, - [SMALL_STATE(3292)] = 92232, - [SMALL_STATE(3293)] = 92249, - [SMALL_STATE(3294)] = 92266, - [SMALL_STATE(3295)] = 92283, - [SMALL_STATE(3296)] = 92300, - [SMALL_STATE(3297)] = 92317, - [SMALL_STATE(3298)] = 92334, - [SMALL_STATE(3299)] = 92351, - [SMALL_STATE(3300)] = 92368, - [SMALL_STATE(3301)] = 92385, - [SMALL_STATE(3302)] = 92402, - [SMALL_STATE(3303)] = 92419, - [SMALL_STATE(3304)] = 92436, - [SMALL_STATE(3305)] = 92453, - [SMALL_STATE(3306)] = 92470, - [SMALL_STATE(3307)] = 92487, - [SMALL_STATE(3308)] = 92504, - [SMALL_STATE(3309)] = 92521, - [SMALL_STATE(3310)] = 92538, - [SMALL_STATE(3311)] = 92553, - [SMALL_STATE(3312)] = 92570, - [SMALL_STATE(3313)] = 92584, - [SMALL_STATE(3314)] = 92598, - [SMALL_STATE(3315)] = 92612, - [SMALL_STATE(3316)] = 92626, - [SMALL_STATE(3317)] = 92640, - [SMALL_STATE(3318)] = 92654, - [SMALL_STATE(3319)] = 92668, - [SMALL_STATE(3320)] = 92682, - [SMALL_STATE(3321)] = 92696, - [SMALL_STATE(3322)] = 92710, - [SMALL_STATE(3323)] = 92724, - [SMALL_STATE(3324)] = 92738, - [SMALL_STATE(3325)] = 92752, - [SMALL_STATE(3326)] = 92766, - [SMALL_STATE(3327)] = 92780, - [SMALL_STATE(3328)] = 92794, - [SMALL_STATE(3329)] = 92808, - [SMALL_STATE(3330)] = 92822, - [SMALL_STATE(3331)] = 92836, - [SMALL_STATE(3332)] = 92850, - [SMALL_STATE(3333)] = 92864, - [SMALL_STATE(3334)] = 92878, - [SMALL_STATE(3335)] = 92892, - [SMALL_STATE(3336)] = 92906, - [SMALL_STATE(3337)] = 92920, - [SMALL_STATE(3338)] = 92934, - [SMALL_STATE(3339)] = 92948, - [SMALL_STATE(3340)] = 92962, - [SMALL_STATE(3341)] = 92976, - [SMALL_STATE(3342)] = 92990, - [SMALL_STATE(3343)] = 93004, - [SMALL_STATE(3344)] = 93018, - [SMALL_STATE(3345)] = 93032, - [SMALL_STATE(3346)] = 93046, - [SMALL_STATE(3347)] = 93060, - [SMALL_STATE(3348)] = 93074, - [SMALL_STATE(3349)] = 93088, - [SMALL_STATE(3350)] = 93102, - [SMALL_STATE(3351)] = 93116, - [SMALL_STATE(3352)] = 93130, - [SMALL_STATE(3353)] = 93144, - [SMALL_STATE(3354)] = 93158, - [SMALL_STATE(3355)] = 93172, - [SMALL_STATE(3356)] = 93186, - [SMALL_STATE(3357)] = 93200, - [SMALL_STATE(3358)] = 93214, - [SMALL_STATE(3359)] = 93228, - [SMALL_STATE(3360)] = 93242, - [SMALL_STATE(3361)] = 93256, - [SMALL_STATE(3362)] = 93270, - [SMALL_STATE(3363)] = 93284, - [SMALL_STATE(3364)] = 93298, - [SMALL_STATE(3365)] = 93312, - [SMALL_STATE(3366)] = 93326, - [SMALL_STATE(3367)] = 93340, - [SMALL_STATE(3368)] = 93354, - [SMALL_STATE(3369)] = 93368, - [SMALL_STATE(3370)] = 93382, - [SMALL_STATE(3371)] = 93396, - [SMALL_STATE(3372)] = 93410, - [SMALL_STATE(3373)] = 93424, - [SMALL_STATE(3374)] = 93438, - [SMALL_STATE(3375)] = 93452, - [SMALL_STATE(3376)] = 93466, - [SMALL_STATE(3377)] = 93480, - [SMALL_STATE(3378)] = 93494, - [SMALL_STATE(3379)] = 93508, - [SMALL_STATE(3380)] = 93522, - [SMALL_STATE(3381)] = 93536, - [SMALL_STATE(3382)] = 93550, - [SMALL_STATE(3383)] = 93564, - [SMALL_STATE(3384)] = 93578, - [SMALL_STATE(3385)] = 93592, - [SMALL_STATE(3386)] = 93606, - [SMALL_STATE(3387)] = 93620, - [SMALL_STATE(3388)] = 93634, - [SMALL_STATE(3389)] = 93648, - [SMALL_STATE(3390)] = 93662, - [SMALL_STATE(3391)] = 93676, - [SMALL_STATE(3392)] = 93690, - [SMALL_STATE(3393)] = 93704, - [SMALL_STATE(3394)] = 93718, - [SMALL_STATE(3395)] = 93732, - [SMALL_STATE(3396)] = 93746, - [SMALL_STATE(3397)] = 93760, - [SMALL_STATE(3398)] = 93774, - [SMALL_STATE(3399)] = 93788, - [SMALL_STATE(3400)] = 93802, - [SMALL_STATE(3401)] = 93816, - [SMALL_STATE(3402)] = 93830, - [SMALL_STATE(3403)] = 93844, - [SMALL_STATE(3404)] = 93858, - [SMALL_STATE(3405)] = 93872, - [SMALL_STATE(3406)] = 93886, - [SMALL_STATE(3407)] = 93900, - [SMALL_STATE(3408)] = 93914, - [SMALL_STATE(3409)] = 93928, - [SMALL_STATE(3410)] = 93942, - [SMALL_STATE(3411)] = 93956, - [SMALL_STATE(3412)] = 93970, - [SMALL_STATE(3413)] = 93984, - [SMALL_STATE(3414)] = 93998, - [SMALL_STATE(3415)] = 94012, - [SMALL_STATE(3416)] = 94026, - [SMALL_STATE(3417)] = 94040, - [SMALL_STATE(3418)] = 94054, - [SMALL_STATE(3419)] = 94068, - [SMALL_STATE(3420)] = 94082, - [SMALL_STATE(3421)] = 94096, - [SMALL_STATE(3422)] = 94110, - [SMALL_STATE(3423)] = 94124, - [SMALL_STATE(3424)] = 94138, - [SMALL_STATE(3425)] = 94152, - [SMALL_STATE(3426)] = 94166, - [SMALL_STATE(3427)] = 94180, - [SMALL_STATE(3428)] = 94194, - [SMALL_STATE(3429)] = 94208, - [SMALL_STATE(3430)] = 94222, - [SMALL_STATE(3431)] = 94236, - [SMALL_STATE(3432)] = 94250, - [SMALL_STATE(3433)] = 94264, - [SMALL_STATE(3434)] = 94278, - [SMALL_STATE(3435)] = 94292, - [SMALL_STATE(3436)] = 94306, - [SMALL_STATE(3437)] = 94320, - [SMALL_STATE(3438)] = 94334, - [SMALL_STATE(3439)] = 94348, - [SMALL_STATE(3440)] = 94362, - [SMALL_STATE(3441)] = 94376, - [SMALL_STATE(3442)] = 94390, - [SMALL_STATE(3443)] = 94404, - [SMALL_STATE(3444)] = 94418, - [SMALL_STATE(3445)] = 94432, - [SMALL_STATE(3446)] = 94446, - [SMALL_STATE(3447)] = 94460, - [SMALL_STATE(3448)] = 94474, - [SMALL_STATE(3449)] = 94488, - [SMALL_STATE(3450)] = 94502, - [SMALL_STATE(3451)] = 94516, - [SMALL_STATE(3452)] = 94530, - [SMALL_STATE(3453)] = 94544, - [SMALL_STATE(3454)] = 94558, - [SMALL_STATE(3455)] = 94572, - [SMALL_STATE(3456)] = 94586, - [SMALL_STATE(3457)] = 94600, - [SMALL_STATE(3458)] = 94614, - [SMALL_STATE(3459)] = 94628, - [SMALL_STATE(3460)] = 94642, - [SMALL_STATE(3461)] = 94656, - [SMALL_STATE(3462)] = 94670, - [SMALL_STATE(3463)] = 94684, - [SMALL_STATE(3464)] = 94698, - [SMALL_STATE(3465)] = 94712, - [SMALL_STATE(3466)] = 94726, - [SMALL_STATE(3467)] = 94740, - [SMALL_STATE(3468)] = 94754, - [SMALL_STATE(3469)] = 94768, - [SMALL_STATE(3470)] = 94782, - [SMALL_STATE(3471)] = 94796, - [SMALL_STATE(3472)] = 94810, - [SMALL_STATE(3473)] = 94824, - [SMALL_STATE(3474)] = 94838, - [SMALL_STATE(3475)] = 94852, - [SMALL_STATE(3476)] = 94866, - [SMALL_STATE(3477)] = 94880, - [SMALL_STATE(3478)] = 94894, - [SMALL_STATE(3479)] = 94908, - [SMALL_STATE(3480)] = 94922, - [SMALL_STATE(3481)] = 94936, - [SMALL_STATE(3482)] = 94950, - [SMALL_STATE(3483)] = 94964, - [SMALL_STATE(3484)] = 94978, - [SMALL_STATE(3485)] = 94992, - [SMALL_STATE(3486)] = 95006, - [SMALL_STATE(3487)] = 95020, - [SMALL_STATE(3488)] = 95034, - [SMALL_STATE(3489)] = 95048, - [SMALL_STATE(3490)] = 95062, - [SMALL_STATE(3491)] = 95076, - [SMALL_STATE(3492)] = 95090, - [SMALL_STATE(3493)] = 95104, - [SMALL_STATE(3494)] = 95118, - [SMALL_STATE(3495)] = 95132, - [SMALL_STATE(3496)] = 95146, - [SMALL_STATE(3497)] = 95160, - [SMALL_STATE(3498)] = 95174, - [SMALL_STATE(3499)] = 95188, - [SMALL_STATE(3500)] = 95202, - [SMALL_STATE(3501)] = 95216, - [SMALL_STATE(3502)] = 95230, - [SMALL_STATE(3503)] = 95244, - [SMALL_STATE(3504)] = 95258, - [SMALL_STATE(3505)] = 95272, - [SMALL_STATE(3506)] = 95286, - [SMALL_STATE(3507)] = 95300, - [SMALL_STATE(3508)] = 95314, - [SMALL_STATE(3509)] = 95328, - [SMALL_STATE(3510)] = 95342, - [SMALL_STATE(3511)] = 95356, - [SMALL_STATE(3512)] = 95370, - [SMALL_STATE(3513)] = 95384, - [SMALL_STATE(3514)] = 95398, - [SMALL_STATE(3515)] = 95412, - [SMALL_STATE(3516)] = 95426, - [SMALL_STATE(3517)] = 95440, - [SMALL_STATE(3518)] = 95454, - [SMALL_STATE(3519)] = 95468, - [SMALL_STATE(3520)] = 95482, - [SMALL_STATE(3521)] = 95496, - [SMALL_STATE(3522)] = 95510, - [SMALL_STATE(3523)] = 95524, - [SMALL_STATE(3524)] = 95538, - [SMALL_STATE(3525)] = 95552, - [SMALL_STATE(3526)] = 95566, - [SMALL_STATE(3527)] = 95580, - [SMALL_STATE(3528)] = 95594, - [SMALL_STATE(3529)] = 95608, - [SMALL_STATE(3530)] = 95622, - [SMALL_STATE(3531)] = 95636, - [SMALL_STATE(3532)] = 95650, - [SMALL_STATE(3533)] = 95664, - [SMALL_STATE(3534)] = 95678, - [SMALL_STATE(3535)] = 95692, - [SMALL_STATE(3536)] = 95706, - [SMALL_STATE(3537)] = 95720, - [SMALL_STATE(3538)] = 95734, - [SMALL_STATE(3539)] = 95748, - [SMALL_STATE(3540)] = 95762, - [SMALL_STATE(3541)] = 95776, - [SMALL_STATE(3542)] = 95790, - [SMALL_STATE(3543)] = 95804, - [SMALL_STATE(3544)] = 95818, - [SMALL_STATE(3545)] = 95832, - [SMALL_STATE(3546)] = 95846, - [SMALL_STATE(3547)] = 95860, - [SMALL_STATE(3548)] = 95874, - [SMALL_STATE(3549)] = 95888, - [SMALL_STATE(3550)] = 95902, - [SMALL_STATE(3551)] = 95916, - [SMALL_STATE(3552)] = 95930, - [SMALL_STATE(3553)] = 95944, - [SMALL_STATE(3554)] = 95958, - [SMALL_STATE(3555)] = 95972, - [SMALL_STATE(3556)] = 95986, - [SMALL_STATE(3557)] = 96000, - [SMALL_STATE(3558)] = 96014, - [SMALL_STATE(3559)] = 96028, - [SMALL_STATE(3560)] = 96042, - [SMALL_STATE(3561)] = 96056, - [SMALL_STATE(3562)] = 96070, - [SMALL_STATE(3563)] = 96084, - [SMALL_STATE(3564)] = 96098, - [SMALL_STATE(3565)] = 96112, - [SMALL_STATE(3566)] = 96126, - [SMALL_STATE(3567)] = 96140, - [SMALL_STATE(3568)] = 96154, - [SMALL_STATE(3569)] = 96168, - [SMALL_STATE(3570)] = 96182, - [SMALL_STATE(3571)] = 96196, - [SMALL_STATE(3572)] = 96210, - [SMALL_STATE(3573)] = 96224, - [SMALL_STATE(3574)] = 96238, - [SMALL_STATE(3575)] = 96252, - [SMALL_STATE(3576)] = 96266, - [SMALL_STATE(3577)] = 96280, - [SMALL_STATE(3578)] = 96294, - [SMALL_STATE(3579)] = 96308, - [SMALL_STATE(3580)] = 96322, - [SMALL_STATE(3581)] = 96336, - [SMALL_STATE(3582)] = 96350, - [SMALL_STATE(3583)] = 96364, - [SMALL_STATE(3584)] = 96378, - [SMALL_STATE(3585)] = 96392, - [SMALL_STATE(3586)] = 96406, - [SMALL_STATE(3587)] = 96420, - [SMALL_STATE(3588)] = 96434, - [SMALL_STATE(3589)] = 96448, - [SMALL_STATE(3590)] = 96462, - [SMALL_STATE(3591)] = 96476, - [SMALL_STATE(3592)] = 96490, - [SMALL_STATE(3593)] = 96504, - [SMALL_STATE(3594)] = 96518, - [SMALL_STATE(3595)] = 96532, - [SMALL_STATE(3596)] = 96546, - [SMALL_STATE(3597)] = 96560, - [SMALL_STATE(3598)] = 96574, - [SMALL_STATE(3599)] = 96588, - [SMALL_STATE(3600)] = 96602, - [SMALL_STATE(3601)] = 96616, - [SMALL_STATE(3602)] = 96630, - [SMALL_STATE(3603)] = 96644, - [SMALL_STATE(3604)] = 96658, - [SMALL_STATE(3605)] = 96672, - [SMALL_STATE(3606)] = 96686, - [SMALL_STATE(3607)] = 96700, - [SMALL_STATE(3608)] = 96714, - [SMALL_STATE(3609)] = 96728, - [SMALL_STATE(3610)] = 96742, - [SMALL_STATE(3611)] = 96756, - [SMALL_STATE(3612)] = 96770, - [SMALL_STATE(3613)] = 96784, - [SMALL_STATE(3614)] = 96788, - [SMALL_STATE(3615)] = 96792, - [SMALL_STATE(3616)] = 96796, - [SMALL_STATE(3617)] = 96800, - [SMALL_STATE(3618)] = 96804, - [SMALL_STATE(3619)] = 96808, + [SMALL_STATE(1024)] = 0, + [SMALL_STATE(1025)] = 75, + [SMALL_STATE(1026)] = 150, + [SMALL_STATE(1027)] = 224, + [SMALL_STATE(1028)] = 294, + [SMALL_STATE(1029)] = 363, + [SMALL_STATE(1030)] = 462, + [SMALL_STATE(1031)] = 561, + [SMALL_STATE(1032)] = 638, + [SMALL_STATE(1033)] = 702, + [SMALL_STATE(1034)] = 766, + [SMALL_STATE(1035)] = 840, + [SMALL_STATE(1036)] = 914, + [SMALL_STATE(1037)] = 978, + [SMALL_STATE(1038)] = 1042, + [SMALL_STATE(1039)] = 1106, + [SMALL_STATE(1040)] = 1170, + [SMALL_STATE(1041)] = 1234, + [SMALL_STATE(1042)] = 1298, + [SMALL_STATE(1043)] = 1362, + [SMALL_STATE(1044)] = 1436, + [SMALL_STATE(1045)] = 1499, + [SMALL_STATE(1046)] = 1570, + [SMALL_STATE(1047)] = 1633, + [SMALL_STATE(1048)] = 1700, + [SMALL_STATE(1049)] = 1771, + [SMALL_STATE(1050)] = 1834, + [SMALL_STATE(1051)] = 1901, + [SMALL_STATE(1052)] = 1964, + [SMALL_STATE(1053)] = 2031, + [SMALL_STATE(1054)] = 2094, + [SMALL_STATE(1055)] = 2165, + [SMALL_STATE(1056)] = 2232, + [SMALL_STATE(1057)] = 2303, + [SMALL_STATE(1058)] = 2371, + [SMALL_STATE(1059)] = 2433, + [SMALL_STATE(1060)] = 2495, + [SMALL_STATE(1061)] = 2565, + [SMALL_STATE(1062)] = 2631, + [SMALL_STATE(1063)] = 2693, + [SMALL_STATE(1064)] = 2755, + [SMALL_STATE(1065)] = 2816, + [SMALL_STATE(1066)] = 2877, + [SMALL_STATE(1067)] = 2938, + [SMALL_STATE(1068)] = 2999, + [SMALL_STATE(1069)] = 3060, + [SMALL_STATE(1070)] = 3121, + [SMALL_STATE(1071)] = 3182, + [SMALL_STATE(1072)] = 3243, + [SMALL_STATE(1073)] = 3304, + [SMALL_STATE(1074)] = 3365, + [SMALL_STATE(1075)] = 3426, + [SMALL_STATE(1076)] = 3487, + [SMALL_STATE(1077)] = 3548, + [SMALL_STATE(1078)] = 3609, + [SMALL_STATE(1079)] = 3670, + [SMALL_STATE(1080)] = 3731, + [SMALL_STATE(1081)] = 3792, + [SMALL_STATE(1082)] = 3891, + [SMALL_STATE(1083)] = 3952, + [SMALL_STATE(1084)] = 4013, + [SMALL_STATE(1085)] = 4074, + [SMALL_STATE(1086)] = 4139, + [SMALL_STATE(1087)] = 4200, + [SMALL_STATE(1088)] = 4261, + [SMALL_STATE(1089)] = 4322, + [SMALL_STATE(1090)] = 4383, + [SMALL_STATE(1091)] = 4444, + [SMALL_STATE(1092)] = 4505, + [SMALL_STATE(1093)] = 4566, + [SMALL_STATE(1094)] = 4627, + [SMALL_STATE(1095)] = 4688, + [SMALL_STATE(1096)] = 4749, + [SMALL_STATE(1097)] = 4810, + [SMALL_STATE(1098)] = 4871, + [SMALL_STATE(1099)] = 4932, + [SMALL_STATE(1100)] = 4993, + [SMALL_STATE(1101)] = 5054, + [SMALL_STATE(1102)] = 5115, + [SMALL_STATE(1103)] = 5176, + [SMALL_STATE(1104)] = 5237, + [SMALL_STATE(1105)] = 5300, + [SMALL_STATE(1106)] = 5361, + [SMALL_STATE(1107)] = 5422, + [SMALL_STATE(1108)] = 5483, + [SMALL_STATE(1109)] = 5544, + [SMALL_STATE(1110)] = 5605, + [SMALL_STATE(1111)] = 5666, + [SMALL_STATE(1112)] = 5727, + [SMALL_STATE(1113)] = 5788, + [SMALL_STATE(1114)] = 5849, + [SMALL_STATE(1115)] = 5910, + [SMALL_STATE(1116)] = 5971, + [SMALL_STATE(1117)] = 6032, + [SMALL_STATE(1118)] = 6095, + [SMALL_STATE(1119)] = 6158, + [SMALL_STATE(1120)] = 6219, + [SMALL_STATE(1121)] = 6280, + [SMALL_STATE(1122)] = 6341, + [SMALL_STATE(1123)] = 6404, + [SMALL_STATE(1124)] = 6465, + [SMALL_STATE(1125)] = 6570, + [SMALL_STATE(1126)] = 6631, + [SMALL_STATE(1127)] = 6692, + [SMALL_STATE(1128)] = 6753, + [SMALL_STATE(1129)] = 6814, + [SMALL_STATE(1130)] = 6875, + [SMALL_STATE(1131)] = 6936, + [SMALL_STATE(1132)] = 6997, + [SMALL_STATE(1133)] = 7058, + [SMALL_STATE(1134)] = 7119, + [SMALL_STATE(1135)] = 7180, + [SMALL_STATE(1136)] = 7241, + [SMALL_STATE(1137)] = 7302, + [SMALL_STATE(1138)] = 7363, + [SMALL_STATE(1139)] = 7424, + [SMALL_STATE(1140)] = 7485, + [SMALL_STATE(1141)] = 7546, + [SMALL_STATE(1142)] = 7607, + [SMALL_STATE(1143)] = 7668, + [SMALL_STATE(1144)] = 7729, + [SMALL_STATE(1145)] = 7790, + [SMALL_STATE(1146)] = 7851, + [SMALL_STATE(1147)] = 7912, + [SMALL_STATE(1148)] = 7973, + [SMALL_STATE(1149)] = 8034, + [SMALL_STATE(1150)] = 8095, + [SMALL_STATE(1151)] = 8156, + [SMALL_STATE(1152)] = 8217, + [SMALL_STATE(1153)] = 8278, + [SMALL_STATE(1154)] = 8339, + [SMALL_STATE(1155)] = 8400, + [SMALL_STATE(1156)] = 8461, + [SMALL_STATE(1157)] = 8522, + [SMALL_STATE(1158)] = 8583, + [SMALL_STATE(1159)] = 8644, + [SMALL_STATE(1160)] = 8705, + [SMALL_STATE(1161)] = 8766, + [SMALL_STATE(1162)] = 8827, + [SMALL_STATE(1163)] = 8888, + [SMALL_STATE(1164)] = 8949, + [SMALL_STATE(1165)] = 9010, + [SMALL_STATE(1166)] = 9071, + [SMALL_STATE(1167)] = 9132, + [SMALL_STATE(1168)] = 9193, + [SMALL_STATE(1169)] = 9254, + [SMALL_STATE(1170)] = 9315, + [SMALL_STATE(1171)] = 9376, + [SMALL_STATE(1172)] = 9437, + [SMALL_STATE(1173)] = 9498, + [SMALL_STATE(1174)] = 9559, + [SMALL_STATE(1175)] = 9624, + [SMALL_STATE(1176)] = 9685, + [SMALL_STATE(1177)] = 9746, + [SMALL_STATE(1178)] = 9807, + [SMALL_STATE(1179)] = 9868, + [SMALL_STATE(1180)] = 9929, + [SMALL_STATE(1181)] = 9990, + [SMALL_STATE(1182)] = 10051, + [SMALL_STATE(1183)] = 10112, + [SMALL_STATE(1184)] = 10173, + [SMALL_STATE(1185)] = 10236, + [SMALL_STATE(1186)] = 10297, + [SMALL_STATE(1187)] = 10360, + [SMALL_STATE(1188)] = 10423, + [SMALL_STATE(1189)] = 10484, + [SMALL_STATE(1190)] = 10545, + [SMALL_STATE(1191)] = 10606, + [SMALL_STATE(1192)] = 10667, + [SMALL_STATE(1193)] = 10728, + [SMALL_STATE(1194)] = 10789, + [SMALL_STATE(1195)] = 10850, + [SMALL_STATE(1196)] = 10911, + [SMALL_STATE(1197)] = 10972, + [SMALL_STATE(1198)] = 11033, + [SMALL_STATE(1199)] = 11138, + [SMALL_STATE(1200)] = 11201, + [SMALL_STATE(1201)] = 11262, + [SMALL_STATE(1202)] = 11323, + [SMALL_STATE(1203)] = 11386, + [SMALL_STATE(1204)] = 11447, + [SMALL_STATE(1205)] = 11508, + [SMALL_STATE(1206)] = 11569, + [SMALL_STATE(1207)] = 11630, + [SMALL_STATE(1208)] = 11691, + [SMALL_STATE(1209)] = 11752, + [SMALL_STATE(1210)] = 11813, + [SMALL_STATE(1211)] = 11874, + [SMALL_STATE(1212)] = 11935, + [SMALL_STATE(1213)] = 11996, + [SMALL_STATE(1214)] = 12057, + [SMALL_STATE(1215)] = 12118, + [SMALL_STATE(1216)] = 12179, + [SMALL_STATE(1217)] = 12240, + [SMALL_STATE(1218)] = 12301, + [SMALL_STATE(1219)] = 12362, + [SMALL_STATE(1220)] = 12423, + [SMALL_STATE(1221)] = 12484, + [SMALL_STATE(1222)] = 12545, + [SMALL_STATE(1223)] = 12606, + [SMALL_STATE(1224)] = 12667, + [SMALL_STATE(1225)] = 12728, + [SMALL_STATE(1226)] = 12789, + [SMALL_STATE(1227)] = 12850, + [SMALL_STATE(1228)] = 12911, + [SMALL_STATE(1229)] = 12972, + [SMALL_STATE(1230)] = 13033, + [SMALL_STATE(1231)] = 13094, + [SMALL_STATE(1232)] = 13155, + [SMALL_STATE(1233)] = 13216, + [SMALL_STATE(1234)] = 13277, + [SMALL_STATE(1235)] = 13340, + [SMALL_STATE(1236)] = 13401, + [SMALL_STATE(1237)] = 13462, + [SMALL_STATE(1238)] = 13527, + [SMALL_STATE(1239)] = 13588, + [SMALL_STATE(1240)] = 13649, + [SMALL_STATE(1241)] = 13710, + [SMALL_STATE(1242)] = 13771, + [SMALL_STATE(1243)] = 13876, + [SMALL_STATE(1244)] = 13937, + [SMALL_STATE(1245)] = 13998, + [SMALL_STATE(1246)] = 14059, + [SMALL_STATE(1247)] = 14120, + [SMALL_STATE(1248)] = 14181, + [SMALL_STATE(1249)] = 14242, + [SMALL_STATE(1250)] = 14303, + [SMALL_STATE(1251)] = 14364, + [SMALL_STATE(1252)] = 14425, + [SMALL_STATE(1253)] = 14486, + [SMALL_STATE(1254)] = 14547, + [SMALL_STATE(1255)] = 14608, + [SMALL_STATE(1256)] = 14669, + [SMALL_STATE(1257)] = 14730, + [SMALL_STATE(1258)] = 14791, + [SMALL_STATE(1259)] = 14852, + [SMALL_STATE(1260)] = 14913, + [SMALL_STATE(1261)] = 14974, + [SMALL_STATE(1262)] = 15035, + [SMALL_STATE(1263)] = 15096, + [SMALL_STATE(1264)] = 15157, + [SMALL_STATE(1265)] = 15218, + [SMALL_STATE(1266)] = 15279, + [SMALL_STATE(1267)] = 15340, + [SMALL_STATE(1268)] = 15401, + [SMALL_STATE(1269)] = 15464, + [SMALL_STATE(1270)] = 15527, + [SMALL_STATE(1271)] = 15590, + [SMALL_STATE(1272)] = 15651, + [SMALL_STATE(1273)] = 15714, + [SMALL_STATE(1274)] = 15775, + [SMALL_STATE(1275)] = 15836, + [SMALL_STATE(1276)] = 15897, + [SMALL_STATE(1277)] = 15958, + [SMALL_STATE(1278)] = 16019, + [SMALL_STATE(1279)] = 16080, + [SMALL_STATE(1280)] = 16145, + [SMALL_STATE(1281)] = 16208, + [SMALL_STATE(1282)] = 16271, + [SMALL_STATE(1283)] = 16332, + [SMALL_STATE(1284)] = 16393, + [SMALL_STATE(1285)] = 16456, + [SMALL_STATE(1286)] = 16517, + [SMALL_STATE(1287)] = 16578, + [SMALL_STATE(1288)] = 16639, + [SMALL_STATE(1289)] = 16700, + [SMALL_STATE(1290)] = 16761, + [SMALL_STATE(1291)] = 16822, + [SMALL_STATE(1292)] = 16883, + [SMALL_STATE(1293)] = 16944, + [SMALL_STATE(1294)] = 17005, + [SMALL_STATE(1295)] = 17066, + [SMALL_STATE(1296)] = 17127, + [SMALL_STATE(1297)] = 17188, + [SMALL_STATE(1298)] = 17249, + [SMALL_STATE(1299)] = 17310, + [SMALL_STATE(1300)] = 17415, + [SMALL_STATE(1301)] = 17478, + [SMALL_STATE(1302)] = 17539, + [SMALL_STATE(1303)] = 17600, + [SMALL_STATE(1304)] = 17661, + [SMALL_STATE(1305)] = 17722, + [SMALL_STATE(1306)] = 17783, + [SMALL_STATE(1307)] = 17844, + [SMALL_STATE(1308)] = 17905, + [SMALL_STATE(1309)] = 17966, + [SMALL_STATE(1310)] = 18027, + [SMALL_STATE(1311)] = 18088, + [SMALL_STATE(1312)] = 18149, + [SMALL_STATE(1313)] = 18210, + [SMALL_STATE(1314)] = 18271, + [SMALL_STATE(1315)] = 18332, + [SMALL_STATE(1316)] = 18393, + [SMALL_STATE(1317)] = 18454, + [SMALL_STATE(1318)] = 18515, + [SMALL_STATE(1319)] = 18576, + [SMALL_STATE(1320)] = 18637, + [SMALL_STATE(1321)] = 18698, + [SMALL_STATE(1322)] = 18759, + [SMALL_STATE(1323)] = 18820, + [SMALL_STATE(1324)] = 18881, + [SMALL_STATE(1325)] = 18942, + [SMALL_STATE(1326)] = 19003, + [SMALL_STATE(1327)] = 19064, + [SMALL_STATE(1328)] = 19125, + [SMALL_STATE(1329)] = 19186, + [SMALL_STATE(1330)] = 19247, + [SMALL_STATE(1331)] = 19308, + [SMALL_STATE(1332)] = 19369, + [SMALL_STATE(1333)] = 19430, + [SMALL_STATE(1334)] = 19491, + [SMALL_STATE(1335)] = 19552, + [SMALL_STATE(1336)] = 19613, + [SMALL_STATE(1337)] = 19674, + [SMALL_STATE(1338)] = 19779, + [SMALL_STATE(1339)] = 19840, + [SMALL_STATE(1340)] = 19901, + [SMALL_STATE(1341)] = 20006, + [SMALL_STATE(1342)] = 20067, + [SMALL_STATE(1343)] = 20128, + [SMALL_STATE(1344)] = 20189, + [SMALL_STATE(1345)] = 20250, + [SMALL_STATE(1346)] = 20311, + [SMALL_STATE(1347)] = 20372, + [SMALL_STATE(1348)] = 20433, + [SMALL_STATE(1349)] = 20494, + [SMALL_STATE(1350)] = 20555, + [SMALL_STATE(1351)] = 20616, + [SMALL_STATE(1352)] = 20715, + [SMALL_STATE(1353)] = 20776, + [SMALL_STATE(1354)] = 20837, + [SMALL_STATE(1355)] = 20898, + [SMALL_STATE(1356)] = 20959, + [SMALL_STATE(1357)] = 21020, + [SMALL_STATE(1358)] = 21081, + [SMALL_STATE(1359)] = 21142, + [SMALL_STATE(1360)] = 21203, + [SMALL_STATE(1361)] = 21264, + [SMALL_STATE(1362)] = 21325, + [SMALL_STATE(1363)] = 21386, + [SMALL_STATE(1364)] = 21447, + [SMALL_STATE(1365)] = 21508, + [SMALL_STATE(1366)] = 21569, + [SMALL_STATE(1367)] = 21630, + [SMALL_STATE(1368)] = 21691, + [SMALL_STATE(1369)] = 21752, + [SMALL_STATE(1370)] = 21813, + [SMALL_STATE(1371)] = 21874, + [SMALL_STATE(1372)] = 21935, + [SMALL_STATE(1373)] = 21996, + [SMALL_STATE(1374)] = 22057, + [SMALL_STATE(1375)] = 22118, + [SMALL_STATE(1376)] = 22179, + [SMALL_STATE(1377)] = 22240, + [SMALL_STATE(1378)] = 22301, + [SMALL_STATE(1379)] = 22362, + [SMALL_STATE(1380)] = 22423, + [SMALL_STATE(1381)] = 22484, + [SMALL_STATE(1382)] = 22545, + [SMALL_STATE(1383)] = 22605, + [SMALL_STATE(1384)] = 22665, + [SMALL_STATE(1385)] = 22725, + [SMALL_STATE(1386)] = 22785, + [SMALL_STATE(1387)] = 22845, + [SMALL_STATE(1388)] = 22905, + [SMALL_STATE(1389)] = 22965, + [SMALL_STATE(1390)] = 23025, + [SMALL_STATE(1391)] = 23085, + [SMALL_STATE(1392)] = 23145, + [SMALL_STATE(1393)] = 23205, + [SMALL_STATE(1394)] = 23265, + [SMALL_STATE(1395)] = 23325, + [SMALL_STATE(1396)] = 23385, + [SMALL_STATE(1397)] = 23445, + [SMALL_STATE(1398)] = 23505, + [SMALL_STATE(1399)] = 23565, + [SMALL_STATE(1400)] = 23625, + [SMALL_STATE(1401)] = 23685, + [SMALL_STATE(1402)] = 23745, + [SMALL_STATE(1403)] = 23805, + [SMALL_STATE(1404)] = 23871, + [SMALL_STATE(1405)] = 23931, + [SMALL_STATE(1406)] = 23997, + [SMALL_STATE(1407)] = 24057, + [SMALL_STATE(1408)] = 24117, + [SMALL_STATE(1409)] = 24177, + [SMALL_STATE(1410)] = 24237, + [SMALL_STATE(1411)] = 24297, + [SMALL_STATE(1412)] = 24357, + [SMALL_STATE(1413)] = 24417, + [SMALL_STATE(1414)] = 24477, + [SMALL_STATE(1415)] = 24537, + [SMALL_STATE(1416)] = 24597, + [SMALL_STATE(1417)] = 24657, + [SMALL_STATE(1418)] = 24717, + [SMALL_STATE(1419)] = 24777, + [SMALL_STATE(1420)] = 24841, + [SMALL_STATE(1421)] = 24901, + [SMALL_STATE(1422)] = 24963, + [SMALL_STATE(1423)] = 25023, + [SMALL_STATE(1424)] = 25083, + [SMALL_STATE(1425)] = 25143, + [SMALL_STATE(1426)] = 25203, + [SMALL_STATE(1427)] = 25263, + [SMALL_STATE(1428)] = 25327, + [SMALL_STATE(1429)] = 25387, + [SMALL_STATE(1430)] = 25447, + [SMALL_STATE(1431)] = 25507, + [SMALL_STATE(1432)] = 25567, + [SMALL_STATE(1433)] = 25627, + [SMALL_STATE(1434)] = 25687, + [SMALL_STATE(1435)] = 25747, + [SMALL_STATE(1436)] = 25807, + [SMALL_STATE(1437)] = 25867, + [SMALL_STATE(1438)] = 25927, + [SMALL_STATE(1439)] = 25987, + [SMALL_STATE(1440)] = 26047, + [SMALL_STATE(1441)] = 26107, + [SMALL_STATE(1442)] = 26167, + [SMALL_STATE(1443)] = 26227, + [SMALL_STATE(1444)] = 26287, + [SMALL_STATE(1445)] = 26347, + [SMALL_STATE(1446)] = 26407, + [SMALL_STATE(1447)] = 26467, + [SMALL_STATE(1448)] = 26527, + [SMALL_STATE(1449)] = 26587, + [SMALL_STATE(1450)] = 26649, + [SMALL_STATE(1451)] = 26709, + [SMALL_STATE(1452)] = 26769, + [SMALL_STATE(1453)] = 26829, + [SMALL_STATE(1454)] = 26889, + [SMALL_STATE(1455)] = 26949, + [SMALL_STATE(1456)] = 27009, + [SMALL_STATE(1457)] = 27075, + [SMALL_STATE(1458)] = 27135, + [SMALL_STATE(1459)] = 27195, + [SMALL_STATE(1460)] = 27255, + [SMALL_STATE(1461)] = 27315, + [SMALL_STATE(1462)] = 27375, + [SMALL_STATE(1463)] = 27435, + [SMALL_STATE(1464)] = 27495, + [SMALL_STATE(1465)] = 27555, + [SMALL_STATE(1466)] = 27615, + [SMALL_STATE(1467)] = 27675, + [SMALL_STATE(1468)] = 27735, + [SMALL_STATE(1469)] = 27795, + [SMALL_STATE(1470)] = 27887, + [SMALL_STATE(1471)] = 27947, + [SMALL_STATE(1472)] = 28007, + [SMALL_STATE(1473)] = 28067, + [SMALL_STATE(1474)] = 28127, + [SMALL_STATE(1475)] = 28187, + [SMALL_STATE(1476)] = 28279, + [SMALL_STATE(1477)] = 28339, + [SMALL_STATE(1478)] = 28399, + [SMALL_STATE(1479)] = 28467, + [SMALL_STATE(1480)] = 28527, + [SMALL_STATE(1481)] = 28587, + [SMALL_STATE(1482)] = 28647, + [SMALL_STATE(1483)] = 28707, + [SMALL_STATE(1484)] = 28767, + [SMALL_STATE(1485)] = 28827, + [SMALL_STATE(1486)] = 28887, + [SMALL_STATE(1487)] = 28949, + [SMALL_STATE(1488)] = 29009, + [SMALL_STATE(1489)] = 29069, + [SMALL_STATE(1490)] = 29129, + [SMALL_STATE(1491)] = 29189, + [SMALL_STATE(1492)] = 29249, + [SMALL_STATE(1493)] = 29309, + [SMALL_STATE(1494)] = 29369, + [SMALL_STATE(1495)] = 29429, + [SMALL_STATE(1496)] = 29489, + [SMALL_STATE(1497)] = 29549, + [SMALL_STATE(1498)] = 29609, + [SMALL_STATE(1499)] = 29669, + [SMALL_STATE(1500)] = 29729, + [SMALL_STATE(1501)] = 29789, + [SMALL_STATE(1502)] = 29849, + [SMALL_STATE(1503)] = 29911, + [SMALL_STATE(1504)] = 29971, + [SMALL_STATE(1505)] = 30031, + [SMALL_STATE(1506)] = 30090, + [SMALL_STATE(1507)] = 30149, + [SMALL_STATE(1508)] = 30208, + [SMALL_STATE(1509)] = 30267, + [SMALL_STATE(1510)] = 30362, + [SMALL_STATE(1511)] = 30457, + [SMALL_STATE(1512)] = 30518, + [SMALL_STATE(1513)] = 30577, + [SMALL_STATE(1514)] = 30638, + [SMALL_STATE(1515)] = 30697, + [SMALL_STATE(1516)] = 30756, + [SMALL_STATE(1517)] = 30830, + [SMALL_STATE(1518)] = 30898, + [SMALL_STATE(1519)] = 30988, + [SMALL_STATE(1520)] = 31078, + [SMALL_STATE(1521)] = 31160, + [SMALL_STATE(1522)] = 31250, + [SMALL_STATE(1523)] = 31340, + [SMALL_STATE(1524)] = 31418, + [SMALL_STATE(1525)] = 31494, + [SMALL_STATE(1526)] = 31566, + [SMALL_STATE(1527)] = 31656, + [SMALL_STATE(1528)] = 31748, + [SMALL_STATE(1529)] = 31840, + [SMALL_STATE(1530)] = 31938, + [SMALL_STATE(1531)] = 32004, + [SMALL_STATE(1532)] = 32074, + [SMALL_STATE(1533)] = 32172, + [SMALL_STATE(1534)] = 32256, + [SMALL_STATE(1535)] = 32342, + [SMALL_STATE(1536)] = 32440, + [SMALL_STATE(1537)] = 32530, + [SMALL_STATE(1538)] = 32600, + [SMALL_STATE(1539)] = 32686, + [SMALL_STATE(1540)] = 32778, + [SMALL_STATE(1541)] = 32845, + [SMALL_STATE(1542)] = 32912, + [SMALL_STATE(1543)] = 32997, + [SMALL_STATE(1544)] = 33082, + [SMALL_STATE(1545)] = 33167, + [SMALL_STATE(1546)] = 33232, + [SMALL_STATE(1547)] = 33317, + [SMALL_STATE(1548)] = 33380, + [SMALL_STATE(1549)] = 33443, + [SMALL_STATE(1550)] = 33510, + [SMALL_STATE(1551)] = 33566, + [SMALL_STATE(1552)] = 33624, + [SMALL_STATE(1553)] = 33684, + [SMALL_STATE(1554)] = 33742, + [SMALL_STATE(1555)] = 33798, + [SMALL_STATE(1556)] = 33858, + [SMALL_STATE(1557)] = 33918, + [SMALL_STATE(1558)] = 33974, + [SMALL_STATE(1559)] = 34030, + [SMALL_STATE(1560)] = 34088, + [SMALL_STATE(1561)] = 34152, + [SMALL_STATE(1562)] = 34216, + [SMALL_STATE(1563)] = 34272, + [SMALL_STATE(1564)] = 34332, + [SMALL_STATE(1565)] = 34396, + [SMALL_STATE(1566)] = 34452, + [SMALL_STATE(1567)] = 34510, + [SMALL_STATE(1568)] = 34566, + [SMALL_STATE(1569)] = 34624, + [SMALL_STATE(1570)] = 34684, + [SMALL_STATE(1571)] = 34748, + [SMALL_STATE(1572)] = 34808, + [SMALL_STATE(1573)] = 34864, + [SMALL_STATE(1574)] = 34922, + [SMALL_STATE(1575)] = 34982, + [SMALL_STATE(1576)] = 35038, + [SMALL_STATE(1577)] = 35133, + [SMALL_STATE(1578)] = 35228, + [SMALL_STATE(1579)] = 35287, + [SMALL_STATE(1580)] = 35342, + [SMALL_STATE(1581)] = 35399, + [SMALL_STATE(1582)] = 35458, + [SMALL_STATE(1583)] = 35513, + [SMALL_STATE(1584)] = 35568, + [SMALL_STATE(1585)] = 35627, + [SMALL_STATE(1586)] = 35722, + [SMALL_STATE(1587)] = 35777, + [SMALL_STATE(1588)] = 35872, + [SMALL_STATE(1589)] = 35967, + [SMALL_STATE(1590)] = 36024, + [SMALL_STATE(1591)] = 36081, + [SMALL_STATE(1592)] = 36136, + [SMALL_STATE(1593)] = 36193, + [SMALL_STATE(1594)] = 36288, + [SMALL_STATE(1595)] = 36383, + [SMALL_STATE(1596)] = 36478, + [SMALL_STATE(1597)] = 36535, + [SMALL_STATE(1598)] = 36630, + [SMALL_STATE(1599)] = 36685, + [SMALL_STATE(1600)] = 36742, + [SMALL_STATE(1601)] = 36797, + [SMALL_STATE(1602)] = 36892, + [SMALL_STATE(1603)] = 36987, + [SMALL_STATE(1604)] = 37046, + [SMALL_STATE(1605)] = 37101, + [SMALL_STATE(1606)] = 37196, + [SMALL_STATE(1607)] = 37253, + [SMALL_STATE(1608)] = 37309, + [SMALL_STATE(1609)] = 37395, + [SMALL_STATE(1610)] = 37449, + [SMALL_STATE(1611)] = 37505, + [SMALL_STATE(1612)] = 37559, + [SMALL_STATE(1613)] = 37613, + [SMALL_STATE(1614)] = 37701, + [SMALL_STATE(1615)] = 37755, + [SMALL_STATE(1616)] = 37841, + [SMALL_STATE(1617)] = 37895, + [SMALL_STATE(1618)] = 37987, + [SMALL_STATE(1619)] = 38075, + [SMALL_STATE(1620)] = 38167, + [SMALL_STATE(1621)] = 38223, + [SMALL_STATE(1622)] = 38279, + [SMALL_STATE(1623)] = 38371, + [SMALL_STATE(1624)] = 38463, + [SMALL_STATE(1625)] = 38555, + [SMALL_STATE(1626)] = 38611, + [SMALL_STATE(1627)] = 38667, + [SMALL_STATE(1628)] = 38723, + [SMALL_STATE(1629)] = 38811, + [SMALL_STATE(1630)] = 38867, + [SMALL_STATE(1631)] = 38931, + [SMALL_STATE(1632)] = 39001, + [SMALL_STATE(1633)] = 39069, + [SMALL_STATE(1634)] = 39141, + [SMALL_STATE(1635)] = 39229, + [SMALL_STATE(1636)] = 39285, + [SMALL_STATE(1637)] = 39363, + [SMALL_STATE(1638)] = 39443, + [SMALL_STATE(1639)] = 39509, + [SMALL_STATE(1640)] = 39563, + [SMALL_STATE(1641)] = 39649, + [SMALL_STATE(1642)] = 39703, + [SMALL_STATE(1643)] = 39789, + [SMALL_STATE(1644)] = 39863, + [SMALL_STATE(1645)] = 39917, + [SMALL_STATE(1646)] = 39971, + [SMALL_STATE(1647)] = 40025, + [SMALL_STATE(1648)] = 40079, + [SMALL_STATE(1649)] = 40161, + [SMALL_STATE(1650)] = 40215, + [SMALL_STATE(1651)] = 40271, + [SMALL_STATE(1652)] = 40327, + [SMALL_STATE(1653)] = 40383, + [SMALL_STATE(1654)] = 40437, + [SMALL_STATE(1655)] = 40525, + [SMALL_STATE(1656)] = 40583, + [SMALL_STATE(1657)] = 40639, + [SMALL_STATE(1658)] = 40695, + [SMALL_STATE(1659)] = 40749, + [SMALL_STATE(1660)] = 40841, + [SMALL_STATE(1661)] = 40923, + [SMALL_STATE(1662)] = 41011, + [SMALL_STATE(1663)] = 41067, + [SMALL_STATE(1664)] = 41121, + [SMALL_STATE(1665)] = 41207, + [SMALL_STATE(1666)] = 41295, + [SMALL_STATE(1667)] = 41351, + [SMALL_STATE(1668)] = 41405, + [SMALL_STATE(1669)] = 41493, + [SMALL_STATE(1670)] = 41579, + [SMALL_STATE(1671)] = 41646, + [SMALL_STATE(1672)] = 41709, + [SMALL_STATE(1673)] = 41762, + [SMALL_STATE(1674)] = 41851, + [SMALL_STATE(1675)] = 41904, + [SMALL_STATE(1676)] = 41993, + [SMALL_STATE(1677)] = 42046, + [SMALL_STATE(1678)] = 42099, + [SMALL_STATE(1679)] = 42152, + [SMALL_STATE(1680)] = 42205, + [SMALL_STATE(1681)] = 42258, + [SMALL_STATE(1682)] = 42337, + [SMALL_STATE(1683)] = 42414, + [SMALL_STATE(1684)] = 42503, + [SMALL_STATE(1685)] = 42574, + [SMALL_STATE(1686)] = 42627, + [SMALL_STATE(1687)] = 42716, + [SMALL_STATE(1688)] = 42769, + [SMALL_STATE(1689)] = 42822, + [SMALL_STATE(1690)] = 42875, + [SMALL_STATE(1691)] = 42960, + [SMALL_STATE(1692)] = 43013, + [SMALL_STATE(1693)] = 43100, + [SMALL_STATE(1694)] = 43189, + [SMALL_STATE(1695)] = 43242, + [SMALL_STATE(1696)] = 43295, + [SMALL_STATE(1697)] = 43384, + [SMALL_STATE(1698)] = 43437, + [SMALL_STATE(1699)] = 43518, + [SMALL_STATE(1700)] = 43597, + [SMALL_STATE(1701)] = 43684, + [SMALL_STATE(1702)] = 43771, + [SMALL_STATE(1703)] = 43824, + [SMALL_STATE(1704)] = 43877, + [SMALL_STATE(1705)] = 43966, + [SMALL_STATE(1706)] = 44055, + [SMALL_STATE(1707)] = 44108, + [SMALL_STATE(1708)] = 44161, + [SMALL_STATE(1709)] = 44214, + [SMALL_STATE(1710)] = 44267, + [SMALL_STATE(1711)] = 44320, + [SMALL_STATE(1712)] = 44373, + [SMALL_STATE(1713)] = 44462, + [SMALL_STATE(1714)] = 44515, + [SMALL_STATE(1715)] = 44604, + [SMALL_STATE(1716)] = 44657, + [SMALL_STATE(1717)] = 44746, + [SMALL_STATE(1718)] = 44799, + [SMALL_STATE(1719)] = 44888, + [SMALL_STATE(1720)] = 44941, + [SMALL_STATE(1721)] = 44994, + [SMALL_STATE(1722)] = 45047, + [SMALL_STATE(1723)] = 45136, + [SMALL_STATE(1724)] = 45189, + [SMALL_STATE(1725)] = 45278, + [SMALL_STATE(1726)] = 45365, + [SMALL_STATE(1727)] = 45454, + [SMALL_STATE(1728)] = 45543, + [SMALL_STATE(1729)] = 45596, + [SMALL_STATE(1730)] = 45683, + [SMALL_STATE(1731)] = 45736, + [SMALL_STATE(1732)] = 45825, + [SMALL_STATE(1733)] = 45878, + [SMALL_STATE(1734)] = 45967, + [SMALL_STATE(1735)] = 46020, + [SMALL_STATE(1736)] = 46109, + [SMALL_STATE(1737)] = 46198, + [SMALL_STATE(1738)] = 46251, + [SMALL_STATE(1739)] = 46340, + [SMALL_STATE(1740)] = 46393, + [SMALL_STATE(1741)] = 46462, + [SMALL_STATE(1742)] = 46515, + [SMALL_STATE(1743)] = 46568, + [SMALL_STATE(1744)] = 46653, + [SMALL_STATE(1745)] = 46742, + [SMALL_STATE(1746)] = 46795, + [SMALL_STATE(1747)] = 46848, + [SMALL_STATE(1748)] = 46935, + [SMALL_STATE(1749)] = 46988, + [SMALL_STATE(1750)] = 47041, + [SMALL_STATE(1751)] = 47118, + [SMALL_STATE(1752)] = 47171, + [SMALL_STATE(1753)] = 47224, + [SMALL_STATE(1754)] = 47277, + [SMALL_STATE(1755)] = 47366, + [SMALL_STATE(1756)] = 47425, + [SMALL_STATE(1757)] = 47478, + [SMALL_STATE(1758)] = 47537, + [SMALL_STATE(1759)] = 47590, + [SMALL_STATE(1760)] = 47643, + [SMALL_STATE(1761)] = 47696, + [SMALL_STATE(1762)] = 47783, + [SMALL_STATE(1763)] = 47872, + [SMALL_STATE(1764)] = 47925, + [SMALL_STATE(1765)] = 48014, + [SMALL_STATE(1766)] = 48103, + [SMALL_STATE(1767)] = 48156, + [SMALL_STATE(1768)] = 48243, + [SMALL_STATE(1769)] = 48296, + [SMALL_STATE(1770)] = 48385, + [SMALL_STATE(1771)] = 48474, + [SMALL_STATE(1772)] = 48561, + [SMALL_STATE(1773)] = 48650, + [SMALL_STATE(1774)] = 48703, + [SMALL_STATE(1775)] = 48792, + [SMALL_STATE(1776)] = 48881, + [SMALL_STATE(1777)] = 48962, + [SMALL_STATE(1778)] = 49049, + [SMALL_STATE(1779)] = 49134, + [SMALL_STATE(1780)] = 49223, + [SMALL_STATE(1781)] = 49312, + [SMALL_STATE(1782)] = 49397, + [SMALL_STATE(1783)] = 49482, + [SMALL_STATE(1784)] = 49569, + [SMALL_STATE(1785)] = 49622, + [SMALL_STATE(1786)] = 49675, + [SMALL_STATE(1787)] = 49728, + [SMALL_STATE(1788)] = 49781, + [SMALL_STATE(1789)] = 49834, + [SMALL_STATE(1790)] = 49919, + [SMALL_STATE(1791)] = 50006, + [SMALL_STATE(1792)] = 50059, + [SMALL_STATE(1793)] = 50144, + [SMALL_STATE(1794)] = 50233, + [SMALL_STATE(1795)] = 50286, + [SMALL_STATE(1796)] = 50339, + [SMALL_STATE(1797)] = 50392, + [SMALL_STATE(1798)] = 50481, + [SMALL_STATE(1799)] = 50534, + [SMALL_STATE(1800)] = 50587, + [SMALL_STATE(1801)] = 50674, + [SMALL_STATE(1802)] = 50727, + [SMALL_STATE(1803)] = 50780, + [SMALL_STATE(1804)] = 50869, + [SMALL_STATE(1805)] = 50922, + [SMALL_STATE(1806)] = 50975, + [SMALL_STATE(1807)] = 51036, + [SMALL_STATE(1808)] = 51121, + [SMALL_STATE(1809)] = 51174, + [SMALL_STATE(1810)] = 51263, + [SMALL_STATE(1811)] = 51316, + [SMALL_STATE(1812)] = 51369, + [SMALL_STATE(1813)] = 51422, + [SMALL_STATE(1814)] = 51511, + [SMALL_STATE(1815)] = 51564, + [SMALL_STATE(1816)] = 51645, + [SMALL_STATE(1817)] = 51698, + [SMALL_STATE(1818)] = 51751, + [SMALL_STATE(1819)] = 51804, + [SMALL_STATE(1820)] = 51857, + [SMALL_STATE(1821)] = 51910, + [SMALL_STATE(1822)] = 51999, + [SMALL_STATE(1823)] = 52052, + [SMALL_STATE(1824)] = 52139, + [SMALL_STATE(1825)] = 52198, + [SMALL_STATE(1826)] = 52251, + [SMALL_STATE(1827)] = 52340, + [SMALL_STATE(1828)] = 52429, + [SMALL_STATE(1829)] = 52482, + [SMALL_STATE(1830)] = 52571, + [SMALL_STATE(1831)] = 52656, + [SMALL_STATE(1832)] = 52729, + [SMALL_STATE(1833)] = 52782, + [SMALL_STATE(1834)] = 52869, + [SMALL_STATE(1835)] = 52954, + [SMALL_STATE(1836)] = 53043, + [SMALL_STATE(1837)] = 53096, + [SMALL_STATE(1838)] = 53185, + [SMALL_STATE(1839)] = 53270, + [SMALL_STATE(1840)] = 53357, + [SMALL_STATE(1841)] = 53410, + [SMALL_STATE(1842)] = 53473, + [SMALL_STATE(1843)] = 53542, + [SMALL_STATE(1844)] = 53595, + [SMALL_STATE(1845)] = 53662, + [SMALL_STATE(1846)] = 53715, + [SMALL_STATE(1847)] = 53802, + [SMALL_STATE(1848)] = 53855, + [SMALL_STATE(1849)] = 53942, + [SMALL_STATE(1850)] = 54013, + [SMALL_STATE(1851)] = 54078, + [SMALL_STATE(1852)] = 54163, + [SMALL_STATE(1853)] = 54216, + [SMALL_STATE(1854)] = 54269, + [SMALL_STATE(1855)] = 54358, + [SMALL_STATE(1856)] = 54437, + [SMALL_STATE(1857)] = 54502, + [SMALL_STATE(1858)] = 54555, + [SMALL_STATE(1859)] = 54640, + [SMALL_STATE(1860)] = 54725, + [SMALL_STATE(1861)] = 54798, + [SMALL_STATE(1862)] = 54851, + [SMALL_STATE(1863)] = 54932, + [SMALL_STATE(1864)] = 54985, + [SMALL_STATE(1865)] = 55074, + [SMALL_STATE(1866)] = 55161, + [SMALL_STATE(1867)] = 55214, + [SMALL_STATE(1868)] = 55267, + [SMALL_STATE(1869)] = 55320, + [SMALL_STATE(1870)] = 55373, + [SMALL_STATE(1871)] = 55426, + [SMALL_STATE(1872)] = 55515, + [SMALL_STATE(1873)] = 55604, + [SMALL_STATE(1874)] = 55657, + [SMALL_STATE(1875)] = 55746, + [SMALL_STATE(1876)] = 55835, + [SMALL_STATE(1877)] = 55921, + [SMALL_STATE(1878)] = 56007, + [SMALL_STATE(1879)] = 56093, + [SMALL_STATE(1880)] = 56179, + [SMALL_STATE(1881)] = 56265, + [SMALL_STATE(1882)] = 56351, + [SMALL_STATE(1883)] = 56437, + [SMALL_STATE(1884)] = 56523, + [SMALL_STATE(1885)] = 56609, + [SMALL_STATE(1886)] = 56685, + [SMALL_STATE(1887)] = 56771, + [SMALL_STATE(1888)] = 56857, + [SMALL_STATE(1889)] = 56943, + [SMALL_STATE(1890)] = 57029, + [SMALL_STATE(1891)] = 57115, + [SMALL_STATE(1892)] = 57199, + [SMALL_STATE(1893)] = 57285, + [SMALL_STATE(1894)] = 57371, + [SMALL_STATE(1895)] = 57457, + [SMALL_STATE(1896)] = 57543, + [SMALL_STATE(1897)] = 57629, + [SMALL_STATE(1898)] = 57715, + [SMALL_STATE(1899)] = 57801, + [SMALL_STATE(1900)] = 57887, + [SMALL_STATE(1901)] = 57973, + [SMALL_STATE(1902)] = 58059, + [SMALL_STATE(1903)] = 58145, + [SMALL_STATE(1904)] = 58231, + [SMALL_STATE(1905)] = 58317, + [SMALL_STATE(1906)] = 58393, + [SMALL_STATE(1907)] = 58479, + [SMALL_STATE(1908)] = 58563, + [SMALL_STATE(1909)] = 58649, + [SMALL_STATE(1910)] = 58735, + [SMALL_STATE(1911)] = 58808, + [SMALL_STATE(1912)] = 58881, + [SMALL_STATE(1913)] = 58954, + [SMALL_STATE(1914)] = 59027, + [SMALL_STATE(1915)] = 59100, + [SMALL_STATE(1916)] = 59174, + [SMALL_STATE(1917)] = 59248, + [SMALL_STATE(1918)] = 59322, + [SMALL_STATE(1919)] = 59396, + [SMALL_STATE(1920)] = 59470, + [SMALL_STATE(1921)] = 59544, + [SMALL_STATE(1922)] = 59618, + [SMALL_STATE(1923)] = 59692, + [SMALL_STATE(1924)] = 59738, + [SMALL_STATE(1925)] = 59784, + [SMALL_STATE(1926)] = 59830, + [SMALL_STATE(1927)] = 59891, + [SMALL_STATE(1928)] = 59952, + [SMALL_STATE(1929)] = 60013, + [SMALL_STATE(1930)] = 60074, + [SMALL_STATE(1931)] = 60135, + [SMALL_STATE(1932)] = 60196, + [SMALL_STATE(1933)] = 60257, + [SMALL_STATE(1934)] = 60318, + [SMALL_STATE(1935)] = 60376, + [SMALL_STATE(1936)] = 60434, + [SMALL_STATE(1937)] = 60470, + [SMALL_STATE(1938)] = 60518, + [SMALL_STATE(1939)] = 60554, + [SMALL_STATE(1940)] = 60591, + [SMALL_STATE(1941)] = 60628, + [SMALL_STATE(1942)] = 60673, + [SMALL_STATE(1943)] = 60710, + [SMALL_STATE(1944)] = 60755, + [SMALL_STATE(1945)] = 60792, + [SMALL_STATE(1946)] = 60845, + [SMALL_STATE(1947)] = 60890, + [SMALL_STATE(1948)] = 60930, + [SMALL_STATE(1949)] = 60970, + [SMALL_STATE(1950)] = 61006, + [SMALL_STATE(1951)] = 61046, + [SMALL_STATE(1952)] = 61082, + [SMALL_STATE(1953)] = 61118, + [SMALL_STATE(1954)] = 61154, + [SMALL_STATE(1955)] = 61194, + [SMALL_STATE(1956)] = 61227, + [SMALL_STATE(1957)] = 61258, + [SMALL_STATE(1958)] = 61321, + [SMALL_STATE(1959)] = 61354, + [SMALL_STATE(1960)] = 61387, + [SMALL_STATE(1961)] = 61420, + [SMALL_STATE(1962)] = 61453, + [SMALL_STATE(1963)] = 61486, + [SMALL_STATE(1964)] = 61519, + [SMALL_STATE(1965)] = 61552, + [SMALL_STATE(1966)] = 61615, + [SMALL_STATE(1967)] = 61647, + [SMALL_STATE(1968)] = 61679, + [SMALL_STATE(1969)] = 61711, + [SMALL_STATE(1970)] = 61755, + [SMALL_STATE(1971)] = 61787, + [SMALL_STATE(1972)] = 61833, + [SMALL_STATE(1973)] = 61862, + [SMALL_STATE(1974)] = 61915, + [SMALL_STATE(1975)] = 61948, + [SMALL_STATE(1976)] = 61977, + [SMALL_STATE(1977)] = 62008, + [SMALL_STATE(1978)] = 62041, + [SMALL_STATE(1979)] = 62070, + [SMALL_STATE(1980)] = 62099, + [SMALL_STATE(1981)] = 62130, + [SMALL_STATE(1982)] = 62161, + [SMALL_STATE(1983)] = 62204, + [SMALL_STATE(1984)] = 62233, + [SMALL_STATE(1985)] = 62264, + [SMALL_STATE(1986)] = 62293, + [SMALL_STATE(1987)] = 62326, + [SMALL_STATE(1988)] = 62357, + [SMALL_STATE(1989)] = 62386, + [SMALL_STATE(1990)] = 62419, + [SMALL_STATE(1991)] = 62450, + [SMALL_STATE(1992)] = 62479, + [SMALL_STATE(1993)] = 62512, + [SMALL_STATE(1994)] = 62545, + [SMALL_STATE(1995)] = 62576, + [SMALL_STATE(1996)] = 62607, + [SMALL_STATE(1997)] = 62660, + [SMALL_STATE(1998)] = 62701, + [SMALL_STATE(1999)] = 62756, + [SMALL_STATE(2000)] = 62785, + [SMALL_STATE(2001)] = 62816, + [SMALL_STATE(2002)] = 62845, + [SMALL_STATE(2003)] = 62874, + [SMALL_STATE(2004)] = 62903, + [SMALL_STATE(2005)] = 62931, + [SMALL_STATE(2006)] = 62959, + [SMALL_STATE(2007)] = 62987, + [SMALL_STATE(2008)] = 63015, + [SMALL_STATE(2009)] = 63043, + [SMALL_STATE(2010)] = 63071, + [SMALL_STATE(2011)] = 63099, + [SMALL_STATE(2012)] = 63143, + [SMALL_STATE(2013)] = 63171, + [SMALL_STATE(2014)] = 63199, + [SMALL_STATE(2015)] = 63227, + [SMALL_STATE(2016)] = 63255, + [SMALL_STATE(2017)] = 63283, + [SMALL_STATE(2018)] = 63311, + [SMALL_STATE(2019)] = 63339, + [SMALL_STATE(2020)] = 63367, + [SMALL_STATE(2021)] = 63395, + [SMALL_STATE(2022)] = 63423, + [SMALL_STATE(2023)] = 63451, + [SMALL_STATE(2024)] = 63479, + [SMALL_STATE(2025)] = 63507, + [SMALL_STATE(2026)] = 63535, + [SMALL_STATE(2027)] = 63563, + [SMALL_STATE(2028)] = 63591, + [SMALL_STATE(2029)] = 63619, + [SMALL_STATE(2030)] = 63647, + [SMALL_STATE(2031)] = 63675, + [SMALL_STATE(2032)] = 63710, + [SMALL_STATE(2033)] = 63739, + [SMALL_STATE(2034)] = 63768, + [SMALL_STATE(2035)] = 63799, + [SMALL_STATE(2036)] = 63850, + [SMALL_STATE(2037)] = 63880, + [SMALL_STATE(2038)] = 63912, + [SMALL_STATE(2039)] = 63944, + [SMALL_STATE(2040)] = 63976, + [SMALL_STATE(2041)] = 64008, + [SMALL_STATE(2042)] = 64040, + [SMALL_STATE(2043)] = 64072, + [SMALL_STATE(2044)] = 64104, + [SMALL_STATE(2045)] = 64136, + [SMALL_STATE(2046)] = 64168, + [SMALL_STATE(2047)] = 64200, + [SMALL_STATE(2048)] = 64244, + [SMALL_STATE(2049)] = 64272, + [SMALL_STATE(2050)] = 64304, + [SMALL_STATE(2051)] = 64336, + [SMALL_STATE(2052)] = 64364, + [SMALL_STATE(2053)] = 64409, + [SMALL_STATE(2054)] = 64454, + [SMALL_STATE(2055)] = 64499, + [SMALL_STATE(2056)] = 64544, + [SMALL_STATE(2057)] = 64589, + [SMALL_STATE(2058)] = 64626, + [SMALL_STATE(2059)] = 64671, + [SMALL_STATE(2060)] = 64716, + [SMALL_STATE(2061)] = 64761, + [SMALL_STATE(2062)] = 64806, + [SMALL_STATE(2063)] = 64851, + [SMALL_STATE(2064)] = 64896, + [SMALL_STATE(2065)] = 64941, + [SMALL_STATE(2066)] = 64986, + [SMALL_STATE(2067)] = 65031, + [SMALL_STATE(2068)] = 65076, + [SMALL_STATE(2069)] = 65116, + [SMALL_STATE(2070)] = 65144, + [SMALL_STATE(2071)] = 65186, + [SMALL_STATE(2072)] = 65210, + [SMALL_STATE(2073)] = 65240, + [SMALL_STATE(2074)] = 65270, + [SMALL_STATE(2075)] = 65308, + [SMALL_STATE(2076)] = 65332, + [SMALL_STATE(2077)] = 65370, + [SMALL_STATE(2078)] = 65408, + [SMALL_STATE(2079)] = 65438, + [SMALL_STATE(2080)] = 65480, + [SMALL_STATE(2081)] = 65504, + [SMALL_STATE(2082)] = 65528, + [SMALL_STATE(2083)] = 65556, + [SMALL_STATE(2084)] = 65598, + [SMALL_STATE(2085)] = 65640, + [SMALL_STATE(2086)] = 65668, + [SMALL_STATE(2087)] = 65696, + [SMALL_STATE(2088)] = 65734, + [SMALL_STATE(2089)] = 65762, + [SMALL_STATE(2090)] = 65796, + [SMALL_STATE(2091)] = 65830, + [SMALL_STATE(2092)] = 65858, + [SMALL_STATE(2093)] = 65886, + [SMALL_STATE(2094)] = 65914, + [SMALL_STATE(2095)] = 65952, + [SMALL_STATE(2096)] = 65982, + [SMALL_STATE(2097)] = 66020, + [SMALL_STATE(2098)] = 66060, + [SMALL_STATE(2099)] = 66102, + [SMALL_STATE(2100)] = 66144, + [SMALL_STATE(2101)] = 66182, + [SMALL_STATE(2102)] = 66210, + [SMALL_STATE(2103)] = 66250, + [SMALL_STATE(2104)] = 66288, + [SMALL_STATE(2105)] = 66326, + [SMALL_STATE(2106)] = 66368, + [SMALL_STATE(2107)] = 66392, + [SMALL_STATE(2108)] = 66420, + [SMALL_STATE(2109)] = 66448, + [SMALL_STATE(2110)] = 66476, + [SMALL_STATE(2111)] = 66513, + [SMALL_STATE(2112)] = 66536, + [SMALL_STATE(2113)] = 66571, + [SMALL_STATE(2114)] = 66608, + [SMALL_STATE(2115)] = 66645, + [SMALL_STATE(2116)] = 66668, + [SMALL_STATE(2117)] = 66701, + [SMALL_STATE(2118)] = 66724, + [SMALL_STATE(2119)] = 66765, + [SMALL_STATE(2120)] = 66796, + [SMALL_STATE(2121)] = 66837, + [SMALL_STATE(2122)] = 66868, + [SMALL_STATE(2123)] = 66891, + [SMALL_STATE(2124)] = 66914, + [SMALL_STATE(2125)] = 66937, + [SMALL_STATE(2126)] = 66978, + [SMALL_STATE(2127)] = 67001, + [SMALL_STATE(2128)] = 67024, + [SMALL_STATE(2129)] = 67047, + [SMALL_STATE(2130)] = 67070, + [SMALL_STATE(2131)] = 67093, + [SMALL_STATE(2132)] = 67116, + [SMALL_STATE(2133)] = 67139, + [SMALL_STATE(2134)] = 67162, + [SMALL_STATE(2135)] = 67185, + [SMALL_STATE(2136)] = 67208, + [SMALL_STATE(2137)] = 67231, + [SMALL_STATE(2138)] = 67254, + [SMALL_STATE(2139)] = 67285, + [SMALL_STATE(2140)] = 67316, + [SMALL_STATE(2141)] = 67339, + [SMALL_STATE(2142)] = 67362, + [SMALL_STATE(2143)] = 67385, + [SMALL_STATE(2144)] = 67408, + [SMALL_STATE(2145)] = 67431, + [SMALL_STATE(2146)] = 67454, + [SMALL_STATE(2147)] = 67495, + [SMALL_STATE(2148)] = 67518, + [SMALL_STATE(2149)] = 67541, + [SMALL_STATE(2150)] = 67564, + [SMALL_STATE(2151)] = 67587, + [SMALL_STATE(2152)] = 67610, + [SMALL_STATE(2153)] = 67633, + [SMALL_STATE(2154)] = 67670, + [SMALL_STATE(2155)] = 67693, + [SMALL_STATE(2156)] = 67716, + [SMALL_STATE(2157)] = 67751, + [SMALL_STATE(2158)] = 67786, + [SMALL_STATE(2159)] = 67809, + [SMALL_STATE(2160)] = 67832, + [SMALL_STATE(2161)] = 67855, + [SMALL_STATE(2162)] = 67878, + [SMALL_STATE(2163)] = 67910, + [SMALL_STATE(2164)] = 67948, + [SMALL_STATE(2165)] = 67972, + [SMALL_STATE(2166)] = 68004, + [SMALL_STATE(2167)] = 68032, + [SMALL_STATE(2168)] = 68068, + [SMALL_STATE(2169)] = 68106, + [SMALL_STATE(2170)] = 68138, + [SMALL_STATE(2171)] = 68170, + [SMALL_STATE(2172)] = 68194, + [SMALL_STATE(2173)] = 68232, + [SMALL_STATE(2174)] = 68264, + [SMALL_STATE(2175)] = 68302, + [SMALL_STATE(2176)] = 68330, + [SMALL_STATE(2177)] = 68362, + [SMALL_STATE(2178)] = 68394, + [SMALL_STATE(2179)] = 68426, + [SMALL_STATE(2180)] = 68450, + [SMALL_STATE(2181)] = 68476, + [SMALL_STATE(2182)] = 68510, + [SMALL_STATE(2183)] = 68548, + [SMALL_STATE(2184)] = 68586, + [SMALL_STATE(2185)] = 68612, + [SMALL_STATE(2186)] = 68650, + [SMALL_STATE(2187)] = 68688, + [SMALL_STATE(2188)] = 68716, + [SMALL_STATE(2189)] = 68742, + [SMALL_STATE(2190)] = 68774, + [SMALL_STATE(2191)] = 68802, + [SMALL_STATE(2192)] = 68828, + [SMALL_STATE(2193)] = 68860, + [SMALL_STATE(2194)] = 68892, + [SMALL_STATE(2195)] = 68916, + [SMALL_STATE(2196)] = 68954, + [SMALL_STATE(2197)] = 68992, + [SMALL_STATE(2198)] = 69030, + [SMALL_STATE(2199)] = 69062, + [SMALL_STATE(2200)] = 69100, + [SMALL_STATE(2201)] = 69138, + [SMALL_STATE(2202)] = 69176, + [SMALL_STATE(2203)] = 69204, + [SMALL_STATE(2204)] = 69236, + [SMALL_STATE(2205)] = 69274, + [SMALL_STATE(2206)] = 69302, + [SMALL_STATE(2207)] = 69336, + [SMALL_STATE(2208)] = 69364, + [SMALL_STATE(2209)] = 69402, + [SMALL_STATE(2210)] = 69426, + [SMALL_STATE(2211)] = 69461, + [SMALL_STATE(2212)] = 69496, + [SMALL_STATE(2213)] = 69531, + [SMALL_STATE(2214)] = 69566, + [SMALL_STATE(2215)] = 69601, + [SMALL_STATE(2216)] = 69636, + [SMALL_STATE(2217)] = 69671, + [SMALL_STATE(2218)] = 69706, + [SMALL_STATE(2219)] = 69741, + [SMALL_STATE(2220)] = 69776, + [SMALL_STATE(2221)] = 69811, + [SMALL_STATE(2222)] = 69846, + [SMALL_STATE(2223)] = 69881, + [SMALL_STATE(2224)] = 69916, + [SMALL_STATE(2225)] = 69951, + [SMALL_STATE(2226)] = 69986, + [SMALL_STATE(2227)] = 70007, + [SMALL_STATE(2228)] = 70042, + [SMALL_STATE(2229)] = 70075, + [SMALL_STATE(2230)] = 70100, + [SMALL_STATE(2231)] = 70135, + [SMALL_STATE(2232)] = 70160, + [SMALL_STATE(2233)] = 70195, + [SMALL_STATE(2234)] = 70230, + [SMALL_STATE(2235)] = 70265, + [SMALL_STATE(2236)] = 70298, + [SMALL_STATE(2237)] = 70333, + [SMALL_STATE(2238)] = 70368, + [SMALL_STATE(2239)] = 70403, + [SMALL_STATE(2240)] = 70438, + [SMALL_STATE(2241)] = 70473, + [SMALL_STATE(2242)] = 70508, + [SMALL_STATE(2243)] = 70543, + [SMALL_STATE(2244)] = 70570, + [SMALL_STATE(2245)] = 70605, + [SMALL_STATE(2246)] = 70630, + [SMALL_STATE(2247)] = 70665, + [SMALL_STATE(2248)] = 70700, + [SMALL_STATE(2249)] = 70735, + [SMALL_STATE(2250)] = 70768, + [SMALL_STATE(2251)] = 70803, + [SMALL_STATE(2252)] = 70838, + [SMALL_STATE(2253)] = 70873, + [SMALL_STATE(2254)] = 70908, + [SMALL_STATE(2255)] = 70943, + [SMALL_STATE(2256)] = 70972, + [SMALL_STATE(2257)] = 71007, + [SMALL_STATE(2258)] = 71042, + [SMALL_STATE(2259)] = 71075, + [SMALL_STATE(2260)] = 71110, + [SMALL_STATE(2261)] = 71131, + [SMALL_STATE(2262)] = 71152, + [SMALL_STATE(2263)] = 71185, + [SMALL_STATE(2264)] = 71206, + [SMALL_STATE(2265)] = 71227, + [SMALL_STATE(2266)] = 71248, + [SMALL_STATE(2267)] = 71280, + [SMALL_STATE(2268)] = 71302, + [SMALL_STATE(2269)] = 71330, + [SMALL_STATE(2270)] = 71360, + [SMALL_STATE(2271)] = 71390, + [SMALL_STATE(2272)] = 71412, + [SMALL_STATE(2273)] = 71438, + [SMALL_STATE(2274)] = 71470, + [SMALL_STATE(2275)] = 71502, + [SMALL_STATE(2276)] = 71534, + [SMALL_STATE(2277)] = 71566, + [SMALL_STATE(2278)] = 71598, + [SMALL_STATE(2279)] = 71630, + [SMALL_STATE(2280)] = 71652, + [SMALL_STATE(2281)] = 71684, + [SMALL_STATE(2282)] = 71716, + [SMALL_STATE(2283)] = 71748, + [SMALL_STATE(2284)] = 71780, + [SMALL_STATE(2285)] = 71812, + [SMALL_STATE(2286)] = 71844, + [SMALL_STATE(2287)] = 71876, + [SMALL_STATE(2288)] = 71908, + [SMALL_STATE(2289)] = 71940, + [SMALL_STATE(2290)] = 71968, + [SMALL_STATE(2291)] = 72000, + [SMALL_STATE(2292)] = 72032, + [SMALL_STATE(2293)] = 72064, + [SMALL_STATE(2294)] = 72096, + [SMALL_STATE(2295)] = 72128, + [SMALL_STATE(2296)] = 72156, + [SMALL_STATE(2297)] = 72184, + [SMALL_STATE(2298)] = 72216, + [SMALL_STATE(2299)] = 72248, + [SMALL_STATE(2300)] = 72280, + [SMALL_STATE(2301)] = 72310, + [SMALL_STATE(2302)] = 72342, + [SMALL_STATE(2303)] = 72368, + [SMALL_STATE(2304)] = 72394, + [SMALL_STATE(2305)] = 72422, + [SMALL_STATE(2306)] = 72444, + [SMALL_STATE(2307)] = 72476, + [SMALL_STATE(2308)] = 72498, + [SMALL_STATE(2309)] = 72528, + [SMALL_STATE(2310)] = 72560, + [SMALL_STATE(2311)] = 72592, + [SMALL_STATE(2312)] = 72624, + [SMALL_STATE(2313)] = 72656, + [SMALL_STATE(2314)] = 72686, + [SMALL_STATE(2315)] = 72718, + [SMALL_STATE(2316)] = 72750, + [SMALL_STATE(2317)] = 72782, + [SMALL_STATE(2318)] = 72812, + [SMALL_STATE(2319)] = 72842, + [SMALL_STATE(2320)] = 72874, + [SMALL_STATE(2321)] = 72906, + [SMALL_STATE(2322)] = 72938, + [SMALL_STATE(2323)] = 72960, + [SMALL_STATE(2324)] = 72992, + [SMALL_STATE(2325)] = 73022, + [SMALL_STATE(2326)] = 73054, + [SMALL_STATE(2327)] = 73086, + [SMALL_STATE(2328)] = 73118, + [SMALL_STATE(2329)] = 73150, + [SMALL_STATE(2330)] = 73182, + [SMALL_STATE(2331)] = 73214, + [SMALL_STATE(2332)] = 73246, + [SMALL_STATE(2333)] = 73278, + [SMALL_STATE(2334)] = 73310, + [SMALL_STATE(2335)] = 73342, + [SMALL_STATE(2336)] = 73372, + [SMALL_STATE(2337)] = 73402, + [SMALL_STATE(2338)] = 73428, + [SMALL_STATE(2339)] = 73458, + [SMALL_STATE(2340)] = 73490, + [SMALL_STATE(2341)] = 73515, + [SMALL_STATE(2342)] = 73536, + [SMALL_STATE(2343)] = 73565, + [SMALL_STATE(2344)] = 73594, + [SMALL_STATE(2345)] = 73623, + [SMALL_STATE(2346)] = 73652, + [SMALL_STATE(2347)] = 73681, + [SMALL_STATE(2348)] = 73710, + [SMALL_STATE(2349)] = 73739, + [SMALL_STATE(2350)] = 73768, + [SMALL_STATE(2351)] = 73791, + [SMALL_STATE(2352)] = 73818, + [SMALL_STATE(2353)] = 73847, + [SMALL_STATE(2354)] = 73876, + [SMALL_STATE(2355)] = 73899, + [SMALL_STATE(2356)] = 73928, + [SMALL_STATE(2357)] = 73949, + [SMALL_STATE(2358)] = 73968, + [SMALL_STATE(2359)] = 73997, + [SMALL_STATE(2360)] = 74016, + [SMALL_STATE(2361)] = 74041, + [SMALL_STATE(2362)] = 74070, + [SMALL_STATE(2363)] = 74099, + [SMALL_STATE(2364)] = 74128, + [SMALL_STATE(2365)] = 74157, + [SMALL_STATE(2366)] = 74178, + [SMALL_STATE(2367)] = 74201, + [SMALL_STATE(2368)] = 74230, + [SMALL_STATE(2369)] = 74259, + [SMALL_STATE(2370)] = 74288, + [SMALL_STATE(2371)] = 74317, + [SMALL_STATE(2372)] = 74346, + [SMALL_STATE(2373)] = 74375, + [SMALL_STATE(2374)] = 74404, + [SMALL_STATE(2375)] = 74433, + [SMALL_STATE(2376)] = 74456, + [SMALL_STATE(2377)] = 74479, + [SMALL_STATE(2378)] = 74500, + [SMALL_STATE(2379)] = 74527, + [SMALL_STATE(2380)] = 74556, + [SMALL_STATE(2381)] = 74579, + [SMALL_STATE(2382)] = 74608, + [SMALL_STATE(2383)] = 74637, + [SMALL_STATE(2384)] = 74658, + [SMALL_STATE(2385)] = 74679, + [SMALL_STATE(2386)] = 74708, + [SMALL_STATE(2387)] = 74731, + [SMALL_STATE(2388)] = 74760, + [SMALL_STATE(2389)] = 74789, + [SMALL_STATE(2390)] = 74818, + [SMALL_STATE(2391)] = 74847, + [SMALL_STATE(2392)] = 74870, + [SMALL_STATE(2393)] = 74891, + [SMALL_STATE(2394)] = 74920, + [SMALL_STATE(2395)] = 74949, + [SMALL_STATE(2396)] = 74978, + [SMALL_STATE(2397)] = 75007, + [SMALL_STATE(2398)] = 75030, + [SMALL_STATE(2399)] = 75059, + [SMALL_STATE(2400)] = 75088, + [SMALL_STATE(2401)] = 75117, + [SMALL_STATE(2402)] = 75146, + [SMALL_STATE(2403)] = 75175, + [SMALL_STATE(2404)] = 75204, + [SMALL_STATE(2405)] = 75233, + [SMALL_STATE(2406)] = 75258, + [SMALL_STATE(2407)] = 75281, + [SMALL_STATE(2408)] = 75310, + [SMALL_STATE(2409)] = 75339, + [SMALL_STATE(2410)] = 75368, + [SMALL_STATE(2411)] = 75397, + [SMALL_STATE(2412)] = 75420, + [SMALL_STATE(2413)] = 75449, + [SMALL_STATE(2414)] = 75478, + [SMALL_STATE(2415)] = 75507, + [SMALL_STATE(2416)] = 75536, + [SMALL_STATE(2417)] = 75559, + [SMALL_STATE(2418)] = 75580, + [SMALL_STATE(2419)] = 75607, + [SMALL_STATE(2420)] = 75636, + [SMALL_STATE(2421)] = 75665, + [SMALL_STATE(2422)] = 75694, + [SMALL_STATE(2423)] = 75723, + [SMALL_STATE(2424)] = 75752, + [SMALL_STATE(2425)] = 75779, + [SMALL_STATE(2426)] = 75802, + [SMALL_STATE(2427)] = 75831, + [SMALL_STATE(2428)] = 75860, + [SMALL_STATE(2429)] = 75889, + [SMALL_STATE(2430)] = 75918, + [SMALL_STATE(2431)] = 75947, + [SMALL_STATE(2432)] = 75972, + [SMALL_STATE(2433)] = 75999, + [SMALL_STATE(2434)] = 76028, + [SMALL_STATE(2435)] = 76057, + [SMALL_STATE(2436)] = 76086, + [SMALL_STATE(2437)] = 76113, + [SMALL_STATE(2438)] = 76136, + [SMALL_STATE(2439)] = 76165, + [SMALL_STATE(2440)] = 76191, + [SMALL_STATE(2441)] = 76217, + [SMALL_STATE(2442)] = 76243, + [SMALL_STATE(2443)] = 76265, + [SMALL_STATE(2444)] = 76291, + [SMALL_STATE(2445)] = 76317, + [SMALL_STATE(2446)] = 76335, + [SMALL_STATE(2447)] = 76359, + [SMALL_STATE(2448)] = 76381, + [SMALL_STATE(2449)] = 76407, + [SMALL_STATE(2450)] = 76433, + [SMALL_STATE(2451)] = 76459, + [SMALL_STATE(2452)] = 76485, + [SMALL_STATE(2453)] = 76507, + [SMALL_STATE(2454)] = 76525, + [SMALL_STATE(2455)] = 76551, + [SMALL_STATE(2456)] = 76575, + [SMALL_STATE(2457)] = 76601, + [SMALL_STATE(2458)] = 76619, + [SMALL_STATE(2459)] = 76645, + [SMALL_STATE(2460)] = 76671, + [SMALL_STATE(2461)] = 76693, + [SMALL_STATE(2462)] = 76715, + [SMALL_STATE(2463)] = 76741, + [SMALL_STATE(2464)] = 76767, + [SMALL_STATE(2465)] = 76785, + [SMALL_STATE(2466)] = 76811, + [SMALL_STATE(2467)] = 76837, + [SMALL_STATE(2468)] = 76863, + [SMALL_STATE(2469)] = 76887, + [SMALL_STATE(2470)] = 76913, + [SMALL_STATE(2471)] = 76939, + [SMALL_STATE(2472)] = 76957, + [SMALL_STATE(2473)] = 76975, + [SMALL_STATE(2474)] = 77001, + [SMALL_STATE(2475)] = 77019, + [SMALL_STATE(2476)] = 77037, + [SMALL_STATE(2477)] = 77063, + [SMALL_STATE(2478)] = 77087, + [SMALL_STATE(2479)] = 77105, + [SMALL_STATE(2480)] = 77123, + [SMALL_STATE(2481)] = 77149, + [SMALL_STATE(2482)] = 77175, + [SMALL_STATE(2483)] = 77201, + [SMALL_STATE(2484)] = 77219, + [SMALL_STATE(2485)] = 77237, + [SMALL_STATE(2486)] = 77261, + [SMALL_STATE(2487)] = 77287, + [SMALL_STATE(2488)] = 77307, + [SMALL_STATE(2489)] = 77333, + [SMALL_STATE(2490)] = 77351, + [SMALL_STATE(2491)] = 77369, + [SMALL_STATE(2492)] = 77387, + [SMALL_STATE(2493)] = 77405, + [SMALL_STATE(2494)] = 77431, + [SMALL_STATE(2495)] = 77457, + [SMALL_STATE(2496)] = 77477, + [SMALL_STATE(2497)] = 77495, + [SMALL_STATE(2498)] = 77521, + [SMALL_STATE(2499)] = 77547, + [SMALL_STATE(2500)] = 77573, + [SMALL_STATE(2501)] = 77599, + [SMALL_STATE(2502)] = 77617, + [SMALL_STATE(2503)] = 77641, + [SMALL_STATE(2504)] = 77665, + [SMALL_STATE(2505)] = 77691, + [SMALL_STATE(2506)] = 77717, + [SMALL_STATE(2507)] = 77743, + [SMALL_STATE(2508)] = 77765, + [SMALL_STATE(2509)] = 77791, + [SMALL_STATE(2510)] = 77817, + [SMALL_STATE(2511)] = 77843, + [SMALL_STATE(2512)] = 77861, + [SMALL_STATE(2513)] = 77887, + [SMALL_STATE(2514)] = 77911, + [SMALL_STATE(2515)] = 77935, + [SMALL_STATE(2516)] = 77961, + [SMALL_STATE(2517)] = 77981, + [SMALL_STATE(2518)] = 78005, + [SMALL_STATE(2519)] = 78029, + [SMALL_STATE(2520)] = 78051, + [SMALL_STATE(2521)] = 78075, + [SMALL_STATE(2522)] = 78101, + [SMALL_STATE(2523)] = 78125, + [SMALL_STATE(2524)] = 78151, + [SMALL_STATE(2525)] = 78177, + [SMALL_STATE(2526)] = 78203, + [SMALL_STATE(2527)] = 78221, + [SMALL_STATE(2528)] = 78243, + [SMALL_STATE(2529)] = 78265, + [SMALL_STATE(2530)] = 78283, + [SMALL_STATE(2531)] = 78301, + [SMALL_STATE(2532)] = 78327, + [SMALL_STATE(2533)] = 78345, + [SMALL_STATE(2534)] = 78371, + [SMALL_STATE(2535)] = 78397, + [SMALL_STATE(2536)] = 78423, + [SMALL_STATE(2537)] = 78441, + [SMALL_STATE(2538)] = 78459, + [SMALL_STATE(2539)] = 78477, + [SMALL_STATE(2540)] = 78503, + [SMALL_STATE(2541)] = 78529, + [SMALL_STATE(2542)] = 78555, + [SMALL_STATE(2543)] = 78577, + [SMALL_STATE(2544)] = 78595, + [SMALL_STATE(2545)] = 78613, + [SMALL_STATE(2546)] = 78637, + [SMALL_STATE(2547)] = 78663, + [SMALL_STATE(2548)] = 78687, + [SMALL_STATE(2549)] = 78710, + [SMALL_STATE(2550)] = 78733, + [SMALL_STATE(2551)] = 78756, + [SMALL_STATE(2552)] = 78779, + [SMALL_STATE(2553)] = 78802, + [SMALL_STATE(2554)] = 78825, + [SMALL_STATE(2555)] = 78848, + [SMALL_STATE(2556)] = 78871, + [SMALL_STATE(2557)] = 78894, + [SMALL_STATE(2558)] = 78917, + [SMALL_STATE(2559)] = 78940, + [SMALL_STATE(2560)] = 78963, + [SMALL_STATE(2561)] = 78980, + [SMALL_STATE(2562)] = 79003, + [SMALL_STATE(2563)] = 79026, + [SMALL_STATE(2564)] = 79049, + [SMALL_STATE(2565)] = 79070, + [SMALL_STATE(2566)] = 79093, + [SMALL_STATE(2567)] = 79116, + [SMALL_STATE(2568)] = 79139, + [SMALL_STATE(2569)] = 79162, + [SMALL_STATE(2570)] = 79185, + [SMALL_STATE(2571)] = 79208, + [SMALL_STATE(2572)] = 79231, + [SMALL_STATE(2573)] = 79254, + [SMALL_STATE(2574)] = 79275, + [SMALL_STATE(2575)] = 79296, + [SMALL_STATE(2576)] = 79319, + [SMALL_STATE(2577)] = 79342, + [SMALL_STATE(2578)] = 79365, + [SMALL_STATE(2579)] = 79388, + [SMALL_STATE(2580)] = 79409, + [SMALL_STATE(2581)] = 79428, + [SMALL_STATE(2582)] = 79447, + [SMALL_STATE(2583)] = 79466, + [SMALL_STATE(2584)] = 79485, + [SMALL_STATE(2585)] = 79508, + [SMALL_STATE(2586)] = 79531, + [SMALL_STATE(2587)] = 79554, + [SMALL_STATE(2588)] = 79577, + [SMALL_STATE(2589)] = 79600, + [SMALL_STATE(2590)] = 79619, + [SMALL_STATE(2591)] = 79638, + [SMALL_STATE(2592)] = 79657, + [SMALL_STATE(2593)] = 79676, + [SMALL_STATE(2594)] = 79697, + [SMALL_STATE(2595)] = 79720, + [SMALL_STATE(2596)] = 79743, + [SMALL_STATE(2597)] = 79766, + [SMALL_STATE(2598)] = 79789, + [SMALL_STATE(2599)] = 79812, + [SMALL_STATE(2600)] = 79833, + [SMALL_STATE(2601)] = 79856, + [SMALL_STATE(2602)] = 79879, + [SMALL_STATE(2603)] = 79902, + [SMALL_STATE(2604)] = 79925, + [SMALL_STATE(2605)] = 79948, + [SMALL_STATE(2606)] = 79971, + [SMALL_STATE(2607)] = 79994, + [SMALL_STATE(2608)] = 80017, + [SMALL_STATE(2609)] = 80040, + [SMALL_STATE(2610)] = 80063, + [SMALL_STATE(2611)] = 80086, + [SMALL_STATE(2612)] = 80109, + [SMALL_STATE(2613)] = 80132, + [SMALL_STATE(2614)] = 80151, + [SMALL_STATE(2615)] = 80170, + [SMALL_STATE(2616)] = 80187, + [SMALL_STATE(2617)] = 80210, + [SMALL_STATE(2618)] = 80233, + [SMALL_STATE(2619)] = 80252, + [SMALL_STATE(2620)] = 80271, + [SMALL_STATE(2621)] = 80288, + [SMALL_STATE(2622)] = 80311, + [SMALL_STATE(2623)] = 80334, + [SMALL_STATE(2624)] = 80353, + [SMALL_STATE(2625)] = 80376, + [SMALL_STATE(2626)] = 80397, + [SMALL_STATE(2627)] = 80420, + [SMALL_STATE(2628)] = 80443, + [SMALL_STATE(2629)] = 80466, + [SMALL_STATE(2630)] = 80489, + [SMALL_STATE(2631)] = 80512, + [SMALL_STATE(2632)] = 80535, + [SMALL_STATE(2633)] = 80556, + [SMALL_STATE(2634)] = 80579, + [SMALL_STATE(2635)] = 80598, + [SMALL_STATE(2636)] = 80619, + [SMALL_STATE(2637)] = 80642, + [SMALL_STATE(2638)] = 80665, + [SMALL_STATE(2639)] = 80688, + [SMALL_STATE(2640)] = 80711, + [SMALL_STATE(2641)] = 80730, + [SMALL_STATE(2642)] = 80753, + [SMALL_STATE(2643)] = 80776, + [SMALL_STATE(2644)] = 80799, + [SMALL_STATE(2645)] = 80818, + [SMALL_STATE(2646)] = 80837, + [SMALL_STATE(2647)] = 80856, + [SMALL_STATE(2648)] = 80879, + [SMALL_STATE(2649)] = 80900, + [SMALL_STATE(2650)] = 80923, + [SMALL_STATE(2651)] = 80946, + [SMALL_STATE(2652)] = 80969, + [SMALL_STATE(2653)] = 80992, + [SMALL_STATE(2654)] = 81013, + [SMALL_STATE(2655)] = 81036, + [SMALL_STATE(2656)] = 81059, + [SMALL_STATE(2657)] = 81078, + [SMALL_STATE(2658)] = 81101, + [SMALL_STATE(2659)] = 81124, + [SMALL_STATE(2660)] = 81147, + [SMALL_STATE(2661)] = 81168, + [SMALL_STATE(2662)] = 81191, + [SMALL_STATE(2663)] = 81214, + [SMALL_STATE(2664)] = 81237, + [SMALL_STATE(2665)] = 81258, + [SMALL_STATE(2666)] = 81281, + [SMALL_STATE(2667)] = 81304, + [SMALL_STATE(2668)] = 81325, + [SMALL_STATE(2669)] = 81348, + [SMALL_STATE(2670)] = 81371, + [SMALL_STATE(2671)] = 81394, + [SMALL_STATE(2672)] = 81415, + [SMALL_STATE(2673)] = 81438, + [SMALL_STATE(2674)] = 81461, + [SMALL_STATE(2675)] = 81484, + [SMALL_STATE(2676)] = 81507, + [SMALL_STATE(2677)] = 81530, + [SMALL_STATE(2678)] = 81553, + [SMALL_STATE(2679)] = 81570, + [SMALL_STATE(2680)] = 81593, + [SMALL_STATE(2681)] = 81610, + [SMALL_STATE(2682)] = 81631, + [SMALL_STATE(2683)] = 81654, + [SMALL_STATE(2684)] = 81677, + [SMALL_STATE(2685)] = 81698, + [SMALL_STATE(2686)] = 81717, + [SMALL_STATE(2687)] = 81740, + [SMALL_STATE(2688)] = 81763, + [SMALL_STATE(2689)] = 81786, + [SMALL_STATE(2690)] = 81809, + [SMALL_STATE(2691)] = 81830, + [SMALL_STATE(2692)] = 81853, + [SMALL_STATE(2693)] = 81874, + [SMALL_STATE(2694)] = 81897, + [SMALL_STATE(2695)] = 81920, + [SMALL_STATE(2696)] = 81939, + [SMALL_STATE(2697)] = 81962, + [SMALL_STATE(2698)] = 81985, + [SMALL_STATE(2699)] = 82006, + [SMALL_STATE(2700)] = 82029, + [SMALL_STATE(2701)] = 82052, + [SMALL_STATE(2702)] = 82075, + [SMALL_STATE(2703)] = 82098, + [SMALL_STATE(2704)] = 82121, + [SMALL_STATE(2705)] = 82142, + [SMALL_STATE(2706)] = 82165, + [SMALL_STATE(2707)] = 82188, + [SMALL_STATE(2708)] = 82211, + [SMALL_STATE(2709)] = 82234, + [SMALL_STATE(2710)] = 82255, + [SMALL_STATE(2711)] = 82278, + [SMALL_STATE(2712)] = 82301, + [SMALL_STATE(2713)] = 82318, + [SMALL_STATE(2714)] = 82341, + [SMALL_STATE(2715)] = 82364, + [SMALL_STATE(2716)] = 82387, + [SMALL_STATE(2717)] = 82410, + [SMALL_STATE(2718)] = 82431, + [SMALL_STATE(2719)] = 82454, + [SMALL_STATE(2720)] = 82477, + [SMALL_STATE(2721)] = 82500, + [SMALL_STATE(2722)] = 82523, + [SMALL_STATE(2723)] = 82546, + [SMALL_STATE(2724)] = 82567, + [SMALL_STATE(2725)] = 82588, + [SMALL_STATE(2726)] = 82609, + [SMALL_STATE(2727)] = 82632, + [SMALL_STATE(2728)] = 82655, + [SMALL_STATE(2729)] = 82678, + [SMALL_STATE(2730)] = 82701, + [SMALL_STATE(2731)] = 82724, + [SMALL_STATE(2732)] = 82747, + [SMALL_STATE(2733)] = 82766, + [SMALL_STATE(2734)] = 82789, + [SMALL_STATE(2735)] = 82812, + [SMALL_STATE(2736)] = 82835, + [SMALL_STATE(2737)] = 82858, + [SMALL_STATE(2738)] = 82881, + [SMALL_STATE(2739)] = 82904, + [SMALL_STATE(2740)] = 82927, + [SMALL_STATE(2741)] = 82946, + [SMALL_STATE(2742)] = 82969, + [SMALL_STATE(2743)] = 82992, + [SMALL_STATE(2744)] = 83015, + [SMALL_STATE(2745)] = 83038, + [SMALL_STATE(2746)] = 83061, + [SMALL_STATE(2747)] = 83084, + [SMALL_STATE(2748)] = 83107, + [SMALL_STATE(2749)] = 83130, + [SMALL_STATE(2750)] = 83153, + [SMALL_STATE(2751)] = 83176, + [SMALL_STATE(2752)] = 83199, + [SMALL_STATE(2753)] = 83222, + [SMALL_STATE(2754)] = 83245, + [SMALL_STATE(2755)] = 83268, + [SMALL_STATE(2756)] = 83291, + [SMALL_STATE(2757)] = 83310, + [SMALL_STATE(2758)] = 83333, + [SMALL_STATE(2759)] = 83356, + [SMALL_STATE(2760)] = 83379, + [SMALL_STATE(2761)] = 83402, + [SMALL_STATE(2762)] = 83425, + [SMALL_STATE(2763)] = 83448, + [SMALL_STATE(2764)] = 83469, + [SMALL_STATE(2765)] = 83492, + [SMALL_STATE(2766)] = 83515, + [SMALL_STATE(2767)] = 83538, + [SMALL_STATE(2768)] = 83557, + [SMALL_STATE(2769)] = 83580, + [SMALL_STATE(2770)] = 83603, + [SMALL_STATE(2771)] = 83626, + [SMALL_STATE(2772)] = 83649, + [SMALL_STATE(2773)] = 83672, + [SMALL_STATE(2774)] = 83695, + [SMALL_STATE(2775)] = 83714, + [SMALL_STATE(2776)] = 83737, + [SMALL_STATE(2777)] = 83760, + [SMALL_STATE(2778)] = 83783, + [SMALL_STATE(2779)] = 83806, + [SMALL_STATE(2780)] = 83829, + [SMALL_STATE(2781)] = 83850, + [SMALL_STATE(2782)] = 83873, + [SMALL_STATE(2783)] = 83896, + [SMALL_STATE(2784)] = 83916, + [SMALL_STATE(2785)] = 83936, + [SMALL_STATE(2786)] = 83956, + [SMALL_STATE(2787)] = 83976, + [SMALL_STATE(2788)] = 83996, + [SMALL_STATE(2789)] = 84016, + [SMALL_STATE(2790)] = 84036, + [SMALL_STATE(2791)] = 84056, + [SMALL_STATE(2792)] = 84076, + [SMALL_STATE(2793)] = 84096, + [SMALL_STATE(2794)] = 84116, + [SMALL_STATE(2795)] = 84136, + [SMALL_STATE(2796)] = 84156, + [SMALL_STATE(2797)] = 84176, + [SMALL_STATE(2798)] = 84196, + [SMALL_STATE(2799)] = 84216, + [SMALL_STATE(2800)] = 84236, + [SMALL_STATE(2801)] = 84256, + [SMALL_STATE(2802)] = 84276, + [SMALL_STATE(2803)] = 84296, + [SMALL_STATE(2804)] = 84316, + [SMALL_STATE(2805)] = 84336, + [SMALL_STATE(2806)] = 84354, + [SMALL_STATE(2807)] = 84374, + [SMALL_STATE(2808)] = 84392, + [SMALL_STATE(2809)] = 84412, + [SMALL_STATE(2810)] = 84430, + [SMALL_STATE(2811)] = 84450, + [SMALL_STATE(2812)] = 84470, + [SMALL_STATE(2813)] = 84488, + [SMALL_STATE(2814)] = 84508, + [SMALL_STATE(2815)] = 84526, + [SMALL_STATE(2816)] = 84546, + [SMALL_STATE(2817)] = 84566, + [SMALL_STATE(2818)] = 84584, + [SMALL_STATE(2819)] = 84604, + [SMALL_STATE(2820)] = 84620, + [SMALL_STATE(2821)] = 84638, + [SMALL_STATE(2822)] = 84658, + [SMALL_STATE(2823)] = 84678, + [SMALL_STATE(2824)] = 84696, + [SMALL_STATE(2825)] = 84712, + [SMALL_STATE(2826)] = 84732, + [SMALL_STATE(2827)] = 84752, + [SMALL_STATE(2828)] = 84772, + [SMALL_STATE(2829)] = 84790, + [SMALL_STATE(2830)] = 84810, + [SMALL_STATE(2831)] = 84826, + [SMALL_STATE(2832)] = 84846, + [SMALL_STATE(2833)] = 84866, + [SMALL_STATE(2834)] = 84886, + [SMALL_STATE(2835)] = 84902, + [SMALL_STATE(2836)] = 84922, + [SMALL_STATE(2837)] = 84940, + [SMALL_STATE(2838)] = 84960, + [SMALL_STATE(2839)] = 84980, + [SMALL_STATE(2840)] = 85000, + [SMALL_STATE(2841)] = 85016, + [SMALL_STATE(2842)] = 85034, + [SMALL_STATE(2843)] = 85052, + [SMALL_STATE(2844)] = 85072, + [SMALL_STATE(2845)] = 85092, + [SMALL_STATE(2846)] = 85112, + [SMALL_STATE(2847)] = 85130, + [SMALL_STATE(2848)] = 85150, + [SMALL_STATE(2849)] = 85170, + [SMALL_STATE(2850)] = 85188, + [SMALL_STATE(2851)] = 85204, + [SMALL_STATE(2852)] = 85222, + [SMALL_STATE(2853)] = 85242, + [SMALL_STATE(2854)] = 85262, + [SMALL_STATE(2855)] = 85282, + [SMALL_STATE(2856)] = 85302, + [SMALL_STATE(2857)] = 85322, + [SMALL_STATE(2858)] = 85342, + [SMALL_STATE(2859)] = 85362, + [SMALL_STATE(2860)] = 85382, + [SMALL_STATE(2861)] = 85402, + [SMALL_STATE(2862)] = 85422, + [SMALL_STATE(2863)] = 85440, + [SMALL_STATE(2864)] = 85460, + [SMALL_STATE(2865)] = 85480, + [SMALL_STATE(2866)] = 85496, + [SMALL_STATE(2867)] = 85516, + [SMALL_STATE(2868)] = 85534, + [SMALL_STATE(2869)] = 85554, + [SMALL_STATE(2870)] = 85574, + [SMALL_STATE(2871)] = 85594, + [SMALL_STATE(2872)] = 85612, + [SMALL_STATE(2873)] = 85632, + [SMALL_STATE(2874)] = 85652, + [SMALL_STATE(2875)] = 85672, + [SMALL_STATE(2876)] = 85692, + [SMALL_STATE(2877)] = 85710, + [SMALL_STATE(2878)] = 85730, + [SMALL_STATE(2879)] = 85748, + [SMALL_STATE(2880)] = 85766, + [SMALL_STATE(2881)] = 85786, + [SMALL_STATE(2882)] = 85804, + [SMALL_STATE(2883)] = 85824, + [SMALL_STATE(2884)] = 85842, + [SMALL_STATE(2885)] = 85862, + [SMALL_STATE(2886)] = 85882, + [SMALL_STATE(2887)] = 85902, + [SMALL_STATE(2888)] = 85920, + [SMALL_STATE(2889)] = 85940, + [SMALL_STATE(2890)] = 85960, + [SMALL_STATE(2891)] = 85980, + [SMALL_STATE(2892)] = 85998, + [SMALL_STATE(2893)] = 86018, + [SMALL_STATE(2894)] = 86036, + [SMALL_STATE(2895)] = 86056, + [SMALL_STATE(2896)] = 86076, + [SMALL_STATE(2897)] = 86096, + [SMALL_STATE(2898)] = 86116, + [SMALL_STATE(2899)] = 86134, + [SMALL_STATE(2900)] = 86154, + [SMALL_STATE(2901)] = 86174, + [SMALL_STATE(2902)] = 86194, + [SMALL_STATE(2903)] = 86214, + [SMALL_STATE(2904)] = 86234, + [SMALL_STATE(2905)] = 86254, + [SMALL_STATE(2906)] = 86274, + [SMALL_STATE(2907)] = 86290, + [SMALL_STATE(2908)] = 86310, + [SMALL_STATE(2909)] = 86330, + [SMALL_STATE(2910)] = 86350, + [SMALL_STATE(2911)] = 86370, + [SMALL_STATE(2912)] = 86390, + [SMALL_STATE(2913)] = 86410, + [SMALL_STATE(2914)] = 86426, + [SMALL_STATE(2915)] = 86446, + [SMALL_STATE(2916)] = 86466, + [SMALL_STATE(2917)] = 86484, + [SMALL_STATE(2918)] = 86504, + [SMALL_STATE(2919)] = 86522, + [SMALL_STATE(2920)] = 86540, + [SMALL_STATE(2921)] = 86560, + [SMALL_STATE(2922)] = 86580, + [SMALL_STATE(2923)] = 86598, + [SMALL_STATE(2924)] = 86616, + [SMALL_STATE(2925)] = 86636, + [SMALL_STATE(2926)] = 86656, + [SMALL_STATE(2927)] = 86674, + [SMALL_STATE(2928)] = 86692, + [SMALL_STATE(2929)] = 86712, + [SMALL_STATE(2930)] = 86732, + [SMALL_STATE(2931)] = 86752, + [SMALL_STATE(2932)] = 86772, + [SMALL_STATE(2933)] = 86790, + [SMALL_STATE(2934)] = 86810, + [SMALL_STATE(2935)] = 86830, + [SMALL_STATE(2936)] = 86850, + [SMALL_STATE(2937)] = 86870, + [SMALL_STATE(2938)] = 86890, + [SMALL_STATE(2939)] = 86908, + [SMALL_STATE(2940)] = 86928, + [SMALL_STATE(2941)] = 86948, + [SMALL_STATE(2942)] = 86968, + [SMALL_STATE(2943)] = 86988, + [SMALL_STATE(2944)] = 87008, + [SMALL_STATE(2945)] = 87026, + [SMALL_STATE(2946)] = 87044, + [SMALL_STATE(2947)] = 87064, + [SMALL_STATE(2948)] = 87084, + [SMALL_STATE(2949)] = 87104, + [SMALL_STATE(2950)] = 87124, + [SMALL_STATE(2951)] = 87144, + [SMALL_STATE(2952)] = 87164, + [SMALL_STATE(2953)] = 87184, + [SMALL_STATE(2954)] = 87204, + [SMALL_STATE(2955)] = 87224, + [SMALL_STATE(2956)] = 87244, + [SMALL_STATE(2957)] = 87260, + [SMALL_STATE(2958)] = 87280, + [SMALL_STATE(2959)] = 87300, + [SMALL_STATE(2960)] = 87320, + [SMALL_STATE(2961)] = 87338, + [SMALL_STATE(2962)] = 87356, + [SMALL_STATE(2963)] = 87374, + [SMALL_STATE(2964)] = 87394, + [SMALL_STATE(2965)] = 87414, + [SMALL_STATE(2966)] = 87434, + [SMALL_STATE(2967)] = 87454, + [SMALL_STATE(2968)] = 87474, + [SMALL_STATE(2969)] = 87494, + [SMALL_STATE(2970)] = 87510, + [SMALL_STATE(2971)] = 87530, + [SMALL_STATE(2972)] = 87546, + [SMALL_STATE(2973)] = 87566, + [SMALL_STATE(2974)] = 87586, + [SMALL_STATE(2975)] = 87606, + [SMALL_STATE(2976)] = 87624, + [SMALL_STATE(2977)] = 87644, + [SMALL_STATE(2978)] = 87662, + [SMALL_STATE(2979)] = 87680, + [SMALL_STATE(2980)] = 87700, + [SMALL_STATE(2981)] = 87720, + [SMALL_STATE(2982)] = 87740, + [SMALL_STATE(2983)] = 87760, + [SMALL_STATE(2984)] = 87780, + [SMALL_STATE(2985)] = 87800, + [SMALL_STATE(2986)] = 87818, + [SMALL_STATE(2987)] = 87838, + [SMALL_STATE(2988)] = 87858, + [SMALL_STATE(2989)] = 87878, + [SMALL_STATE(2990)] = 87898, + [SMALL_STATE(2991)] = 87918, + [SMALL_STATE(2992)] = 87938, + [SMALL_STATE(2993)] = 87954, + [SMALL_STATE(2994)] = 87974, + [SMALL_STATE(2995)] = 87990, + [SMALL_STATE(2996)] = 88006, + [SMALL_STATE(2997)] = 88026, + [SMALL_STATE(2998)] = 88046, + [SMALL_STATE(2999)] = 88066, + [SMALL_STATE(3000)] = 88086, + [SMALL_STATE(3001)] = 88106, + [SMALL_STATE(3002)] = 88126, + [SMALL_STATE(3003)] = 88142, + [SMALL_STATE(3004)] = 88162, + [SMALL_STATE(3005)] = 88182, + [SMALL_STATE(3006)] = 88202, + [SMALL_STATE(3007)] = 88222, + [SMALL_STATE(3008)] = 88238, + [SMALL_STATE(3009)] = 88258, + [SMALL_STATE(3010)] = 88278, + [SMALL_STATE(3011)] = 88298, + [SMALL_STATE(3012)] = 88318, + [SMALL_STATE(3013)] = 88334, + [SMALL_STATE(3014)] = 88350, + [SMALL_STATE(3015)] = 88366, + [SMALL_STATE(3016)] = 88382, + [SMALL_STATE(3017)] = 88402, + [SMALL_STATE(3018)] = 88418, + [SMALL_STATE(3019)] = 88434, + [SMALL_STATE(3020)] = 88450, + [SMALL_STATE(3021)] = 88466, + [SMALL_STATE(3022)] = 88482, + [SMALL_STATE(3023)] = 88498, + [SMALL_STATE(3024)] = 88514, + [SMALL_STATE(3025)] = 88530, + [SMALL_STATE(3026)] = 88550, + [SMALL_STATE(3027)] = 88566, + [SMALL_STATE(3028)] = 88582, + [SMALL_STATE(3029)] = 88602, + [SMALL_STATE(3030)] = 88618, + [SMALL_STATE(3031)] = 88638, + [SMALL_STATE(3032)] = 88658, + [SMALL_STATE(3033)] = 88674, + [SMALL_STATE(3034)] = 88690, + [SMALL_STATE(3035)] = 88710, + [SMALL_STATE(3036)] = 88730, + [SMALL_STATE(3037)] = 88746, + [SMALL_STATE(3038)] = 88762, + [SMALL_STATE(3039)] = 88780, + [SMALL_STATE(3040)] = 88796, + [SMALL_STATE(3041)] = 88816, + [SMALL_STATE(3042)] = 88832, + [SMALL_STATE(3043)] = 88852, + [SMALL_STATE(3044)] = 88868, + [SMALL_STATE(3045)] = 88884, + [SMALL_STATE(3046)] = 88900, + [SMALL_STATE(3047)] = 88916, + [SMALL_STATE(3048)] = 88932, + [SMALL_STATE(3049)] = 88948, + [SMALL_STATE(3050)] = 88964, + [SMALL_STATE(3051)] = 88984, + [SMALL_STATE(3052)] = 89000, + [SMALL_STATE(3053)] = 89020, + [SMALL_STATE(3054)] = 89036, + [SMALL_STATE(3055)] = 89052, + [SMALL_STATE(3056)] = 89068, + [SMALL_STATE(3057)] = 89088, + [SMALL_STATE(3058)] = 89104, + [SMALL_STATE(3059)] = 89124, + [SMALL_STATE(3060)] = 89144, + [SMALL_STATE(3061)] = 89160, + [SMALL_STATE(3062)] = 89180, + [SMALL_STATE(3063)] = 89200, + [SMALL_STATE(3064)] = 89216, + [SMALL_STATE(3065)] = 89236, + [SMALL_STATE(3066)] = 89256, + [SMALL_STATE(3067)] = 89276, + [SMALL_STATE(3068)] = 89296, + [SMALL_STATE(3069)] = 89316, + [SMALL_STATE(3070)] = 89336, + [SMALL_STATE(3071)] = 89356, + [SMALL_STATE(3072)] = 89372, + [SMALL_STATE(3073)] = 89392, + [SMALL_STATE(3074)] = 89412, + [SMALL_STATE(3075)] = 89432, + [SMALL_STATE(3076)] = 89452, + [SMALL_STATE(3077)] = 89468, + [SMALL_STATE(3078)] = 89484, + [SMALL_STATE(3079)] = 89500, + [SMALL_STATE(3080)] = 89520, + [SMALL_STATE(3081)] = 89540, + [SMALL_STATE(3082)] = 89560, + [SMALL_STATE(3083)] = 89580, + [SMALL_STATE(3084)] = 89600, + [SMALL_STATE(3085)] = 89620, + [SMALL_STATE(3086)] = 89640, + [SMALL_STATE(3087)] = 89660, + [SMALL_STATE(3088)] = 89680, + [SMALL_STATE(3089)] = 89696, + [SMALL_STATE(3090)] = 89716, + [SMALL_STATE(3091)] = 89736, + [SMALL_STATE(3092)] = 89756, + [SMALL_STATE(3093)] = 89774, + [SMALL_STATE(3094)] = 89794, + [SMALL_STATE(3095)] = 89814, + [SMALL_STATE(3096)] = 89832, + [SMALL_STATE(3097)] = 89852, + [SMALL_STATE(3098)] = 89869, + [SMALL_STATE(3099)] = 89886, + [SMALL_STATE(3100)] = 89903, + [SMALL_STATE(3101)] = 89920, + [SMALL_STATE(3102)] = 89937, + [SMALL_STATE(3103)] = 89954, + [SMALL_STATE(3104)] = 89971, + [SMALL_STATE(3105)] = 89988, + [SMALL_STATE(3106)] = 90005, + [SMALL_STATE(3107)] = 90022, + [SMALL_STATE(3108)] = 90039, + [SMALL_STATE(3109)] = 90056, + [SMALL_STATE(3110)] = 90071, + [SMALL_STATE(3111)] = 90088, + [SMALL_STATE(3112)] = 90105, + [SMALL_STATE(3113)] = 90122, + [SMALL_STATE(3114)] = 90139, + [SMALL_STATE(3115)] = 90156, + [SMALL_STATE(3116)] = 90173, + [SMALL_STATE(3117)] = 90190, + [SMALL_STATE(3118)] = 90207, + [SMALL_STATE(3119)] = 90224, + [SMALL_STATE(3120)] = 90241, + [SMALL_STATE(3121)] = 90258, + [SMALL_STATE(3122)] = 90273, + [SMALL_STATE(3123)] = 90290, + [SMALL_STATE(3124)] = 90307, + [SMALL_STATE(3125)] = 90324, + [SMALL_STATE(3126)] = 90341, + [SMALL_STATE(3127)] = 90358, + [SMALL_STATE(3128)] = 90375, + [SMALL_STATE(3129)] = 90392, + [SMALL_STATE(3130)] = 90407, + [SMALL_STATE(3131)] = 90424, + [SMALL_STATE(3132)] = 90441, + [SMALL_STATE(3133)] = 90458, + [SMALL_STATE(3134)] = 90475, + [SMALL_STATE(3135)] = 90492, + [SMALL_STATE(3136)] = 90509, + [SMALL_STATE(3137)] = 90526, + [SMALL_STATE(3138)] = 90543, + [SMALL_STATE(3139)] = 90560, + [SMALL_STATE(3140)] = 90577, + [SMALL_STATE(3141)] = 90592, + [SMALL_STATE(3142)] = 90609, + [SMALL_STATE(3143)] = 90626, + [SMALL_STATE(3144)] = 90641, + [SMALL_STATE(3145)] = 90658, + [SMALL_STATE(3146)] = 90675, + [SMALL_STATE(3147)] = 90692, + [SMALL_STATE(3148)] = 90707, + [SMALL_STATE(3149)] = 90724, + [SMALL_STATE(3150)] = 90741, + [SMALL_STATE(3151)] = 90756, + [SMALL_STATE(3152)] = 90773, + [SMALL_STATE(3153)] = 90790, + [SMALL_STATE(3154)] = 90807, + [SMALL_STATE(3155)] = 90824, + [SMALL_STATE(3156)] = 90839, + [SMALL_STATE(3157)] = 90856, + [SMALL_STATE(3158)] = 90873, + [SMALL_STATE(3159)] = 90890, + [SMALL_STATE(3160)] = 90907, + [SMALL_STATE(3161)] = 90922, + [SMALL_STATE(3162)] = 90939, + [SMALL_STATE(3163)] = 90956, + [SMALL_STATE(3164)] = 90971, + [SMALL_STATE(3165)] = 90988, + [SMALL_STATE(3166)] = 91003, + [SMALL_STATE(3167)] = 91018, + [SMALL_STATE(3168)] = 91035, + [SMALL_STATE(3169)] = 91052, + [SMALL_STATE(3170)] = 91069, + [SMALL_STATE(3171)] = 91086, + [SMALL_STATE(3172)] = 91103, + [SMALL_STATE(3173)] = 91120, + [SMALL_STATE(3174)] = 91135, + [SMALL_STATE(3175)] = 91152, + [SMALL_STATE(3176)] = 91169, + [SMALL_STATE(3177)] = 91186, + [SMALL_STATE(3178)] = 91203, + [SMALL_STATE(3179)] = 91218, + [SMALL_STATE(3180)] = 91235, + [SMALL_STATE(3181)] = 91250, + [SMALL_STATE(3182)] = 91267, + [SMALL_STATE(3183)] = 91284, + [SMALL_STATE(3184)] = 91301, + [SMALL_STATE(3185)] = 91318, + [SMALL_STATE(3186)] = 91335, + [SMALL_STATE(3187)] = 91352, + [SMALL_STATE(3188)] = 91369, + [SMALL_STATE(3189)] = 91386, + [SMALL_STATE(3190)] = 91403, + [SMALL_STATE(3191)] = 91420, + [SMALL_STATE(3192)] = 91437, + [SMALL_STATE(3193)] = 91454, + [SMALL_STATE(3194)] = 91471, + [SMALL_STATE(3195)] = 91488, + [SMALL_STATE(3196)] = 91505, + [SMALL_STATE(3197)] = 91520, + [SMALL_STATE(3198)] = 91537, + [SMALL_STATE(3199)] = 91554, + [SMALL_STATE(3200)] = 91569, + [SMALL_STATE(3201)] = 91586, + [SMALL_STATE(3202)] = 91603, + [SMALL_STATE(3203)] = 91620, + [SMALL_STATE(3204)] = 91635, + [SMALL_STATE(3205)] = 91652, + [SMALL_STATE(3206)] = 91669, + [SMALL_STATE(3207)] = 91686, + [SMALL_STATE(3208)] = 91703, + [SMALL_STATE(3209)] = 91718, + [SMALL_STATE(3210)] = 91735, + [SMALL_STATE(3211)] = 91752, + [SMALL_STATE(3212)] = 91769, + [SMALL_STATE(3213)] = 91786, + [SMALL_STATE(3214)] = 91803, + [SMALL_STATE(3215)] = 91820, + [SMALL_STATE(3216)] = 91837, + [SMALL_STATE(3217)] = 91854, + [SMALL_STATE(3218)] = 91871, + [SMALL_STATE(3219)] = 91888, + [SMALL_STATE(3220)] = 91903, + [SMALL_STATE(3221)] = 91918, + [SMALL_STATE(3222)] = 91935, + [SMALL_STATE(3223)] = 91952, + [SMALL_STATE(3224)] = 91969, + [SMALL_STATE(3225)] = 91984, + [SMALL_STATE(3226)] = 91999, + [SMALL_STATE(3227)] = 92016, + [SMALL_STATE(3228)] = 92033, + [SMALL_STATE(3229)] = 92048, + [SMALL_STATE(3230)] = 92065, + [SMALL_STATE(3231)] = 92080, + [SMALL_STATE(3232)] = 92097, + [SMALL_STATE(3233)] = 92114, + [SMALL_STATE(3234)] = 92131, + [SMALL_STATE(3235)] = 92146, + [SMALL_STATE(3236)] = 92163, + [SMALL_STATE(3237)] = 92180, + [SMALL_STATE(3238)] = 92197, + [SMALL_STATE(3239)] = 92214, + [SMALL_STATE(3240)] = 92229, + [SMALL_STATE(3241)] = 92246, + [SMALL_STATE(3242)] = 92263, + [SMALL_STATE(3243)] = 92280, + [SMALL_STATE(3244)] = 92297, + [SMALL_STATE(3245)] = 92314, + [SMALL_STATE(3246)] = 92331, + [SMALL_STATE(3247)] = 92348, + [SMALL_STATE(3248)] = 92365, + [SMALL_STATE(3249)] = 92382, + [SMALL_STATE(3250)] = 92399, + [SMALL_STATE(3251)] = 92416, + [SMALL_STATE(3252)] = 92433, + [SMALL_STATE(3253)] = 92450, + [SMALL_STATE(3254)] = 92467, + [SMALL_STATE(3255)] = 92484, + [SMALL_STATE(3256)] = 92501, + [SMALL_STATE(3257)] = 92516, + [SMALL_STATE(3258)] = 92533, + [SMALL_STATE(3259)] = 92548, + [SMALL_STATE(3260)] = 92565, + [SMALL_STATE(3261)] = 92582, + [SMALL_STATE(3262)] = 92599, + [SMALL_STATE(3263)] = 92616, + [SMALL_STATE(3264)] = 92633, + [SMALL_STATE(3265)] = 92650, + [SMALL_STATE(3266)] = 92667, + [SMALL_STATE(3267)] = 92684, + [SMALL_STATE(3268)] = 92701, + [SMALL_STATE(3269)] = 92718, + [SMALL_STATE(3270)] = 92735, + [SMALL_STATE(3271)] = 92752, + [SMALL_STATE(3272)] = 92767, + [SMALL_STATE(3273)] = 92784, + [SMALL_STATE(3274)] = 92801, + [SMALL_STATE(3275)] = 92816, + [SMALL_STATE(3276)] = 92833, + [SMALL_STATE(3277)] = 92850, + [SMALL_STATE(3278)] = 92865, + [SMALL_STATE(3279)] = 92880, + [SMALL_STATE(3280)] = 92897, + [SMALL_STATE(3281)] = 92914, + [SMALL_STATE(3282)] = 92931, + [SMALL_STATE(3283)] = 92948, + [SMALL_STATE(3284)] = 92965, + [SMALL_STATE(3285)] = 92982, + [SMALL_STATE(3286)] = 92999, + [SMALL_STATE(3287)] = 93016, + [SMALL_STATE(3288)] = 93031, + [SMALL_STATE(3289)] = 93048, + [SMALL_STATE(3290)] = 93065, + [SMALL_STATE(3291)] = 93080, + [SMALL_STATE(3292)] = 93095, + [SMALL_STATE(3293)] = 93112, + [SMALL_STATE(3294)] = 93129, + [SMALL_STATE(3295)] = 93146, + [SMALL_STATE(3296)] = 93161, + [SMALL_STATE(3297)] = 93176, + [SMALL_STATE(3298)] = 93191, + [SMALL_STATE(3299)] = 93208, + [SMALL_STATE(3300)] = 93225, + [SMALL_STATE(3301)] = 93242, + [SMALL_STATE(3302)] = 93257, + [SMALL_STATE(3303)] = 93274, + [SMALL_STATE(3304)] = 93291, + [SMALL_STATE(3305)] = 93308, + [SMALL_STATE(3306)] = 93323, + [SMALL_STATE(3307)] = 93340, + [SMALL_STATE(3308)] = 93357, + [SMALL_STATE(3309)] = 93374, + [SMALL_STATE(3310)] = 93391, + [SMALL_STATE(3311)] = 93408, + [SMALL_STATE(3312)] = 93425, + [SMALL_STATE(3313)] = 93442, + [SMALL_STATE(3314)] = 93457, + [SMALL_STATE(3315)] = 93474, + [SMALL_STATE(3316)] = 93491, + [SMALL_STATE(3317)] = 93508, + [SMALL_STATE(3318)] = 93525, + [SMALL_STATE(3319)] = 93542, + [SMALL_STATE(3320)] = 93559, + [SMALL_STATE(3321)] = 93576, + [SMALL_STATE(3322)] = 93593, + [SMALL_STATE(3323)] = 93610, + [SMALL_STATE(3324)] = 93627, + [SMALL_STATE(3325)] = 93642, + [SMALL_STATE(3326)] = 93659, + [SMALL_STATE(3327)] = 93676, + [SMALL_STATE(3328)] = 93693, + [SMALL_STATE(3329)] = 93710, + [SMALL_STATE(3330)] = 93727, + [SMALL_STATE(3331)] = 93742, + [SMALL_STATE(3332)] = 93759, + [SMALL_STATE(3333)] = 93776, + [SMALL_STATE(3334)] = 93793, + [SMALL_STATE(3335)] = 93810, + [SMALL_STATE(3336)] = 93827, + [SMALL_STATE(3337)] = 93844, + [SMALL_STATE(3338)] = 93861, + [SMALL_STATE(3339)] = 93878, + [SMALL_STATE(3340)] = 93895, + [SMALL_STATE(3341)] = 93912, + [SMALL_STATE(3342)] = 93929, + [SMALL_STATE(3343)] = 93946, + [SMALL_STATE(3344)] = 93961, + [SMALL_STATE(3345)] = 93978, + [SMALL_STATE(3346)] = 93995, + [SMALL_STATE(3347)] = 94012, + [SMALL_STATE(3348)] = 94029, + [SMALL_STATE(3349)] = 94046, + [SMALL_STATE(3350)] = 94061, + [SMALL_STATE(3351)] = 94078, + [SMALL_STATE(3352)] = 94095, + [SMALL_STATE(3353)] = 94112, + [SMALL_STATE(3354)] = 94129, + [SMALL_STATE(3355)] = 94146, + [SMALL_STATE(3356)] = 94163, + [SMALL_STATE(3357)] = 94180, + [SMALL_STATE(3358)] = 94197, + [SMALL_STATE(3359)] = 94214, + [SMALL_STATE(3360)] = 94231, + [SMALL_STATE(3361)] = 94248, + [SMALL_STATE(3362)] = 94265, + [SMALL_STATE(3363)] = 94282, + [SMALL_STATE(3364)] = 94299, + [SMALL_STATE(3365)] = 94316, + [SMALL_STATE(3366)] = 94333, + [SMALL_STATE(3367)] = 94350, + [SMALL_STATE(3368)] = 94365, + [SMALL_STATE(3369)] = 94382, + [SMALL_STATE(3370)] = 94399, + [SMALL_STATE(3371)] = 94416, + [SMALL_STATE(3372)] = 94433, + [SMALL_STATE(3373)] = 94450, + [SMALL_STATE(3374)] = 94467, + [SMALL_STATE(3375)] = 94484, + [SMALL_STATE(3376)] = 94501, + [SMALL_STATE(3377)] = 94518, + [SMALL_STATE(3378)] = 94535, + [SMALL_STATE(3379)] = 94552, + [SMALL_STATE(3380)] = 94569, + [SMALL_STATE(3381)] = 94586, + [SMALL_STATE(3382)] = 94603, + [SMALL_STATE(3383)] = 94618, + [SMALL_STATE(3384)] = 94635, + [SMALL_STATE(3385)] = 94652, + [SMALL_STATE(3386)] = 94669, + [SMALL_STATE(3387)] = 94686, + [SMALL_STATE(3388)] = 94703, + [SMALL_STATE(3389)] = 94720, + [SMALL_STATE(3390)] = 94737, + [SMALL_STATE(3391)] = 94754, + [SMALL_STATE(3392)] = 94771, + [SMALL_STATE(3393)] = 94788, + [SMALL_STATE(3394)] = 94805, + [SMALL_STATE(3395)] = 94822, + [SMALL_STATE(3396)] = 94839, + [SMALL_STATE(3397)] = 94856, + [SMALL_STATE(3398)] = 94871, + [SMALL_STATE(3399)] = 94886, + [SMALL_STATE(3400)] = 94903, + [SMALL_STATE(3401)] = 94917, + [SMALL_STATE(3402)] = 94931, + [SMALL_STATE(3403)] = 94945, + [SMALL_STATE(3404)] = 94959, + [SMALL_STATE(3405)] = 94973, + [SMALL_STATE(3406)] = 94987, + [SMALL_STATE(3407)] = 95001, + [SMALL_STATE(3408)] = 95015, + [SMALL_STATE(3409)] = 95029, + [SMALL_STATE(3410)] = 95043, + [SMALL_STATE(3411)] = 95057, + [SMALL_STATE(3412)] = 95071, + [SMALL_STATE(3413)] = 95085, + [SMALL_STATE(3414)] = 95099, + [SMALL_STATE(3415)] = 95113, + [SMALL_STATE(3416)] = 95127, + [SMALL_STATE(3417)] = 95141, + [SMALL_STATE(3418)] = 95155, + [SMALL_STATE(3419)] = 95169, + [SMALL_STATE(3420)] = 95183, + [SMALL_STATE(3421)] = 95197, + [SMALL_STATE(3422)] = 95211, + [SMALL_STATE(3423)] = 95225, + [SMALL_STATE(3424)] = 95239, + [SMALL_STATE(3425)] = 95253, + [SMALL_STATE(3426)] = 95267, + [SMALL_STATE(3427)] = 95281, + [SMALL_STATE(3428)] = 95295, + [SMALL_STATE(3429)] = 95309, + [SMALL_STATE(3430)] = 95323, + [SMALL_STATE(3431)] = 95337, + [SMALL_STATE(3432)] = 95351, + [SMALL_STATE(3433)] = 95365, + [SMALL_STATE(3434)] = 95379, + [SMALL_STATE(3435)] = 95393, + [SMALL_STATE(3436)] = 95407, + [SMALL_STATE(3437)] = 95421, + [SMALL_STATE(3438)] = 95435, + [SMALL_STATE(3439)] = 95449, + [SMALL_STATE(3440)] = 95463, + [SMALL_STATE(3441)] = 95477, + [SMALL_STATE(3442)] = 95491, + [SMALL_STATE(3443)] = 95505, + [SMALL_STATE(3444)] = 95519, + [SMALL_STATE(3445)] = 95533, + [SMALL_STATE(3446)] = 95547, + [SMALL_STATE(3447)] = 95561, + [SMALL_STATE(3448)] = 95575, + [SMALL_STATE(3449)] = 95589, + [SMALL_STATE(3450)] = 95603, + [SMALL_STATE(3451)] = 95617, + [SMALL_STATE(3452)] = 95631, + [SMALL_STATE(3453)] = 95645, + [SMALL_STATE(3454)] = 95659, + [SMALL_STATE(3455)] = 95673, + [SMALL_STATE(3456)] = 95687, + [SMALL_STATE(3457)] = 95701, + [SMALL_STATE(3458)] = 95715, + [SMALL_STATE(3459)] = 95729, + [SMALL_STATE(3460)] = 95743, + [SMALL_STATE(3461)] = 95757, + [SMALL_STATE(3462)] = 95771, + [SMALL_STATE(3463)] = 95785, + [SMALL_STATE(3464)] = 95799, + [SMALL_STATE(3465)] = 95813, + [SMALL_STATE(3466)] = 95827, + [SMALL_STATE(3467)] = 95841, + [SMALL_STATE(3468)] = 95855, + [SMALL_STATE(3469)] = 95869, + [SMALL_STATE(3470)] = 95883, + [SMALL_STATE(3471)] = 95897, + [SMALL_STATE(3472)] = 95911, + [SMALL_STATE(3473)] = 95925, + [SMALL_STATE(3474)] = 95939, + [SMALL_STATE(3475)] = 95953, + [SMALL_STATE(3476)] = 95967, + [SMALL_STATE(3477)] = 95981, + [SMALL_STATE(3478)] = 95995, + [SMALL_STATE(3479)] = 96009, + [SMALL_STATE(3480)] = 96023, + [SMALL_STATE(3481)] = 96037, + [SMALL_STATE(3482)] = 96051, + [SMALL_STATE(3483)] = 96065, + [SMALL_STATE(3484)] = 96079, + [SMALL_STATE(3485)] = 96093, + [SMALL_STATE(3486)] = 96107, + [SMALL_STATE(3487)] = 96121, + [SMALL_STATE(3488)] = 96135, + [SMALL_STATE(3489)] = 96149, + [SMALL_STATE(3490)] = 96163, + [SMALL_STATE(3491)] = 96177, + [SMALL_STATE(3492)] = 96191, + [SMALL_STATE(3493)] = 96205, + [SMALL_STATE(3494)] = 96219, + [SMALL_STATE(3495)] = 96233, + [SMALL_STATE(3496)] = 96247, + [SMALL_STATE(3497)] = 96261, + [SMALL_STATE(3498)] = 96275, + [SMALL_STATE(3499)] = 96289, + [SMALL_STATE(3500)] = 96303, + [SMALL_STATE(3501)] = 96317, + [SMALL_STATE(3502)] = 96331, + [SMALL_STATE(3503)] = 96345, + [SMALL_STATE(3504)] = 96359, + [SMALL_STATE(3505)] = 96373, + [SMALL_STATE(3506)] = 96387, + [SMALL_STATE(3507)] = 96401, + [SMALL_STATE(3508)] = 96415, + [SMALL_STATE(3509)] = 96429, + [SMALL_STATE(3510)] = 96443, + [SMALL_STATE(3511)] = 96457, + [SMALL_STATE(3512)] = 96471, + [SMALL_STATE(3513)] = 96485, + [SMALL_STATE(3514)] = 96499, + [SMALL_STATE(3515)] = 96513, + [SMALL_STATE(3516)] = 96527, + [SMALL_STATE(3517)] = 96541, + [SMALL_STATE(3518)] = 96555, + [SMALL_STATE(3519)] = 96569, + [SMALL_STATE(3520)] = 96583, + [SMALL_STATE(3521)] = 96597, + [SMALL_STATE(3522)] = 96611, + [SMALL_STATE(3523)] = 96625, + [SMALL_STATE(3524)] = 96639, + [SMALL_STATE(3525)] = 96653, + [SMALL_STATE(3526)] = 96667, + [SMALL_STATE(3527)] = 96681, + [SMALL_STATE(3528)] = 96695, + [SMALL_STATE(3529)] = 96709, + [SMALL_STATE(3530)] = 96723, + [SMALL_STATE(3531)] = 96737, + [SMALL_STATE(3532)] = 96751, + [SMALL_STATE(3533)] = 96765, + [SMALL_STATE(3534)] = 96779, + [SMALL_STATE(3535)] = 96793, + [SMALL_STATE(3536)] = 96807, + [SMALL_STATE(3537)] = 96821, + [SMALL_STATE(3538)] = 96835, + [SMALL_STATE(3539)] = 96849, + [SMALL_STATE(3540)] = 96863, + [SMALL_STATE(3541)] = 96877, + [SMALL_STATE(3542)] = 96891, + [SMALL_STATE(3543)] = 96905, + [SMALL_STATE(3544)] = 96919, + [SMALL_STATE(3545)] = 96933, + [SMALL_STATE(3546)] = 96947, + [SMALL_STATE(3547)] = 96961, + [SMALL_STATE(3548)] = 96975, + [SMALL_STATE(3549)] = 96989, + [SMALL_STATE(3550)] = 97003, + [SMALL_STATE(3551)] = 97017, + [SMALL_STATE(3552)] = 97031, + [SMALL_STATE(3553)] = 97045, + [SMALL_STATE(3554)] = 97059, + [SMALL_STATE(3555)] = 97073, + [SMALL_STATE(3556)] = 97087, + [SMALL_STATE(3557)] = 97101, + [SMALL_STATE(3558)] = 97115, + [SMALL_STATE(3559)] = 97129, + [SMALL_STATE(3560)] = 97143, + [SMALL_STATE(3561)] = 97157, + [SMALL_STATE(3562)] = 97171, + [SMALL_STATE(3563)] = 97185, + [SMALL_STATE(3564)] = 97199, + [SMALL_STATE(3565)] = 97213, + [SMALL_STATE(3566)] = 97227, + [SMALL_STATE(3567)] = 97241, + [SMALL_STATE(3568)] = 97255, + [SMALL_STATE(3569)] = 97269, + [SMALL_STATE(3570)] = 97283, + [SMALL_STATE(3571)] = 97297, + [SMALL_STATE(3572)] = 97311, + [SMALL_STATE(3573)] = 97325, + [SMALL_STATE(3574)] = 97339, + [SMALL_STATE(3575)] = 97353, + [SMALL_STATE(3576)] = 97367, + [SMALL_STATE(3577)] = 97381, + [SMALL_STATE(3578)] = 97395, + [SMALL_STATE(3579)] = 97409, + [SMALL_STATE(3580)] = 97423, + [SMALL_STATE(3581)] = 97437, + [SMALL_STATE(3582)] = 97451, + [SMALL_STATE(3583)] = 97465, + [SMALL_STATE(3584)] = 97479, + [SMALL_STATE(3585)] = 97493, + [SMALL_STATE(3586)] = 97507, + [SMALL_STATE(3587)] = 97521, + [SMALL_STATE(3588)] = 97535, + [SMALL_STATE(3589)] = 97549, + [SMALL_STATE(3590)] = 97563, + [SMALL_STATE(3591)] = 97577, + [SMALL_STATE(3592)] = 97591, + [SMALL_STATE(3593)] = 97605, + [SMALL_STATE(3594)] = 97619, + [SMALL_STATE(3595)] = 97633, + [SMALL_STATE(3596)] = 97647, + [SMALL_STATE(3597)] = 97661, + [SMALL_STATE(3598)] = 97675, + [SMALL_STATE(3599)] = 97689, + [SMALL_STATE(3600)] = 97703, + [SMALL_STATE(3601)] = 97717, + [SMALL_STATE(3602)] = 97731, + [SMALL_STATE(3603)] = 97745, + [SMALL_STATE(3604)] = 97759, + [SMALL_STATE(3605)] = 97773, + [SMALL_STATE(3606)] = 97787, + [SMALL_STATE(3607)] = 97801, + [SMALL_STATE(3608)] = 97815, + [SMALL_STATE(3609)] = 97829, + [SMALL_STATE(3610)] = 97843, + [SMALL_STATE(3611)] = 97857, + [SMALL_STATE(3612)] = 97871, + [SMALL_STATE(3613)] = 97885, + [SMALL_STATE(3614)] = 97899, + [SMALL_STATE(3615)] = 97913, + [SMALL_STATE(3616)] = 97927, + [SMALL_STATE(3617)] = 97941, + [SMALL_STATE(3618)] = 97955, + [SMALL_STATE(3619)] = 97969, + [SMALL_STATE(3620)] = 97983, + [SMALL_STATE(3621)] = 97997, + [SMALL_STATE(3622)] = 98011, + [SMALL_STATE(3623)] = 98025, + [SMALL_STATE(3624)] = 98039, + [SMALL_STATE(3625)] = 98053, + [SMALL_STATE(3626)] = 98067, + [SMALL_STATE(3627)] = 98081, + [SMALL_STATE(3628)] = 98095, + [SMALL_STATE(3629)] = 98109, + [SMALL_STATE(3630)] = 98123, + [SMALL_STATE(3631)] = 98137, + [SMALL_STATE(3632)] = 98151, + [SMALL_STATE(3633)] = 98165, + [SMALL_STATE(3634)] = 98179, + [SMALL_STATE(3635)] = 98193, + [SMALL_STATE(3636)] = 98207, + [SMALL_STATE(3637)] = 98221, + [SMALL_STATE(3638)] = 98235, + [SMALL_STATE(3639)] = 98249, + [SMALL_STATE(3640)] = 98263, + [SMALL_STATE(3641)] = 98277, + [SMALL_STATE(3642)] = 98291, + [SMALL_STATE(3643)] = 98305, + [SMALL_STATE(3644)] = 98319, + [SMALL_STATE(3645)] = 98333, + [SMALL_STATE(3646)] = 98347, + [SMALL_STATE(3647)] = 98361, + [SMALL_STATE(3648)] = 98375, + [SMALL_STATE(3649)] = 98389, + [SMALL_STATE(3650)] = 98403, + [SMALL_STATE(3651)] = 98417, + [SMALL_STATE(3652)] = 98431, + [SMALL_STATE(3653)] = 98445, + [SMALL_STATE(3654)] = 98459, + [SMALL_STATE(3655)] = 98473, + [SMALL_STATE(3656)] = 98487, + [SMALL_STATE(3657)] = 98501, + [SMALL_STATE(3658)] = 98515, + [SMALL_STATE(3659)] = 98529, + [SMALL_STATE(3660)] = 98543, + [SMALL_STATE(3661)] = 98557, + [SMALL_STATE(3662)] = 98571, + [SMALL_STATE(3663)] = 98585, + [SMALL_STATE(3664)] = 98599, + [SMALL_STATE(3665)] = 98613, + [SMALL_STATE(3666)] = 98627, + [SMALL_STATE(3667)] = 98641, + [SMALL_STATE(3668)] = 98655, + [SMALL_STATE(3669)] = 98669, + [SMALL_STATE(3670)] = 98683, + [SMALL_STATE(3671)] = 98697, + [SMALL_STATE(3672)] = 98711, + [SMALL_STATE(3673)] = 98725, + [SMALL_STATE(3674)] = 98739, + [SMALL_STATE(3675)] = 98753, + [SMALL_STATE(3676)] = 98767, + [SMALL_STATE(3677)] = 98781, + [SMALL_STATE(3678)] = 98795, + [SMALL_STATE(3679)] = 98809, + [SMALL_STATE(3680)] = 98823, + [SMALL_STATE(3681)] = 98837, + [SMALL_STATE(3682)] = 98851, + [SMALL_STATE(3683)] = 98865, + [SMALL_STATE(3684)] = 98879, + [SMALL_STATE(3685)] = 98893, + [SMALL_STATE(3686)] = 98907, + [SMALL_STATE(3687)] = 98921, + [SMALL_STATE(3688)] = 98935, + [SMALL_STATE(3689)] = 98949, + [SMALL_STATE(3690)] = 98963, + [SMALL_STATE(3691)] = 98977, + [SMALL_STATE(3692)] = 98991, + [SMALL_STATE(3693)] = 99005, + [SMALL_STATE(3694)] = 99019, + [SMALL_STATE(3695)] = 99033, + [SMALL_STATE(3696)] = 99047, + [SMALL_STATE(3697)] = 99061, + [SMALL_STATE(3698)] = 99075, + [SMALL_STATE(3699)] = 99089, + [SMALL_STATE(3700)] = 99103, + [SMALL_STATE(3701)] = 99117, + [SMALL_STATE(3702)] = 99131, + [SMALL_STATE(3703)] = 99135, + [SMALL_STATE(3704)] = 99139, + [SMALL_STATE(3705)] = 99143, + [SMALL_STATE(3706)] = 99147, + [SMALL_STATE(3707)] = 99151, + [SMALL_STATE(3708)] = 99155, }; static const TSParseActionEntry ts_parse_actions[] = { [0] = {.entry = {.count = 0, .reusable = false}}, [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), - [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2286), - [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2483), + [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2454), + [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2546), [7] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 0, 0, 0), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3006), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3121), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3470), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2061), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1032), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3497), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3199), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(807), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2567), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3342), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1964), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2381), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3537), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3558), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3569), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2026), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1877), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2064), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3052), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2609), - [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), - [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3455), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1987), - [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), - [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), - [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), - [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), - [123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1, 0, 0), - [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 2, 0, 0), - [131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), - [133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1484), - [136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(702), - [139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3006), - [142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(171), - [145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(155), - [148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(5), - [151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(339), - [154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1478), - [157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(247), - [160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(783), - [163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(849), - [166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(38), - [169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3079), - [172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3121), - [175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3470), - [178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2063), - [181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(41), - [184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2061), - [187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1045), - [190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1032), - [193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3497), - [196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3199), - [199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(804), - [202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(189), - [205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(845), - [208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(807), - [211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2567), - [214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(370), - [217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3342), - [220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1964), - [223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(42), - [226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2381), - [229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3537), - [232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3558), - [235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3569), - [238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1509), - [241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2026), - [244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1877), - [247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(172), - [250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2064), - [253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(37), - [256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3052), - [259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2609), - [262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1462), - [265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2563), - [268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1463), - [271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1475), - [274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3455), - [277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1987), - [280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1475), - [283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3376), - [286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), - [300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), - [302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), - [304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), - [306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), - [332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), - [334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), - [336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 2, 0, 0), - [338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2669), - [342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 2, 0, 0), - [344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), - [346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2489), - [348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2690), - [350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), - [352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), - [354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), - [356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2684), - [358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), - [360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2972), - [362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2703), - [364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), - [366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2687), - [368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 2, 0, 0), - [370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 2, 0, 0), - [372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1, 0, 0), - [374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1, 0, 0), - [376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), - [378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), - [380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), - [382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), - [384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 1, 0, 0), - [386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 1, 0, 0), - [388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 1, 0, 0), - [390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 1, 0, 0), - [392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3493), - [394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 1, 0, 0), - [396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 1, 0, 0), - [398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507), - [400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2714), - [404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1591), - [406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), - [408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), - [410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2415), - [412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47), - [414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2631), - [416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1544), - [418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1548), - [420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), - [422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), - [424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2615), - [426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), - [428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(45), - [430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2850), - [432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2586), - [434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), - [436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(46), - [438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3122), - [440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2616), - [442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), - [444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), - [446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1779), - [448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), - [450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3464), - [452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), - [454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3519), - [456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), - [458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1553), - [460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), - [462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), - [464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), - [466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), - [468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), - [470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2757), - [472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), - [474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3044), - [476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1558), - [478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3322), - [480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), - [482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), - [488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(50), - [490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3360), - [492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), - [494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), - [496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1542), - [498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), - [500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2968), - [502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), - [504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3094), - [506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), - [508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), - [510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), - [512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), - [514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(166), - [517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(137), - [520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(68), - [523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), - [525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(69), - [528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(76), - [531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(137), - [534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(3323), - [537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(156), - [540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2630), - [543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(167), - [546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(168), - [549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(3513), - [552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), - [554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), - [566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3323), - [568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), - [572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), - [574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3513), - [578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), - [580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3325), - [584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), - [586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), - [588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(157), - [591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(137), - [594] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(99), - [597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), - [599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(100), - [602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(101), - [605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(137), - [608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(3474), - [611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(156), - [614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(2630), - [617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(167), - [620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(157), - [623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(3513), - [626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(183), - [629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(208), - [632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(111), - [635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), - [637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(112), - [640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(113), - [643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(208), - [646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(183), - [649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(173), - [652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(2584), - [655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(175), - [658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(3461), - [661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), - [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), - [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), - [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), - [681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), - [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3461), - [685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), - [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), - [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3474), - [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), - [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), - [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), - [717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), - [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), - [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), - [731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), - [733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(137), - [736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), - [738] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(137), - [741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__token_pattern, 1, 0, 0), - [743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__token_pattern, 1, 0, 0), - [745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 1, 0, 0), - [747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 1, 0, 0), - [749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 1, 0, 0), - [751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 1, 0, 0), - [753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2, 0, 0), - [755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2, 0, 0), - [757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 2, 0, 0), - [759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 2, 0, 0), - [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), - [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3541), - [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3431), - [767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 3, 0, 0), - [769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 3, 0, 0), - [771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3, 0, 0), - [773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3, 0, 0), - [775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 3, 0, 0), - [777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 3, 0, 0), - [779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_binding_pattern, 3, 0, 197), - [781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_binding_pattern, 3, 0, 197), - [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), - [787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1040), - [790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(171), - [793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(155), - [796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), - [798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(11), - [801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(339), - [804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1478), - [807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(247), - [810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(783), - [813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(849), - [816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(38), - [819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3079), - [822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3431), - [825] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3470), - [828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2489), - [831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(41), - [834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2690), - [837] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1045), - [840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1238), - [843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(825), - [846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(201), - [849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2684), - [852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(342), - [855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(42), - [858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2972), - [861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2703), - [864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(202), - [867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(37), - [870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3052), - [873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2687), - [876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1462), - [879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2563), - [882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1463), - [885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1475), - [888] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3455), - [891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1475), - [894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3376), - [897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 4, 0, 0), - [899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 4, 0, 0), - [901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 6, 0, 0), - [903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 6, 0, 0), - [905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 1, 0, 0), - [907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 1, 0, 0), - [909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(208), - [912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(208), - [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), - [919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 4, 0, 0), - [921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 4, 0, 0), - [923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 5, 0, 0), - [925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 5, 0, 0), - [927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 6, 0, 0), - [929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 6, 0, 0), - [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3610), - [935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1, 0, 0), - [937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1, 0, 0), - [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), - [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), - [943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fragment_specifier, 1, 0, 0), - [945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fragment_specifier, 1, 0, 0), - [947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__non_delim_token, 1, 0, 0), - [949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__non_delim_token, 1, 0, 0), - [951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 2, 0, 0), - [953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 2, 0, 0), - [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), - [957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), - [959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 3, 0, 0), - [961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 3, 0, 0), - [963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 5, 0, 0), - [965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 5, 0, 0), - [967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1, 0, 0), - [969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1, 0, 0), - [971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), - [973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), - [981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 2, 0, 0), - [987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 2, 0, 0), - [989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 3, 0, 0), - [991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 3, 0, 0), - [993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__delim_tokens, 1, 0, 0), - [995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__delim_tokens, 1, 0, 0), - [997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 1, 0, 0), - [999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 1, 0, 0), - [1001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), - [1003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), - [1005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [1007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), - [1009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), - [1011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), - [1013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), - [1015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [1017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), - [1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), - [1021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [1023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [1025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [1027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), - [1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [1031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [1033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [1035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [1037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [1039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [1041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [1043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1295), - [1047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [1049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [1051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), - [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), - [1055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [1057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [1061] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1040), - [1064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(171), - [1067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), - [1069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(155), - [1072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(11), - [1075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(339), - [1078] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1478), - [1081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(247), - [1084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(783), - [1087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(849), - [1090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(38), - [1093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3079), - [1096] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3470), - [1099] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2489), - [1102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(41), - [1105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2690), - [1108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1045), - [1111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1238), - [1114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(825), - [1117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(201), - [1120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2684), - [1123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(342), - [1126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(42), - [1129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2972), - [1132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2703), - [1135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(202), - [1138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(37), - [1141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3052), - [1144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2687), - [1147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1462), - [1150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2563), - [1153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1463), - [1156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1475), - [1159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3455), - [1162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1475), - [1165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3376), - [1168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), - [1170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1249), - [1172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [1174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [1176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [1178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), - [1180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [1182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), - [1184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1661), - [1186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [1188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1672), - [1190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [1192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), - [1194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, 0, 30), - [1196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, 0, 30), - [1198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2377), - [1200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), - [1202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), - [1204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), - [1206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4, 0, 0), - [1208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4, 0, 0), - [1210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [1212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2451), - [1214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2618), - [1216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), - [1218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), - [1220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2582), - [1222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), - [1224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2699), - [1226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), - [1228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2583), - [1230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [1232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 5, 0, 0), - [1234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 5, 0, 0), - [1236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 6, 0, 0), - [1238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 6, 0, 0), - [1240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), - [1242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), - [1244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), - [1246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), - [1248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1942), - [1250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [1252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), - [1254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [1256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), - [1258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [1260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), - [1262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), - [1264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), - [1266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [1268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [1270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2482), - [1272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2088), - [1274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), - [1276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), - [1278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), - [1280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), - [1282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3531), - [1284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2320), - [1286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2109), - [1288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1936), - [1290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3207), - [1292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3439), - [1294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), - [1296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2058), - [1298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2213), - [1300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), - [1302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), - [1304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), - [1306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), - [1308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), - [1310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), - [1312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2281), - [1314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2708), - [1316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), - [1318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), - [1320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, 0, 39), - [1322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, 0, 39), - [1324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1958), - [1326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [1328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), - [1330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136), - [1332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [1334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2427), - [1336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3397), - [1338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), - [1340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1981), - [1342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2150), - [1344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2284), - [1346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2663), - [1348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), - [1350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 5, 0, 115), - [1352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 5, 0, 115), - [1354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), - [1356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), - [1358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), - [1360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), - [1362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 3, 0, 0), - [1364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 3, 0, 0), - [1366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_block, 2, 0, 8), - [1368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_block, 2, 0, 8), - [1370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 3, 0, 0), - [1372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 3, 0, 0), - [1374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 2, 0, 8), - [1376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 2, 0, 8), - [1378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 5, 0, 145), - [1380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 5, 0, 145), - [1382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unsafe_block, 2, 0, 0), - [1384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unsafe_block, 2, 0, 0), - [1386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, 0, 75), - [1388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, 0, 75), - [1390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 4, 0, 0), - [1392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 4, 0, 0), - [1394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 2, 0, 0), - [1396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 2, 0, 0), - [1398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 3, 0, 33), - [1400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 3, 0, 33), - [1402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 2, 0, 0), - [1404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 2, 0, 0), - [1406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [1408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2430), - [1410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3361), - [1412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), - [1414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), - [1416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1, 0, 0), - [1418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1, 0, 0), - [1420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_block, 2, 0, 0), - [1422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_block, 2, 0, 0), - [1424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 4, 0, 98), - [1426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 4, 0, 98), - [1428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 7, 0, 241), - [1430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 7, 0, 241), - [1432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1, 0, 0), - [1434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1, 0, 0), - [1436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), - [1438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2471), - [1440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3442), - [1442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, 0, 28), - [1444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, 0, 28), - [1446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), - [1448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), - [1450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 3, 0, 38), - [1452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 3, 0, 38), - [1454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [1456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2508), - [1458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), - [1460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), - [1462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [1464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), - [1466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [1468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), - [1470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), - [1472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), - [1474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), - [1476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [1478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [1480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2079), - [1482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), - [1484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3339), - [1486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2824), - [1488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), - [1490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3098), - [1492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), - [1494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), - [1496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2468), - [1498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2581), - [1500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2473), - [1502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2433), - [1504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1955), - [1506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [1508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), - [1510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2152), - [1512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [1514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), - [1516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), - [1518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1937), - [1520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2120), - [1522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2713), - [1524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), - [1526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [1528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), - [1530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2304), - [1532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), - [1534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2342), - [1536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), - [1538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2374), - [1540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), - [1542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2372), - [1544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), - [1546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label, 2, 0, 0), - [1548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label, 2, 0, 0), - [1550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 2, 0, 0), - [1552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 2, 0, 0), - [1554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 3, 0, 0), - [1556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 3, 0, 0), - [1558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2038), - [1560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [1562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [1564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [1566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1952), - [1568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [1570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [1572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), - [1574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3335), - [1576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2124), - [1578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2613), - [1580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), - [1582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3332), - [1584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), - [1586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [1588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [1590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), - [1592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), - [1594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), - [1596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [1598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), - [1600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [1602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2348), - [1604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2007), - [1606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [1608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [1610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [1612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2233), - [1614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), - [1616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [1618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [1620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2877), - [1622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2899), - [1624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), - [1626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), - [1628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2585), - [1630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2117), - [1632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), - [1634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), - [1636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), - [1638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), - [1640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2360), - [1642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2707), - [1644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2707), - [1646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), - [1648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 116), - [1650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 116), - [1652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [1654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), - [1656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 172), - [1658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 172), - [1660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [1662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, 0, 29), - [1664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, 0, 29), - [1666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, 0, 54), - [1668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, 0, 54), - [1670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, 0, 6), - [1672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, 0, 6), - [1674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 4, 0, 0), - [1676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 4, 0, 0), - [1678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 112), - [1680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 112), - [1682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 156), - [1684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 156), - [1686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 157), - [1688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 157), - [1690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 158), - [1692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 158), - [1694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 159), - [1696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 159), - [1698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 160), - [1700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 160), - [1702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 161), - [1704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 161), - [1706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 162), - [1708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 162), - [1710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 120), - [1712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 120), - [1714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 163), - [1716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 163), - [1718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 164), - [1720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 164), - [1722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 165), - [1724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 165), - [1726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 166), - [1728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 166), - [1730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 167), - [1732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 167), - [1734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 123), - [1736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 123), - [1738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 168), - [1740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 168), - [1742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 169), - [1744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 169), - [1746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 170), - [1748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 170), - [1750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 171), - [1752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 171), - [1754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 6, 0, 174), - [1756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 6, 0, 174), - [1758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 3, 0, 29), - [1760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 3, 0, 29), - [1762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 4, 0, 0), - [1764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 4, 0, 0), - [1766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 72), - [1768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 72), - [1770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 179), - [1772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 179), - [1774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 130), - [1776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 130), - [1778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 180), - [1780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 180), - [1782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 6, 0, 131), - [1784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 6, 0, 131), - [1786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 132), - [1788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 132), - [1790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 181), - [1792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 181), - [1794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 182), - [1796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 182), - [1798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 183), - [1800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 183), - [1802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 184), - [1804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 184), - [1806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 6, 0, 185), - [1808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 6, 0, 185), - [1810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 188), - [1812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 188), - [1814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 189), - [1816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 189), - [1818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 140), - [1820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 140), - [1822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 190), - [1824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 190), - [1826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 6, 0, 174), - [1828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 6, 0, 174), - [1830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 6, 0, 183), - [1832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 6, 0, 183), - [1834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 88), - [1836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 88), - [1838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 137), - [1840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 137), - [1842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 183), - [1844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 183), - [1846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 191), - [1848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 191), - [1850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 6, 0, 183), - [1852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 6, 0, 183), - [1854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 192), - [1856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 192), - [1858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 193), - [1860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 193), - [1862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 194), - [1864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 194), - [1866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 195), - [1868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 195), - [1870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 196), - [1872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 196), - [1874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, 0, 22), - [1876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, 0, 22), - [1878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, 0, 31), - [1880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, 0, 31), - [1882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 3, 0, 32), - [1884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 3, 0, 32), - [1886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, 0, 54), - [1888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, 0, 54), - [1890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, 0, 6), - [1892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, 0, 6), - [1894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, 0, 6), - [1896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, 0, 6), - [1898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 7, 0, 201), - [1900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 7, 0, 201), - [1902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 5, 0, 0), - [1904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 5, 0, 0), - [1906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, 0, 34), - [1908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, 0, 34), - [1910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 204), - [1912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 204), - [1914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 205), - [1916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 205), - [1918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 157), - [1920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 157), - [1922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 206), - [1924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 206), - [1926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 159), - [1928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 159), - [1930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 207), - [1932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 207), - [1934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 161), - [1936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 161), - [1938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 208), - [1940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 208), - [1942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 209), - [1944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 209), - [1946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 210), - [1948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 210), - [1950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 211), - [1952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 211), - [1954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 212), - [1956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 212), - [1958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 164), - [1960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 164), - [1962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 213), - [1964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 213), - [1966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 166), - [1968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 166), - [1970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 214), - [1972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 214), - [1974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 215), - [1976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 215), - [1978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 216), - [1980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 216), - [1982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 217), - [1984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 217), - [1986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, 0, 218), - [1988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, 0, 218), - [1990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, 0, 201), - [1992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, 0, 201), - [1994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 5, 0, 0), - [1996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 5, 0, 0), - [1998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 180), - [2000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 180), - [2002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 221), - [2004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 221), - [2006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 222), - [2008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 222), - [2010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 223), - [2012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 223), - [2014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 224), - [2016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 224), - [2018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 225), - [2020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 225), - [2022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 226), - [2024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 226), - [2026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 227), - [2028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 227), - [2030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 228), - [2032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 228), - [2034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 229), - [2036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 229), - [2038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 188), - [2040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 188), - [2042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 230), - [2044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 230), - [2046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 231), - [2048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 231), - [2050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 232), - [2052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 232), - [2054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 7, 0, 137), - [2056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 7, 0, 137), - [2058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 191), - [2060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 191), - [2062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 233), - [2064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 233), - [2066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 234), - [2068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 234), - [2070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 235), - [2072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 235), - [2074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 236), - [2076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 236), - [2078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 7, 0, 237), - [2080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 7, 0, 237), - [2082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 238), - [2084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 238), - [2086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 239), - [2088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 239), - [2090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 195), - [2092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 195), - [2094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 240), - [2096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 240), - [2098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, 0, 7), - [2100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, 0, 7), - [2102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 6, 0, 0), - [2104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 6, 0, 0), - [2106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 204), - [2108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 204), - [2110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 244), - [2112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 244), - [2114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 209), - [2116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 209), - [2118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 245), - [2120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 245), - [2122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 211), - [2124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 211), - [2126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 246), - [2128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 246), - [2130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 247), - [2132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 247), - [2134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 248), - [2136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 248), - [2138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 249), - [2140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 249), - [2142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, 0, 250), - [2144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, 0, 250), - [2146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 6, 0, 0), - [2148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 6, 0, 0), - [2150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 221), - [2152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 221), - [2154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 252), - [2156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 252), - [2158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 223), - [2160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 223), - [2162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 253), - [2164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 253), - [2166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 254), - [2168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 254), - [2170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 255), - [2172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 255), - [2174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 256), - [2176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 256), - [2178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 257), - [2180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 257), - [2182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 225), - [2184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 225), - [2186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 258), - [2188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 258), - [2190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 227), - [2192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 227), - [2194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 259), - [2196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 259), - [2198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 260), - [2200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 260), - [2202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 261), - [2204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 261), - [2206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 231), - [2208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 231), - [2210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 262), - [2212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 262), - [2214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 8, 0, 250), - [2216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 8, 0, 250), - [2218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, 0, 263), - [2220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, 0, 263), - [2222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 8, 0, 233), - [2224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 8, 0, 233), - [2226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 8, 0, 264), - [2228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 8, 0, 264), - [2230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 238), - [2232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 238), - [2234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 265), - [2236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 265), - [2238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 266), - [2240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 266), - [2242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 267), - [2244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 267), - [2246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 3, 0, 29), - [2248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 3, 0, 29), - [2250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 9, 0, 268), - [2252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 9, 0, 268), - [2254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 9, 0, 269), - [2256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 9, 0, 269), - [2258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 254), - [2260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 254), - [2262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 270), - [2264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 270), - [2266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 256), - [2268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 256), - [2270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 5, 0, 144), - [2272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 5, 0, 144), - [2274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, 0, 260), - [2276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, 0, 260), - [2278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, 0, 272), - [2280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, 0, 272), - [2282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, 0, 273), - [2284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, 0, 273), - [2286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, 0, 274), - [2288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, 0, 274), - [2290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, 0, 266), - [2292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, 0, 266), - [2294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, 0, 275), - [2296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, 0, 275), - [2298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 3, 0, 7), - [2300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 3, 0, 7), - [2302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 10, 0, 276), - [2304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 10, 0, 276), - [2306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 10, 0, 277), - [2308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 10, 0, 277), - [2310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 10, 0, 273), - [2312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 10, 0, 273), - [2314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 10, 0, 278), - [2316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 10, 0, 278), - [2318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 3, 0, 29), - [2320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 3, 0, 29), - [2322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 3, 0, 37), - [2324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 3, 0, 37), - [2326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2, 0, 0), - [2328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2, 0, 0), - [2330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3108), - [2332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [2334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), - [2336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [2338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3532), - [2340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), - [2342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3280), - [2344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2240), - [2346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2201), - [2348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3604), - [2350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3281), - [2352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), - [2354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), - [2356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3314), - [2358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2955), - [2360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3315), - [2362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3316), - [2364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3317), - [2366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2957), - [2368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2203), - [2370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1880), - [2372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), - [2374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3324), - [2376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1982), - [2378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), - [2380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3, 0, 0), - [2382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3, 0, 0), - [2384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3, 0, 44), - [2386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3, 0, 44), - [2388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, 0, 54), - [2390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, 0, 54), - [2392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, 0, 6), - [2394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, 0, 6), - [2396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1, 0, 0), - [2398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1, 0, 0), - [2400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2, 0, 0), - [2402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2, 0, 0), - [2404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [2406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2, 0, 8), - [2408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2, 0, 8), - [2410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_item, 4, 0, 0), - [2412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_item, 4, 0, 0), - [2414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), - [2416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), - [2418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 2, 0, 0), - [2420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 2, 0, 0), - [2422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 71), - [2424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 71), - [2426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 72), - [2428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 72), - [2430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 4, 0, 73), - [2432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 4, 0, 73), - [2434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 4, 0, 74), - [2436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 4, 0, 74), - [2438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 79), - [2440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 79), - [2442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 80), - [2444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 80), - [2446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 22), - [2448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 22), - [2450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 81), - [2452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 81), - [2454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 4, 0, 82), - [2456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 4, 0, 82), - [2458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2, 0, 0), - [2460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2, 0, 0), - [2462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 29), - [2464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 29), - [2466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 71), - [2468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 71), - [2470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 84), - [2472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 84), - [2474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 72), - [2476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 72), - [2478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 71), - [2480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 71), - [2482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 85), - [2484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 85), - [2486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 72), - [2488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 72), - [2490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 7), - [2492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 7), - [2494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 86), - [2496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 86), - [2498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 84), - [2500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 84), - [2502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, 0, 71), - [2504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, 0, 71), - [2506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, 0, 72), - [2508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, 0, 72), - [2510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 63), - [2512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 63), - [2514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 87), - [2516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 87), - [2518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 88), - [2520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 88), - [2522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 4, 0, 93), - [2524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 4, 0, 93), - [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [2528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3, 0, 0), - [2530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3, 0, 0), - [2532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3108), - [2535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1374), - [2538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3008), - [2541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), - [2543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3532), - [2546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(849), - [2549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3039), - [2552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3280), - [2555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2320), - [2558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2240), - [2561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2201), - [2564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3604), - [2567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3281), - [2570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(841), - [2573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(817), - [2576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3314), - [2579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1964), - [2582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2955), - [2585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3315), - [2588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3316), - [2591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3317), - [2594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2957), - [2597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2203), - [2600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1880), - [2603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2068), - [2606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3324), - [2609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1982), - [2612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3324), - [2615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 88), - [2617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 88), - [2619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, 0, 93), - [2621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, 0, 93), - [2623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, 0, 94), - [2625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, 0, 94), - [2627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 95), - [2629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 95), - [2631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 88), - [2633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 88), - [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), - [2637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, 0, 88), - [2639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, 0, 88), - [2641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 4, 0, 96), - [2643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 4, 0, 96), - [2645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, 0, 54), - [2647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, 0, 54), - [2649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1, 0, 0), - [2651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1, 0, 0), - [2653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, 0, 6), - [2655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, 0, 6), - [2657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inner_attribute_item, 5, 0, 0), - [2659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inner_attribute_item, 5, 0, 0), - [2661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 5, 0, 110), - [2663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 5, 0, 110), - [2665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 3, 0, 0), - [2667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 3, 0, 0), - [2669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 111), - [2671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 111), - [2673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, 0, 112), - [2675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, 0, 112), - [2677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, 0, 113), - [2679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, 0, 113), - [2681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, 0, 73), - [2683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, 0, 73), - [2685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, 0, 114), - [2687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, 0, 114), - [2689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 120), - [2691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 120), - [2693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 121), - [2695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 121), - [2697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 79), - [2699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 79), - [2701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 122), - [2703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 122), - [2705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 123), - [2707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 123), - [2709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 124), - [2711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 124), - [2713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 100), - [2715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 100), - [2717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 116), - [2719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 116), - [2721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 125), - [2723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 125), - [2725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2007), - [2728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(754), - [2731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(776), - [2734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2233), - [2737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3131), - [2740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(820), - [2743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(823), - [2746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(849), - [2749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2877), - [2752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2899), - [2755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3157), - [2758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3298), - [2761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2585), - [2764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2117), - [2767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(821), - [2770] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(824), - [2773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2299), - [2776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2617), - [2779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2360), - [2782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2707), - [2785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2707), - [2788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3494), - [2791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 5, 0, 110), - [2793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 5, 0, 110), - [2795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3, 0, 0), - [2797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3, 0, 0), - [2799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 29), - [2801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 29), - [2803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 72), - [2805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 72), - [2807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 111), - [2809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 111), - [2811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 128), - [2813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 128), - [2815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 111), - [2817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 111), - [2819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 129), - [2821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 129), - [2823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 5, 0, 130), - [2825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 5, 0, 130), - [2827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, 0, 86), - [2829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, 0, 86), - [2831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, 0, 84), - [2833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, 0, 84), - [2835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, 0, 131), - [2837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, 0, 131), - [2839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, 0, 111), - [2841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, 0, 111), - [2843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 132), - [2845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 132), - [2847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 133), - [2849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 133), - [2851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 63), - [2853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 63), - [2855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 134), - [2857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 134), - [2859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 135), - [2861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 135), - [2863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 136), - [2865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 136), - [2867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 137), - [2869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 137), - [2871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, 0, 140), - [2873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, 0, 140), - [2875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, 0, 141), - [2877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, 0, 141), - [2879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 135), - [2881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 135), - [2883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 137), - [2885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 137), - [2887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 88), - [2889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 88), - [2891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 135), - [2893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 135), - [2895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 142), - [2897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 142), - [2899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 137), - [2901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 137), - [2903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, 0, 135), - [2905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, 0, 135), - [2907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, 0, 137), - [2909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, 0, 137), - [2911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 143), - [2913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 143), - [2915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 271), - [2917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 271), - [2919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), - [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), - [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [2927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), - [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3406), - [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), - [2935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2697), - [2937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), - [2939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2494), - [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), - [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), - [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), - [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), - [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), - [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), - [2953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2000), - [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3536), - [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3453), - [2959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2283), - [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), - [2963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1903), - [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), - [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3574), - [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), - [2971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), - [2973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1517), - [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), - [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), - [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), - [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), - [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), - [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), - [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), - [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3378), - [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), - [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3543), - [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2923), - [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), - [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), - [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), - [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), - [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3417), - [3007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), - [3009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2392), - [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), - [3013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2257), - [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), - [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), - [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), - [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), - [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), - [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), - [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2974), - [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), - [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), - [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), - [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), - [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), - [3041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), - [3043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2469), - [3045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), - [3047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), - [3049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(802), - [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [3053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), - [3055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2754), - [3057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), - [3059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), - [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), - [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [3071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), - [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), - [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3180), - [3079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2118), - [3081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3054), - [3083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), - [3085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2590), - [3087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1504), - [3089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), - [3091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3529), - [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), - [3095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), - [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), - [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [3107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), - [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), - [3115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2119), - [3117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3149), - [3119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), - [3121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2710), - [3123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), - [3125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), - [3127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3514), - [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [3131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(979), - [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), - [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), - [3139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), - [3141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), - [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [3145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3240), - [3147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), - [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), - [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), - [3155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), - [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), - [3159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), - [3161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2037), - [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), - [3165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), - [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), - [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [3171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2073), - [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), - [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), - [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), - [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), - [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), - [3183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2750), - [3185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2065), - [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), - [3189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2044), - [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), - [3193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), - [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), - [3197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2074), - [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), - [3201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), - [3203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 1, 0, 0), - [3205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 1, 0, 0), - [3207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 4, 0, 0), - [3209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 4, 0, 0), - [3211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), - [3213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lifetime, 2, 0, 0), - [3215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime, 2, 0, 0), - [3217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2043), - [3219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2, 0, 0), - [3221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 2, 0, 0), - [3223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), - [3225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2046), - [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), - [3229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2054), - [3231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2, 0, 1), - [3233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 2, 0, 1), - [3235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), - [3237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2035), - [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), - [3241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 5), - [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [3245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, 0, 5), - [3247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2497), - [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), - [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [3253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, 0, 24), - [3255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, 0, 24), - [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), - [3259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, 0, 24), - [3261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, 0, 24), - [3263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 4, 0, 104), - [3265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 4, 0, 104), - [3267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 17), - [3269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 17), - [3271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 16), - [3273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 16), - [3275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 46), - [3277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 46), - [3279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 45), - [3281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 45), - [3283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 4, 0, 105), - [3285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 4, 0, 105), - [3287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, 0, 25), - [3289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, 0, 25), - [3291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 2, 0, 7), - [3293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 2, 0, 7), - [3295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 2, 0, 6), - [3297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, 0, 6), - [3299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), - [3301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, 0, 0), - [3303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, 0, 25), - [3305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, 0, 25), - [3307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 41), - [3309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 41), - [3311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 40), - [3313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 40), - [3315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1, 0, 1), - [3317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1, 0, 1), - [3319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2727), - [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), - [3323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 1, 0, 0), - [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), - [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), - [3329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), - [3331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), - [3333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), SHIFT_REPEAT(3298), - [3336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 4, 0, 0), - [3338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 4, 0, 0), - [3340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 1, 0, 0), - [3342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 1, 0, 0), - [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), - [3346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 41), - [3348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, 0, 0), - [3350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, 0, 0), - [3352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 19), - [3354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 19), - [3356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 66), - [3358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 66), - [3360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), - [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3436), - [3366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 49), - [3368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 49), - [3370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), - [3372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 2, 0, 0), - [3374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), - [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [3378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3481), - [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3311), - [3382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), - [3384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3266), - [3386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2836), - [3388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3530), - [3390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), - [3392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), - [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [3396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), - [3398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 46), - [3400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 50), - [3402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 50), - [3404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5, 0, 0), - [3406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5, 0, 0), - [3408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, 0, 0), - [3410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, 0, 0), - [3412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, 0, 23), - [3414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, 0, 23), - [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [3418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), - [3420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 3, 0, 0), - [3422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), - [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [3426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3312), - [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), - [3430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2137), - [3432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3211), - [3434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2784), - [3436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3526), - [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), - [3440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3536), - [3443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 5, 0, 0), - [3445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 5, 0, 0), - [3447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 67), - [3449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 67), - [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [3453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), - [3455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 17), - [3457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 20), - [3459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 20), - [3461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 6, 0, 0), - [3463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 6, 0, 0), - [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), - [3467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1014), - [3469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 21), - [3471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 21), - [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), - [3475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2423), - [3477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 3, 0, 0), - [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), - [3483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2816), - [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3051), - [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), - [3491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2881), - [3493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3295), - [3495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3469), - [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), - [3499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1907), - [3501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3440), - [3503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), - [3505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3056), - [3507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 6, 0, 0), - [3509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 6, 0, 0), - [3511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 4, 0, 0), - [3513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 64), - [3515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 64), - [3517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [3519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), - [3521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 107), - [3523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 107), - [3525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [3527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, 0, 27), - [3529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, 0, 27), - [3531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [3533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, 0, 26), - [3535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, 0, 26), - [3537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [3539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 2, 0, 7), - [3541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), - [3543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_function, 3, 0, 42), - [3545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_function, 3, 0, 42), - [3547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 4, 0, 0), - [3549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 4, 0, 0), - [3551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 4, 0, 0), - [3553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 4, 0, 0), - [3555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 6, 0, 175), - [3557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 6, 0, 175), - [3559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, 0, 10), - [3561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, 0, 10), - [3563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 6, 0, 0), - [3565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 6, 0, 0), - [3567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3, 0, 0), - [3569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3, 0, 0), - [3571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, 0, 11), - [3573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, 0, 11), - [3575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 12), - [3577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 12), - [3579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_higher_ranked_trait_bound, 3, 0, 79), - [3581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_higher_ranked_trait_bound, 3, 0, 79), - [3583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, 0, 62), - [3585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, 0, 62), - [3587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 3, 0, 63), - [3589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 3, 0, 63), - [3591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 3, 0, 63), - [3593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 3, 0, 63), - [3595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2718), - [3597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2716), - [3599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), - [3601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2723), - [3603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), - [3605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 2, 0, 0), - [3607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 2, 0, 0), - [3609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 7, 0, 0), - [3611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 7, 0, 0), - [3613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 7, 0, 0), - [3615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 7, 0, 0), - [3617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2, 0, 0), - [3619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2, 0, 0), - [3621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_type, 2, 0, 0), - [3623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_type, 2, 0, 0), - [3625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bounded_type, 3, 0, 0), - [3627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bounded_type, 3, 0, 0), - [3629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_removed_trait_bound, 2, 0, 0), - [3631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_removed_trait_bound, 2, 0, 0), - [3633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_expression, 2, 0, 0), - [3635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_expression, 2, 0, 0), - [3637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 2, 0, 22), - [3639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 2, 0, 22), - [3641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, 0, 76), - [3643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 76), - [3645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, 0, 0), - [3647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 0), - [3649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 3, 0, 0), - [3651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 3, 0, 0), - [3653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2717), - [3655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, 0, 116), - [3657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, 0, 116), - [3659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 5, 0, 116), - [3661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, 0, 83), - [3663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, 0, 83), - [3665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 47), - [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [3669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 47), - [3671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [3673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2834), - [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [3677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 6, 0, 0), - [3679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 6, 0, 0), - [3681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 6, 0, 119), - [3683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 6, 0, 119), - [3685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 6, 0, 0), - [3687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 6, 0, 0), - [3689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, 0, 146), - [3691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, 0, 146), - [3693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, 0, 0), - [3695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, 0, 0), - [3697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, 0, 76), - [3699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 76), - [3701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, 0, 0), - [3703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 0), - [3705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 5, 0, 0), - [3707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 5, 0, 0), - [3709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, 0, 119), - [3711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 119), - [3713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 3, 0, 0), - [3715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 3, 0, 0), - [3717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 2, 0, 0), - [3719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 2, 0, 0), - [3721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 172), - [3723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 172), - [3725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, 0, 172), - [3727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4, 0, 0), - [3729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4, 0, 0), - [3731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 4, 0, 102), - [3733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 4, 0, 102), - [3735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 103), - [3737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 103), - [3739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 3, 0, 35), - [3741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 3, 0, 35), - [3743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 106), - [3745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 106), - [3747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3, 0, 0), - [3749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3, 0, 0), - [3751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4, 0, 0), - [3753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4, 0, 0), - [3755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2670), - [3757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2666), - [3759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2682), - [3761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), - [3763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, 0, 97), - [3765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, 0, 97), - [3767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 108), - [3769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 108), - [3771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 2, 0, 13), - [3773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 2, 0, 13), - [3775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_cast_expression, 3, 0, 51), - [3777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_cast_expression, 3, 0, 51), - [3779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 5, 0, 0), - [3781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 5, 0, 0), - [3783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [3785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [3787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 0), - [3789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 0), - [3791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, 0, 99), - [3793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, 0, 99), - [3795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, 0, 0), - [3797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, 0, 0), - [3799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 3, 0, 0), - [3801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 3, 0, 0), - [3803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 2, 0, 4), - [3805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 2, 0, 4), - [3807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 3, 0, 18), - [3809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 3, 0, 18), - [3811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, 0, 76), - [3813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 76), - [3815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, 0, 0), - [3817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 0), - [3819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, 0, 119), - [3821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 119), - [3823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5, 0, 0), - [3825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5, 0, 0), - [3827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, 0, 52), - [3829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5, 0, 0), - [3831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5, 0, 0), - [3833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 2, 0, 0), - [3835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 2, 0, 0), - [3837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 5, 0, 127), - [3839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 5, 0, 127), - [3841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, 0, 150), - [3843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 5, 0, 150), - [3845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 2, 0, 0), - [3847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 2, 0, 0), - [3849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 152), - [3851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 152), - [3853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 153), - [3855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 153), - [3857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 154), - [3859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 154), - [3861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), - [3863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, 0, 43), - [3865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_never_type, 1, 0, 0), - [3867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_never_type, 1, 0, 0), - [3869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 4, 0, 0), - [3871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 4, 0, 0), - [3873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 6, 0, 200), - [3875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 6, 0, 200), - [3877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 1, 0, 0), - [3879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 1, 0, 0), - [3881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4, 0, 0), - [3883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4, 0, 0), - [3885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 1, 0, 0), - [3887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 1, 0, 0), - [3889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), - [3891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_arm_repeat1, 1, 0, 0), - [3893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 1, 0, 0), - [3895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 3, 0, 0), - [3897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), - [3899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), - [3901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), - [3903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), - [3905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), - [3907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [3909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [3911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), - [3913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 3, 0, 0), - [3915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [3917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), - [3919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 3, 0, 0), - [3921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 3, 0, 0), - [3923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), - [3925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [3927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2521), - [3929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [3931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), - [3933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 2, 0, 0), - [3935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 2, 0, 0), - [3937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1905), - [3939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [3941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2635), - [3943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2656), - [3945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [3947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_assignment_expr, 3, 0, 47), - [3949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_assignment_expr, 3, 0, 47), - [3951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), - [3953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3258), - [3955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2, 0, 0), - [3957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 2, 0, 0), - [3959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 48), - [3961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, 0, 48), - [3963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), - [3965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3070), - [3967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), - [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), - [3971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), - [3973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2364), - [3975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), - [3977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 1, 0, 0), - [3979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), - [3981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), SHIFT(3247), - [3984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), SHIFT(2667), - [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), - [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), - [3991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 4, 0, 0), - [3993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 4, 0, 0), - [3995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, 0, 126), - [3997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, 0, 126), - [3999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, 0, 0), - [4001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, 0, 0), - [4003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [4005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40), - [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [4009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [4011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), - [4013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), - [4015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2633), - [4017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), - [4019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [4021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [4023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), - [4025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), - [4027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), - [4029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), - [4031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), - [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [4037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), - [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [4041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), - [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [4045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), - [4047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), - [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), - [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3204), - [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [4063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58), - [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [4075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2491), - [4077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3259), - [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), - [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), - [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [4091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2, 0, 0), - [4093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 3, 0, 0), - [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), - [4097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2422), - [4099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3071), - [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [4103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2405), - [4105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3101), - [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), - [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), - [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3062), - [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [4129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__let_chain, 3, 0, 0), - [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), - [4135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2935), - [4137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), - [4139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), - [4141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), - [4143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), - [4145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), - [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [4151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), - [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [4155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), - [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [4159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), - [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), - [4167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_field_initializer, 2, 0, 0), - [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [4171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_condition, 4, 0, 116), - [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), - [4177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 138), - [4179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 139), - [4181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condition, 1, 0, 0), - [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [4187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), - [4189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), - [4191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), - [4193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), - [4195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), - [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [4201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), - [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [4205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), - [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [4209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), - [4211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), - [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [4217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, 0, 155), - [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [4221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), - [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), - [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [4231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), - [4233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 3, 0, 172), - [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), - [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [4241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2462), - [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), - [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), - [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), - [4249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2458), - [4251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3446), - [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), - [4255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2476), - [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), - [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [4261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, 0, 186), - [4263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, 0, 187), - [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), - [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), - [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [4275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), - [4277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), - [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), - [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [4287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, 0, 202), - [4289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, 0, 203), - [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), - [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [4295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), - [4299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, 0, 116), - [4301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [4303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), - [4309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 5, 0, 243), - [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [4315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [4317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 109), - [4319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 18), - [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), - [4323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), - [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), - [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), - [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), - [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [4343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), - [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), - [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), - [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), - [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), - [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [4379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2728), - [4381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3454), - [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), - [4385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2753), - [4387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3501), - [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3501), - [4391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2729), - [4393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2502), - [4395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2677), - [4397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2556), - [4399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2720), - [4401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2724), - [4403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2725), - [4405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 5, 0, 0), - [4407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 5, 0, 0), - [4409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 6, 0, 0), - [4411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 6, 0, 0), - [4413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 4, 0, 0), - [4415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 4, 0, 0), - [4417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2268), - [4419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2267), - [4421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2269), - [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), - [4425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3104), - [4427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3103), - [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), - [4431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3106), - [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), - [4435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3091), - [4437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3309), - [4439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3093), - [4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), - [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), - [4447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), - [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [4451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), - [4453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), - [4455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [4457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), - [4459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, 0, 0), - [4461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [4463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), - [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), - [4469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), - [4471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), - [4473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), - [4475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), - [4477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), - [4479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), - [4481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3387), - [4483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3459), - [4485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3409), - [4487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3445), - [4489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), - [4491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), - [4493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), - [4495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), - [4497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3352), - [4499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), - [4501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3353), - [4503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), - [4505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3354), - [4507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3349), - [4509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3599), - [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3355), - [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), - [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), - [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), - [4519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 1), - [4521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, 0, 1), - [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), - [4525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), - [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), - [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), - [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), - [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3247), - [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), - [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [4543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 5), REDUCE(sym__pattern, 1, 0, 0), - [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2652), - [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [4550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3239), - [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), - [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), - [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), - [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [4570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), - [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), - [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), - [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [4580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), - [4582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), - [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), - [4590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 40), REDUCE(sym_scoped_type_identifier, 3, 0, 41), - [4593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 16), REDUCE(sym_scoped_type_identifier, 3, 0, 17), - [4596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal_pattern, 1, 0, 0), - [4598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal_pattern, 1, 0, 0), - [4600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, 0, 6), REDUCE(sym_scoped_type_identifier, 2, 0, 7), - [4603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [4605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), - [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), - [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [4611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), - [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), - [4617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 45), REDUCE(sym_scoped_type_identifier, 3, 0, 46), - [4620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negative_literal, 2, 0, 0), - [4622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negative_literal, 2, 0, 0), - [4624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2440), - [4626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [4628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3399), - [4630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), - [4632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), - [4634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [4636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), - [4638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), - [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), - [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), - [4654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), - [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), - [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), - [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [4664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 1), - [4666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 1), - [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), - [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [4674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 59), - [4676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 59), - [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), - [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), - [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), - [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), - [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3386), - [4690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 0), - [4692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 0), - [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), - [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), - [4702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 1, 0, 0), - [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3509), - [4706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2303), - [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), - [4710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2306), - [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), - [4714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2298), - [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), - [4718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2343), - [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), - [4722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3554), - [4724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_modifiers_repeat1, 1, 0, 0), - [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), - [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3448), - [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3351), - [4734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 55), - [4736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 55), - [4738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), - [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [4748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2460), - [4750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), - [4752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, 0, 57), - [4754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 3, 0, 0), - [4756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), - [4758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 3, 0, 0), - [4760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, 0, 56), - [4762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5, 0, 0), - [4764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 5, 0, 0), - [4766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 2, 0, 0), - [4768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_captured_pattern, 3, 0, 0), - [4770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), - [4772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remaining_field_pattern, 1, 0, 0), - [4774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2238), - [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [4778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), - [4780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3595), - [4782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3485), - [4784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), - [4788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, 0, 56), - [4790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 2, 0, 0), - [4792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, 0, 61), - [4794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, 0, 57), - [4796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4, 0, 0), - [4798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, 0, 61), - [4800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, 0, 56), - [4802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, 0, 61), - [4804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_pattern, 2, 0, 0), - [4806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, 0, 56), - [4808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 3, 0, 0), - [4810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 4, 0, 0), - [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [4814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, 0, 57), - [4816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, 0, 56), - [4818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [4820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), - [4822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, 0, 61), - [4824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [4826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 2, 0, 0), - [4828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), - [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), - [4832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, 0, 56), - [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [4836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3428), - [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), - [4840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1303), - [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [4844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), - [4846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), - [4848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), - [4850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, 0, 56), - [4852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mut_pattern, 2, 0, 0), - [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), - [4856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, 0, 57), - [4858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3, 0, 0), - [4860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, 0, 56), - [4862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), - [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [4866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), - [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), - [4874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [4876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [4878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [4880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), REDUCE(sym__pattern, 1, 0, 1), - [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), - [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), - [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [4901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 2, 0, 0), - [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), - [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [4917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(70), - [4920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), - [4922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(71), - [4925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(75), - [4928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2, 0, 0), - [4930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2, 0, 0), SHIFT_REPEAT(840), - [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), - [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), - [4945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 3, 0, 0), - [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), - [4975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 2, 0, 0), - [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [4985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [4987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [5023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [5027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [5035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_modifiers, 1, 0, 0), - [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), - [5039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2868), - [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), - [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3391), - [5045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3140), - [5047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3434), - [5049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), - [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [5063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [5065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(2320), - [5068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2, 0, 0), - [5070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(2213), - [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2995), - [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), - [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), - [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), - [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [5083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [5087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), - [5095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), - [5097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [5099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [5101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3177), - [5103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), - [5105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), - [5107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), - [5109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), - [5111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 1, 0, 70), - [5113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [5115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [5117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3540), - [5119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [5121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3393), - [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [5125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [5127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [5129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), - [5131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [5133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [5137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), - [5139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), - [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [5143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [5145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3382), - [5149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [5151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 2, 0, 0), - [5153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), - [5155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), - [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [5159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), - [5161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [5163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), - [5165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), - [5167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [5169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), - [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2897), - [5173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3331), - [5175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [5177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [5179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 1), - [5181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [5183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [5185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 0), - [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [5189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, 0, 6), - [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), - [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3476), - [5197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3575), - [5199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), - [5201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3482), - [5203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 1, 0, 0), - [5205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), - [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3172), - [5209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3318), - [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), - [5213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), - [5215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3619), - [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), - [5219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3502), - [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3389), - [5223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3559), - [5225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [5227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [5231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), - [5235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), - [5237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), - [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [5247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), REDUCE(sym_tuple_struct_pattern, 3, 0, 56), - [5250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), - [5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), - [5254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [5256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), - [5258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), - [5260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [5262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [5264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [5266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), REDUCE(sym_tuple_struct_pattern, 4, 0, 56), - [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [5281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), - [5283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), - [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), - [5289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), - [5291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [5293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [5295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [5297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [5299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [5301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [5303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [5305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [5307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [5309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 3, 0, 0), - [5311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), - [5313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [5315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [5317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [5319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [5321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [5323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), - [5325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [5327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [5329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [5331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [5333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [5335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [5337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [5339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [5341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [5343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [5345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [5347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [5349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), - [5351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [5353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [5355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [5357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3412), - [5359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3058), - [5361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3458), - [5363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3171), - [5365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [5367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [5369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [5371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), - [5373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), - [5375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), - [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), - [5385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3366), - [5387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [5389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [5391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [5393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 2, 0, 0), - [5395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [5397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2, 0, 0), - [5399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1480), - [5402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_unit_type, 2, 0, 0), REDUCE(sym_tuple_pattern, 2, 0, 0), - [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [5409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [5415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [5417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), - [5419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [5421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [5423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), REDUCE(sym__pattern, 1, 0, 0), - [5426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), - [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [5432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [5434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [5438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [5440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [5442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [5444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [5446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [5448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [5450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [5452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [5454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [5456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), - [5458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, 0, 63), - [5460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), - [5462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), - [5464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [5466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 2, 0, 0), - [5468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [5470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, 0, 22), - [5472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 76), - [5474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 63), - [5476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 219), - [5478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 176), - [5480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [5482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, 0, 176), - [5484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), - [5486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2591), - [5488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [5490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, 0, 1), - [5492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), - [5494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), - [5496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [5498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 3, 0, 119), - [5500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 7, 0, 251), - [5502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, 0, 0), - [5504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), - [5506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3587), - [5508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), - [5510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [5512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [5514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [5518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [5520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [5522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), - [5524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [5526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, 0, 0), - [5528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), - [5530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [5532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, 0, 22), - [5534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [5536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [5538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), - [5540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, 0, 219), - [5542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, 0, 102), - [5544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, 0, 251), - [5546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), - [5548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), - [5550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), SHIFT(1946), - [5553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), SHIFT(408), - [5556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), - [5558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), - [5560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), - [5562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), - [5564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [5566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [5568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [5570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), - [5572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [5574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2236), - [5576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), - [5578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [5580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [5582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 102), - [5584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), - [5586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2858), - [5588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), - [5590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), - [5592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [5594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), - [5596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [5598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), - [5600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [5602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1909), - [5604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1925), - [5606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [5608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [5610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 0), - [5612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), - [5614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2858), - [5617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [5619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [5621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [5623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [5625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [5627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [5629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), - [5631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [5633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), - [5635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [5637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), - [5639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [5641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), - [5643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_rule, 3, 0, 48), - [5645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [5647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [5649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), - [5651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1919), - [5653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [5655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [5657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2954), - [5659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), - [5661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), - [5663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), - [5665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [5667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [5669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [5671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), - [5673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [5675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [5677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [5679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 3, 0, 0), - [5681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 4, 0, 198), - [5683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 3, 0, 147), - [5685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [5687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [5689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), - [5691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [5693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), - [5695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [5697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [5699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [5701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [5703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 3, 0, 0), - [5705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [5707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2940), - [5709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), - [5711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(210), - [5714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [5716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [5718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [5720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [5722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1538), - [5724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), - [5726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), - [5728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [5730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, 0, 78), - [5732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), REDUCE(aux_sym_for_lifetimes_repeat1, 2, 0, 0), - [5735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, 0, 77), - [5737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [5739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [5741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), - [5743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [5745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), - [5747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [5749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [5751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [5753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 100), - [5755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), - [5757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [5759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), - [5761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [5763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [5765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [5767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [5769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), - [5771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), - [5773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [5775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [5777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), - [5779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2009), - [5781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [5783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [5785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), - [5787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), - [5789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), - [5791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2002), - [5793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), - [5795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2740), - [5797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), - [5799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 60), - [5801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), - [5803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), - [5805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), - [5807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [5809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [5811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), - [5813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [5815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [5817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), - [5819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [5821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), - [5823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), - [5825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [5827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), - [5829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [5831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), - [5833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [5835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_slice_pattern_repeat1, 2, 0, 0), - [5837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slice_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(797), - [5840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), - [5842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [5844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), - [5846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2731), - [5848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), - [5850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), - [5852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), - [5854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [5856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), - [5858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [5860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [5862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), - [5864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [5866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1033), - [5868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [5870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [5872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), - [5874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [5876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [5878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [5880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [5882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [5884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [5886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [5888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [5890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [5892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [5894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), - [5896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [5898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [5900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [5902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), - [5904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), - [5906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [5908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [5910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [5912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), - [5914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), - [5916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), - [5918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [5920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [5922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [5924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [5926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, 0, 77), - [5928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [5930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 2, 0, 0), - [5932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [5934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(442), - [5937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 4, 0, 0), - [5939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [5941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3289), - [5943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [5945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), - [5947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [5949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [5951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, 0, 0), - [5953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [5955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), - [5957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), - [5959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, 0, 148), - [5961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [5963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [5965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 1, 0, 0), - [5967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [5969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, 0, 11), - [5971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [5973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [5975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), - [5977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), - [5979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), - [5981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, 0, 91), - [5983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 5, 0, 0), - [5985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [5987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), - [5989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [5991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3592), - [5993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3246), - [5995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3367), - [5997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [5999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [6001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [6003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [6005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [6007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), - [6009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [6011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [6013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [6015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(411), - [6018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), - [6020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [6022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2, 0, 0), - [6024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2, 0, 0), SHIFT_REPEAT(2210), - [6027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [6029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, 0, 149), - [6031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), - [6033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [6035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [6037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [6039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [6041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), - [6043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [6045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [6047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [6049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3346), - [6051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [6053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 2, 0, 0), - [6055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), - [6057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [6059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), - [6061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [6063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [6065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 2, 0, 101), - [6067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [6069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [6071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [6073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, 0, 34), - [6075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [6077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), - [6079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [6081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), - [6083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), - [6085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [6087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), - [6089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), - [6091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), - [6093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, 0, 117), - [6095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [6097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [6099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [6101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, 0, 92), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1530), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3092), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3107), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3605), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2090), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2089), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1085), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3639), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3109), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2553), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3694), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1970), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2373), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3691), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3689), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3668), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1548), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2057), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2073), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3131), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2596), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3654), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), + [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), + [127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1530), + [130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(616), + [133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3095), + [136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(184), + [139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(148), + [142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(10), + [145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3092), + [148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(286), + [151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1511), + [154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(256), + [157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(809), + [160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(873), + [163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(41), + [166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3105), + [169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3107), + [172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3605), + [175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2090), + [178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(40), + [181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2089), + [184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1085), + [187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1057), + [190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3639), + [193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3109), + [196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(827), + [199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(204), + [202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(871), + [205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(834), + [208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2553), + [211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(308), + [214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3694), + [217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1970), + [220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(37), + [223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2373), + [226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3691), + [229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3689), + [232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3668), + [235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1548), + [238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2057), + [241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1910), + [244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(213), + [247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2073), + [250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(39), + [253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3131), + [256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2596), + [259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1390), + [262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2625), + [265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1411), + [268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1513), + [271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3654), + [274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1980), + [277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1513), + [280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3581), + [283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1, 0, 0), + [285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), + [287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), + [291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), + [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 2, 0, 0), + [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), + [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), + [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), + [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), + [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), + [341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 2, 0, 0), + [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2771), + [347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 2, 0, 0), + [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), + [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2524), + [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2651), + [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), + [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), + [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), + [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2661), + [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), + [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2911), + [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2654), + [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), + [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2663), + [373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 2, 0, 0), + [375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 2, 0, 0), + [377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 1, 0, 0), + [379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 1, 0, 0), + [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), + [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(809), + [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), + [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), + [389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1, 0, 0), + [391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1, 0, 0), + [393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 1, 0, 0), + [395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 1, 0, 0), + [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3573), + [399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 1, 0, 0), + [401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 1, 0, 0), + [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), + [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2639), + [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1662), + [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), + [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), + [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2508), + [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(46), + [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2673), + [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), + [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1578), + [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), + [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), + [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2628), + [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), + [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(45), + [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2884), + [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2567), + [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), + [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(44), + [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3299), + [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2630), + [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), + [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), + [451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), + [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1656), + [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3558), + [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), + [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), + [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), + [467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), + [469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3660), + [471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1547), + [473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1606), + [475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), + [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3204), + [479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), + [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1571), + [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58), + [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3042), + [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), + [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3142), + [491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1580), + [493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3406), + [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), + [499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), + [501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1592), + [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), + [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2899), + [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), + [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3210), + [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), + [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57), + [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), + [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), + [519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_macro_def_args_repeat1, 2, 0, 0), SHIFT_REPEAT(173), + [522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_def_args_repeat1, 2, 0, 0), SHIFT_REPEAT(172), + [525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_def_args_repeat1, 2, 0, 0), SHIFT_REPEAT(68), + [528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_macro_def_args_repeat1, 2, 0, 0), + [530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_def_args_repeat1, 2, 0, 0), SHIFT_REPEAT(69), + [533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_def_args_repeat1, 2, 0, 0), SHIFT_REPEAT(74), + [536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_macro_def_args_repeat1, 2, 0, 0), SHIFT_REPEAT(172), + [539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_macro_def_args_repeat1, 2, 0, 0), SHIFT_REPEAT(3525), + [542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_def_args_repeat1, 2, 0, 0), SHIFT_REPEAT(166), + [545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_def_args_repeat1, 2, 0, 0), SHIFT_REPEAT(2564), + [548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_macro_def_args_repeat1, 2, 0, 0), SHIFT_REPEAT(167), + [551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_def_args_repeat1, 2, 0, 0), SHIFT_REPEAT(174), + [554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_def_args_repeat1, 2, 0, 0), SHIFT_REPEAT(3554), + [557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), + [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), + [571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3525), + [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), + [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), + [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), + [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), + [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), + [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3576), + [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), + [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3429), + [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3453), + [597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(205), + [600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(200), + [603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(129), + [606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), + [608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(130), + [611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(132), + [614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(200), + [617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(205), + [620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(214), + [623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(2632), + [626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(176), + [629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(3589), + [632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_macro_def_body_repeat1, 2, 0, 0), SHIFT_REPEAT(158), + [635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_def_body_repeat1, 2, 0, 0), SHIFT_REPEAT(172), + [638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_def_body_repeat1, 2, 0, 0), SHIFT_REPEAT(138), + [641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_macro_def_body_repeat1, 2, 0, 0), + [643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_def_body_repeat1, 2, 0, 0), SHIFT_REPEAT(136), + [646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_def_body_repeat1, 2, 0, 0), SHIFT_REPEAT(133), + [649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_macro_def_body_repeat1, 2, 0, 0), SHIFT_REPEAT(172), + [652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_macro_def_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3551), + [655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_def_body_repeat1, 2, 0, 0), SHIFT_REPEAT(166), + [658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_def_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2564), + [661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_macro_def_body_repeat1, 2, 0, 0), SHIFT_REPEAT(167), + [664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_def_body_repeat1, 2, 0, 0), SHIFT_REPEAT(158), + [667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_def_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3554), + [670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), + [672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3551), + [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), + [686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), + [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), + [696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), + [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), + [706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), + [708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3589), + [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), + [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), + [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), + [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), + [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), + [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), + [750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(172), + [753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), + [755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(172), + [758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_macro_def_body_repeat1, 1, 0, 0), + [760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_macro_def_body_repeat1, 1, 0, 0), + [762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__token_pattern, 1, 0, 0), + [764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__token_pattern, 1, 0, 0), + [766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fragment_specifier, 1, 0, 0), + [768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fragment_specifier, 1, 0, 0), + [770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), + [774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3592), + [776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 5, 0, 0), + [778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 5, 0, 0), + [780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 4, 0, 0), + [782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 4, 0, 0), + [784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1060), + [787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(184), + [790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(148), + [793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), + [795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(25), + [798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(286), + [801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1511), + [804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(256), + [807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(809), + [810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(873), + [813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(41), + [816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3105), + [819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3592), + [822] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3605), + [825] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2524), + [828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(40), + [831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2651), + [834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1085), + [837] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1427), + [840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(832), + [843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(209), + [846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2661), + [849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(345), + [852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(37), + [855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2911), + [858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2654), + [861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(208), + [864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(39), + [867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3131), + [870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2663), + [873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1390), + [876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2625), + [879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1411), + [882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1513), + [885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3654), + [888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1513), + [891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3581), + [894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3587), + [898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 3, 0, 0), + [900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 3, 0, 0), + [902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 4, 0, 0), + [904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 4, 0, 0), + [906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__non_delim_token, 1, 0, 0), + [908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__non_delim_token, 1, 0, 0), + [910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), + [912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3401), + [914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), + [916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), + [918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), + [920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), + [922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3, 0, 0), + [924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3, 0, 0), + [926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 3, 0, 0), + [928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 3, 0, 0), + [930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 6, 0, 0), + [932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 6, 0, 0), + [934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_macro_def_args_repeat1, 1, 0, 0), + [936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_macro_def_args_repeat1, 1, 0, 0), + [938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 6, 0, 0), + [940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 6, 0, 0), + [942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 2, 0, 0), + [944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 2, 0, 0), + [946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(200), + [949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(200), + [952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3472), + [956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2, 0, 0), + [958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2, 0, 0), + [960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1, 0, 0), + [962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1, 0, 0), + [964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1, 0, 0), + [966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1, 0, 0), + [968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_binding_pattern, 3, 0, 149), + [970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_binding_pattern, 3, 0, 149), + [972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 5, 0, 0), + [974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 5, 0, 0), + [976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 3, 0, 0), + [978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 3, 0, 0), + [980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 2, 0, 0), + [982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 2, 0, 0), + [984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 1, 0, 0), + [986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 1, 0, 0), + [988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), + [990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), + [992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), + [994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 2, 0, 0), + [996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 2, 0, 0), + [998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [1000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [1002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [1004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), + [1006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [1008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [1010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [1012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), + [1014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [1016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), + [1018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [1020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [1022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [1024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [1026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), + [1028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [1030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [1032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), + [1034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 1, 0, 0), + [1036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 1, 0, 0), + [1038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), + [1040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__delim_tokens, 1, 0, 0), + [1042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__delim_tokens, 1, 0, 0), + [1044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 3, 0, 0), + [1046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 3, 0, 0), + [1048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [1050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [1052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), + [1054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [1056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [1058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1386), + [1060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [1062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [1064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), + [1066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [1068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, 0, 30), + [1070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, 0, 30), + [1072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2432), + [1074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [1076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1474), + [1078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [1080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1873), + [1082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [1084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [1086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [1088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [1090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1438), + [1092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [1094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), + [1096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [1098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), + [1100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1814), + [1102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [1104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1773), + [1106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [1108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1060), + [1111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(184), + [1114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), + [1116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(148), + [1119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(25), + [1122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(286), + [1125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1511), + [1128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(256), + [1131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(809), + [1134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(873), + [1137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(41), + [1140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3105), + [1143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3605), + [1146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2524), + [1149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(40), + [1152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2651), + [1155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1085), + [1158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1427), + [1161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(832), + [1164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(209), + [1167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2661), + [1170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(345), + [1173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(37), + [1176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2911), + [1179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2654), + [1182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(208), + [1185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(39), + [1188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3131), + [1191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2663), + [1194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1390), + [1197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2625), + [1200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1411), + [1203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1513), + [1206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3654), + [1209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1513), + [1212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3581), + [1215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), + [1217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), + [1219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 6, 0, 0), + [1221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 6, 0, 0), + [1223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), + [1225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), + [1227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4, 0, 0), + [1229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4, 0, 0), + [1231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), + [1233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), + [1235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), + [1237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), + [1239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 5, 0, 0), + [1241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 5, 0, 0), + [1243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 2, 0, 0), + [1245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 2, 0, 0), + [1247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [1249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, 0, 75), + [1251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, 0, 75), + [1253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 3, 0, 33), + [1255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 3, 0, 33), + [1257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 3, 0, 38), + [1259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 3, 0, 38), + [1261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 4, 0, 98), + [1263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 4, 0, 98), + [1265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unsafe_block, 2, 0, 0), + [1267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unsafe_block, 2, 0, 0), + [1269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 2, 0, 8), + [1271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 2, 0, 8), + [1273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [1275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2533), + [1277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2633), + [1279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), + [1281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), + [1283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2561), + [1285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), + [1287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2672), + [1289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), + [1291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2562), + [1293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, 0, 39), + [1295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, 0, 39), + [1297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 5, 0, 147), + [1299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 5, 0, 147), + [1301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1, 0, 0), + [1303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1, 0, 0), + [1305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1, 0, 0), + [1307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1, 0, 0), + [1309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 4, 0, 0), + [1311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 4, 0, 0), + [1313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), + [1315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), + [1317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 2, 0, 0), + [1319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 2, 0, 0), + [1321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_block, 2, 0, 8), + [1323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_block, 2, 0, 8), + [1325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, 0, 28), + [1327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, 0, 28), + [1329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_block, 2, 0, 0), + [1331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_block, 2, 0, 0), + [1333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 5, 0, 116), + [1335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 5, 0, 116), + [1337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), + [1339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), + [1341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 7, 0, 244), + [1343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 7, 0, 244), + [1345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 3, 0, 0), + [1347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 3, 0, 0), + [1349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 3, 0, 0), + [1351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 3, 0, 0), + [1353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1996), + [1355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [1357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), + [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3220), + [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [1367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2173), + [1369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), + [1371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), + [1373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [1377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2477), + [1379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), + [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), + [1383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), + [1385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3677), + [1387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3560), + [1389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2359), + [1391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2119), + [1393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2011), + [1395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3221), + [1397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3556), + [1399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1242), + [1401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2167), + [1403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2245), + [1405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), + [1407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), + [1409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), + [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), + [1413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), + [1415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2033), + [1417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2289), + [1419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2780), + [1421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), + [1423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), + [1425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), + [1427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [1429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), + [1431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3533), + [1433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2206), + [1435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [1437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2545), + [1439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3368), + [1441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1971), + [1443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2104), + [1445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2304), + [1447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2667), + [1449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), + [1451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), + [1453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), + [1455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2547), + [1457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3570), + [1461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2455), + [1463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), + [1465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3501), + [1467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), + [1469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3658), + [1471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [1473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2740), + [1475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [1477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), + [1479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), + [1481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), + [1483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), + [1485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), + [1487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [1489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), + [1491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), + [1493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3468), + [1495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [1497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [1499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2160), + [1501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), + [1503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2921), + [1505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), + [1507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3253), + [1509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), + [1511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), + [1513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2640), + [1515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2446), + [1517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2517), + [1519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2514), + [1521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1973), + [1523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [1525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), + [1527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), + [1529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2192), + [1531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [1533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), + [1535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1982), + [1537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2157), + [1539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2648), + [1541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), + [1543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2340), + [1545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), + [1547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [1549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), + [1551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2360), + [1553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), + [1555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2405), + [1557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), + [1559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), + [1561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2431), + [1563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label, 2, 0, 0), + [1565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label, 2, 0, 0), + [1567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 2, 0, 0), + [1569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 2, 0, 0), + [1571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 3, 0, 0), + [1573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 3, 0, 0), + [1575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), + [1577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [1579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [1581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [1583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1992), + [1585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [1587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [1589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), + [1591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3584), + [1593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2139), + [1595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2668), + [1597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), + [1599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3418), + [1601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), + [1603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), + [1605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), + [1607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), + [1609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [1611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), + [1613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), + [1615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), + [1617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [1619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2424), + [1621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2047), + [1623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [1629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2272), + [1631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3230), + [1633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [1637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2994), + [1639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2995), + [1641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3354), + [1643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), + [1645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2565), + [1647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), + [1649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), + [1651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), + [1653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), + [1655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), + [1657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2384), + [1659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2684), + [1661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), + [1663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), + [1665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3323), + [1667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [1669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2922), + [1671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [1673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2923), + [1675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3469), + [1677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), + [1679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), + [1681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2307), + [1683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2231), + [1685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3415), + [1687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3160), + [1689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), + [1691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), + [1693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3425), + [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2946), + [1697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3427), + [1699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3428), + [1701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3555), + [1703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2853), + [1705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2229), + [1707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1912), + [1709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), + [1711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3408), + [1713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1976), + [1715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3408), + [1717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), + [1719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 176), + [1721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 176), + [1723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [1725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [1727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [1729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 117), + [1731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 117), + [1733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [1735] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3323), + [1738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1332), + [1741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2922), + [1744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), + [1746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2923), + [1749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3469), + [1752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(873), + [1755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3398), + [1758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3162), + [1761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2359), + [1764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2307), + [1767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2231), + [1770] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3415), + [1773] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3160), + [1776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(860), + [1779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(839), + [1782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3425), + [1785] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1970), + [1788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2946), + [1791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3427), + [1794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3428), + [1797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3555), + [1800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2853), + [1803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2229), + [1806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1912), + [1809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2072), + [1812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3408), + [1815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1976), + [1818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3408), + [1821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [1823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 141), + [1825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 141), + [1827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 123), + [1829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 123), + [1831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 263), + [1833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 263), + [1835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 3, 0, 29), + [1837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 3, 0, 29), + [1839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 264), + [1841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 264), + [1843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 234), + [1845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 234), + [1847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 3, 0, 7), + [1849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 3, 0, 7), + [1851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 265), + [1853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 265), + [1855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 8, 0, 253), + [1857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 8, 0, 253), + [1859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, 0, 266), + [1861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, 0, 266), + [1863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 3, 0, 29), + [1865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 3, 0, 29), + [1867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, 0, 72), + [1869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, 0, 72), + [1871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, 0, 71), + [1873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, 0, 71), + [1875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 84), + [1877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 84), + [1879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, 0, 6), + [1881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, 0, 6), + [1883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 8, 0, 236), + [1885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 8, 0, 236), + [1887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_def_body, 3, 0, 150), + [1889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_def_body, 3, 0, 150), + [1891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 8, 0, 267), + [1893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 8, 0, 267), + [1895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 241), + [1897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 241), + [1899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 268), + [1901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 268), + [1903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 269), + [1905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 269), + [1907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 270), + [1909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 270), + [1911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 3, 0, 37), + [1913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 3, 0, 37), + [1915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 9, 0, 271), + [1917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 9, 0, 271), + [1919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 9, 0, 272), + [1921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 9, 0, 272), + [1923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 257), + [1925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 257), + [1927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 273), + [1929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 273), + [1931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, 0, 54), + [1933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, 0, 54), + [1935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 259), + [1937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 259), + [1939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 274), + [1941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 274), + [1943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, 0, 263), + [1945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, 0, 263), + [1947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 86), + [1949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 86), + [1951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, 0, 275), + [1953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, 0, 275), + [1955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, 0, 7), + [1957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, 0, 7), + [1959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, 0, 276), + [1961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, 0, 276), + [1963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_rules, 6, 0, 6), + [1965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_rules, 6, 0, 6), + [1967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_rules, 6, 0, 54), + [1969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_rules, 6, 0, 54), + [1971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, 0, 277), + [1973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, 0, 277), + [1975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2, 0, 0), + [1977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2, 0, 0), + [1979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, 0, 269), + [1981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, 0, 269), + [1983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, 0, 29), + [1985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, 0, 29), + [1987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 7), + [1989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 7), + [1991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, 0, 278), + [1993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, 0, 278), + [1995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 10, 0, 279), + [1997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 10, 0, 279), + [1999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 6, 0, 0), + [2001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 6, 0, 0), + [2003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 10, 0, 276), + [2005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 10, 0, 276), + [2007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 113), + [2009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 113), + [2011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 10, 0, 281), + [2013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 10, 0, 281), + [2015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 160), + [2017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 160), + [2019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 161), + [2021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 161), + [2023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 162), + [2025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 162), + [2027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 163), + [2029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 163), + [2031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 262), + [2033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 262), + [2035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 164), + [2037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 164), + [2039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 5, 0, 146), + [2041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 5, 0, 146), + [2043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 165), + [2045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 165), + [2047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 166), + [2049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 166), + [2051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 145), + [2053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 145), + [2055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, 0, 138), + [2057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, 0, 138), + [2059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, 0, 34), + [2061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, 0, 34), + [2063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, 0, 136), + [2065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, 0, 136), + [2067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, 0, 6), + [2069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, 0, 6), + [2071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 230), + [2073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 230), + [2075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3, 0, 0), + [2077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3, 0, 0), + [2079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3, 0, 44), + [2081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3, 0, 44), + [2083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 138), + [2085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 138), + [2087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 144), + [2089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 144), + [2091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 136), + [2093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 136), + [2095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 88), + [2097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 88), + [2099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 138), + [2101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 138), + [2103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 121), + [2105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 121), + [2107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 136), + [2109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 136), + [2111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, 0, 93), + [2113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, 0, 93), + [2115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 3, 0, 32), + [2117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 3, 0, 32), + [2119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, 0, 143), + [2121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, 0, 143), + [2123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, 0, 142), + [2125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, 0, 142), + [2127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, 0, 141), + [2129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, 0, 141), + [2131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 167), + [2133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 167), + [2135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 168), + [2137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 168), + [2139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 169), + [2141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 169), + [2143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, 0, 31), + [2145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, 0, 31), + [2147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 138), + [2149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 138), + [2151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, 0, 22), + [2153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, 0, 22), + [2155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 137), + [2157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 137), + [2159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 136), + [2161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 136), + [2163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 135), + [2165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 135), + [2167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 63), + [2169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 63), + [2171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 170), + [2173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 170), + [2175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 134), + [2177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 134), + [2179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 133), + [2181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 133), + [2183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 171), + [2185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 171), + [2187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, 0, 112), + [2189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, 0, 112), + [2191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 124), + [2193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 124), + [2195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 172), + [2197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 172), + [2199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, 0, 132), + [2201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, 0, 132), + [2203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, 0, 84), + [2205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, 0, 84), + [2207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 173), + [2209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 173), + [2211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 174), + [2213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 174), + [2215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 175), + [2217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 175), + [2219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 72), + [2221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 72), + [2223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 85), + [2225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 85), + [2227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 261), + [2229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 261), + [2231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 6, 0, 178), + [2233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 6, 0, 178), + [2235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 228), + [2237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 228), + [2239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, 0, 86), + [2241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, 0, 86), + [2243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_rules, 4, 0, 54), + [2245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_rules, 4, 0, 54), + [2247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 260), + [2249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 260), + [2251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 5, 0, 131), + [2253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 5, 0, 131), + [2255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 71), + [2257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 71), + [2259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 72), + [2261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 72), + [2263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 259), + [2265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 259), + [2267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 130), + [2269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 130), + [2271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_rules, 4, 0, 6), + [2273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_rules, 4, 0, 6), + [2275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 112), + [2277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 112), + [2279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 129), + [2281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 129), + [2283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 112), + [2285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 112), + [2287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 72), + [2289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 72), + [2291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 84), + [2293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 84), + [2295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 29), + [2297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 29), + [2299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 71), + [2301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 71), + [2303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3, 0, 0), + [2305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3, 0, 0), + [2307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 258), + [2309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 258), + [2311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 3, 0, 29), + [2313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 3, 0, 29), + [2315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 29), + [2317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 29), + [2319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 4, 0, 0), + [2321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 4, 0, 0), + [2323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 72), + [2325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 72), + [2327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2, 0, 0), + [2329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2, 0, 0), + [2331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 183), + [2333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 183), + [2335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1, 0, 0), + [2337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1, 0, 0), + [2339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 257), + [2341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 257), + [2343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), + [2345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), + [2347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 256), + [2349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 256), + [2351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 131), + [2353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 131), + [2355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 184), + [2357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 184), + [2359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 10, 0, 280), + [2361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 10, 0, 280), + [2363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, 0, 54), + [2365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, 0, 54), + [2367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 6, 0, 132), + [2369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 6, 0, 132), + [2371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 5, 0, 111), + [2373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 5, 0, 111), + [2375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 133), + [2377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 133), + [2379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, 0, 6), + [2381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, 0, 6), + [2383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 185), + [2385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 185), + [2387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 199), + [2389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 199), + [2391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 186), + [2393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 186), + [2395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 187), + [2397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 187), + [2399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 188), + [2401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 188), + [2403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 126), + [2405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 126), + [2407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 117), + [2409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 117), + [2411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 255), + [2413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 255), + [2415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 6, 0, 189), + [2417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 6, 0, 189), + [2419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 101), + [2421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 101), + [2423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 192), + [2425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 192), + [2427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 125), + [2429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 125), + [2431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 124), + [2433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 124), + [2435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 4, 0, 0), + [2437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 4, 0, 0), + [2439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 79), + [2441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 79), + [2443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 193), + [2445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 193), + [2447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 122), + [2449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 122), + [2451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 121), + [2453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 121), + [2455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 194), + [2457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 194), + [2459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, 0, 143), + [2461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, 0, 143), + [2463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 224), + [2465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 224), + [2467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, 0, 93), + [2469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, 0, 93), + [2471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, 0, 115), + [2473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, 0, 115), + [2475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, 0, 73), + [2477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, 0, 73), + [2479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 6, 0, 187), + [2481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 6, 0, 187), + [2483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 6, 0, 178), + [2485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 6, 0, 178), + [2487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, 0, 114), + [2489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, 0, 114), + [2491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, 0, 113), + [2493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, 0, 113), + [2495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 243), + [2497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 243), + [2499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 112), + [2501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 112), + [2503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 88), + [2505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 88), + [2507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 3, 0, 0), + [2509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 3, 0, 0), + [2511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 138), + [2513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 138), + [2515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 187), + [2517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 187), + [2519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 5, 0, 111), + [2521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 5, 0, 111), + [2523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 195), + [2525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 195), + [2527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inner_attribute_item, 5, 0, 0), + [2529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inner_attribute_item, 5, 0, 0), + [2531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 6, 0, 187), + [2533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 6, 0, 187), + [2535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 196), + [2537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 196), + [2539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 197), + [2541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 197), + [2543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 198), + [2545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 198), + [2547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 199), + [2549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 199), + [2551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 200), + [2553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 200), + [2555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 226), + [2557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 226), + [2559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, 0, 253), + [2561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, 0, 253), + [2563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_rules, 7, 0, 54), + [2565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_rules, 7, 0, 54), + [2567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_rules, 7, 0, 6), + [2569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_rules, 7, 0, 6), + [2571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2, 0, 0), + [2573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2, 0, 0), + [2575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2, 0, 8), + [2577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2, 0, 8), + [2579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 242), + [2581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 242), + [2583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 252), + [2585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 252), + [2587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 251), + [2589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 251), + [2591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 7, 0, 204), + [2593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 7, 0, 204), + [2595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 4, 0, 82), + [2597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 4, 0, 82), + [2599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 5, 0, 0), + [2601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 5, 0, 0), + [2603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 207), + [2605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 207), + [2607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 208), + [2609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 208), + [2611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 161), + [2613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 161), + [2615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, 0, 6), + [2617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, 0, 6), + [2619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 209), + [2621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 209), + [2623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 163), + [2625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 163), + [2627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 81), + [2629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 81), + [2631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 210), + [2633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 210), + [2635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 165), + [2637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 165), + [2639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 22), + [2641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 22), + [2643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_def_body, 2, 0, 0), + [2645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_def_body, 2, 0, 0), + [2647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 211), + [2649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 211), + [2651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 212), + [2653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 212), + [2655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 213), + [2657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 213), + [2659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 214), + [2661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 214), + [2663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, 0, 54), + [2665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, 0, 54), + [2667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 215), + [2669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 215), + [2671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 168), + [2673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 168), + [2675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 216), + [2677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 216), + [2679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 170), + [2681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 170), + [2683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1, 0, 0), + [2685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1, 0, 0), + [2687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 217), + [2689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 217), + [2691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 218), + [2693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 218), + [2695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 219), + [2697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 219), + [2699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 220), + [2701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 220), + [2703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, 0, 221), + [2705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, 0, 221), + [2707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, 0, 204), + [2709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, 0, 204), + [2711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_rules, 5, 0, 6), + [2713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_rules, 5, 0, 6), + [2715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 80), + [2717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 80), + [2719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 79), + [2721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 79), + [2723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 241), + [2725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 241), + [2727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 5, 0, 0), + [2729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 5, 0, 0), + [2731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 184), + [2733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 184), + [2735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 224), + [2737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 224), + [2739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_rules, 5, 0, 54), + [2741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_rules, 5, 0, 54), + [2743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 250), + [2745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 250), + [2747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 225), + [2749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 225), + [2751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 249), + [2753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 249), + [2755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 214), + [2757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 214), + [2759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 226), + [2761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 226), + [2763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 227), + [2765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 227), + [2767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_item, 4, 0, 0), + [2769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_item, 4, 0, 0), + [2771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 4, 0, 96), + [2773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 4, 0, 96), + [2775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, 0, 88), + [2777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, 0, 88), + [2779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 88), + [2781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 88), + [2783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 248), + [2785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 248), + [2787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 228), + [2789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 228), + [2791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 229), + [2793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 229), + [2795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 212), + [2797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 212), + [2799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 230), + [2801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 230), + [2803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 231), + [2805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 231), + [2807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 232), + [2809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 232), + [2811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 192), + [2813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 192), + [2815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 2, 0, 0), + [2817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 2, 0, 0), + [2819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 95), + [2821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 95), + [2823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, 0, 94), + [2825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, 0, 94), + [2827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, 0, 93), + [2829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, 0, 93), + [2831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 88), + [2833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 88), + [2835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 233), + [2837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 233), + [2839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3, 0, 0), + [2841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3, 0, 0), + [2843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 234), + [2845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 234), + [2847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 235), + [2849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 235), + [2851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, 0, 143), + [2853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, 0, 143), + [2855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 4, 0, 93), + [2857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 4, 0, 93), + [2859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, 0, 93), + [2861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, 0, 93), + [2863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 7, 0, 138), + [2865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 7, 0, 138), + [2867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 247), + [2869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 247), + [2871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 207), + [2873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 207), + [2875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 195), + [2877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 195), + [2879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 236), + [2881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 236), + [2883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 71), + [2885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 71), + [2887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 72), + [2889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 72), + [2891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 6, 0, 0), + [2893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 6, 0, 0), + [2895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 88), + [2897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 88), + [2899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 4, 0, 73), + [2901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 4, 0, 73), + [2903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 237), + [2905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 237), + [2907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 87), + [2909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 87), + [2911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 4, 0, 74), + [2913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 4, 0, 74), + [2915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 63), + [2917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 63), + [2919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 238), + [2921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 238), + [2923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 239), + [2925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 239), + [2927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 7, 0, 240), + [2929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 7, 0, 240), + [2931] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2047), + [2934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(775), + [2937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(793), + [2940] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2272), + [2943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3230), + [2946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(824), + [2949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(817), + [2952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(873), + [2955] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2994), + [2958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2995), + [2961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3354), + [2964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3120), + [2967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2565), + [2970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2156), + [2973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(821), + [2976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(823), + [2979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2383), + [2982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2671), + [2985] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2384), + [2988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2684), + [2991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2684), + [2994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3608), + [2997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1945), + [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), + [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [3005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2031), + [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), + [3011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2670), + [3013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1969), + [3015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2660), + [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), + [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), + [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3476), + [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3043), + [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), + [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), + [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), + [3031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2035), + [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3632), + [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538), + [3037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2279), + [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), + [3041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1937), + [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), + [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), + [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), + [3049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1573), + [3051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1553), + [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), + [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), + [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), + [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), + [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), + [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), + [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), + [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), + [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3002), + [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3475), + [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), + [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3537), + [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), + [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3527), + [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), + [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3464), + [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), + [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), + [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), + [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3054), + [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), + [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), + [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3258), + [3099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2296), + [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), + [3103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), + [3105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2468), + [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), + [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), + [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), + [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), + [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), + [3119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), + [3121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(844), + [3123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2520), + [3125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), + [3127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), + [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [3131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), + [3133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2820), + [3135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), + [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), + [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [3147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1651), + [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), + [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3375), + [3155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2138), + [3157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3159), + [3159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299), + [3161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2571), + [3163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), + [3165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), + [3167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3624), + [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), + [3171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), + [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3239), + [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [3183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280), + [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3306), + [3191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2121), + [3193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3243), + [3195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), + [3197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2693), + [3199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1532), + [3201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), + [3203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3609), + [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [3207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), + [3209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), + [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), + [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), + [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), + [3221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), + [3223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2074), + [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), + [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [3229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3353), + [3231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), + [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), + [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), + [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), + [3241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1005), + [3243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2077), + [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), + [3247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2087), + [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), + [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3290), + [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [3255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2096), + [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), + [3259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), + [3261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2103), + [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), + [3265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2076), + [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), + [3269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2100), + [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), + [3273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2918), + [3275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2094), + [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), + [3279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), + [3281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 1, 0, 0), + [3283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 1, 0, 0), + [3285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 4, 0, 0), + [3287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 4, 0, 0), + [3289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), + [3291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lifetime, 2, 0, 0), + [3293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime, 2, 0, 0), + [3295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2101), + [3297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2, 0, 0), + [3299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 2, 0, 0), + [3301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2093), + [3303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2092), + [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), + [3307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2088), + [3309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2, 0, 1), + [3311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 2, 0, 1), + [3313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2091), + [3315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), + [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), + [3319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 5), + [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [3323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, 0, 5), + [3325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2719), + [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), + [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [3331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, 0, 24), + [3333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, 0, 24), + [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), + [3337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, 0, 24), + [3339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, 0, 24), + [3341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 4, 0, 105), + [3343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 4, 0, 105), + [3345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, 0, 25), + [3347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, 0, 25), + [3349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 2, 0, 7), + [3351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 2, 0, 7), + [3353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 2, 0, 6), + [3355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, 0, 6), + [3357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 4, 0, 106), + [3359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 4, 0, 106), + [3361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 46), + [3363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 46), + [3365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 45), + [3367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 45), + [3369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 41), + [3371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 41), + [3373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 40), + [3375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 40), + [3377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), + [3379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, 0, 0), + [3381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 17), + [3383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 17), + [3385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 16), + [3387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 16), + [3389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, 0, 25), + [3391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, 0, 25), + [3393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1, 0, 1), + [3395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1, 0, 1), + [3397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2687), + [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), + [3401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 1, 0, 0), + [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), + [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), + [3407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), + [3409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), + [3411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), SHIFT_REPEAT(3120), + [3414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2504), + [3416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 3, 0, 0), + [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3397), + [3422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3034), + [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), + [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3642), + [3430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2796), + [3432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3156), + [3434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3563), + [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), + [3438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 1, 0, 0), + [3440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 1, 0, 0), + [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3605), + [3444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 17), + [3446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 67), + [3448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 67), + [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [3452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 66), + [3454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 66), + [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [3458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 64), + [3460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 64), + [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [3464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), + [3466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [3468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3454), + [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3363), + [3472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2187), + [3474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3005), + [3476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3621), + [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3621), + [3480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), + [3482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 2, 0, 0), + [3484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, 0, 0), + [3486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, 0, 0), + [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), + [3490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, 0, 27), + [3492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, 0, 27), + [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [3496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, 0, 26), + [3498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, 0, 26), + [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [3502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3466), + [3504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 50), + [3506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 50), + [3508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 49), + [3510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 49), + [3512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1946), + [3514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3446), + [3516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2202), + [3518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, 0, 23), + [3520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, 0, 23), + [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [3524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5, 0, 0), + [3526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5, 0, 0), + [3528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 21), + [3530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 21), + [3532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 20), + [3534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 20), + [3536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 5, 0, 0), + [3538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 5, 0, 0), + [3540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 19), + [3542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 19), + [3544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 46), + [3546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3632), + [3549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, 0, 0), + [3551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, 0, 0), + [3553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1943), + [3555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3348), + [3557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 1, 0, 0), + [3559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 1, 0, 0), + [3561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), + [3563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 3, 0, 0), + [3565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 41), + [3567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3314), + [3569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), + [3571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [3573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), + [3575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), + [3577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 108), + [3579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 108), + [3581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [3583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3304), + [3585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1549), + [3587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [3589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3575), + [3591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), + [3593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2175), + [3595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3209), + [3597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2903), + [3599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3625), + [3601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3625), + [3603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 2, 0, 7), + [3605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 6, 0, 0), + [3607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 6, 0, 0), + [3609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 6, 0, 0), + [3611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 6, 0, 0), + [3613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 4, 0, 0), + [3615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 4, 0, 0), + [3617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1541), + [3619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), + [3621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3334), + [3623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 4, 0, 0), + [3625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5, 0, 0), + [3627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5, 0, 0), + [3629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, 0, 120), + [3631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 120), + [3633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 156), + [3635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 156), + [3637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 3, 0, 35), + [3639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 3, 0, 35), + [3641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 157), + [3643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 157), + [3645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 158), + [3647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 158), + [3649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_removed_trait_bound, 2, 0, 0), + [3651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_removed_trait_bound, 2, 0, 0), + [3653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [3655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [3657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 2, 0, 0), + [3659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 2, 0, 0), + [3661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, 0, 97), + [3663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, 0, 97), + [3665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 3, 0, 0), + [3667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 3, 0, 0), + [3669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, 0, 76), + [3671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 76), + [3673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, 0, 76), + [3675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 76), + [3677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 4, 0, 0), + [3679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 4, 0, 0), + [3681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, 0, 0), + [3683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 0), + [3685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 3, 0, 18), + [3687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [3689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 3, 0, 18), + [3691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [3693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2802), + [3695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, 0, 120), + [3697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 120), + [3699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 0), + [3701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 0), + [3703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 6, 0, 179), + [3705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 6, 0, 179), + [3707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bounded_type, 3, 0, 0), + [3709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bounded_type, 3, 0, 0), + [3711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, 0, 154), + [3713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 5, 0, 154), + [3715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5, 0, 0), + [3717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5, 0, 0), + [3719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 2, 0, 0), + [3721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 2, 0, 0), + [3723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), + [3725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4, 0, 0), + [3727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4, 0, 0), + [3729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 176), + [3731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 176), + [3733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, 0, 176), + [3735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 3, 0, 63), + [3737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 3, 0, 63), + [3739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 3, 0, 63), + [3741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 3, 0, 63), + [3743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, 0, 62), + [3745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, 0, 62), + [3747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 3, 0, 0), + [3749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 3, 0, 0), + [3751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2699), + [3753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, 0, 0), + [3755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 0), + [3757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_expression, 2, 0, 0), + [3759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_expression, 2, 0, 0), + [3761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3, 0, 0), + [3763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3, 0, 0), + [3765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 109), + [3767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 109), + [3769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_higher_ranked_trait_bound, 3, 0, 79), + [3771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_higher_ranked_trait_bound, 3, 0, 79), + [3773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_never_type, 1, 0, 0), + [3775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_never_type, 1, 0, 0), + [3777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 2, 0, 13), + [3779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 2, 0, 13), + [3781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 107), + [3783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 107), + [3785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 2, 0, 0), + [3787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 2, 0, 0), + [3789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 6, 0, 0), + [3791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 6, 0, 0), + [3793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, 0, 0), + [3795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, 0, 0), + [3797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, 0, 148), + [3799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, 0, 148), + [3801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 6, 0, 0), + [3803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 6, 0, 0), + [3805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_function, 3, 0, 42), + [3807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, 0, 43), + [3809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_function, 3, 0, 42), + [3811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 104), + [3813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 104), + [3815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 6, 0, 120), + [3817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 6, 0, 120), + [3819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 5, 0, 0), + [3821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 5, 0, 0), + [3823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 2, 0, 4), + [3825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 2, 0, 4), + [3827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 5, 0, 128), + [3829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 5, 0, 128), + [3831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3, 0, 0), + [3833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3, 0, 0), + [3835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4, 0, 0), + [3837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4, 0, 0), + [3839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 4, 0, 103), + [3841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 4, 0, 103), + [3843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 2, 0, 0), + [3845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 2, 0, 0), + [3847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4, 0, 0), + [3849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4, 0, 0), + [3851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 6, 0, 0), + [3853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 6, 0, 0), + [3855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 4, 0, 0), + [3857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 4, 0, 0), + [3859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2591), + [3861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2592), + [3863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3349), + [3865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2590), + [3867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), + [3869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2, 0, 0), + [3871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2, 0, 0), + [3873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 12), + [3875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 12), + [3877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, 0, 11), + [3879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, 0, 11), + [3881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, 0, 83), + [3883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, 0, 83), + [3885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2582), + [3887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2583), + [3889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2581), + [3891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), + [3893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 4, 0, 0), + [3895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 4, 0, 0), + [3897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 47), + [3899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 47), + [3901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [3903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, 0, 52), + [3905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 6, 0, 203), + [3907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 6, 0, 203), + [3909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 5, 0, 0), + [3911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 5, 0, 0), + [3913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_cast_expression, 3, 0, 51), + [3915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_cast_expression, 3, 0, 51), + [3917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, 0, 10), + [3919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, 0, 10), + [3921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_type, 2, 0, 0), + [3923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_type, 2, 0, 0), + [3925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, 0, 76), + [3927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 76), + [3929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, 0, 0), + [3931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 0), + [3933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 3, 0, 0), + [3935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 3, 0, 0), + [3937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 2, 0, 22), + [3939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 2, 0, 22), + [3941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 7, 0, 0), + [3943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 7, 0, 0), + [3945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 7, 0, 0), + [3947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 7, 0, 0), + [3949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, 0, 117), + [3951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, 0, 117), + [3953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 5, 0, 117), + [3955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, 0, 0), + [3957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, 0, 0), + [3959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, 0, 99), + [3961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, 0, 99), + [3963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 1, 0, 0), + [3965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 1, 0, 0), + [3967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), + [3969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_arm_repeat1, 1, 0, 0), + [3971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 1, 0, 0), + [3973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), + [3975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), + [3977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), + [3979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), + [3981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), + [3983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), + [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [3991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), + [3993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(38), + [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [3997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2, 0, 0), + [3999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 2, 0, 0), + [4001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 3, 0, 0), + [4003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 3, 0, 0), + [4005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 48), + [4007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, 0, 48), + [4009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 2, 0, 0), + [4011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 2, 0, 0), + [4013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [4015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), + [4017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1540), + [4019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3194), + [4021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2728), + [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [4025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2700), + [4027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2758), + [4029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [4031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), + [4033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3344), + [4035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 3, 0, 0), + [4037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 3, 0, 0), + [4039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1941), + [4041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_assignment_expr, 3, 0, 47), + [4043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_assignment_expr, 3, 0, 47), + [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), + [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), + [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), + [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), + [4053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2427), + [4055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 1, 0, 0), + [4057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), + [4059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), SHIFT(3326), + [4062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, 0, 127), + [4064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, 0, 127), + [4066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, 0, 0), + [4068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, 0, 0), + [4070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), + [4072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 4, 0, 0), + [4074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 4, 0, 0), + [4076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), SHIFT(2774), + [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), + [4081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), + [4083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), + [4085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), + [4087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), + [4089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), + [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [4095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), + [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [4099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), + [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [4103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), + [4105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), + [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [4109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2689), + [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), + [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), + [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3529), + [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), + [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [4123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), + [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), + [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3377), + [4143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), + [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [4151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2, 0, 0), + [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), + [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [4159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), + [4175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2499), + [4177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3331), + [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3364), + [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3289), + [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3177), + [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [4193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2540), + [4195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3195), + [4197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 3, 0, 0), + [4199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2440), + [4201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3346), + [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [4205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), + [4207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), + [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), + [4211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), + [4213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2837), + [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [4221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), + [4223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), + [4225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), + [4227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), + [4229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), + [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [4235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), + [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [4239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), + [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [4243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), + [4245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), + [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [4249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), + [4251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), + [4253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), + [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [4259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), + [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), + [4265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), + [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), + [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [4275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), + [4277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2447), + [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), + [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), + [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), + [4287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2452), + [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), + [4291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2442), + [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), + [4295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, 0, 191), + [4297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, 0, 190), + [4299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), + [4301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [4303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [4307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 3, 0, 176), + [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), + [4315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [4317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condition, 1, 0, 0), + [4319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [4323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, 0, 159), + [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [4327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_field_initializer, 2, 0, 0), + [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [4333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), + [4335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(48), + [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [4343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), + [4349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 5, 0, 246), + [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), + [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), + [4357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, 0, 205), + [4359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_condition, 4, 0, 117), + [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [4363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__let_chain, 3, 0, 0), + [4365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, 0, 206), + [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), + [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), + [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), + [4385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 140), + [4387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 139), + [4389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, 0, 117), + [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), + [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), + [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), + [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2906), + [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [4423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), + [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), + [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), + [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [4439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 18), + [4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [4447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 110), + [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), + [4451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [4453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [4455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [4457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2575), + [4459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3407), + [4461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), + [4463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2801), + [4465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3596), + [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3596), + [4469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2734), + [4471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2631), + [4473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2616), + [4475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2605), + [4477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2775), + [4479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2559), + [4481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2551), + [4483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 6, 0, 0), + [4485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 6, 0, 0), + [4487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 4, 0, 0), + [4489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 4, 0, 0), + [4491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 5, 0, 0), + [4493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 5, 0, 0), + [4495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2280), + [4497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2282), + [4499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2278), + [4501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), + [4503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3294), + [4505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3300), + [4507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), + [4509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3292), + [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), + [4513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3103), + [4515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3106), + [4517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3102), + [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), + [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), + [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), + [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), + [4531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), + [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), + [4537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, 0, 0), + [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [4541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1029), + [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), + [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), + [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), + [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), + [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), + [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3500), + [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), + [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3499), + [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2831), + [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3497), + [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3523), + [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), + [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), + [4569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), + [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), + [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), + [4575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2926), + [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), + [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3438), + [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), + [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3439), + [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), + [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), + [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3435), + [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3696), + [4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3441), + [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), + [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), + [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), + [4601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 1), + [4603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, 0, 1), + [4605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), + [4607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1030), + [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3328), + [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), + [4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), + [4617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [4619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 5), REDUCE(sym__pattern, 1, 0, 0), + [4622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), + [4624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3452), + [4626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), + [4628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3326), + [4630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [4632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3355), + [4634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [4636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [4638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3319), + [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), + [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), + [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [4654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), + [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3273), + [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [4662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), + [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), + [4666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), + [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [4672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 16), REDUCE(sym_scoped_type_identifier, 3, 0, 17), + [4675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, 0, 6), REDUCE(sym_scoped_type_identifier, 2, 0, 7), + [4678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 45), REDUCE(sym_scoped_type_identifier, 3, 0, 46), + [4681] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 40), REDUCE(sym_scoped_type_identifier, 3, 0, 41), + [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), + [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), + [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [4692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), + [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), + [4698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal_pattern, 1, 0, 0), + [4700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal_pattern, 1, 0, 0), + [4702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negative_literal, 2, 0, 0), + [4704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negative_literal, 2, 0, 0), + [4706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2513), + [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [4710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3637), + [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3305), + [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), + [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), + [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), + [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), + [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), + [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), + [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [4738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), + [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [4746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2389), + [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), + [4750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 1, 0, 0), + [4752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), + [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3509), + [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [4758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [4760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3479), + [4764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2485), + [4766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3256), + [4768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 1), + [4770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 1), + [4772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), + [4774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2345), + [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), + [4778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2379), + [4780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), + [4782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 0), + [4784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 0), + [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [4788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), + [4790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3542), + [4792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_modifiers_repeat1, 1, 0, 0), + [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), + [4796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 55), + [4798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 55), + [4800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), + [4802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 59), + [4804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 59), + [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [4808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), + [4810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), + [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), + [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3404), + [4818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [4820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3461), + [4822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2371), + [4824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), + [4826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [4828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3455), + [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [4836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, 0, 56), + [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), + [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), + [4844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, 0, 56), + [4846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), + [4848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3684), + [4850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [4852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3671), + [4854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3626), + [4856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [4858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3514), + [4860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), + [4862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, 0, 56), + [4864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, 0, 57), + [4866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 4, 0, 0), + [4868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2295), + [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3487), + [4874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, 0, 61), + [4876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, 0, 61), + [4878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, 0, 56), + [4880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, 0, 57), + [4882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3, 0, 0), + [4884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 3, 0, 0), + [4886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_captured_pattern, 3, 0, 0), + [4888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 3, 0, 0), + [4890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remaining_field_pattern, 1, 0, 0), + [4892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_pattern, 2, 0, 0), + [4894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 2, 0, 0), + [4896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 2, 0, 0), + [4898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), + [4900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, 0, 61), + [4902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 2, 0, 0), + [4904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mut_pattern, 2, 0, 0), + [4906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 3, 0, 0), + [4908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4, 0, 0), + [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), + [4914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5, 0, 0), + [4916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, 0, 57), + [4918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 5, 0, 0), + [4920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, 0, 56), + [4922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, 0, 56), + [4924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), + [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [4928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, 0, 56), + [4930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, 0, 61), + [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), + [4934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), + [4936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), + [4940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, 0, 57), + [4942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, 0, 56), + [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [4948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2, 0, 0), + [4950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2, 0, 0), SHIFT_REPEAT(872), + [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), + [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), + [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), + [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [4977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 2, 0, 0), + [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [4985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), + [4987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), + [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), + [5001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 3, 0, 0), + [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [5009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), REDUCE(sym__pattern, 1, 0, 1), + [5012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_rules_repeat1, 2, 0, 0), SHIFT_REPEAT(79), + [5015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_macro_rules_repeat1, 2, 0, 0), + [5017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_rules_repeat1, 2, 0, 0), SHIFT_REPEAT(75), + [5020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_rules_repeat1, 2, 0, 0), SHIFT_REPEAT(72), + [5023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [5027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), + [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [5039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), + [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [5047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [5049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [5063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), + [5065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [5067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [5071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [5083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [5087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [5095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 2, 0, 0), + [5097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2962), + [5099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), + [5101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3568), + [5103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3235), + [5105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3549), + [5107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [5109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [5111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [5113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [5115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), + [5119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), + [5121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [5125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [5127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [5129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [5131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [5133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [5135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(2359), + [5138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2, 0, 0), + [5140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(2245), + [5143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [5145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [5149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), + [5151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [5153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [5155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [5159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [5161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [5163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_modifiers, 1, 0, 0), + [5165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), + [5167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [5169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), + [5173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), + [5175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [5177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [5179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), + [5181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), + [5183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [5185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3536), + [5189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [5191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3477), + [5193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, 0, 6), + [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [5197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), + [5199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), + [5201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3656), + [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [5205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [5209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 0), + [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [5213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [5215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [5219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [5221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3685), + [5223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [5225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 1), + [5227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [5231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [5235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [5237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3564), + [5239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 1, 0, 0), + [5241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(954), + [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), + [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3571), + [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [5253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 1, 0, 70), + [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [5257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 2, 0, 0), + [5259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), + [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3332), + [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [5269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(79), + [5272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(75), + [5275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(72), + [5278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), + [5280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [5282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3369), + [5284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), + [5286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3541), + [5288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3636), + [5290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), + [5292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3409), + [5294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), + [5296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), + [5298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), + [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3411), + [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), + [5306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [5308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3478), + [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3511), + [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), + [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [5316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [5318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [5320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [5322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [5324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [5326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [5332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), + [5334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), + [5336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3372), + [5338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), + [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [5342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 3, 0, 0), + [5344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [5346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [5348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [5350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), + [5352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), + [5354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [5356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [5360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [5362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [5364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [5366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [5368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [5372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [5374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [5376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [5378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [5382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [5384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [5386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), + [5388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [5390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [5392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3524), + [5394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3245), + [5396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3528), + [5398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3251), + [5400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [5402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), REDUCE(sym_tuple_struct_pattern, 3, 0, 56), + [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), + [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), + [5409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), + [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [5415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), + [5417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), REDUCE(sym_tuple_struct_pattern, 4, 0, 56), + [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [5422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), + [5424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [5426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), + [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [5432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [5434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [5438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [5440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [5442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [5444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [5446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [5448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [5450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [5452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [5454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [5456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [5458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), + [5460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [5462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [5464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [5466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [5468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [5470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [5472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [5474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [5476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [5478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [5480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [5482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [5484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [5486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [5488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [5490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [5492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [5494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), + [5496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, 0, 0), + [5498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), + [5500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3451), + [5502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [5504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 63), + [5506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [5508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), + [5510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [5512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [5514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, 0, 1), + [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), + [5518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), + [5520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, 0, 22), + [5522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3640), + [5524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3702), + [5526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3638), + [5528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3633), + [5530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), + [5532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [5534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [5536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, 0, 0), + [5538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_unit_type, 2, 0, 0), REDUCE(sym_tuple_pattern, 2, 0, 0), + [5541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), + [5543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [5545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [5547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [5549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [5551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [5553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), + [5555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 7, 0, 254), + [5557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, 0, 63), + [5559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [5561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, 0, 103), + [5563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [5565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [5567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [5569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, 0, 222), + [5571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, 0, 22), + [5573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [5575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [5577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [5579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [5581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), + [5583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [5585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [5587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [5589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), + [5591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [5593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 3, 0, 120), + [5595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [5597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [5599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_rule, 3, 0, 48), + [5601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, 0, 254), + [5603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [5605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2, 0, 0), + [5607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1509), + [5610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 222), + [5612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [5614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), + [5616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3643), + [5618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), + [5620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3051), + [5622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [5624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), + [5626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), + [5628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 2, 0, 0), + [5630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [5632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), + [5634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [5636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [5638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, 0, 180), + [5640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [5642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 76), + [5644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [5646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), + [5648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [5650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [5652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [5654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), + [5656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [5658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [5660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [5662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [5664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), + [5666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), + [5668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [5670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [5672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), REDUCE(sym__pattern, 1, 0, 0), + [5675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [5677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 103), + [5679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), + [5681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [5683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [5685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 180), + [5687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 2, 0, 0), + [5689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), + [5691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [5693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), SHIFT(1972), + [5696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), SHIFT(415), + [5699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3703), + [5701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), + [5703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), + [5705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), + [5707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), + [5709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [5711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2109), + [5713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2179), + [5715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [5717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), + [5719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [5721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [5723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [5725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), + [5727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), + [5729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [5731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [5733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [5735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [5737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), + [5739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [5741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [5743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [5745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [5747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [5749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [5751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [5753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), + [5755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), + [5757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), + [5759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), + [5761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1551), + [5763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1591), + [5765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1959), + [5767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1942), + [5769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [5771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), + [5773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [5775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [5777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [5779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), + [5781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [5783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [5785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [5787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [5789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), + [5791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [5793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2992), + [5795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), + [5797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 60), + [5799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [5801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_slice_pattern_repeat1, 2, 0, 0), + [5803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slice_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(822), + [5806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 101), + [5808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [5810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [5812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [5814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), REDUCE(aux_sym_for_lifetimes_repeat1, 2, 0, 0), + [5817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [5819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [5821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), + [5823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [5825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 3, 0, 0), + [5827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [5829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [5831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [5833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [5835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 4, 0, 201), + [5837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2971), + [5839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), + [5841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2969), + [5843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), + [5845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [5847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [5849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(220), + [5852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1949), + [5854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [5856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [5858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), + [5860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [5862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), + [5864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), + [5866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [5868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [5870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), + [5872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), + [5874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [5876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, 0, 78), + [5878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, 0, 77), + [5880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), + [5882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), + [5884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 3, 0, 151), + [5886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [5888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [5890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [5892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [5894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [5896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [5898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), + [5900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), + [5902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), + [5904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 3, 0, 0), + [5906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1052), + [5908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [5910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [5912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), + [5914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), + [5916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), + [5918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [5920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), + [5922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [5924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), + [5926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), + [5928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [5930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), + [5932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), + [5934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), + [5936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [5938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2042), + [5940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1269), + [5942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), + [5944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2840), + [5947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [5949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [5951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [5953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [5955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), + [5957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [5959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 0), + [5961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), + [5963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [5965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2045), + [5967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), + [5969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [5971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2040), + [5973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), + [5975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [5977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), + [5979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [5981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [5983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1552), + [5985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [5987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [5989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2913), + [5991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), + [5993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), + [5995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [5997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [5999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [6001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), + [6003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [6005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), + [6007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3412), + [6009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [6011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [6013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), + [6015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), + [6017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), + [6019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [6021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), + [6023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), + [6025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), + [6027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [6029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), + [6031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), + [6033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), + [6035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), + [6037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [6039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [6041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [6043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [6045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), + [6047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [6049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [6051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), + [6053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1193), + [6055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1497), + [6057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [6059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [6061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [6063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [6065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(451), + [6068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [6070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [6072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, 0, 152), + [6074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [6076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), + [6078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), + [6080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, 0, 153), + [6082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [6084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), + [6086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2181), + [6089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), + [6091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2, 0, 0), + [6093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2378), + [6096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), + [6098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1914), + [6101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), [6103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 4, 0, 0), - [6105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2, 0, 0), - [6107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2337), - [6110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [6112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 3, 0, 0), - [6114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [6116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), - [6118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), - [6120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), - [6122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), - [6124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), - [6126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [6128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [6130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [6132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 1, 0, 0), - [6134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), - [6136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(2060), - [6139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [6141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, 0, 118), - [6143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [6145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [6147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), - [6149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [6151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 1, 0, 58), - [6153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [6155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), - [6157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), - [6159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), - [6161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), - [6163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 3, 0, 63), - [6165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [6167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [6169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), SHIFT_REPEAT(916), - [6172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), - [6174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [6176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condition, 1, 0, 9), - [6178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, 0, 78), - [6180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 2, 0, 36), - [6182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), - [6184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), - [6186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [6188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), - [6190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [6192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, 0, 220), - [6194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [6196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), - [6198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [6200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), - [6202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), - [6204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), - [6206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), - [6208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), - [6210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), - [6212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), - [6214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [6216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), - [6218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [6220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), - [6222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), - [6224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [6226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [6228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [6230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [6232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, 0, 22), - [6234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), - [6236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2, 0, 0), - [6238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [6240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [6242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1, 0, 0), - [6244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [6246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [6248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), - [6250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1879), - [6253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [6255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, 0, 177), - [6257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, 0, 177), SHIFT_REPEAT(777), - [6260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(780), - [6263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [6265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, 0, 178), - [6267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 0), - [6269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), - [6271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 4, 0, 110), - [6273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2, 0, 0), - [6275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2209), - [6278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [6280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [6282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [6284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [6286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [6288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), - [6290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1666), - [6292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), - [6294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), - [6296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), - [6298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), - [6300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(762), - [6303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), - [6305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [6307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), - [6309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), - [6311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [6313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [6315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [6317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [6319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2, 0, 0), - [6321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2, 0, 0), SHIFT_REPEAT(3075), - [6324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), - [6326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [6328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [6330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [6332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [6334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3545), - [6336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3304), - [6338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3596), - [6340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), - [6342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), - [6344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [6346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), - [6348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 5, 0, 242), - [6350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [6352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), - [6354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [6356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), - [6358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), - [6360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [6362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [6364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, 0, 1), - [6366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [6368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [6370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [6372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [6374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), - [6376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), - [6378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [6380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [6382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 4, 0, 102), - [6384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 1, 0, 0), - [6386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [6388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), - [6390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), - [6392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), - [6394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), - [6396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [6398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [6400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [6402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, 0, 89), - [6404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [6406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [6408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [6410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [6412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2835), - [6414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2741), - [6416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [6418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2904), - [6420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2903), - [6422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [6424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [6426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [6428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), - [6430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 4, 0, 199), - [6432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [6434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [6436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, 0, 90), - [6438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [6440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [6442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [6444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [6446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [6448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), - [6450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), - [6452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [6454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [6456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [6458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), - [6460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2129), - [6463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [6465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3555), - [6467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3308), - [6469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3602), - [6471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [6473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [6475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [6477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [6479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), - [6481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), - [6483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), - [6485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), - [6487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1921), - [6489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1016), - [6491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_doc_comment_marker, 1, 0, 3), - [6493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1518), - [6495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1547), - [6497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [6499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3449), - [6501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), - [6503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1524), - [6505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), - [6507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1908), - [6509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 4, 0, 32), - [6511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), - [6513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1522), - [6515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), - [6517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1929), - [6519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1912), - [6521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1036), - [6523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_doc_comment_marker, 1, 0, 2), - [6525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2138), - [6527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), - [6529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2128), - [6531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 3, 0, 0), - [6533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1913), - [6535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), - [6537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), - [6539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1516), - [6541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), - [6543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), - [6545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [6547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), - [6549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [6551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), - [6553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), - [6555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1918), - [6557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [6559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), - [6561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [6563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3395), - [6565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), - [6567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3457), - [6569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), - [6571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), - [6573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1906), - [6575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2040), - [6577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), - [6579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), - [6581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1924), - [6583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 2, 0, 0), - [6585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [6587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3444), - [6589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2827), - [6591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3356), - [6593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2006), - [6595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [6597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), - [6599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2010), - [6601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [6603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), - [6605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [6607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2045), - [6609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2149), - [6611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2003), - [6613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), - [6615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2012), - [6617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2015), - [6619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2016), - [6621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), - [6623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [6625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), - [6627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1533), - [6629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 3, 0, 151), - [6631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [6633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 3, 0, 0), - [6635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3147), - [6637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), - [6639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [6641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), - [6643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), - [6645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1521), - [6647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [6649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), - [6651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), - [6653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), - [6655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), - [6657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3433), - [6659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3435), - [6661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3566), - [6663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [6665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 3, 0, 0), - [6667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1, 0, 0), - [6669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [6671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [6673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), - [6675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), - [6677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), - [6679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), - [6681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3616), - [6683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3419), - [6685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [6687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1915), - [6689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [6691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), - [6693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type, 3, 0, 65), - [6695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), - [6697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3443), - [6699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), - [6701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538), - [6703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), - [6705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [6707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), - [6709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [6711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), - [6713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [6715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), - [6717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), - [6719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [6721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [6723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [6725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [6727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3565), - [6729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3607), - [6731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), - [6733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3030), - [6735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), - [6737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), - [6739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), - [6741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [6743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line_doc_comment_marker, 1, 0, 2), - [6745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [6747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [6749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [6751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [6753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [6755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [6757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [6759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), - [6761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [6763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3618), - [6765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), - [6767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [6769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), - [6771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), - [6773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), - [6775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line_doc_comment_marker, 1, 0, 3), - [6777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), - [6779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), - [6781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [6783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_type, 3, 0, 0), - [6785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [6787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), - [6789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), - [6791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), - [6793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), - [6795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2867), - [6797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), - [6799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), - [6801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), - [6803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [6805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), - [6807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [6809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [6811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), - [6813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [6815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), - [6817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [6819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [6821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3435), - [6823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2627), - [6825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), - [6827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [6829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [6831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3176), - [6833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [6835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), - [6837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [6839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), - [6841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [6843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [6845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [6847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [6849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), - [6851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [6853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), - [6855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [6857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), - [6859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), - [6861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [6863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [6865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3425), - [6867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), - [6869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3318), - [6871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [6873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [6875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3613), - [6877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [6879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [6881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), - [6883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [6885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), - [6887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [6889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [6891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [6893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [6895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [6897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 69), - [6899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), - [6901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3394), - [6903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [6905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [6907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [6909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [6911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), - [6913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), - [6915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), - [6917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [6919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [6921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), - [6923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [6925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [6927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3307), - [6929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [6931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [6933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), - [6935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), - [6937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), - [6939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), - [6941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), - [6943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [6945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), - [6947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [6949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), - [6951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3592), - [6953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), - [6955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), - [6957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3451), - [6959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [6961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [6963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [6965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [6967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), - [6969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [6971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [6973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [6975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), - [6977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [6979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), - [6981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [6983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), - [6985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [6987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [6989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), - [6991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), - [6993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [6995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [6997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [6999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [7001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inner_line_doc_comment_marker, 1, 0, 0), - [7003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 68), - [7005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [7007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [7009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), - [7011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), - [7013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), - [7015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), - [7017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [7019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [7021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), - [7023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__outer_line_doc_comment_marker, 1, 0, 0), - [7025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [7027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), - [7029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [7031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [7033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), - [7035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [7037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), - [7039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3438), - [7041] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [7043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3380), - [7045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), - [7047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [7049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [7051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3429), - [7053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3183), - [7055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), - [7057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), - [7059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), - [7061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [7063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), - [7065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), - [7067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), - [7069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), - [7071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), - [7073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3372), - [7075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [7077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [7079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), - [7081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [7083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [7085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), - [7087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [7089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), - [7091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), - [7093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), - [7095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), - [7097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), - [7099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [7101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [7103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [7105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), - [7107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), - [7109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [7111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3480), - [7113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), - [7117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), - [7119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [7121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3588), - [7123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [7125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [7127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), - [7129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [7131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [7133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [7135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), - [7137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [7139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [7141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), - [7143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), - [7145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), - [7147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3486), - [7149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2714), - [7151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), - [7153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), - [7155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [7157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3518), - [7159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), - [7161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), - [7163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [7165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 3, 0, 173), - [7167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3555), - [7169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [7171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [7173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), - [7175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291), - [7177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), - [7179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), - [7181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), - [7183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), - [7185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [7187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3577), - [7189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), - [7191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [7193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 3, 0, 0), - [7195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 2, 0, 0), - [7197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 4, 0, 53), - [7199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 3, 0, 15), - [7201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 3, 0, 0), - [7203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 3, 0, 14), - [7205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 2, 0, 0), + [6105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), + [6107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [6109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, 0, 78), + [6111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [6113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [6115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(418), + [6118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [6120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 2, 0, 0), + [6122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3405), + [6124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3311), + [6126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3414), + [6128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), + [6130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), + [6132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [6134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 2, 0, 36), + [6136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2857), + [6138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2855), + [6140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1647), + [6142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1768), + [6144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [6146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), + [6148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 1, 0, 0), + [6150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2, 0, 0), SHIFT_REPEAT(3149), + [6153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2, 0, 0), + [6155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), + [6157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1011), + [6160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [6162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), + [6164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [6166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [6168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2, 0, 0), + [6170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2, 0, 0), SHIFT_REPEAT(2232), + [6173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [6175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [6177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [6179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), + [6181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, 0, 34), + [6183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [6185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 1, 0, 0), + [6187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [6189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), + [6191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), + [6193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), + [6195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), + [6197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), + [6199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), + [6201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), + [6203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), + [6205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [6207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [6209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [6211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [6213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 4, 0, 111), + [6215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [6217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 1, 0, 0), + [6219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [6221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [6223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [6225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [6227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condition, 1, 0, 9), + [6229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [6231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [6233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [6235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [6237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), + [6239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), + [6241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [6243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), + [6245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, 0, 119), + [6247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(2105), + [6250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [6252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, 0, 118), + [6254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), + [6256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [6258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), + [6260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [6262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [6264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), + [6266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, 0, 181), + [6268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, 0, 181), SHIFT_REPEAT(795), + [6271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), + [6273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, 0, 182), + [6275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, 0, 11), + [6277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [6279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [6281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), + [6283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), + [6285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3431), + [6287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [6289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2, 0, 0), + [6291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2213), + [6294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), + [6296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), + [6298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), + [6300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [6302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [6304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [6306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 5, 0, 0), + [6308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [6310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), + [6312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), + [6314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [6316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), + [6318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), + [6320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), + [6322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), + [6324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), + [6326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [6328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), + [6330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), + [6332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), + [6334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 4, 0, 202), + [6336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [6338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 4, 0, 0), + [6340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [6342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), + [6344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2788), + [6346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2790), + [6348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2785), + [6350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2783), + [6352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), + [6354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2821), + [6356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2818), + [6358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, 0, 22), + [6360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [6362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), + [6364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 3, 0, 63), + [6366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [6368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [6370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [6372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [6374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), + [6376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [6378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [6380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), + [6382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), + [6384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), + [6386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 2, 0, 102), + [6388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [6390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, 0, 223), + [6392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3641), + [6394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3113), + [6396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3693), + [6398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [6400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [6402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [6404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [6406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [6408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [6410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [6412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [6414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [6416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [6418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 0), + [6420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(782), + [6423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 1, 0, 58), + [6425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [6427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), + [6429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), + [6431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [6433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [6435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [6437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [6439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [6441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [6443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), + [6445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [6447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [6449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2, 0, 0), + [6451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), + [6453] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(808), + [6456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 5, 0, 245), + [6458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [6460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), + [6462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), + [6464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [6466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 4, 0, 103), + [6468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [6470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), + [6472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [6474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [6476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [6478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), + [6480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), + [6482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [6484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [6486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3518), + [6488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), + [6490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [6492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2897), + [6494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), + [6496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [6498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [6500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [6502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [6504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), + [6506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [6508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), + [6510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [6512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [6514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [6516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [6518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [6520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [6522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), + [6524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [6526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 2, 0, 0), + [6528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [6530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [6532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), + [6534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, 0, 92), + [6536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, 0, 91), + [6538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, 0, 0), + [6540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, 0, 90), + [6542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, 0, 89), + [6544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [6546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, 0, 1), + [6548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), + [6550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 3, 0, 0), + [6552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [6554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [6556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [6558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), + [6560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [6562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, 0, 77), + [6564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [6566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [6568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [6570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), + [6572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [6574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [6576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [6578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [6580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), + [6582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [6584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [6586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), + [6588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [6590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [6592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [6594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [6596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1, 0, 0), + [6598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [6600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [6602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [6604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [6606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [6608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [6610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3652), + [6612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3108), + [6614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3699), + [6616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [6618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [6620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [6622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [6624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2908), + [6626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2910), + [6628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [6630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [6632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2912), + [6634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2914), + [6636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), + [6638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), + [6640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), + [6642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), + [6644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), + [6646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300), + [6648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), + [6650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), + [6652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), + [6654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), + [6656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3662), + [6658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3506), + [6660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), + [6662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1953), + [6664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [6666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [6668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [6670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [6672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [6674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [6676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), + [6678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3678), + [6680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [6682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1939), + [6684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1055), + [6686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1568), + [6688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), + [6690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), + [6692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 3, 0, 0), + [6694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 3, 0, 0), + [6696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), + [6698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1559), + [6700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1604), + [6702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1940), + [6704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [6706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [6708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), + [6710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), + [6712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3634), + [6714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 4, 0, 32), + [6716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_doc_comment_marker, 1, 0, 3), + [6718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [6720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [6722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3373), + [6724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_doc_comment_marker, 1, 0, 2), + [6726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3708), + [6728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3480), + [6730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), + [6732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1600), + [6734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 3, 0, 0), + [6736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1963), + [6738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3370), + [6740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1944), + [6742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), + [6744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [6746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [6748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), + [6750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), + [6752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), + [6754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type, 3, 0, 65), + [6756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1952), + [6758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1955), + [6760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2194), + [6762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1554), + [6764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [6766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3417), + [6768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [6770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1, 0, 0), + [6772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), + [6774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2760), + [6776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3340), + [6778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), + [6780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), + [6782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [6784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [6786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3358), + [6788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [6790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3448), + [6792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [6794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [6796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), + [6798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [6800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [6802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), + [6804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2944), + [6806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3530), + [6808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [6810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [6812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [6814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [6816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [6818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [6820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [6822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), + [6824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1555), + [6826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [6828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 2, 0, 0), + [6830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3646), + [6832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3645), + [6834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2037), + [6836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1951), + [6838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), + [6840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [6842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 3, 0, 155), + [6844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), + [6846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), + [6848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), + [6850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [6852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), + [6854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3474), + [6856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3607), + [6858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2107), + [6860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2209), + [6862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1050), + [6864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1962), + [6866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [6868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), + [6870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2049), + [6872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1567), + [6874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2050), + [6876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), + [6878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [6880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3647), + [6882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), + [6884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), + [6886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2043), + [6888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2108), + [6890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2038), + [6892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2044), + [6894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2046), + [6896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2039), + [6898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1569), + [6900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1556), + [6902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [6904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [6906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3339), + [6908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [6910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), + [6912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), + [6914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [6916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), + [6918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [6920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [6922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), + [6924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), + [6926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3474), + [6928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), + [6930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), + [6932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), + [6934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [6936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [6938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [6940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [6942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3346), + [6944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), + [6946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), + [6948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), + [6950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), + [6952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), + [6954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_type, 3, 0, 0), + [6956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [6958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [6960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [6962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), + [6964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3382), + [6966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3325), + [6968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), + [6970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2811), + [6972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), + [6974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), + [6976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), + [6978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [6980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [6982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [6984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [6986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), + [6988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), + [6990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), + [6992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_def_args, 3, 0, 100), + [6994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), + [6996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), + [6998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [7000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [7002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), + [7004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [7006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [7008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [7010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [7012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [7014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), + [7016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), + [7018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3704), + [7020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [7022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [7024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [7026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [7028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [7030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [7032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), + [7034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [7036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [7038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), + [7040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [7042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), + [7044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), + [7046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), + [7048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), + [7050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), + [7052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), + [7054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), + [7056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), + [7058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), + [7060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), + [7062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3674), + [7064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), + [7066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), + [7068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3604), + [7070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [7072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), + [7074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [7076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [7078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [7080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291), + [7082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), + [7084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [7086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [7088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_def_args, 2, 0, 0), + [7090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), + [7092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [7094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [7096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [7098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), + [7100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), + [7102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), + [7104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [7106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), + [7108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [7110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3672), + [7112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), + [7114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 3, 0, 177), + [7116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [7118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [7120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), + [7122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [7124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), + [7126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3327), + [7128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2944), + [7130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [7132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [7134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3331), + [7136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3657), + [7138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), + [7140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), + [7142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [7144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [7146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), + [7148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), + [7150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [7152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [7154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), + [7156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), + [7158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), + [7160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [7162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), + [7164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), + [7166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [7168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3600), + [7170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [7172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [7174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), + [7176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [7178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 68), + [7180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [7182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), + [7184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [7186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [7188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3271), + [7190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 69), + [7192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [7194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3275), + [7196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [7198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [7200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), + [7202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [7204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), + [7206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2762), + [7208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [7210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [7212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [7214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3707), + [7216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3423), + [7218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), + [7220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [7222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3366), + [7224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [7226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), + [7228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3378), + [7230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3381), + [7232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), + [7234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3380), + [7236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [7238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), + [7240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3706), + [7242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771), + [7244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), + [7246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line_doc_comment_marker, 1, 0, 3), + [7248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), + [7250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3459), + [7252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [7254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3685), + [7256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line_doc_comment_marker, 1, 0, 2), + [7258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), + [7260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3705), + [7262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [7264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [7266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [7268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), + [7270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [7272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [7274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), + [7276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [7278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [7280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [7282] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [7284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [7286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [7288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [7290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), + [7292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [7294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [7296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [7298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [7300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [7302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [7304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [7306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [7308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [7310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), + [7312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [7314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [7316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [7318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [7320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [7322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [7324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), + [7326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), + [7328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), + [7330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), + [7332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [7334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [7336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), + [7338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3603), + [7340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [7342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [7344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), + [7346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), + [7348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3620), + [7350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), + [7352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), + [7354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [7356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), + [7358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), + [7360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [7362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), + [7364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), + [7366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3458), + [7368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3662), + [7370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [7372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [7374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 2, 0, 0), + [7376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 2, 0, 0), + [7378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 4, 0, 53), + [7380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 3, 0, 0), + [7382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 3, 0, 14), + [7384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 3, 0, 0), + [7386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 3, 0, 15), }; enum ts_external_scanner_symbol_identifiers { @@ -192496,13 +197023,13 @@ static const bool ts_external_scanner_states[10][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_float_literal] = true, }, [7] = { - [ts_external_token__line_doc_content] = true, + [ts_external_token_raw_string_literal_content] = true, }, [8] = { - [ts_external_token_raw_string_literal_content] = true, + [ts_external_token__raw_string_literal_end] = true, }, [9] = { - [ts_external_token__raw_string_literal_end] = true, + [ts_external_token__line_doc_content] = true, }, }; diff --git a/src/tree_sitter/parser.h b/src/tree_sitter/parser.h index 799f599..17f0e94 100644 --- a/src/tree_sitter/parser.h +++ b/src/tree_sitter/parser.h @@ -47,7 +47,6 @@ struct TSLexer { uint32_t (*get_column)(TSLexer *); bool (*is_at_included_range_start)(const TSLexer *); bool (*eof)(const TSLexer *); - void (*log)(const TSLexer *, const char *, ...); }; typedef enum { diff --git a/test/corpus/macros.txt b/test/corpus/macros.txt index c8c0bb6..879cf13 100644 --- a/test/corpus/macros.txt +++ b/test/corpus/macros.txt @@ -197,7 +197,7 @@ macro_rules! empty [ -------------------------------------------------------------------------------- (source_file - (macro_definition + (macro_rules name: (identifier) (macro_rule left: (token_tree_pattern) @@ -206,14 +206,14 @@ macro_rules! empty [ (token_tree (string_literal (string_content)))))) - (macro_definition + (macro_rules name: (identifier) (macro_rule left: (token_tree_pattern) right: (token_tree (integer_literal) (integer_literal)))) - (macro_definition + (macro_rules name: (identifier) (macro_rule left: (token_tree_pattern @@ -239,7 +239,7 @@ macro_rules! empty [ (string_literal (string_content)) (metavariable))))) - (macro_definition + (macro_rules name: (identifier) (macro_rule left: (token_tree_pattern @@ -257,7 +257,7 @@ macro_rules! empty [ (token_repetition (metavariable) (metavariable)))))) - (macro_definition + (macro_rules name: (identifier) (macro_rule left: (token_tree_pattern @@ -268,8 +268,183 @@ macro_rules! empty [ right: (token_tree (token_repetition (metavariable))))) - (macro_definition + (macro_rules name: (identifier) (macro_rule left: (token_tree_pattern) right: (token_tree)))) + +================================================================================ +Macro definition 2.0 +================================================================================ +macro_rules! replace_expr_ { + ($_t:tt $sub:expr) => { $sub } +} +macro replace_expr($_t:tt $sub:expr) { + $sub +} + +macro_rules! count_tts_ { + () => { 0 }; + ($odd:tt $($a:tt $b:tt)*) => { (count_tts!($($a)*) << 1) | 1 }; + ($($a:tt $even:tt)*) => { count_tts!($($a)*) << 1 }; +} +macro count_tts { + () => { 0 }, + ($odd:tt $($a:tt $b:tt)*) => { (count_tts!($($a)*) << 1) | 1 }, + ($($a:tt $even:tt)*) => { count_tts!($($a)*) << 1 }, +} + +macro empty() {} +-------------------------------------------------------------------------------- +(source_file + (macro_rules + (identifier) + (macro_rule + (token_tree_pattern + (token_binding_pattern + (metavariable) + (fragment_specifier)) + (token_binding_pattern + (metavariable) + (fragment_specifier))) + (token_tree + (metavariable)))) + (macro_definition + (identifier) + (macro_def_args + (token_binding_pattern + (metavariable) + (fragment_specifier)) + (token_binding_pattern + (metavariable) + (fragment_specifier))) + (macro_def_body + (metavariable))) + (macro_rules + (identifier) + (macro_rule + (token_tree_pattern) + (token_tree + (integer_literal))) + (macro_rule + (token_tree_pattern + (token_binding_pattern + (metavariable) + (fragment_specifier)) + (token_repetition_pattern + (token_binding_pattern + (metavariable) + (fragment_specifier)) + (token_binding_pattern + (metavariable) + (fragment_specifier)))) + (token_tree + (token_tree + (identifier) + (token_tree + (token_repetition + (metavariable))) + (integer_literal)) + (integer_literal))) + (macro_rule + (token_tree_pattern + (token_repetition_pattern + (token_binding_pattern + (metavariable) + (fragment_specifier)) + (token_binding_pattern + (metavariable) + (fragment_specifier)))) + (token_tree + (identifier) + (token_tree + (token_repetition + (metavariable))) + (integer_literal)))) + (macro_definition + (identifier) + (macro_rule + (token_tree_pattern) + (token_tree + (integer_literal))) + (macro_rule + (token_tree_pattern + (token_binding_pattern + (metavariable) + (fragment_specifier)) + (token_repetition_pattern + (token_binding_pattern + (metavariable) + (fragment_specifier)) + (token_binding_pattern + (metavariable) + (fragment_specifier)))) + (token_tree + (token_tree + (identifier) + (token_tree + (token_repetition + (metavariable))) + (integer_literal)) + (integer_literal))) + (macro_rule + (token_tree_pattern + (token_repetition_pattern + (token_binding_pattern + (metavariable) + (fragment_specifier)) + (token_binding_pattern + (metavariable) + (fragment_specifier)))) + (token_tree + (identifier) + (token_tree + (token_repetition + (metavariable))) + (integer_literal)))) + (macro_definition + (identifier) + (macro_def_args) + (macro_def_body))) + +================================================================================ +Namespaced Macro Calls +================================================================================ +mod a { + pub macro foo() { bar() } + pub fn bar() { } +} + +fn main() { + a::foo!(); // Expansion calls a::bar +} +-------------------------------------------------------------------------------- +(source_file + (mod_item + (identifier) + (declaration_list + (macro_definition + (visibility_modifier) + (identifier) + (macro_def_args) + (macro_def_body + (identifier) + (token_tree))) + (function_item + (visibility_modifier) + (identifier) + (parameters) + (block)))) + (function_item + (identifier) + (parameters) + (block + (expression_statement + (macro_invocation + (scoped_identifier + (identifier) + (identifier)) + (token_tree))) + (line_comment)))) +